Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1 | /* |
Johannes Berg | 3017b80 | 2007-08-28 17:01:53 -0400 | [diff] [blame] | 2 | * mac80211 <-> driver interface |
| 3 | * |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 4 | * Copyright 2002-2005, Devicescape Software, Inc. |
| 5 | * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz> |
Johannes Berg | 3017b80 | 2007-08-28 17:01:53 -0400 | [diff] [blame] | 6 | * Copyright 2007 Johannes Berg <johannes@sipsolutions.net> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 7 | * |
| 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 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 25 | /** |
| 26 | * DOC: Introduction |
| 27 | * |
| 28 | * mac80211 is the Linux stack for 802.11 hardware that implements |
| 29 | * only partial functionality in hard- or firmware. This document |
| 30 | * defines the interface between mac80211 and low-level hardware |
| 31 | * drivers. |
| 32 | */ |
| 33 | |
| 34 | /** |
| 35 | * DOC: Calling mac80211 from interrupts |
| 36 | * |
| 37 | * Only ieee80211_tx_status_irqsafe() and ieee80211_rx_irqsafe() can be |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 38 | * called in hardware interrupt context. The low-level driver must not call any |
| 39 | * other functions in hardware interrupt context. If there is a need for such |
| 40 | * call, the low-level driver should first ACK the interrupt and perform the |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 41 | * IEEE 802.11 code call after this, e.g. from a scheduled workqueue function. |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 42 | */ |
| 43 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 44 | /** |
| 45 | * DOC: Warning |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 46 | * |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 47 | * If you're reading this document and not the header file itself, it will |
| 48 | * be incomplete because not all documentation has been converted yet. |
| 49 | */ |
| 50 | |
| 51 | /** |
| 52 | * DOC: Frame format |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 53 | * |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 54 | * As a general rule, when frames are passed between mac80211 and the driver, |
| 55 | * they start with the IEEE 802.11 header and include the same octets that are |
| 56 | * sent over the air except for the FCS which should be calculated by the |
| 57 | * hardware. |
| 58 | * |
| 59 | * There are, however, various exceptions to this rule for advanced features: |
| 60 | * |
| 61 | * The first exception is for hardware encryption and decryption offload |
| 62 | * where the IV/ICV may or may not be generated in hardware. |
| 63 | * |
| 64 | * Secondly, when the hardware handles fragmentation, the frame handed to |
| 65 | * the driver from mac80211 is the MSDU, not the MPDU. |
| 66 | * |
| 67 | * Finally, for received frames, the driver is able to indicate that it has |
| 68 | * filled a radiotap header and put that in front of the frame; if it does |
| 69 | * not do so then mac80211 may add this under certain circumstances. |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 70 | */ |
| 71 | |
| 72 | #define IEEE80211_CHAN_W_SCAN 0x00000001 |
| 73 | #define IEEE80211_CHAN_W_ACTIVE_SCAN 0x00000002 |
| 74 | #define IEEE80211_CHAN_W_IBSS 0x00000004 |
| 75 | |
| 76 | /* Channel information structure. Low-level driver is expected to fill in chan, |
| 77 | * freq, and val fields. Other fields will be filled in by 80211.o based on |
| 78 | * hostapd information and low-level driver does not need to use them. The |
| 79 | * limits for each channel will be provided in 'struct ieee80211_conf' when |
| 80 | * configuring the low-level driver with hw->config callback. If a device has |
| 81 | * a default regulatory domain, IEEE80211_HW_DEFAULT_REG_DOMAIN_CONFIGURED |
| 82 | * can be set to let the driver configure all fields */ |
| 83 | struct ieee80211_channel { |
| 84 | short chan; /* channel number (IEEE 802.11) */ |
| 85 | short freq; /* frequency in MHz */ |
| 86 | int val; /* hw specific value for the channel */ |
| 87 | int flag; /* flag for hostapd use (IEEE80211_CHAN_*) */ |
| 88 | unsigned char power_level; |
| 89 | unsigned char antenna_max; |
| 90 | }; |
| 91 | |
| 92 | #define IEEE80211_RATE_ERP 0x00000001 |
| 93 | #define IEEE80211_RATE_BASIC 0x00000002 |
| 94 | #define IEEE80211_RATE_PREAMBLE2 0x00000004 |
| 95 | #define IEEE80211_RATE_SUPPORTED 0x00000010 |
| 96 | #define IEEE80211_RATE_OFDM 0x00000020 |
| 97 | #define IEEE80211_RATE_CCK 0x00000040 |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 98 | #define IEEE80211_RATE_MANDATORY 0x00000100 |
| 99 | |
| 100 | #define IEEE80211_RATE_CCK_2 (IEEE80211_RATE_CCK | IEEE80211_RATE_PREAMBLE2) |
| 101 | #define IEEE80211_RATE_MODULATION(f) \ |
| 102 | (f & (IEEE80211_RATE_CCK | IEEE80211_RATE_OFDM)) |
| 103 | |
Johannes Berg | b708e61 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 104 | /* Low-level driver should set PREAMBLE2, OFDM and CCK flags. |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 105 | * BASIC, SUPPORTED, ERP, and MANDATORY flags are set in 80211.o based on the |
| 106 | * configuration. */ |
| 107 | struct ieee80211_rate { |
| 108 | int rate; /* rate in 100 kbps */ |
| 109 | int val; /* hw specific value for the rate */ |
| 110 | int flags; /* IEEE80211_RATE_ flags */ |
| 111 | int val2; /* hw specific value for the rate when using short preamble |
| 112 | * (only when IEEE80211_RATE_PREAMBLE2 flag is set, i.e., for |
| 113 | * 2, 5.5, and 11 Mbps) */ |
| 114 | signed char min_rssi_ack; |
| 115 | unsigned char min_rssi_ack_delta; |
| 116 | |
| 117 | /* following fields are set by 80211.o and need not be filled by the |
| 118 | * low-level driver */ |
| 119 | int rate_inv; /* inverse of the rate (LCM(all rates) / rate) for |
| 120 | * optimizing channel utilization estimates */ |
| 121 | }; |
| 122 | |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 123 | /** |
| 124 | * enum ieee80211_phymode - PHY modes |
| 125 | * |
| 126 | * @MODE_IEEE80211A: 5GHz as defined by 802.11a/802.11h |
| 127 | * @MODE_IEEE80211B: 2.4 GHz as defined by 802.11b |
| 128 | * @MODE_IEEE80211G: 2.4 GHz as defined by 802.11g (with OFDM), |
| 129 | * backwards compatible with 11b mode |
| 130 | * @NUM_IEEE80211_MODES: internal |
| 131 | */ |
Johannes Berg | b708e61 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 132 | enum ieee80211_phymode { |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 133 | MODE_IEEE80211A, |
| 134 | MODE_IEEE80211B, |
| 135 | MODE_IEEE80211G, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 136 | |
| 137 | /* keep last */ |
| 138 | NUM_IEEE80211_MODES |
| 139 | }; |
| 140 | |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 141 | /** |
Ron Rindjunsky | 10816d4 | 2007-11-26 16:14:30 +0200 | [diff] [blame^] | 142 | * struct ieee80211_ht_info - describing STA's HT capabilities |
| 143 | * |
| 144 | * This structure describes most essential parameters needed |
| 145 | * to describe 802.11n HT capabilities for an STA. |
| 146 | * |
| 147 | * @ht_supported: is HT supported by STA, 0: no, 1: yes |
| 148 | * @cap: HT capabilities map as described in 802.11n spec |
| 149 | * @ampdu_factor: Maximum A-MPDU length factor |
| 150 | * @ampdu_density: Minimum A-MPDU spacing |
| 151 | * @supp_mcs_set: Supported MCS set as described in 802.11n spec |
| 152 | */ |
| 153 | struct ieee80211_ht_info { |
| 154 | u8 ht_supported; |
| 155 | u16 cap; /* use IEEE80211_HT_CAP_ */ |
| 156 | u8 ampdu_factor; |
| 157 | u8 ampdu_density; |
| 158 | u8 supp_mcs_set[16]; |
| 159 | }; |
| 160 | |
| 161 | /** |
| 162 | * struct ieee80211_ht_bss_info - describing BSS's HT characteristics |
| 163 | * |
| 164 | * This structure describes most essential parameters needed |
| 165 | * to describe 802.11n HT characteristics in a BSS |
| 166 | * |
| 167 | * @primary_channel: channel number of primery channel |
| 168 | * @bss_cap: 802.11n's general BSS capabilities (e.g. channel width) |
| 169 | * @bss_op_mode: 802.11n's BSS operation modes (e.g. HT protection) |
| 170 | */ |
| 171 | struct ieee80211_ht_bss_info { |
| 172 | u8 primary_channel; |
| 173 | u8 bss_cap; /* use IEEE80211_HT_IE_CHA_ */ |
| 174 | u8 bss_op_mode; /* use IEEE80211_HT_IE_ */ |
| 175 | }; |
| 176 | |
| 177 | /** |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 178 | * struct ieee80211_hw_mode - PHY mode definition |
| 179 | * |
| 180 | * This structure describes the capabilities supported by the device |
| 181 | * in a single PHY mode. |
| 182 | * |
Ron Rindjunsky | 10816d4 | 2007-11-26 16:14:30 +0200 | [diff] [blame^] | 183 | * @list: internal |
| 184 | * @channels: pointer to array of supported channels |
| 185 | * @rates: pointer to array of supported bitrates |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 186 | * @mode: the PHY mode for this definition |
| 187 | * @num_channels: number of supported channels |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 188 | * @num_rates: number of supported bitrates |
Ron Rindjunsky | 10816d4 | 2007-11-26 16:14:30 +0200 | [diff] [blame^] | 189 | * @ht_info: PHY's 802.11n HT abilities for this mode |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 190 | */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 191 | struct ieee80211_hw_mode { |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 192 | struct list_head list; |
| 193 | struct ieee80211_channel *channels; |
| 194 | struct ieee80211_rate *rates; |
| 195 | enum ieee80211_phymode mode; |
| 196 | int num_channels; |
| 197 | int num_rates; |
Ron Rindjunsky | 10816d4 | 2007-11-26 16:14:30 +0200 | [diff] [blame^] | 198 | struct ieee80211_ht_info ht_info; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 199 | }; |
| 200 | |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 201 | /** |
| 202 | * struct ieee80211_tx_queue_params - transmit queue configuration |
| 203 | * |
| 204 | * The information provided in this structure is required for QoS |
| 205 | * transmit queue configuration. |
| 206 | * |
| 207 | * @aifs: arbitration interface space [0..255, -1: use default] |
| 208 | * @cw_min: minimum contention window [will be a value of the form |
| 209 | * 2^n-1 in the range 1..1023; 0: use default] |
| 210 | * @cw_max: maximum contention window [like @cw_min] |
| 211 | * @burst_time: maximum burst time in units of 0.1ms, 0 meaning disabled |
| 212 | */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 213 | struct ieee80211_tx_queue_params { |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 214 | int aifs; |
| 215 | int cw_min; |
| 216 | int cw_max; |
| 217 | int burst_time; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 218 | }; |
| 219 | |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 220 | /** |
| 221 | * struct ieee80211_tx_queue_stats_data - transmit queue statistics |
| 222 | * |
| 223 | * @len: number of packets in queue |
| 224 | * @limit: queue length limit |
| 225 | * @count: number of frames sent |
| 226 | */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 227 | struct ieee80211_tx_queue_stats_data { |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 228 | unsigned int len; |
| 229 | unsigned int limit; |
| 230 | unsigned int count; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 231 | }; |
| 232 | |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 233 | /** |
| 234 | * enum ieee80211_tx_queue - transmit queue number |
| 235 | * |
| 236 | * These constants are used with some callbacks that take a |
| 237 | * queue number to set parameters for a queue. |
| 238 | * |
| 239 | * @IEEE80211_TX_QUEUE_DATA0: data queue 0 |
| 240 | * @IEEE80211_TX_QUEUE_DATA1: data queue 1 |
| 241 | * @IEEE80211_TX_QUEUE_DATA2: data queue 2 |
| 242 | * @IEEE80211_TX_QUEUE_DATA3: data queue 3 |
| 243 | * @IEEE80211_TX_QUEUE_DATA4: data queue 4 |
| 244 | * @IEEE80211_TX_QUEUE_SVP: ?? |
| 245 | * @NUM_TX_DATA_QUEUES: number of data queues |
| 246 | * @IEEE80211_TX_QUEUE_AFTER_BEACON: transmit queue for frames to be |
| 247 | * sent after a beacon |
| 248 | * @IEEE80211_TX_QUEUE_BEACON: transmit queue for beacon frames |
| 249 | */ |
| 250 | enum ieee80211_tx_queue { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 251 | IEEE80211_TX_QUEUE_DATA0, |
| 252 | IEEE80211_TX_QUEUE_DATA1, |
| 253 | IEEE80211_TX_QUEUE_DATA2, |
| 254 | IEEE80211_TX_QUEUE_DATA3, |
| 255 | IEEE80211_TX_QUEUE_DATA4, |
| 256 | IEEE80211_TX_QUEUE_SVP, |
| 257 | |
| 258 | NUM_TX_DATA_QUEUES, |
| 259 | |
| 260 | /* due to stupidity in the sub-ioctl userspace interface, the items in |
| 261 | * this struct need to have fixed values. As soon as it is removed, we can |
| 262 | * fix these entries. */ |
| 263 | IEEE80211_TX_QUEUE_AFTER_BEACON = 6, |
| 264 | IEEE80211_TX_QUEUE_BEACON = 7 |
| 265 | }; |
| 266 | |
| 267 | struct ieee80211_tx_queue_stats { |
| 268 | struct ieee80211_tx_queue_stats_data data[NUM_TX_DATA_QUEUES]; |
| 269 | }; |
| 270 | |
| 271 | struct ieee80211_low_level_stats { |
| 272 | unsigned int dot11ACKFailureCount; |
| 273 | unsigned int dot11RTSFailureCount; |
| 274 | unsigned int dot11FCSErrorCount; |
| 275 | unsigned int dot11RTSSuccessCount; |
| 276 | }; |
| 277 | |
| 278 | /* Transmit control fields. This data structure is passed to low-level driver |
| 279 | * with each TX frame. The low-level driver is responsible for configuring |
| 280 | * the hardware to use given values (depending on what is supported). */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 281 | |
| 282 | struct ieee80211_tx_control { |
| 283 | int tx_rate; /* Transmit rate, given as the hw specific value for the |
| 284 | * rate (from struct ieee80211_rate) */ |
| 285 | int rts_cts_rate; /* Transmit rate for RTS/CTS frame, given as the hw |
| 286 | * specific value for the rate (from |
| 287 | * struct ieee80211_rate) */ |
| 288 | |
| 289 | #define IEEE80211_TXCTL_REQ_TX_STATUS (1<<0)/* request TX status callback for |
| 290 | * this frame */ |
| 291 | #define IEEE80211_TXCTL_DO_NOT_ENCRYPT (1<<1) /* send this frame without |
| 292 | * encryption; e.g., for EAPOL |
| 293 | * frames */ |
| 294 | #define IEEE80211_TXCTL_USE_RTS_CTS (1<<2) /* use RTS-CTS before sending |
| 295 | * frame */ |
| 296 | #define IEEE80211_TXCTL_USE_CTS_PROTECT (1<<3) /* use CTS protection for the |
| 297 | * frame (e.g., for combined |
| 298 | * 802.11g / 802.11b networks) */ |
| 299 | #define IEEE80211_TXCTL_NO_ACK (1<<4) /* tell the low level not to |
| 300 | * wait for an ack */ |
| 301 | #define IEEE80211_TXCTL_RATE_CTRL_PROBE (1<<5) |
| 302 | #define IEEE80211_TXCTL_CLEAR_DST_MASK (1<<6) |
| 303 | #define IEEE80211_TXCTL_REQUEUE (1<<7) |
| 304 | #define IEEE80211_TXCTL_FIRST_FRAGMENT (1<<8) /* this is a first fragment of |
| 305 | * the frame */ |
Ivo van Doorn | d5d08de | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 306 | #define IEEE80211_TXCTL_LONG_RETRY_LIMIT (1<<10) /* this frame should be send |
| 307 | * using the through |
| 308 | * set_retry_limit configured |
| 309 | * long retry value */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 310 | u32 flags; /* tx control flags defined |
| 311 | * above */ |
Johannes Berg | 6a7664d | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 312 | u8 key_idx; /* keyidx from hw->set_key(), undefined if |
| 313 | * IEEE80211_TXCTL_DO_NOT_ENCRYPT is set */ |
Ivo van Doorn | d5d08de | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 314 | u8 retry_limit; /* 1 = only first attempt, 2 = one retry, .. |
| 315 | * This could be used when set_retry_limit |
| 316 | * is not implemented by the driver */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 317 | u8 power_level; /* per-packet transmit power level, in dBm */ |
| 318 | u8 antenna_sel_tx; /* 0 = default/diversity, 1 = Ant0, 2 = Ant1 */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 319 | u8 icv_len; /* length of the ICV/MIC field in octets */ |
| 320 | u8 iv_len; /* length of the IV field in octets */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 321 | u8 queue; /* hardware queue to use for this frame; |
| 322 | * 0 = highest, hw->queues-1 = lowest */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 323 | struct ieee80211_rate *rate; /* internal 80211.o rate */ |
| 324 | struct ieee80211_rate *rts_rate; /* internal 80211.o rate |
| 325 | * for RTS/CTS */ |
| 326 | int alt_retry_rate; /* retry rate for the last retries, given as the |
| 327 | * hw specific value for the rate (from |
| 328 | * struct ieee80211_rate). To be used to limit |
| 329 | * packet dropping when probing higher rates, if hw |
| 330 | * supports multiple retry rates. -1 = not used */ |
| 331 | int type; /* internal */ |
| 332 | int ifindex; /* internal */ |
| 333 | }; |
| 334 | |
Johannes Berg | 7ac1bd6 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 335 | |
| 336 | /** |
| 337 | * enum mac80211_rx_flags - receive flags |
| 338 | * |
| 339 | * These flags are used with the @flag member of &struct ieee80211_rx_status. |
| 340 | * @RX_FLAG_MMIC_ERROR: Michael MIC error was reported on this frame. |
| 341 | * Use together with %RX_FLAG_MMIC_STRIPPED. |
| 342 | * @RX_FLAG_DECRYPTED: This frame was decrypted in hardware. |
| 343 | * @RX_FLAG_RADIOTAP: This frame starts with a radiotap header. |
| 344 | * @RX_FLAG_MMIC_STRIPPED: the Michael MIC is stripped off this frame, |
| 345 | * verification has been done by the hardware. |
| 346 | * @RX_FLAG_IV_STRIPPED: The IV/ICV are stripped from this frame. |
| 347 | * If this flag is set, the stack cannot do any replay detection |
| 348 | * hence the driver or hardware will have to do that. |
Johannes Berg | 72abd81 | 2007-09-17 01:29:22 -0400 | [diff] [blame] | 349 | * @RX_FLAG_FAILED_FCS_CRC: Set this flag if the FCS check failed on |
| 350 | * the frame. |
| 351 | * @RX_FLAG_FAILED_PLCP_CRC: Set this flag if the PCLP check failed on |
| 352 | * the frame. |
Johannes Berg | 7ac1bd6 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 353 | */ |
| 354 | enum mac80211_rx_flags { |
| 355 | RX_FLAG_MMIC_ERROR = 1<<0, |
| 356 | RX_FLAG_DECRYPTED = 1<<1, |
| 357 | RX_FLAG_RADIOTAP = 1<<2, |
| 358 | RX_FLAG_MMIC_STRIPPED = 1<<3, |
| 359 | RX_FLAG_IV_STRIPPED = 1<<4, |
Johannes Berg | 72abd81 | 2007-09-17 01:29:22 -0400 | [diff] [blame] | 360 | RX_FLAG_FAILED_FCS_CRC = 1<<5, |
| 361 | RX_FLAG_FAILED_PLCP_CRC = 1<<6, |
Johannes Berg | 7ac1bd6 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 362 | }; |
| 363 | |
| 364 | /** |
| 365 | * struct ieee80211_rx_status - receive status |
| 366 | * |
| 367 | * The low-level driver should provide this information (the subset |
| 368 | * supported by hardware) to the 802.11 code with each received |
| 369 | * frame. |
| 370 | * @mactime: MAC timestamp as defined by 802.11 |
| 371 | * @freq: frequency the radio was tuned to when receiving this frame, in MHz |
| 372 | * @channel: channel the radio was tuned to |
| 373 | * @phymode: active PHY mode |
| 374 | * @ssi: signal strength when receiving this frame |
| 375 | * @signal: used as 'qual' in statistics reporting |
| 376 | * @noise: PHY noise when receiving this frame |
| 377 | * @antenna: antenna used |
| 378 | * @rate: data rate |
| 379 | * @flag: %RX_FLAG_* |
| 380 | */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 381 | struct ieee80211_rx_status { |
| 382 | u64 mactime; |
Johannes Berg | 7ac1bd6 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 383 | int freq; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 384 | int channel; |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 385 | enum ieee80211_phymode phymode; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 386 | int ssi; |
Johannes Berg | 7ac1bd6 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 387 | int signal; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 388 | int noise; |
| 389 | int antenna; |
| 390 | int rate; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 391 | int flag; |
| 392 | }; |
| 393 | |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 394 | /** |
| 395 | * enum ieee80211_tx_status_flags - transmit status flags |
| 396 | * |
| 397 | * Status flags to indicate various transmit conditions. |
| 398 | * |
| 399 | * @IEEE80211_TX_STATUS_TX_FILTERED: The frame was not transmitted |
| 400 | * because the destination STA was in powersave mode. |
| 401 | * |
| 402 | * @IEEE80211_TX_STATUS_ACK: Frame was acknowledged |
| 403 | */ |
| 404 | enum ieee80211_tx_status_flags { |
| 405 | IEEE80211_TX_STATUS_TX_FILTERED = 1<<0, |
| 406 | IEEE80211_TX_STATUS_ACK = 1<<1, |
| 407 | }; |
| 408 | |
| 409 | /** |
| 410 | * struct ieee80211_tx_status - transmit status |
| 411 | * |
| 412 | * As much information as possible should be provided for each transmitted |
| 413 | * frame with ieee80211_tx_status(). |
| 414 | * |
| 415 | * @control: a copy of the &struct ieee80211_tx_control passed to the driver |
| 416 | * in the tx() callback. |
| 417 | * |
| 418 | * @flags: transmit status flags, defined above |
| 419 | * |
| 420 | * @ack_signal: signal strength of the ACK frame |
| 421 | * |
| 422 | * @excessive_retries: set to 1 if the frame was retried many times |
| 423 | * but not acknowledged |
| 424 | * |
| 425 | * @retry_count: number of retries |
| 426 | * |
| 427 | * @queue_length: ?? REMOVE |
| 428 | * @queue_number: ?? REMOVE |
| 429 | */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 430 | struct ieee80211_tx_status { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 431 | struct ieee80211_tx_control control; |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 432 | u8 flags; |
| 433 | bool excessive_retries; |
| 434 | u8 retry_count; |
| 435 | int ack_signal; |
| 436 | int queue_length; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 437 | int queue_number; |
| 438 | }; |
| 439 | |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 440 | /** |
| 441 | * enum ieee80211_conf_flags - configuration flags |
| 442 | * |
| 443 | * Flags to define PHY configuration options |
| 444 | * |
| 445 | * @IEEE80211_CONF_SHORT_SLOT_TIME: use 802.11g short slot time |
| 446 | * @IEEE80211_CONF_RADIOTAP: add radiotap header at receive time (if supported) |
Ron Rindjunsky | 10816d4 | 2007-11-26 16:14:30 +0200 | [diff] [blame^] | 447 | * @IEEE80211_CONF_SUPPORT_HT_MODE: use 802.11n HT capabilities (if supported) |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 448 | */ |
| 449 | enum ieee80211_conf_flags { |
Ron Rindjunsky | 10816d4 | 2007-11-26 16:14:30 +0200 | [diff] [blame^] | 450 | IEEE80211_CONF_SHORT_SLOT_TIME = (1<<0), |
| 451 | IEEE80211_CONF_RADIOTAP = (1<<1), |
| 452 | IEEE80211_CONF_SUPPORT_HT_MODE = (1<<2), |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 453 | }; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 454 | |
| 455 | /** |
| 456 | * struct ieee80211_conf - configuration of the device |
| 457 | * |
| 458 | * This struct indicates how the driver shall configure the hardware. |
| 459 | * |
| 460 | * @radio_enabled: when zero, driver is required to switch off the radio. |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 461 | * TODO make a flag |
| 462 | * @channel: IEEE 802.11 channel number |
| 463 | * @freq: frequency in MHz |
| 464 | * @channel_val: hardware specific channel value for the channel |
| 465 | * @phymode: PHY mode to activate (REMOVE) |
| 466 | * @chan: channel to switch to, pointer to the channel information |
| 467 | * @mode: pointer to mode definition |
| 468 | * @regulatory_domain: ?? |
| 469 | * @beacon_int: beacon interval (TODO make interface config) |
| 470 | * @flags: configuration flags defined above |
| 471 | * @power_level: transmit power limit for current regulatory domain in dBm |
| 472 | * @antenna_max: maximum antenna gain |
| 473 | * @antenna_sel_tx: transmit antenna selection, 0: default/diversity, |
| 474 | * 1/2: antenna 0/1 |
| 475 | * @antenna_sel_rx: receive antenna selection, like @antenna_sel_tx |
Ron Rindjunsky | 10816d4 | 2007-11-26 16:14:30 +0200 | [diff] [blame^] | 476 | * @ht_conf: describes current self configuration of 802.11n HT capabilies |
| 477 | * @ht_bss_conf: describes current BSS configuration of 802.11n HT parameters |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 478 | */ |
| 479 | struct ieee80211_conf { |
| 480 | int channel; /* IEEE 802.11 channel number */ |
| 481 | int freq; /* MHz */ |
| 482 | int channel_val; /* hw specific value for the channel */ |
| 483 | |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 484 | enum ieee80211_phymode phymode; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 485 | struct ieee80211_channel *chan; |
| 486 | struct ieee80211_hw_mode *mode; |
| 487 | unsigned int regulatory_domain; |
| 488 | int radio_enabled; |
| 489 | |
| 490 | int beacon_int; |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 491 | u32 flags; |
| 492 | u8 power_level; |
| 493 | u8 antenna_max; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 494 | u8 antenna_sel_tx; |
| 495 | u8 antenna_sel_rx; |
Ron Rindjunsky | 10816d4 | 2007-11-26 16:14:30 +0200 | [diff] [blame^] | 496 | |
| 497 | struct ieee80211_ht_info ht_conf; |
| 498 | struct ieee80211_ht_bss_info ht_bss_conf; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 499 | }; |
| 500 | |
| 501 | /** |
| 502 | * enum ieee80211_if_types - types of 802.11 network interfaces |
| 503 | * |
Johannes Berg | a289755 | 2007-09-28 14:01:25 +0200 | [diff] [blame] | 504 | * @IEEE80211_IF_TYPE_INVALID: invalid interface type, not used |
| 505 | * by mac80211 itself |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 506 | * @IEEE80211_IF_TYPE_AP: interface in AP mode. |
| 507 | * @IEEE80211_IF_TYPE_MGMT: special interface for communication with hostap |
| 508 | * daemon. Drivers should never see this type. |
| 509 | * @IEEE80211_IF_TYPE_STA: interface in STA (client) mode. |
| 510 | * @IEEE80211_IF_TYPE_IBSS: interface in IBSS (ad-hoc) mode. |
| 511 | * @IEEE80211_IF_TYPE_MNTR: interface in monitor (rfmon) mode. |
| 512 | * @IEEE80211_IF_TYPE_WDS: interface in WDS mode. |
Johannes Berg | 0ec3ca44 | 2007-09-17 01:29:24 -0400 | [diff] [blame] | 513 | * @IEEE80211_IF_TYPE_VLAN: VLAN interface bound to an AP, drivers |
| 514 | * will never see this type. |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 515 | */ |
| 516 | enum ieee80211_if_types { |
Johannes Berg | a289755 | 2007-09-28 14:01:25 +0200 | [diff] [blame] | 517 | IEEE80211_IF_TYPE_INVALID, |
Johannes Berg | 0ec3ca44 | 2007-09-17 01:29:24 -0400 | [diff] [blame] | 518 | IEEE80211_IF_TYPE_AP, |
Johannes Berg | 0ec3ca44 | 2007-09-17 01:29:24 -0400 | [diff] [blame] | 519 | IEEE80211_IF_TYPE_STA, |
| 520 | IEEE80211_IF_TYPE_IBSS, |
| 521 | IEEE80211_IF_TYPE_MNTR, |
| 522 | IEEE80211_IF_TYPE_WDS, |
| 523 | IEEE80211_IF_TYPE_VLAN, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 524 | }; |
| 525 | |
| 526 | /** |
| 527 | * struct ieee80211_if_init_conf - initial configuration of an interface |
| 528 | * |
| 529 | * @if_id: internal interface ID. This number has no particular meaning to |
| 530 | * drivers and the only allowed usage is to pass it to |
| 531 | * ieee80211_beacon_get() and ieee80211_get_buffered_bc() functions. |
| 532 | * This field is not valid for monitor interfaces |
| 533 | * (interfaces of %IEEE80211_IF_TYPE_MNTR type). |
| 534 | * @type: one of &enum ieee80211_if_types constants. Determines the type of |
| 535 | * added/removed interface. |
| 536 | * @mac_addr: pointer to MAC address of the interface. This pointer is valid |
| 537 | * until the interface is removed (i.e. it cannot be used after |
| 538 | * remove_interface() callback was called for this interface). |
| 539 | * |
| 540 | * This structure is used in add_interface() and remove_interface() |
| 541 | * callbacks of &struct ieee80211_hw. |
Johannes Berg | 4480f15c | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 542 | * |
| 543 | * When you allow multiple interfaces to be added to your PHY, take care |
| 544 | * that the hardware can actually handle multiple MAC addresses. However, |
| 545 | * also take care that when there's no interface left with mac_addr != %NULL |
| 546 | * you remove the MAC address from the device to avoid acknowledging packets |
| 547 | * in pure monitor mode. |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 548 | */ |
| 549 | struct ieee80211_if_init_conf { |
| 550 | int if_id; |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 551 | enum ieee80211_if_types type; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 552 | void *mac_addr; |
| 553 | }; |
| 554 | |
| 555 | /** |
| 556 | * struct ieee80211_if_conf - configuration of an interface |
| 557 | * |
| 558 | * @type: type of the interface. This is always the same as was specified in |
| 559 | * &struct ieee80211_if_init_conf. The type of an interface never changes |
| 560 | * during the life of the interface; this field is present only for |
| 561 | * convenience. |
| 562 | * @bssid: BSSID of the network we are associated to/creating. |
| 563 | * @ssid: used (together with @ssid_len) by drivers for hardware that |
| 564 | * generate beacons independently. The pointer is valid only during the |
| 565 | * config_interface() call, so copy the value somewhere if you need |
| 566 | * it. |
| 567 | * @ssid_len: length of the @ssid field. |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 568 | * @beacon: beacon template. Valid only if @host_gen_beacon_template in |
| 569 | * &struct ieee80211_hw is set. The driver is responsible of freeing |
| 570 | * the sk_buff. |
| 571 | * @beacon_control: tx_control for the beacon template, this field is only |
| 572 | * valid when the @beacon field was set. |
| 573 | * |
| 574 | * This structure is passed to the config_interface() callback of |
| 575 | * &struct ieee80211_hw. |
| 576 | */ |
| 577 | struct ieee80211_if_conf { |
| 578 | int type; |
| 579 | u8 *bssid; |
| 580 | u8 *ssid; |
| 581 | size_t ssid_len; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 582 | struct sk_buff *beacon; |
| 583 | struct ieee80211_tx_control *beacon_control; |
| 584 | }; |
| 585 | |
Johannes Berg | 7ac1bd6 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 586 | /** |
| 587 | * enum ieee80211_key_alg - key algorithm |
Johannes Berg | 7ac1bd6 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 588 | * @ALG_WEP: WEP40 or WEP104 |
| 589 | * @ALG_TKIP: TKIP |
| 590 | * @ALG_CCMP: CCMP (AES) |
| 591 | */ |
Johannes Berg | ea49c35 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 592 | enum ieee80211_key_alg { |
Johannes Berg | 8f20fc2 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 593 | ALG_WEP, |
| 594 | ALG_TKIP, |
| 595 | ALG_CCMP, |
Johannes Berg | ea49c35 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 596 | }; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 597 | |
Johannes Berg | 11a843b | 2007-08-28 17:01:55 -0400 | [diff] [blame] | 598 | |
Johannes Berg | 7ac1bd6 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 599 | /** |
| 600 | * enum ieee80211_key_flags - key flags |
| 601 | * |
| 602 | * These flags are used for communication about keys between the driver |
| 603 | * and mac80211, with the @flags parameter of &struct ieee80211_key_conf. |
| 604 | * |
| 605 | * @IEEE80211_KEY_FLAG_WMM_STA: Set by mac80211, this flag indicates |
| 606 | * that the STA this key will be used with could be using QoS. |
| 607 | * @IEEE80211_KEY_FLAG_GENERATE_IV: This flag should be set by the |
| 608 | * driver to indicate that it requires IV generation for this |
| 609 | * particular key. |
| 610 | * @IEEE80211_KEY_FLAG_GENERATE_MMIC: This flag should be set by |
| 611 | * the driver for a TKIP key if it requires Michael MIC |
| 612 | * generation in software. |
| 613 | */ |
| 614 | enum ieee80211_key_flags { |
| 615 | IEEE80211_KEY_FLAG_WMM_STA = 1<<0, |
| 616 | IEEE80211_KEY_FLAG_GENERATE_IV = 1<<1, |
| 617 | IEEE80211_KEY_FLAG_GENERATE_MMIC= 1<<2, |
| 618 | }; |
| 619 | |
| 620 | /** |
| 621 | * struct ieee80211_key_conf - key information |
| 622 | * |
| 623 | * This key information is given by mac80211 to the driver by |
| 624 | * the set_key() callback in &struct ieee80211_ops. |
| 625 | * |
| 626 | * @hw_key_idx: To be set by the driver, this is the key index the driver |
| 627 | * wants to be given when a frame is transmitted and needs to be |
Johannes Berg | 6a7664d | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 628 | * encrypted in hardware. |
Johannes Berg | 7ac1bd6 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 629 | * @alg: The key algorithm. |
| 630 | * @flags: key flags, see &enum ieee80211_key_flags. |
| 631 | * @keyidx: the key index (0-3) |
| 632 | * @keylen: key material length |
| 633 | * @key: key material |
| 634 | */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 635 | struct ieee80211_key_conf { |
Johannes Berg | ea49c35 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 636 | enum ieee80211_key_alg alg; |
Johannes Berg | 6a7664d | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 637 | u8 hw_key_idx; |
Johannes Berg | 11a843b | 2007-08-28 17:01:55 -0400 | [diff] [blame] | 638 | u8 flags; |
Johannes Berg | 11a843b | 2007-08-28 17:01:55 -0400 | [diff] [blame] | 639 | s8 keyidx; |
Johannes Berg | 11a843b | 2007-08-28 17:01:55 -0400 | [diff] [blame] | 640 | u8 keylen; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 641 | u8 key[0]; |
| 642 | }; |
| 643 | |
| 644 | #define IEEE80211_SEQ_COUNTER_RX 0 |
| 645 | #define IEEE80211_SEQ_COUNTER_TX 1 |
| 646 | |
Johannes Berg | 7ac1bd6 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 647 | /** |
| 648 | * enum set_key_cmd - key command |
| 649 | * |
| 650 | * Used with the set_key() callback in &struct ieee80211_ops, this |
| 651 | * indicates whether a key is being removed or added. |
| 652 | * |
| 653 | * @SET_KEY: a key is set |
| 654 | * @DISABLE_KEY: a key must be disabled |
| 655 | */ |
Johannes Berg | ea49c35 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 656 | enum set_key_cmd { |
Johannes Berg | 11a843b | 2007-08-28 17:01:55 -0400 | [diff] [blame] | 657 | SET_KEY, DISABLE_KEY, |
Johannes Berg | ea49c35 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 658 | }; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 659 | |
Tomas Winkler | 478f8d2 | 2007-09-30 13:52:37 +0200 | [diff] [blame] | 660 | /** |
| 661 | * enum sta_notify_cmd - sta notify command |
| 662 | * |
| 663 | * Used with the sta_notify() callback in &struct ieee80211_ops, this |
| 664 | * indicates addition and removal of a station to station table |
| 665 | * |
| 666 | * @STA_NOTIFY_ADD: a station was added to the station table |
| 667 | * @STA_NOTIFY_REMOVE: a station being removed from the station table |
| 668 | */ |
| 669 | enum sta_notify_cmd { |
| 670 | STA_NOTIFY_ADD, STA_NOTIFY_REMOVE |
| 671 | }; |
Johannes Berg | 1bc0826 | 2007-09-18 17:29:15 -0400 | [diff] [blame] | 672 | |
| 673 | /** |
| 674 | * enum ieee80211_hw_flags - hardware flags |
| 675 | * |
| 676 | * These flags are used to indicate hardware capabilities to |
| 677 | * the stack. Generally, flags here should have their meaning |
| 678 | * done in a way that the simplest hardware doesn't need setting |
| 679 | * any particular flags. There are some exceptions to this rule, |
| 680 | * however, so you are advised to review these flags carefully. |
| 681 | * |
| 682 | * @IEEE80211_HW_HOST_GEN_BEACON_TEMPLATE: |
| 683 | * The device only needs to be supplied with a beacon template. |
| 684 | * If you need the host to generate each beacon then don't use |
| 685 | * this flag and call ieee80211_beacon_get() when you need the |
| 686 | * next beacon frame. Note that if you set this flag, you must |
| 687 | * implement the set_tim() callback for powersave mode to work |
| 688 | * properly. |
| 689 | * This flag is only relevant for access-point mode. |
| 690 | * |
| 691 | * @IEEE80211_HW_RX_INCLUDES_FCS: |
| 692 | * Indicates that received frames passed to the stack include |
| 693 | * the FCS at the end. |
| 694 | * |
| 695 | * @IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING: |
| 696 | * Some wireless LAN chipsets buffer broadcast/multicast frames |
| 697 | * for power saving stations in the hardware/firmware and others |
| 698 | * rely on the host system for such buffering. This option is used |
| 699 | * to configure the IEEE 802.11 upper layer to buffer broadcast and |
| 700 | * multicast frames when there are power saving stations so that |
| 701 | * the driver can fetch them with ieee80211_get_buffered_bc(). Note |
| 702 | * that not setting this flag works properly only when the |
| 703 | * %IEEE80211_HW_HOST_GEN_BEACON_TEMPLATE is also not set because |
| 704 | * otherwise the stack will not know when the DTIM beacon was sent. |
| 705 | * |
| 706 | * @IEEE80211_HW_DEFAULT_REG_DOMAIN_CONFIGURED: |
| 707 | * Channels are already configured to the default regulatory domain |
| 708 | * specified in the device's EEPROM |
| 709 | */ |
| 710 | enum ieee80211_hw_flags { |
| 711 | IEEE80211_HW_HOST_GEN_BEACON_TEMPLATE = 1<<0, |
| 712 | IEEE80211_HW_RX_INCLUDES_FCS = 1<<1, |
| 713 | IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING = 1<<2, |
| 714 | IEEE80211_HW_DEFAULT_REG_DOMAIN_CONFIGURED = 1<<3, |
| 715 | }; |
| 716 | |
Johannes Berg | 7ac1bd6 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 717 | /** |
| 718 | * struct ieee80211_hw - hardware information and state |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 719 | * |
| 720 | * This structure contains the configuration and hardware |
| 721 | * information for an 802.11 PHY. |
| 722 | * |
| 723 | * @wiphy: This points to the &struct wiphy allocated for this |
| 724 | * 802.11 PHY. You must fill in the @perm_addr and @dev |
| 725 | * members of this structure using SET_IEEE80211_DEV() |
| 726 | * and SET_IEEE80211_PERM_ADDR(). |
| 727 | * |
| 728 | * @conf: &struct ieee80211_conf, device configuration, don't use. |
| 729 | * |
| 730 | * @workqueue: single threaded workqueue available for driver use, |
| 731 | * allocated by mac80211 on registration and flushed on |
| 732 | * unregistration. |
| 733 | * |
| 734 | * @priv: pointer to private area that was allocated for driver use |
| 735 | * along with this structure. |
| 736 | * |
| 737 | * @flags: hardware flags, see &enum ieee80211_hw_flags. |
| 738 | * |
| 739 | * @extra_tx_headroom: headroom to reserve in each transmit skb |
| 740 | * for use by the driver (e.g. for transmit headers.) |
| 741 | * |
| 742 | * @channel_change_time: time (in microseconds) it takes to change channels. |
| 743 | * |
| 744 | * @max_rssi: Maximum value for ssi in RX information, use |
| 745 | * negative numbers for dBm and 0 to indicate no support. |
| 746 | * |
| 747 | * @max_signal: like @max_rssi, but for the signal value. |
| 748 | * |
| 749 | * @max_noise: like @max_rssi, but for the noise value. |
| 750 | * |
| 751 | * @queues: number of available hardware transmit queues for |
| 752 | * data packets. WMM/QoS requires at least four. |
Johannes Berg | 830f903 | 2007-10-28 14:51:05 +0100 | [diff] [blame] | 753 | * |
| 754 | * @rate_control_algorithm: rate control algorithm for this hardware. |
| 755 | * If unset (NULL), the default algorithm will be used. Must be |
| 756 | * set before calling ieee80211_register_hw(). |
Johannes Berg | 7ac1bd6 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 757 | */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 758 | struct ieee80211_hw { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 759 | struct ieee80211_conf conf; |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 760 | struct wiphy *wiphy; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 761 | struct workqueue_struct *workqueue; |
Johannes Berg | 830f903 | 2007-10-28 14:51:05 +0100 | [diff] [blame] | 762 | const char *rate_control_algorithm; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 763 | void *priv; |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 764 | u32 flags; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 765 | unsigned int extra_tx_headroom; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 766 | int channel_change_time; |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 767 | u8 queues; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 768 | s8 max_rssi; |
| 769 | s8 max_signal; |
| 770 | s8 max_noise; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 771 | }; |
| 772 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 773 | /** |
| 774 | * SET_IEEE80211_DEV - set device for 802.11 hardware |
| 775 | * |
| 776 | * @hw: the &struct ieee80211_hw to set the device for |
| 777 | * @dev: the &struct device of this 802.11 device |
| 778 | */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 779 | static inline void SET_IEEE80211_DEV(struct ieee80211_hw *hw, struct device *dev) |
| 780 | { |
| 781 | set_wiphy_dev(hw->wiphy, dev); |
| 782 | } |
| 783 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 784 | /** |
| 785 | * SET_IEEE80211_PERM_ADDR - set the permanenet MAC address for 802.11 hardware |
| 786 | * |
| 787 | * @hw: the &struct ieee80211_hw to set the MAC address for |
| 788 | * @addr: the address to set |
| 789 | */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 790 | static inline void SET_IEEE80211_PERM_ADDR(struct ieee80211_hw *hw, u8 *addr) |
| 791 | { |
| 792 | memcpy(hw->wiphy->perm_addr, addr, ETH_ALEN); |
| 793 | } |
| 794 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 795 | /** |
| 796 | * DOC: Hardware crypto acceleration |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 797 | * |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 798 | * mac80211 is capable of taking advantage of many hardware |
| 799 | * acceleration designs for encryption and decryption operations. |
| 800 | * |
| 801 | * The set_key() callback in the &struct ieee80211_ops for a given |
| 802 | * device is called to enable hardware acceleration of encryption and |
| 803 | * decryption. The callback takes an @address parameter that will be |
| 804 | * the broadcast address for default keys, the other station's hardware |
| 805 | * address for individual keys or the zero address for keys that will |
| 806 | * be used only for transmission. |
| 807 | * Multiple transmission keys with the same key index may be used when |
| 808 | * VLANs are configured for an access point. |
| 809 | * |
| 810 | * The @local_address parameter will always be set to our own address, |
| 811 | * this is only relevant if you support multiple local addresses. |
| 812 | * |
| 813 | * When transmitting, the TX control data will use the @hw_key_idx |
| 814 | * selected by the driver by modifying the &struct ieee80211_key_conf |
| 815 | * pointed to by the @key parameter to the set_key() function. |
| 816 | * |
| 817 | * The set_key() call for the %SET_KEY command should return 0 if |
| 818 | * the key is now in use, -%EOPNOTSUPP or -%ENOSPC if it couldn't be |
| 819 | * added; if you return 0 then hw_key_idx must be assigned to the |
| 820 | * hardware key index, you are free to use the full u8 range. |
| 821 | * |
| 822 | * When the cmd is %DISABLE_KEY then it must succeed. |
| 823 | * |
| 824 | * Note that it is permissible to not decrypt a frame even if a key |
| 825 | * for it has been uploaded to hardware, the stack will not make any |
| 826 | * decision based on whether a key has been uploaded or not but rather |
| 827 | * based on the receive flags. |
| 828 | * |
| 829 | * The &struct ieee80211_key_conf structure pointed to by the @key |
| 830 | * parameter is guaranteed to be valid until another call to set_key() |
| 831 | * removes it, but it can only be used as a cookie to differentiate |
| 832 | * keys. |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 833 | */ |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 834 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 835 | /** |
| 836 | * DOC: Frame filtering |
| 837 | * |
| 838 | * mac80211 requires to see many management frames for proper |
| 839 | * operation, and users may want to see many more frames when |
| 840 | * in monitor mode. However, for best CPU usage and power consumption, |
| 841 | * having as few frames as possible percolate through the stack is |
| 842 | * desirable. Hence, the hardware should filter as much as possible. |
| 843 | * |
| 844 | * To achieve this, mac80211 uses filter flags (see below) to tell |
| 845 | * the driver's configure_filter() function which frames should be |
| 846 | * passed to mac80211 and which should be filtered out. |
| 847 | * |
| 848 | * The configure_filter() callback is invoked with the parameters |
| 849 | * @mc_count and @mc_list for the combined multicast address list |
| 850 | * of all virtual interfaces, @changed_flags telling which flags |
| 851 | * were changed and @total_flags with the new flag states. |
| 852 | * |
| 853 | * If your device has no multicast address filters your driver will |
| 854 | * need to check both the %FIF_ALLMULTI flag and the @mc_count |
| 855 | * parameter to see whether multicast frames should be accepted |
| 856 | * or dropped. |
| 857 | * |
| 858 | * All unsupported flags in @total_flags must be cleared, i.e. you |
| 859 | * should clear all bits except those you honoured. |
| 860 | */ |
| 861 | |
| 862 | /** |
| 863 | * enum ieee80211_filter_flags - hardware filter flags |
| 864 | * |
| 865 | * These flags determine what the filter in hardware should be |
| 866 | * programmed to let through and what should not be passed to the |
| 867 | * stack. It is always safe to pass more frames than requested, |
| 868 | * but this has negative impact on power consumption. |
| 869 | * |
| 870 | * @FIF_PROMISC_IN_BSS: promiscuous mode within your BSS, |
| 871 | * think of the BSS as your network segment and then this corresponds |
| 872 | * to the regular ethernet device promiscuous mode. |
| 873 | * |
| 874 | * @FIF_ALLMULTI: pass all multicast frames, this is used if requested |
| 875 | * by the user or if the hardware is not capable of filtering by |
| 876 | * multicast address. |
| 877 | * |
| 878 | * @FIF_FCSFAIL: pass frames with failed FCS (but you need to set the |
| 879 | * %RX_FLAG_FAILED_FCS_CRC for them) |
| 880 | * |
| 881 | * @FIF_PLCPFAIL: pass frames with failed PLCP CRC (but you need to set |
| 882 | * the %RX_FLAG_FAILED_PLCP_CRC for them |
| 883 | * |
| 884 | * @FIF_BCN_PRBRESP_PROMISC: This flag is set during scanning to indicate |
| 885 | * to the hardware that it should not filter beacons or probe responses |
| 886 | * by BSSID. Filtering them can greatly reduce the amount of processing |
| 887 | * mac80211 needs to do and the amount of CPU wakeups, so you should |
| 888 | * honour this flag if possible. |
| 889 | * |
| 890 | * @FIF_CONTROL: pass control frames, if PROMISC_IN_BSS is not set then |
| 891 | * only those addressed to this station |
| 892 | * |
| 893 | * @FIF_OTHER_BSS: pass frames destined to other BSSes |
| 894 | */ |
| 895 | enum ieee80211_filter_flags { |
| 896 | FIF_PROMISC_IN_BSS = 1<<0, |
| 897 | FIF_ALLMULTI = 1<<1, |
| 898 | FIF_FCSFAIL = 1<<2, |
| 899 | FIF_PLCPFAIL = 1<<3, |
| 900 | FIF_BCN_PRBRESP_PROMISC = 1<<4, |
| 901 | FIF_CONTROL = 1<<5, |
| 902 | FIF_OTHER_BSS = 1<<6, |
| 903 | }; |
| 904 | |
| 905 | /** |
| 906 | * enum ieee80211_erp_change_flags - erp change flags |
| 907 | * |
| 908 | * These flags are used with the erp_ie_changed() callback in |
| 909 | * &struct ieee80211_ops to indicate which parameter(s) changed. |
| 910 | * @IEEE80211_ERP_CHANGE_PROTECTION: protection changed |
| 911 | * @IEEE80211_ERP_CHANGE_PREAMBLE: barker preamble mode changed |
| 912 | */ |
| 913 | enum ieee80211_erp_change_flags { |
| 914 | IEEE80211_ERP_CHANGE_PROTECTION = 1<<0, |
| 915 | IEEE80211_ERP_CHANGE_PREAMBLE = 1<<1, |
| 916 | }; |
| 917 | |
| 918 | |
| 919 | /** |
| 920 | * struct ieee80211_ops - callbacks from mac80211 to the driver |
| 921 | * |
| 922 | * This structure contains various callbacks that the driver may |
| 923 | * handle or, in some cases, must handle, for example to configure |
| 924 | * the hardware to a new channel or to transmit a frame. |
| 925 | * |
| 926 | * @tx: Handler that 802.11 module calls for each transmitted frame. |
| 927 | * skb contains the buffer starting from the IEEE 802.11 header. |
| 928 | * The low-level driver should send the frame out based on |
| 929 | * configuration in the TX control data. Must be implemented and |
| 930 | * atomic. |
| 931 | * |
| 932 | * @start: Called before the first netdevice attached to the hardware |
| 933 | * is enabled. This should turn on the hardware and must turn on |
| 934 | * frame reception (for possibly enabled monitor interfaces.) |
| 935 | * Returns negative error codes, these may be seen in userspace, |
| 936 | * or zero. |
| 937 | * When the device is started it should not have a MAC address |
| 938 | * to avoid acknowledging frames before a non-monitor device |
| 939 | * is added. |
| 940 | * Must be implemented. |
| 941 | * |
| 942 | * @stop: Called after last netdevice attached to the hardware |
| 943 | * is disabled. This should turn off the hardware (at least |
| 944 | * it must turn off frame reception.) |
| 945 | * May be called right after add_interface if that rejects |
| 946 | * an interface. |
| 947 | * Must be implemented. |
| 948 | * |
| 949 | * @add_interface: Called when a netdevice attached to the hardware is |
| 950 | * enabled. Because it is not called for monitor mode devices, @open |
| 951 | * and @stop must be implemented. |
| 952 | * The driver should perform any initialization it needs before |
| 953 | * the device can be enabled. The initial configuration for the |
| 954 | * interface is given in the conf parameter. |
| 955 | * The callback may refuse to add an interface by returning a |
| 956 | * negative error code (which will be seen in userspace.) |
| 957 | * Must be implemented. |
| 958 | * |
| 959 | * @remove_interface: Notifies a driver that an interface is going down. |
| 960 | * The @stop callback is called after this if it is the last interface |
| 961 | * and no monitor interfaces are present. |
| 962 | * When all interfaces are removed, the MAC address in the hardware |
| 963 | * must be cleared so the device no longer acknowledges packets, |
| 964 | * the mac_addr member of the conf structure is, however, set to the |
| 965 | * MAC address of the device going away. |
| 966 | * Hence, this callback must be implemented. |
| 967 | * |
| 968 | * @config: Handler for configuration requests. IEEE 802.11 code calls this |
| 969 | * function to change hardware configuration, e.g., channel. |
| 970 | * |
| 971 | * @config_interface: Handler for configuration requests related to interfaces |
| 972 | * (e.g. BSSID changes.) |
| 973 | * |
| 974 | * @configure_filter: Configure the device's RX filter. |
| 975 | * See the section "Frame filtering" for more information. |
| 976 | * This callback must be implemented and atomic. |
| 977 | * |
| 978 | * @set_tim: Set TIM bit. If the hardware/firmware takes care of beacon |
| 979 | * generation (that is, %IEEE80211_HW_HOST_GEN_BEACON_TEMPLATE is set) |
| 980 | * mac80211 calls this function when a TIM bit must be set or cleared |
| 981 | * for a given AID. Must be atomic. |
| 982 | * |
| 983 | * @set_key: See the section "Hardware crypto acceleration" |
| 984 | * This callback can sleep, and is only called between add_interface |
| 985 | * and remove_interface calls, i.e. while the interface with the |
| 986 | * given local_address is enabled. |
| 987 | * |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 988 | * @hw_scan: Ask the hardware to service the scan request, no need to start |
| 989 | * the scan state machine in stack. |
| 990 | * |
| 991 | * @get_stats: return low-level statistics |
| 992 | * |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 993 | * @get_sequence_counter: For devices that have internal sequence counters this |
| 994 | * callback allows mac80211 to access the current value of a counter. |
| 995 | * This callback seems not well-defined, tell us if you need it. |
| 996 | * |
| 997 | * @set_rts_threshold: Configuration of RTS threshold (if device needs it) |
| 998 | * |
| 999 | * @set_frag_threshold: Configuration of fragmentation threshold. Assign this if |
| 1000 | * the device does fragmentation by itself; if this method is assigned then |
| 1001 | * the stack will not do fragmentation. |
| 1002 | * |
| 1003 | * @set_retry_limit: Configuration of retry limits (if device needs it) |
| 1004 | * |
Tomas Winkler | 478f8d2 | 2007-09-30 13:52:37 +0200 | [diff] [blame] | 1005 | * @sta_notify: Notifies low level driver about addition or removal |
| 1006 | * of assocaited station or AP. |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1007 | * |
| 1008 | * @erp_ie_changed: Handle ERP IE change notifications. Must be atomic. |
| 1009 | * |
| 1010 | * @conf_tx: Configure TX queue parameters (EDCF (aifs, cw_min, cw_max), |
| 1011 | * bursting) for a hardware TX queue. The @queue parameter uses the |
| 1012 | * %IEEE80211_TX_QUEUE_* constants. Must be atomic. |
| 1013 | * |
| 1014 | * @get_tx_stats: Get statistics of the current TX queue status. This is used |
| 1015 | * to get number of currently queued packets (queue length), maximum queue |
| 1016 | * size (limit), and total number of packets sent using each TX queue |
| 1017 | * (count). This information is used for WMM to find out which TX |
| 1018 | * queues have room for more packets and by hostapd to provide |
| 1019 | * statistics about the current queueing state to external programs. |
| 1020 | * |
| 1021 | * @get_tsf: Get the current TSF timer value from firmware/hardware. Currently, |
| 1022 | * this is only used for IBSS mode debugging and, as such, is not a |
| 1023 | * required function. Must be atomic. |
| 1024 | * |
| 1025 | * @reset_tsf: Reset the TSF timer and allow firmware/hardware to synchronize |
| 1026 | * with other STAs in the IBSS. This is only used in IBSS mode. This |
| 1027 | * function is optional if the firmware/hardware takes full care of |
| 1028 | * TSF synchronization. |
| 1029 | * |
| 1030 | * @beacon_update: Setup beacon data for IBSS beacons. Unlike access point, |
| 1031 | * IBSS uses a fixed beacon frame which is configured using this |
Michael Buesch | 5ecc2a5 | 2007-10-02 12:17:56 +0200 | [diff] [blame] | 1032 | * function. |
| 1033 | * If the driver returns success (0) from this callback, it owns |
| 1034 | * the skb. That means the driver is responsible to kfree_skb() it. |
| 1035 | * The control structure is not dynamically allocated. That means the |
| 1036 | * driver does not own the pointer and if it needs it somewhere |
| 1037 | * outside of the context of this function, it must copy it |
| 1038 | * somewhere else. |
| 1039 | * This handler is required only for IBSS mode. |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1040 | * |
| 1041 | * @tx_last_beacon: Determine whether the last IBSS beacon was sent by us. |
| 1042 | * This is needed only for IBSS mode and the result of this function is |
| 1043 | * used to determine whether to reply to Probe Requests. |
| 1044 | */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1045 | struct ieee80211_ops { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1046 | int (*tx)(struct ieee80211_hw *hw, struct sk_buff *skb, |
| 1047 | struct ieee80211_tx_control *control); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1048 | int (*start)(struct ieee80211_hw *hw); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1049 | void (*stop)(struct ieee80211_hw *hw); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1050 | int (*add_interface)(struct ieee80211_hw *hw, |
| 1051 | struct ieee80211_if_init_conf *conf); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1052 | void (*remove_interface)(struct ieee80211_hw *hw, |
| 1053 | struct ieee80211_if_init_conf *conf); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1054 | int (*config)(struct ieee80211_hw *hw, struct ieee80211_conf *conf); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1055 | int (*config_interface)(struct ieee80211_hw *hw, |
| 1056 | int if_id, struct ieee80211_if_conf *conf); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1057 | void (*configure_filter)(struct ieee80211_hw *hw, |
| 1058 | unsigned int changed_flags, |
| 1059 | unsigned int *total_flags, |
| 1060 | int mc_count, struct dev_addr_list *mc_list); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1061 | int (*set_tim)(struct ieee80211_hw *hw, int aid, int set); |
Johannes Berg | ea49c35 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 1062 | int (*set_key)(struct ieee80211_hw *hw, enum set_key_cmd cmd, |
Johannes Berg | 11a843b | 2007-08-28 17:01:55 -0400 | [diff] [blame] | 1063 | const u8 *local_address, const u8 *address, |
| 1064 | struct ieee80211_key_conf *key); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1065 | int (*hw_scan)(struct ieee80211_hw *hw, u8 *ssid, size_t len); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1066 | int (*get_stats)(struct ieee80211_hw *hw, |
| 1067 | struct ieee80211_low_level_stats *stats); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1068 | int (*get_sequence_counter)(struct ieee80211_hw *hw, |
| 1069 | u8* addr, u8 keyidx, u8 txrx, |
| 1070 | u32* iv32, u16* iv16); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1071 | int (*set_rts_threshold)(struct ieee80211_hw *hw, u32 value); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1072 | int (*set_frag_threshold)(struct ieee80211_hw *hw, u32 value); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1073 | int (*set_retry_limit)(struct ieee80211_hw *hw, |
| 1074 | u32 short_retry, u32 long_retr); |
Tomas Winkler | 478f8d2 | 2007-09-30 13:52:37 +0200 | [diff] [blame] | 1075 | void (*sta_notify)(struct ieee80211_hw *hw, int if_id, |
| 1076 | enum sta_notify_cmd, const u8 *addr); |
Daniel Drake | d9430a3 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1077 | void (*erp_ie_changed)(struct ieee80211_hw *hw, u8 changes, |
| 1078 | int cts_protection, int preamble); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1079 | int (*conf_tx)(struct ieee80211_hw *hw, int queue, |
| 1080 | const struct ieee80211_tx_queue_params *params); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1081 | int (*get_tx_stats)(struct ieee80211_hw *hw, |
| 1082 | struct ieee80211_tx_queue_stats *stats); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1083 | u64 (*get_tsf)(struct ieee80211_hw *hw); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1084 | void (*reset_tsf)(struct ieee80211_hw *hw); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1085 | int (*beacon_update)(struct ieee80211_hw *hw, |
| 1086 | struct sk_buff *skb, |
| 1087 | struct ieee80211_tx_control *control); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1088 | int (*tx_last_beacon)(struct ieee80211_hw *hw); |
| 1089 | }; |
| 1090 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1091 | /** |
| 1092 | * ieee80211_alloc_hw - Allocate a new hardware device |
| 1093 | * |
| 1094 | * This must be called once for each hardware device. The returned pointer |
| 1095 | * must be used to refer to this device when calling other functions. |
| 1096 | * mac80211 allocates a private data area for the driver pointed to by |
| 1097 | * @priv in &struct ieee80211_hw, the size of this area is given as |
| 1098 | * @priv_data_len. |
| 1099 | * |
| 1100 | * @priv_data_len: length of private data |
| 1101 | * @ops: callbacks for this device |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1102 | */ |
| 1103 | struct ieee80211_hw *ieee80211_alloc_hw(size_t priv_data_len, |
| 1104 | const struct ieee80211_ops *ops); |
| 1105 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1106 | /** |
| 1107 | * ieee80211_register_hw - Register hardware device |
| 1108 | * |
| 1109 | * You must call this function before any other functions |
| 1110 | * except ieee80211_register_hwmode. |
| 1111 | * |
| 1112 | * @hw: the device to register as returned by ieee80211_alloc_hw() |
| 1113 | */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1114 | int ieee80211_register_hw(struct ieee80211_hw *hw); |
| 1115 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1116 | #ifdef CONFIG_MAC80211_LEDS |
| 1117 | extern char *__ieee80211_get_tx_led_name(struct ieee80211_hw *hw); |
| 1118 | extern char *__ieee80211_get_rx_led_name(struct ieee80211_hw *hw); |
Michael Buesch | 47f0c50 | 2007-09-27 15:10:44 +0200 | [diff] [blame] | 1119 | extern char *__ieee80211_get_assoc_led_name(struct ieee80211_hw *hw); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1120 | #endif |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1121 | /** |
| 1122 | * ieee80211_get_tx_led_name - get name of TX LED |
| 1123 | * |
| 1124 | * mac80211 creates a transmit LED trigger for each wireless hardware |
| 1125 | * that can be used to drive LEDs if your driver registers a LED device. |
| 1126 | * This function returns the name (or %NULL if not configured for LEDs) |
| 1127 | * of the trigger so you can automatically link the LED device. |
| 1128 | * |
| 1129 | * @hw: the hardware to get the LED trigger name for |
| 1130 | */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1131 | static inline char *ieee80211_get_tx_led_name(struct ieee80211_hw *hw) |
| 1132 | { |
| 1133 | #ifdef CONFIG_MAC80211_LEDS |
| 1134 | return __ieee80211_get_tx_led_name(hw); |
| 1135 | #else |
| 1136 | return NULL; |
| 1137 | #endif |
| 1138 | } |
| 1139 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1140 | /** |
| 1141 | * ieee80211_get_rx_led_name - get name of RX LED |
| 1142 | * |
| 1143 | * mac80211 creates a receive LED trigger for each wireless hardware |
| 1144 | * that can be used to drive LEDs if your driver registers a LED device. |
| 1145 | * This function returns the name (or %NULL if not configured for LEDs) |
| 1146 | * of the trigger so you can automatically link the LED device. |
| 1147 | * |
| 1148 | * @hw: the hardware to get the LED trigger name for |
| 1149 | */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1150 | static inline char *ieee80211_get_rx_led_name(struct ieee80211_hw *hw) |
| 1151 | { |
| 1152 | #ifdef CONFIG_MAC80211_LEDS |
| 1153 | return __ieee80211_get_rx_led_name(hw); |
| 1154 | #else |
| 1155 | return NULL; |
| 1156 | #endif |
| 1157 | } |
| 1158 | |
Michael Buesch | 47f0c50 | 2007-09-27 15:10:44 +0200 | [diff] [blame] | 1159 | static inline char *ieee80211_get_assoc_led_name(struct ieee80211_hw *hw) |
| 1160 | { |
| 1161 | #ifdef CONFIG_MAC80211_LEDS |
| 1162 | return __ieee80211_get_assoc_led_name(hw); |
| 1163 | #else |
| 1164 | return NULL; |
| 1165 | #endif |
| 1166 | } |
| 1167 | |
| 1168 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1169 | /* Register a new hardware PHYMODE capability to the stack. */ |
| 1170 | int ieee80211_register_hwmode(struct ieee80211_hw *hw, |
| 1171 | struct ieee80211_hw_mode *mode); |
| 1172 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1173 | /** |
| 1174 | * ieee80211_unregister_hw - Unregister a hardware device |
| 1175 | * |
| 1176 | * This function instructs mac80211 to free allocated resources |
| 1177 | * and unregister netdevices from the networking subsystem. |
| 1178 | * |
| 1179 | * @hw: the hardware to unregister |
| 1180 | */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1181 | void ieee80211_unregister_hw(struct ieee80211_hw *hw); |
| 1182 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1183 | /** |
| 1184 | * ieee80211_free_hw - free hardware descriptor |
| 1185 | * |
| 1186 | * This function frees everything that was allocated, including the |
| 1187 | * private data for the driver. You must call ieee80211_unregister_hw() |
| 1188 | * before calling this function |
| 1189 | * |
| 1190 | * @hw: the hardware to free |
| 1191 | */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1192 | void ieee80211_free_hw(struct ieee80211_hw *hw); |
| 1193 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1194 | /* trick to avoid symbol clashes with the ieee80211 subsystem */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1195 | void __ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb, |
| 1196 | struct ieee80211_rx_status *status); |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1197 | |
| 1198 | /** |
| 1199 | * ieee80211_rx - receive frame |
| 1200 | * |
| 1201 | * Use this function to hand received frames to mac80211. The receive |
| 1202 | * buffer in @skb must start with an IEEE 802.11 header or a radiotap |
| 1203 | * header if %RX_FLAG_RADIOTAP is set in the @status flags. |
| 1204 | * |
| 1205 | * This function may not be called in IRQ context. |
| 1206 | * |
| 1207 | * @hw: the hardware this frame came in on |
| 1208 | * @skb: the buffer to receive, owned by mac80211 after this call |
| 1209 | * @status: status of this frame; the status pointer need not be valid |
| 1210 | * after this function returns |
| 1211 | */ |
| 1212 | static inline void ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb, |
| 1213 | struct ieee80211_rx_status *status) |
| 1214 | { |
| 1215 | __ieee80211_rx(hw, skb, status); |
| 1216 | } |
| 1217 | |
| 1218 | /** |
| 1219 | * ieee80211_rx_irqsafe - receive frame |
| 1220 | * |
| 1221 | * Like ieee80211_rx() but can be called in IRQ context |
| 1222 | * (internally defers to a workqueue.) |
| 1223 | * |
| 1224 | * @hw: the hardware this frame came in on |
| 1225 | * @skb: the buffer to receive, owned by mac80211 after this call |
| 1226 | * @status: status of this frame; the status pointer need not be valid |
| 1227 | * after this function returns and is not freed by mac80211, |
| 1228 | * it is recommended that it points to a stack area |
| 1229 | */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1230 | void ieee80211_rx_irqsafe(struct ieee80211_hw *hw, |
| 1231 | struct sk_buff *skb, |
| 1232 | struct ieee80211_rx_status *status); |
| 1233 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1234 | /** |
| 1235 | * ieee80211_tx_status - transmit status callback |
| 1236 | * |
| 1237 | * Call this function for all transmitted frames after they have been |
| 1238 | * transmitted. It is permissible to not call this function for |
| 1239 | * multicast frames but this can affect statistics. |
| 1240 | * |
| 1241 | * @hw: the hardware the frame was transmitted by |
| 1242 | * @skb: the frame that was transmitted, owned by mac80211 after this call |
| 1243 | * @status: status information for this frame; the status pointer need not |
| 1244 | * be valid after this function returns and is not freed by mac80211, |
| 1245 | * it is recommended that it points to a stack area |
| 1246 | */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1247 | void ieee80211_tx_status(struct ieee80211_hw *hw, |
| 1248 | struct sk_buff *skb, |
| 1249 | struct ieee80211_tx_status *status); |
| 1250 | void ieee80211_tx_status_irqsafe(struct ieee80211_hw *hw, |
| 1251 | struct sk_buff *skb, |
| 1252 | struct ieee80211_tx_status *status); |
| 1253 | |
| 1254 | /** |
| 1255 | * ieee80211_beacon_get - beacon generation function |
| 1256 | * @hw: pointer obtained from ieee80211_alloc_hw(). |
| 1257 | * @if_id: interface ID from &struct ieee80211_if_init_conf. |
| 1258 | * @control: will be filled with information needed to send this beacon. |
| 1259 | * |
| 1260 | * If the beacon frames are generated by the host system (i.e., not in |
| 1261 | * hardware/firmware), the low-level driver uses this function to receive |
| 1262 | * the next beacon frame from the 802.11 code. The low-level is responsible |
| 1263 | * for calling this function before beacon data is needed (e.g., based on |
| 1264 | * hardware interrupt). Returned skb is used only once and low-level driver |
| 1265 | * is responsible of freeing it. |
| 1266 | */ |
| 1267 | struct sk_buff *ieee80211_beacon_get(struct ieee80211_hw *hw, |
| 1268 | int if_id, |
| 1269 | struct ieee80211_tx_control *control); |
| 1270 | |
| 1271 | /** |
| 1272 | * ieee80211_rts_get - RTS frame generation function |
| 1273 | * @hw: pointer obtained from ieee80211_alloc_hw(). |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1274 | * @if_id: interface ID from &struct ieee80211_if_init_conf. |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1275 | * @frame: pointer to the frame that is going to be protected by the RTS. |
| 1276 | * @frame_len: the frame length (in octets). |
| 1277 | * @frame_txctl: &struct ieee80211_tx_control of the frame. |
| 1278 | * @rts: The buffer where to store the RTS frame. |
| 1279 | * |
| 1280 | * If the RTS frames are generated by the host system (i.e., not in |
| 1281 | * hardware/firmware), the low-level driver uses this function to receive |
| 1282 | * the next RTS frame from the 802.11 code. The low-level is responsible |
| 1283 | * for calling this function before and RTS frame is needed. |
| 1284 | */ |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1285 | void ieee80211_rts_get(struct ieee80211_hw *hw, int if_id, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1286 | const void *frame, size_t frame_len, |
| 1287 | const struct ieee80211_tx_control *frame_txctl, |
| 1288 | struct ieee80211_rts *rts); |
| 1289 | |
| 1290 | /** |
| 1291 | * ieee80211_rts_duration - Get the duration field for an RTS frame |
| 1292 | * @hw: pointer obtained from ieee80211_alloc_hw(). |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1293 | * @if_id: interface ID from &struct ieee80211_if_init_conf. |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1294 | * @frame_len: the length of the frame that is going to be protected by the RTS. |
| 1295 | * @frame_txctl: &struct ieee80211_tx_control of the frame. |
| 1296 | * |
| 1297 | * If the RTS is generated in firmware, but the host system must provide |
| 1298 | * the duration field, the low-level driver uses this function to receive |
| 1299 | * the duration field value in little-endian byteorder. |
| 1300 | */ |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1301 | __le16 ieee80211_rts_duration(struct ieee80211_hw *hw, int if_id, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1302 | size_t frame_len, |
| 1303 | const struct ieee80211_tx_control *frame_txctl); |
| 1304 | |
| 1305 | /** |
| 1306 | * ieee80211_ctstoself_get - CTS-to-self frame generation function |
| 1307 | * @hw: pointer obtained from ieee80211_alloc_hw(). |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1308 | * @if_id: interface ID from &struct ieee80211_if_init_conf. |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1309 | * @frame: pointer to the frame that is going to be protected by the CTS-to-self. |
| 1310 | * @frame_len: the frame length (in octets). |
| 1311 | * @frame_txctl: &struct ieee80211_tx_control of the frame. |
| 1312 | * @cts: The buffer where to store the CTS-to-self frame. |
| 1313 | * |
| 1314 | * If the CTS-to-self frames are generated by the host system (i.e., not in |
| 1315 | * hardware/firmware), the low-level driver uses this function to receive |
| 1316 | * the next CTS-to-self frame from the 802.11 code. The low-level is responsible |
| 1317 | * for calling this function before and CTS-to-self frame is needed. |
| 1318 | */ |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1319 | void ieee80211_ctstoself_get(struct ieee80211_hw *hw, int if_id, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1320 | const void *frame, size_t frame_len, |
| 1321 | const struct ieee80211_tx_control *frame_txctl, |
| 1322 | struct ieee80211_cts *cts); |
| 1323 | |
| 1324 | /** |
| 1325 | * ieee80211_ctstoself_duration - Get the duration field for a CTS-to-self frame |
| 1326 | * @hw: pointer obtained from ieee80211_alloc_hw(). |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1327 | * @if_id: interface ID from &struct ieee80211_if_init_conf. |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1328 | * @frame_len: the length of the frame that is going to be protected by the CTS-to-self. |
| 1329 | * @frame_txctl: &struct ieee80211_tx_control of the frame. |
| 1330 | * |
| 1331 | * If the CTS-to-self is generated in firmware, but the host system must provide |
| 1332 | * the duration field, the low-level driver uses this function to receive |
| 1333 | * the duration field value in little-endian byteorder. |
| 1334 | */ |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1335 | __le16 ieee80211_ctstoself_duration(struct ieee80211_hw *hw, int if_id, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1336 | size_t frame_len, |
| 1337 | const struct ieee80211_tx_control *frame_txctl); |
| 1338 | |
| 1339 | /** |
| 1340 | * ieee80211_generic_frame_duration - Calculate the duration field for a frame |
| 1341 | * @hw: pointer obtained from ieee80211_alloc_hw(). |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1342 | * @if_id: interface ID from &struct ieee80211_if_init_conf. |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1343 | * @frame_len: the length of the frame. |
| 1344 | * @rate: the rate (in 100kbps) at which the frame is going to be transmitted. |
| 1345 | * |
| 1346 | * Calculate the duration field of some generic frame, given its |
| 1347 | * length and transmission rate (in 100kbps). |
| 1348 | */ |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1349 | __le16 ieee80211_generic_frame_duration(struct ieee80211_hw *hw, int if_id, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1350 | size_t frame_len, |
| 1351 | int rate); |
| 1352 | |
| 1353 | /** |
| 1354 | * ieee80211_get_buffered_bc - accessing buffered broadcast and multicast frames |
| 1355 | * @hw: pointer as obtained from ieee80211_alloc_hw(). |
| 1356 | * @if_id: interface ID from &struct ieee80211_if_init_conf. |
| 1357 | * @control: will be filled with information needed to send returned frame. |
| 1358 | * |
| 1359 | * Function for accessing buffered broadcast and multicast frames. If |
| 1360 | * hardware/firmware does not implement buffering of broadcast/multicast |
| 1361 | * frames when power saving is used, 802.11 code buffers them in the host |
| 1362 | * memory. The low-level driver uses this function to fetch next buffered |
| 1363 | * frame. In most cases, this is used when generating beacon frame. This |
| 1364 | * function returns a pointer to the next buffered skb or NULL if no more |
| 1365 | * buffered frames are available. |
| 1366 | * |
| 1367 | * Note: buffered frames are returned only after DTIM beacon frame was |
| 1368 | * generated with ieee80211_beacon_get() and the low-level driver must thus |
| 1369 | * call ieee80211_beacon_get() first. ieee80211_get_buffered_bc() returns |
| 1370 | * NULL if the previous generated beacon was not DTIM, so the low-level driver |
| 1371 | * does not need to check for DTIM beacons separately and should be able to |
| 1372 | * use common code for all beacons. |
| 1373 | */ |
| 1374 | struct sk_buff * |
| 1375 | ieee80211_get_buffered_bc(struct ieee80211_hw *hw, int if_id, |
| 1376 | struct ieee80211_tx_control *control); |
| 1377 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1378 | /** |
| 1379 | * ieee80211_get_hdrlen_from_skb - get header length from data |
| 1380 | * |
| 1381 | * Given an skb with a raw 802.11 header at the data pointer this function |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1382 | * returns the 802.11 header length in bytes (not including encryption |
| 1383 | * headers). If the data in the sk_buff is too short to contain a valid 802.11 |
| 1384 | * header the function returns 0. |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1385 | * |
| 1386 | * @skb: the frame |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1387 | */ |
| 1388 | int ieee80211_get_hdrlen_from_skb(const struct sk_buff *skb); |
| 1389 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1390 | /** |
| 1391 | * ieee80211_get_hdrlen - get header length from frame control |
| 1392 | * |
| 1393 | * This function returns the 802.11 header length in bytes (not including |
| 1394 | * encryption headers.) |
| 1395 | * |
| 1396 | * @fc: the frame control field (in CPU endianness) |
| 1397 | */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1398 | int ieee80211_get_hdrlen(u16 fc); |
| 1399 | |
| 1400 | /** |
| 1401 | * ieee80211_wake_queue - wake specific queue |
| 1402 | * @hw: pointer as obtained from ieee80211_alloc_hw(). |
| 1403 | * @queue: queue number (counted from zero). |
| 1404 | * |
| 1405 | * Drivers should use this function instead of netif_wake_queue. |
| 1406 | */ |
| 1407 | void ieee80211_wake_queue(struct ieee80211_hw *hw, int queue); |
| 1408 | |
| 1409 | /** |
| 1410 | * ieee80211_stop_queue - stop specific queue |
| 1411 | * @hw: pointer as obtained from ieee80211_alloc_hw(). |
| 1412 | * @queue: queue number (counted from zero). |
| 1413 | * |
| 1414 | * Drivers should use this function instead of netif_stop_queue. |
| 1415 | */ |
| 1416 | void ieee80211_stop_queue(struct ieee80211_hw *hw, int queue); |
| 1417 | |
| 1418 | /** |
| 1419 | * ieee80211_start_queues - start all queues |
| 1420 | * @hw: pointer to as obtained from ieee80211_alloc_hw(). |
| 1421 | * |
| 1422 | * Drivers should use this function instead of netif_start_queue. |
| 1423 | */ |
| 1424 | void ieee80211_start_queues(struct ieee80211_hw *hw); |
| 1425 | |
| 1426 | /** |
| 1427 | * ieee80211_stop_queues - stop all queues |
| 1428 | * @hw: pointer as obtained from ieee80211_alloc_hw(). |
| 1429 | * |
| 1430 | * Drivers should use this function instead of netif_stop_queue. |
| 1431 | */ |
| 1432 | void ieee80211_stop_queues(struct ieee80211_hw *hw); |
| 1433 | |
| 1434 | /** |
| 1435 | * ieee80211_wake_queues - wake all queues |
| 1436 | * @hw: pointer as obtained from ieee80211_alloc_hw(). |
| 1437 | * |
| 1438 | * Drivers should use this function instead of netif_wake_queue. |
| 1439 | */ |
| 1440 | void ieee80211_wake_queues(struct ieee80211_hw *hw); |
| 1441 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1442 | /** |
| 1443 | * ieee80211_scan_completed - completed hardware scan |
| 1444 | * |
| 1445 | * When hardware scan offload is used (i.e. the hw_scan() callback is |
| 1446 | * assigned) this function needs to be called by the driver to notify |
| 1447 | * mac80211 that the scan finished. |
| 1448 | * |
| 1449 | * @hw: the hardware that finished the scan |
| 1450 | */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1451 | void ieee80211_scan_completed(struct ieee80211_hw *hw); |
| 1452 | |
Johannes Berg | dabeb34 | 2007-11-09 01:57:29 +0100 | [diff] [blame] | 1453 | /** |
| 1454 | * ieee80211_iterate_active_interfaces - iterate active interfaces |
| 1455 | * |
| 1456 | * This function iterates over the interfaces associated with a given |
| 1457 | * hardware that are currently active and calls the callback for them. |
Johannes Berg | dabeb34 | 2007-11-09 01:57:29 +0100 | [diff] [blame] | 1458 | * |
| 1459 | * @hw: the hardware struct of which the interfaces should be iterated over |
Johannes Berg | e38bad4 | 2007-11-28 10:55:32 +0100 | [diff] [blame] | 1460 | * @iterator: the iterator function to call, cannot sleep |
Johannes Berg | dabeb34 | 2007-11-09 01:57:29 +0100 | [diff] [blame] | 1461 | * @data: first argument of the iterator function |
| 1462 | */ |
| 1463 | void ieee80211_iterate_active_interfaces(struct ieee80211_hw *hw, |
| 1464 | void (*iterator)(void *data, u8 *mac, |
| 1465 | int if_id), |
| 1466 | void *data); |
| 1467 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1468 | #endif /* MAC80211_H */ |