Jiri Benc | f0706e82 | 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 | f0706e82 | 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 | f0706e82 | 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 | f0706e82 | 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 | f0706e82 | 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 | f0706e82 | 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 | f0706e82 | 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 | f0706e82 | 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 | f0706e82 | 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 | f0706e82 | 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 | f0706e82 | 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 | f0706e82 | 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 | f0706e82 | 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 | f0706e82 | 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 | f0706e82 | 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 | f0706e82 | 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 | f0706e82 | 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 |
Ron Rindjunsky | 9e72349 | 2008-01-28 14:07:18 +0200 | [diff] [blame] | 249 | * @NUM_TX_DATA_QUEUES_AMPDU: adding more queues for A-MPDU |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 250 | */ |
| 251 | enum ieee80211_tx_queue { |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 252 | IEEE80211_TX_QUEUE_DATA0, |
| 253 | IEEE80211_TX_QUEUE_DATA1, |
| 254 | IEEE80211_TX_QUEUE_DATA2, |
| 255 | IEEE80211_TX_QUEUE_DATA3, |
| 256 | IEEE80211_TX_QUEUE_DATA4, |
| 257 | IEEE80211_TX_QUEUE_SVP, |
| 258 | |
| 259 | NUM_TX_DATA_QUEUES, |
| 260 | |
| 261 | /* due to stupidity in the sub-ioctl userspace interface, the items in |
| 262 | * this struct need to have fixed values. As soon as it is removed, we can |
| 263 | * fix these entries. */ |
| 264 | IEEE80211_TX_QUEUE_AFTER_BEACON = 6, |
Ron Rindjunsky | 9e72349 | 2008-01-28 14:07:18 +0200 | [diff] [blame] | 265 | IEEE80211_TX_QUEUE_BEACON = 7, |
| 266 | NUM_TX_DATA_QUEUES_AMPDU = 16 |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 267 | }; |
| 268 | |
| 269 | struct ieee80211_tx_queue_stats { |
Ron Rindjunsky | 9e72349 | 2008-01-28 14:07:18 +0200 | [diff] [blame] | 270 | struct ieee80211_tx_queue_stats_data data[NUM_TX_DATA_QUEUES_AMPDU]; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 271 | }; |
| 272 | |
| 273 | struct ieee80211_low_level_stats { |
| 274 | unsigned int dot11ACKFailureCount; |
| 275 | unsigned int dot11RTSFailureCount; |
| 276 | unsigned int dot11FCSErrorCount; |
| 277 | unsigned int dot11RTSSuccessCount; |
| 278 | }; |
| 279 | |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 280 | /** |
| 281 | * enum ieee80211_bss_change - BSS change notification flags |
| 282 | * |
| 283 | * These flags are used with the bss_info_changed() callback |
| 284 | * to indicate which BSS parameter changed. |
| 285 | * |
| 286 | * @BSS_CHANGED_ASSOC: association status changed (associated/disassociated), |
| 287 | * also implies a change in the AID. |
| 288 | * @BSS_CHANGED_ERP_CTS_PROT: CTS protection changed |
| 289 | * @BSS_CHANGED_ERP_PREAMBLE: preamble changed |
| 290 | */ |
| 291 | enum ieee80211_bss_change { |
| 292 | BSS_CHANGED_ASSOC = 1<<0, |
| 293 | BSS_CHANGED_ERP_CTS_PROT = 1<<1, |
| 294 | BSS_CHANGED_ERP_PREAMBLE = 1<<2, |
| 295 | }; |
| 296 | |
| 297 | /** |
| 298 | * struct ieee80211_bss_conf - holds the BSS's changing parameters |
| 299 | * |
| 300 | * This structure keeps information about a BSS (and an association |
| 301 | * to that BSS) that can change during the lifetime of the BSS. |
| 302 | * |
| 303 | * @assoc: association status |
| 304 | * @aid: association ID number, valid only when @assoc is true |
| 305 | * @use_cts_prot: use CTS protection |
| 306 | * @use_short_preamble: use 802.11b short preamble |
| 307 | */ |
| 308 | struct ieee80211_bss_conf { |
| 309 | /* association related data */ |
| 310 | bool assoc; |
| 311 | u16 aid; |
| 312 | /* erp related data */ |
| 313 | bool use_cts_prot; |
| 314 | bool use_short_preamble; |
| 315 | }; |
| 316 | |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 317 | /* Transmit control fields. This data structure is passed to low-level driver |
| 318 | * with each TX frame. The low-level driver is responsible for configuring |
| 319 | * the hardware to use given values (depending on what is supported). */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 320 | |
| 321 | struct ieee80211_tx_control { |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 322 | struct ieee80211_vif *vif; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 323 | int tx_rate; /* Transmit rate, given as the hw specific value for the |
| 324 | * rate (from struct ieee80211_rate) */ |
| 325 | int rts_cts_rate; /* Transmit rate for RTS/CTS frame, given as the hw |
| 326 | * specific value for the rate (from |
| 327 | * struct ieee80211_rate) */ |
| 328 | |
| 329 | #define IEEE80211_TXCTL_REQ_TX_STATUS (1<<0)/* request TX status callback for |
| 330 | * this frame */ |
| 331 | #define IEEE80211_TXCTL_DO_NOT_ENCRYPT (1<<1) /* send this frame without |
| 332 | * encryption; e.g., for EAPOL |
| 333 | * frames */ |
| 334 | #define IEEE80211_TXCTL_USE_RTS_CTS (1<<2) /* use RTS-CTS before sending |
| 335 | * frame */ |
| 336 | #define IEEE80211_TXCTL_USE_CTS_PROTECT (1<<3) /* use CTS protection for the |
| 337 | * frame (e.g., for combined |
| 338 | * 802.11g / 802.11b networks) */ |
| 339 | #define IEEE80211_TXCTL_NO_ACK (1<<4) /* tell the low level not to |
| 340 | * wait for an ack */ |
| 341 | #define IEEE80211_TXCTL_RATE_CTRL_PROBE (1<<5) |
| 342 | #define IEEE80211_TXCTL_CLEAR_DST_MASK (1<<6) |
| 343 | #define IEEE80211_TXCTL_REQUEUE (1<<7) |
| 344 | #define IEEE80211_TXCTL_FIRST_FRAGMENT (1<<8) /* this is a first fragment of |
| 345 | * the frame */ |
Ivo van Doorn | d5d08de | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 346 | #define IEEE80211_TXCTL_LONG_RETRY_LIMIT (1<<10) /* this frame should be send |
| 347 | * using the through |
| 348 | * set_retry_limit configured |
| 349 | * long retry value */ |
Johannes Berg | 678f5f7 | 2007-12-19 01:31:23 +0100 | [diff] [blame] | 350 | #define IEEE80211_TXCTL_EAPOL_FRAME (1<<11) /* internal to mac80211 */ |
Johannes Berg | 7d54d0d | 2007-12-19 01:31:25 +0100 | [diff] [blame] | 351 | #define IEEE80211_TXCTL_SEND_AFTER_DTIM (1<<12) /* send this frame after DTIM |
| 352 | * beacon */ |
Ron Rindjunsky | 9e72349 | 2008-01-28 14:07:18 +0200 | [diff] [blame] | 353 | #define IEEE80211_TXCTL_AMPDU (1<<13) /* this frame should be sent |
| 354 | * as part of an A-MPDU */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 355 | u32 flags; /* tx control flags defined |
| 356 | * above */ |
Johannes Berg | 6a7664d | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 357 | u8 key_idx; /* keyidx from hw->set_key(), undefined if |
| 358 | * IEEE80211_TXCTL_DO_NOT_ENCRYPT is set */ |
Ivo van Doorn | d5d08de | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 359 | u8 retry_limit; /* 1 = only first attempt, 2 = one retry, .. |
| 360 | * This could be used when set_retry_limit |
| 361 | * is not implemented by the driver */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 362 | u8 power_level; /* per-packet transmit power level, in dBm */ |
| 363 | u8 antenna_sel_tx; /* 0 = default/diversity, 1 = Ant0, 2 = Ant1 */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 364 | u8 icv_len; /* length of the ICV/MIC field in octets */ |
| 365 | u8 iv_len; /* length of the IV field in octets */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 366 | u8 queue; /* hardware queue to use for this frame; |
| 367 | * 0 = highest, hw->queues-1 = lowest */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 368 | struct ieee80211_rate *rate; /* internal 80211.o rate */ |
| 369 | struct ieee80211_rate *rts_rate; /* internal 80211.o rate |
| 370 | * for RTS/CTS */ |
| 371 | int alt_retry_rate; /* retry rate for the last retries, given as the |
| 372 | * hw specific value for the rate (from |
| 373 | * struct ieee80211_rate). To be used to limit |
| 374 | * packet dropping when probing higher rates, if hw |
| 375 | * supports multiple retry rates. -1 = not used */ |
| 376 | int type; /* internal */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 377 | }; |
| 378 | |
Johannes Berg | 7ac1bd6 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 379 | |
| 380 | /** |
| 381 | * enum mac80211_rx_flags - receive flags |
| 382 | * |
| 383 | * These flags are used with the @flag member of &struct ieee80211_rx_status. |
| 384 | * @RX_FLAG_MMIC_ERROR: Michael MIC error was reported on this frame. |
| 385 | * Use together with %RX_FLAG_MMIC_STRIPPED. |
| 386 | * @RX_FLAG_DECRYPTED: This frame was decrypted in hardware. |
| 387 | * @RX_FLAG_RADIOTAP: This frame starts with a radiotap header. |
| 388 | * @RX_FLAG_MMIC_STRIPPED: the Michael MIC is stripped off this frame, |
| 389 | * verification has been done by the hardware. |
| 390 | * @RX_FLAG_IV_STRIPPED: The IV/ICV are stripped from this frame. |
| 391 | * If this flag is set, the stack cannot do any replay detection |
| 392 | * hence the driver or hardware will have to do that. |
Johannes Berg | 72abd81 | 2007-09-17 01:29:22 -0400 | [diff] [blame] | 393 | * @RX_FLAG_FAILED_FCS_CRC: Set this flag if the FCS check failed on |
| 394 | * the frame. |
| 395 | * @RX_FLAG_FAILED_PLCP_CRC: Set this flag if the PCLP check failed on |
| 396 | * the frame. |
Johannes Berg | c49e5ea | 2007-12-11 21:33:42 +0100 | [diff] [blame] | 397 | * @RX_FLAG_TSFT: The timestamp passed in the RX status (@mactime field) |
| 398 | * is valid. |
Johannes Berg | 7ac1bd6 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 399 | */ |
| 400 | enum mac80211_rx_flags { |
| 401 | RX_FLAG_MMIC_ERROR = 1<<0, |
| 402 | RX_FLAG_DECRYPTED = 1<<1, |
| 403 | RX_FLAG_RADIOTAP = 1<<2, |
| 404 | RX_FLAG_MMIC_STRIPPED = 1<<3, |
| 405 | RX_FLAG_IV_STRIPPED = 1<<4, |
Johannes Berg | 72abd81 | 2007-09-17 01:29:22 -0400 | [diff] [blame] | 406 | RX_FLAG_FAILED_FCS_CRC = 1<<5, |
| 407 | RX_FLAG_FAILED_PLCP_CRC = 1<<6, |
Johannes Berg | c49e5ea | 2007-12-11 21:33:42 +0100 | [diff] [blame] | 408 | RX_FLAG_TSFT = 1<<7, |
Johannes Berg | 7ac1bd6 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 409 | }; |
| 410 | |
| 411 | /** |
| 412 | * struct ieee80211_rx_status - receive status |
| 413 | * |
| 414 | * The low-level driver should provide this information (the subset |
| 415 | * supported by hardware) to the 802.11 code with each received |
| 416 | * frame. |
| 417 | * @mactime: MAC timestamp as defined by 802.11 |
| 418 | * @freq: frequency the radio was tuned to when receiving this frame, in MHz |
| 419 | * @channel: channel the radio was tuned to |
| 420 | * @phymode: active PHY mode |
| 421 | * @ssi: signal strength when receiving this frame |
| 422 | * @signal: used as 'qual' in statistics reporting |
| 423 | * @noise: PHY noise when receiving this frame |
| 424 | * @antenna: antenna used |
| 425 | * @rate: data rate |
| 426 | * @flag: %RX_FLAG_* |
| 427 | */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 428 | struct ieee80211_rx_status { |
| 429 | u64 mactime; |
Johannes Berg | 7ac1bd6 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 430 | int freq; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 431 | int channel; |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 432 | enum ieee80211_phymode phymode; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 433 | int ssi; |
Johannes Berg | 7ac1bd6 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 434 | int signal; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 435 | int noise; |
| 436 | int antenna; |
| 437 | int rate; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 438 | int flag; |
| 439 | }; |
| 440 | |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 441 | /** |
| 442 | * enum ieee80211_tx_status_flags - transmit status flags |
| 443 | * |
| 444 | * Status flags to indicate various transmit conditions. |
| 445 | * |
| 446 | * @IEEE80211_TX_STATUS_TX_FILTERED: The frame was not transmitted |
| 447 | * because the destination STA was in powersave mode. |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 448 | * @IEEE80211_TX_STATUS_ACK: Frame was acknowledged |
Ron Rindjunsky | 483fdce | 2008-01-28 14:07:21 +0200 | [diff] [blame] | 449 | * @IEEE80211_TX_STATUS_AMPDU: The frame was aggregated, so status |
| 450 | * is for the whole aggregation. |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 451 | */ |
| 452 | enum ieee80211_tx_status_flags { |
| 453 | IEEE80211_TX_STATUS_TX_FILTERED = 1<<0, |
| 454 | IEEE80211_TX_STATUS_ACK = 1<<1, |
Ron Rindjunsky | 483fdce | 2008-01-28 14:07:21 +0200 | [diff] [blame] | 455 | IEEE80211_TX_STATUS_AMPDU = 1<<2, |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 456 | }; |
| 457 | |
| 458 | /** |
| 459 | * struct ieee80211_tx_status - transmit status |
| 460 | * |
| 461 | * As much information as possible should be provided for each transmitted |
| 462 | * frame with ieee80211_tx_status(). |
| 463 | * |
| 464 | * @control: a copy of the &struct ieee80211_tx_control passed to the driver |
| 465 | * in the tx() callback. |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 466 | * @flags: transmit status flags, defined above |
Ron Rindjunsky | 483fdce | 2008-01-28 14:07:21 +0200 | [diff] [blame] | 467 | * @retry_count: number of retries |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 468 | * @excessive_retries: set to 1 if the frame was retried many times |
| 469 | * but not acknowledged |
Ron Rindjunsky | 483fdce | 2008-01-28 14:07:21 +0200 | [diff] [blame] | 470 | * @ampdu_ack_len: number of aggregated frames. |
| 471 | * relevant only if IEEE80211_TX_STATUS_AMPDU was set. |
| 472 | * @ampdu_ack_map: block ack bit map for the aggregation. |
| 473 | * relevant only if IEEE80211_TX_STATUS_AMPDU was set. |
| 474 | * @ack_signal: signal strength of the ACK frame |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 475 | * @queue_length: ?? REMOVE |
| 476 | * @queue_number: ?? REMOVE |
| 477 | */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 478 | struct ieee80211_tx_status { |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 479 | struct ieee80211_tx_control control; |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 480 | u8 flags; |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 481 | u8 retry_count; |
Ron Rindjunsky | 483fdce | 2008-01-28 14:07:21 +0200 | [diff] [blame] | 482 | bool excessive_retries; |
| 483 | u8 ampdu_ack_len; |
| 484 | u64 ampdu_ack_map; |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 485 | int ack_signal; |
| 486 | int queue_length; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 487 | int queue_number; |
| 488 | }; |
| 489 | |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 490 | /** |
| 491 | * enum ieee80211_conf_flags - configuration flags |
| 492 | * |
| 493 | * Flags to define PHY configuration options |
| 494 | * |
| 495 | * @IEEE80211_CONF_SHORT_SLOT_TIME: use 802.11g short slot time |
| 496 | * @IEEE80211_CONF_RADIOTAP: add radiotap header at receive time (if supported) |
Ron Rindjunsky | 10816d4 | 2007-11-26 16:14:30 +0200 | [diff] [blame] | 497 | * @IEEE80211_CONF_SUPPORT_HT_MODE: use 802.11n HT capabilities (if supported) |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 498 | */ |
| 499 | enum ieee80211_conf_flags { |
Ron Rindjunsky | 10816d4 | 2007-11-26 16:14:30 +0200 | [diff] [blame] | 500 | IEEE80211_CONF_SHORT_SLOT_TIME = (1<<0), |
| 501 | IEEE80211_CONF_RADIOTAP = (1<<1), |
| 502 | IEEE80211_CONF_SUPPORT_HT_MODE = (1<<2), |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 503 | }; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 504 | |
| 505 | /** |
| 506 | * struct ieee80211_conf - configuration of the device |
| 507 | * |
| 508 | * This struct indicates how the driver shall configure the hardware. |
| 509 | * |
| 510 | * @radio_enabled: when zero, driver is required to switch off the radio. |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 511 | * TODO make a flag |
| 512 | * @channel: IEEE 802.11 channel number |
| 513 | * @freq: frequency in MHz |
| 514 | * @channel_val: hardware specific channel value for the channel |
| 515 | * @phymode: PHY mode to activate (REMOVE) |
| 516 | * @chan: channel to switch to, pointer to the channel information |
| 517 | * @mode: pointer to mode definition |
| 518 | * @regulatory_domain: ?? |
| 519 | * @beacon_int: beacon interval (TODO make interface config) |
| 520 | * @flags: configuration flags defined above |
| 521 | * @power_level: transmit power limit for current regulatory domain in dBm |
| 522 | * @antenna_max: maximum antenna gain |
| 523 | * @antenna_sel_tx: transmit antenna selection, 0: default/diversity, |
| 524 | * 1/2: antenna 0/1 |
| 525 | * @antenna_sel_rx: receive antenna selection, like @antenna_sel_tx |
Ron Rindjunsky | 10816d4 | 2007-11-26 16:14:30 +0200 | [diff] [blame] | 526 | * @ht_conf: describes current self configuration of 802.11n HT capabilies |
| 527 | * @ht_bss_conf: describes current BSS configuration of 802.11n HT parameters |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 528 | */ |
| 529 | struct ieee80211_conf { |
| 530 | int channel; /* IEEE 802.11 channel number */ |
| 531 | int freq; /* MHz */ |
| 532 | int channel_val; /* hw specific value for the channel */ |
| 533 | |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 534 | enum ieee80211_phymode phymode; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 535 | struct ieee80211_channel *chan; |
| 536 | struct ieee80211_hw_mode *mode; |
| 537 | unsigned int regulatory_domain; |
| 538 | int radio_enabled; |
| 539 | |
| 540 | int beacon_int; |
Johannes Berg | 6b301cd | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 541 | u32 flags; |
| 542 | u8 power_level; |
| 543 | u8 antenna_max; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 544 | u8 antenna_sel_tx; |
| 545 | u8 antenna_sel_rx; |
Ron Rindjunsky | 10816d4 | 2007-11-26 16:14:30 +0200 | [diff] [blame] | 546 | |
| 547 | struct ieee80211_ht_info ht_conf; |
| 548 | struct ieee80211_ht_bss_info ht_bss_conf; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 549 | }; |
| 550 | |
| 551 | /** |
| 552 | * enum ieee80211_if_types - types of 802.11 network interfaces |
| 553 | * |
Johannes Berg | a289755 | 2007-09-28 14:01:25 +0200 | [diff] [blame] | 554 | * @IEEE80211_IF_TYPE_INVALID: invalid interface type, not used |
| 555 | * by mac80211 itself |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 556 | * @IEEE80211_IF_TYPE_AP: interface in AP mode. |
| 557 | * @IEEE80211_IF_TYPE_MGMT: special interface for communication with hostap |
| 558 | * daemon. Drivers should never see this type. |
| 559 | * @IEEE80211_IF_TYPE_STA: interface in STA (client) mode. |
| 560 | * @IEEE80211_IF_TYPE_IBSS: interface in IBSS (ad-hoc) mode. |
| 561 | * @IEEE80211_IF_TYPE_MNTR: interface in monitor (rfmon) mode. |
| 562 | * @IEEE80211_IF_TYPE_WDS: interface in WDS mode. |
Johannes Berg | 0ec3ca4 | 2007-09-17 01:29:24 -0400 | [diff] [blame] | 563 | * @IEEE80211_IF_TYPE_VLAN: VLAN interface bound to an AP, drivers |
| 564 | * will never see this type. |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 565 | */ |
| 566 | enum ieee80211_if_types { |
Johannes Berg | a289755 | 2007-09-28 14:01:25 +0200 | [diff] [blame] | 567 | IEEE80211_IF_TYPE_INVALID, |
Johannes Berg | 0ec3ca4 | 2007-09-17 01:29:24 -0400 | [diff] [blame] | 568 | IEEE80211_IF_TYPE_AP, |
Johannes Berg | 0ec3ca4 | 2007-09-17 01:29:24 -0400 | [diff] [blame] | 569 | IEEE80211_IF_TYPE_STA, |
| 570 | IEEE80211_IF_TYPE_IBSS, |
| 571 | IEEE80211_IF_TYPE_MNTR, |
| 572 | IEEE80211_IF_TYPE_WDS, |
| 573 | IEEE80211_IF_TYPE_VLAN, |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 574 | }; |
| 575 | |
| 576 | /** |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 577 | * struct ieee80211_vif - per-interface data |
| 578 | * |
| 579 | * Data in this structure is continually present for driver |
| 580 | * use during the life of a virtual interface. |
| 581 | * |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 582 | * @type: type of this virtual interface |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 583 | * @drv_priv: data area for driver use, will always be aligned to |
| 584 | * sizeof(void *). |
| 585 | */ |
| 586 | struct ieee80211_vif { |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 587 | enum ieee80211_if_types type; |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 588 | /* must be last */ |
| 589 | u8 drv_priv[0] __attribute__((__aligned__(sizeof(void *)))); |
| 590 | }; |
| 591 | |
| 592 | /** |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 593 | * struct ieee80211_if_init_conf - initial configuration of an interface |
| 594 | * |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 595 | * @vif: pointer to a driver-use per-interface structure. The pointer |
| 596 | * itself is also used for various functions including |
| 597 | * ieee80211_beacon_get() and ieee80211_get_buffered_bc(). |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 598 | * @type: one of &enum ieee80211_if_types constants. Determines the type of |
| 599 | * added/removed interface. |
| 600 | * @mac_addr: pointer to MAC address of the interface. This pointer is valid |
| 601 | * until the interface is removed (i.e. it cannot be used after |
| 602 | * remove_interface() callback was called for this interface). |
| 603 | * |
| 604 | * This structure is used in add_interface() and remove_interface() |
| 605 | * callbacks of &struct ieee80211_hw. |
Johannes Berg | 4480f15c | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 606 | * |
| 607 | * When you allow multiple interfaces to be added to your PHY, take care |
| 608 | * that the hardware can actually handle multiple MAC addresses. However, |
| 609 | * also take care that when there's no interface left with mac_addr != %NULL |
| 610 | * you remove the MAC address from the device to avoid acknowledging packets |
| 611 | * in pure monitor mode. |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 612 | */ |
| 613 | struct ieee80211_if_init_conf { |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 614 | enum ieee80211_if_types type; |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 615 | struct ieee80211_vif *vif; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 616 | void *mac_addr; |
| 617 | }; |
| 618 | |
| 619 | /** |
| 620 | * struct ieee80211_if_conf - configuration of an interface |
| 621 | * |
| 622 | * @type: type of the interface. This is always the same as was specified in |
| 623 | * &struct ieee80211_if_init_conf. The type of an interface never changes |
| 624 | * during the life of the interface; this field is present only for |
| 625 | * convenience. |
| 626 | * @bssid: BSSID of the network we are associated to/creating. |
| 627 | * @ssid: used (together with @ssid_len) by drivers for hardware that |
| 628 | * generate beacons independently. The pointer is valid only during the |
| 629 | * config_interface() call, so copy the value somewhere if you need |
| 630 | * it. |
| 631 | * @ssid_len: length of the @ssid field. |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 632 | * @beacon: beacon template. Valid only if @host_gen_beacon_template in |
| 633 | * &struct ieee80211_hw is set. The driver is responsible of freeing |
| 634 | * the sk_buff. |
| 635 | * @beacon_control: tx_control for the beacon template, this field is only |
| 636 | * valid when the @beacon field was set. |
| 637 | * |
| 638 | * This structure is passed to the config_interface() callback of |
| 639 | * &struct ieee80211_hw. |
| 640 | */ |
| 641 | struct ieee80211_if_conf { |
| 642 | int type; |
| 643 | u8 *bssid; |
| 644 | u8 *ssid; |
| 645 | size_t ssid_len; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 646 | struct sk_buff *beacon; |
| 647 | struct ieee80211_tx_control *beacon_control; |
| 648 | }; |
| 649 | |
Johannes Berg | 7ac1bd6 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 650 | /** |
| 651 | * enum ieee80211_key_alg - key algorithm |
Johannes Berg | 7ac1bd6 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 652 | * @ALG_WEP: WEP40 or WEP104 |
| 653 | * @ALG_TKIP: TKIP |
| 654 | * @ALG_CCMP: CCMP (AES) |
| 655 | */ |
Johannes Berg | ea49c35 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 656 | enum ieee80211_key_alg { |
Johannes Berg | 8f20fc2 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 657 | ALG_WEP, |
| 658 | ALG_TKIP, |
| 659 | ALG_CCMP, |
Johannes Berg | ea49c35 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 660 | }; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 661 | |
Johannes Berg | 11a843b | 2007-08-28 17:01:55 -0400 | [diff] [blame] | 662 | |
Johannes Berg | 7ac1bd6 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 663 | /** |
| 664 | * enum ieee80211_key_flags - key flags |
| 665 | * |
| 666 | * These flags are used for communication about keys between the driver |
| 667 | * and mac80211, with the @flags parameter of &struct ieee80211_key_conf. |
| 668 | * |
| 669 | * @IEEE80211_KEY_FLAG_WMM_STA: Set by mac80211, this flag indicates |
| 670 | * that the STA this key will be used with could be using QoS. |
| 671 | * @IEEE80211_KEY_FLAG_GENERATE_IV: This flag should be set by the |
| 672 | * driver to indicate that it requires IV generation for this |
| 673 | * particular key. |
| 674 | * @IEEE80211_KEY_FLAG_GENERATE_MMIC: This flag should be set by |
| 675 | * the driver for a TKIP key if it requires Michael MIC |
| 676 | * generation in software. |
| 677 | */ |
| 678 | enum ieee80211_key_flags { |
| 679 | IEEE80211_KEY_FLAG_WMM_STA = 1<<0, |
| 680 | IEEE80211_KEY_FLAG_GENERATE_IV = 1<<1, |
| 681 | IEEE80211_KEY_FLAG_GENERATE_MMIC= 1<<2, |
| 682 | }; |
| 683 | |
| 684 | /** |
| 685 | * struct ieee80211_key_conf - key information |
| 686 | * |
| 687 | * This key information is given by mac80211 to the driver by |
| 688 | * the set_key() callback in &struct ieee80211_ops. |
| 689 | * |
| 690 | * @hw_key_idx: To be set by the driver, this is the key index the driver |
| 691 | * 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] | 692 | * encrypted in hardware. |
Johannes Berg | 7ac1bd6 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 693 | * @alg: The key algorithm. |
| 694 | * @flags: key flags, see &enum ieee80211_key_flags. |
| 695 | * @keyidx: the key index (0-3) |
| 696 | * @keylen: key material length |
| 697 | * @key: key material |
| 698 | */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 699 | struct ieee80211_key_conf { |
Johannes Berg | ea49c35 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 700 | enum ieee80211_key_alg alg; |
Johannes Berg | 6a7664d | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 701 | u8 hw_key_idx; |
Johannes Berg | 11a843b | 2007-08-28 17:01:55 -0400 | [diff] [blame] | 702 | u8 flags; |
Johannes Berg | 11a843b | 2007-08-28 17:01:55 -0400 | [diff] [blame] | 703 | s8 keyidx; |
Johannes Berg | 11a843b | 2007-08-28 17:01:55 -0400 | [diff] [blame] | 704 | u8 keylen; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 705 | u8 key[0]; |
| 706 | }; |
| 707 | |
Johannes Berg | 7ac1bd6 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 708 | /** |
| 709 | * enum set_key_cmd - key command |
| 710 | * |
| 711 | * Used with the set_key() callback in &struct ieee80211_ops, this |
| 712 | * indicates whether a key is being removed or added. |
| 713 | * |
| 714 | * @SET_KEY: a key is set |
| 715 | * @DISABLE_KEY: a key must be disabled |
| 716 | */ |
Johannes Berg | ea49c35 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 717 | enum set_key_cmd { |
Johannes Berg | 11a843b | 2007-08-28 17:01:55 -0400 | [diff] [blame] | 718 | SET_KEY, DISABLE_KEY, |
Johannes Berg | ea49c35 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 719 | }; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 720 | |
Tomas Winkler | 478f8d2 | 2007-09-30 13:52:37 +0200 | [diff] [blame] | 721 | /** |
| 722 | * enum sta_notify_cmd - sta notify command |
| 723 | * |
| 724 | * Used with the sta_notify() callback in &struct ieee80211_ops, this |
| 725 | * indicates addition and removal of a station to station table |
| 726 | * |
| 727 | * @STA_NOTIFY_ADD: a station was added to the station table |
| 728 | * @STA_NOTIFY_REMOVE: a station being removed from the station table |
| 729 | */ |
| 730 | enum sta_notify_cmd { |
| 731 | STA_NOTIFY_ADD, STA_NOTIFY_REMOVE |
| 732 | }; |
Johannes Berg | 1bc0826 | 2007-09-18 17:29:15 -0400 | [diff] [blame] | 733 | |
| 734 | /** |
| 735 | * enum ieee80211_hw_flags - hardware flags |
| 736 | * |
| 737 | * These flags are used to indicate hardware capabilities to |
| 738 | * the stack. Generally, flags here should have their meaning |
| 739 | * done in a way that the simplest hardware doesn't need setting |
| 740 | * any particular flags. There are some exceptions to this rule, |
| 741 | * however, so you are advised to review these flags carefully. |
| 742 | * |
| 743 | * @IEEE80211_HW_HOST_GEN_BEACON_TEMPLATE: |
| 744 | * The device only needs to be supplied with a beacon template. |
| 745 | * If you need the host to generate each beacon then don't use |
| 746 | * this flag and call ieee80211_beacon_get() when you need the |
| 747 | * next beacon frame. Note that if you set this flag, you must |
| 748 | * implement the set_tim() callback for powersave mode to work |
| 749 | * properly. |
| 750 | * This flag is only relevant for access-point mode. |
| 751 | * |
| 752 | * @IEEE80211_HW_RX_INCLUDES_FCS: |
| 753 | * Indicates that received frames passed to the stack include |
| 754 | * the FCS at the end. |
| 755 | * |
| 756 | * @IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING: |
| 757 | * Some wireless LAN chipsets buffer broadcast/multicast frames |
| 758 | * for power saving stations in the hardware/firmware and others |
| 759 | * rely on the host system for such buffering. This option is used |
| 760 | * to configure the IEEE 802.11 upper layer to buffer broadcast and |
| 761 | * multicast frames when there are power saving stations so that |
| 762 | * the driver can fetch them with ieee80211_get_buffered_bc(). Note |
| 763 | * that not setting this flag works properly only when the |
| 764 | * %IEEE80211_HW_HOST_GEN_BEACON_TEMPLATE is also not set because |
| 765 | * otherwise the stack will not know when the DTIM beacon was sent. |
| 766 | * |
| 767 | * @IEEE80211_HW_DEFAULT_REG_DOMAIN_CONFIGURED: |
| 768 | * Channels are already configured to the default regulatory domain |
| 769 | * specified in the device's EEPROM |
| 770 | */ |
| 771 | enum ieee80211_hw_flags { |
| 772 | IEEE80211_HW_HOST_GEN_BEACON_TEMPLATE = 1<<0, |
| 773 | IEEE80211_HW_RX_INCLUDES_FCS = 1<<1, |
| 774 | IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING = 1<<2, |
| 775 | IEEE80211_HW_DEFAULT_REG_DOMAIN_CONFIGURED = 1<<3, |
| 776 | }; |
| 777 | |
Johannes Berg | 7ac1bd6 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 778 | /** |
| 779 | * struct ieee80211_hw - hardware information and state |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 780 | * |
| 781 | * This structure contains the configuration and hardware |
| 782 | * information for an 802.11 PHY. |
| 783 | * |
| 784 | * @wiphy: This points to the &struct wiphy allocated for this |
| 785 | * 802.11 PHY. You must fill in the @perm_addr and @dev |
| 786 | * members of this structure using SET_IEEE80211_DEV() |
| 787 | * and SET_IEEE80211_PERM_ADDR(). |
| 788 | * |
| 789 | * @conf: &struct ieee80211_conf, device configuration, don't use. |
| 790 | * |
| 791 | * @workqueue: single threaded workqueue available for driver use, |
| 792 | * allocated by mac80211 on registration and flushed on |
| 793 | * unregistration. |
| 794 | * |
| 795 | * @priv: pointer to private area that was allocated for driver use |
| 796 | * along with this structure. |
| 797 | * |
| 798 | * @flags: hardware flags, see &enum ieee80211_hw_flags. |
| 799 | * |
| 800 | * @extra_tx_headroom: headroom to reserve in each transmit skb |
| 801 | * for use by the driver (e.g. for transmit headers.) |
| 802 | * |
| 803 | * @channel_change_time: time (in microseconds) it takes to change channels. |
| 804 | * |
| 805 | * @max_rssi: Maximum value for ssi in RX information, use |
| 806 | * negative numbers for dBm and 0 to indicate no support. |
| 807 | * |
| 808 | * @max_signal: like @max_rssi, but for the signal value. |
| 809 | * |
| 810 | * @max_noise: like @max_rssi, but for the noise value. |
| 811 | * |
| 812 | * @queues: number of available hardware transmit queues for |
| 813 | * data packets. WMM/QoS requires at least four. |
Johannes Berg | 830f903 | 2007-10-28 14:51:05 +0100 | [diff] [blame] | 814 | * |
| 815 | * @rate_control_algorithm: rate control algorithm for this hardware. |
| 816 | * If unset (NULL), the default algorithm will be used. Must be |
| 817 | * set before calling ieee80211_register_hw(). |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 818 | * |
| 819 | * @vif_data_size: size (in bytes) of the drv_priv data area |
| 820 | * within &struct ieee80211_vif. |
Johannes Berg | 7ac1bd6 | 2007-09-14 11:10:25 -0400 | [diff] [blame] | 821 | */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 822 | struct ieee80211_hw { |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 823 | struct ieee80211_conf conf; |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 824 | struct wiphy *wiphy; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 825 | struct workqueue_struct *workqueue; |
Johannes Berg | 830f903 | 2007-10-28 14:51:05 +0100 | [diff] [blame] | 826 | const char *rate_control_algorithm; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 827 | void *priv; |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 828 | u32 flags; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 829 | unsigned int extra_tx_headroom; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 830 | int channel_change_time; |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 831 | int vif_data_size; |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 832 | u8 queues; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 833 | s8 max_rssi; |
| 834 | s8 max_signal; |
| 835 | s8 max_noise; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 836 | }; |
| 837 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 838 | /** |
| 839 | * SET_IEEE80211_DEV - set device for 802.11 hardware |
| 840 | * |
| 841 | * @hw: the &struct ieee80211_hw to set the device for |
| 842 | * @dev: the &struct device of this 802.11 device |
| 843 | */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 844 | static inline void SET_IEEE80211_DEV(struct ieee80211_hw *hw, struct device *dev) |
| 845 | { |
| 846 | set_wiphy_dev(hw->wiphy, dev); |
| 847 | } |
| 848 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 849 | /** |
| 850 | * SET_IEEE80211_PERM_ADDR - set the permanenet MAC address for 802.11 hardware |
| 851 | * |
| 852 | * @hw: the &struct ieee80211_hw to set the MAC address for |
| 853 | * @addr: the address to set |
| 854 | */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 855 | static inline void SET_IEEE80211_PERM_ADDR(struct ieee80211_hw *hw, u8 *addr) |
| 856 | { |
| 857 | memcpy(hw->wiphy->perm_addr, addr, ETH_ALEN); |
| 858 | } |
| 859 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 860 | /** |
| 861 | * DOC: Hardware crypto acceleration |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 862 | * |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 863 | * mac80211 is capable of taking advantage of many hardware |
| 864 | * acceleration designs for encryption and decryption operations. |
| 865 | * |
| 866 | * The set_key() callback in the &struct ieee80211_ops for a given |
| 867 | * device is called to enable hardware acceleration of encryption and |
| 868 | * decryption. The callback takes an @address parameter that will be |
| 869 | * the broadcast address for default keys, the other station's hardware |
| 870 | * address for individual keys or the zero address for keys that will |
| 871 | * be used only for transmission. |
| 872 | * Multiple transmission keys with the same key index may be used when |
| 873 | * VLANs are configured for an access point. |
| 874 | * |
| 875 | * The @local_address parameter will always be set to our own address, |
| 876 | * this is only relevant if you support multiple local addresses. |
| 877 | * |
| 878 | * When transmitting, the TX control data will use the @hw_key_idx |
| 879 | * selected by the driver by modifying the &struct ieee80211_key_conf |
| 880 | * pointed to by the @key parameter to the set_key() function. |
| 881 | * |
| 882 | * The set_key() call for the %SET_KEY command should return 0 if |
| 883 | * the key is now in use, -%EOPNOTSUPP or -%ENOSPC if it couldn't be |
| 884 | * added; if you return 0 then hw_key_idx must be assigned to the |
| 885 | * hardware key index, you are free to use the full u8 range. |
| 886 | * |
| 887 | * When the cmd is %DISABLE_KEY then it must succeed. |
| 888 | * |
| 889 | * Note that it is permissible to not decrypt a frame even if a key |
| 890 | * for it has been uploaded to hardware, the stack will not make any |
| 891 | * decision based on whether a key has been uploaded or not but rather |
| 892 | * based on the receive flags. |
| 893 | * |
| 894 | * The &struct ieee80211_key_conf structure pointed to by the @key |
| 895 | * parameter is guaranteed to be valid until another call to set_key() |
| 896 | * removes it, but it can only be used as a cookie to differentiate |
| 897 | * keys. |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 898 | */ |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 899 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 900 | /** |
| 901 | * DOC: Frame filtering |
| 902 | * |
| 903 | * mac80211 requires to see many management frames for proper |
| 904 | * operation, and users may want to see many more frames when |
| 905 | * in monitor mode. However, for best CPU usage and power consumption, |
| 906 | * having as few frames as possible percolate through the stack is |
| 907 | * desirable. Hence, the hardware should filter as much as possible. |
| 908 | * |
| 909 | * To achieve this, mac80211 uses filter flags (see below) to tell |
| 910 | * the driver's configure_filter() function which frames should be |
| 911 | * passed to mac80211 and which should be filtered out. |
| 912 | * |
| 913 | * The configure_filter() callback is invoked with the parameters |
| 914 | * @mc_count and @mc_list for the combined multicast address list |
| 915 | * of all virtual interfaces, @changed_flags telling which flags |
| 916 | * were changed and @total_flags with the new flag states. |
| 917 | * |
| 918 | * If your device has no multicast address filters your driver will |
| 919 | * need to check both the %FIF_ALLMULTI flag and the @mc_count |
| 920 | * parameter to see whether multicast frames should be accepted |
| 921 | * or dropped. |
| 922 | * |
| 923 | * All unsupported flags in @total_flags must be cleared, i.e. you |
| 924 | * should clear all bits except those you honoured. |
| 925 | */ |
| 926 | |
| 927 | /** |
| 928 | * enum ieee80211_filter_flags - hardware filter flags |
| 929 | * |
| 930 | * These flags determine what the filter in hardware should be |
| 931 | * programmed to let through and what should not be passed to the |
| 932 | * stack. It is always safe to pass more frames than requested, |
| 933 | * but this has negative impact on power consumption. |
| 934 | * |
| 935 | * @FIF_PROMISC_IN_BSS: promiscuous mode within your BSS, |
| 936 | * think of the BSS as your network segment and then this corresponds |
| 937 | * to the regular ethernet device promiscuous mode. |
| 938 | * |
| 939 | * @FIF_ALLMULTI: pass all multicast frames, this is used if requested |
| 940 | * by the user or if the hardware is not capable of filtering by |
| 941 | * multicast address. |
| 942 | * |
| 943 | * @FIF_FCSFAIL: pass frames with failed FCS (but you need to set the |
| 944 | * %RX_FLAG_FAILED_FCS_CRC for them) |
| 945 | * |
| 946 | * @FIF_PLCPFAIL: pass frames with failed PLCP CRC (but you need to set |
| 947 | * the %RX_FLAG_FAILED_PLCP_CRC for them |
| 948 | * |
| 949 | * @FIF_BCN_PRBRESP_PROMISC: This flag is set during scanning to indicate |
| 950 | * to the hardware that it should not filter beacons or probe responses |
| 951 | * by BSSID. Filtering them can greatly reduce the amount of processing |
| 952 | * mac80211 needs to do and the amount of CPU wakeups, so you should |
| 953 | * honour this flag if possible. |
| 954 | * |
| 955 | * @FIF_CONTROL: pass control frames, if PROMISC_IN_BSS is not set then |
| 956 | * only those addressed to this station |
| 957 | * |
| 958 | * @FIF_OTHER_BSS: pass frames destined to other BSSes |
| 959 | */ |
| 960 | enum ieee80211_filter_flags { |
| 961 | FIF_PROMISC_IN_BSS = 1<<0, |
| 962 | FIF_ALLMULTI = 1<<1, |
| 963 | FIF_FCSFAIL = 1<<2, |
| 964 | FIF_PLCPFAIL = 1<<3, |
| 965 | FIF_BCN_PRBRESP_PROMISC = 1<<4, |
| 966 | FIF_CONTROL = 1<<5, |
| 967 | FIF_OTHER_BSS = 1<<6, |
| 968 | }; |
| 969 | |
| 970 | /** |
Ron Rindjunsky | 1b7d03a | 2007-12-25 17:00:31 +0200 | [diff] [blame] | 971 | * enum ieee80211_ampdu_mlme_action - A-MPDU actions |
| 972 | * |
| 973 | * These flags are used with the ampdu_action() callback in |
| 974 | * &struct ieee80211_ops to indicate which action is needed. |
| 975 | * @IEEE80211_AMPDU_RX_START: start Rx aggregation |
| 976 | * @IEEE80211_AMPDU_RX_STOP: stop Rx aggregation |
Ron Rindjunsky | 0df3ef4 | 2008-01-28 14:07:15 +0200 | [diff] [blame] | 977 | * @IEEE80211_AMPDU_TX_START: start Tx aggregation |
| 978 | * @IEEE80211_AMPDU_TX_STOP: stop Tx aggregation |
Ron Rindjunsky | 1b7d03a | 2007-12-25 17:00:31 +0200 | [diff] [blame] | 979 | */ |
| 980 | enum ieee80211_ampdu_mlme_action { |
| 981 | IEEE80211_AMPDU_RX_START, |
| 982 | IEEE80211_AMPDU_RX_STOP, |
Ron Rindjunsky | 0df3ef4 | 2008-01-28 14:07:15 +0200 | [diff] [blame] | 983 | IEEE80211_AMPDU_TX_START, |
| 984 | IEEE80211_AMPDU_TX_STOP, |
Ron Rindjunsky | 1b7d03a | 2007-12-25 17:00:31 +0200 | [diff] [blame] | 985 | }; |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 986 | |
| 987 | /** |
| 988 | * struct ieee80211_ops - callbacks from mac80211 to the driver |
| 989 | * |
| 990 | * This structure contains various callbacks that the driver may |
| 991 | * handle or, in some cases, must handle, for example to configure |
| 992 | * the hardware to a new channel or to transmit a frame. |
| 993 | * |
| 994 | * @tx: Handler that 802.11 module calls for each transmitted frame. |
| 995 | * skb contains the buffer starting from the IEEE 802.11 header. |
| 996 | * The low-level driver should send the frame out based on |
| 997 | * configuration in the TX control data. Must be implemented and |
| 998 | * atomic. |
| 999 | * |
| 1000 | * @start: Called before the first netdevice attached to the hardware |
| 1001 | * is enabled. This should turn on the hardware and must turn on |
| 1002 | * frame reception (for possibly enabled monitor interfaces.) |
| 1003 | * Returns negative error codes, these may be seen in userspace, |
| 1004 | * or zero. |
| 1005 | * When the device is started it should not have a MAC address |
| 1006 | * to avoid acknowledging frames before a non-monitor device |
| 1007 | * is added. |
| 1008 | * Must be implemented. |
| 1009 | * |
| 1010 | * @stop: Called after last netdevice attached to the hardware |
| 1011 | * is disabled. This should turn off the hardware (at least |
| 1012 | * it must turn off frame reception.) |
| 1013 | * May be called right after add_interface if that rejects |
| 1014 | * an interface. |
| 1015 | * Must be implemented. |
| 1016 | * |
| 1017 | * @add_interface: Called when a netdevice attached to the hardware is |
| 1018 | * enabled. Because it is not called for monitor mode devices, @open |
| 1019 | * and @stop must be implemented. |
| 1020 | * The driver should perform any initialization it needs before |
| 1021 | * the device can be enabled. The initial configuration for the |
| 1022 | * interface is given in the conf parameter. |
| 1023 | * The callback may refuse to add an interface by returning a |
| 1024 | * negative error code (which will be seen in userspace.) |
| 1025 | * Must be implemented. |
| 1026 | * |
| 1027 | * @remove_interface: Notifies a driver that an interface is going down. |
| 1028 | * The @stop callback is called after this if it is the last interface |
| 1029 | * and no monitor interfaces are present. |
| 1030 | * When all interfaces are removed, the MAC address in the hardware |
| 1031 | * must be cleared so the device no longer acknowledges packets, |
| 1032 | * the mac_addr member of the conf structure is, however, set to the |
| 1033 | * MAC address of the device going away. |
| 1034 | * Hence, this callback must be implemented. |
| 1035 | * |
| 1036 | * @config: Handler for configuration requests. IEEE 802.11 code calls this |
| 1037 | * function to change hardware configuration, e.g., channel. |
| 1038 | * |
| 1039 | * @config_interface: Handler for configuration requests related to interfaces |
| 1040 | * (e.g. BSSID changes.) |
| 1041 | * |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 1042 | * @bss_info_changed: Handler for configuration requests related to BSS |
| 1043 | * parameters that may vary during BSS's lifespan, and may affect low |
| 1044 | * level driver (e.g. assoc/disassoc status, erp parameters). |
| 1045 | * This function should not be used if no BSS has been set, unless |
| 1046 | * for association indication. The @changed parameter indicates which |
| 1047 | * of the bss parameters has changed when a call is made. This callback |
| 1048 | * has to be atomic. |
| 1049 | * |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1050 | * @configure_filter: Configure the device's RX filter. |
| 1051 | * See the section "Frame filtering" for more information. |
| 1052 | * This callback must be implemented and atomic. |
| 1053 | * |
| 1054 | * @set_tim: Set TIM bit. If the hardware/firmware takes care of beacon |
| 1055 | * generation (that is, %IEEE80211_HW_HOST_GEN_BEACON_TEMPLATE is set) |
| 1056 | * mac80211 calls this function when a TIM bit must be set or cleared |
| 1057 | * for a given AID. Must be atomic. |
| 1058 | * |
| 1059 | * @set_key: See the section "Hardware crypto acceleration" |
| 1060 | * This callback can sleep, and is only called between add_interface |
| 1061 | * and remove_interface calls, i.e. while the interface with the |
| 1062 | * given local_address is enabled. |
| 1063 | * |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1064 | * @hw_scan: Ask the hardware to service the scan request, no need to start |
| 1065 | * the scan state machine in stack. |
| 1066 | * |
| 1067 | * @get_stats: return low-level statistics |
| 1068 | * |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 1069 | * @get_tkip_seq: If your device implements TKIP encryption in hardware this |
| 1070 | * callback should be provided to read the TKIP transmit IVs (both IV32 |
| 1071 | * and IV16) for the given key from hardware. |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1072 | * |
| 1073 | * @set_rts_threshold: Configuration of RTS threshold (if device needs it) |
| 1074 | * |
| 1075 | * @set_frag_threshold: Configuration of fragmentation threshold. Assign this if |
| 1076 | * the device does fragmentation by itself; if this method is assigned then |
| 1077 | * the stack will not do fragmentation. |
| 1078 | * |
| 1079 | * @set_retry_limit: Configuration of retry limits (if device needs it) |
| 1080 | * |
Tomas Winkler | 478f8d2 | 2007-09-30 13:52:37 +0200 | [diff] [blame] | 1081 | * @sta_notify: Notifies low level driver about addition or removal |
| 1082 | * of assocaited station or AP. |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1083 | * |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1084 | * @conf_tx: Configure TX queue parameters (EDCF (aifs, cw_min, cw_max), |
| 1085 | * bursting) for a hardware TX queue. The @queue parameter uses the |
| 1086 | * %IEEE80211_TX_QUEUE_* constants. Must be atomic. |
| 1087 | * |
| 1088 | * @get_tx_stats: Get statistics of the current TX queue status. This is used |
| 1089 | * to get number of currently queued packets (queue length), maximum queue |
| 1090 | * size (limit), and total number of packets sent using each TX queue |
| 1091 | * (count). This information is used for WMM to find out which TX |
| 1092 | * queues have room for more packets and by hostapd to provide |
| 1093 | * statistics about the current queueing state to external programs. |
| 1094 | * |
| 1095 | * @get_tsf: Get the current TSF timer value from firmware/hardware. Currently, |
| 1096 | * this is only used for IBSS mode debugging and, as such, is not a |
| 1097 | * required function. Must be atomic. |
| 1098 | * |
| 1099 | * @reset_tsf: Reset the TSF timer and allow firmware/hardware to synchronize |
| 1100 | * with other STAs in the IBSS. This is only used in IBSS mode. This |
| 1101 | * function is optional if the firmware/hardware takes full care of |
| 1102 | * TSF synchronization. |
| 1103 | * |
| 1104 | * @beacon_update: Setup beacon data for IBSS beacons. Unlike access point, |
| 1105 | * IBSS uses a fixed beacon frame which is configured using this |
Michael Buesch | 5ecc2a5 | 2007-10-02 12:17:56 +0200 | [diff] [blame] | 1106 | * function. |
| 1107 | * If the driver returns success (0) from this callback, it owns |
| 1108 | * the skb. That means the driver is responsible to kfree_skb() it. |
| 1109 | * The control structure is not dynamically allocated. That means the |
| 1110 | * driver does not own the pointer and if it needs it somewhere |
| 1111 | * outside of the context of this function, it must copy it |
| 1112 | * somewhere else. |
| 1113 | * This handler is required only for IBSS mode. |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1114 | * |
| 1115 | * @tx_last_beacon: Determine whether the last IBSS beacon was sent by us. |
| 1116 | * This is needed only for IBSS mode and the result of this function is |
| 1117 | * used to determine whether to reply to Probe Requests. |
Ron Rindjunsky | d3c990f | 2007-11-26 16:14:34 +0200 | [diff] [blame] | 1118 | * |
| 1119 | * @conf_ht: Configures low level driver with 802.11n HT data. Must be atomic. |
Ron Rindjunsky | 1b7d03a | 2007-12-25 17:00:31 +0200 | [diff] [blame] | 1120 | * |
| 1121 | * @ampdu_action: Perform a certain A-MPDU action |
| 1122 | * The RA/TID combination determines the destination and TID we want |
| 1123 | * the ampdu action to be performed for. The action is defined through |
| 1124 | * ieee80211_ampdu_mlme_action. Starting sequence number (@ssn) |
Ron Rindjunsky | 0df3ef4 | 2008-01-28 14:07:15 +0200 | [diff] [blame] | 1125 | * is the first frame we expect to perform the action on. notice |
| 1126 | * that TX/RX_STOP can pass NULL for this parameter. |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1127 | */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1128 | struct ieee80211_ops { |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1129 | int (*tx)(struct ieee80211_hw *hw, struct sk_buff *skb, |
| 1130 | struct ieee80211_tx_control *control); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1131 | int (*start)(struct ieee80211_hw *hw); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1132 | void (*stop)(struct ieee80211_hw *hw); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1133 | int (*add_interface)(struct ieee80211_hw *hw, |
| 1134 | struct ieee80211_if_init_conf *conf); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1135 | void (*remove_interface)(struct ieee80211_hw *hw, |
| 1136 | struct ieee80211_if_init_conf *conf); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1137 | int (*config)(struct ieee80211_hw *hw, struct ieee80211_conf *conf); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1138 | int (*config_interface)(struct ieee80211_hw *hw, |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 1139 | struct ieee80211_vif *vif, |
| 1140 | struct ieee80211_if_conf *conf); |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 1141 | void (*bss_info_changed)(struct ieee80211_hw *hw, |
| 1142 | struct ieee80211_vif *vif, |
| 1143 | struct ieee80211_bss_conf *info, |
| 1144 | u32 changed); |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 1145 | void (*configure_filter)(struct ieee80211_hw *hw, |
| 1146 | unsigned int changed_flags, |
| 1147 | unsigned int *total_flags, |
| 1148 | int mc_count, struct dev_addr_list *mc_list); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1149 | int (*set_tim)(struct ieee80211_hw *hw, int aid, int set); |
Johannes Berg | ea49c35 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 1150 | int (*set_key)(struct ieee80211_hw *hw, enum set_key_cmd cmd, |
Johannes Berg | 11a843b | 2007-08-28 17:01:55 -0400 | [diff] [blame] | 1151 | const u8 *local_address, const u8 *address, |
| 1152 | struct ieee80211_key_conf *key); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1153 | int (*hw_scan)(struct ieee80211_hw *hw, u8 *ssid, size_t len); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1154 | int (*get_stats)(struct ieee80211_hw *hw, |
| 1155 | struct ieee80211_low_level_stats *stats); |
Johannes Berg | 62da92f | 2007-12-19 02:03:31 +0100 | [diff] [blame] | 1156 | void (*get_tkip_seq)(struct ieee80211_hw *hw, u8 hw_key_idx, |
| 1157 | u32 *iv32, u16 *iv16); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1158 | int (*set_rts_threshold)(struct ieee80211_hw *hw, u32 value); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1159 | int (*set_frag_threshold)(struct ieee80211_hw *hw, u32 value); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1160 | int (*set_retry_limit)(struct ieee80211_hw *hw, |
| 1161 | u32 short_retry, u32 long_retr); |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 1162 | void (*sta_notify)(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
Tomas Winkler | 478f8d2 | 2007-09-30 13:52:37 +0200 | [diff] [blame] | 1163 | enum sta_notify_cmd, const u8 *addr); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1164 | int (*conf_tx)(struct ieee80211_hw *hw, int queue, |
| 1165 | const struct ieee80211_tx_queue_params *params); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1166 | int (*get_tx_stats)(struct ieee80211_hw *hw, |
| 1167 | struct ieee80211_tx_queue_stats *stats); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1168 | u64 (*get_tsf)(struct ieee80211_hw *hw); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1169 | void (*reset_tsf)(struct ieee80211_hw *hw); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1170 | int (*beacon_update)(struct ieee80211_hw *hw, |
| 1171 | struct sk_buff *skb, |
| 1172 | struct ieee80211_tx_control *control); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1173 | int (*tx_last_beacon)(struct ieee80211_hw *hw); |
Ron Rindjunsky | d3c990f | 2007-11-26 16:14:34 +0200 | [diff] [blame] | 1174 | int (*conf_ht)(struct ieee80211_hw *hw, struct ieee80211_conf *conf); |
Ron Rindjunsky | 1b7d03a | 2007-12-25 17:00:31 +0200 | [diff] [blame] | 1175 | int (*ampdu_action)(struct ieee80211_hw *hw, |
| 1176 | enum ieee80211_ampdu_mlme_action action, |
Ron Rindjunsky | 0df3ef4 | 2008-01-28 14:07:15 +0200 | [diff] [blame] | 1177 | const u8 *addr, u16 tid, u16 *ssn); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1178 | }; |
| 1179 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1180 | /** |
| 1181 | * ieee80211_alloc_hw - Allocate a new hardware device |
| 1182 | * |
| 1183 | * This must be called once for each hardware device. The returned pointer |
| 1184 | * must be used to refer to this device when calling other functions. |
| 1185 | * mac80211 allocates a private data area for the driver pointed to by |
| 1186 | * @priv in &struct ieee80211_hw, the size of this area is given as |
| 1187 | * @priv_data_len. |
| 1188 | * |
| 1189 | * @priv_data_len: length of private data |
| 1190 | * @ops: callbacks for this device |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1191 | */ |
| 1192 | struct ieee80211_hw *ieee80211_alloc_hw(size_t priv_data_len, |
| 1193 | const struct ieee80211_ops *ops); |
| 1194 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1195 | /** |
| 1196 | * ieee80211_register_hw - Register hardware device |
| 1197 | * |
| 1198 | * You must call this function before any other functions |
| 1199 | * except ieee80211_register_hwmode. |
| 1200 | * |
| 1201 | * @hw: the device to register as returned by ieee80211_alloc_hw() |
| 1202 | */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1203 | int ieee80211_register_hw(struct ieee80211_hw *hw); |
| 1204 | |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1205 | #ifdef CONFIG_MAC80211_LEDS |
| 1206 | extern char *__ieee80211_get_tx_led_name(struct ieee80211_hw *hw); |
| 1207 | extern char *__ieee80211_get_rx_led_name(struct ieee80211_hw *hw); |
Michael Buesch | 47f0c50 | 2007-09-27 15:10:44 +0200 | [diff] [blame] | 1208 | extern char *__ieee80211_get_assoc_led_name(struct ieee80211_hw *hw); |
Ivo van Doorn | cdcb006 | 2008-01-07 19:45:24 +0100 | [diff] [blame] | 1209 | extern char *__ieee80211_get_radio_led_name(struct ieee80211_hw *hw); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1210 | #endif |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1211 | /** |
| 1212 | * ieee80211_get_tx_led_name - get name of TX LED |
| 1213 | * |
| 1214 | * mac80211 creates a transmit LED trigger for each wireless hardware |
| 1215 | * that can be used to drive LEDs if your driver registers a LED device. |
| 1216 | * This function returns the name (or %NULL if not configured for LEDs) |
| 1217 | * of the trigger so you can automatically link the LED device. |
| 1218 | * |
| 1219 | * @hw: the hardware to get the LED trigger name for |
| 1220 | */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1221 | static inline char *ieee80211_get_tx_led_name(struct ieee80211_hw *hw) |
| 1222 | { |
| 1223 | #ifdef CONFIG_MAC80211_LEDS |
| 1224 | return __ieee80211_get_tx_led_name(hw); |
| 1225 | #else |
| 1226 | return NULL; |
| 1227 | #endif |
| 1228 | } |
| 1229 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1230 | /** |
| 1231 | * ieee80211_get_rx_led_name - get name of RX LED |
| 1232 | * |
| 1233 | * mac80211 creates a receive LED trigger for each wireless hardware |
| 1234 | * that can be used to drive LEDs if your driver registers a LED device. |
| 1235 | * This function returns the name (or %NULL if not configured for LEDs) |
| 1236 | * of the trigger so you can automatically link the LED device. |
| 1237 | * |
| 1238 | * @hw: the hardware to get the LED trigger name for |
| 1239 | */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1240 | static inline char *ieee80211_get_rx_led_name(struct ieee80211_hw *hw) |
| 1241 | { |
| 1242 | #ifdef CONFIG_MAC80211_LEDS |
| 1243 | return __ieee80211_get_rx_led_name(hw); |
| 1244 | #else |
| 1245 | return NULL; |
| 1246 | #endif |
| 1247 | } |
| 1248 | |
Ivo van Doorn | cdcb006 | 2008-01-07 19:45:24 +0100 | [diff] [blame] | 1249 | /** |
| 1250 | * ieee80211_get_assoc_led_name - get name of association LED |
| 1251 | * |
| 1252 | * mac80211 creates a association LED trigger for each wireless hardware |
| 1253 | * that can be used to drive LEDs if your driver registers a LED device. |
| 1254 | * This function returns the name (or %NULL if not configured for LEDs) |
| 1255 | * of the trigger so you can automatically link the LED device. |
| 1256 | * |
| 1257 | * @hw: the hardware to get the LED trigger name for |
| 1258 | */ |
Michael Buesch | 47f0c50 | 2007-09-27 15:10:44 +0200 | [diff] [blame] | 1259 | static inline char *ieee80211_get_assoc_led_name(struct ieee80211_hw *hw) |
| 1260 | { |
| 1261 | #ifdef CONFIG_MAC80211_LEDS |
| 1262 | return __ieee80211_get_assoc_led_name(hw); |
| 1263 | #else |
| 1264 | return NULL; |
| 1265 | #endif |
| 1266 | } |
| 1267 | |
Ivo van Doorn | cdcb006 | 2008-01-07 19:45:24 +0100 | [diff] [blame] | 1268 | /** |
| 1269 | * ieee80211_get_radio_led_name - get name of radio LED |
| 1270 | * |
| 1271 | * mac80211 creates a radio change LED trigger for each wireless hardware |
| 1272 | * that can be used to drive LEDs if your driver registers a LED device. |
| 1273 | * This function returns the name (or %NULL if not configured for LEDs) |
| 1274 | * of the trigger so you can automatically link the LED device. |
| 1275 | * |
| 1276 | * @hw: the hardware to get the LED trigger name for |
| 1277 | */ |
| 1278 | static inline char *ieee80211_get_radio_led_name(struct ieee80211_hw *hw) |
| 1279 | { |
| 1280 | #ifdef CONFIG_MAC80211_LEDS |
| 1281 | return __ieee80211_get_radio_led_name(hw); |
| 1282 | #else |
| 1283 | return NULL; |
| 1284 | #endif |
| 1285 | } |
Michael Buesch | 47f0c50 | 2007-09-27 15:10:44 +0200 | [diff] [blame] | 1286 | |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1287 | /* Register a new hardware PHYMODE capability to the stack. */ |
| 1288 | int ieee80211_register_hwmode(struct ieee80211_hw *hw, |
| 1289 | struct ieee80211_hw_mode *mode); |
| 1290 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1291 | /** |
| 1292 | * ieee80211_unregister_hw - Unregister a hardware device |
| 1293 | * |
| 1294 | * This function instructs mac80211 to free allocated resources |
| 1295 | * and unregister netdevices from the networking subsystem. |
| 1296 | * |
| 1297 | * @hw: the hardware to unregister |
| 1298 | */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1299 | void ieee80211_unregister_hw(struct ieee80211_hw *hw); |
| 1300 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1301 | /** |
| 1302 | * ieee80211_free_hw - free hardware descriptor |
| 1303 | * |
| 1304 | * This function frees everything that was allocated, including the |
| 1305 | * private data for the driver. You must call ieee80211_unregister_hw() |
| 1306 | * before calling this function |
| 1307 | * |
| 1308 | * @hw: the hardware to free |
| 1309 | */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1310 | void ieee80211_free_hw(struct ieee80211_hw *hw); |
| 1311 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1312 | /* trick to avoid symbol clashes with the ieee80211 subsystem */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1313 | void __ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb, |
| 1314 | struct ieee80211_rx_status *status); |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1315 | |
| 1316 | /** |
| 1317 | * ieee80211_rx - receive frame |
| 1318 | * |
| 1319 | * Use this function to hand received frames to mac80211. The receive |
| 1320 | * buffer in @skb must start with an IEEE 802.11 header or a radiotap |
| 1321 | * header if %RX_FLAG_RADIOTAP is set in the @status flags. |
| 1322 | * |
| 1323 | * This function may not be called in IRQ context. |
| 1324 | * |
| 1325 | * @hw: the hardware this frame came in on |
| 1326 | * @skb: the buffer to receive, owned by mac80211 after this call |
| 1327 | * @status: status of this frame; the status pointer need not be valid |
| 1328 | * after this function returns |
| 1329 | */ |
| 1330 | static inline void ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb, |
| 1331 | struct ieee80211_rx_status *status) |
| 1332 | { |
| 1333 | __ieee80211_rx(hw, skb, status); |
| 1334 | } |
| 1335 | |
| 1336 | /** |
| 1337 | * ieee80211_rx_irqsafe - receive frame |
| 1338 | * |
| 1339 | * Like ieee80211_rx() but can be called in IRQ context |
| 1340 | * (internally defers to a workqueue.) |
| 1341 | * |
| 1342 | * @hw: the hardware this frame came in on |
| 1343 | * @skb: the buffer to receive, owned by mac80211 after this call |
| 1344 | * @status: status of this frame; the status pointer need not be valid |
| 1345 | * after this function returns and is not freed by mac80211, |
| 1346 | * it is recommended that it points to a stack area |
| 1347 | */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1348 | void ieee80211_rx_irqsafe(struct ieee80211_hw *hw, |
| 1349 | struct sk_buff *skb, |
| 1350 | struct ieee80211_rx_status *status); |
| 1351 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1352 | /** |
| 1353 | * ieee80211_tx_status - transmit status callback |
| 1354 | * |
| 1355 | * Call this function for all transmitted frames after they have been |
| 1356 | * transmitted. It is permissible to not call this function for |
| 1357 | * multicast frames but this can affect statistics. |
| 1358 | * |
| 1359 | * @hw: the hardware the frame was transmitted by |
| 1360 | * @skb: the frame that was transmitted, owned by mac80211 after this call |
| 1361 | * @status: status information for this frame; the status pointer need not |
| 1362 | * be valid after this function returns and is not freed by mac80211, |
| 1363 | * it is recommended that it points to a stack area |
| 1364 | */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1365 | void ieee80211_tx_status(struct ieee80211_hw *hw, |
| 1366 | struct sk_buff *skb, |
| 1367 | struct ieee80211_tx_status *status); |
| 1368 | void ieee80211_tx_status_irqsafe(struct ieee80211_hw *hw, |
| 1369 | struct sk_buff *skb, |
| 1370 | struct ieee80211_tx_status *status); |
| 1371 | |
| 1372 | /** |
| 1373 | * ieee80211_beacon_get - beacon generation function |
| 1374 | * @hw: pointer obtained from ieee80211_alloc_hw(). |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 1375 | * @vif: &struct ieee80211_vif pointer from &struct ieee80211_if_init_conf. |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1376 | * @control: will be filled with information needed to send this beacon. |
| 1377 | * |
| 1378 | * If the beacon frames are generated by the host system (i.e., not in |
| 1379 | * hardware/firmware), the low-level driver uses this function to receive |
| 1380 | * the next beacon frame from the 802.11 code. The low-level is responsible |
| 1381 | * for calling this function before beacon data is needed (e.g., based on |
| 1382 | * hardware interrupt). Returned skb is used only once and low-level driver |
| 1383 | * is responsible of freeing it. |
| 1384 | */ |
| 1385 | struct sk_buff *ieee80211_beacon_get(struct ieee80211_hw *hw, |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 1386 | struct ieee80211_vif *vif, |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1387 | struct ieee80211_tx_control *control); |
| 1388 | |
| 1389 | /** |
| 1390 | * ieee80211_rts_get - RTS frame generation function |
| 1391 | * @hw: pointer obtained from ieee80211_alloc_hw(). |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 1392 | * @vif: &struct ieee80211_vif pointer from &struct ieee80211_if_init_conf. |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1393 | * @frame: pointer to the frame that is going to be protected by the RTS. |
| 1394 | * @frame_len: the frame length (in octets). |
| 1395 | * @frame_txctl: &struct ieee80211_tx_control of the frame. |
| 1396 | * @rts: The buffer where to store the RTS frame. |
| 1397 | * |
| 1398 | * If the RTS frames are generated by the host system (i.e., not in |
| 1399 | * hardware/firmware), the low-level driver uses this function to receive |
| 1400 | * the next RTS frame from the 802.11 code. The low-level is responsible |
| 1401 | * for calling this function before and RTS frame is needed. |
| 1402 | */ |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 1403 | void ieee80211_rts_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1404 | const void *frame, size_t frame_len, |
| 1405 | const struct ieee80211_tx_control *frame_txctl, |
| 1406 | struct ieee80211_rts *rts); |
| 1407 | |
| 1408 | /** |
| 1409 | * ieee80211_rts_duration - Get the duration field for an RTS frame |
| 1410 | * @hw: pointer obtained from ieee80211_alloc_hw(). |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 1411 | * @vif: &struct ieee80211_vif pointer from &struct ieee80211_if_init_conf. |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1412 | * @frame_len: the length of the frame that is going to be protected by the RTS. |
| 1413 | * @frame_txctl: &struct ieee80211_tx_control of the frame. |
| 1414 | * |
| 1415 | * If the RTS is generated in firmware, but the host system must provide |
| 1416 | * the duration field, the low-level driver uses this function to receive |
| 1417 | * the duration field value in little-endian byteorder. |
| 1418 | */ |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 1419 | __le16 ieee80211_rts_duration(struct ieee80211_hw *hw, |
| 1420 | struct ieee80211_vif *vif, size_t frame_len, |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1421 | const struct ieee80211_tx_control *frame_txctl); |
| 1422 | |
| 1423 | /** |
| 1424 | * ieee80211_ctstoself_get - CTS-to-self frame generation function |
| 1425 | * @hw: pointer obtained from ieee80211_alloc_hw(). |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 1426 | * @vif: &struct ieee80211_vif pointer from &struct ieee80211_if_init_conf. |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1427 | * @frame: pointer to the frame that is going to be protected by the CTS-to-self. |
| 1428 | * @frame_len: the frame length (in octets). |
| 1429 | * @frame_txctl: &struct ieee80211_tx_control of the frame. |
| 1430 | * @cts: The buffer where to store the CTS-to-self frame. |
| 1431 | * |
| 1432 | * If the CTS-to-self frames are generated by the host system (i.e., not in |
| 1433 | * hardware/firmware), the low-level driver uses this function to receive |
| 1434 | * the next CTS-to-self frame from the 802.11 code. The low-level is responsible |
| 1435 | * for calling this function before and CTS-to-self frame is needed. |
| 1436 | */ |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 1437 | void ieee80211_ctstoself_get(struct ieee80211_hw *hw, |
| 1438 | struct ieee80211_vif *vif, |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1439 | const void *frame, size_t frame_len, |
| 1440 | const struct ieee80211_tx_control *frame_txctl, |
| 1441 | struct ieee80211_cts *cts); |
| 1442 | |
| 1443 | /** |
| 1444 | * ieee80211_ctstoself_duration - Get the duration field for a CTS-to-self frame |
| 1445 | * @hw: pointer obtained from ieee80211_alloc_hw(). |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 1446 | * @vif: &struct ieee80211_vif pointer from &struct ieee80211_if_init_conf. |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1447 | * @frame_len: the length of the frame that is going to be protected by the CTS-to-self. |
| 1448 | * @frame_txctl: &struct ieee80211_tx_control of the frame. |
| 1449 | * |
| 1450 | * If the CTS-to-self is generated in firmware, but the host system must provide |
| 1451 | * the duration field, the low-level driver uses this function to receive |
| 1452 | * the duration field value in little-endian byteorder. |
| 1453 | */ |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 1454 | __le16 ieee80211_ctstoself_duration(struct ieee80211_hw *hw, |
| 1455 | struct ieee80211_vif *vif, |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1456 | size_t frame_len, |
| 1457 | const struct ieee80211_tx_control *frame_txctl); |
| 1458 | |
| 1459 | /** |
| 1460 | * ieee80211_generic_frame_duration - Calculate the duration field for a frame |
| 1461 | * @hw: pointer obtained from ieee80211_alloc_hw(). |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 1462 | * @vif: &struct ieee80211_vif pointer from &struct ieee80211_if_init_conf. |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1463 | * @frame_len: the length of the frame. |
| 1464 | * @rate: the rate (in 100kbps) at which the frame is going to be transmitted. |
| 1465 | * |
| 1466 | * Calculate the duration field of some generic frame, given its |
| 1467 | * length and transmission rate (in 100kbps). |
| 1468 | */ |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 1469 | __le16 ieee80211_generic_frame_duration(struct ieee80211_hw *hw, |
| 1470 | struct ieee80211_vif *vif, |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1471 | size_t frame_len, |
| 1472 | int rate); |
| 1473 | |
| 1474 | /** |
| 1475 | * ieee80211_get_buffered_bc - accessing buffered broadcast and multicast frames |
| 1476 | * @hw: pointer as obtained from ieee80211_alloc_hw(). |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 1477 | * @vif: &struct ieee80211_vif pointer from &struct ieee80211_if_init_conf. |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1478 | * @control: will be filled with information needed to send returned frame. |
| 1479 | * |
| 1480 | * Function for accessing buffered broadcast and multicast frames. If |
| 1481 | * hardware/firmware does not implement buffering of broadcast/multicast |
| 1482 | * frames when power saving is used, 802.11 code buffers them in the host |
| 1483 | * memory. The low-level driver uses this function to fetch next buffered |
| 1484 | * frame. In most cases, this is used when generating beacon frame. This |
| 1485 | * function returns a pointer to the next buffered skb or NULL if no more |
| 1486 | * buffered frames are available. |
| 1487 | * |
| 1488 | * Note: buffered frames are returned only after DTIM beacon frame was |
| 1489 | * generated with ieee80211_beacon_get() and the low-level driver must thus |
| 1490 | * call ieee80211_beacon_get() first. ieee80211_get_buffered_bc() returns |
| 1491 | * NULL if the previous generated beacon was not DTIM, so the low-level driver |
| 1492 | * does not need to check for DTIM beacons separately and should be able to |
| 1493 | * use common code for all beacons. |
| 1494 | */ |
| 1495 | struct sk_buff * |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 1496 | ieee80211_get_buffered_bc(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1497 | struct ieee80211_tx_control *control); |
| 1498 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1499 | /** |
| 1500 | * ieee80211_get_hdrlen_from_skb - get header length from data |
| 1501 | * |
| 1502 | * Given an skb with a raw 802.11 header at the data pointer this function |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1503 | * returns the 802.11 header length in bytes (not including encryption |
| 1504 | * headers). If the data in the sk_buff is too short to contain a valid 802.11 |
| 1505 | * header the function returns 0. |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1506 | * |
| 1507 | * @skb: the frame |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1508 | */ |
| 1509 | int ieee80211_get_hdrlen_from_skb(const struct sk_buff *skb); |
| 1510 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1511 | /** |
| 1512 | * ieee80211_get_hdrlen - get header length from frame control |
| 1513 | * |
| 1514 | * This function returns the 802.11 header length in bytes (not including |
| 1515 | * encryption headers.) |
| 1516 | * |
| 1517 | * @fc: the frame control field (in CPU endianness) |
| 1518 | */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1519 | int ieee80211_get_hdrlen(u16 fc); |
| 1520 | |
| 1521 | /** |
| 1522 | * ieee80211_wake_queue - wake specific queue |
| 1523 | * @hw: pointer as obtained from ieee80211_alloc_hw(). |
| 1524 | * @queue: queue number (counted from zero). |
| 1525 | * |
| 1526 | * Drivers should use this function instead of netif_wake_queue. |
| 1527 | */ |
| 1528 | void ieee80211_wake_queue(struct ieee80211_hw *hw, int queue); |
| 1529 | |
| 1530 | /** |
| 1531 | * ieee80211_stop_queue - stop specific queue |
| 1532 | * @hw: pointer as obtained from ieee80211_alloc_hw(). |
| 1533 | * @queue: queue number (counted from zero). |
| 1534 | * |
| 1535 | * Drivers should use this function instead of netif_stop_queue. |
| 1536 | */ |
| 1537 | void ieee80211_stop_queue(struct ieee80211_hw *hw, int queue); |
| 1538 | |
| 1539 | /** |
| 1540 | * ieee80211_start_queues - start all queues |
| 1541 | * @hw: pointer to as obtained from ieee80211_alloc_hw(). |
| 1542 | * |
| 1543 | * Drivers should use this function instead of netif_start_queue. |
| 1544 | */ |
| 1545 | void ieee80211_start_queues(struct ieee80211_hw *hw); |
| 1546 | |
| 1547 | /** |
| 1548 | * ieee80211_stop_queues - stop all queues |
| 1549 | * @hw: pointer as obtained from ieee80211_alloc_hw(). |
| 1550 | * |
| 1551 | * Drivers should use this function instead of netif_stop_queue. |
| 1552 | */ |
| 1553 | void ieee80211_stop_queues(struct ieee80211_hw *hw); |
| 1554 | |
| 1555 | /** |
| 1556 | * ieee80211_wake_queues - wake all queues |
| 1557 | * @hw: pointer as obtained from ieee80211_alloc_hw(). |
| 1558 | * |
| 1559 | * Drivers should use this function instead of netif_wake_queue. |
| 1560 | */ |
| 1561 | void ieee80211_wake_queues(struct ieee80211_hw *hw); |
| 1562 | |
Johannes Berg | 75a5f0c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 1563 | /** |
| 1564 | * ieee80211_scan_completed - completed hardware scan |
| 1565 | * |
| 1566 | * When hardware scan offload is used (i.e. the hw_scan() callback is |
| 1567 | * assigned) this function needs to be called by the driver to notify |
| 1568 | * mac80211 that the scan finished. |
| 1569 | * |
| 1570 | * @hw: the hardware that finished the scan |
| 1571 | */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1572 | void ieee80211_scan_completed(struct ieee80211_hw *hw); |
| 1573 | |
Johannes Berg | dabeb34 | 2007-11-09 01:57:29 +0100 | [diff] [blame] | 1574 | /** |
| 1575 | * ieee80211_iterate_active_interfaces - iterate active interfaces |
| 1576 | * |
| 1577 | * This function iterates over the interfaces associated with a given |
| 1578 | * hardware that are currently active and calls the callback for them. |
Johannes Berg | dabeb34 | 2007-11-09 01:57:29 +0100 | [diff] [blame] | 1579 | * |
| 1580 | * @hw: the hardware struct of which the interfaces should be iterated over |
Johannes Berg | e38bad4 | 2007-11-28 10:55:32 +0100 | [diff] [blame] | 1581 | * @iterator: the iterator function to call, cannot sleep |
Johannes Berg | dabeb34 | 2007-11-09 01:57:29 +0100 | [diff] [blame] | 1582 | * @data: first argument of the iterator function |
| 1583 | */ |
| 1584 | void ieee80211_iterate_active_interfaces(struct ieee80211_hw *hw, |
| 1585 | void (*iterator)(void *data, u8 *mac, |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 1586 | struct ieee80211_vif *vif), |
Johannes Berg | dabeb34 | 2007-11-09 01:57:29 +0100 | [diff] [blame] | 1587 | void *data); |
| 1588 | |
Ron Rindjunsky | 0df3ef4 | 2008-01-28 14:07:15 +0200 | [diff] [blame] | 1589 | /** |
| 1590 | * ieee80211_start_tx_ba_session - Start a tx Block Ack session. |
| 1591 | * @hw: pointer as obtained from ieee80211_alloc_hw(). |
| 1592 | * @ra: receiver address of the BA session recipient |
| 1593 | * @tid: the TID to BA on. |
| 1594 | * @return: success if addBA request was sent, failure otherwise |
| 1595 | * |
| 1596 | * Although mac80211/low level driver/user space application can estimate |
| 1597 | * the need to start aggregation on a certain RA/TID, the session level |
| 1598 | * will be managed by the mac80211. |
| 1599 | */ |
| 1600 | int ieee80211_start_tx_ba_session(struct ieee80211_hw *hw, u8 *ra, u16 tid); |
| 1601 | |
| 1602 | /** |
| 1603 | * ieee80211_start_tx_ba_cb - low level driver ready to aggregate. |
| 1604 | * @hw: pointer as obtained from ieee80211_alloc_hw(). |
| 1605 | * @ra: receiver address of the BA session recipient. |
| 1606 | * @tid: the TID to BA on. |
| 1607 | * |
| 1608 | * This function must be called by low level driver once it has |
| 1609 | * finished with preparations for the BA session. |
| 1610 | */ |
| 1611 | void ieee80211_start_tx_ba_cb(struct ieee80211_hw *hw, u8 *ra, u16 tid); |
| 1612 | |
| 1613 | /** |
| 1614 | * ieee80211_start_tx_ba_cb_irqsafe - low level driver ready to aggregate. |
| 1615 | * @hw: pointer as obtained from ieee80211_alloc_hw(). |
| 1616 | * @ra: receiver address of the BA session recipient. |
| 1617 | * @tid: the TID to BA on. |
| 1618 | * |
| 1619 | * This function must be called by low level driver once it has |
| 1620 | * finished with preparations for the BA session. |
| 1621 | * This version of the function is irq safe. |
| 1622 | */ |
| 1623 | void ieee80211_start_tx_ba_cb_irqsafe(struct ieee80211_hw *hw, const u8 *ra, |
| 1624 | u16 tid); |
| 1625 | |
| 1626 | /** |
| 1627 | * ieee80211_stop_tx_ba_session - Stop a Block Ack session. |
| 1628 | * @hw: pointer as obtained from ieee80211_alloc_hw(). |
| 1629 | * @ra: receiver address of the BA session recipient |
| 1630 | * @tid: the TID to stop BA. |
| 1631 | * @initiator: if indicates initiator DELBA frame will be sent. |
| 1632 | * @return: error if no sta with matching da found, success otherwise |
| 1633 | * |
| 1634 | * Although mac80211/low level driver/user space application can estimate |
| 1635 | * the need to stop aggregation on a certain RA/TID, the session level |
| 1636 | * will be managed by the mac80211. |
| 1637 | */ |
| 1638 | int ieee80211_stop_tx_ba_session(struct ieee80211_hw *hw, |
| 1639 | u8 *ra, u16 tid, |
| 1640 | enum ieee80211_back_parties initiator); |
| 1641 | |
| 1642 | /** |
| 1643 | * ieee80211_stop_tx_ba_cb - low level driver ready to stop aggregate. |
| 1644 | * @hw: pointer as obtained from ieee80211_alloc_hw(). |
| 1645 | * @ra: receiver address of the BA session recipient. |
| 1646 | * @tid: the desired TID to BA on. |
| 1647 | * |
| 1648 | * This function must be called by low level driver once it has |
| 1649 | * finished with preparations for the BA session tear down. |
| 1650 | */ |
| 1651 | void ieee80211_stop_tx_ba_cb(struct ieee80211_hw *hw, u8 *ra, u8 tid); |
| 1652 | |
| 1653 | /** |
| 1654 | * ieee80211_stop_tx_ba_cb_irqsafe - low level driver ready to stop aggregate. |
| 1655 | * @hw: pointer as obtained from ieee80211_alloc_hw(). |
| 1656 | * @ra: receiver address of the BA session recipient. |
| 1657 | * @tid: the desired TID to BA on. |
| 1658 | * |
| 1659 | * This function must be called by low level driver once it has |
| 1660 | * finished with preparations for the BA session tear down. |
| 1661 | * This version of the function is irq safe. |
| 1662 | */ |
| 1663 | void ieee80211_stop_tx_ba_cb_irqsafe(struct ieee80211_hw *hw, const u8 *ra, |
| 1664 | u16 tid); |
| 1665 | |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1666 | #endif /* MAC80211_H */ |