blob: 6a2a0c3e72557d7992c193ae30569dee23b4aa86 [file] [log] [blame]
Jiri Bencf0706e822007-05-05 11:45:53 -07001/*
Johannes Berg3017b802007-08-28 17:01:53 -04002 * mac80211 <-> driver interface
3 *
Jiri Bencf0706e822007-05-05 11:45:53 -07004 * Copyright 2002-2005, Devicescape Software, Inc.
5 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
Johannes Berg3017b802007-08-28 17:01:53 -04006 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
Jiri Bencf0706e822007-05-05 11:45:53 -07007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#ifndef MAC80211_H
14#define MAC80211_H
15
16#include <linux/kernel.h>
17#include <linux/if_ether.h>
18#include <linux/skbuff.h>
19#include <linux/wireless.h>
20#include <linux/device.h>
21#include <linux/ieee80211.h>
22#include <net/wireless.h>
23#include <net/cfg80211.h>
24
25/* Note! Only ieee80211_tx_status_irqsafe() and ieee80211_rx_irqsafe() can be
26 * called in hardware interrupt context. The low-level driver must not call any
27 * other functions in hardware interrupt context. If there is a need for such
28 * call, the low-level driver should first ACK the interrupt and perform the
29 * IEEE 802.11 code call after this, e.g., from a scheduled tasklet (in
30 * software interrupt context).
31 */
32
33/*
34 * Frame format used when passing frame between low-level hardware drivers
35 * and IEEE 802.11 driver the same as used in the wireless media, i.e.,
36 * buffers start with IEEE 802.11 header and include the same octets that
37 * are sent over air.
38 *
39 * If hardware uses IEEE 802.3 headers (and perform 802.3 <-> 802.11
40 * conversion in firmware), upper layer 802.11 code needs to be changed to
41 * support this.
42 *
43 * If the receive frame format is not the same as the real frame sent
44 * on the wireless media (e.g., due to padding etc.), upper layer 802.11 code
45 * could be updated to provide support for such format assuming this would
46 * optimize the performance, e.g., by removing need to re-allocation and
47 * copying of the data.
48 */
49
50#define IEEE80211_CHAN_W_SCAN 0x00000001
51#define IEEE80211_CHAN_W_ACTIVE_SCAN 0x00000002
52#define IEEE80211_CHAN_W_IBSS 0x00000004
53
54/* Channel information structure. Low-level driver is expected to fill in chan,
55 * freq, and val fields. Other fields will be filled in by 80211.o based on
56 * hostapd information and low-level driver does not need to use them. The
57 * limits for each channel will be provided in 'struct ieee80211_conf' when
58 * configuring the low-level driver with hw->config callback. If a device has
59 * a default regulatory domain, IEEE80211_HW_DEFAULT_REG_DOMAIN_CONFIGURED
60 * can be set to let the driver configure all fields */
61struct ieee80211_channel {
62 short chan; /* channel number (IEEE 802.11) */
63 short freq; /* frequency in MHz */
64 int val; /* hw specific value for the channel */
65 int flag; /* flag for hostapd use (IEEE80211_CHAN_*) */
66 unsigned char power_level;
67 unsigned char antenna_max;
68};
69
70#define IEEE80211_RATE_ERP 0x00000001
71#define IEEE80211_RATE_BASIC 0x00000002
72#define IEEE80211_RATE_PREAMBLE2 0x00000004
73#define IEEE80211_RATE_SUPPORTED 0x00000010
74#define IEEE80211_RATE_OFDM 0x00000020
75#define IEEE80211_RATE_CCK 0x00000040
76#define IEEE80211_RATE_TURBO 0x00000080
77#define IEEE80211_RATE_MANDATORY 0x00000100
78
79#define IEEE80211_RATE_CCK_2 (IEEE80211_RATE_CCK | IEEE80211_RATE_PREAMBLE2)
80#define IEEE80211_RATE_MODULATION(f) \
81 (f & (IEEE80211_RATE_CCK | IEEE80211_RATE_OFDM))
82
83/* Low-level driver should set PREAMBLE2, OFDM, CCK, and TURBO flags.
84 * BASIC, SUPPORTED, ERP, and MANDATORY flags are set in 80211.o based on the
85 * configuration. */
86struct ieee80211_rate {
87 int rate; /* rate in 100 kbps */
88 int val; /* hw specific value for the rate */
89 int flags; /* IEEE80211_RATE_ flags */
90 int val2; /* hw specific value for the rate when using short preamble
91 * (only when IEEE80211_RATE_PREAMBLE2 flag is set, i.e., for
92 * 2, 5.5, and 11 Mbps) */
93 signed char min_rssi_ack;
94 unsigned char min_rssi_ack_delta;
95
96 /* following fields are set by 80211.o and need not be filled by the
97 * low-level driver */
98 int rate_inv; /* inverse of the rate (LCM(all rates) / rate) for
99 * optimizing channel utilization estimates */
100};
101
102/* 802.11g is backwards-compatible with 802.11b, so a wlan card can
103 * actually be both in 11b and 11g modes at the same time. */
104enum {
105 MODE_IEEE80211A, /* IEEE 802.11a */
106 MODE_IEEE80211B, /* IEEE 802.11b only */
107 MODE_ATHEROS_TURBO, /* Atheros Turbo mode (2x.11a at 5 GHz) */
108 MODE_IEEE80211G, /* IEEE 802.11g (and 802.11b compatibility) */
109 MODE_ATHEROS_TURBOG, /* Atheros Turbo mode (2x.11g at 2.4 GHz) */
110
111 /* keep last */
112 NUM_IEEE80211_MODES
113};
114
115struct ieee80211_hw_mode {
116 int mode; /* MODE_IEEE80211... */
117 int num_channels; /* Number of channels (below) */
118 struct ieee80211_channel *channels; /* Array of supported channels */
119 int num_rates; /* Number of rates (below) */
120 struct ieee80211_rate *rates; /* Array of supported rates */
121
122 struct list_head list; /* Internal, don't touch */
123};
124
125struct ieee80211_tx_queue_params {
126 int aifs; /* 0 .. 255; -1 = use default */
127 int cw_min; /* 2^n-1: 1, 3, 7, .. , 1023; 0 = use default */
128 int cw_max; /* 2^n-1: 1, 3, 7, .. , 1023; 0 = use default */
129 int burst_time; /* maximum burst time in 0.1 ms (i.e., 10 = 1 ms);
130 * 0 = disabled */
131};
132
133struct ieee80211_tx_queue_stats_data {
134 unsigned int len; /* num packets in queue */
135 unsigned int limit; /* queue len (soft) limit */
136 unsigned int count; /* total num frames sent */
137};
138
139enum {
140 IEEE80211_TX_QUEUE_DATA0,
141 IEEE80211_TX_QUEUE_DATA1,
142 IEEE80211_TX_QUEUE_DATA2,
143 IEEE80211_TX_QUEUE_DATA3,
144 IEEE80211_TX_QUEUE_DATA4,
145 IEEE80211_TX_QUEUE_SVP,
146
147 NUM_TX_DATA_QUEUES,
148
149/* due to stupidity in the sub-ioctl userspace interface, the items in
150 * this struct need to have fixed values. As soon as it is removed, we can
151 * fix these entries. */
152 IEEE80211_TX_QUEUE_AFTER_BEACON = 6,
153 IEEE80211_TX_QUEUE_BEACON = 7
154};
155
156struct ieee80211_tx_queue_stats {
157 struct ieee80211_tx_queue_stats_data data[NUM_TX_DATA_QUEUES];
158};
159
160struct ieee80211_low_level_stats {
161 unsigned int dot11ACKFailureCount;
162 unsigned int dot11RTSFailureCount;
163 unsigned int dot11FCSErrorCount;
164 unsigned int dot11RTSSuccessCount;
165};
166
167/* Transmit control fields. This data structure is passed to low-level driver
168 * with each TX frame. The low-level driver is responsible for configuring
169 * the hardware to use given values (depending on what is supported). */
170#define HW_KEY_IDX_INVALID -1
171
172struct ieee80211_tx_control {
173 int tx_rate; /* Transmit rate, given as the hw specific value for the
174 * rate (from struct ieee80211_rate) */
175 int rts_cts_rate; /* Transmit rate for RTS/CTS frame, given as the hw
176 * specific value for the rate (from
177 * struct ieee80211_rate) */
178
179#define IEEE80211_TXCTL_REQ_TX_STATUS (1<<0)/* request TX status callback for
180 * this frame */
181#define IEEE80211_TXCTL_DO_NOT_ENCRYPT (1<<1) /* send this frame without
182 * encryption; e.g., for EAPOL
183 * frames */
184#define IEEE80211_TXCTL_USE_RTS_CTS (1<<2) /* use RTS-CTS before sending
185 * frame */
186#define IEEE80211_TXCTL_USE_CTS_PROTECT (1<<3) /* use CTS protection for the
187 * frame (e.g., for combined
188 * 802.11g / 802.11b networks) */
189#define IEEE80211_TXCTL_NO_ACK (1<<4) /* tell the low level not to
190 * wait for an ack */
191#define IEEE80211_TXCTL_RATE_CTRL_PROBE (1<<5)
192#define IEEE80211_TXCTL_CLEAR_DST_MASK (1<<6)
193#define IEEE80211_TXCTL_REQUEUE (1<<7)
194#define IEEE80211_TXCTL_FIRST_FRAGMENT (1<<8) /* this is a first fragment of
195 * the frame */
196#define IEEE80211_TXCTL_TKIP_NEW_PHASE1_KEY (1<<9)
Ivo van Doornd5d08de2007-07-27 15:43:23 +0200197#define IEEE80211_TXCTL_LONG_RETRY_LIMIT (1<<10) /* this frame should be send
198 * using the through
199 * set_retry_limit configured
200 * long retry value */
Jiri Bencf0706e822007-05-05 11:45:53 -0700201 u32 flags; /* tx control flags defined
202 * above */
Ivo van Doornd5d08de2007-07-27 15:43:23 +0200203 u8 retry_limit; /* 1 = only first attempt, 2 = one retry, ..
204 * This could be used when set_retry_limit
205 * is not implemented by the driver */
Jiri Bencf0706e822007-05-05 11:45:53 -0700206 u8 power_level; /* per-packet transmit power level, in dBm */
207 u8 antenna_sel_tx; /* 0 = default/diversity, 1 = Ant0, 2 = Ant1 */
208 s8 key_idx; /* -1 = do not encrypt, >= 0 keyidx from
209 * hw->set_key() */
210 u8 icv_len; /* length of the ICV/MIC field in octets */
211 u8 iv_len; /* length of the IV field in octets */
212 u8 tkip_key[16]; /* generated phase2/phase1 key for hw TKIP */
213 u8 queue; /* hardware queue to use for this frame;
214 * 0 = highest, hw->queues-1 = lowest */
215 u8 sw_retry_attempt; /* number of times hw has tried to
216 * transmit frame (not incl. hw retries) */
217
218 struct ieee80211_rate *rate; /* internal 80211.o rate */
219 struct ieee80211_rate *rts_rate; /* internal 80211.o rate
220 * for RTS/CTS */
221 int alt_retry_rate; /* retry rate for the last retries, given as the
222 * hw specific value for the rate (from
223 * struct ieee80211_rate). To be used to limit
224 * packet dropping when probing higher rates, if hw
225 * supports multiple retry rates. -1 = not used */
226 int type; /* internal */
227 int ifindex; /* internal */
228};
229
230/* Receive status. The low-level driver should provide this information
231 * (the subset supported by hardware) to the 802.11 code with each received
232 * frame. */
233struct ieee80211_rx_status {
234 u64 mactime;
235 int freq; /* receive frequency in Mhz */
236 int channel;
237 int phymode;
238 int ssi;
239 int signal; /* used as qual in statistics reporting */
240 int noise;
241 int antenna;
242 int rate;
243#define RX_FLAG_MMIC_ERROR (1<<0)
244#define RX_FLAG_DECRYPTED (1<<1)
245#define RX_FLAG_RADIOTAP (1<<2)
246 int flag;
247};
248
249/* Transmit status. The low-level driver should provide this information
250 * (the subset supported by hardware) to the 802.11 code for each transmit
251 * frame. */
252struct ieee80211_tx_status {
253 /* copied ieee80211_tx_control structure */
254 struct ieee80211_tx_control control;
255
256#define IEEE80211_TX_STATUS_TX_FILTERED (1<<0)
257#define IEEE80211_TX_STATUS_ACK (1<<1) /* whether the TX frame was ACKed */
258 u32 flags; /* tx staus flags defined above */
259
260 int ack_signal; /* measured signal strength of the ACK frame */
261 int excessive_retries;
262 int retry_count;
263
264 int queue_length; /* information about TX queue */
265 int queue_number;
266};
267
268
269/**
270 * struct ieee80211_conf - configuration of the device
271 *
272 * This struct indicates how the driver shall configure the hardware.
273 *
274 * @radio_enabled: when zero, driver is required to switch off the radio.
275 */
276struct ieee80211_conf {
277 int channel; /* IEEE 802.11 channel number */
278 int freq; /* MHz */
279 int channel_val; /* hw specific value for the channel */
280
281 int phymode; /* MODE_IEEE80211A, .. */
282 struct ieee80211_channel *chan;
283 struct ieee80211_hw_mode *mode;
284 unsigned int regulatory_domain;
285 int radio_enabled;
286
287 int beacon_int;
288
289#define IEEE80211_CONF_SHORT_SLOT_TIME (1<<0) /* use IEEE 802.11g Short Slot
290 * Time */
291#define IEEE80211_CONF_SSID_HIDDEN (1<<1) /* do not broadcast the ssid */
292#define IEEE80211_CONF_RADIOTAP (1<<2) /* use radiotap if supported
293 check this bit at RX time */
294 u32 flags; /* configuration flags defined above */
295
296 u8 power_level; /* transmit power limit for current
297 * regulatory domain; in dBm */
298 u8 antenna_max; /* maximum antenna gain */
299 short tx_power_reduction; /* in 0.1 dBm */
300
301 /* 0 = default/diversity, 1 = Ant0, 2 = Ant1 */
302 u8 antenna_sel_tx;
303 u8 antenna_sel_rx;
304
305 int antenna_def;
306 int antenna_mode;
307
308 /* Following five fields are used for IEEE 802.11H */
309 unsigned int radar_detect;
310 unsigned int spect_mgmt;
311 /* All following fields are currently unused. */
312 unsigned int quiet_duration; /* duration of quiet period */
313 unsigned int quiet_offset; /* how far into the beacon is the quiet
314 * period */
315 unsigned int quiet_period;
316 u8 radar_firpwr_threshold;
317 u8 radar_rssi_threshold;
318 u8 pulse_height_threshold;
319 u8 pulse_rssi_threshold;
320 u8 pulse_inband_threshold;
321};
322
323/**
324 * enum ieee80211_if_types - types of 802.11 network interfaces
325 *
326 * @IEEE80211_IF_TYPE_AP: interface in AP mode.
327 * @IEEE80211_IF_TYPE_MGMT: special interface for communication with hostap
328 * daemon. Drivers should never see this type.
329 * @IEEE80211_IF_TYPE_STA: interface in STA (client) mode.
330 * @IEEE80211_IF_TYPE_IBSS: interface in IBSS (ad-hoc) mode.
331 * @IEEE80211_IF_TYPE_MNTR: interface in monitor (rfmon) mode.
332 * @IEEE80211_IF_TYPE_WDS: interface in WDS mode.
333 * @IEEE80211_IF_TYPE_VLAN: not used.
334 */
335enum ieee80211_if_types {
336 IEEE80211_IF_TYPE_AP = 0x00000000,
337 IEEE80211_IF_TYPE_MGMT = 0x00000001,
338 IEEE80211_IF_TYPE_STA = 0x00000002,
339 IEEE80211_IF_TYPE_IBSS = 0x00000003,
340 IEEE80211_IF_TYPE_MNTR = 0x00000004,
341 IEEE80211_IF_TYPE_WDS = 0x5A580211,
342 IEEE80211_IF_TYPE_VLAN = 0x00080211,
343};
344
345/**
346 * struct ieee80211_if_init_conf - initial configuration of an interface
347 *
348 * @if_id: internal interface ID. This number has no particular meaning to
349 * drivers and the only allowed usage is to pass it to
350 * ieee80211_beacon_get() and ieee80211_get_buffered_bc() functions.
351 * This field is not valid for monitor interfaces
352 * (interfaces of %IEEE80211_IF_TYPE_MNTR type).
353 * @type: one of &enum ieee80211_if_types constants. Determines the type of
354 * added/removed interface.
355 * @mac_addr: pointer to MAC address of the interface. This pointer is valid
356 * until the interface is removed (i.e. it cannot be used after
357 * remove_interface() callback was called for this interface).
Johannes Berg4480f15c2007-07-10 19:32:10 +0200358 * This pointer will be %NULL for monitor interfaces, be careful.
Jiri Bencf0706e822007-05-05 11:45:53 -0700359 *
360 * This structure is used in add_interface() and remove_interface()
361 * callbacks of &struct ieee80211_hw.
Johannes Berg4480f15c2007-07-10 19:32:10 +0200362 *
363 * When you allow multiple interfaces to be added to your PHY, take care
364 * that the hardware can actually handle multiple MAC addresses. However,
365 * also take care that when there's no interface left with mac_addr != %NULL
366 * you remove the MAC address from the device to avoid acknowledging packets
367 * in pure monitor mode.
Jiri Bencf0706e822007-05-05 11:45:53 -0700368 */
369struct ieee80211_if_init_conf {
370 int if_id;
371 int type;
372 void *mac_addr;
373};
374
375/**
376 * struct ieee80211_if_conf - configuration of an interface
377 *
378 * @type: type of the interface. This is always the same as was specified in
379 * &struct ieee80211_if_init_conf. The type of an interface never changes
380 * during the life of the interface; this field is present only for
381 * convenience.
382 * @bssid: BSSID of the network we are associated to/creating.
383 * @ssid: used (together with @ssid_len) by drivers for hardware that
384 * generate beacons independently. The pointer is valid only during the
385 * config_interface() call, so copy the value somewhere if you need
386 * it.
387 * @ssid_len: length of the @ssid field.
388 * @generic_elem: used (together with @generic_elem_len) by drivers for
389 * hardware that generate beacons independently. The pointer is valid
390 * only during the config_interface() call, so copy the value somewhere
391 * if you need it.
392 * @generic_elem_len: length of the generic element.
393 * @beacon: beacon template. Valid only if @host_gen_beacon_template in
394 * &struct ieee80211_hw is set. The driver is responsible of freeing
395 * the sk_buff.
396 * @beacon_control: tx_control for the beacon template, this field is only
397 * valid when the @beacon field was set.
398 *
399 * This structure is passed to the config_interface() callback of
400 * &struct ieee80211_hw.
401 */
402struct ieee80211_if_conf {
403 int type;
404 u8 *bssid;
405 u8 *ssid;
406 size_t ssid_len;
407 u8 *generic_elem;
408 size_t generic_elem_len;
409 struct sk_buff *beacon;
410 struct ieee80211_tx_control *beacon_control;
411};
412
413typedef enum { ALG_NONE, ALG_WEP, ALG_TKIP, ALG_CCMP, ALG_NULL }
414ieee80211_key_alg;
415
416
417struct ieee80211_key_conf {
418
419 int hw_key_idx; /* filled + used by low-level driver */
420 ieee80211_key_alg alg;
421 int keylen;
422
423#define IEEE80211_KEY_FORCE_SW_ENCRYPT (1<<0) /* to be cleared by low-level
424 driver */
425#define IEEE80211_KEY_DEFAULT_TX_KEY (1<<1) /* This key is the new default TX
426 key (used only for broadcast
427 keys). */
428#define IEEE80211_KEY_DEFAULT_WEP_ONLY (1<<2) /* static WEP is the only
429 configured security policy;
430 this allows some low-level
431 drivers to determine when
432 hwaccel can be used */
433 u32 flags; /* key configuration flags defined above */
434
435 s8 keyidx; /* WEP key index */
436 u8 key[0];
437};
438
439#define IEEE80211_SEQ_COUNTER_RX 0
440#define IEEE80211_SEQ_COUNTER_TX 1
441
442typedef enum {
443 SET_KEY, DISABLE_KEY, REMOVE_ALL_KEYS,
444} set_key_cmd;
445
446/* This is driver-visible part of the per-hw state the stack keeps. */
447struct ieee80211_hw {
448 /* points to the cfg80211 wiphy for this piece. Note
449 * that you must fill in the perm_addr and dev fields
450 * of this structure, use the macros provided below. */
451 struct wiphy *wiphy;
452
453 /* assigned by mac80211, don't write */
454 struct ieee80211_conf conf;
455
456 /* Single thread workqueue available for driver use
457 * Allocated by mac80211 on registration */
458 struct workqueue_struct *workqueue;
459
460 /* Pointer to the private area that was
461 * allocated with this struct for you. */
462 void *priv;
463
464 /* The rest is information about your hardware */
465
466 /* TODO: frame_type 802.11/802.3, sw_encryption requirements */
467
Johannes Berg0ef6e492007-08-28 17:01:52 -0400468/* hole at 0 */
Jiri Bencf0706e822007-05-05 11:45:53 -0700469
Johannes Berg0ef6e492007-08-28 17:01:52 -0400470 /*
471 * The device only needs to be supplied with a beacon template.
472 * If you need the host to generate each beacon then don't use
473 * this flag and use ieee80211_beacon_get().
474 */
Jiri Bencf0706e822007-05-05 11:45:53 -0700475#define IEEE80211_HW_HOST_GEN_BEACON_TEMPLATE (1<<1)
476
Johannes Berg3017b802007-08-28 17:01:53 -0400477 /*
478 * Some devices handle decryption internally and do not
Jiri Bencf0706e822007-05-05 11:45:53 -0700479 * indicate whether the frame was encrypted (unencrypted frames
480 * will be dropped by the hardware, unless specifically allowed
Johannes Berg3017b802007-08-28 17:01:53 -0400481 * through.)
482 * It is permissible to not handle all encrypted frames and fall
483 * back to software encryption; however, if this flag is set
484 * unencrypted frames must be dropped unless the driver is told
485 * otherwise via the set_ieee8021x() callback.
486 */
Jiri Bencf0706e822007-05-05 11:45:53 -0700487#define IEEE80211_HW_DEVICE_HIDES_WEP (1<<2)
488
489 /* Whether RX frames passed to ieee80211_rx() include FCS in the end */
490#define IEEE80211_HW_RX_INCLUDES_FCS (1<<3)
491
492 /* Some wireless LAN chipsets buffer broadcast/multicast frames for
493 * power saving stations in the hardware/firmware and others rely on
494 * the host system for such buffering. This option is used to
495 * configure the IEEE 802.11 upper layer to buffer broadcast/multicast
496 * frames when there are power saving stations so that low-level driver
497 * can fetch them with ieee80211_get_buffered_bc(). */
498#define IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING (1<<4)
499
Johannes Berg3017b802007-08-28 17:01:53 -0400500 /*
501 * This flag is only relevant if hardware encryption is used.
502 * If set, it has two meanings:
503 * 1) the IV and ICV are present in received frames that have
504 * been decrypted (unless IEEE80211_HW_DEVICE_HIDES_WEP is
505 * also set)
506 * 2) on transmission, the IV should be generated in software.
507 *
508 * Please let us know if you *don't* use this flag, the stack would
509 * really like to be able to get the IV to keep key statistics
510 * accurate.
511 */
Jiri Bencf0706e822007-05-05 11:45:53 -0700512#define IEEE80211_HW_WEP_INCLUDE_IV (1<<5)
513
Johannes Bergaaa92e92007-09-06 03:36:10 -0700514/* hole at 6 */
Jiri Bencf0706e822007-05-05 11:45:53 -0700515
516 /* Force software encryption for TKIP packets if WMM is enabled. */
517#define IEEE80211_HW_NO_TKIP_WMM_HWACCEL (1<<7)
518
Johannes Berg3017b802007-08-28 17:01:53 -0400519 /*
520 * Some devices handle Michael MIC internally and do not include MIC in
521 * the received packets passed up. This flag must be set for such
522 * devices. The 'encryption' frame control bit is expected to be still
523 * set in the IEEE 802.11 header with this option unlike with the
524 * IEEE80211_HW_DEVICE_HIDES_WEP flag.
Jiri Bencf0706e822007-05-05 11:45:53 -0700525 */
526#define IEEE80211_HW_DEVICE_STRIPS_MIC (1<<8)
527
528 /* Device is capable of performing full monitor mode even during
529 * normal operation. */
530#define IEEE80211_HW_MONITOR_DURING_OPER (1<<9)
531
532 /* Device does not need BSSID filter set to broadcast in order to
533 * receive all probe responses while scanning */
534#define IEEE80211_HW_NO_PROBE_FILTERING (1<<10)
535
536 /* Channels are already configured to the default regulatory domain
537 * specified in the device's EEPROM */
538#define IEEE80211_HW_DEFAULT_REG_DOMAIN_CONFIGURED (1<<11)
539
540 /* calculate Michael MIC for an MSDU when doing hwcrypto */
541#define IEEE80211_HW_TKIP_INCLUDE_MMIC (1<<12)
542 /* Do TKIP phase1 key mixing in stack to support cards only do
543 * phase2 key mixing when doing hwcrypto */
544#define IEEE80211_HW_TKIP_REQ_PHASE1_KEY (1<<13)
545 /* Do TKIP phase1 and phase2 key mixing in stack and send the generated
546 * per-packet RC4 key with each TX frame when doing hwcrypto */
547#define IEEE80211_HW_TKIP_REQ_PHASE2_KEY (1<<14)
548
549 u32 flags; /* hardware flags defined above */
550
551 /* Set to the size of a needed device specific skb headroom for TX skbs. */
552 unsigned int extra_tx_headroom;
553
554 /* This is the time in us to change channels
555 */
556 int channel_change_time;
557 /* Maximum values for various statistics.
558 * Leave at 0 to indicate no support. Use negative numbers for dBm. */
559 s8 max_rssi;
560 s8 max_signal;
561 s8 max_noise;
562
563 /* Number of available hardware TX queues for data packets.
564 * WMM requires at least four queues. */
565 int queues;
566};
567
568static inline void SET_IEEE80211_DEV(struct ieee80211_hw *hw, struct device *dev)
569{
570 set_wiphy_dev(hw->wiphy, dev);
571}
572
573static inline void SET_IEEE80211_PERM_ADDR(struct ieee80211_hw *hw, u8 *addr)
574{
575 memcpy(hw->wiphy->perm_addr, addr, ETH_ALEN);
576}
577
578/* Configuration block used by the low-level driver to tell the 802.11 code
579 * about supported hardware features and to pass function pointers to callback
580 * functions. */
581struct ieee80211_ops {
582 /* Handler that 802.11 module calls for each transmitted frame.
583 * skb contains the buffer starting from the IEEE 802.11 header.
584 * The low-level driver should send the frame out based on
585 * configuration in the TX control data.
586 * Must be atomic. */
587 int (*tx)(struct ieee80211_hw *hw, struct sk_buff *skb,
588 struct ieee80211_tx_control *control);
589
Jiri Bencf0706e822007-05-05 11:45:53 -0700590 /* Handler that is called when any netdevice attached to the hardware
591 * device is set UP for the first time. This can be used, e.g., to
592 * enable interrupts and beacon sending. */
593 int (*open)(struct ieee80211_hw *hw);
594
595 /* Handler that is called when the last netdevice attached to the
596 * hardware device is set DOWN. This can be used, e.g., to disable
597 * interrupts and beacon sending. */
598 int (*stop)(struct ieee80211_hw *hw);
599
600 /* Handler for asking a driver if a new interface can be added (or,
601 * more exactly, set UP). If the handler returns zero, the interface
602 * is added. Driver should perform any initialization it needs prior
603 * to returning zero. By returning non-zero addition of the interface
604 * is inhibited. Unless monitor_during_oper is set, it is guaranteed
605 * that monitor interfaces and normal interfaces are mutually
Johannes Berg4480f15c2007-07-10 19:32:10 +0200606 * exclusive. If assigned, the open() handler is called after
607 * add_interface() if this is the first device added. The
608 * add_interface() callback has to be assigned because it is the only
609 * way to obtain the requested MAC address for any interface.
610 */
Jiri Bencf0706e822007-05-05 11:45:53 -0700611 int (*add_interface)(struct ieee80211_hw *hw,
612 struct ieee80211_if_init_conf *conf);
613
614 /* Notify a driver that an interface is going down. The stop() handler
615 * is called prior to this if this is a last interface. */
616 void (*remove_interface)(struct ieee80211_hw *hw,
617 struct ieee80211_if_init_conf *conf);
618
619 /* Handler for configuration requests. IEEE 802.11 code calls this
620 * function to change hardware configuration, e.g., channel. */
621 int (*config)(struct ieee80211_hw *hw, struct ieee80211_conf *conf);
622
623 /* Handler for configuration requests related to interfaces (e.g.
624 * BSSID). */
625 int (*config_interface)(struct ieee80211_hw *hw,
626 int if_id, struct ieee80211_if_conf *conf);
627
628 /* ieee80211 drivers do not have access to the &struct net_device
629 * that is (are) connected with their device. Hence (and because
630 * we need to combine the multicast lists and flags for multiple
631 * virtual interfaces), they cannot assign set_multicast_list.
632 * The parameters here replace dev->flags and dev->mc_count,
633 * dev->mc_list is replaced by calling ieee80211_get_mc_list_item.
634 * Must be atomic. */
635 void (*set_multicast_list)(struct ieee80211_hw *hw,
636 unsigned short flags, int mc_count);
637
638 /* Set TIM bit handler. If the hardware/firmware takes care of beacon
639 * generation, IEEE 802.11 code uses this function to tell the
640 * low-level to set (or clear if set==0) TIM bit for the given aid. If
641 * host system is used to generate beacons, this handler is not used
642 * and low-level driver should set it to NULL.
643 * Must be atomic. */
644 int (*set_tim)(struct ieee80211_hw *hw, int aid, int set);
645
646 /* Set encryption key. IEEE 802.11 module calls this function to set
647 * encryption keys. addr is ff:ff:ff:ff:ff:ff for default keys and
648 * station hwaddr for individual keys. aid of the station is given
649 * to help low-level driver in selecting which key->hw_key_idx to use
650 * for this key. TX control data will use the hw_key_idx selected by
Michael Wube8755e2007-07-27 15:43:23 +0200651 * the low-level driver. */
Jiri Bencf0706e822007-05-05 11:45:53 -0700652 int (*set_key)(struct ieee80211_hw *hw, set_key_cmd cmd,
653 u8 *addr, struct ieee80211_key_conf *key, int aid);
654
655 /* Set TX key index for default/broadcast keys. This is needed in cases
656 * where wlan card is doing full WEP/TKIP encapsulation (wep_include_iv
657 * is not set), in other cases, this function pointer can be set to
658 * NULL since the IEEE 802. 11 module takes care of selecting the key
659 * index for each TX frame. */
660 int (*set_key_idx)(struct ieee80211_hw *hw, int idx);
661
662 /* Enable/disable IEEE 802.1X. This item requests wlan card to pass
663 * unencrypted EAPOL-Key frames even when encryption is configured.
664 * If the wlan card does not require such a configuration, this
665 * function pointer can be set to NULL. */
666 int (*set_ieee8021x)(struct ieee80211_hw *hw, int use_ieee8021x);
667
668 /* Set port authorization state (IEEE 802.1X PAE) to be authorized
669 * (authorized=1) or unauthorized (authorized=0). This function can be
670 * used if the wlan hardware or low-level driver implements PAE.
671 * 80211.o module will anyway filter frames based on authorization
672 * state, so this function pointer can be NULL if low-level driver does
673 * not require event notification about port state changes.
674 * Currently unused. */
675 int (*set_port_auth)(struct ieee80211_hw *hw, u8 *addr,
676 int authorized);
677
678 /* Ask the hardware to service the scan request, no need to start
679 * the scan state machine in stack. */
680 int (*hw_scan)(struct ieee80211_hw *hw, u8 *ssid, size_t len);
681
682 /* return low-level statistics */
683 int (*get_stats)(struct ieee80211_hw *hw,
684 struct ieee80211_low_level_stats *stats);
685
686 /* For devices that generate their own beacons and probe response
687 * or association responses this updates the state of privacy_invoked
688 * returns 0 for success or an error number */
689 int (*set_privacy_invoked)(struct ieee80211_hw *hw,
690 int privacy_invoked);
691
692 /* For devices that have internal sequence counters, allow 802.11
693 * code to access the current value of a counter */
694 int (*get_sequence_counter)(struct ieee80211_hw *hw,
695 u8* addr, u8 keyidx, u8 txrx,
696 u32* iv32, u16* iv16);
697
698 /* Configuration of RTS threshold (if device needs it) */
699 int (*set_rts_threshold)(struct ieee80211_hw *hw, u32 value);
700
701 /* Configuration of fragmentation threshold.
702 * Assign this if the device does fragmentation by itself,
703 * if this method is assigned then the stack will not do
704 * fragmentation. */
705 int (*set_frag_threshold)(struct ieee80211_hw *hw, u32 value);
706
707 /* Configuration of retry limits (if device needs it) */
708 int (*set_retry_limit)(struct ieee80211_hw *hw,
709 u32 short_retry, u32 long_retr);
710
711 /* Number of STAs in STA table notification (NULL = disabled).
712 * Must be atomic. */
713 void (*sta_table_notification)(struct ieee80211_hw *hw,
714 int num_sta);
715
Daniel Draked9430a32007-07-27 15:43:24 +0200716 /* Handle ERP IE change notifications. Must be atomic. */
717 void (*erp_ie_changed)(struct ieee80211_hw *hw, u8 changes,
718 int cts_protection, int preamble);
719
720 /* Flags for the erp_ie_changed changes parameter */
721#define IEEE80211_ERP_CHANGE_PROTECTION (1<<0) /* protection flag changed */
722#define IEEE80211_ERP_CHANGE_PREAMBLE (1<<1) /* barker preamble mode changed */
723
Jiri Bencf0706e822007-05-05 11:45:53 -0700724 /* Configure TX queue parameters (EDCF (aifs, cw_min, cw_max),
725 * bursting) for a hardware TX queue.
726 * queue = IEEE80211_TX_QUEUE_*.
727 * Must be atomic. */
728 int (*conf_tx)(struct ieee80211_hw *hw, int queue,
729 const struct ieee80211_tx_queue_params *params);
730
731 /* Get statistics of the current TX queue status. This is used to get
732 * number of currently queued packets (queue length), maximum queue
733 * size (limit), and total number of packets sent using each TX queue
734 * (count).
735 * Currently unused. */
736 int (*get_tx_stats)(struct ieee80211_hw *hw,
737 struct ieee80211_tx_queue_stats *stats);
738
739 /* Get the current TSF timer value from firmware/hardware. Currently,
740 * this is only used for IBSS mode debugging and, as such, is not a
741 * required function.
742 * Must be atomic. */
743 u64 (*get_tsf)(struct ieee80211_hw *hw);
744
745 /* Reset the TSF timer and allow firmware/hardware to synchronize with
746 * other STAs in the IBSS. This is only used in IBSS mode. This
747 * function is optional if the firmware/hardware takes full care of
748 * TSF synchronization. */
749 void (*reset_tsf)(struct ieee80211_hw *hw);
750
751 /* Setup beacon data for IBSS beacons. Unlike access point (Master),
752 * IBSS uses a fixed beacon frame which is configured using this
753 * function. This handler is required only for IBSS mode. */
754 int (*beacon_update)(struct ieee80211_hw *hw,
755 struct sk_buff *skb,
756 struct ieee80211_tx_control *control);
757
758 /* Determine whether the last IBSS beacon was sent by us. This is
759 * needed only for IBSS mode and the result of this function is used to
760 * determine whether to reply to Probe Requests. */
761 int (*tx_last_beacon)(struct ieee80211_hw *hw);
762};
763
764/* Allocate a new hardware device. This must be called once for each
765 * hardware device. The returned pointer must be used to refer to this
766 * device when calling other functions. 802.11 code allocates a private data
767 * area for the low-level driver. The size of this area is given as
768 * priv_data_len.
769 */
770struct ieee80211_hw *ieee80211_alloc_hw(size_t priv_data_len,
771 const struct ieee80211_ops *ops);
772
773/* Register hardware device to the IEEE 802.11 code and kernel. Low-level
774 * drivers must call this function before using any other IEEE 802.11
775 * function except ieee80211_register_hwmode. */
776int ieee80211_register_hw(struct ieee80211_hw *hw);
777
778/* driver can use this and ieee80211_get_rx_led_name to get the
779 * name of the registered LEDs after ieee80211_register_hw
780 * was called.
781 * This is useful to set the default trigger on the LED class
782 * device that your driver should export for each LED the device
783 * has, that way the default behaviour will be as expected but
784 * the user can still change it/turn off the LED etc.
785 */
786#ifdef CONFIG_MAC80211_LEDS
787extern char *__ieee80211_get_tx_led_name(struct ieee80211_hw *hw);
788extern char *__ieee80211_get_rx_led_name(struct ieee80211_hw *hw);
789#endif
790static inline char *ieee80211_get_tx_led_name(struct ieee80211_hw *hw)
791{
792#ifdef CONFIG_MAC80211_LEDS
793 return __ieee80211_get_tx_led_name(hw);
794#else
795 return NULL;
796#endif
797}
798
799static inline char *ieee80211_get_rx_led_name(struct ieee80211_hw *hw)
800{
801#ifdef CONFIG_MAC80211_LEDS
802 return __ieee80211_get_rx_led_name(hw);
803#else
804 return NULL;
805#endif
806}
807
808/* Register a new hardware PHYMODE capability to the stack. */
809int ieee80211_register_hwmode(struct ieee80211_hw *hw,
810 struct ieee80211_hw_mode *mode);
811
812/* Unregister a hardware device. This function instructs 802.11 code to free
813 * allocated resources and unregister netdevices from the kernel. */
814void ieee80211_unregister_hw(struct ieee80211_hw *hw);
815
816/* Free everything that was allocated including private data of a driver. */
817void ieee80211_free_hw(struct ieee80211_hw *hw);
818
819/* Receive frame callback function. The low-level driver uses this function to
820 * send received frames to the IEEE 802.11 code. Receive buffer (skb) must
821 * start with IEEE 802.11 header. */
822void __ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb,
823 struct ieee80211_rx_status *status);
824void ieee80211_rx_irqsafe(struct ieee80211_hw *hw,
825 struct sk_buff *skb,
826 struct ieee80211_rx_status *status);
827
828/* Transmit status callback function. The low-level driver must call this
829 * function to report transmit status for all the TX frames that had
830 * req_tx_status set in the transmit control fields. In addition, this should
831 * be called at least for all unicast frames to provide information for TX rate
832 * control algorithm. In order to maintain all statistics, this function is
833 * recommended to be called after each frame, including multicast/broadcast, is
834 * sent. */
835void ieee80211_tx_status(struct ieee80211_hw *hw,
836 struct sk_buff *skb,
837 struct ieee80211_tx_status *status);
838void ieee80211_tx_status_irqsafe(struct ieee80211_hw *hw,
839 struct sk_buff *skb,
840 struct ieee80211_tx_status *status);
841
842/**
843 * ieee80211_beacon_get - beacon generation function
844 * @hw: pointer obtained from ieee80211_alloc_hw().
845 * @if_id: interface ID from &struct ieee80211_if_init_conf.
846 * @control: will be filled with information needed to send this beacon.
847 *
848 * If the beacon frames are generated by the host system (i.e., not in
849 * hardware/firmware), the low-level driver uses this function to receive
850 * the next beacon frame from the 802.11 code. The low-level is responsible
851 * for calling this function before beacon data is needed (e.g., based on
852 * hardware interrupt). Returned skb is used only once and low-level driver
853 * is responsible of freeing it.
854 */
855struct sk_buff *ieee80211_beacon_get(struct ieee80211_hw *hw,
856 int if_id,
857 struct ieee80211_tx_control *control);
858
859/**
860 * ieee80211_rts_get - RTS frame generation function
861 * @hw: pointer obtained from ieee80211_alloc_hw().
Daniel Drake7e9ed182007-07-27 15:43:24 +0200862 * @if_id: interface ID from &struct ieee80211_if_init_conf.
Jiri Bencf0706e822007-05-05 11:45:53 -0700863 * @frame: pointer to the frame that is going to be protected by the RTS.
864 * @frame_len: the frame length (in octets).
865 * @frame_txctl: &struct ieee80211_tx_control of the frame.
866 * @rts: The buffer where to store the RTS frame.
867 *
868 * If the RTS frames are generated by the host system (i.e., not in
869 * hardware/firmware), the low-level driver uses this function to receive
870 * the next RTS frame from the 802.11 code. The low-level is responsible
871 * for calling this function before and RTS frame is needed.
872 */
Daniel Drake7e9ed182007-07-27 15:43:24 +0200873void ieee80211_rts_get(struct ieee80211_hw *hw, int if_id,
Jiri Bencf0706e822007-05-05 11:45:53 -0700874 const void *frame, size_t frame_len,
875 const struct ieee80211_tx_control *frame_txctl,
876 struct ieee80211_rts *rts);
877
878/**
879 * ieee80211_rts_duration - Get the duration field for an RTS frame
880 * @hw: pointer obtained from ieee80211_alloc_hw().
Daniel Drake7e9ed182007-07-27 15:43:24 +0200881 * @if_id: interface ID from &struct ieee80211_if_init_conf.
Jiri Bencf0706e822007-05-05 11:45:53 -0700882 * @frame_len: the length of the frame that is going to be protected by the RTS.
883 * @frame_txctl: &struct ieee80211_tx_control of the frame.
884 *
885 * If the RTS is generated in firmware, but the host system must provide
886 * the duration field, the low-level driver uses this function to receive
887 * the duration field value in little-endian byteorder.
888 */
Daniel Drake7e9ed182007-07-27 15:43:24 +0200889__le16 ieee80211_rts_duration(struct ieee80211_hw *hw, int if_id,
Jiri Bencf0706e822007-05-05 11:45:53 -0700890 size_t frame_len,
891 const struct ieee80211_tx_control *frame_txctl);
892
893/**
894 * ieee80211_ctstoself_get - CTS-to-self frame generation function
895 * @hw: pointer obtained from ieee80211_alloc_hw().
Daniel Drake7e9ed182007-07-27 15:43:24 +0200896 * @if_id: interface ID from &struct ieee80211_if_init_conf.
Jiri Bencf0706e822007-05-05 11:45:53 -0700897 * @frame: pointer to the frame that is going to be protected by the CTS-to-self.
898 * @frame_len: the frame length (in octets).
899 * @frame_txctl: &struct ieee80211_tx_control of the frame.
900 * @cts: The buffer where to store the CTS-to-self frame.
901 *
902 * If the CTS-to-self frames are generated by the host system (i.e., not in
903 * hardware/firmware), the low-level driver uses this function to receive
904 * the next CTS-to-self frame from the 802.11 code. The low-level is responsible
905 * for calling this function before and CTS-to-self frame is needed.
906 */
Daniel Drake7e9ed182007-07-27 15:43:24 +0200907void ieee80211_ctstoself_get(struct ieee80211_hw *hw, int if_id,
Jiri Bencf0706e822007-05-05 11:45:53 -0700908 const void *frame, size_t frame_len,
909 const struct ieee80211_tx_control *frame_txctl,
910 struct ieee80211_cts *cts);
911
912/**
913 * ieee80211_ctstoself_duration - Get the duration field for a CTS-to-self frame
914 * @hw: pointer obtained from ieee80211_alloc_hw().
Daniel Drake7e9ed182007-07-27 15:43:24 +0200915 * @if_id: interface ID from &struct ieee80211_if_init_conf.
Jiri Bencf0706e822007-05-05 11:45:53 -0700916 * @frame_len: the length of the frame that is going to be protected by the CTS-to-self.
917 * @frame_txctl: &struct ieee80211_tx_control of the frame.
918 *
919 * If the CTS-to-self is generated in firmware, but the host system must provide
920 * the duration field, the low-level driver uses this function to receive
921 * the duration field value in little-endian byteorder.
922 */
Daniel Drake7e9ed182007-07-27 15:43:24 +0200923__le16 ieee80211_ctstoself_duration(struct ieee80211_hw *hw, int if_id,
Jiri Bencf0706e822007-05-05 11:45:53 -0700924 size_t frame_len,
925 const struct ieee80211_tx_control *frame_txctl);
926
927/**
928 * ieee80211_generic_frame_duration - Calculate the duration field for a frame
929 * @hw: pointer obtained from ieee80211_alloc_hw().
Daniel Drake7e9ed182007-07-27 15:43:24 +0200930 * @if_id: interface ID from &struct ieee80211_if_init_conf.
Jiri Bencf0706e822007-05-05 11:45:53 -0700931 * @frame_len: the length of the frame.
932 * @rate: the rate (in 100kbps) at which the frame is going to be transmitted.
933 *
934 * Calculate the duration field of some generic frame, given its
935 * length and transmission rate (in 100kbps).
936 */
Daniel Drake7e9ed182007-07-27 15:43:24 +0200937__le16 ieee80211_generic_frame_duration(struct ieee80211_hw *hw, int if_id,
Jiri Bencf0706e822007-05-05 11:45:53 -0700938 size_t frame_len,
939 int rate);
940
941/**
942 * ieee80211_get_buffered_bc - accessing buffered broadcast and multicast frames
943 * @hw: pointer as obtained from ieee80211_alloc_hw().
944 * @if_id: interface ID from &struct ieee80211_if_init_conf.
945 * @control: will be filled with information needed to send returned frame.
946 *
947 * Function for accessing buffered broadcast and multicast frames. If
948 * hardware/firmware does not implement buffering of broadcast/multicast
949 * frames when power saving is used, 802.11 code buffers them in the host
950 * memory. The low-level driver uses this function to fetch next buffered
951 * frame. In most cases, this is used when generating beacon frame. This
952 * function returns a pointer to the next buffered skb or NULL if no more
953 * buffered frames are available.
954 *
955 * Note: buffered frames are returned only after DTIM beacon frame was
956 * generated with ieee80211_beacon_get() and the low-level driver must thus
957 * call ieee80211_beacon_get() first. ieee80211_get_buffered_bc() returns
958 * NULL if the previous generated beacon was not DTIM, so the low-level driver
959 * does not need to check for DTIM beacons separately and should be able to
960 * use common code for all beacons.
961 */
962struct sk_buff *
963ieee80211_get_buffered_bc(struct ieee80211_hw *hw, int if_id,
964 struct ieee80211_tx_control *control);
965
Jiri Bencf0706e822007-05-05 11:45:53 -0700966/* Given an sk_buff with a raw 802.11 header at the data pointer this function
967 * returns the 802.11 header length in bytes (not including encryption
968 * headers). If the data in the sk_buff is too short to contain a valid 802.11
969 * header the function returns 0.
970 */
971int ieee80211_get_hdrlen_from_skb(const struct sk_buff *skb);
972
973/* Like ieee80211_get_hdrlen_from_skb() but takes a FC in CPU order. */
974int ieee80211_get_hdrlen(u16 fc);
975
976/**
977 * ieee80211_wake_queue - wake specific queue
978 * @hw: pointer as obtained from ieee80211_alloc_hw().
979 * @queue: queue number (counted from zero).
980 *
981 * Drivers should use this function instead of netif_wake_queue.
982 */
983void ieee80211_wake_queue(struct ieee80211_hw *hw, int queue);
984
985/**
986 * ieee80211_stop_queue - stop specific queue
987 * @hw: pointer as obtained from ieee80211_alloc_hw().
988 * @queue: queue number (counted from zero).
989 *
990 * Drivers should use this function instead of netif_stop_queue.
991 */
992void ieee80211_stop_queue(struct ieee80211_hw *hw, int queue);
993
994/**
995 * ieee80211_start_queues - start all queues
996 * @hw: pointer to as obtained from ieee80211_alloc_hw().
997 *
998 * Drivers should use this function instead of netif_start_queue.
999 */
1000void ieee80211_start_queues(struct ieee80211_hw *hw);
1001
1002/**
1003 * ieee80211_stop_queues - stop all queues
1004 * @hw: pointer as obtained from ieee80211_alloc_hw().
1005 *
1006 * Drivers should use this function instead of netif_stop_queue.
1007 */
1008void ieee80211_stop_queues(struct ieee80211_hw *hw);
1009
1010/**
1011 * ieee80211_wake_queues - wake all queues
1012 * @hw: pointer as obtained from ieee80211_alloc_hw().
1013 *
1014 * Drivers should use this function instead of netif_wake_queue.
1015 */
1016void ieee80211_wake_queues(struct ieee80211_hw *hw);
1017
1018/**
1019 * ieee80211_get_mc_list_item - iteration over items in multicast list
1020 * @hw: pointer as obtained from ieee80211_alloc_hw().
1021 * @prev: value returned by previous call to ieee80211_get_mc_list_item() or
1022 * NULL to start a new iteration.
1023 * @ptr: pointer to buffer of void * type for internal usage of
1024 * ieee80211_get_mc_list_item().
1025 *
1026 * Iterates over items in multicast list of given device. To get the first
1027 * item, pass NULL in @prev and in *@ptr. In subsequent calls, pass the
1028 * value returned by previous call in @prev. Don't alter *@ptr during
1029 * iteration. When there are no more items, NULL is returned.
1030 */
1031struct dev_mc_list *
1032ieee80211_get_mc_list_item(struct ieee80211_hw *hw,
1033 struct dev_mc_list *prev,
1034 void **ptr);
1035
1036/* called by driver to notify scan status completed */
1037void ieee80211_scan_completed(struct ieee80211_hw *hw);
1038
Jiri Bencf0706e822007-05-05 11:45:53 -07001039/* return a pointer to the source address (SA) */
1040static inline u8 *ieee80211_get_SA(struct ieee80211_hdr *hdr)
1041{
1042 u8 *raw = (u8 *) hdr;
1043 u8 tofrom = (*(raw+1)) & 3; /* get the TODS and FROMDS bits */
1044
1045 switch (tofrom) {
1046 case 2:
1047 return hdr->addr3;
1048 case 3:
1049 return hdr->addr4;
1050 }
1051 return hdr->addr2;
1052}
1053
1054/* return a pointer to the destination address (DA) */
1055static inline u8 *ieee80211_get_DA(struct ieee80211_hdr *hdr)
1056{
1057 u8 *raw = (u8 *) hdr;
1058 u8 to_ds = (*(raw+1)) & 1; /* get the TODS bit */
1059
1060 if (to_ds)
1061 return hdr->addr3;
1062 return hdr->addr1;
1063}
1064
1065static inline int ieee80211_get_morefrag(struct ieee80211_hdr *hdr)
1066{
1067 return (le16_to_cpu(hdr->frame_control) &
1068 IEEE80211_FCTL_MOREFRAGS) != 0;
1069}
1070
1071#define MAC_FMT "%02x:%02x:%02x:%02x:%02x:%02x"
1072#define MAC_ARG(x) ((u8*)(x))[0], ((u8*)(x))[1], ((u8*)(x))[2], \
1073 ((u8*)(x))[3], ((u8*)(x))[4], ((u8*)(x))[5]
1074
1075#endif /* MAC80211_H */