xref: /freebsd/sys/compat/linuxkpi/common/include/net/cfg80211.h (revision b0f73768220e945deebebefc4a2d63ae6a3bfe19)
16b4cac81SBjoern A. Zeeb /*-
26b4cac81SBjoern A. Zeeb  * Copyright (c) 2020-2021 The FreeBSD Foundation
351b461b3SBjoern A. Zeeb  * Copyright (c) 2021-2022 Bjoern A. Zeeb
46b4cac81SBjoern A. Zeeb  *
56b4cac81SBjoern A. Zeeb  * This software was developed by Björn Zeeb under sponsorship from
66b4cac81SBjoern A. Zeeb  * the FreeBSD Foundation.
76b4cac81SBjoern A. Zeeb  *
86b4cac81SBjoern A. Zeeb  * Redistribution and use in source and binary forms, with or without
96b4cac81SBjoern A. Zeeb  * modification, are permitted provided that the following conditions
106b4cac81SBjoern A. Zeeb  * are met:
116b4cac81SBjoern A. Zeeb  * 1. Redistributions of source code must retain the above copyright
126b4cac81SBjoern A. Zeeb  *    notice, this list of conditions and the following disclaimer.
136b4cac81SBjoern A. Zeeb  * 2. Redistributions in binary form must reproduce the above copyright
146b4cac81SBjoern A. Zeeb  *    notice, this list of conditions and the following disclaimer in the
156b4cac81SBjoern A. Zeeb  *    documentation and/or other materials provided with the distribution.
166b4cac81SBjoern A. Zeeb  *
176b4cac81SBjoern A. Zeeb  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
186b4cac81SBjoern A. Zeeb  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
196b4cac81SBjoern A. Zeeb  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
206b4cac81SBjoern A. Zeeb  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
216b4cac81SBjoern A. Zeeb  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
226b4cac81SBjoern A. Zeeb  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
236b4cac81SBjoern A. Zeeb  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
246b4cac81SBjoern A. Zeeb  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
256b4cac81SBjoern A. Zeeb  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
266b4cac81SBjoern A. Zeeb  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
276b4cac81SBjoern A. Zeeb  * SUCH DAMAGE.
286b4cac81SBjoern A. Zeeb  *
296b4cac81SBjoern A. Zeeb  * $FreeBSD$
306b4cac81SBjoern A. Zeeb  */
316b4cac81SBjoern A. Zeeb 
326b4cac81SBjoern A. Zeeb #ifndef	_LINUXKPI_NET_CFG80211_H
336b4cac81SBjoern A. Zeeb #define	_LINUXKPI_NET_CFG80211_H
346b4cac81SBjoern A. Zeeb 
356b4cac81SBjoern A. Zeeb #include <linux/types.h>
366b4cac81SBjoern A. Zeeb #include <linux/nl80211.h>
376b4cac81SBjoern A. Zeeb #include <linux/ieee80211.h>
386b4cac81SBjoern A. Zeeb #include <linux/if_ether.h>
392e183d99SBjoern A. Zeeb #include <linux/ethtool.h>
406b4cac81SBjoern A. Zeeb #include <linux/device.h>
416b4cac81SBjoern A. Zeeb #include <linux/netdevice.h>
426b4cac81SBjoern A. Zeeb #include <linux/random.h>
436b4cac81SBjoern A. Zeeb #include <linux/skbuff.h>
442e183d99SBjoern A. Zeeb #include <net/regulatory.h>
456b4cac81SBjoern A. Zeeb 
466b4cac81SBjoern A. Zeeb /* linux_80211.c */
479d9ba2b7SBjoern A. Zeeb extern int linuxkpi_debug_80211;
486b4cac81SBjoern A. Zeeb #ifndef	D80211_TODO
496b4cac81SBjoern A. Zeeb #define	D80211_TODO		0x1
506b4cac81SBjoern A. Zeeb #endif
516b4cac81SBjoern A. Zeeb #ifndef	D80211_IMPROVE
526b4cac81SBjoern A. Zeeb #define	D80211_IMPROVE		0x2
536b4cac81SBjoern A. Zeeb #endif
549d9ba2b7SBjoern A. Zeeb #define	TODO()		if (linuxkpi_debug_80211 & D80211_TODO)		\
556b4cac81SBjoern A. Zeeb     printf("%s:%d: XXX LKPI80211 TODO\n", __func__, __LINE__)
569d9ba2b7SBjoern A. Zeeb #define	IMPROVE(...)	if (linuxkpi_debug_80211 & D80211_IMPROVE)	\
576b4cac81SBjoern A. Zeeb     printf("%s:%d: XXX LKPI80211 IMPROVE\n", __func__, __LINE__)
586b4cac81SBjoern A. Zeeb 
59d875aa15SBjoern A. Zeeb enum rfkill_hard_block_reasons {
60d875aa15SBjoern A. Zeeb 	RFKILL_HARD_BLOCK_NOT_OWNER		= BIT(0),
61d875aa15SBjoern A. Zeeb };
62d875aa15SBjoern A. Zeeb 
636b4cac81SBjoern A. Zeeb #define	WIPHY_PARAM_FRAG_THRESHOLD			__LINE__ /* TODO FIXME brcmfmac */
646b4cac81SBjoern A. Zeeb #define	WIPHY_PARAM_RETRY_LONG				__LINE__ /* TODO FIXME brcmfmac */
656b4cac81SBjoern A. Zeeb #define	WIPHY_PARAM_RETRY_SHORT				__LINE__ /* TODO FIXME brcmfmac */
666b4cac81SBjoern A. Zeeb #define	WIPHY_PARAM_RTS_THRESHOLD			__LINE__ /* TODO FIXME brcmfmac */
676b4cac81SBjoern A. Zeeb 
686b4cac81SBjoern A. Zeeb #define	CFG80211_SIGNAL_TYPE_MBM			__LINE__ /* TODO FIXME brcmfmac */
696b4cac81SBjoern A. Zeeb 
706b4cac81SBjoern A. Zeeb #define	UPDATE_ASSOC_IES	1
716b4cac81SBjoern A. Zeeb 
726b4cac81SBjoern A. Zeeb #define	IEEE80211_MAX_CHAINS	4		/* net80211: IEEE80211_MAX_CHAINS copied */
736b4cac81SBjoern A. Zeeb 
746b4cac81SBjoern A. Zeeb enum cfg80211_rate_info_flags {
756b4cac81SBjoern A. Zeeb 	RATE_INFO_FLAGS_SHORT_GI	= BIT(0),
766b4cac81SBjoern A. Zeeb 	RATE_INFO_FLAGS_MCS		= BIT(1),
776b4cac81SBjoern A. Zeeb 	RATE_INFO_FLAGS_VHT_MCS		= BIT(2),
786b4cac81SBjoern A. Zeeb 	RATE_INFO_FLAGS_HE_MCS		= BIT(3),
796b4cac81SBjoern A. Zeeb };
806b4cac81SBjoern A. Zeeb 
816b4cac81SBjoern A. Zeeb extern const uint8_t rfc1042_header[6];
82*b0f73768SBjoern A. Zeeb extern const uint8_t bridge_tunnel_header[6];
836b4cac81SBjoern A. Zeeb 
842e183d99SBjoern A. Zeeb enum ieee80211_privacy {
852e183d99SBjoern A. Zeeb 	IEEE80211_PRIVACY_ANY,
862e183d99SBjoern A. Zeeb };
872e183d99SBjoern A. Zeeb 
882e183d99SBjoern A. Zeeb enum ieee80211_bss_type {
892e183d99SBjoern A. Zeeb 	IEEE80211_BSS_TYPE_ANY,
902e183d99SBjoern A. Zeeb };
912e183d99SBjoern A. Zeeb 
922e183d99SBjoern A. Zeeb enum cfg80211_bss_frame_type {
936b4cac81SBjoern A. Zeeb 	CFG80211_BSS_FTYPE_UNKNOWN,
942e183d99SBjoern A. Zeeb 	CFG80211_BSS_FTYPE_BEACON,
952e183d99SBjoern A. Zeeb 	CFG80211_BSS_FTYPE_PRESP,
966b4cac81SBjoern A. Zeeb };
976b4cac81SBjoern A. Zeeb 
986b4cac81SBjoern A. Zeeb enum ieee80211_channel_flags {
99d7ce88aaSBjoern A. Zeeb 	IEEE80211_CHAN_DISABLED			= BIT(0),
100d7ce88aaSBjoern A. Zeeb 	IEEE80211_CHAN_INDOOR_ONLY		= BIT(1),
101d7ce88aaSBjoern A. Zeeb 	IEEE80211_CHAN_IR_CONCURRENT		= BIT(2),
102d7ce88aaSBjoern A. Zeeb 	IEEE80211_CHAN_RADAR			= BIT(3),
103d7ce88aaSBjoern A. Zeeb 	IEEE80211_CHAN_NO_IR			= BIT(4),
104d7ce88aaSBjoern A. Zeeb 	IEEE80211_CHAN_NO_HT40MINUS		= BIT(5),
105d7ce88aaSBjoern A. Zeeb 	IEEE80211_CHAN_NO_HT40PLUS		= BIT(6),
106d7ce88aaSBjoern A. Zeeb 	IEEE80211_CHAN_NO_80MHZ			= BIT(7),
107d7ce88aaSBjoern A. Zeeb 	IEEE80211_CHAN_NO_160MHZ		= BIT(8),
1082e183d99SBjoern A. Zeeb 	IEEE80211_CHAN_NO_OFDM			= BIT(9),
1096b4cac81SBjoern A. Zeeb };
1106b4cac81SBjoern A. Zeeb #define	IEEE80211_CHAN_NO_HT40	(IEEE80211_CHAN_NO_HT40MINUS|IEEE80211_CHAN_NO_HT40PLUS)
1116b4cac81SBjoern A. Zeeb 
1126b4cac81SBjoern A. Zeeb struct ieee80211_txrx_stypes {
1136b4cac81SBjoern A. Zeeb 	uint16_t	tx;
1146b4cac81SBjoern A. Zeeb 	uint16_t	rx;
1156b4cac81SBjoern A. Zeeb };
1166b4cac81SBjoern A. Zeeb 
1176b4cac81SBjoern A. Zeeb /* XXX net80211 has an ieee80211_channel as well. */
1186b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel {
1196b4cac81SBjoern A. Zeeb 	/* TODO FIXME */
1206b4cac81SBjoern A. Zeeb 	uint32_t				hw_value;	/* ic_ieee */
1216b4cac81SBjoern A. Zeeb 	uint32_t				center_freq;	/* ic_freq */
1226b4cac81SBjoern A. Zeeb 	enum ieee80211_channel_flags		flags;		/* ic_flags */
1236b4cac81SBjoern A. Zeeb 	enum nl80211_band			band;
1246b4cac81SBjoern A. Zeeb 	int8_t					max_power;	/* ic_maxpower */
1256b4cac81SBjoern A. Zeeb 	bool					beacon_found;
1266b4cac81SBjoern A. Zeeb 	int     max_antenna_gain, max_reg_power;
1276b4cac81SBjoern A. Zeeb 	int     orig_flags;
1282e183d99SBjoern A. Zeeb 	int	dfs_cac_ms, dfs_state;
129*b0f73768SBjoern A. Zeeb 	int	orig_mpwr;
1306b4cac81SBjoern A. Zeeb };
1316b4cac81SBjoern A. Zeeb 
1326b4cac81SBjoern A. Zeeb enum ieee80211_vht_mcs_support {
1336b4cac81SBjoern A. Zeeb 	LKPI_IEEE80211_VHT_MCS_SUPPORT_0_7,
1346b4cac81SBjoern A. Zeeb 	LKPI_IEEE80211_VHT_MCS_SUPPORT_0_8,
1356b4cac81SBjoern A. Zeeb 	LKPI_IEEE80211_VHT_MCS_SUPPORT_0_9,
1366b4cac81SBjoern A. Zeeb };
1376b4cac81SBjoern A. Zeeb 
1386b4cac81SBjoern A. Zeeb struct cfg80211_bitrate_mask {
1396b4cac81SBjoern A. Zeeb 	/* TODO FIXME */
1406b4cac81SBjoern A. Zeeb 	/* This is so weird but nothing else works out...*/
1416b4cac81SBjoern A. Zeeb 	struct {
1426b4cac81SBjoern A. Zeeb 		uint64_t			legacy;		/* XXX? */
1432e183d99SBjoern A. Zeeb 		uint8_t				ht_mcs[IEEE80211_HT_MCS_MASK_LEN];
1446b4cac81SBjoern A. Zeeb 		uint16_t			vht_mcs[16];	/* XXX? */
14551b461b3SBjoern A. Zeeb 		uint16_t			he_mcs[16];	/* XXX? */
1462e183d99SBjoern A. Zeeb 		enum nl80211_txrate_gi		gi;
147*b0f73768SBjoern A. Zeeb 		enum nl80211_he_gi		he_gi;
148*b0f73768SBjoern A. Zeeb 		uint8_t				he_ltf;
1496b4cac81SBjoern A. Zeeb 	} control[NUM_NL80211_BANDS];
1506b4cac81SBjoern A. Zeeb };
1516b4cac81SBjoern A. Zeeb 
152*b0f73768SBjoern A. Zeeb enum rate_info_bw {
153*b0f73768SBjoern A. Zeeb 	RATE_INFO_BW_20		= 0,
154*b0f73768SBjoern A. Zeeb 	RATE_INFO_BW_5,
155*b0f73768SBjoern A. Zeeb 	RATE_INFO_BW_10,
156*b0f73768SBjoern A. Zeeb 	RATE_INFO_BW_40,
157*b0f73768SBjoern A. Zeeb 	RATE_INFO_BW_80,
158*b0f73768SBjoern A. Zeeb 	RATE_INFO_BW_160,
159*b0f73768SBjoern A. Zeeb 	RATE_INFO_BW_HE_RU,
160*b0f73768SBjoern A. Zeeb };
161*b0f73768SBjoern A. Zeeb 
1626b4cac81SBjoern A. Zeeb struct rate_info {
1636b4cac81SBjoern A. Zeeb 	/* TODO FIXME */
1646b4cac81SBjoern A. Zeeb 	int	bw, flags, he_dcm, he_gi, he_ru_alloc, legacy, mcs, nss;
1656b4cac81SBjoern A. Zeeb };
1666b4cac81SBjoern A. Zeeb 
1676b4cac81SBjoern A. Zeeb struct ieee80211_rate {
1686b4cac81SBjoern A. Zeeb 	/* TODO FIXME */
1696b4cac81SBjoern A. Zeeb 	uint32_t		bitrate;
1706b4cac81SBjoern A. Zeeb 	uint32_t		hw_value;
1716b4cac81SBjoern A. Zeeb 	uint32_t		hw_value_short;
1726b4cac81SBjoern A. Zeeb 	uint32_t		flags;
1736b4cac81SBjoern A. Zeeb };
1746b4cac81SBjoern A. Zeeb 
1756b4cac81SBjoern A. Zeeb struct ieee80211_sta_ht_cap {
1766b4cac81SBjoern A. Zeeb 		/* TODO FIXME */
1776b4cac81SBjoern A. Zeeb 	int	ampdu_density, ampdu_factor;
1786b4cac81SBjoern A. Zeeb 	bool					ht_supported;
1796b4cac81SBjoern A. Zeeb 	uint16_t				cap;
180*b0f73768SBjoern A. Zeeb 	struct ieee80211_mcs_info		mcs;
1816b4cac81SBjoern A. Zeeb };
1826b4cac81SBjoern A. Zeeb 
1836b4cac81SBjoern A. Zeeb /* XXX net80211 calls these IEEE80211_VHTCAP_* */
1846b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_3895	0x00000000	/* IEEE80211_VHTCAP_MAX_MPDU_LENGTH_3895 */
1856b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_7991	0x00000001	/* IEEE80211_VHTCAP_MAX_MPDU_LENGTH_7991 */
1866b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_11454	0x00000002	/* IEEE80211_VHTCAP_MAX_MPDU_LENGTH_11454 */
1876b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_MAX_MPDU_MASK		0x00000003	/* IEEE80211_VHTCAP_MAX_MPDU_MASK */
1886b4cac81SBjoern A. Zeeb 
1896b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ		(IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_160MHZ << IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_MASK_S)
1902e183d99SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ	(IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_160_80P80MHZ << IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_MASK_S)
1912e183d99SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_MASK	0x0000000c	/* IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_MASK */
1926b4cac81SBjoern A. Zeeb 
1936b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_RXLDPC		0x00000010	/* IEEE80211_VHTCAP_RXLDPC */
1946b4cac81SBjoern A. Zeeb 
1956b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_SHORT_GI_80		0x00000020	/* IEEE80211_VHTCAP_SHORT_GI_80 */
1966b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_SHORT_GI_160		0x00000040	/* IEEE80211_VHTCAP_SHORT_GI_160 */
1976b4cac81SBjoern A. Zeeb 
1986b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_TXSTBC		0x00000080	/* IEEE80211_VHTCAP_TXSTBC */
1996b4cac81SBjoern A. Zeeb 
2006b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_RXSTBC_1		0x00000100	/* IEEE80211_VHTCAP_RXSTBC_1 */
2016b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_RXSTBC_MASK		0x00000700	/* IEEE80211_VHTCAP_RXSTBC_MASK */
2026b4cac81SBjoern A. Zeeb 
2036b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE	0x00000800	/* IEEE80211_VHTCAP_SU_BEAMFORMER_CAPABLE */
2046b4cac81SBjoern A. Zeeb 
2056b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_SU_BEAMFORMEE_CAPABLE	0x00001000	/* IEEE80211_VHTCAP_SU_BEAMFORMEE_CAPABLE */
2066b4cac81SBjoern A. Zeeb 
2076b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_MU_BEAMFORMER_CAPABLE	0x00080000	/* IEEE80211_VHTCAP_MU_BEAMFORMER_CAPABLE */
2086b4cac81SBjoern A. Zeeb 
2096b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_MU_BEAMFORMEE_CAPABLE	0x00100000	/* IEEE80211_VHTCAP_MU_BEAMFORMEE_CAPABLE */
2106b4cac81SBjoern A. Zeeb 
2116b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_BEAMFORMEE_STS_SHIFT		13	/* IEEE80211_VHTCAP_BEAMFORMEE_STS_SHIFT */
2122e183d99SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_BEAMFORMEE_STS_MASK		(7 << IEEE80211_VHT_CAP_BEAMFORMEE_STS_SHIFT)	/* IEEE80211_VHTCAP_BEAMFORMEE_STS_MASK */
2136b4cac81SBjoern A. Zeeb 
2146b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_HTC_VHT		0x00400000	/* IEEE80211_VHTCAP_HTC_VHT */
2156b4cac81SBjoern A. Zeeb 
2166b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_RX_ANTENNA_PATTERN	0x10000000	/* IEEE80211_VHTCAP_RX_ANTENNA_PATTERN */
2176b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_TX_ANTENNA_PATTERN	0x20000000	/* IEEE80211_VHTCAP_TX_ANTENNA_PATTERN */
2186b4cac81SBjoern A. Zeeb 
2196b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_VHT_LINK_ADAPTATION_VHT_MRQ_MFB	0x0c000000	/* IEEE80211_VHTCAP_VHT_LINK_ADAPTATION_VHT_MRQ_MFB */
2206b4cac81SBjoern A. Zeeb 
2216b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_SOUNDING_DIMENSIONS_SHIFT	16	/* IEEE80211_VHTCAP_SOUNDING_DIMENSIONS_SHIFT */
2226b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_SOUNDING_DIMENSIONS_MASK		\
2236b4cac81SBjoern A. Zeeb 	(7 << IEEE80211_VHTCAP_SOUNDING_DIMENSIONS_SHIFT)	/* IEEE80211_VHTCAP_SOUNDING_DIMENSIONS_MASK */
2246b4cac81SBjoern A. Zeeb 
2256b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_SHIFT	23	/* IEEE80211_VHTCAP_MAX_A_MPDU_LENGTH_EXPONENT_SHIFT */
2266b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MASK	\
2276b4cac81SBjoern A. Zeeb 	(7 << IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_SHIFT)	/* IEEE80211_VHTCAP_MAX_A_MPDU_LENGTH_EXPONENT_MASK */
2286b4cac81SBjoern A. Zeeb 
2292e183d99SBjoern A. Zeeb 
2306b4cac81SBjoern A. Zeeb struct ieee80211_sta_vht_cap {
2316b4cac81SBjoern A. Zeeb 		/* TODO FIXME */
2326b4cac81SBjoern A. Zeeb 	bool			vht_supported;
2336b4cac81SBjoern A. Zeeb 	uint32_t		cap;
2346b4cac81SBjoern A. Zeeb 	struct vht_mcs		vht_mcs;
2356b4cac81SBjoern A. Zeeb };
2366b4cac81SBjoern A. Zeeb 
237*b0f73768SBjoern A. Zeeb enum ieee80211_vht_opmode {
238*b0f73768SBjoern A. Zeeb 	IEEE80211_OPMODE_NOTIF_RX_NSS_SHIFT	= 4,
239*b0f73768SBjoern A. Zeeb };
240*b0f73768SBjoern A. Zeeb 
2416b4cac81SBjoern A. Zeeb struct cfg80211_connect_resp_params {
2426b4cac81SBjoern A. Zeeb 		/* XXX TODO */
2436b4cac81SBjoern A. Zeeb 	uint8_t				*bssid;
2446b4cac81SBjoern A. Zeeb 	const uint8_t			*req_ie;
2456b4cac81SBjoern A. Zeeb 	const uint8_t			*resp_ie;
2466b4cac81SBjoern A. Zeeb 	uint32_t			req_ie_len;
2476b4cac81SBjoern A. Zeeb 	uint32_t			resp_ie_len;
2486b4cac81SBjoern A. Zeeb 	int	status;
2496b4cac81SBjoern A. Zeeb };
2506b4cac81SBjoern A. Zeeb 
2516b4cac81SBjoern A. Zeeb struct cfg80211_inform_bss {
2526b4cac81SBjoern A. Zeeb 		/* XXX TODO */
2536b4cac81SBjoern A. Zeeb 	int     boottime_ns, scan_width, signal;
2546b4cac81SBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel	*chan;
2556b4cac81SBjoern A. Zeeb };
2566b4cac81SBjoern A. Zeeb 
2576b4cac81SBjoern A. Zeeb struct cfg80211_roam_info {
2586b4cac81SBjoern A. Zeeb 		/* XXX TODO */
2596b4cac81SBjoern A. Zeeb 	uint8_t				*bssid;
2606b4cac81SBjoern A. Zeeb 	const uint8_t			*req_ie;
2616b4cac81SBjoern A. Zeeb 	const uint8_t			*resp_ie;
2626b4cac81SBjoern A. Zeeb 	uint32_t			req_ie_len;
2636b4cac81SBjoern A. Zeeb 	uint32_t			resp_ie_len;
2646b4cac81SBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel	*channel;
2656b4cac81SBjoern A. Zeeb };
2666b4cac81SBjoern A. Zeeb 
2676b4cac81SBjoern A. Zeeb struct cfg80211_bss_ies {
2686b4cac81SBjoern A. Zeeb 		/* XXX TODO, type is best guess. Fix if more info. */
2696b4cac81SBjoern A. Zeeb 	uint8_t				*data;
2706b4cac81SBjoern A. Zeeb 	int				len;
2716b4cac81SBjoern A. Zeeb };
2726b4cac81SBjoern A. Zeeb 
2736b4cac81SBjoern A. Zeeb struct cfg80211_bss {
2746b4cac81SBjoern A. Zeeb 		/* XXX TODO */
2756b4cac81SBjoern A. Zeeb 	struct cfg80211_bss_ies		*ies;
2766b4cac81SBjoern A. Zeeb };
2776b4cac81SBjoern A. Zeeb 
2786b4cac81SBjoern A. Zeeb struct cfg80211_chan_def {
2796b4cac81SBjoern A. Zeeb 		/* XXX TODO */
2806b4cac81SBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel	*chan;
2816b4cac81SBjoern A. Zeeb 	enum nl80211_chan_width		width;
2826b4cac81SBjoern A. Zeeb 	uint32_t			center_freq1;
2836b4cac81SBjoern A. Zeeb 	uint32_t			center_freq2;
2846b4cac81SBjoern A. Zeeb };
2856b4cac81SBjoern A. Zeeb 
2866b4cac81SBjoern A. Zeeb struct cfg80211_ftm_responder_stats {
2876b4cac81SBjoern A. Zeeb 		/* XXX TODO */
2886b4cac81SBjoern A. Zeeb 	int	asap_num, failed_num, filled, non_asap_num, out_of_window_triggers_num, partial_num, reschedule_requests_num, success_num, total_duration_ms, unknown_triggers_num;
2896b4cac81SBjoern A. Zeeb };
2906b4cac81SBjoern A. Zeeb 
2916b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_capabilities {
2926b4cac81SBjoern A. Zeeb 		/* XXX TODO */
2936b4cac81SBjoern A. Zeeb 	int	max_peers, randomize_mac_addr, report_ap_tsf;
2946b4cac81SBjoern A. Zeeb 	struct {
2956b4cac81SBjoern A. Zeeb 		int	 asap, bandwidths, max_bursts_exponent, max_ftms_per_burst, non_asap, non_trigger_based, preambles, request_civicloc, request_lci, supported, trigger_based;
2966b4cac81SBjoern A. Zeeb 	} ftm;
2976b4cac81SBjoern A. Zeeb };
2986b4cac81SBjoern A. Zeeb 
2996b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_ftm_request {
3006b4cac81SBjoern A. Zeeb 		/* XXX TODO */
3016b4cac81SBjoern A. Zeeb 	int     asap, burst_period, ftmr_retries, ftms_per_burst, non_trigger_based, num_bursts_exp, request_civicloc, request_lci, trigger_based;
3026b4cac81SBjoern A. Zeeb 	uint8_t					bss_color;
3036b4cac81SBjoern A. Zeeb 	bool					lmr_feedback;
3046b4cac81SBjoern A. Zeeb };
3056b4cac81SBjoern A. Zeeb 
3066b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_request_peer {
3076b4cac81SBjoern A. Zeeb 		/* XXX TODO */
3086b4cac81SBjoern A. Zeeb 	struct cfg80211_chan_def		chandef;
3096b4cac81SBjoern A. Zeeb 	struct cfg80211_pmsr_ftm_request	ftm;
3106b4cac81SBjoern A. Zeeb 	uint8_t					addr[ETH_ALEN];
3116b4cac81SBjoern A. Zeeb 	int	report_ap_tsf;
3126b4cac81SBjoern A. Zeeb };
3136b4cac81SBjoern A. Zeeb 
3146b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_request {
3156b4cac81SBjoern A. Zeeb 		/* XXX TODO */
3166b4cac81SBjoern A. Zeeb 	int	cookie, n_peers, timeout;
3176b4cac81SBjoern A. Zeeb 	uint8_t					mac_addr[ETH_ALEN], mac_addr_mask[ETH_ALEN];
3186b4cac81SBjoern A. Zeeb 	struct cfg80211_pmsr_request_peer	peers[];
3196b4cac81SBjoern A. Zeeb };
3206b4cac81SBjoern A. Zeeb 
3216b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_ftm_result {
3226b4cac81SBjoern A. Zeeb 		/* XXX TODO */
3236b4cac81SBjoern A. Zeeb 	int	burst_index, busy_retry_time, failure_reason;
3246b4cac81SBjoern A. Zeeb 	int	num_ftmr_successes, rssi_avg, rssi_avg_valid, rssi_spread, rssi_spread_valid, rtt_avg, rtt_avg_valid, rtt_spread, rtt_spread_valid, rtt_variance, rtt_variance_valid;
3256b4cac81SBjoern A. Zeeb 	uint8_t					*lci;
3266b4cac81SBjoern A. Zeeb 	uint8_t					*civicloc;
3276b4cac81SBjoern A. Zeeb 	int					lci_len;
3286b4cac81SBjoern A. Zeeb 	int					civicloc_len;
3296b4cac81SBjoern A. Zeeb };
3306b4cac81SBjoern A. Zeeb 
3316b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_result {
3326b4cac81SBjoern A. Zeeb 		/* XXX TODO */
3336b4cac81SBjoern A. Zeeb 	int	ap_tsf, ap_tsf_valid, final, host_time, status, type;
3346b4cac81SBjoern A. Zeeb 	uint8_t					addr[ETH_ALEN];
3356b4cac81SBjoern A. Zeeb 	struct cfg80211_pmsr_ftm_result		ftm;
3366b4cac81SBjoern A. Zeeb };
3376b4cac81SBjoern A. Zeeb 
33851b461b3SBjoern A. Zeeb struct cfg80211_sar_freq_ranges {
33951b461b3SBjoern A. Zeeb 	uint32_t				start_freq;
34051b461b3SBjoern A. Zeeb 	uint32_t				end_freq;
34151b461b3SBjoern A. Zeeb };
34251b461b3SBjoern A. Zeeb 
34351b461b3SBjoern A. Zeeb struct cfg80211_sar_sub_specs {
34451b461b3SBjoern A. Zeeb 	uint32_t				freq_range_index;
34551b461b3SBjoern A. Zeeb 	int					power;
34651b461b3SBjoern A. Zeeb };
34751b461b3SBjoern A. Zeeb 
34851b461b3SBjoern A. Zeeb struct cfg80211_sar_specs {
34951b461b3SBjoern A. Zeeb 	enum nl80211_sar_type			type;
35051b461b3SBjoern A. Zeeb 	uint32_t				num_sub_specs;
35151b461b3SBjoern A. Zeeb 	struct cfg80211_sar_sub_specs		sub_specs[];
35251b461b3SBjoern A. Zeeb };
35351b461b3SBjoern A. Zeeb 
35451b461b3SBjoern A. Zeeb struct cfg80211_sar_capa {
35551b461b3SBjoern A. Zeeb 	enum nl80211_sar_type			type;
35651b461b3SBjoern A. Zeeb 	uint32_t				num_freq_ranges;
35751b461b3SBjoern A. Zeeb 	const struct cfg80211_sar_freq_ranges	*freq_ranges;
35851b461b3SBjoern A. Zeeb };
35951b461b3SBjoern A. Zeeb 
3606b4cac81SBjoern A. Zeeb struct cfg80211_ssid {
3616b4cac81SBjoern A. Zeeb 	int	ssid_len;
3626b4cac81SBjoern A. Zeeb 	uint8_t	ssid[IEEE80211_MAX_SSID_LEN];
3636b4cac81SBjoern A. Zeeb };
3646b4cac81SBjoern A. Zeeb 
3656b4cac81SBjoern A. Zeeb struct cfg80211_scan_6ghz_params {
3666b4cac81SBjoern A. Zeeb 	/* XXX TODO */
3676b4cac81SBjoern A. Zeeb 	uint8_t				*bssid;
3686b4cac81SBjoern A. Zeeb 	int	channel_idx, psc_no_listen, short_ssid, short_ssid_valid, unsolicited_probe;
3696b4cac81SBjoern A. Zeeb };
3706b4cac81SBjoern A. Zeeb 
3716b4cac81SBjoern A. Zeeb struct cfg80211_match_set {
3726b4cac81SBjoern A. Zeeb 	uint8_t					bssid[ETH_ALEN];
3736b4cac81SBjoern A. Zeeb 	struct cfg80211_ssid	ssid;
3746b4cac81SBjoern A. Zeeb 	int			rssi_thold;
3756b4cac81SBjoern A. Zeeb };
3766b4cac81SBjoern A. Zeeb 
3776b4cac81SBjoern A. Zeeb struct cfg80211_scan_request {
3786b4cac81SBjoern A. Zeeb 		/* XXX TODO */
3796b4cac81SBjoern A. Zeeb 	int	duration, duration_mandatory, flags;
3806b4cac81SBjoern A. Zeeb 	bool					no_cck;
3816b4cac81SBjoern A. Zeeb 	bool					scan_6ghz;
3826b4cac81SBjoern A. Zeeb 	struct wireless_dev			*wdev;
3836b4cac81SBjoern A. Zeeb 	struct wiphy				*wiphy;
3846b4cac81SBjoern A. Zeeb 	int					ie_len;
3856b4cac81SBjoern A. Zeeb 	uint8_t					*ie;
3866b4cac81SBjoern A. Zeeb 	uint8_t					mac_addr[ETH_ALEN], mac_addr_mask[ETH_ALEN];
387*b0f73768SBjoern A. Zeeb 	uint8_t					bssid[ETH_ALEN];
3886b4cac81SBjoern A. Zeeb 	int					n_ssids;
3896b4cac81SBjoern A. Zeeb 	int					n_6ghz_params;
3906b4cac81SBjoern A. Zeeb 	int					n_channels;
3916b4cac81SBjoern A. Zeeb 	struct cfg80211_ssid			*ssids;
3926b4cac81SBjoern A. Zeeb 	struct cfg80211_scan_6ghz_params 	*scan_6ghz_params;
3936b4cac81SBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel	*channels[0];
3946b4cac81SBjoern A. Zeeb };
3956b4cac81SBjoern A. Zeeb 
3966b4cac81SBjoern A. Zeeb struct cfg80211_sched_scan_plan {
3976b4cac81SBjoern A. Zeeb 		/* XXX TODO */
3986b4cac81SBjoern A. Zeeb 	int	interval, iterations;
3996b4cac81SBjoern A. Zeeb };
4006b4cac81SBjoern A. Zeeb 
4016b4cac81SBjoern A. Zeeb struct cfg80211_sched_scan_request {
4026b4cac81SBjoern A. Zeeb 		/* XXX TODO */
4036b4cac81SBjoern A. Zeeb 	int	delay, flags;
4046b4cac81SBjoern A. Zeeb 	uint8_t					mac_addr[ETH_ALEN], mac_addr_mask[ETH_ALEN];
4056b4cac81SBjoern A. Zeeb 	uint64_t				reqid;
4066b4cac81SBjoern A. Zeeb 	int					n_match_sets;
4076b4cac81SBjoern A. Zeeb 	int					n_scan_plans;
4086b4cac81SBjoern A. Zeeb 	int					n_ssids;
4096b4cac81SBjoern A. Zeeb 	int					n_channels;
410*b0f73768SBjoern A. Zeeb 	int					ie_len;
411*b0f73768SBjoern A. Zeeb 	uint8_t					*ie;
4126b4cac81SBjoern A. Zeeb 	struct cfg80211_match_set		*match_sets;
4136b4cac81SBjoern A. Zeeb 	struct cfg80211_sched_scan_plan		*scan_plans;
4146b4cac81SBjoern A. Zeeb 	struct cfg80211_ssid			*ssids;
4156b4cac81SBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel	*channels[0];
4166b4cac81SBjoern A. Zeeb };
4176b4cac81SBjoern A. Zeeb 
4186b4cac81SBjoern A. Zeeb struct cfg80211_scan_info {
4196b4cac81SBjoern A. Zeeb 	uint64_t				scan_start_tsf;
4206b4cac81SBjoern A. Zeeb 	uint8_t					tsf_bssid[ETH_ALEN];
4216b4cac81SBjoern A. Zeeb 	bool					aborted;
4226b4cac81SBjoern A. Zeeb };
4236b4cac81SBjoern A. Zeeb 
4246b4cac81SBjoern A. Zeeb struct cfg80211_beacon_data {
4256b4cac81SBjoern A. Zeeb 	/* XXX TODO */
4266b4cac81SBjoern A. Zeeb 	const uint8_t				*head;
4276b4cac81SBjoern A. Zeeb 	const uint8_t				*tail;
4286b4cac81SBjoern A. Zeeb 	uint32_t				head_len;
4296b4cac81SBjoern A. Zeeb 	uint32_t				tail_len;
4306b4cac81SBjoern A. Zeeb 	const uint8_t				*proberesp_ies;
4316b4cac81SBjoern A. Zeeb 	const uint8_t				*assocresp_ies;
4326b4cac81SBjoern A. Zeeb 	uint32_t				proberesp_ies_len;
4336b4cac81SBjoern A. Zeeb 	uint32_t				assocresp_ies_len;
4346b4cac81SBjoern A. Zeeb };
4356b4cac81SBjoern A. Zeeb 
4366b4cac81SBjoern A. Zeeb struct cfg80211_ap_settings {
4376b4cac81SBjoern A. Zeeb 	/* XXX TODO */
4386b4cac81SBjoern A. Zeeb 	int     auth_type, beacon_interval, dtim_period, hidden_ssid, inactivity_timeout;
4396b4cac81SBjoern A. Zeeb 	const uint8_t				*ssid;
4406b4cac81SBjoern A. Zeeb 	size_t					ssid_len;
4416b4cac81SBjoern A. Zeeb 	struct cfg80211_beacon_data		beacon;
4426b4cac81SBjoern A. Zeeb 	struct cfg80211_chan_def		chandef;
4436b4cac81SBjoern A. Zeeb };
4446b4cac81SBjoern A. Zeeb 
4456b4cac81SBjoern A. Zeeb struct cfg80211_bss_selection {
4466b4cac81SBjoern A. Zeeb 	/* XXX TODO */
4476b4cac81SBjoern A. Zeeb 	enum nl80211_bss_select_attr		behaviour;
4486b4cac81SBjoern A. Zeeb 	union {
4496b4cac81SBjoern A. Zeeb 		enum nl80211_band		band_pref;
4506b4cac81SBjoern A. Zeeb 		struct {
4516b4cac81SBjoern A. Zeeb 			enum nl80211_band	band;
4526b4cac81SBjoern A. Zeeb 			uint8_t			delta;
4536b4cac81SBjoern A. Zeeb 		} adjust;
4546b4cac81SBjoern A. Zeeb 	} param;
4556b4cac81SBjoern A. Zeeb };
4566b4cac81SBjoern A. Zeeb 
4576b4cac81SBjoern A. Zeeb struct cfg80211_crypto {		/* XXX made up name */
4586b4cac81SBjoern A. Zeeb 	/* XXX TODO */
4596b4cac81SBjoern A. Zeeb 	enum nl80211_wpa_versions		wpa_versions;
4606b4cac81SBjoern A. Zeeb 	uint32_t				cipher_group;	/* WLAN_CIPHER_SUITE_* */
4616b4cac81SBjoern A. Zeeb 	uint32_t				*akm_suites;
4626b4cac81SBjoern A. Zeeb 	uint32_t				*ciphers_pairwise;
4636b4cac81SBjoern A. Zeeb 	const uint8_t				*sae_pwd;
4646b4cac81SBjoern A. Zeeb 	const uint8_t				*psk;
4656b4cac81SBjoern A. Zeeb 	int					n_akm_suites;
4666b4cac81SBjoern A. Zeeb 	int					n_ciphers_pairwise;
4676b4cac81SBjoern A. Zeeb 	int					sae_pwd_len;
4686b4cac81SBjoern A. Zeeb };
4696b4cac81SBjoern A. Zeeb 
4706b4cac81SBjoern A. Zeeb struct cfg80211_connect_params {
4716b4cac81SBjoern A. Zeeb 	/* XXX TODO */
4726b4cac81SBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel	*channel;
4736b4cac81SBjoern A. Zeeb 	uint8_t					*bssid;
4746b4cac81SBjoern A. Zeeb 	const uint8_t				*ie;
4756b4cac81SBjoern A. Zeeb 	const uint8_t				*ssid;
4766b4cac81SBjoern A. Zeeb 	uint32_t				ie_len;
4776b4cac81SBjoern A. Zeeb 	uint32_t				ssid_len;
4786b4cac81SBjoern A. Zeeb 	const void				*key;
4796b4cac81SBjoern A. Zeeb 	uint32_t				key_len;
4806b4cac81SBjoern A. Zeeb 	int     auth_type, key_idx, privacy, want_1x;
4816b4cac81SBjoern A. Zeeb 	struct cfg80211_bss_selection		bss_select;
4826b4cac81SBjoern A. Zeeb 	struct cfg80211_crypto			crypto;
4836b4cac81SBjoern A. Zeeb };
4846b4cac81SBjoern A. Zeeb 
4856b4cac81SBjoern A. Zeeb enum bss_param_flags {		/* Used as bitflags. XXX FIXME values? */
4866b4cac81SBjoern A. Zeeb 	BSS_PARAM_FLAGS_CTS_PROT	= 0x01,
4876b4cac81SBjoern A. Zeeb 	BSS_PARAM_FLAGS_SHORT_PREAMBLE	= 0x02,
4886b4cac81SBjoern A. Zeeb 	BSS_PARAM_FLAGS_SHORT_SLOT_TIME = 0x04,
4896b4cac81SBjoern A. Zeeb };
4906b4cac81SBjoern A. Zeeb 
4916b4cac81SBjoern A. Zeeb struct cfg80211_ibss_params {
4926b4cac81SBjoern A. Zeeb 	/* XXX TODO */
4936b4cac81SBjoern A. Zeeb 	int     basic_rates, beacon_interval;
4946b4cac81SBjoern A. Zeeb 	int	channel_fixed, ie, ie_len, privacy;
4956b4cac81SBjoern A. Zeeb 	int	dtim_period;
4966b4cac81SBjoern A. Zeeb 	uint8_t					*ssid;
4976b4cac81SBjoern A. Zeeb 	uint8_t					*bssid;
4986b4cac81SBjoern A. Zeeb 	int					ssid_len;
4996b4cac81SBjoern A. Zeeb 	struct cfg80211_chan_def		chandef;
5006b4cac81SBjoern A. Zeeb 	enum bss_param_flags			flags;
5016b4cac81SBjoern A. Zeeb };
5026b4cac81SBjoern A. Zeeb 
5036b4cac81SBjoern A. Zeeb struct cfg80211_mgmt_tx_params {
5046b4cac81SBjoern A. Zeeb 	/* XXX TODO */
5056b4cac81SBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel	*chan;
5066b4cac81SBjoern A. Zeeb 	const uint8_t				*buf;
5076b4cac81SBjoern A. Zeeb 	size_t					len;
5086b4cac81SBjoern A. Zeeb 	int	wait;
5096b4cac81SBjoern A. Zeeb };
5106b4cac81SBjoern A. Zeeb 
5116b4cac81SBjoern A. Zeeb struct cfg80211_pmk_conf {
5126b4cac81SBjoern A. Zeeb 	/* XXX TODO */
5136b4cac81SBjoern A. Zeeb 	const uint8_t			*pmk;
5146b4cac81SBjoern A. Zeeb 	uint8_t				pmk_len;
5156b4cac81SBjoern A. Zeeb };
5166b4cac81SBjoern A. Zeeb 
5176b4cac81SBjoern A. Zeeb struct cfg80211_pmksa {
5186b4cac81SBjoern A. Zeeb 	/* XXX TODO */
5196b4cac81SBjoern A. Zeeb 	const uint8_t			*bssid;
5206b4cac81SBjoern A. Zeeb 	const uint8_t			*pmkid;
5216b4cac81SBjoern A. Zeeb };
5226b4cac81SBjoern A. Zeeb 
5236b4cac81SBjoern A. Zeeb struct cfg80211_wowlan_nd_match {
5246b4cac81SBjoern A. Zeeb 	/* XXX TODO */
5256b4cac81SBjoern A. Zeeb 	struct cfg80211_ssid		ssid;
5266b4cac81SBjoern A. Zeeb 	int				n_channels;
5276b4cac81SBjoern A. Zeeb 	uint32_t			channels[0];	/* freq! = ieee80211_channel_to_frequency() */
5286b4cac81SBjoern A. Zeeb };
5296b4cac81SBjoern A. Zeeb 
5306b4cac81SBjoern A. Zeeb struct cfg80211_wowlan_nd_info {
5316b4cac81SBjoern A. Zeeb 	/* XXX TODO */
5326b4cac81SBjoern A. Zeeb 	int				n_matches;
5336b4cac81SBjoern A. Zeeb 	struct cfg80211_wowlan_nd_match	*matches[0];
5346b4cac81SBjoern A. Zeeb };
5356b4cac81SBjoern A. Zeeb 
5366b4cac81SBjoern A. Zeeb enum wiphy_wowlan_support_flags {
5376b4cac81SBjoern A. Zeeb 	WIPHY_WOWLAN_DISCONNECT,
5386b4cac81SBjoern A. Zeeb 	WIPHY_WOWLAN_GTK_REKEY_FAILURE,
5396b4cac81SBjoern A. Zeeb 	WIPHY_WOWLAN_MAGIC_PKT,
5406b4cac81SBjoern A. Zeeb 	WIPHY_WOWLAN_SUPPORTS_GTK_REKEY,
5416b4cac81SBjoern A. Zeeb 	WIPHY_WOWLAN_NET_DETECT,
5426b4cac81SBjoern A. Zeeb };
5436b4cac81SBjoern A. Zeeb 
5446b4cac81SBjoern A. Zeeb struct wiphy_wowlan_support {
5456b4cac81SBjoern A. Zeeb 	/* XXX TODO */
5466b4cac81SBjoern A. Zeeb 	enum wiphy_wowlan_support_flags		flags;
5476b4cac81SBjoern A. Zeeb 	int	max_nd_match_sets, max_pkt_offset, n_patterns, pattern_max_len, pattern_min_len;
5486b4cac81SBjoern A. Zeeb };
5496b4cac81SBjoern A. Zeeb 
5506b4cac81SBjoern A. Zeeb struct station_del_parameters {
5516b4cac81SBjoern A. Zeeb 	/* XXX TODO */
5526b4cac81SBjoern A. Zeeb 	const uint8_t				*mac;
5536b4cac81SBjoern A. Zeeb 	uint32_t				reason_code;	/* elsewhere uint16_t? */
5546b4cac81SBjoern A. Zeeb };
5556b4cac81SBjoern A. Zeeb 
5566b4cac81SBjoern A. Zeeb struct station_info {
5576b4cac81SBjoern A. Zeeb 	/* TODO FIXME */
5586b4cac81SBjoern A. Zeeb 	int     assoc_req_ies_len, connected_time;
5596b4cac81SBjoern A. Zeeb 	int	generation, inactive_time, rx_bytes, rx_dropped_misc, rx_packets, signal, tx_bytes, tx_packets;
5606b4cac81SBjoern A. Zeeb 	int     filled, rx_beacon, rx_beacon_signal_avg, signal_avg;
5616b4cac81SBjoern A. Zeeb 	int	rx_duration, tx_failed, tx_retries;
5626b4cac81SBjoern A. Zeeb 
5636b4cac81SBjoern A. Zeeb 	int					chains;
5646b4cac81SBjoern A. Zeeb 	uint8_t					chain_signal[IEEE80211_MAX_CHAINS];
5656b4cac81SBjoern A. Zeeb 	uint8_t					chain_signal_avg[IEEE80211_MAX_CHAINS];
5666b4cac81SBjoern A. Zeeb 
5676b4cac81SBjoern A. Zeeb 	uint8_t					*assoc_req_ies;
5686b4cac81SBjoern A. Zeeb 	struct rate_info			rxrate;
5696b4cac81SBjoern A. Zeeb 	struct rate_info			txrate;
5706b4cac81SBjoern A. Zeeb 	struct cfg80211_ibss_params		bss_param;
5716b4cac81SBjoern A. Zeeb 	struct nl80211_sta_flag_update		sta_flags;
5726b4cac81SBjoern A. Zeeb };
5736b4cac81SBjoern A. Zeeb 
5746b4cac81SBjoern A. Zeeb struct station_parameters {
5756b4cac81SBjoern A. Zeeb 	/* XXX TODO */
5766b4cac81SBjoern A. Zeeb 	int     sta_flags_mask, sta_flags_set;
5776b4cac81SBjoern A. Zeeb };
5786b4cac81SBjoern A. Zeeb 
5796b4cac81SBjoern A. Zeeb struct key_params {
5806b4cac81SBjoern A. Zeeb 	/* XXX TODO */
5816b4cac81SBjoern A. Zeeb 	const uint8_t	*key;
5826b4cac81SBjoern A. Zeeb 	const uint8_t	*seq;
5836b4cac81SBjoern A. Zeeb 	int		key_len;
5846b4cac81SBjoern A. Zeeb 	int		seq_len;
5856b4cac81SBjoern A. Zeeb 	uint32_t	cipher;			/* WLAN_CIPHER_SUITE_* */
5866b4cac81SBjoern A. Zeeb };
5876b4cac81SBjoern A. Zeeb 
5886b4cac81SBjoern A. Zeeb struct mgmt_frame_regs {
5896b4cac81SBjoern A. Zeeb 	/* XXX TODO */
5906b4cac81SBjoern A. Zeeb 	int	interface_stypes;
5916b4cac81SBjoern A. Zeeb };
5926b4cac81SBjoern A. Zeeb 
5936b4cac81SBjoern A. Zeeb struct vif_params {
5946b4cac81SBjoern A. Zeeb 	/* XXX TODO */
5956b4cac81SBjoern A. Zeeb 	uint8_t			macaddr[ETH_ALEN];
5966b4cac81SBjoern A. Zeeb };
5976b4cac81SBjoern A. Zeeb 
5986b4cac81SBjoern A. Zeeb /* That the world needs so many different structs for this is amazing. */
5996b4cac81SBjoern A. Zeeb struct mac_address {
6006b4cac81SBjoern A. Zeeb 	uint8_t	addr[ETH_ALEN];
6016b4cac81SBjoern A. Zeeb };
6026b4cac81SBjoern A. Zeeb 
6036b4cac81SBjoern A. Zeeb struct ieee80211_reg_rule {
6046b4cac81SBjoern A. Zeeb 	/* TODO FIXME */
6056b4cac81SBjoern A. Zeeb 	uint32_t	flags;
6066b4cac81SBjoern A. Zeeb 	struct freq_range {
6076b4cac81SBjoern A. Zeeb 		int	start_freq_khz;
6086b4cac81SBjoern A. Zeeb 		int	end_freq_khz;
6096b4cac81SBjoern A. Zeeb 		int	max_bandwidth_khz;
6106b4cac81SBjoern A. Zeeb 	} freq_range;
6116b4cac81SBjoern A. Zeeb 	struct power_rule {
6126b4cac81SBjoern A. Zeeb 		int	max_antenna_gain;
6136b4cac81SBjoern A. Zeeb 		int	max_eirp;
6146b4cac81SBjoern A. Zeeb 	} power_rule;
6156b4cac81SBjoern A. Zeeb };
6166b4cac81SBjoern A. Zeeb 
6176b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_regdomain {
6186b4cac81SBjoern A. Zeeb 	/* TODO FIXME */
6196b4cac81SBjoern A. Zeeb 	uint8_t					alpha2[2];
6202e183d99SBjoern A. Zeeb 	int	dfs_region;
6216b4cac81SBjoern A. Zeeb 	int					n_reg_rules;
6226b4cac81SBjoern A. Zeeb 	struct ieee80211_reg_rule		reg_rules[];
6236b4cac81SBjoern A. Zeeb };
6246b4cac81SBjoern A. Zeeb 
6256b4cac81SBjoern A. Zeeb /* XXX-BZ this are insensible values probably ... */
6266b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP0_HTC_HE			0x1
6276b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP0_TWT_REQ			0x2
628*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP0_TWT_RES			0x4
6296b4cac81SBjoern A. Zeeb 
6306b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP1_LINK_ADAPTATION		0x1
6316b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP1_MULTI_TID_AGG_RX_QOS_8	0x2
6326b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP1_TF_MAC_PAD_DUR_16US	0x4
633*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP1_TF_MAC_PAD_DUR_MASK	0x8
6346b4cac81SBjoern A. Zeeb 
6356b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP2_32BIT_BA_BITMAP		0x1
6366b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP2_ACK_EN			0x2
6376b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP2_BSR			0x4
6386b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP2_LINK_ADAPTATION		0x8
6396b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP2_BCAST_TWT			0x10
64051b461b3SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP2_ALL_ACK			0x20
641*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP2_MU_CASCADING		0x40
642*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP2_TRS			0x80
6436b4cac81SBjoern A. Zeeb 
6446b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP3_MAX_AMPDU_LEN_EXP_VHT_2	0x1
6456b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP3_OMI_CONTROL		0x2
6466b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP3_MAX_AMPDU_LEN_EXP_EXT_1	0x10
64751b461b3SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP3_MAX_AMPDU_LEN_EXP_EXT_2	0x20
64851b461b3SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP3_MAX_AMPDU_LEN_EXP_EXT_3	0x40
64951b461b3SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP3_MAX_AMPDU_LEN_EXP_MASK	0x70
6506b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP3_RX_CTRL_FRAME_TO_MULTIBSS	0x80
651*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP3_FLEX_TWT_SCHED		0x80
652*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP3_OFDMA_RA			0x80
6536b4cac81SBjoern A. Zeeb 
6546b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP4_AMDSU_IN_AMPDU		0x1
6556b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP4_BQR			0x2
6566b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP4_MULTI_TID_AGG_TX_QOS_B39	0x4
6576b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP4_AMSDU_IN_AMPDU		0x8
65851b461b3SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP4_OPS			0x10
659*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP4_BSRP_BQRP_A_MPDU_AGG	0x20
6606b4cac81SBjoern A. Zeeb 
6616b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP5_HE_DYNAMIC_SM_PS		0x1
6626b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP5_HT_VHT_TRIG_FRAME_RX	0x2
6636b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP5_MULTI_TID_AGG_TX_QOS_B40	0x4
6646b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP5_MULTI_TID_AGG_TX_QOS_B41	0x8
6656b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP5_UL_2x996_TONE_RU		0x10
666*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP5_OM_CTRL_UL_MU_DATA_DIS_RX	0x20
667*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP5_PUNCTURED_SOUNDING	0x40
668*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_MAC_CAP5_SUBCHAN_SELECTIVE_TRANSMISSION	0x80
6696b4cac81SBjoern A. Zeeb 
6706b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MCS_NOT_SUPPORTED			0x0
6716b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MCS_SUPPORT_0_7			0x1
6726b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MCS_SUPPORT_0_9			0x2
6736b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_MCS_SUPPORT_0_11			0x4
6746b4cac81SBjoern A. Zeeb 
6756b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_6GHZ_CAP_TX_ANTPAT_CONS		0x01
6766b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_6GHZ_CAP_RX_ANTPAT_CONS		0x02
6776b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_6GHZ_CAP_MIN_MPDU_START		0x04
6786b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_6GHZ_CAP_MAX_MPDU_LEN		0x08
6796b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_6GHZ_CAP_MAX_AMPDU_LEN_EXP		0x10
680*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_6GHZ_CAP_SM_PS			0x20
681*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_6GHZ_MAX_AMPDU_FACTOR		0x40
6826b4cac81SBjoern A. Zeeb 
6836b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_160MHZ_IN_5G		0x1
6846b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_40MHZ_80MHZ_IN_5G	0x2
6856b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_40MHZ_IN_2G		0x4
68651b461b3SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_80PLUS80_MHZ_IN_5G	0x8
687*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_RU_MAPPING_IN_2G	0x10
688*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_RU_MAPPING_IN_5G	0x20
689*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_MASK			0x40
6906b4cac81SBjoern A. Zeeb 
6916b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP1_DEVICE_CLASS_A		0x1
6926b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP1_LDPC_CODING_IN_PAYLOAD	0x2
6936b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP1_MIDAMBLE_RX_TX_MAX_NSTS	0x4
6946b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP1_PREAMBLE_PUNC_RX_MASK	0x8
69551b461b3SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP1_HE_LTF_AND_GI_FOR_HE_PPDUS_0_8US	0x10
6966b4cac81SBjoern A. Zeeb 
6976b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP2_MIDAMBLE_RX_TX_MAX_NSTS	0x1
6986b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP2_NDP_4x_LTF_AND_3_2US	0x2
6996b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP2_STBC_TX_UNDER_80MHZ	0x4
7006b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP2_STBC_RX_UNDER_80MHZ	0x8
70151b461b3SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP2_DOPPLER_TX		0x10
702*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP2_UL_MU_PARTIAL_MU_MIMO	0x20
703*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP2_UL_MU_FULL_MU_MIMO	0x40
7046b4cac81SBjoern A. Zeeb 
7056b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP3_DCM_MAX_CONST_RX_MASK	0x1
7066b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP3_DCM_MAX_CONST_RX_NO_DCM	0x2
7076b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP3_DCM_MAX_CONST_TX_NO_DCM	0x4
7086b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP3_DCM_MAX_RX_NSS_1		0x8
7096b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP3_DCM_MAX_TX_NSS_1		0x10
71051b461b3SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP3_SU_BEAMFORMER		0x20
71151b461b3SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP3_DCM_MAX_CONST_RX_16_QAM	0x40
71251b461b3SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP3_DCM_MAX_CONST_TX_16_QAM	0x80
713d875aa15SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP3_DCM_MAX_TX_NSS_2		0x10
714d875aa15SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP3_RX_PARTIAL_BW_SU_IN_20MHZ_MU	0x20
715d875aa15SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP3_DCM_MAX_CONST_RX_BPSK	0x40
716d875aa15SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP3_DCM_MAX_CONST_TX_BPSK	0x80
717d875aa15SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP3_DCM_MAX_CONST_TX_MASK	0x80
718*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP3_DCM_MAX_CONST_RX_QPSK	0x80
719*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP3_DCM_MAX_CONST_TX_QPSK	0x80
720*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP3_DCM_MAX_RX_NSS_2		0x80
7216b4cac81SBjoern A. Zeeb 
7226b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP4_BEAMFORMEE_MAX_STS_UNDER_80MHZ_8	0x1
7236b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP4_BEAMFORMEE_MAX_STS_ABOVE_80MHZ_8	0x2
7246b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP4_SU_BEAMFORMEE			0x4
72551b461b3SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP4_MU_BEAMFORMER			0x8
72651b461b3SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP4_BEAMFORMEE_MAX_STS_UNDER_80MHZ_4	0x10
727*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP4_BEAMFORMEE_MAX_STS_ABOVE_80MHZ_4	0x20
728*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP4_BEAMFORMEE_MAX_STS_ABOVE_80MHZ_MASK	0x40
729*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP4_BEAMFORMEE_MAX_STS_UNDER_80MHZ_MASK	0x80
7306b4cac81SBjoern A. Zeeb 
7316b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP5_BEAMFORMEE_NUM_SND_DIM_ABOVE_80MHZ_2	0x1
7326b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP5_BEAMFORMEE_NUM_SND_DIM_UNDER_80MHZ_2	0x2
73351b461b3SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP5_BEAMFORMEE_NUM_SND_DIM_UNDER_80MHZ_MASK	0x4
73451b461b3SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP5_NG16_MU_FEEDBACK				0x8
73551b461b3SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP5_NG16_SU_FEEDBACK				0x10
736*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP5_BEAMFORMEE_NUM_SND_DIM_ABOVE_80MHZ_MASK	0x20
7376b4cac81SBjoern A. Zeeb 
7386b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP6_PPE_THRESHOLD_PRESENT	0x1
7396b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP6_TRIG_MU_BEAMFORMER_FB	0x2
7406b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP6_TRIG_SU_BEAMFORMER_FB	0x4
74151b461b3SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP6_TRIG_SU_BEAMFORMING_FB	0x8
7426b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP6_TRIG_MU_BEAMFORMING_PARTIAL_BW_FB	0x20
74351b461b3SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP6_CODEBOOK_SIZE_42_SU	0x40
74451b461b3SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP6_CODEBOOK_SIZE_75_MU	0x80
74551b461b3SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP6_PARTIAL_BW_EXT_RANGE	0x80
746*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP6_TRIG_CQI_FB		0x80
747*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP6_PARTIAL_BANDWIDTH_DL_MUMIMO	0x80
7486b4cac81SBjoern A. Zeeb 
7496b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP7_HE_SU_MU_PPDU_4XLTF_AND_08_US_GI	0x1
7506b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP7_MAX_NC_1				0x2
7516b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP7_MAX_NC_2				0x4
7526b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP7_MAX_NC_MASK			0x6
7536b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP7_POWER_BOOST_FACTOR_AR		0x8
7546b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP7_POWER_BOOST_FACTOR_SUPP		0x10
7556b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP7_STBC_RX_ABOVE_80MHZ		0x20
756*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP7_STBC_TX_ABOVE_80MHZ		0x40
757*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP7_PSR_BASED_SR			0x80
7586b4cac81SBjoern A. Zeeb 
7596b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP8_20MHZ_IN_160MHZ_HE_PPDU		0x1
7606b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP8_20MHZ_IN_40MHZ_HE_PPDU_IN_2G	0x2
7616b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP8_80MHZ_IN_160MHZ_HE_PPDU		0x4
762*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP8_DCM_MAX_RU_242			0x8
763*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP8_DCM_MAX_RU_484			0x10
764*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP8_DCM_MAX_RU_996			0x18
765*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP8_DCM_MAX_RU_2x996			0x20
766*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP8_DCM_MAX_RU_MASK			0x28
767*b0f73768SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP8_HE_ER_SU_PPDU_4XLTF_AND_08_US_GI	0x40
76851b461b3SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP8_HE_ER_SU_1XLTF_AND_08_US_GI	0x80
7696b4cac81SBjoern A. Zeeb 
770e2008091SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP9_NOMINAL_PKT_PADDING_0US		0x1
771e2008091SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP9_NOMINAL_PKT_PADDING_16US		0x2
772e2008091SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP9_NOMINAL_PKT_PADDING_8US		0x4
773e2008091SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP9_NOMINAL_PKT_PADDING_MASK		0x8
774e2008091SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP9_NOMINAL_PKT_PADDING_RESERVED	0x10
775d875aa15SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP9_NOMINAL_PKT_PADDING_POS		0x0
7766b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP9_NON_TRIGGERED_CQI_FEEDBACK	0x20
777d875aa15SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP9_RX_FULL_BW_SU_USING_MU_WITH_COMP_SIGB	0x4
778d875aa15SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP9_RX_FULL_BW_SU_USING_MU_WITH_NON_COMP_SIGB	0x8
779d875aa15SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP9_RX_1024_QAM_LESS_THAN_242_TONE_RU	0x10
780d875aa15SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP9_TX_1024_QAM_LESS_THAN_242_TONE_RU	0x20
781d875aa15SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP9_LONGER_THAN_16_SIGB_OFDM_SYM	0x40
7826b4cac81SBjoern A. Zeeb 
7836b4cac81SBjoern A. Zeeb #define	IEEE80211_HE_PHY_CAP10_HE_MU_M1RU_MAX_LTF		0x1
7846b4cac81SBjoern A. Zeeb 
7856b4cac81SBjoern A. Zeeb #define	VENDOR_CMD_RAW_DATA	(void *)(uintptr_t)(-ENOENT)
7866b4cac81SBjoern A. Zeeb 
7876b4cac81SBjoern A. Zeeb struct ieee80211_he_cap_elem {
7886b4cac81SBjoern A. Zeeb 	u8 mac_cap_info[6];
7896b4cac81SBjoern A. Zeeb 	u8 phy_cap_info[11];
7906b4cac81SBjoern A. Zeeb } __packed;
7916b4cac81SBjoern A. Zeeb 
7926b4cac81SBjoern A. Zeeb struct ieee80211_he_mcs_nss_supp {
7936b4cac81SBjoern A. Zeeb 	/* TODO FIXME */
7946b4cac81SBjoern A. Zeeb 	uint32_t	rx_mcs_80;
7956b4cac81SBjoern A. Zeeb 	uint32_t	tx_mcs_80;
7966b4cac81SBjoern A. Zeeb 	uint32_t	rx_mcs_160;
7976b4cac81SBjoern A. Zeeb 	uint32_t	tx_mcs_160;
7986b4cac81SBjoern A. Zeeb 	uint32_t	rx_mcs_80p80;
7996b4cac81SBjoern A. Zeeb 	uint32_t	tx_mcs_80p80;
8006b4cac81SBjoern A. Zeeb };
8016b4cac81SBjoern A. Zeeb 
8026b4cac81SBjoern A. Zeeb #define	IEEE80211_STA_HE_CAP_PPE_THRES_MAX	32
8036b4cac81SBjoern A. Zeeb struct ieee80211_sta_he_cap {
8046b4cac81SBjoern A. Zeeb 	/* TODO FIXME */
8056b4cac81SBjoern A. Zeeb 	int					has_he;
8066b4cac81SBjoern A. Zeeb 	struct ieee80211_he_cap_elem		he_cap_elem;
8076b4cac81SBjoern A. Zeeb 	struct ieee80211_he_mcs_nss_supp	he_mcs_nss_supp;
8086b4cac81SBjoern A. Zeeb 	uint8_t					ppe_thres[IEEE80211_STA_HE_CAP_PPE_THRES_MAX];
8096b4cac81SBjoern A. Zeeb };
8106b4cac81SBjoern A. Zeeb 
811*b0f73768SBjoern A. Zeeb struct cfg80211_he_bss_color {
812*b0f73768SBjoern A. Zeeb 	int	color, enabled;
813*b0f73768SBjoern A. Zeeb };
814*b0f73768SBjoern A. Zeeb 
815*b0f73768SBjoern A. Zeeb struct ieee80211_he_obss_pd {
816*b0f73768SBjoern A. Zeeb 	bool					enable;
817*b0f73768SBjoern A. Zeeb };
818*b0f73768SBjoern A. Zeeb 
8196b4cac81SBjoern A. Zeeb struct ieee80211_sta_he_6ghz_capa {
8206b4cac81SBjoern A. Zeeb 	/* TODO FIXME */
8216b4cac81SBjoern A. Zeeb 	int	capa;
8226b4cac81SBjoern A. Zeeb };
8236b4cac81SBjoern A. Zeeb 
8246b4cac81SBjoern A. Zeeb struct ieee80211_sband_iftype_data {
8256b4cac81SBjoern A. Zeeb 	/* TODO FIXME */
8266b4cac81SBjoern A. Zeeb 	enum nl80211_iftype			types_mask;
8276b4cac81SBjoern A. Zeeb 	struct ieee80211_sta_he_cap		he_cap;
8286b4cac81SBjoern A. Zeeb 	struct ieee80211_sta_he_6ghz_capa	he_6ghz_capa;
8296b4cac81SBjoern A. Zeeb 	struct {
8306b4cac81SBjoern A. Zeeb 		const uint8_t			*data;
8316b4cac81SBjoern A. Zeeb 		size_t				len;
8326b4cac81SBjoern A. Zeeb 	} vendor_elems;
8336b4cac81SBjoern A. Zeeb };
8346b4cac81SBjoern A. Zeeb 
8356b4cac81SBjoern A. Zeeb struct ieee80211_supported_band {
8366b4cac81SBjoern A. Zeeb 	/* TODO FIXME */
8376b4cac81SBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel	*channels;
8386b4cac81SBjoern A. Zeeb 	struct ieee80211_rate			*bitrates;
8396b4cac81SBjoern A. Zeeb 	struct ieee80211_sband_iftype_data	*iftype_data;
8406b4cac81SBjoern A. Zeeb 	int					n_channels;
8416b4cac81SBjoern A. Zeeb 	int					n_bitrates;
8426b4cac81SBjoern A. Zeeb 	int					n_iftype_data;
8436b4cac81SBjoern A. Zeeb 	enum nl80211_band			band;
8446b4cac81SBjoern A. Zeeb 	struct ieee80211_sta_ht_cap		ht_cap;
8456b4cac81SBjoern A. Zeeb 	struct ieee80211_sta_vht_cap		vht_cap;
8466b4cac81SBjoern A. Zeeb };
8476b4cac81SBjoern A. Zeeb 
8486b4cac81SBjoern A. Zeeb struct cfg80211_pkt_pattern {
8496b4cac81SBjoern A. Zeeb 	/* XXX TODO */
8506b4cac81SBjoern A. Zeeb 	uint8_t					*mask;
8516b4cac81SBjoern A. Zeeb 	uint8_t					*pattern;
8526b4cac81SBjoern A. Zeeb 	int					pattern_len;
8536b4cac81SBjoern A. Zeeb 	int					pkt_offset;
8546b4cac81SBjoern A. Zeeb };
8556b4cac81SBjoern A. Zeeb 
8566b4cac81SBjoern A. Zeeb struct cfg80211_wowlan {
8576b4cac81SBjoern A. Zeeb 	/* XXX TODO */
8586b4cac81SBjoern A. Zeeb 	int	disconnect, gtk_rekey_failure, magic_pkt;
8596b4cac81SBjoern A. Zeeb 	int					n_patterns;
8606b4cac81SBjoern A. Zeeb 	struct cfg80211_sched_scan_request	*nd_config;
8616b4cac81SBjoern A. Zeeb 	struct cfg80211_pkt_pattern		*patterns;
8626b4cac81SBjoern A. Zeeb };
8636b4cac81SBjoern A. Zeeb 
8646b4cac81SBjoern A. Zeeb struct cfg80211_gtk_rekey_data {
8656b4cac81SBjoern A. Zeeb 	/* XXX TODO */
8666b4cac81SBjoern A. Zeeb 	int     kck, kek, replay_ctr;
8676b4cac81SBjoern A. Zeeb };
8686b4cac81SBjoern A. Zeeb 
8692e183d99SBjoern A. Zeeb struct cfg80211_tid_cfg {
8702e183d99SBjoern A. Zeeb 	/* XXX TODO */
8712e183d99SBjoern A. Zeeb 	int	mask, noack, retry_long, rtscts, tids;
8722e183d99SBjoern A. Zeeb 	enum nl80211_tx_rate_setting		txrate_type;
8732e183d99SBjoern A. Zeeb 	struct cfg80211_bitrate_mask		txrate_mask;
8742e183d99SBjoern A. Zeeb };
8752e183d99SBjoern A. Zeeb 
8762e183d99SBjoern A. Zeeb struct cfg80211_tid_config {
8772e183d99SBjoern A. Zeeb 	/* XXX TODO */
8782e183d99SBjoern A. Zeeb 	int	n_tid_conf;
8792e183d99SBjoern A. Zeeb 	struct cfg80211_tid_cfg			tid_conf[0];
8802e183d99SBjoern A. Zeeb };
8812e183d99SBjoern A. Zeeb 
8826b4cac81SBjoern A. Zeeb struct ieee80211_iface_limit {
8836b4cac81SBjoern A. Zeeb 	/* TODO FIXME */
8846b4cac81SBjoern A. Zeeb 	int		max, types;
8856b4cac81SBjoern A. Zeeb };
8866b4cac81SBjoern A. Zeeb 
8876b4cac81SBjoern A. Zeeb struct ieee80211_iface_combination {
8886b4cac81SBjoern A. Zeeb 	/* TODO FIXME */
8896b4cac81SBjoern A. Zeeb 	const struct ieee80211_iface_limit	*limits;
8906b4cac81SBjoern A. Zeeb 	int					n_limits;
8916b4cac81SBjoern A. Zeeb 	int		max_interfaces, num_different_channels;
8926b4cac81SBjoern A. Zeeb 	int		beacon_int_infra_match, beacon_int_min_gcd;
893*b0f73768SBjoern A. Zeeb 	int		radar_detect_widths;
8946b4cac81SBjoern A. Zeeb };
8956b4cac81SBjoern A. Zeeb 
8966b4cac81SBjoern A. Zeeb struct iface_combination_params {
8976b4cac81SBjoern A. Zeeb 	int num_different_channels;
8986b4cac81SBjoern A. Zeeb 	int iftype_num[NUM_NL80211_IFTYPES];
8996b4cac81SBjoern A. Zeeb };
9006b4cac81SBjoern A. Zeeb 
9016b4cac81SBjoern A. Zeeb struct regulatory_request {
9026b4cac81SBjoern A. Zeeb 		/* XXX TODO */
9036b4cac81SBjoern A. Zeeb 	uint8_t					alpha2[2];
9046b4cac81SBjoern A. Zeeb 	int	initiator, dfs_region;
9056b4cac81SBjoern A. Zeeb };
9066b4cac81SBjoern A. Zeeb 
9076b4cac81SBjoern A. Zeeb enum wiphy_vendor_cmd_need_flags {
9086b4cac81SBjoern A. Zeeb 	WIPHY_VENDOR_CMD_NEED_NETDEV		= 0x01,
9096b4cac81SBjoern A. Zeeb 	WIPHY_VENDOR_CMD_NEED_RUNNING		= 0x02,
9106b4cac81SBjoern A. Zeeb 	WIPHY_VENDOR_CMD_NEED_WDEV		= 0x04,
9116b4cac81SBjoern A. Zeeb };
9126b4cac81SBjoern A. Zeeb 
9136b4cac81SBjoern A. Zeeb struct wiphy_vendor_command {
9146b4cac81SBjoern A. Zeeb 	struct {
9156b4cac81SBjoern A. Zeeb 		uint32_t	vendor_id;
9166b4cac81SBjoern A. Zeeb 		uint32_t	subcmd;
9176b4cac81SBjoern A. Zeeb 	};
9186b4cac81SBjoern A. Zeeb 	uint32_t		flags;
9196b4cac81SBjoern A. Zeeb 	void			*policy;
9206b4cac81SBjoern A. Zeeb 	int (*doit)(struct wiphy *, struct wireless_dev *, const void *, int);
9216b4cac81SBjoern A. Zeeb };
9226b4cac81SBjoern A. Zeeb 
9236b4cac81SBjoern A. Zeeb struct wiphy_iftype_ext_capab {
9246b4cac81SBjoern A. Zeeb 	/* TODO FIXME */
9256b4cac81SBjoern A. Zeeb 	enum nl80211_iftype			iftype;
9266b4cac81SBjoern A. Zeeb 	const uint8_t				*extended_capabilities;
9276b4cac81SBjoern A. Zeeb 	const uint8_t				*extended_capabilities_mask;
9286b4cac81SBjoern A. Zeeb 	uint8_t					extended_capabilities_len;
9296b4cac81SBjoern A. Zeeb 
9306b4cac81SBjoern A. Zeeb };
9316b4cac81SBjoern A. Zeeb 
9322e183d99SBjoern A. Zeeb struct tid_config_support {
9332e183d99SBjoern A. Zeeb 	/* TODO FIXME */
9342e183d99SBjoern A. Zeeb 	uint64_t				vif;	/* enum nl80211_tid_cfg_attr */
9352e183d99SBjoern A. Zeeb 	uint64_t		 		peer;	/* enum nl80211_tid_cfg_attr */
9362e183d99SBjoern A. Zeeb };
9372e183d99SBjoern A. Zeeb 
9386b4cac81SBjoern A. Zeeb enum cfg80211_regulatory {
9396b4cac81SBjoern A. Zeeb 	REGULATORY_CUSTOM_REG			= BIT(0),
9406b4cac81SBjoern A. Zeeb 	REGULATORY_STRICT_REG			= BIT(1),
9416b4cac81SBjoern A. Zeeb 	REGULATORY_DISABLE_BEACON_HINTS		= BIT(2),
9426b4cac81SBjoern A. Zeeb 	REGULATORY_ENABLE_RELAX_NO_IR		= BIT(3),
9436b4cac81SBjoern A. Zeeb 	REGULATORY_WIPHY_SELF_MANAGED		= BIT(4),
9446b4cac81SBjoern A. Zeeb 	REGULATORY_COUNTRY_IE_IGNORE		= BIT(5),
9452e183d99SBjoern A. Zeeb 	REGULATORY_COUNTRY_IE_FOLLOW_POWER	= BIT(6),
9466b4cac81SBjoern A. Zeeb };
9476b4cac81SBjoern A. Zeeb 
948*b0f73768SBjoern A. Zeeb enum wiphy_flags {
949*b0f73768SBjoern A. Zeeb 	WIPHY_FLAG_AP_UAPSD			= BIT(0),
950*b0f73768SBjoern A. Zeeb 	WIPHY_FLAG_HAS_CHANNEL_SWITCH		= BIT(1),
951*b0f73768SBjoern A. Zeeb 	WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL	= BIT(2),
952*b0f73768SBjoern A. Zeeb 	WIPHY_FLAG_HAVE_AP_SME			= BIT(3),
953*b0f73768SBjoern A. Zeeb 	WIPHY_FLAG_IBSS_RSN			= BIT(4),
954*b0f73768SBjoern A. Zeeb 	WIPHY_FLAG_NETNS_OK			= BIT(5),
955*b0f73768SBjoern A. Zeeb 	WIPHY_FLAG_OFFCHAN_TX			= BIT(6),
956*b0f73768SBjoern A. Zeeb 	WIPHY_FLAG_PS_ON_BY_DEFAULT		= BIT(7),
957*b0f73768SBjoern A. Zeeb 	WIPHY_FLAG_SPLIT_SCAN_6GHZ		= BIT(8),
958*b0f73768SBjoern A. Zeeb 	WIPHY_FLAG_SUPPORTS_EXT_KEK_KCK		= BIT(9),
959*b0f73768SBjoern A. Zeeb 	WIPHY_FLAG_SUPPORTS_FW_ROAM		= BIT(10),
960*b0f73768SBjoern A. Zeeb 	WIPHY_FLAG_SUPPORTS_TDLS		= BIT(11),
961*b0f73768SBjoern A. Zeeb 	WIPHY_FLAG_TDLS_EXTERNAL_SETUP		= BIT(12),
962*b0f73768SBjoern A. Zeeb 	WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD	= BIT(13),
963*b0f73768SBjoern A. Zeeb 	WIPHY_FLAG_4ADDR_AP			= BIT(14),
964*b0f73768SBjoern A. Zeeb 	WIPHY_FLAG_4ADDR_STATION		= BIT(15),
965*b0f73768SBjoern A. Zeeb };
9666b4cac81SBjoern A. Zeeb 
9676b4cac81SBjoern A. Zeeb struct wiphy {
9686b4cac81SBjoern A. Zeeb 
9696b4cac81SBjoern A. Zeeb 	struct device				*dev;
9706b4cac81SBjoern A. Zeeb 	struct mac_address			*addresses;
9716b4cac81SBjoern A. Zeeb 	int					n_addresses;
9726b4cac81SBjoern A. Zeeb 	uint32_t				flags;
9736b4cac81SBjoern A. Zeeb 	struct ieee80211_supported_band		*bands[NUM_NL80211_BANDS];
9746b4cac81SBjoern A. Zeeb 	uint8_t					perm_addr[ETH_ALEN];
9756b4cac81SBjoern A. Zeeb 
9766b4cac81SBjoern A. Zeeb 	/* XXX TODO */
9776b4cac81SBjoern A. Zeeb 	const struct cfg80211_pmsr_capabilities	*pmsr_capa;
97851b461b3SBjoern A. Zeeb 	const struct cfg80211_sar_capa		*sar_capa;
9796b4cac81SBjoern A. Zeeb 	const struct wiphy_iftype_ext_capab	*iftype_ext_capab;
9806b4cac81SBjoern A. Zeeb 	const struct linuxkpi_ieee80211_regdomain *regd;
9812e183d99SBjoern A. Zeeb 	char					fw_version[ETHTOOL_FWVERS_LEN];
9826b4cac81SBjoern A. Zeeb 	const struct ieee80211_iface_combination *iface_combinations;
9836b4cac81SBjoern A. Zeeb 	const uint32_t				*cipher_suites;
9846b4cac81SBjoern A. Zeeb 	int					n_iface_combinations;
9856b4cac81SBjoern A. Zeeb 	int					n_cipher_suites;
9866b4cac81SBjoern A. Zeeb 	void(*reg_notifier)(struct wiphy *, struct regulatory_request *);
9876b4cac81SBjoern A. Zeeb 	enum cfg80211_regulatory		regulatory_flags;
9886b4cac81SBjoern A. Zeeb 	int					n_vendor_commands;
9896b4cac81SBjoern A. Zeeb 	const struct wiphy_vendor_command	*vendor_commands;
9906b4cac81SBjoern A. Zeeb 	const struct ieee80211_txrx_stypes	*mgmt_stypes;
9916b4cac81SBjoern A. Zeeb 	uint32_t				rts_threshold;
9926b4cac81SBjoern A. Zeeb 	uint32_t				frag_threshold;
9932e183d99SBjoern A. Zeeb 	struct tid_config_support		tid_config_support;
9946b4cac81SBjoern A. Zeeb 
9956b4cac81SBjoern A. Zeeb 	int	available_antennas_rx, available_antennas_tx;
9966b4cac81SBjoern A. Zeeb 	int	features, hw_version;
9976b4cac81SBjoern A. Zeeb 	int	interface_modes, max_match_sets, max_remain_on_channel_duration, max_scan_ie_len, max_scan_ssids, max_sched_scan_ie_len, max_sched_scan_plan_interval, max_sched_scan_plan_iterations, max_sched_scan_plans, max_sched_scan_reqs, max_sched_scan_ssids;
9986b4cac81SBjoern A. Zeeb 	int	num_iftype_ext_capab;
9996b4cac81SBjoern A. Zeeb 	int	max_ap_assoc_sta, probe_resp_offload, software_iftypes;
10006b4cac81SBjoern A. Zeeb 	int     bss_select_support, max_num_pmkids, retry_long, retry_short, signal_type;
10012e183d99SBjoern A. Zeeb 	int	max_data_retry_count;
1002d875aa15SBjoern A. Zeeb 	int     tx_queue_len, rfkill;
1003*b0f73768SBjoern A. Zeeb 	int	mbssid_max_interfaces;
10046b4cac81SBjoern A. Zeeb 
10056b4cac81SBjoern A. Zeeb 	unsigned long				ext_features[BITS_TO_LONGS(NUM_NL80211_EXT_FEATURES)];
10066b4cac81SBjoern A. Zeeb 	struct dentry				*debugfsdir;
10076b4cac81SBjoern A. Zeeb 	struct cfg80211_wowlan_support		*wowlan;
10086b4cac81SBjoern A. Zeeb 	/* Lower layer (driver/mac80211) specific data. */
10096b4cac81SBjoern A. Zeeb 	/* Must stay last. */
10106b4cac81SBjoern A. Zeeb 	uint8_t					priv[0] __aligned(CACHE_LINE_SIZE);
10116b4cac81SBjoern A. Zeeb };
10126b4cac81SBjoern A. Zeeb 
10136b4cac81SBjoern A. Zeeb struct wireless_dev {
10146b4cac81SBjoern A. Zeeb 		/* XXX TODO, like ic? */
10156b4cac81SBjoern A. Zeeb 	int		iftype;
10166b4cac81SBjoern A. Zeeb 	int     address;
10176b4cac81SBjoern A. Zeeb 	struct net_device			*netdev;
10186b4cac81SBjoern A. Zeeb 	struct wiphy				*wiphy;
10196b4cac81SBjoern A. Zeeb };
10206b4cac81SBjoern A. Zeeb 
10216b4cac81SBjoern A. Zeeb struct cfg80211_ops {
10226b4cac81SBjoern A. Zeeb 	/* XXX TODO */
10236b4cac81SBjoern A. Zeeb 	struct wireless_dev *(*add_virtual_intf)(struct wiphy *, const char *, unsigned char, enum nl80211_iftype, struct vif_params *);
10246b4cac81SBjoern A. Zeeb 	int (*del_virtual_intf)(struct wiphy *,  struct wireless_dev *);
10256b4cac81SBjoern A. Zeeb 	s32 (*change_virtual_intf)(struct wiphy *,  struct net_device *, enum nl80211_iftype, struct vif_params *);
10266b4cac81SBjoern A. Zeeb 	s32 (*scan)(struct wiphy *,  struct cfg80211_scan_request *);
10276b4cac81SBjoern A. Zeeb 	s32 (*set_wiphy_params)(struct wiphy *,  u32);
10286b4cac81SBjoern A. Zeeb 	s32 (*join_ibss)(struct wiphy *,  struct net_device *, struct cfg80211_ibss_params *);
10296b4cac81SBjoern A. Zeeb 	s32 (*leave_ibss)(struct wiphy *,  struct net_device *);
10306b4cac81SBjoern A. Zeeb 	s32 (*get_station)(struct wiphy *, struct net_device *, const u8 *, struct station_info *);
10316b4cac81SBjoern A. Zeeb 	int (*dump_station)(struct wiphy *,  struct net_device *, int,  u8 *,  struct station_info *);
10326b4cac81SBjoern A. Zeeb 	s32 (*set_tx_power)(struct wiphy *,  struct wireless_dev *, enum nl80211_tx_power_setting,  s32);
10336b4cac81SBjoern A. Zeeb 	s32 (*get_tx_power)(struct wiphy *,  struct wireless_dev *, s32 *);
10346b4cac81SBjoern A. Zeeb 	s32 (*add_key)(struct wiphy *,  struct net_device *, u8,  bool,  const u8 *, struct key_params *);
10356b4cac81SBjoern A. Zeeb 	s32 (*del_key)(struct wiphy *,  struct net_device *, u8,  bool,  const u8 *);
10366b4cac81SBjoern A. Zeeb 	s32 (*get_key)(struct wiphy *,  struct net_device *,  u8, bool,  const u8 *,  void *, void(*)(void *, struct key_params *));
10376b4cac81SBjoern A. Zeeb 	s32 (*set_default_key)(struct wiphy *,  struct net_device *, u8,  bool,  bool);
10386b4cac81SBjoern A. Zeeb 	s32 (*set_default_mgmt_key)(struct wiphy *, struct net_device *,  u8);
10396b4cac81SBjoern A. Zeeb 	s32 (*set_power_mgmt)(struct wiphy *,  struct net_device *, bool,  s32);
10406b4cac81SBjoern A. Zeeb 	s32 (*connect)(struct wiphy *,  struct net_device *, struct cfg80211_connect_params *);
10416b4cac81SBjoern A. Zeeb 	s32 (*disconnect)(struct wiphy *,  struct net_device *, u16);
10426b4cac81SBjoern A. Zeeb 	s32 (*suspend)(struct wiphy *, struct cfg80211_wowlan *);
10436b4cac81SBjoern A. Zeeb 	s32 (*resume)(struct wiphy *);
10446b4cac81SBjoern A. Zeeb 	s32 (*set_pmksa)(struct wiphy *, struct net_device *, struct cfg80211_pmksa *);
10456b4cac81SBjoern A. Zeeb 	s32 (*del_pmksa)(struct wiphy *, struct net_device *, struct cfg80211_pmksa *);
10466b4cac81SBjoern A. Zeeb 	s32 (*flush_pmksa)(struct wiphy *,  struct net_device *);
10476b4cac81SBjoern A. Zeeb 	s32 (*start_ap)(struct wiphy *,  struct net_device *, struct cfg80211_ap_settings *);
10486b4cac81SBjoern A. Zeeb 	int (*stop_ap)(struct wiphy *,  struct net_device *);
10496b4cac81SBjoern A. Zeeb 	s32 (*change_beacon)(struct wiphy *,  struct net_device *, struct cfg80211_beacon_data *);
10506b4cac81SBjoern A. Zeeb 	int (*del_station)(struct wiphy *,  struct net_device *, struct station_del_parameters *);
10516b4cac81SBjoern A. Zeeb 	int (*change_station)(struct wiphy *,  struct net_device *, const u8 *,  struct station_parameters *);
10526b4cac81SBjoern A. Zeeb 	int (*sched_scan_start)(struct wiphy *, struct net_device *, struct cfg80211_sched_scan_request *);
10536b4cac81SBjoern A. Zeeb 	int (*sched_scan_stop)(struct wiphy *, struct net_device *,  u64);
10546b4cac81SBjoern A. Zeeb 	void (*update_mgmt_frame_registrations)(struct wiphy *, struct wireless_dev *, struct mgmt_frame_regs *);
10556b4cac81SBjoern A. Zeeb 	int (*mgmt_tx)(struct wiphy *,  struct wireless_dev *, struct cfg80211_mgmt_tx_params *,  u64 *);
10566b4cac81SBjoern A. Zeeb 	int (*cancel_remain_on_channel)(struct wiphy *, struct wireless_dev *, u64);
10576b4cac81SBjoern A. Zeeb 	int (*get_channel)(struct wiphy *, struct wireless_dev *, struct cfg80211_chan_def *);
10586b4cac81SBjoern A. Zeeb 	int (*crit_proto_start)(struct wiphy *, struct wireless_dev *, enum nl80211_crit_proto_id, u16);
10596b4cac81SBjoern A. Zeeb 	void (*crit_proto_stop)(struct wiphy *, struct wireless_dev *);
10606b4cac81SBjoern A. Zeeb 	int (*tdls_oper)(struct wiphy *, struct net_device *,  const u8 *, enum nl80211_tdls_operation);
10616b4cac81SBjoern A. Zeeb 	int (*update_connect_params)(struct wiphy *, struct net_device *, struct cfg80211_connect_params *, u32);
10626b4cac81SBjoern A. Zeeb 	int (*set_pmk)(struct wiphy *,  struct net_device *, const struct cfg80211_pmk_conf *);
10636b4cac81SBjoern A. Zeeb 	int (*del_pmk)(struct wiphy *,  struct net_device *, const u8 *);
10646b4cac81SBjoern A. Zeeb 	int (*remain_on_channel)(struct wiphy *,  struct wireless_dev *, struct linuxkpi_ieee80211_channel *, unsigned int,  u64 *);
10656b4cac81SBjoern A. Zeeb 	int (*start_p2p_device)(struct wiphy *,  struct wireless_dev *);
10666b4cac81SBjoern A. Zeeb 	void (*stop_p2p_device)(struct wiphy *,  struct wireless_dev *);
10676b4cac81SBjoern A. Zeeb };
10686b4cac81SBjoern A. Zeeb 
10696b4cac81SBjoern A. Zeeb 
10706b4cac81SBjoern A. Zeeb /* -------------------------------------------------------------------------- */
10716b4cac81SBjoern A. Zeeb 
10726b4cac81SBjoern A. Zeeb /* linux_80211.c */
10736b4cac81SBjoern A. Zeeb 
10746b4cac81SBjoern A. Zeeb struct wiphy *linuxkpi_wiphy_new(const struct cfg80211_ops *, size_t);
10756b4cac81SBjoern A. Zeeb void linuxkpi_wiphy_free(struct wiphy *wiphy);
10766b4cac81SBjoern A. Zeeb 
10776b4cac81SBjoern A. Zeeb int linuxkpi_regulatory_set_wiphy_regd_sync(struct wiphy *wiphy,
10786b4cac81SBjoern A. Zeeb     struct linuxkpi_ieee80211_regdomain *regd);
10796b4cac81SBjoern A. Zeeb uint32_t linuxkpi_ieee80211_channel_to_frequency(uint32_t, enum nl80211_band);
10806b4cac81SBjoern A. Zeeb uint32_t linuxkpi_ieee80211_frequency_to_channel(uint32_t, uint32_t);
10812e183d99SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *
10822e183d99SBjoern A. Zeeb     linuxkpi_ieee80211_get_channel(struct wiphy *, uint32_t);
1083*b0f73768SBjoern A. Zeeb void linuxkpi_cfg80211_bss_flush(struct wiphy *);
10846b4cac81SBjoern A. Zeeb 
10856b4cac81SBjoern A. Zeeb /* -------------------------------------------------------------------------- */
10866b4cac81SBjoern A. Zeeb 
10876b4cac81SBjoern A. Zeeb static __inline struct wiphy *
10886b4cac81SBjoern A. Zeeb wiphy_new(const struct cfg80211_ops *ops, size_t priv_len)
10896b4cac81SBjoern A. Zeeb {
10906b4cac81SBjoern A. Zeeb 
10916b4cac81SBjoern A. Zeeb 	return (linuxkpi_wiphy_new(ops, priv_len));
10926b4cac81SBjoern A. Zeeb }
10936b4cac81SBjoern A. Zeeb 
10946b4cac81SBjoern A. Zeeb static __inline void
10956b4cac81SBjoern A. Zeeb wiphy_free(struct wiphy *wiphy)
10966b4cac81SBjoern A. Zeeb {
10976b4cac81SBjoern A. Zeeb 
10986b4cac81SBjoern A. Zeeb 	linuxkpi_wiphy_free(wiphy);
10996b4cac81SBjoern A. Zeeb }
11006b4cac81SBjoern A. Zeeb 
11016b4cac81SBjoern A. Zeeb static __inline void *
11026b4cac81SBjoern A. Zeeb wiphy_priv(struct wiphy *wiphy)
11036b4cac81SBjoern A. Zeeb {
11046b4cac81SBjoern A. Zeeb 
11056b4cac81SBjoern A. Zeeb 	return (wiphy->priv);
11066b4cac81SBjoern A. Zeeb }
11076b4cac81SBjoern A. Zeeb 
11086b4cac81SBjoern A. Zeeb static __inline void
11096b4cac81SBjoern A. Zeeb set_wiphy_dev(struct wiphy *wiphy, struct device *dev)
11106b4cac81SBjoern A. Zeeb {
11116b4cac81SBjoern A. Zeeb 
11126b4cac81SBjoern A. Zeeb 	wiphy->dev = dev;
11136b4cac81SBjoern A. Zeeb }
11146b4cac81SBjoern A. Zeeb 
11156b4cac81SBjoern A. Zeeb static __inline struct device *
11166b4cac81SBjoern A. Zeeb wiphy_dev(struct wiphy *wiphy)
11176b4cac81SBjoern A. Zeeb {
11186b4cac81SBjoern A. Zeeb 
11196b4cac81SBjoern A. Zeeb 	return (wiphy->dev);
11206b4cac81SBjoern A. Zeeb }
11216b4cac81SBjoern A. Zeeb 
11226b4cac81SBjoern A. Zeeb #define	wiphy_err(_wiphy, _fmt, ...)					\
11236b4cac81SBjoern A. Zeeb     dev_err((_wiphy)->dev, _fmt, __VA_ARGS__)
11246b4cac81SBjoern A. Zeeb 
11256b4cac81SBjoern A. Zeeb static __inline const struct linuxkpi_ieee80211_regdomain *
11266b4cac81SBjoern A. Zeeb wiphy_dereference(struct wiphy *wiphy,
11276b4cac81SBjoern A. Zeeb     const struct linuxkpi_ieee80211_regdomain *regd)
11286b4cac81SBjoern A. Zeeb {
11296b4cac81SBjoern A. Zeeb 	TODO();
11306b4cac81SBjoern A. Zeeb         return (NULL);
11316b4cac81SBjoern A. Zeeb }
11326b4cac81SBjoern A. Zeeb 
1133d875aa15SBjoern A. Zeeb static __inline void
1134d875aa15SBjoern A. Zeeb wiphy_lock(struct wiphy *wiphy)
1135d875aa15SBjoern A. Zeeb {
1136d875aa15SBjoern A. Zeeb 	TODO();
1137d875aa15SBjoern A. Zeeb }
1138d875aa15SBjoern A. Zeeb 
1139d875aa15SBjoern A. Zeeb static __inline void
1140d875aa15SBjoern A. Zeeb wiphy_unlock(struct wiphy *wiphy)
1141d875aa15SBjoern A. Zeeb {
1142d875aa15SBjoern A. Zeeb 	TODO();
1143d875aa15SBjoern A. Zeeb }
1144d875aa15SBjoern A. Zeeb 
1145d875aa15SBjoern A. Zeeb static __inline void
1146d875aa15SBjoern A. Zeeb wiphy_rfkill_set_hw_state_reason(struct wiphy *wiphy, bool blocked,
1147d875aa15SBjoern A. Zeeb     enum rfkill_hard_block_reasons reason)
1148d875aa15SBjoern A. Zeeb {
1149d875aa15SBjoern A. Zeeb 	TODO();
1150d875aa15SBjoern A. Zeeb }
1151d875aa15SBjoern A. Zeeb 
11526b4cac81SBjoern A. Zeeb /* -------------------------------------------------------------------------- */
11536b4cac81SBjoern A. Zeeb 
1154d875aa15SBjoern A. Zeeb static __inline bool
1155d875aa15SBjoern A. Zeeb rfkill_blocked(int rfkill)		/* argument type? */
1156d875aa15SBjoern A. Zeeb {
1157d875aa15SBjoern A. Zeeb 	TODO();
1158d875aa15SBjoern A. Zeeb 	return (false);
1159d875aa15SBjoern A. Zeeb }
1160d875aa15SBjoern A. Zeeb 
116105d6f4d6SBjoern A. Zeeb static __inline bool
116205d6f4d6SBjoern A. Zeeb rfkill_soft_blocked(int rfkill)
116305d6f4d6SBjoern A. Zeeb {
116405d6f4d6SBjoern A. Zeeb 	TODO();
116505d6f4d6SBjoern A. Zeeb 	return (false);
116605d6f4d6SBjoern A. Zeeb }
116705d6f4d6SBjoern A. Zeeb 
11686b4cac81SBjoern A. Zeeb static __inline int
11696b4cac81SBjoern A. Zeeb reg_query_regdb_wmm(uint8_t *alpha2, uint32_t center_freq,
11706b4cac81SBjoern A. Zeeb     struct ieee80211_reg_rule *rule)
11716b4cac81SBjoern A. Zeeb {
11726b4cac81SBjoern A. Zeeb 
11736b4cac81SBjoern A. Zeeb 	/* ETSI has special rules. FreeBSD regdb needs to learn about them. */
11746b4cac81SBjoern A. Zeeb 	TODO();
11756b4cac81SBjoern A. Zeeb 
11766b4cac81SBjoern A. Zeeb 	return (-ENXIO);
11776b4cac81SBjoern A. Zeeb }
11786b4cac81SBjoern A. Zeeb 
11796b4cac81SBjoern A. Zeeb static __inline const u8 *
11806b4cac81SBjoern A. Zeeb cfg80211_find_ie_match(uint32_t f, const u8 *ies, size_t ies_len,
11816b4cac81SBjoern A. Zeeb     const u8 *match, int x, int y)
11826b4cac81SBjoern A. Zeeb {
11836b4cac81SBjoern A. Zeeb 	TODO();
11846b4cac81SBjoern A. Zeeb 	return (NULL);
11856b4cac81SBjoern A. Zeeb }
11866b4cac81SBjoern A. Zeeb 
11876b4cac81SBjoern A. Zeeb static __inline const u8 *
1188*b0f73768SBjoern A. Zeeb cfg80211_find_ie(uint8_t eid, const uint8_t *ie, uint32_t ielen)
11896b4cac81SBjoern A. Zeeb {
11906b4cac81SBjoern A. Zeeb 	TODO();
11916b4cac81SBjoern A. Zeeb 	return (NULL);
11926b4cac81SBjoern A. Zeeb }
11936b4cac81SBjoern A. Zeeb 
11946b4cac81SBjoern A. Zeeb static __inline void
11956b4cac81SBjoern A. Zeeb cfg80211_pmsr_complete(struct wireless_dev *wdev,
11966b4cac81SBjoern A. Zeeb     struct cfg80211_pmsr_request *req, gfp_t gfp)
11976b4cac81SBjoern A. Zeeb {
11986b4cac81SBjoern A. Zeeb 	TODO();
11996b4cac81SBjoern A. Zeeb }
12006b4cac81SBjoern A. Zeeb 
12016b4cac81SBjoern A. Zeeb static __inline void
12026b4cac81SBjoern A. Zeeb cfg80211_pmsr_report(struct wireless_dev *wdev,
12036b4cac81SBjoern A. Zeeb     struct cfg80211_pmsr_request *req,
12046b4cac81SBjoern A. Zeeb     struct cfg80211_pmsr_result *result, gfp_t gfp)
12056b4cac81SBjoern A. Zeeb {
12066b4cac81SBjoern A. Zeeb 	TODO();
12076b4cac81SBjoern A. Zeeb }
12086b4cac81SBjoern A. Zeeb 
12096b4cac81SBjoern A. Zeeb static __inline void
12106b4cac81SBjoern A. Zeeb cfg80211_chandef_create(struct cfg80211_chan_def *chandef,
12116b4cac81SBjoern A. Zeeb     struct linuxkpi_ieee80211_channel *chan, enum nl80211_chan_flags chan_flag)
12126b4cac81SBjoern A. Zeeb {
12136b4cac81SBjoern A. Zeeb 
12146b4cac81SBjoern A. Zeeb 	KASSERT(chandef != NULL, ("%s: chandef is NULL\n", __func__));
12156b4cac81SBjoern A. Zeeb 	KASSERT(chan != NULL, ("%s: chan is NULL\n", __func__));
12166b4cac81SBjoern A. Zeeb 
12174a07abdeSBjoern A. Zeeb 	memset(chandef, 0, sizeof(*chandef));
12186b4cac81SBjoern A. Zeeb 	chandef->chan = chan;
12196b4cac81SBjoern A. Zeeb 	chandef->center_freq2 = 0;	/* Set here and only overwrite if needed. */
12206b4cac81SBjoern A. Zeeb 
12216b4cac81SBjoern A. Zeeb 	switch (chan_flag) {
12226b4cac81SBjoern A. Zeeb 	case NL80211_CHAN_NO_HT:
12236b4cac81SBjoern A. Zeeb 		chandef->width = NL80211_CHAN_WIDTH_20_NOHT;
12246b4cac81SBjoern A. Zeeb 		chandef->center_freq1 = chan->center_freq;
12256b4cac81SBjoern A. Zeeb 		break;
12266b4cac81SBjoern A. Zeeb 	default:
1227*b0f73768SBjoern A. Zeeb 		if (chan->flags & IEEE80211_CHAN_NO_HT40)
12286b4cac81SBjoern A. Zeeb 			chandef->width = NL80211_CHAN_WIDTH_20;
1229*b0f73768SBjoern A. Zeeb 		else if (chan->flags & IEEE80211_CHAN_NO_80MHZ)
1230*b0f73768SBjoern A. Zeeb 			chandef->width = NL80211_CHAN_WIDTH_40;
1231*b0f73768SBjoern A. Zeeb 		else if (chan->flags & IEEE80211_CHAN_NO_160MHZ)
1232*b0f73768SBjoern A. Zeeb 			chandef->width = NL80211_CHAN_WIDTH_80;
1233*b0f73768SBjoern A. Zeeb 		else {
1234*b0f73768SBjoern A. Zeeb 			chandef->width = NL80211_CHAN_WIDTH_160;
1235*b0f73768SBjoern A. Zeeb 			IMPROVE("80P80 and 320 ...");
1236*b0f73768SBjoern A. Zeeb 		}
12376b4cac81SBjoern A. Zeeb 		chandef->center_freq1 = chan->center_freq;
12386b4cac81SBjoern A. Zeeb 		break;
12396b4cac81SBjoern A. Zeeb 	};
12406b4cac81SBjoern A. Zeeb }
12416b4cac81SBjoern A. Zeeb 
12426b4cac81SBjoern A. Zeeb static __inline void
12436b4cac81SBjoern A. Zeeb cfg80211_bss_iter(struct wiphy *wiphy, struct cfg80211_chan_def *chandef,
12446b4cac81SBjoern A. Zeeb     void (*iterfunc)(struct wiphy *, struct cfg80211_bss *, void *), void *data)
12456b4cac81SBjoern A. Zeeb {
12466b4cac81SBjoern A. Zeeb 	TODO();
12476b4cac81SBjoern A. Zeeb }
12486b4cac81SBjoern A. Zeeb 
12496b4cac81SBjoern A. Zeeb struct element {
12506b4cac81SBjoern A. Zeeb 	uint8_t					id;
12516b4cac81SBjoern A. Zeeb 	uint8_t					datalen;
12526b4cac81SBjoern A. Zeeb 	uint8_t					data[0];
1253*b0f73768SBjoern A. Zeeb } __packed;
12546b4cac81SBjoern A. Zeeb 
12556b4cac81SBjoern A. Zeeb static __inline const struct element *
12566b4cac81SBjoern A. Zeeb cfg80211_find_elem(enum ieee80211_eid eid, uint8_t *data, size_t len)
12576b4cac81SBjoern A. Zeeb {
12586b4cac81SBjoern A. Zeeb 	TODO();
12596b4cac81SBjoern A. Zeeb 	return (NULL);
12606b4cac81SBjoern A. Zeeb }
12616b4cac81SBjoern A. Zeeb 
12626b4cac81SBjoern A. Zeeb static __inline uint32_t
12636b4cac81SBjoern A. Zeeb cfg80211_calculate_bitrate(struct rate_info *rate)
12646b4cac81SBjoern A. Zeeb {
12656b4cac81SBjoern A. Zeeb 	TODO();
12666b4cac81SBjoern A. Zeeb 	return (-1);
12676b4cac81SBjoern A. Zeeb }
12686b4cac81SBjoern A. Zeeb 
12696b4cac81SBjoern A. Zeeb static __inline uint32_t
12706b4cac81SBjoern A. Zeeb ieee80211_channel_to_frequency(uint32_t channel, enum nl80211_band band)
12716b4cac81SBjoern A. Zeeb {
12726b4cac81SBjoern A. Zeeb 
12736b4cac81SBjoern A. Zeeb 	return (linuxkpi_ieee80211_channel_to_frequency(channel, band));
12746b4cac81SBjoern A. Zeeb }
12756b4cac81SBjoern A. Zeeb 
12766b4cac81SBjoern A. Zeeb static __inline uint32_t
12776b4cac81SBjoern A. Zeeb ieee80211_frequency_to_channel(uint32_t freq)
12786b4cac81SBjoern A. Zeeb {
12796b4cac81SBjoern A. Zeeb 
12806b4cac81SBjoern A. Zeeb 	return (linuxkpi_ieee80211_frequency_to_channel(freq, 0));
12816b4cac81SBjoern A. Zeeb }
12826b4cac81SBjoern A. Zeeb 
12836b4cac81SBjoern A. Zeeb static __inline int
12846b4cac81SBjoern A. Zeeb regulatory_set_wiphy_regd_sync(struct wiphy *wiphy,
12856b4cac81SBjoern A. Zeeb     struct linuxkpi_ieee80211_regdomain *regd)
12866b4cac81SBjoern A. Zeeb {
12876b4cac81SBjoern A. Zeeb 	IMPROVE();
12886b4cac81SBjoern A. Zeeb 	return (linuxkpi_regulatory_set_wiphy_regd_sync(wiphy, regd));
12896b4cac81SBjoern A. Zeeb }
12906b4cac81SBjoern A. Zeeb 
12916b4cac81SBjoern A. Zeeb static __inline int
12926b4cac81SBjoern A. Zeeb regulatory_set_wiphy_regd_sync_rtnl(struct wiphy *wiphy,
12936b4cac81SBjoern A. Zeeb     struct linuxkpi_ieee80211_regdomain *regd)
12946b4cac81SBjoern A. Zeeb {
12956b4cac81SBjoern A. Zeeb 
12966b4cac81SBjoern A. Zeeb 	IMPROVE();
12976b4cac81SBjoern A. Zeeb 	return (linuxkpi_regulatory_set_wiphy_regd_sync(wiphy, regd));
12986b4cac81SBjoern A. Zeeb }
12996b4cac81SBjoern A. Zeeb 
13006b4cac81SBjoern A. Zeeb static __inline int
13016b4cac81SBjoern A. Zeeb regulatory_set_wiphy_regd(struct wiphy *wiphy,
13026b4cac81SBjoern A. Zeeb     struct linuxkpi_ieee80211_regdomain *regd)
13036b4cac81SBjoern A. Zeeb {
13046b4cac81SBjoern A. Zeeb 
13056b4cac81SBjoern A. Zeeb 	IMPROVE();
13066b4cac81SBjoern A. Zeeb 	if (regd == NULL)
13076b4cac81SBjoern A. Zeeb 		return (EINVAL);
13086b4cac81SBjoern A. Zeeb 
13096b4cac81SBjoern A. Zeeb 	/* XXX-BZ wild guessing here based on brcmfmac. */
13106b4cac81SBjoern A. Zeeb 	if (wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED)
13116b4cac81SBjoern A. Zeeb 		wiphy->regd = regd;
13126b4cac81SBjoern A. Zeeb 	else
13136b4cac81SBjoern A. Zeeb 		return (EPERM);
13146b4cac81SBjoern A. Zeeb 
13156b4cac81SBjoern A. Zeeb 	/* XXX FIXME, do we have to do anything with reg_notifier? */
13166b4cac81SBjoern A. Zeeb 	return (0);
13176b4cac81SBjoern A. Zeeb }
13186b4cac81SBjoern A. Zeeb 
13196b4cac81SBjoern A. Zeeb static __inline int
132051b461b3SBjoern A. Zeeb regulatory_hint(struct wiphy *wiphy, const uint8_t *alpha2)
13216b4cac81SBjoern A. Zeeb {
13226b4cac81SBjoern A. Zeeb 	TODO();
13236b4cac81SBjoern A. Zeeb 	return (-ENXIO);
13246b4cac81SBjoern A. Zeeb }
13256b4cac81SBjoern A. Zeeb 
13262e183d99SBjoern A. Zeeb static __inline const char *
13272e183d99SBjoern A. Zeeb reg_initiator_name(enum nl80211_reg_initiator initiator)
13282e183d99SBjoern A. Zeeb {
13292e183d99SBjoern A. Zeeb 	TODO();
13302e183d99SBjoern A. Zeeb 	return (NULL);
13312e183d99SBjoern A. Zeeb }
13322e183d99SBjoern A. Zeeb 
13336b4cac81SBjoern A. Zeeb static __inline struct linuxkpi_ieee80211_regdomain *
13346b4cac81SBjoern A. Zeeb rtnl_dereference(const struct linuxkpi_ieee80211_regdomain *regd)
13356b4cac81SBjoern A. Zeeb {
13366b4cac81SBjoern A. Zeeb 	TODO();
13376b4cac81SBjoern A. Zeeb 	return (NULL);
13386b4cac81SBjoern A. Zeeb }
13396b4cac81SBjoern A. Zeeb 
13406b4cac81SBjoern A. Zeeb static __inline struct ieee80211_reg_rule *
13416b4cac81SBjoern A. Zeeb freq_reg_info(struct wiphy *wiphy, uint32_t center_freq)
13426b4cac81SBjoern A. Zeeb {
13436b4cac81SBjoern A. Zeeb 	TODO();
13446b4cac81SBjoern A. Zeeb 	return (NULL);
13456b4cac81SBjoern A. Zeeb }
13466b4cac81SBjoern A. Zeeb 
13476b4cac81SBjoern A. Zeeb static __inline struct cfg80211_bss *
13486b4cac81SBjoern A. Zeeb cfg80211_get_bss(struct wiphy *wiphy, struct linuxkpi_ieee80211_channel *chan,
13496b4cac81SBjoern A. Zeeb     uint8_t *bssid, void *p, int x, uint32_t f1, uint32_t f2)
13506b4cac81SBjoern A. Zeeb {
13516b4cac81SBjoern A. Zeeb 	TODO();
13526b4cac81SBjoern A. Zeeb 	return (NULL);
13536b4cac81SBjoern A. Zeeb }
13546b4cac81SBjoern A. Zeeb 
13556b4cac81SBjoern A. Zeeb static __inline void
13566b4cac81SBjoern A. Zeeb cfg80211_put_bss(struct wiphy *wiphy, struct cfg80211_bss *bss)
13576b4cac81SBjoern A. Zeeb {
13586b4cac81SBjoern A. Zeeb 	TODO();
13596b4cac81SBjoern A. Zeeb }
13606b4cac81SBjoern A. Zeeb 
13616b4cac81SBjoern A. Zeeb static __inline void
13626b4cac81SBjoern A. Zeeb wiphy_apply_custom_regulatory(struct wiphy *wiphy,
13636b4cac81SBjoern A. Zeeb     const struct linuxkpi_ieee80211_regdomain *regd)
13646b4cac81SBjoern A. Zeeb {
13656b4cac81SBjoern A. Zeeb 	TODO();
13666b4cac81SBjoern A. Zeeb }
13676b4cac81SBjoern A. Zeeb 
13686b4cac81SBjoern A. Zeeb static __inline char *
13696b4cac81SBjoern A. Zeeb wiphy_name(struct wiphy *wiphy)
13706b4cac81SBjoern A. Zeeb {
13716b4cac81SBjoern A. Zeeb 	if (wiphy != NULL && wiphy->dev != NULL)
13726b4cac81SBjoern A. Zeeb 		return dev_name(wiphy->dev);
13732e183d99SBjoern A. Zeeb 	else {
13742e183d99SBjoern A. Zeeb 		IMPROVE("wlanNA");
13756b4cac81SBjoern A. Zeeb 		return ("wlanNA");
13766b4cac81SBjoern A. Zeeb 	}
13772e183d99SBjoern A. Zeeb }
13786b4cac81SBjoern A. Zeeb 
13796b4cac81SBjoern A. Zeeb static __inline void
13806b4cac81SBjoern A. Zeeb wiphy_read_of_freq_limits(struct wiphy *wiphy)
13816b4cac81SBjoern A. Zeeb {
13826b4cac81SBjoern A. Zeeb #ifdef FDT
13836b4cac81SBjoern A. Zeeb 	TODO();
13846b4cac81SBjoern A. Zeeb #endif
13856b4cac81SBjoern A. Zeeb }
13866b4cac81SBjoern A. Zeeb 
13876b4cac81SBjoern A. Zeeb static __inline uint8_t *
13886b4cac81SBjoern A. Zeeb cfg80211_find_vendor_ie(unsigned int oui, u8 oui_type,
13896b4cac81SBjoern A. Zeeb     uint8_t *data, size_t len)
13906b4cac81SBjoern A. Zeeb {
13916b4cac81SBjoern A. Zeeb 	TODO();
13926b4cac81SBjoern A. Zeeb 	return (NULL);
13936b4cac81SBjoern A. Zeeb }
13946b4cac81SBjoern A. Zeeb 
13956b4cac81SBjoern A. Zeeb static __inline void
13966b4cac81SBjoern A. Zeeb wiphy_ext_feature_set(struct wiphy *wiphy, enum nl80211_ext_feature ef)
13976b4cac81SBjoern A. Zeeb {
13986b4cac81SBjoern A. Zeeb 
13996b4cac81SBjoern A. Zeeb 	set_bit(ef, wiphy->ext_features);
14006b4cac81SBjoern A. Zeeb }
14016b4cac81SBjoern A. Zeeb 
14026b4cac81SBjoern A. Zeeb static __inline void *
14036b4cac81SBjoern A. Zeeb wiphy_net(struct wiphy *wiphy)
14046b4cac81SBjoern A. Zeeb {
14056b4cac81SBjoern A. Zeeb 	TODO();
14066b4cac81SBjoern A. Zeeb 	return (NULL);	/* XXX passed to dev_net_set() */
14076b4cac81SBjoern A. Zeeb }
14086b4cac81SBjoern A. Zeeb 
14096b4cac81SBjoern A. Zeeb static __inline int
14106b4cac81SBjoern A. Zeeb wiphy_register(struct wiphy *wiphy)
14116b4cac81SBjoern A. Zeeb {
14126b4cac81SBjoern A. Zeeb 	TODO();
14136b4cac81SBjoern A. Zeeb 	return (0);
14146b4cac81SBjoern A. Zeeb }
14156b4cac81SBjoern A. Zeeb 
14166b4cac81SBjoern A. Zeeb static __inline void
14176b4cac81SBjoern A. Zeeb wiphy_unregister(struct wiphy *wiphy)
14186b4cac81SBjoern A. Zeeb {
14196b4cac81SBjoern A. Zeeb 	TODO();
14206b4cac81SBjoern A. Zeeb }
14216b4cac81SBjoern A. Zeeb 
14226b4cac81SBjoern A. Zeeb static __inline void
14236b4cac81SBjoern A. Zeeb wiphy_warn(struct wiphy *wiphy, const char *fmt, ...)
14246b4cac81SBjoern A. Zeeb {
14256b4cac81SBjoern A. Zeeb 	TODO();
14266b4cac81SBjoern A. Zeeb }
14276b4cac81SBjoern A. Zeeb 
14286b4cac81SBjoern A. Zeeb static __inline int
14296b4cac81SBjoern A. Zeeb cfg80211_check_combinations(struct wiphy *wiphy,
14306b4cac81SBjoern A. Zeeb     struct iface_combination_params *params)
14316b4cac81SBjoern A. Zeeb {
14326b4cac81SBjoern A. Zeeb 	TODO();
14336b4cac81SBjoern A. Zeeb 	return (-ENOENT);
14346b4cac81SBjoern A. Zeeb }
14356b4cac81SBjoern A. Zeeb 
14366b4cac81SBjoern A. Zeeb static __inline uint8_t
14376b4cac81SBjoern A. Zeeb cfg80211_classify8021d(struct sk_buff *skb, void *p)
14386b4cac81SBjoern A. Zeeb {
14396b4cac81SBjoern A. Zeeb 	TODO();
14406b4cac81SBjoern A. Zeeb 	return (0);
14416b4cac81SBjoern A. Zeeb }
14426b4cac81SBjoern A. Zeeb 
14436b4cac81SBjoern A. Zeeb static __inline void
14446b4cac81SBjoern A. Zeeb cfg80211_connect_done(struct net_device *ndev,
14456b4cac81SBjoern A. Zeeb     struct cfg80211_connect_resp_params *conn_params, gfp_t gfp)
14466b4cac81SBjoern A. Zeeb {
14476b4cac81SBjoern A. Zeeb 	TODO();
14486b4cac81SBjoern A. Zeeb }
14496b4cac81SBjoern A. Zeeb 
14506b4cac81SBjoern A. Zeeb static __inline void
14516b4cac81SBjoern A. Zeeb cfg80211_crit_proto_stopped(struct wireless_dev *wdev, gfp_t gfp)
14526b4cac81SBjoern A. Zeeb {
14536b4cac81SBjoern A. Zeeb 	TODO();
14546b4cac81SBjoern A. Zeeb }
14556b4cac81SBjoern A. Zeeb 
14566b4cac81SBjoern A. Zeeb static __inline void
14576b4cac81SBjoern A. Zeeb cfg80211_disconnected(struct net_device *ndev, uint16_t reason,
14586b4cac81SBjoern A. Zeeb     void *p, int x, bool locally_generated, gfp_t gfp)
14596b4cac81SBjoern A. Zeeb {
14606b4cac81SBjoern A. Zeeb 	TODO();
14616b4cac81SBjoern A. Zeeb }
14626b4cac81SBjoern A. Zeeb 
14636b4cac81SBjoern A. Zeeb static __inline int
14646b4cac81SBjoern A. Zeeb cfg80211_get_p2p_attr(const u8 *ie, u32 ie_len,
14656b4cac81SBjoern A. Zeeb     enum ieee80211_p2p_attr_ids attr, u8 *p, size_t p_len)
14666b4cac81SBjoern A. Zeeb {
14676b4cac81SBjoern A. Zeeb 	TODO();
14686b4cac81SBjoern A. Zeeb 	return (-1);
14696b4cac81SBjoern A. Zeeb }
14706b4cac81SBjoern A. Zeeb 
14716b4cac81SBjoern A. Zeeb static __inline void
14726b4cac81SBjoern A. Zeeb cfg80211_ibss_joined(struct net_device *ndev, const uint8_t *addr,
14736b4cac81SBjoern A. Zeeb     struct linuxkpi_ieee80211_channel *chan, gfp_t gfp)
14746b4cac81SBjoern A. Zeeb {
14756b4cac81SBjoern A. Zeeb 	TODO();
14766b4cac81SBjoern A. Zeeb }
14776b4cac81SBjoern A. Zeeb 
14786b4cac81SBjoern A. Zeeb static __inline struct cfg80211_bss *
14796b4cac81SBjoern A. Zeeb cfg80211_inform_bss(struct wiphy *wiphy,
14806b4cac81SBjoern A. Zeeb     struct linuxkpi_ieee80211_channel *channel,
14812e183d99SBjoern A. Zeeb     enum cfg80211_bss_frame_type bss_ftype, const uint8_t *bss, int _x,
14826b4cac81SBjoern A. Zeeb     uint16_t cap, uint16_t intvl, const uint8_t *ie, size_t ie_len,
14836b4cac81SBjoern A. Zeeb     int signal, gfp_t gfp)
14846b4cac81SBjoern A. Zeeb {
14856b4cac81SBjoern A. Zeeb 	TODO();
14866b4cac81SBjoern A. Zeeb 	return (NULL);
14876b4cac81SBjoern A. Zeeb }
14886b4cac81SBjoern A. Zeeb 
14896b4cac81SBjoern A. Zeeb static __inline struct cfg80211_bss *
14906b4cac81SBjoern A. Zeeb cfg80211_inform_bss_data(struct wiphy *wiphy,
14916b4cac81SBjoern A. Zeeb     struct cfg80211_inform_bss *bss_data,
14922e183d99SBjoern A. Zeeb     enum cfg80211_bss_frame_type bss_ftype, const uint8_t *bss, int _x,
14936b4cac81SBjoern A. Zeeb     uint16_t cap, uint16_t intvl, const uint8_t *ie, size_t ie_len, gfp_t gfp)
14946b4cac81SBjoern A. Zeeb {
14956b4cac81SBjoern A. Zeeb 	TODO();
14966b4cac81SBjoern A. Zeeb 	return (NULL);
14976b4cac81SBjoern A. Zeeb }
14986b4cac81SBjoern A. Zeeb 
14996b4cac81SBjoern A. Zeeb static __inline void
15006b4cac81SBjoern A. Zeeb cfg80211_mgmt_tx_status(struct wireless_dev *wdev, uint64_t cookie,
15016b4cac81SBjoern A. Zeeb     const u8 *buf, size_t len, bool ack, gfp_t gfp)
15026b4cac81SBjoern A. Zeeb {
15036b4cac81SBjoern A. Zeeb 	TODO();
15046b4cac81SBjoern A. Zeeb }
15056b4cac81SBjoern A. Zeeb 
15066b4cac81SBjoern A. Zeeb static __inline void
15076b4cac81SBjoern A. Zeeb cfg80211_michael_mic_failure(struct net_device *ndev, const uint8_t *addr,
15086b4cac81SBjoern A. Zeeb     enum nl80211_key_type key_type, int _x, void *p, gfp_t gfp)
15096b4cac81SBjoern A. Zeeb {
15106b4cac81SBjoern A. Zeeb 	TODO();
15116b4cac81SBjoern A. Zeeb }
15126b4cac81SBjoern A. Zeeb 
15136b4cac81SBjoern A. Zeeb static __inline void
15146b4cac81SBjoern A. Zeeb cfg80211_new_sta(struct net_device *ndev, const uint8_t *addr,
15156b4cac81SBjoern A. Zeeb     struct station_info *sinfo, gfp_t gfp)
15166b4cac81SBjoern A. Zeeb {
15176b4cac81SBjoern A. Zeeb 	TODO();
15186b4cac81SBjoern A. Zeeb }
15196b4cac81SBjoern A. Zeeb 
15206b4cac81SBjoern A. Zeeb static __inline void
15216b4cac81SBjoern A. Zeeb cfg80211_del_sta(struct net_device *ndev, const uint8_t *addr, gfp_t gfp)
15226b4cac81SBjoern A. Zeeb {
15236b4cac81SBjoern A. Zeeb 	TODO();
15246b4cac81SBjoern A. Zeeb }
15256b4cac81SBjoern A. Zeeb 
15266b4cac81SBjoern A. Zeeb static __inline void
15276b4cac81SBjoern A. Zeeb cfg80211_port_authorized(struct net_device *ndev, const uint8_t *bssid,
15286b4cac81SBjoern A. Zeeb     gfp_t gfp)
15296b4cac81SBjoern A. Zeeb {
15306b4cac81SBjoern A. Zeeb 	TODO();
15316b4cac81SBjoern A. Zeeb }
15326b4cac81SBjoern A. Zeeb 
15336b4cac81SBjoern A. Zeeb static __inline void
15346b4cac81SBjoern A. Zeeb cfg80211_ready_on_channel(struct wireless_dev *wdev, uint64_t cookie,
15356b4cac81SBjoern A. Zeeb     struct linuxkpi_ieee80211_channel *channel, unsigned int duration,
15366b4cac81SBjoern A. Zeeb     gfp_t gfp)
15376b4cac81SBjoern A. Zeeb {
15386b4cac81SBjoern A. Zeeb 	TODO();
15396b4cac81SBjoern A. Zeeb }
15406b4cac81SBjoern A. Zeeb 
15416b4cac81SBjoern A. Zeeb static __inline void
15426b4cac81SBjoern A. Zeeb cfg80211_remain_on_channel_expired(struct wireless_dev *wdev,
15436b4cac81SBjoern A. Zeeb     uint64_t cookie, struct linuxkpi_ieee80211_channel *channel, gfp_t gfp)
15446b4cac81SBjoern A. Zeeb {
15456b4cac81SBjoern A. Zeeb 	TODO();
15466b4cac81SBjoern A. Zeeb }
15476b4cac81SBjoern A. Zeeb 
15486b4cac81SBjoern A. Zeeb static __inline void
15496b4cac81SBjoern A. Zeeb cfg80211_report_wowlan_wakeup(void)
15506b4cac81SBjoern A. Zeeb {
15516b4cac81SBjoern A. Zeeb 	TODO();
15526b4cac81SBjoern A. Zeeb }
15536b4cac81SBjoern A. Zeeb 
15546b4cac81SBjoern A. Zeeb static __inline void
15556b4cac81SBjoern A. Zeeb cfg80211_roamed(struct net_device *ndev, struct cfg80211_roam_info *roam_info,
15566b4cac81SBjoern A. Zeeb     gfp_t gfp)
15576b4cac81SBjoern A. Zeeb {
15586b4cac81SBjoern A. Zeeb 	TODO();
15596b4cac81SBjoern A. Zeeb }
15606b4cac81SBjoern A. Zeeb 
15616b4cac81SBjoern A. Zeeb static __inline void
15626b4cac81SBjoern A. Zeeb cfg80211_rx_mgmt(struct wireless_dev *wdev, int freq, int _x,
15636b4cac81SBjoern A. Zeeb     uint8_t *p, size_t p_len, int _x2)
15646b4cac81SBjoern A. Zeeb {
15656b4cac81SBjoern A. Zeeb 	TODO();
15666b4cac81SBjoern A. Zeeb }
15676b4cac81SBjoern A. Zeeb 
15686b4cac81SBjoern A. Zeeb static __inline void
15696b4cac81SBjoern A. Zeeb cfg80211_scan_done(struct cfg80211_scan_request *scan_request,
15706b4cac81SBjoern A. Zeeb     struct cfg80211_scan_info *info)
15716b4cac81SBjoern A. Zeeb {
15726b4cac81SBjoern A. Zeeb 	TODO();
15736b4cac81SBjoern A. Zeeb }
15746b4cac81SBjoern A. Zeeb 
15756b4cac81SBjoern A. Zeeb static __inline void
15766b4cac81SBjoern A. Zeeb cfg80211_sched_scan_results(struct wiphy *wiphy, uint64_t reqid)
15776b4cac81SBjoern A. Zeeb {
15786b4cac81SBjoern A. Zeeb 	TODO();
15796b4cac81SBjoern A. Zeeb }
15806b4cac81SBjoern A. Zeeb 
15816b4cac81SBjoern A. Zeeb static __inline void
15826b4cac81SBjoern A. Zeeb cfg80211_sched_scan_stopped(struct wiphy *wiphy, int _x)
15836b4cac81SBjoern A. Zeeb {
15846b4cac81SBjoern A. Zeeb 	TODO();
15856b4cac81SBjoern A. Zeeb }
15866b4cac81SBjoern A. Zeeb 
15876b4cac81SBjoern A. Zeeb static __inline void
15886b4cac81SBjoern A. Zeeb cfg80211_unregister_wdev(struct wireless_dev *wdev)
15896b4cac81SBjoern A. Zeeb {
15906b4cac81SBjoern A. Zeeb 	TODO();
15916b4cac81SBjoern A. Zeeb }
15926b4cac81SBjoern A. Zeeb 
15936b4cac81SBjoern A. Zeeb static __inline struct sk_buff *
15946b4cac81SBjoern A. Zeeb cfg80211_vendor_cmd_alloc_reply_skb(struct wiphy *wiphy, unsigned int len)
15956b4cac81SBjoern A. Zeeb {
15966b4cac81SBjoern A. Zeeb 	TODO();
15976b4cac81SBjoern A. Zeeb 	return (NULL);
15986b4cac81SBjoern A. Zeeb }
15996b4cac81SBjoern A. Zeeb 
16006b4cac81SBjoern A. Zeeb static __inline int
16016b4cac81SBjoern A. Zeeb cfg80211_vendor_cmd_reply(struct sk_buff *skb)
16026b4cac81SBjoern A. Zeeb {
16036b4cac81SBjoern A. Zeeb 	TODO();
16046b4cac81SBjoern A. Zeeb 	return (-ENXIO);
16056b4cac81SBjoern A. Zeeb }
16066b4cac81SBjoern A. Zeeb 
16076b4cac81SBjoern A. Zeeb static __inline struct linuxkpi_ieee80211_channel *
16086b4cac81SBjoern A. Zeeb ieee80211_get_channel(struct wiphy *wiphy, uint32_t freq)
16096b4cac81SBjoern A. Zeeb {
16102e183d99SBjoern A. Zeeb 
16112e183d99SBjoern A. Zeeb 	return (linuxkpi_ieee80211_get_channel(wiphy, freq));
16126b4cac81SBjoern A. Zeeb }
16136b4cac81SBjoern A. Zeeb 
16146b4cac81SBjoern A. Zeeb static __inline size_t
16156b4cac81SBjoern A. Zeeb ieee80211_get_hdrlen_from_skb(struct sk_buff *skb)
16166b4cac81SBjoern A. Zeeb {
16176b4cac81SBjoern A. Zeeb 
16186b4cac81SBjoern A. Zeeb 	TODO();
16196b4cac81SBjoern A. Zeeb 	return (-1);
16206b4cac81SBjoern A. Zeeb }
16216b4cac81SBjoern A. Zeeb 
16226b4cac81SBjoern A. Zeeb static __inline void
16236b4cac81SBjoern A. Zeeb cfg80211_bss_flush(struct wiphy *wiphy)
16246b4cac81SBjoern A. Zeeb {
1625*b0f73768SBjoern A. Zeeb 
1626*b0f73768SBjoern A. Zeeb 	linuxkpi_cfg80211_bss_flush(wiphy);
16276b4cac81SBjoern A. Zeeb }
16286b4cac81SBjoern A. Zeeb 
16296b4cac81SBjoern A. Zeeb static __inline bool
16306b4cac81SBjoern A. Zeeb cfg80211_channel_is_psc(struct linuxkpi_ieee80211_channel *channel)
16316b4cac81SBjoern A. Zeeb {
16326b4cac81SBjoern A. Zeeb 
16336b4cac81SBjoern A. Zeeb 	/* Only 6Ghz. */
16346b4cac81SBjoern A. Zeeb 	if (channel->band != NL80211_BAND_6GHZ)
16356b4cac81SBjoern A. Zeeb 		return (false);
16366b4cac81SBjoern A. Zeeb 
16376b4cac81SBjoern A. Zeeb 	TODO();
16386b4cac81SBjoern A. Zeeb 	return (false);
16396b4cac81SBjoern A. Zeeb }
16406b4cac81SBjoern A. Zeeb 
16412e183d99SBjoern A. Zeeb static __inline int
16422e183d99SBjoern A. Zeeb cfg80211_get_ies_channel_number(const uint8_t *ie, size_t len,
16432e183d99SBjoern A. Zeeb     enum nl80211_band band, enum cfg80211_bss_frame_type ftype)
16442e183d99SBjoern A. Zeeb {
16452e183d99SBjoern A. Zeeb 
16462e183d99SBjoern A. Zeeb 	TODO();
16472e183d99SBjoern A. Zeeb 	return (-1);
16482e183d99SBjoern A. Zeeb }
16496b4cac81SBjoern A. Zeeb 
16506b4cac81SBjoern A. Zeeb /* Used for scanning at least. */
16516b4cac81SBjoern A. Zeeb static __inline void
16526b4cac81SBjoern A. Zeeb get_random_mask_addr(uint8_t *dst, const uint8_t *addr, const uint8_t *mask)
16536b4cac81SBjoern A. Zeeb {
16546b4cac81SBjoern A. Zeeb 	int i;
16556b4cac81SBjoern A. Zeeb 
16566b4cac81SBjoern A. Zeeb 	/* Get a completely random address and then overlay what we want. */
16576b4cac81SBjoern A. Zeeb 	get_random_bytes(dst, ETH_ALEN);
16586b4cac81SBjoern A. Zeeb 	for (i = 0; i < ETH_ALEN; i++)
16596b4cac81SBjoern A. Zeeb 		dst[i] = (dst[i] & ~(mask[i])) | (addr[i] & mask[i]);
16606b4cac81SBjoern A. Zeeb }
16616b4cac81SBjoern A. Zeeb 
1662d875aa15SBjoern A. Zeeb static __inline void
1663d875aa15SBjoern A. Zeeb cfg80211_shutdown_all_interfaces(struct wiphy *wiphy)
1664d875aa15SBjoern A. Zeeb {
1665d875aa15SBjoern A. Zeeb 	TODO();
1666d875aa15SBjoern A. Zeeb }
1667d875aa15SBjoern A. Zeeb 
1668*b0f73768SBjoern A. Zeeb static __inline bool
1669*b0f73768SBjoern A. Zeeb cfg80211_reg_can_beacon(struct wiphy *wiphy, struct cfg80211_chan_def *chandef,
1670*b0f73768SBjoern A. Zeeb     enum nl80211_iftype iftype)
1671*b0f73768SBjoern A. Zeeb {
1672*b0f73768SBjoern A. Zeeb 	TODO();
1673*b0f73768SBjoern A. Zeeb 	return (false);
1674*b0f73768SBjoern A. Zeeb }
1675*b0f73768SBjoern A. Zeeb 
1676*b0f73768SBjoern A. Zeeb static __inline void
1677*b0f73768SBjoern A. Zeeb cfg80211_background_radar_event(struct wiphy *wiphy,
1678*b0f73768SBjoern A. Zeeb     struct cfg80211_chan_def *chandef, gfp_t gfp)
1679*b0f73768SBjoern A. Zeeb {
1680*b0f73768SBjoern A. Zeeb 	TODO();
1681*b0f73768SBjoern A. Zeeb }
1682*b0f73768SBjoern A. Zeeb 
1683*b0f73768SBjoern A. Zeeb static __inline const u8 *
1684*b0f73768SBjoern A. Zeeb cfg80211_find_ext_ie(uint8_t eid, uint8_t *p, size_t len)
1685*b0f73768SBjoern A. Zeeb {
1686*b0f73768SBjoern A. Zeeb 	TODO();
1687*b0f73768SBjoern A. Zeeb 	return (NULL);
1688*b0f73768SBjoern A. Zeeb }
1689*b0f73768SBjoern A. Zeeb 
1690*b0f73768SBjoern A. Zeeb static __inline bool
1691*b0f73768SBjoern A. Zeeb cfg80211_chandef_valid(const struct cfg80211_chan_def *chandef)
1692*b0f73768SBjoern A. Zeeb {
1693*b0f73768SBjoern A. Zeeb 	TODO();
1694*b0f73768SBjoern A. Zeeb 	return (false);
1695*b0f73768SBjoern A. Zeeb }
1696*b0f73768SBjoern A. Zeeb 
1697*b0f73768SBjoern A. Zeeb #define	wiphy_info(wiphy, fmt, ...)					\
1698*b0f73768SBjoern A. Zeeb 	printf("%s:%d XXX TODO " fmt, __func__, __LINE__, __VA_ARGS__)
1699*b0f73768SBjoern A. Zeeb 
17006b4cac81SBjoern A. Zeeb #ifndef LINUXKPI_NET80211
17016b4cac81SBjoern A. Zeeb #define	ieee80211_channel		linuxkpi_ieee80211_channel
17026b4cac81SBjoern A. Zeeb #define	ieee80211_regdomain		linuxkpi_ieee80211_regdomain
17036b4cac81SBjoern A. Zeeb /* net80211::IEEE80211_VHT_MCS_SUPPORT_0_n() conflicts */
17046b4cac81SBjoern A. Zeeb #if defined(IEEE80211_VHT_MCS_SUPPORT_0_7)
17056b4cac81SBjoern A. Zeeb #undef	IEEE80211_VHT_MCS_SUPPORT_0_7
17066b4cac81SBjoern A. Zeeb #endif
17076b4cac81SBjoern A. Zeeb #if defined(IEEE80211_VHT_MCS_SUPPORT_0_8)
17086b4cac81SBjoern A. Zeeb #undef	IEEE80211_VHT_MCS_SUPPORT_0_8
17096b4cac81SBjoern A. Zeeb #endif
17106b4cac81SBjoern A. Zeeb #if defined(IEEE80211_VHT_MCS_SUPPORT_0_9)
17116b4cac81SBjoern A. Zeeb #undef	IEEE80211_VHT_MCS_SUPPORT_0_9
17126b4cac81SBjoern A. Zeeb #endif
17136b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_MCS_SUPPORT_0_7	LKPI_IEEE80211_VHT_MCS_SUPPORT_0_7
17146b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_MCS_SUPPORT_0_8	LKPI_IEEE80211_VHT_MCS_SUPPORT_0_8
17156b4cac81SBjoern A. Zeeb #define	IEEE80211_VHT_MCS_SUPPORT_0_9	LKPI_IEEE80211_VHT_MCS_SUPPORT_0_9
17166b4cac81SBjoern A. Zeeb #endif
17176b4cac81SBjoern A. Zeeb 
17186b4cac81SBjoern A. Zeeb #endif	/* _LINUXKPI_NET_CFG80211_H */
1719