xref: /linux/include/net/cfg80211.h (revision 716f9392e2b84cacc18cc11f7427cb98adeb1c3d)
1704232c2SJohannes Berg #ifndef __NET_CFG80211_H
2704232c2SJohannes Berg #define __NET_CFG80211_H
3704232c2SJohannes Berg 
4704232c2SJohannes Berg #include <linux/netlink.h>
5704232c2SJohannes Berg #include <linux/skbuff.h>
655682965SJohannes Berg #include <linux/nl80211.h>
7704232c2SJohannes Berg #include <net/genetlink.h>
8fee52678SJohannes Berg /* remove once we remove the wext stuff */
9fee52678SJohannes Berg #include <net/iw_handler.h>
10704232c2SJohannes Berg 
11704232c2SJohannes Berg /*
12704232c2SJohannes Berg  * 802.11 configuration in-kernel interface
13704232c2SJohannes Berg  *
1455682965SJohannes Berg  * Copyright 2006, 2007	Johannes Berg <johannes@sipsolutions.net>
15704232c2SJohannes Berg  */
16704232c2SJohannes Berg 
172ec600d6SLuis Carlos Cobo /**
182ec600d6SLuis Carlos Cobo  * struct vif_params - describes virtual interface parameters
192ec600d6SLuis Carlos Cobo  * @mesh_id: mesh ID to use
202ec600d6SLuis Carlos Cobo  * @mesh_id_len: length of the mesh ID
212ec600d6SLuis Carlos Cobo  */
222ec600d6SLuis Carlos Cobo struct vif_params {
232ec600d6SLuis Carlos Cobo        u8 *mesh_id;
242ec600d6SLuis Carlos Cobo        int mesh_id_len;
252ec600d6SLuis Carlos Cobo };
262ec600d6SLuis Carlos Cobo 
27179f831bSAndy Green /* Radiotap header iteration
28179f831bSAndy Green  *   implemented in net/wireless/radiotap.c
29179f831bSAndy Green  *   docs in Documentation/networking/radiotap-headers.txt
30179f831bSAndy Green  */
31179f831bSAndy Green /**
32179f831bSAndy Green  * struct ieee80211_radiotap_iterator - tracks walk thru present radiotap args
33179f831bSAndy Green  * @rtheader: pointer to the radiotap header we are walking through
34179f831bSAndy Green  * @max_length: length of radiotap header in cpu byte ordering
35179f831bSAndy Green  * @this_arg_index: IEEE80211_RADIOTAP_... index of current arg
36179f831bSAndy Green  * @this_arg: pointer to current radiotap arg
37179f831bSAndy Green  * @arg_index: internal next argument index
38179f831bSAndy Green  * @arg: internal next argument pointer
39179f831bSAndy Green  * @next_bitmap: internal pointer to next present u32
40179f831bSAndy Green  * @bitmap_shifter: internal shifter for curr u32 bitmap, b0 set == arg present
41179f831bSAndy Green  */
42179f831bSAndy Green 
43179f831bSAndy Green struct ieee80211_radiotap_iterator {
44179f831bSAndy Green 	struct ieee80211_radiotap_header *rtheader;
45179f831bSAndy Green 	int max_length;
46179f831bSAndy Green 	int this_arg_index;
47179f831bSAndy Green 	u8 *this_arg;
48179f831bSAndy Green 
49179f831bSAndy Green 	int arg_index;
50179f831bSAndy Green 	u8 *arg;
51179f831bSAndy Green 	__le32 *next_bitmap;
52179f831bSAndy Green 	u32 bitmap_shifter;
53179f831bSAndy Green };
54179f831bSAndy Green 
55179f831bSAndy Green extern int ieee80211_radiotap_iterator_init(
56179f831bSAndy Green    struct ieee80211_radiotap_iterator *iterator,
57179f831bSAndy Green    struct ieee80211_radiotap_header *radiotap_header,
58179f831bSAndy Green    int max_length);
59179f831bSAndy Green 
60179f831bSAndy Green extern int ieee80211_radiotap_iterator_next(
61179f831bSAndy Green    struct ieee80211_radiotap_iterator *iterator);
62179f831bSAndy Green 
63179f831bSAndy Green 
6441ade00fSJohannes Berg  /**
6541ade00fSJohannes Berg  * struct key_params - key information
6641ade00fSJohannes Berg  *
6741ade00fSJohannes Berg  * Information about a key
6841ade00fSJohannes Berg  *
6941ade00fSJohannes Berg  * @key: key material
7041ade00fSJohannes Berg  * @key_len: length of key material
7141ade00fSJohannes Berg  * @cipher: cipher suite selector
7241ade00fSJohannes Berg  * @seq: sequence counter (IV/PN) for TKIP and CCMP keys, only used
7341ade00fSJohannes Berg  *	with the get_key() callback, must be in little endian,
7441ade00fSJohannes Berg  *	length given by @seq_len.
7541ade00fSJohannes Berg  */
7641ade00fSJohannes Berg struct key_params {
7741ade00fSJohannes Berg 	u8 *key;
7841ade00fSJohannes Berg 	u8 *seq;
7941ade00fSJohannes Berg 	int key_len;
8041ade00fSJohannes Berg 	int seq_len;
8141ade00fSJohannes Berg 	u32 cipher;
8241ade00fSJohannes Berg };
8341ade00fSJohannes Berg 
84ed1b6cc7SJohannes Berg /**
85ed1b6cc7SJohannes Berg  * struct beacon_parameters - beacon parameters
86ed1b6cc7SJohannes Berg  *
87ed1b6cc7SJohannes Berg  * Used to configure the beacon for an interface.
88ed1b6cc7SJohannes Berg  *
89ed1b6cc7SJohannes Berg  * @head: head portion of beacon (before TIM IE)
90ed1b6cc7SJohannes Berg  *     or %NULL if not changed
91ed1b6cc7SJohannes Berg  * @tail: tail portion of beacon (after TIM IE)
92ed1b6cc7SJohannes Berg  *     or %NULL if not changed
93ed1b6cc7SJohannes Berg  * @interval: beacon interval or zero if not changed
94ed1b6cc7SJohannes Berg  * @dtim_period: DTIM period or zero if not changed
95ed1b6cc7SJohannes Berg  * @head_len: length of @head
96ed1b6cc7SJohannes Berg  * @tail_len: length of @tail
97ed1b6cc7SJohannes Berg  */
98ed1b6cc7SJohannes Berg struct beacon_parameters {
99ed1b6cc7SJohannes Berg 	u8 *head, *tail;
100ed1b6cc7SJohannes Berg 	int interval, dtim_period;
101ed1b6cc7SJohannes Berg 	int head_len, tail_len;
102ed1b6cc7SJohannes Berg };
103ed1b6cc7SJohannes Berg 
1045727ef1bSJohannes Berg /**
1055727ef1bSJohannes Berg  * enum station_flags - station flags
1065727ef1bSJohannes Berg  *
1075727ef1bSJohannes Berg  * Station capability flags. Note that these must be the bits
1085727ef1bSJohannes Berg  * according to the nl80211 flags.
1095727ef1bSJohannes Berg  *
1105727ef1bSJohannes Berg  * @STATION_FLAG_CHANGED: station flags were changed
1115727ef1bSJohannes Berg  * @STATION_FLAG_AUTHORIZED: station is authorized to send frames (802.1X)
1125727ef1bSJohannes Berg  * @STATION_FLAG_SHORT_PREAMBLE: station is capable of receiving frames
1135727ef1bSJohannes Berg  *	with short preambles
1145727ef1bSJohannes Berg  * @STATION_FLAG_WME: station is WME/QoS capable
1155394af4dSJouni Malinen  * @STATION_FLAG_MFP: station uses management frame protection
1165727ef1bSJohannes Berg  */
1175727ef1bSJohannes Berg enum station_flags {
1185727ef1bSJohannes Berg 	STATION_FLAG_CHANGED		= 1<<0,
1195727ef1bSJohannes Berg 	STATION_FLAG_AUTHORIZED		= 1<<NL80211_STA_FLAG_AUTHORIZED,
1205727ef1bSJohannes Berg 	STATION_FLAG_SHORT_PREAMBLE	= 1<<NL80211_STA_FLAG_SHORT_PREAMBLE,
1215727ef1bSJohannes Berg 	STATION_FLAG_WME		= 1<<NL80211_STA_FLAG_WME,
1225394af4dSJouni Malinen 	STATION_FLAG_MFP		= 1<<NL80211_STA_FLAG_MFP,
1235727ef1bSJohannes Berg };
1245727ef1bSJohannes Berg 
1255727ef1bSJohannes Berg /**
1262ec600d6SLuis Carlos Cobo  * enum plink_action - actions to perform in mesh peers
1272ec600d6SLuis Carlos Cobo  *
1282ec600d6SLuis Carlos Cobo  * @PLINK_ACTION_INVALID: action 0 is reserved
1292ec600d6SLuis Carlos Cobo  * @PLINK_ACTION_OPEN: start mesh peer link establishment
1302ec600d6SLuis Carlos Cobo  * @PLINK_ACTION_BLOCL: block traffic from this mesh peer
1312ec600d6SLuis Carlos Cobo  */
1322ec600d6SLuis Carlos Cobo enum plink_actions {
1332ec600d6SLuis Carlos Cobo 	PLINK_ACTION_INVALID,
1342ec600d6SLuis Carlos Cobo 	PLINK_ACTION_OPEN,
1352ec600d6SLuis Carlos Cobo 	PLINK_ACTION_BLOCK,
1362ec600d6SLuis Carlos Cobo };
1372ec600d6SLuis Carlos Cobo 
1382ec600d6SLuis Carlos Cobo /**
1395727ef1bSJohannes Berg  * struct station_parameters - station parameters
1405727ef1bSJohannes Berg  *
1415727ef1bSJohannes Berg  * Used to change and create a new station.
1425727ef1bSJohannes Berg  *
1435727ef1bSJohannes Berg  * @vlan: vlan interface station should belong to
1445727ef1bSJohannes Berg  * @supported_rates: supported rates in IEEE 802.11 format
1455727ef1bSJohannes Berg  *	(or NULL for no change)
1465727ef1bSJohannes Berg  * @supported_rates_len: number of supported rates
1475727ef1bSJohannes Berg  * @station_flags: station flags (see &enum station_flags)
1485727ef1bSJohannes Berg  * @listen_interval: listen interval or -1 for no change
1495727ef1bSJohannes Berg  * @aid: AID or zero for no change
1505727ef1bSJohannes Berg  */
1515727ef1bSJohannes Berg struct station_parameters {
1525727ef1bSJohannes Berg 	u8 *supported_rates;
1535727ef1bSJohannes Berg 	struct net_device *vlan;
1545727ef1bSJohannes Berg 	u32 station_flags;
1555727ef1bSJohannes Berg 	int listen_interval;
1565727ef1bSJohannes Berg 	u16 aid;
1575727ef1bSJohannes Berg 	u8 supported_rates_len;
1582ec600d6SLuis Carlos Cobo 	u8 plink_action;
15936aedc90SJouni Malinen 	struct ieee80211_ht_cap *ht_capa;
1605727ef1bSJohannes Berg };
1615727ef1bSJohannes Berg 
162fd5b74dcSJohannes Berg /**
1632ec600d6SLuis Carlos Cobo  * enum station_info_flags - station information flags
164fd5b74dcSJohannes Berg  *
1652ec600d6SLuis Carlos Cobo  * Used by the driver to indicate which info in &struct station_info
1662ec600d6SLuis Carlos Cobo  * it has filled in during get_station() or dump_station().
167fd5b74dcSJohannes Berg  *
1682ec600d6SLuis Carlos Cobo  * @STATION_INFO_INACTIVE_TIME: @inactive_time filled
1692ec600d6SLuis Carlos Cobo  * @STATION_INFO_RX_BYTES: @rx_bytes filled
1702ec600d6SLuis Carlos Cobo  * @STATION_INFO_TX_BYTES: @tx_bytes filled
1712ec600d6SLuis Carlos Cobo  * @STATION_INFO_LLID: @llid filled
1722ec600d6SLuis Carlos Cobo  * @STATION_INFO_PLID: @plid filled
1732ec600d6SLuis Carlos Cobo  * @STATION_INFO_PLINK_STATE: @plink_state filled
174420e7fabSHenning Rogge  * @STATION_INFO_SIGNAL: @signal filled
175420e7fabSHenning Rogge  * @STATION_INFO_TX_BITRATE: @tx_bitrate fields are filled
176420e7fabSHenning Rogge  *  (tx_bitrate, tx_bitrate_flags and tx_bitrate_mcs)
177fd5b74dcSJohannes Berg  */
1782ec600d6SLuis Carlos Cobo enum station_info_flags {
1792ec600d6SLuis Carlos Cobo 	STATION_INFO_INACTIVE_TIME	= 1<<0,
1802ec600d6SLuis Carlos Cobo 	STATION_INFO_RX_BYTES		= 1<<1,
1812ec600d6SLuis Carlos Cobo 	STATION_INFO_TX_BYTES		= 1<<2,
1822ec600d6SLuis Carlos Cobo 	STATION_INFO_LLID		= 1<<3,
1832ec600d6SLuis Carlos Cobo 	STATION_INFO_PLID		= 1<<4,
1842ec600d6SLuis Carlos Cobo 	STATION_INFO_PLINK_STATE	= 1<<5,
185420e7fabSHenning Rogge 	STATION_INFO_SIGNAL		= 1<<6,
186420e7fabSHenning Rogge 	STATION_INFO_TX_BITRATE		= 1<<7,
187420e7fabSHenning Rogge };
188420e7fabSHenning Rogge 
189420e7fabSHenning Rogge /**
190420e7fabSHenning Rogge  * enum station_info_rate_flags - bitrate info flags
191420e7fabSHenning Rogge  *
192420e7fabSHenning Rogge  * Used by the driver to indicate the specific rate transmission
193420e7fabSHenning Rogge  * type for 802.11n transmissions.
194420e7fabSHenning Rogge  *
195420e7fabSHenning Rogge  * @RATE_INFO_FLAGS_MCS: @tx_bitrate_mcs filled
196420e7fabSHenning Rogge  * @RATE_INFO_FLAGS_40_MHZ_WIDTH: 40 Mhz width transmission
197420e7fabSHenning Rogge  * @RATE_INFO_FLAGS_SHORT_GI: 400ns guard interval
198420e7fabSHenning Rogge  */
199420e7fabSHenning Rogge enum rate_info_flags {
200420e7fabSHenning Rogge 	RATE_INFO_FLAGS_MCS		= 1<<0,
201420e7fabSHenning Rogge 	RATE_INFO_FLAGS_40_MHZ_WIDTH	= 1<<1,
202420e7fabSHenning Rogge 	RATE_INFO_FLAGS_SHORT_GI	= 1<<2,
203420e7fabSHenning Rogge };
204420e7fabSHenning Rogge 
205420e7fabSHenning Rogge /**
206420e7fabSHenning Rogge  * struct rate_info - bitrate information
207420e7fabSHenning Rogge  *
208420e7fabSHenning Rogge  * Information about a receiving or transmitting bitrate
209420e7fabSHenning Rogge  *
210420e7fabSHenning Rogge  * @flags: bitflag of flags from &enum rate_info_flags
211420e7fabSHenning Rogge  * @mcs: mcs index if struct describes a 802.11n bitrate
212420e7fabSHenning Rogge  * @legacy: bitrate in 100kbit/s for 802.11abg
213420e7fabSHenning Rogge  */
214420e7fabSHenning Rogge struct rate_info {
215420e7fabSHenning Rogge 	u8 flags;
216420e7fabSHenning Rogge 	u8 mcs;
217420e7fabSHenning Rogge 	u16 legacy;
218fd5b74dcSJohannes Berg };
219fd5b74dcSJohannes Berg 
220fd5b74dcSJohannes Berg /**
2212ec600d6SLuis Carlos Cobo  * struct station_info - station information
222fd5b74dcSJohannes Berg  *
2232ec600d6SLuis Carlos Cobo  * Station information filled by driver for get_station() and dump_station.
224fd5b74dcSJohannes Berg  *
2252ec600d6SLuis Carlos Cobo  * @filled: bitflag of flags from &enum station_info_flags
226fd5b74dcSJohannes Berg  * @inactive_time: time since last station activity (tx/rx) in milliseconds
227fd5b74dcSJohannes Berg  * @rx_bytes: bytes received from this station
228fd5b74dcSJohannes Berg  * @tx_bytes: bytes transmitted to this station
2292ec600d6SLuis Carlos Cobo  * @llid: mesh local link id
2302ec600d6SLuis Carlos Cobo  * @plid: mesh peer link id
2312ec600d6SLuis Carlos Cobo  * @plink_state: mesh peer link state
232420e7fabSHenning Rogge  * @signal: signal strength of last received packet in dBm
233420e7fabSHenning Rogge  * @txrate: current unicast bitrate to this station
234fd5b74dcSJohannes Berg  */
2352ec600d6SLuis Carlos Cobo struct station_info {
236fd5b74dcSJohannes Berg 	u32 filled;
237fd5b74dcSJohannes Berg 	u32 inactive_time;
238fd5b74dcSJohannes Berg 	u32 rx_bytes;
239fd5b74dcSJohannes Berg 	u32 tx_bytes;
2402ec600d6SLuis Carlos Cobo 	u16 llid;
2412ec600d6SLuis Carlos Cobo 	u16 plid;
2422ec600d6SLuis Carlos Cobo 	u8 plink_state;
243420e7fabSHenning Rogge 	s8 signal;
244420e7fabSHenning Rogge 	struct rate_info txrate;
245fd5b74dcSJohannes Berg };
246fd5b74dcSJohannes Berg 
24766f7ac50SMichael Wu /**
24866f7ac50SMichael Wu  * enum monitor_flags - monitor flags
24966f7ac50SMichael Wu  *
25066f7ac50SMichael Wu  * Monitor interface configuration flags. Note that these must be the bits
25166f7ac50SMichael Wu  * according to the nl80211 flags.
25266f7ac50SMichael Wu  *
25366f7ac50SMichael Wu  * @MONITOR_FLAG_FCSFAIL: pass frames with bad FCS
25466f7ac50SMichael Wu  * @MONITOR_FLAG_PLCPFAIL: pass frames with bad PLCP
25566f7ac50SMichael Wu  * @MONITOR_FLAG_CONTROL: pass control frames
25666f7ac50SMichael Wu  * @MONITOR_FLAG_OTHER_BSS: disable BSSID filtering
25766f7ac50SMichael Wu  * @MONITOR_FLAG_COOK_FRAMES: report frames after processing
25866f7ac50SMichael Wu  */
25966f7ac50SMichael Wu enum monitor_flags {
26066f7ac50SMichael Wu 	MONITOR_FLAG_FCSFAIL		= 1<<NL80211_MNTR_FLAG_FCSFAIL,
26166f7ac50SMichael Wu 	MONITOR_FLAG_PLCPFAIL		= 1<<NL80211_MNTR_FLAG_PLCPFAIL,
26266f7ac50SMichael Wu 	MONITOR_FLAG_CONTROL		= 1<<NL80211_MNTR_FLAG_CONTROL,
26366f7ac50SMichael Wu 	MONITOR_FLAG_OTHER_BSS		= 1<<NL80211_MNTR_FLAG_OTHER_BSS,
26466f7ac50SMichael Wu 	MONITOR_FLAG_COOK_FRAMES	= 1<<NL80211_MNTR_FLAG_COOK_FRAMES,
26566f7ac50SMichael Wu };
26666f7ac50SMichael Wu 
2672ec600d6SLuis Carlos Cobo /**
2682ec600d6SLuis Carlos Cobo  * enum mpath_info_flags -  mesh path information flags
2692ec600d6SLuis Carlos Cobo  *
2702ec600d6SLuis Carlos Cobo  * Used by the driver to indicate which info in &struct mpath_info it has filled
2712ec600d6SLuis Carlos Cobo  * in during get_station() or dump_station().
2722ec600d6SLuis Carlos Cobo  *
2732ec600d6SLuis Carlos Cobo  * MPATH_INFO_FRAME_QLEN: @frame_qlen filled
2742ec600d6SLuis Carlos Cobo  * MPATH_INFO_DSN: @dsn filled
2752ec600d6SLuis Carlos Cobo  * MPATH_INFO_METRIC: @metric filled
2762ec600d6SLuis Carlos Cobo  * MPATH_INFO_EXPTIME: @exptime filled
2772ec600d6SLuis Carlos Cobo  * MPATH_INFO_DISCOVERY_TIMEOUT: @discovery_timeout filled
2782ec600d6SLuis Carlos Cobo  * MPATH_INFO_DISCOVERY_RETRIES: @discovery_retries filled
2792ec600d6SLuis Carlos Cobo  * MPATH_INFO_FLAGS: @flags filled
2802ec600d6SLuis Carlos Cobo  */
2812ec600d6SLuis Carlos Cobo enum mpath_info_flags {
2822ec600d6SLuis Carlos Cobo 	MPATH_INFO_FRAME_QLEN		= BIT(0),
2832ec600d6SLuis Carlos Cobo 	MPATH_INFO_DSN			= BIT(1),
2842ec600d6SLuis Carlos Cobo 	MPATH_INFO_METRIC		= BIT(2),
2852ec600d6SLuis Carlos Cobo 	MPATH_INFO_EXPTIME		= BIT(3),
2862ec600d6SLuis Carlos Cobo 	MPATH_INFO_DISCOVERY_TIMEOUT	= BIT(4),
2872ec600d6SLuis Carlos Cobo 	MPATH_INFO_DISCOVERY_RETRIES	= BIT(5),
2882ec600d6SLuis Carlos Cobo 	MPATH_INFO_FLAGS		= BIT(6),
2892ec600d6SLuis Carlos Cobo };
2902ec600d6SLuis Carlos Cobo 
2912ec600d6SLuis Carlos Cobo /**
2922ec600d6SLuis Carlos Cobo  * struct mpath_info - mesh path information
2932ec600d6SLuis Carlos Cobo  *
2942ec600d6SLuis Carlos Cobo  * Mesh path information filled by driver for get_mpath() and dump_mpath().
2952ec600d6SLuis Carlos Cobo  *
2962ec600d6SLuis Carlos Cobo  * @filled: bitfield of flags from &enum mpath_info_flags
2972ec600d6SLuis Carlos Cobo  * @frame_qlen: number of queued frames for this destination
2982ec600d6SLuis Carlos Cobo  * @dsn: destination sequence number
2992ec600d6SLuis Carlos Cobo  * @metric: metric (cost) of this mesh path
3002ec600d6SLuis Carlos Cobo  * @exptime: expiration time for the mesh path from now, in msecs
3012ec600d6SLuis Carlos Cobo  * @flags: mesh path flags
3022ec600d6SLuis Carlos Cobo  * @discovery_timeout: total mesh path discovery timeout, in msecs
3032ec600d6SLuis Carlos Cobo  * @discovery_retries: mesh path discovery retries
3042ec600d6SLuis Carlos Cobo  */
3052ec600d6SLuis Carlos Cobo struct mpath_info {
3062ec600d6SLuis Carlos Cobo 	u32 filled;
3072ec600d6SLuis Carlos Cobo 	u32 frame_qlen;
3082ec600d6SLuis Carlos Cobo 	u32 dsn;
3092ec600d6SLuis Carlos Cobo 	u32 metric;
3102ec600d6SLuis Carlos Cobo 	u32 exptime;
3112ec600d6SLuis Carlos Cobo 	u32 discovery_timeout;
3122ec600d6SLuis Carlos Cobo 	u8 discovery_retries;
3132ec600d6SLuis Carlos Cobo 	u8 flags;
3142ec600d6SLuis Carlos Cobo };
3152ec600d6SLuis Carlos Cobo 
3169f1ba906SJouni Malinen /**
3179f1ba906SJouni Malinen  * struct bss_parameters - BSS parameters
3189f1ba906SJouni Malinen  *
3199f1ba906SJouni Malinen  * Used to change BSS parameters (mainly for AP mode).
3209f1ba906SJouni Malinen  *
3219f1ba906SJouni Malinen  * @use_cts_prot: Whether to use CTS protection
3229f1ba906SJouni Malinen  *	(0 = no, 1 = yes, -1 = do not change)
3239f1ba906SJouni Malinen  * @use_short_preamble: Whether the use of short preambles is allowed
3249f1ba906SJouni Malinen  *	(0 = no, 1 = yes, -1 = do not change)
3259f1ba906SJouni Malinen  * @use_short_slot_time: Whether the use of short slot time is allowed
3269f1ba906SJouni Malinen  *	(0 = no, 1 = yes, -1 = do not change)
32790c97a04SJouni Malinen  * @basic_rates: basic rates in IEEE 802.11 format
32890c97a04SJouni Malinen  *	(or NULL for no change)
32990c97a04SJouni Malinen  * @basic_rates_len: number of basic rates
3309f1ba906SJouni Malinen  */
3319f1ba906SJouni Malinen struct bss_parameters {
3329f1ba906SJouni Malinen 	int use_cts_prot;
3339f1ba906SJouni Malinen 	int use_short_preamble;
3349f1ba906SJouni Malinen 	int use_short_slot_time;
33590c97a04SJouni Malinen 	u8 *basic_rates;
33690c97a04SJouni Malinen 	u8 basic_rates_len;
3379f1ba906SJouni Malinen };
3382ec600d6SLuis Carlos Cobo 
339b2e1b302SLuis R. Rodriguez /**
340b2e1b302SLuis R. Rodriguez  * enum reg_set_by - Indicates who is trying to set the regulatory domain
341b2e1b302SLuis R. Rodriguez  * @REGDOM_SET_BY_INIT: regulatory domain was set by initialization. We will be
342b2e1b302SLuis R. Rodriguez  * 	using a static world regulatory domain by default.
343b2e1b302SLuis R. Rodriguez  * @REGDOM_SET_BY_CORE: Core queried CRDA for a dynamic world regulatory domain.
344b2e1b302SLuis R. Rodriguez  * @REGDOM_SET_BY_USER: User asked the wireless core to set the
345b2e1b302SLuis R. Rodriguez  * 	regulatory domain.
346b2e1b302SLuis R. Rodriguez  * @REGDOM_SET_BY_DRIVER: a wireless drivers has hinted to the wireless core
347b2e1b302SLuis R. Rodriguez  *	it thinks its knows the regulatory domain we should be in.
348b2e1b302SLuis R. Rodriguez  * @REGDOM_SET_BY_COUNTRY_IE: the wireless core has received an 802.11 country
349b2e1b302SLuis R. Rodriguez  *	information element with regulatory information it thinks we
350b2e1b302SLuis R. Rodriguez  *	should consider.
351b2e1b302SLuis R. Rodriguez  */
352b2e1b302SLuis R. Rodriguez enum reg_set_by {
353b2e1b302SLuis R. Rodriguez 	REGDOM_SET_BY_INIT,
354b2e1b302SLuis R. Rodriguez 	REGDOM_SET_BY_CORE,
355b2e1b302SLuis R. Rodriguez 	REGDOM_SET_BY_USER,
356b2e1b302SLuis R. Rodriguez 	REGDOM_SET_BY_DRIVER,
357b2e1b302SLuis R. Rodriguez 	REGDOM_SET_BY_COUNTRY_IE,
358b2e1b302SLuis R. Rodriguez };
359b2e1b302SLuis R. Rodriguez 
360*716f9392SLuis R. Rodriguez /**
361*716f9392SLuis R. Rodriguez  * enum environment_cap - Environment parsed from country IE
362*716f9392SLuis R. Rodriguez  * @ENVIRON_ANY: indicates country IE applies to both indoor and
363*716f9392SLuis R. Rodriguez  * 	outdoor operation.
364*716f9392SLuis R. Rodriguez  * @ENVIRON_INDOOR: indicates country IE applies only to indoor operation
365*716f9392SLuis R. Rodriguez  * @ENVIRON_OUTDOOR: indicates country IE applies only to outdoor operation
366*716f9392SLuis R. Rodriguez  */
367*716f9392SLuis R. Rodriguez enum environment_cap {
368*716f9392SLuis R. Rodriguez 	ENVIRON_ANY,
369*716f9392SLuis R. Rodriguez 	ENVIRON_INDOOR,
370*716f9392SLuis R. Rodriguez 	ENVIRON_OUTDOOR,
371*716f9392SLuis R. Rodriguez };
372*716f9392SLuis R. Rodriguez 
373*716f9392SLuis R. Rodriguez /**
374*716f9392SLuis R. Rodriguez  * struct regulatory_request - receipt of last regulatory request
375*716f9392SLuis R. Rodriguez  *
376*716f9392SLuis R. Rodriguez  * @wiphy: this is set if this request's initiator is
377*716f9392SLuis R. Rodriguez  * 	%REGDOM_SET_BY_COUNTRY_IE or %REGDOM_SET_BY_DRIVER. This
378*716f9392SLuis R. Rodriguez  * 	can be used by the wireless core to deal with conflicts
379*716f9392SLuis R. Rodriguez  * 	and potentially inform users of which devices specifically
380*716f9392SLuis R. Rodriguez  * 	cased the conflicts.
381*716f9392SLuis R. Rodriguez  * @initiator: indicates who sent this request, could be any of
382*716f9392SLuis R. Rodriguez  * 	of those set in reg_set_by, %REGDOM_SET_BY_*
383*716f9392SLuis R. Rodriguez  * @alpha2: the ISO / IEC 3166 alpha2 country code of the requested
384*716f9392SLuis R. Rodriguez  * 	regulatory domain. We have a few special codes:
385*716f9392SLuis R. Rodriguez  * 	00 - World regulatory domain
386*716f9392SLuis R. Rodriguez  * 	99 - built by driver but a specific alpha2 cannot be determined
387*716f9392SLuis R. Rodriguez  * 	98 - result of an intersection between two regulatory domains
388*716f9392SLuis R. Rodriguez  * @intersect: indicates whether the wireless core should intersect
389*716f9392SLuis R. Rodriguez  * 	the requested regulatory domain with the presently set regulatory
390*716f9392SLuis R. Rodriguez  * 	domain.
391*716f9392SLuis R. Rodriguez  * @country_ie_checksum: checksum of the last processed and accepted
392*716f9392SLuis R. Rodriguez  * 	country IE
393*716f9392SLuis R. Rodriguez  * @country_ie_env: lets us know if the AP is telling us we are outdoor,
394*716f9392SLuis R. Rodriguez  * 	indoor, or if it doesn't matter
395*716f9392SLuis R. Rodriguez  */
396*716f9392SLuis R. Rodriguez struct regulatory_request {
397*716f9392SLuis R. Rodriguez 	struct wiphy *wiphy;
398*716f9392SLuis R. Rodriguez 	enum reg_set_by initiator;
399*716f9392SLuis R. Rodriguez 	char alpha2[2];
400*716f9392SLuis R. Rodriguez 	bool intersect;
401*716f9392SLuis R. Rodriguez 	u32 country_ie_checksum;
402*716f9392SLuis R. Rodriguez 	enum environment_cap country_ie_env;
403*716f9392SLuis R. Rodriguez };
404*716f9392SLuis R. Rodriguez 
405b2e1b302SLuis R. Rodriguez struct ieee80211_freq_range {
406b2e1b302SLuis R. Rodriguez 	u32 start_freq_khz;
407b2e1b302SLuis R. Rodriguez 	u32 end_freq_khz;
408b2e1b302SLuis R. Rodriguez 	u32 max_bandwidth_khz;
409b2e1b302SLuis R. Rodriguez };
410b2e1b302SLuis R. Rodriguez 
411b2e1b302SLuis R. Rodriguez struct ieee80211_power_rule {
412b2e1b302SLuis R. Rodriguez 	u32 max_antenna_gain;
413b2e1b302SLuis R. Rodriguez 	u32 max_eirp;
414b2e1b302SLuis R. Rodriguez };
415b2e1b302SLuis R. Rodriguez 
416b2e1b302SLuis R. Rodriguez struct ieee80211_reg_rule {
417b2e1b302SLuis R. Rodriguez 	struct ieee80211_freq_range freq_range;
418b2e1b302SLuis R. Rodriguez 	struct ieee80211_power_rule power_rule;
419b2e1b302SLuis R. Rodriguez 	u32 flags;
420b2e1b302SLuis R. Rodriguez };
421b2e1b302SLuis R. Rodriguez 
422b2e1b302SLuis R. Rodriguez struct ieee80211_regdomain {
423b2e1b302SLuis R. Rodriguez 	u32 n_reg_rules;
424b2e1b302SLuis R. Rodriguez 	char alpha2[2];
425b2e1b302SLuis R. Rodriguez 	struct ieee80211_reg_rule reg_rules[];
426b2e1b302SLuis R. Rodriguez };
427b2e1b302SLuis R. Rodriguez 
428b219cee1SLuis R. Rodriguez #define MHZ_TO_KHZ(freq) ((freq) * 1000)
429b219cee1SLuis R. Rodriguez #define KHZ_TO_MHZ(freq) ((freq) / 1000)
430b219cee1SLuis R. Rodriguez #define DBI_TO_MBI(gain) ((gain) * 100)
431b219cee1SLuis R. Rodriguez #define MBI_TO_DBI(gain) ((gain) / 100)
432b219cee1SLuis R. Rodriguez #define DBM_TO_MBM(gain) ((gain) * 100)
433b219cee1SLuis R. Rodriguez #define MBM_TO_DBM(gain) ((gain) / 100)
434b2e1b302SLuis R. Rodriguez 
435b2e1b302SLuis R. Rodriguez #define REG_RULE(start, end, bw, gain, eirp, reg_flags) { \
436b219cee1SLuis R. Rodriguez 	.freq_range.start_freq_khz = MHZ_TO_KHZ(start), \
437b219cee1SLuis R. Rodriguez 	.freq_range.end_freq_khz = MHZ_TO_KHZ(end), \
438b219cee1SLuis R. Rodriguez 	.freq_range.max_bandwidth_khz = MHZ_TO_KHZ(bw), \
439b219cee1SLuis R. Rodriguez 	.power_rule.max_antenna_gain = DBI_TO_MBI(gain), \
440b219cee1SLuis R. Rodriguez 	.power_rule.max_eirp = DBM_TO_MBM(eirp), \
441b2e1b302SLuis R. Rodriguez 	.flags = reg_flags, \
442b2e1b302SLuis R. Rodriguez 	}
443b2e1b302SLuis R. Rodriguez 
44493da9cc1Scolin@cozybit.com struct mesh_config {
44593da9cc1Scolin@cozybit.com 	/* Timeouts in ms */
44693da9cc1Scolin@cozybit.com 	/* Mesh plink management parameters */
44793da9cc1Scolin@cozybit.com 	u16 dot11MeshRetryTimeout;
44893da9cc1Scolin@cozybit.com 	u16 dot11MeshConfirmTimeout;
44993da9cc1Scolin@cozybit.com 	u16 dot11MeshHoldingTimeout;
45093da9cc1Scolin@cozybit.com 	u16 dot11MeshMaxPeerLinks;
45193da9cc1Scolin@cozybit.com 	u8  dot11MeshMaxRetries;
45293da9cc1Scolin@cozybit.com 	u8  dot11MeshTTL;
45393da9cc1Scolin@cozybit.com 	bool auto_open_plinks;
45493da9cc1Scolin@cozybit.com 	/* HWMP parameters */
45593da9cc1Scolin@cozybit.com 	u8  dot11MeshHWMPmaxPREQretries;
45693da9cc1Scolin@cozybit.com 	u32 path_refresh_time;
45793da9cc1Scolin@cozybit.com 	u16 min_discovery_timeout;
45893da9cc1Scolin@cozybit.com 	u32 dot11MeshHWMPactivePathTimeout;
45993da9cc1Scolin@cozybit.com 	u16 dot11MeshHWMPpreqMinInterval;
46093da9cc1Scolin@cozybit.com 	u16 dot11MeshHWMPnetDiameterTraversalTime;
46193da9cc1Scolin@cozybit.com };
46293da9cc1Scolin@cozybit.com 
46331888487SJouni Malinen /**
46431888487SJouni Malinen  * struct ieee80211_txq_params - TX queue parameters
46531888487SJouni Malinen  * @queue: TX queue identifier (NL80211_TXQ_Q_*)
46631888487SJouni Malinen  * @txop: Maximum burst time in units of 32 usecs, 0 meaning disabled
46731888487SJouni Malinen  * @cwmin: Minimum contention window [a value of the form 2^n-1 in the range
46831888487SJouni Malinen  *	1..32767]
46931888487SJouni Malinen  * @cwmax: Maximum contention window [a value of the form 2^n-1 in the range
47031888487SJouni Malinen  *	1..32767]
47131888487SJouni Malinen  * @aifs: Arbitration interframe space [0..255]
47231888487SJouni Malinen  */
47331888487SJouni Malinen struct ieee80211_txq_params {
47431888487SJouni Malinen 	enum nl80211_txq_q queue;
47531888487SJouni Malinen 	u16 txop;
47631888487SJouni Malinen 	u16 cwmin;
47731888487SJouni Malinen 	u16 cwmax;
47831888487SJouni Malinen 	u8 aifs;
47931888487SJouni Malinen };
48031888487SJouni Malinen 
4819aed3cc1SJouni Malinen /**
4829aed3cc1SJouni Malinen  * struct mgmt_extra_ie_params - Extra management frame IE parameters
4839aed3cc1SJouni Malinen  *
4849aed3cc1SJouni Malinen  * Used to add extra IE(s) into management frames. If the driver cannot add the
4859aed3cc1SJouni Malinen  * requested data into all management frames of the specified subtype that are
4869aed3cc1SJouni Malinen  * generated in kernel or firmware/hardware, it must reject the configuration
4879aed3cc1SJouni Malinen  * call. The IE data buffer is added to the end of the specified management
4889aed3cc1SJouni Malinen  * frame body after all other IEs. This addition is not applied to frames that
4899aed3cc1SJouni Malinen  * are injected through a monitor interface.
4909aed3cc1SJouni Malinen  *
4919aed3cc1SJouni Malinen  * @subtype: Management frame subtype
4929aed3cc1SJouni Malinen  * @ies: IE data buffer or %NULL to remove previous data
4939aed3cc1SJouni Malinen  * @ies_len: Length of @ies in octets
4949aed3cc1SJouni Malinen  */
4959aed3cc1SJouni Malinen struct mgmt_extra_ie_params {
4969aed3cc1SJouni Malinen 	u8 subtype;
4979aed3cc1SJouni Malinen 	u8 *ies;
4989aed3cc1SJouni Malinen 	int ies_len;
4999aed3cc1SJouni Malinen };
5009aed3cc1SJouni Malinen 
501704232c2SJohannes Berg /* from net/wireless.h */
502704232c2SJohannes Berg struct wiphy;
503704232c2SJohannes Berg 
50472bdcf34SJouni Malinen /* from net/ieee80211.h */
50572bdcf34SJouni Malinen struct ieee80211_channel;
50672bdcf34SJouni Malinen 
507704232c2SJohannes Berg /**
508704232c2SJohannes Berg  * struct cfg80211_ops - backend description for wireless configuration
509704232c2SJohannes Berg  *
510704232c2SJohannes Berg  * This struct is registered by fullmac card drivers and/or wireless stacks
511704232c2SJohannes Berg  * in order to handle configuration requests on their interfaces.
512704232c2SJohannes Berg  *
513704232c2SJohannes Berg  * All callbacks except where otherwise noted should return 0
514704232c2SJohannes Berg  * on success or a negative error code.
515704232c2SJohannes Berg  *
51643fb45cbSJohannes Berg  * All operations are currently invoked under rtnl for consistency with the
51743fb45cbSJohannes Berg  * wireless extensions but this is subject to reevaluation as soon as this
51843fb45cbSJohannes Berg  * code is used more widely and we have a first user without wext.
51943fb45cbSJohannes Berg  *
5200378b3f1SJohannes Berg  * @suspend: wiphy device needs to be suspended
5210378b3f1SJohannes Berg  * @resume: wiphy device needs to be resumed
5220378b3f1SJohannes Berg  *
52360719ffdSJohannes Berg  * @add_virtual_intf: create a new virtual interface with the given name,
52460719ffdSJohannes Berg  *	must set the struct wireless_dev's iftype.
525704232c2SJohannes Berg  *
526704232c2SJohannes Berg  * @del_virtual_intf: remove the virtual interface determined by ifindex.
52755682965SJohannes Berg  *
52860719ffdSJohannes Berg  * @change_virtual_intf: change type/configuration of virtual interface,
52960719ffdSJohannes Berg  *	keep the struct wireless_dev's iftype updated.
53055682965SJohannes Berg  *
53141ade00fSJohannes Berg  * @add_key: add a key with the given parameters. @mac_addr will be %NULL
53241ade00fSJohannes Berg  *	when adding a group key.
53341ade00fSJohannes Berg  *
53441ade00fSJohannes Berg  * @get_key: get information about the key with the given parameters.
53541ade00fSJohannes Berg  *	@mac_addr will be %NULL when requesting information for a group
53641ade00fSJohannes Berg  *	key. All pointers given to the @callback function need not be valid
53741ade00fSJohannes Berg  *	after it returns.
53841ade00fSJohannes Berg  *
53941ade00fSJohannes Berg  * @del_key: remove a key given the @mac_addr (%NULL for a group key)
54041ade00fSJohannes Berg  *	and @key_index
54141ade00fSJohannes Berg  *
54241ade00fSJohannes Berg  * @set_default_key: set the default key on an interface
543ed1b6cc7SJohannes Berg  *
5443cfcf6acSJouni Malinen  * @set_default_mgmt_key: set the default management frame key on an interface
5453cfcf6acSJouni Malinen  *
546ed1b6cc7SJohannes Berg  * @add_beacon: Add a beacon with given parameters, @head, @interval
547ed1b6cc7SJohannes Berg  *	and @dtim_period will be valid, @tail is optional.
548ed1b6cc7SJohannes Berg  * @set_beacon: Change the beacon parameters for an access point mode
549ed1b6cc7SJohannes Berg  *	interface. This should reject the call when no beacon has been
550ed1b6cc7SJohannes Berg  *	configured.
551ed1b6cc7SJohannes Berg  * @del_beacon: Remove beacon configuration and stop sending the beacon.
5525727ef1bSJohannes Berg  *
5535727ef1bSJohannes Berg  * @add_station: Add a new station.
5545727ef1bSJohannes Berg  *
5555727ef1bSJohannes Berg  * @del_station: Remove a station; @mac may be NULL to remove all stations.
5565727ef1bSJohannes Berg  *
5575727ef1bSJohannes Berg  * @change_station: Modify a given station.
5582ec600d6SLuis Carlos Cobo  *
55993da9cc1Scolin@cozybit.com  * @get_mesh_params: Put the current mesh parameters into *params
56093da9cc1Scolin@cozybit.com  *
56193da9cc1Scolin@cozybit.com  * @set_mesh_params: Set mesh parameters.
56293da9cc1Scolin@cozybit.com  *	The mask is a bitfield which tells us which parameters to
56393da9cc1Scolin@cozybit.com  *	set, and which to leave alone.
56493da9cc1Scolin@cozybit.com  *
5652ec600d6SLuis Carlos Cobo  * @set_mesh_cfg: set mesh parameters (by now, just mesh id)
5669f1ba906SJouni Malinen  *
5679f1ba906SJouni Malinen  * @change_bss: Modify parameters for a given BSS.
56831888487SJouni Malinen  *
56931888487SJouni Malinen  * @set_txq_params: Set TX queue parameters
57072bdcf34SJouni Malinen  *
57172bdcf34SJouni Malinen  * @set_channel: Set channel
5729aed3cc1SJouni Malinen  *
5739aed3cc1SJouni Malinen  * @set_mgmt_extra_ie: Set extra IE data for management frames
574704232c2SJohannes Berg  */
575704232c2SJohannes Berg struct cfg80211_ops {
5760378b3f1SJohannes Berg 	int	(*suspend)(struct wiphy *wiphy);
5770378b3f1SJohannes Berg 	int	(*resume)(struct wiphy *wiphy);
5780378b3f1SJohannes Berg 
579704232c2SJohannes Berg 	int	(*add_virtual_intf)(struct wiphy *wiphy, char *name,
5802ec600d6SLuis Carlos Cobo 				    enum nl80211_iftype type, u32 *flags,
5812ec600d6SLuis Carlos Cobo 				    struct vif_params *params);
582704232c2SJohannes Berg 	int	(*del_virtual_intf)(struct wiphy *wiphy, int ifindex);
58355682965SJohannes Berg 	int	(*change_virtual_intf)(struct wiphy *wiphy, int ifindex,
5842ec600d6SLuis Carlos Cobo 				       enum nl80211_iftype type, u32 *flags,
5852ec600d6SLuis Carlos Cobo 				       struct vif_params *params);
58641ade00fSJohannes Berg 
58741ade00fSJohannes Berg 	int	(*add_key)(struct wiphy *wiphy, struct net_device *netdev,
58841ade00fSJohannes Berg 			   u8 key_index, u8 *mac_addr,
58941ade00fSJohannes Berg 			   struct key_params *params);
59041ade00fSJohannes Berg 	int	(*get_key)(struct wiphy *wiphy, struct net_device *netdev,
59141ade00fSJohannes Berg 			   u8 key_index, u8 *mac_addr, void *cookie,
59241ade00fSJohannes Berg 			   void (*callback)(void *cookie, struct key_params*));
59341ade00fSJohannes Berg 	int	(*del_key)(struct wiphy *wiphy, struct net_device *netdev,
59441ade00fSJohannes Berg 			   u8 key_index, u8 *mac_addr);
59541ade00fSJohannes Berg 	int	(*set_default_key)(struct wiphy *wiphy,
59641ade00fSJohannes Berg 				   struct net_device *netdev,
59741ade00fSJohannes Berg 				   u8 key_index);
5983cfcf6acSJouni Malinen 	int	(*set_default_mgmt_key)(struct wiphy *wiphy,
5993cfcf6acSJouni Malinen 					struct net_device *netdev,
6003cfcf6acSJouni Malinen 					u8 key_index);
601ed1b6cc7SJohannes Berg 
602ed1b6cc7SJohannes Berg 	int	(*add_beacon)(struct wiphy *wiphy, struct net_device *dev,
603ed1b6cc7SJohannes Berg 			      struct beacon_parameters *info);
604ed1b6cc7SJohannes Berg 	int	(*set_beacon)(struct wiphy *wiphy, struct net_device *dev,
605ed1b6cc7SJohannes Berg 			      struct beacon_parameters *info);
606ed1b6cc7SJohannes Berg 	int	(*del_beacon)(struct wiphy *wiphy, struct net_device *dev);
6075727ef1bSJohannes Berg 
6085727ef1bSJohannes Berg 
6095727ef1bSJohannes Berg 	int	(*add_station)(struct wiphy *wiphy, struct net_device *dev,
6105727ef1bSJohannes Berg 			       u8 *mac, struct station_parameters *params);
6115727ef1bSJohannes Berg 	int	(*del_station)(struct wiphy *wiphy, struct net_device *dev,
6125727ef1bSJohannes Berg 			       u8 *mac);
6135727ef1bSJohannes Berg 	int	(*change_station)(struct wiphy *wiphy, struct net_device *dev,
6145727ef1bSJohannes Berg 				  u8 *mac, struct station_parameters *params);
615fd5b74dcSJohannes Berg 	int	(*get_station)(struct wiphy *wiphy, struct net_device *dev,
6162ec600d6SLuis Carlos Cobo 			       u8 *mac, struct station_info *sinfo);
6172ec600d6SLuis Carlos Cobo 	int	(*dump_station)(struct wiphy *wiphy, struct net_device *dev,
6182ec600d6SLuis Carlos Cobo 			       int idx, u8 *mac, struct station_info *sinfo);
6192ec600d6SLuis Carlos Cobo 
6202ec600d6SLuis Carlos Cobo 	int	(*add_mpath)(struct wiphy *wiphy, struct net_device *dev,
6212ec600d6SLuis Carlos Cobo 			       u8 *dst, u8 *next_hop);
6222ec600d6SLuis Carlos Cobo 	int	(*del_mpath)(struct wiphy *wiphy, struct net_device *dev,
6232ec600d6SLuis Carlos Cobo 			       u8 *dst);
6242ec600d6SLuis Carlos Cobo 	int	(*change_mpath)(struct wiphy *wiphy, struct net_device *dev,
6252ec600d6SLuis Carlos Cobo 				  u8 *dst, u8 *next_hop);
6262ec600d6SLuis Carlos Cobo 	int	(*get_mpath)(struct wiphy *wiphy, struct net_device *dev,
6272ec600d6SLuis Carlos Cobo 			       u8 *dst, u8 *next_hop,
6282ec600d6SLuis Carlos Cobo 			       struct mpath_info *pinfo);
6292ec600d6SLuis Carlos Cobo 	int	(*dump_mpath)(struct wiphy *wiphy, struct net_device *dev,
6302ec600d6SLuis Carlos Cobo 			       int idx, u8 *dst, u8 *next_hop,
6312ec600d6SLuis Carlos Cobo 			       struct mpath_info *pinfo);
63293da9cc1Scolin@cozybit.com 	int	(*get_mesh_params)(struct wiphy *wiphy,
63393da9cc1Scolin@cozybit.com 				struct net_device *dev,
63493da9cc1Scolin@cozybit.com 				struct mesh_config *conf);
63593da9cc1Scolin@cozybit.com 	int	(*set_mesh_params)(struct wiphy *wiphy,
63693da9cc1Scolin@cozybit.com 				struct net_device *dev,
63793da9cc1Scolin@cozybit.com 				const struct mesh_config *nconf, u32 mask);
6389f1ba906SJouni Malinen 	int	(*change_bss)(struct wiphy *wiphy, struct net_device *dev,
6399f1ba906SJouni Malinen 			      struct bss_parameters *params);
64031888487SJouni Malinen 
64131888487SJouni Malinen 	int	(*set_txq_params)(struct wiphy *wiphy,
64231888487SJouni Malinen 				  struct ieee80211_txq_params *params);
64372bdcf34SJouni Malinen 
64472bdcf34SJouni Malinen 	int	(*set_channel)(struct wiphy *wiphy,
64572bdcf34SJouni Malinen 			       struct ieee80211_channel *chan,
646094d05dcSSujith 			       enum nl80211_channel_type channel_type);
6479aed3cc1SJouni Malinen 
6489aed3cc1SJouni Malinen 	int	(*set_mgmt_extra_ie)(struct wiphy *wiphy,
6499aed3cc1SJouni Malinen 				     struct net_device *dev,
6509aed3cc1SJouni Malinen 				     struct mgmt_extra_ie_params *params);
651704232c2SJohannes Berg };
652704232c2SJohannes Berg 
653fee52678SJohannes Berg /* temporary wext handlers */
654fee52678SJohannes Berg int cfg80211_wext_giwname(struct net_device *dev,
655fee52678SJohannes Berg 			  struct iw_request_info *info,
656fee52678SJohannes Berg 			  char *name, char *extra);
657e60c7744SJohannes Berg int cfg80211_wext_siwmode(struct net_device *dev, struct iw_request_info *info,
658e60c7744SJohannes Berg 			  u32 *mode, char *extra);
659e60c7744SJohannes Berg int cfg80211_wext_giwmode(struct net_device *dev, struct iw_request_info *info,
660e60c7744SJohannes Berg 			  u32 *mode, char *extra);
661fee52678SJohannes Berg 
662704232c2SJohannes Berg #endif /* __NET_CFG80211_H */
663