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 */ 47*9d9ba2b7SBjoern 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 54*9d9ba2b7SBjoern A. Zeeb #define TODO() if (linuxkpi_debug_80211 & D80211_TODO) \ 556b4cac81SBjoern A. Zeeb printf("%s:%d: XXX LKPI80211 TODO\n", __func__, __LINE__) 56*9d9ba2b7SBjoern 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]; 826b4cac81SBjoern A. Zeeb 832e183d99SBjoern A. Zeeb enum ieee80211_privacy { 842e183d99SBjoern A. Zeeb IEEE80211_PRIVACY_ANY, 852e183d99SBjoern A. Zeeb }; 862e183d99SBjoern A. Zeeb 872e183d99SBjoern A. Zeeb enum ieee80211_bss_type { 882e183d99SBjoern A. Zeeb IEEE80211_BSS_TYPE_ANY, 892e183d99SBjoern A. Zeeb }; 902e183d99SBjoern A. Zeeb 912e183d99SBjoern A. Zeeb enum cfg80211_bss_frame_type { 926b4cac81SBjoern A. Zeeb CFG80211_BSS_FTYPE_UNKNOWN, 932e183d99SBjoern A. Zeeb CFG80211_BSS_FTYPE_BEACON, 942e183d99SBjoern A. Zeeb CFG80211_BSS_FTYPE_PRESP, 956b4cac81SBjoern A. Zeeb }; 966b4cac81SBjoern A. Zeeb 976b4cac81SBjoern A. Zeeb enum ieee80211_channel_flags { 98d7ce88aaSBjoern A. Zeeb IEEE80211_CHAN_DISABLED = BIT(0), 99d7ce88aaSBjoern A. Zeeb IEEE80211_CHAN_INDOOR_ONLY = BIT(1), 100d7ce88aaSBjoern A. Zeeb IEEE80211_CHAN_IR_CONCURRENT = BIT(2), 101d7ce88aaSBjoern A. Zeeb IEEE80211_CHAN_RADAR = BIT(3), 102d7ce88aaSBjoern A. Zeeb IEEE80211_CHAN_NO_IR = BIT(4), 103d7ce88aaSBjoern A. Zeeb IEEE80211_CHAN_NO_HT40MINUS = BIT(5), 104d7ce88aaSBjoern A. Zeeb IEEE80211_CHAN_NO_HT40PLUS = BIT(6), 105d7ce88aaSBjoern A. Zeeb IEEE80211_CHAN_NO_80MHZ = BIT(7), 106d7ce88aaSBjoern A. Zeeb IEEE80211_CHAN_NO_160MHZ = BIT(8), 1072e183d99SBjoern A. Zeeb IEEE80211_CHAN_NO_OFDM = BIT(9), 1086b4cac81SBjoern A. Zeeb }; 1096b4cac81SBjoern A. Zeeb #define IEEE80211_CHAN_NO_HT40 (IEEE80211_CHAN_NO_HT40MINUS|IEEE80211_CHAN_NO_HT40PLUS) 1106b4cac81SBjoern A. Zeeb 1116b4cac81SBjoern A. Zeeb struct ieee80211_txrx_stypes { 1126b4cac81SBjoern A. Zeeb uint16_t tx; 1136b4cac81SBjoern A. Zeeb uint16_t rx; 1146b4cac81SBjoern A. Zeeb }; 1156b4cac81SBjoern A. Zeeb 1166b4cac81SBjoern A. Zeeb /* XXX net80211 has an ieee80211_channel as well. */ 1176b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel { 1186b4cac81SBjoern A. Zeeb /* TODO FIXME */ 1196b4cac81SBjoern A. Zeeb uint32_t hw_value; /* ic_ieee */ 1206b4cac81SBjoern A. Zeeb uint32_t center_freq; /* ic_freq */ 1216b4cac81SBjoern A. Zeeb enum ieee80211_channel_flags flags; /* ic_flags */ 1226b4cac81SBjoern A. Zeeb enum nl80211_band band; 1236b4cac81SBjoern A. Zeeb int8_t max_power; /* ic_maxpower */ 1246b4cac81SBjoern A. Zeeb bool beacon_found; 1256b4cac81SBjoern A. Zeeb int max_antenna_gain, max_reg_power; 1266b4cac81SBjoern A. Zeeb int orig_flags; 1272e183d99SBjoern A. Zeeb int dfs_cac_ms, dfs_state; 1286b4cac81SBjoern A. Zeeb }; 1296b4cac81SBjoern A. Zeeb 1302e183d99SBjoern A. Zeeb /* XXX net80211 calls these IEEE80211_HTCAP_* */ 1312e183d99SBjoern A. Zeeb #define IEEE80211_HT_CAP_LDPC_CODING 0x0001 /* IEEE80211_HTCAP_LDPC */ 1322e183d99SBjoern A. Zeeb #define IEEE80211_HT_CAP_SUP_WIDTH_20_40 0x0002 /* IEEE80211_HTCAP_CHWIDTH40 */ 1332e183d99SBjoern A. Zeeb #define IEEE80211_HT_CAP_GRN_FLD 0x0010 /* IEEE80211_HTCAP_GREENFIELD */ 1342e183d99SBjoern A. Zeeb #define IEEE80211_HT_CAP_SGI_20 0x0020 /* IEEE80211_HTCAP_SHORTGI20 */ 1352e183d99SBjoern A. Zeeb #define IEEE80211_HT_CAP_SGI_40 0x0040 /* IEEE80211_HTCAP_SHORTGI40 */ 1362e183d99SBjoern A. Zeeb #define IEEE80211_HT_CAP_TX_STBC 0x0080 /* IEEE80211_HTCAP_TXSTBC */ 1372e183d99SBjoern A. Zeeb #define IEEE80211_HT_CAP_RX_STBC 0x0100 /* IEEE80211_HTCAP_RXSTBC */ 1382e183d99SBjoern A. Zeeb #define IEEE80211_HT_CAP_RX_STBC_SHIFT 8 /* IEEE80211_HTCAP_RXSTBC_S */ 1392e183d99SBjoern A. Zeeb #define IEEE80211_HT_CAP_MAX_AMSDU 0x0800 /* IEEE80211_HTCAP_MAXAMSDU */ 1402e183d99SBjoern A. Zeeb #define IEEE80211_HT_CAP_DSSSCCK40 0x1000 /* IEEE80211_HTCAP_DSSSCCK40 */ 1412e183d99SBjoern A. Zeeb #define IEEE80211_HT_CAP_SM_PS 0x000c /* IEEE80211_HTCAP_SMPS */ 1422e183d99SBjoern A. Zeeb #define IEEE80211_HT_CAP_SM_PS_SHIFT 2 1432e183d99SBjoern A. Zeeb #define IEEE80211_HT_CAP_LSIG_TXOP_PROT 0x8000 /* IEEE80211_HTCAP_LSIGTXOPPROT */ 1442e183d99SBjoern A. Zeeb 1452e183d99SBjoern A. Zeeb #define IEEE80211_HT_MCS_TX_DEFINED 0x0001 1462e183d99SBjoern A. Zeeb #define IEEE80211_HT_MCS_TX_RX_DIFF 0x0002 1472e183d99SBjoern A. Zeeb #define IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT 2 1482e183d99SBjoern A. Zeeb #define IEEE80211_HT_MCS_RX_HIGHEST_MASK 0x3FF 1492e183d99SBjoern A. Zeeb #define IEEE80211_HT_MCS_MASK_LEN 10 1502e183d99SBjoern A. Zeeb 1516b4cac81SBjoern A. Zeeb enum ieee80211_vht_mcs_support { 1526b4cac81SBjoern A. Zeeb LKPI_IEEE80211_VHT_MCS_SUPPORT_0_7, 1536b4cac81SBjoern A. Zeeb LKPI_IEEE80211_VHT_MCS_SUPPORT_0_8, 1546b4cac81SBjoern A. Zeeb LKPI_IEEE80211_VHT_MCS_SUPPORT_0_9, 1556b4cac81SBjoern A. Zeeb }; 1566b4cac81SBjoern A. Zeeb 1576b4cac81SBjoern A. Zeeb struct cfg80211_bitrate_mask { 1586b4cac81SBjoern A. Zeeb /* TODO FIXME */ 1596b4cac81SBjoern A. Zeeb /* This is so weird but nothing else works out...*/ 1606b4cac81SBjoern A. Zeeb struct { 1616b4cac81SBjoern A. Zeeb uint64_t legacy; /* XXX? */ 1622e183d99SBjoern A. Zeeb uint8_t ht_mcs[IEEE80211_HT_MCS_MASK_LEN]; 1636b4cac81SBjoern A. Zeeb uint16_t vht_mcs[16]; /* XXX? */ 16451b461b3SBjoern A. Zeeb uint16_t he_mcs[16]; /* XXX? */ 1652e183d99SBjoern A. Zeeb enum nl80211_txrate_gi gi; 1666b4cac81SBjoern A. Zeeb } control[NUM_NL80211_BANDS]; 1676b4cac81SBjoern A. Zeeb }; 1686b4cac81SBjoern A. Zeeb 1696b4cac81SBjoern A. Zeeb struct rate_info { 1706b4cac81SBjoern A. Zeeb /* TODO FIXME */ 1716b4cac81SBjoern A. Zeeb int bw, flags, he_dcm, he_gi, he_ru_alloc, legacy, mcs, nss; 1726b4cac81SBjoern A. Zeeb }; 1736b4cac81SBjoern A. Zeeb 1746b4cac81SBjoern A. Zeeb struct ieee80211_rate { 1756b4cac81SBjoern A. Zeeb /* TODO FIXME */ 1766b4cac81SBjoern A. Zeeb uint32_t bitrate; 1776b4cac81SBjoern A. Zeeb uint32_t hw_value; 1786b4cac81SBjoern A. Zeeb uint32_t hw_value_short; 1796b4cac81SBjoern A. Zeeb uint32_t flags; 1806b4cac81SBjoern A. Zeeb }; 1816b4cac81SBjoern A. Zeeb 1826b4cac81SBjoern A. Zeeb struct ieee80211_sta_ht_cap { 1836b4cac81SBjoern A. Zeeb /* TODO FIXME */ 1846b4cac81SBjoern A. Zeeb int ampdu_density, ampdu_factor; 1856b4cac81SBjoern A. Zeeb bool ht_supported; 1866b4cac81SBjoern A. Zeeb uint16_t cap; 1876b4cac81SBjoern A. Zeeb struct mcs { 1882e183d99SBjoern A. Zeeb uint16_t rx_mask[IEEE80211_HT_MCS_MASK_LEN]; /* XXX ? > 4 (rtw88) */ 1896b4cac81SBjoern A. Zeeb int rx_highest; 1906b4cac81SBjoern A. Zeeb uint32_t tx_params; 1916b4cac81SBjoern A. Zeeb } mcs; 1926b4cac81SBjoern A. Zeeb }; 1936b4cac81SBjoern A. Zeeb 1946b4cac81SBjoern A. Zeeb /* XXX net80211 calls these IEEE80211_VHTCAP_* */ 1956b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_3895 0x00000000 /* IEEE80211_VHTCAP_MAX_MPDU_LENGTH_3895 */ 1966b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_7991 0x00000001 /* IEEE80211_VHTCAP_MAX_MPDU_LENGTH_7991 */ 1976b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_11454 0x00000002 /* IEEE80211_VHTCAP_MAX_MPDU_LENGTH_11454 */ 1986b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_MAX_MPDU_MASK 0x00000003 /* IEEE80211_VHTCAP_MAX_MPDU_MASK */ 1996b4cac81SBjoern A. Zeeb 2006b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ (IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_160MHZ << IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_MASK_S) 2012e183d99SBjoern 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) 2022e183d99SBjoern A. Zeeb #define IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_MASK 0x0000000c /* IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_MASK */ 2036b4cac81SBjoern A. Zeeb 2046b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_RXLDPC 0x00000010 /* IEEE80211_VHTCAP_RXLDPC */ 2056b4cac81SBjoern A. Zeeb 2066b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_SHORT_GI_80 0x00000020 /* IEEE80211_VHTCAP_SHORT_GI_80 */ 2076b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_SHORT_GI_160 0x00000040 /* IEEE80211_VHTCAP_SHORT_GI_160 */ 2086b4cac81SBjoern A. Zeeb 2096b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_TXSTBC 0x00000080 /* IEEE80211_VHTCAP_TXSTBC */ 2106b4cac81SBjoern A. Zeeb 2116b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_RXSTBC_1 0x00000100 /* IEEE80211_VHTCAP_RXSTBC_1 */ 2126b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_RXSTBC_MASK 0x00000700 /* IEEE80211_VHTCAP_RXSTBC_MASK */ 2136b4cac81SBjoern A. Zeeb 2146b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE 0x00000800 /* IEEE80211_VHTCAP_SU_BEAMFORMER_CAPABLE */ 2156b4cac81SBjoern A. Zeeb 2166b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_SU_BEAMFORMEE_CAPABLE 0x00001000 /* IEEE80211_VHTCAP_SU_BEAMFORMEE_CAPABLE */ 2176b4cac81SBjoern A. Zeeb 2186b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_MU_BEAMFORMER_CAPABLE 0x00080000 /* IEEE80211_VHTCAP_MU_BEAMFORMER_CAPABLE */ 2196b4cac81SBjoern A. Zeeb 2206b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_MU_BEAMFORMEE_CAPABLE 0x00100000 /* IEEE80211_VHTCAP_MU_BEAMFORMEE_CAPABLE */ 2216b4cac81SBjoern A. Zeeb 2226b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_BEAMFORMEE_STS_SHIFT 13 /* IEEE80211_VHTCAP_BEAMFORMEE_STS_SHIFT */ 2232e183d99SBjoern A. Zeeb #define IEEE80211_VHT_CAP_BEAMFORMEE_STS_MASK (7 << IEEE80211_VHT_CAP_BEAMFORMEE_STS_SHIFT) /* IEEE80211_VHTCAP_BEAMFORMEE_STS_MASK */ 2246b4cac81SBjoern A. Zeeb 2256b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_HTC_VHT 0x00400000 /* IEEE80211_VHTCAP_HTC_VHT */ 2266b4cac81SBjoern A. Zeeb 2276b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_RX_ANTENNA_PATTERN 0x10000000 /* IEEE80211_VHTCAP_RX_ANTENNA_PATTERN */ 2286b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_TX_ANTENNA_PATTERN 0x20000000 /* IEEE80211_VHTCAP_TX_ANTENNA_PATTERN */ 2296b4cac81SBjoern A. Zeeb 2306b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_VHT_LINK_ADAPTATION_VHT_MRQ_MFB 0x0c000000 /* IEEE80211_VHTCAP_VHT_LINK_ADAPTATION_VHT_MRQ_MFB */ 2316b4cac81SBjoern A. Zeeb 2326b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_SOUNDING_DIMENSIONS_SHIFT 16 /* IEEE80211_VHTCAP_SOUNDING_DIMENSIONS_SHIFT */ 2336b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_SOUNDING_DIMENSIONS_MASK \ 2346b4cac81SBjoern A. Zeeb (7 << IEEE80211_VHTCAP_SOUNDING_DIMENSIONS_SHIFT) /* IEEE80211_VHTCAP_SOUNDING_DIMENSIONS_MASK */ 2356b4cac81SBjoern A. Zeeb 2366b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_SHIFT 23 /* IEEE80211_VHTCAP_MAX_A_MPDU_LENGTH_EXPONENT_SHIFT */ 2376b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MASK \ 2386b4cac81SBjoern A. Zeeb (7 << IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_SHIFT) /* IEEE80211_VHTCAP_MAX_A_MPDU_LENGTH_EXPONENT_MASK */ 2396b4cac81SBjoern A. Zeeb 2402e183d99SBjoern A. Zeeb 2416b4cac81SBjoern A. Zeeb struct ieee80211_sta_vht_cap { 2426b4cac81SBjoern A. Zeeb /* TODO FIXME */ 2436b4cac81SBjoern A. Zeeb bool vht_supported; 2446b4cac81SBjoern A. Zeeb uint32_t cap; 2456b4cac81SBjoern A. Zeeb struct vht_mcs vht_mcs; 2466b4cac81SBjoern A. Zeeb }; 2476b4cac81SBjoern A. Zeeb 2486b4cac81SBjoern A. Zeeb struct cfg80211_connect_resp_params { 2496b4cac81SBjoern A. Zeeb /* XXX TODO */ 2506b4cac81SBjoern A. Zeeb uint8_t *bssid; 2516b4cac81SBjoern A. Zeeb const uint8_t *req_ie; 2526b4cac81SBjoern A. Zeeb const uint8_t *resp_ie; 2536b4cac81SBjoern A. Zeeb uint32_t req_ie_len; 2546b4cac81SBjoern A. Zeeb uint32_t resp_ie_len; 2556b4cac81SBjoern A. Zeeb int status; 2566b4cac81SBjoern A. Zeeb }; 2576b4cac81SBjoern A. Zeeb 2586b4cac81SBjoern A. Zeeb struct cfg80211_inform_bss { 2596b4cac81SBjoern A. Zeeb /* XXX TODO */ 2606b4cac81SBjoern A. Zeeb int boottime_ns, scan_width, signal; 2616b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *chan; 2626b4cac81SBjoern A. Zeeb }; 2636b4cac81SBjoern A. Zeeb 2646b4cac81SBjoern A. Zeeb struct cfg80211_roam_info { 2656b4cac81SBjoern A. Zeeb /* XXX TODO */ 2666b4cac81SBjoern A. Zeeb uint8_t *bssid; 2676b4cac81SBjoern A. Zeeb const uint8_t *req_ie; 2686b4cac81SBjoern A. Zeeb const uint8_t *resp_ie; 2696b4cac81SBjoern A. Zeeb uint32_t req_ie_len; 2706b4cac81SBjoern A. Zeeb uint32_t resp_ie_len; 2716b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *channel; 2726b4cac81SBjoern A. Zeeb }; 2736b4cac81SBjoern A. Zeeb 2746b4cac81SBjoern A. Zeeb struct cfg80211_bss_ies { 2756b4cac81SBjoern A. Zeeb /* XXX TODO, type is best guess. Fix if more info. */ 2766b4cac81SBjoern A. Zeeb uint8_t *data; 2776b4cac81SBjoern A. Zeeb int len; 2786b4cac81SBjoern A. Zeeb }; 2796b4cac81SBjoern A. Zeeb 2806b4cac81SBjoern A. Zeeb struct cfg80211_bss { 2816b4cac81SBjoern A. Zeeb /* XXX TODO */ 2826b4cac81SBjoern A. Zeeb struct cfg80211_bss_ies *ies; 2836b4cac81SBjoern A. Zeeb }; 2846b4cac81SBjoern A. Zeeb 2856b4cac81SBjoern A. Zeeb struct cfg80211_chan_def { 2866b4cac81SBjoern A. Zeeb /* XXX TODO */ 2876b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *chan; 2886b4cac81SBjoern A. Zeeb enum nl80211_chan_width width; 2896b4cac81SBjoern A. Zeeb uint32_t center_freq1; 2906b4cac81SBjoern A. Zeeb uint32_t center_freq2; 2916b4cac81SBjoern A. Zeeb }; 2926b4cac81SBjoern A. Zeeb 2936b4cac81SBjoern A. Zeeb struct cfg80211_ftm_responder_stats { 2946b4cac81SBjoern A. Zeeb /* XXX TODO */ 2956b4cac81SBjoern 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; 2966b4cac81SBjoern A. Zeeb }; 2976b4cac81SBjoern A. Zeeb 2986b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_capabilities { 2996b4cac81SBjoern A. Zeeb /* XXX TODO */ 3006b4cac81SBjoern A. Zeeb int max_peers, randomize_mac_addr, report_ap_tsf; 3016b4cac81SBjoern A. Zeeb struct { 3026b4cac81SBjoern 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; 3036b4cac81SBjoern A. Zeeb } ftm; 3046b4cac81SBjoern A. Zeeb }; 3056b4cac81SBjoern A. Zeeb 3066b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_ftm_request { 3076b4cac81SBjoern A. Zeeb /* XXX TODO */ 3086b4cac81SBjoern A. Zeeb int asap, burst_period, ftmr_retries, ftms_per_burst, non_trigger_based, num_bursts_exp, request_civicloc, request_lci, trigger_based; 3096b4cac81SBjoern A. Zeeb uint8_t bss_color; 3106b4cac81SBjoern A. Zeeb bool lmr_feedback; 3116b4cac81SBjoern A. Zeeb }; 3126b4cac81SBjoern A. Zeeb 3136b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_request_peer { 3146b4cac81SBjoern A. Zeeb /* XXX TODO */ 3156b4cac81SBjoern A. Zeeb struct cfg80211_chan_def chandef; 3166b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_ftm_request ftm; 3176b4cac81SBjoern A. Zeeb uint8_t addr[ETH_ALEN]; 3186b4cac81SBjoern A. Zeeb int report_ap_tsf; 3196b4cac81SBjoern A. Zeeb }; 3206b4cac81SBjoern A. Zeeb 3216b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_request { 3226b4cac81SBjoern A. Zeeb /* XXX TODO */ 3236b4cac81SBjoern A. Zeeb int cookie, n_peers, timeout; 3246b4cac81SBjoern A. Zeeb uint8_t mac_addr[ETH_ALEN], mac_addr_mask[ETH_ALEN]; 3256b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_request_peer peers[]; 3266b4cac81SBjoern A. Zeeb }; 3276b4cac81SBjoern A. Zeeb 3286b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_ftm_result { 3296b4cac81SBjoern A. Zeeb /* XXX TODO */ 3306b4cac81SBjoern A. Zeeb int burst_index, busy_retry_time, failure_reason; 3316b4cac81SBjoern 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; 3326b4cac81SBjoern A. Zeeb uint8_t *lci; 3336b4cac81SBjoern A. Zeeb uint8_t *civicloc; 3346b4cac81SBjoern A. Zeeb int lci_len; 3356b4cac81SBjoern A. Zeeb int civicloc_len; 3366b4cac81SBjoern A. Zeeb }; 3376b4cac81SBjoern A. Zeeb 3386b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_result { 3396b4cac81SBjoern A. Zeeb /* XXX TODO */ 3406b4cac81SBjoern A. Zeeb int ap_tsf, ap_tsf_valid, final, host_time, status, type; 3416b4cac81SBjoern A. Zeeb uint8_t addr[ETH_ALEN]; 3426b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_ftm_result ftm; 3436b4cac81SBjoern A. Zeeb }; 3446b4cac81SBjoern A. Zeeb 34551b461b3SBjoern A. Zeeb struct cfg80211_sar_freq_ranges { 34651b461b3SBjoern A. Zeeb uint32_t start_freq; 34751b461b3SBjoern A. Zeeb uint32_t end_freq; 34851b461b3SBjoern A. Zeeb }; 34951b461b3SBjoern A. Zeeb 35051b461b3SBjoern A. Zeeb struct cfg80211_sar_sub_specs { 35151b461b3SBjoern A. Zeeb uint32_t freq_range_index; 35251b461b3SBjoern A. Zeeb int power; 35351b461b3SBjoern A. Zeeb }; 35451b461b3SBjoern A. Zeeb 35551b461b3SBjoern A. Zeeb struct cfg80211_sar_specs { 35651b461b3SBjoern A. Zeeb enum nl80211_sar_type type; 35751b461b3SBjoern A. Zeeb uint32_t num_sub_specs; 35851b461b3SBjoern A. Zeeb struct cfg80211_sar_sub_specs sub_specs[]; 35951b461b3SBjoern A. Zeeb }; 36051b461b3SBjoern A. Zeeb 36151b461b3SBjoern A. Zeeb struct cfg80211_sar_capa { 36251b461b3SBjoern A. Zeeb enum nl80211_sar_type type; 36351b461b3SBjoern A. Zeeb uint32_t num_freq_ranges; 36451b461b3SBjoern A. Zeeb const struct cfg80211_sar_freq_ranges *freq_ranges; 36551b461b3SBjoern A. Zeeb }; 36651b461b3SBjoern A. Zeeb 3676b4cac81SBjoern A. Zeeb struct cfg80211_ssid { 3686b4cac81SBjoern A. Zeeb int ssid_len; 3696b4cac81SBjoern A. Zeeb uint8_t ssid[IEEE80211_MAX_SSID_LEN]; 3706b4cac81SBjoern A. Zeeb }; 3716b4cac81SBjoern A. Zeeb 3726b4cac81SBjoern A. Zeeb struct cfg80211_scan_6ghz_params { 3736b4cac81SBjoern A. Zeeb /* XXX TODO */ 3746b4cac81SBjoern A. Zeeb uint8_t *bssid; 3756b4cac81SBjoern A. Zeeb int channel_idx, psc_no_listen, short_ssid, short_ssid_valid, unsolicited_probe; 3766b4cac81SBjoern A. Zeeb }; 3776b4cac81SBjoern A. Zeeb 3786b4cac81SBjoern A. Zeeb struct cfg80211_match_set { 3796b4cac81SBjoern A. Zeeb uint8_t bssid[ETH_ALEN]; 3806b4cac81SBjoern A. Zeeb struct cfg80211_ssid ssid; 3816b4cac81SBjoern A. Zeeb int rssi_thold; 3826b4cac81SBjoern A. Zeeb }; 3836b4cac81SBjoern A. Zeeb 3846b4cac81SBjoern A. Zeeb struct cfg80211_scan_request { 3856b4cac81SBjoern A. Zeeb /* XXX TODO */ 3866b4cac81SBjoern A. Zeeb int duration, duration_mandatory, flags; 3876b4cac81SBjoern A. Zeeb bool no_cck; 3886b4cac81SBjoern A. Zeeb bool scan_6ghz; 3896b4cac81SBjoern A. Zeeb struct wireless_dev *wdev; 3906b4cac81SBjoern A. Zeeb struct wiphy *wiphy; 3916b4cac81SBjoern A. Zeeb int ie_len; 3926b4cac81SBjoern A. Zeeb uint8_t *ie; 3936b4cac81SBjoern A. Zeeb uint8_t mac_addr[ETH_ALEN], mac_addr_mask[ETH_ALEN]; 3946b4cac81SBjoern A. Zeeb int n_ssids; 3956b4cac81SBjoern A. Zeeb int n_6ghz_params; 3966b4cac81SBjoern A. Zeeb int n_channels; 3976b4cac81SBjoern A. Zeeb struct cfg80211_ssid *ssids; 3986b4cac81SBjoern A. Zeeb struct cfg80211_scan_6ghz_params *scan_6ghz_params; 3996b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *channels[0]; 4006b4cac81SBjoern A. Zeeb }; 4016b4cac81SBjoern A. Zeeb 4026b4cac81SBjoern A. Zeeb struct cfg80211_sched_scan_plan { 4036b4cac81SBjoern A. Zeeb /* XXX TODO */ 4046b4cac81SBjoern A. Zeeb int interval, iterations; 4056b4cac81SBjoern A. Zeeb }; 4066b4cac81SBjoern A. Zeeb 4076b4cac81SBjoern A. Zeeb struct cfg80211_sched_scan_request { 4086b4cac81SBjoern A. Zeeb /* XXX TODO */ 4096b4cac81SBjoern A. Zeeb int delay, flags; 4106b4cac81SBjoern A. Zeeb uint8_t mac_addr[ETH_ALEN], mac_addr_mask[ETH_ALEN]; 4116b4cac81SBjoern A. Zeeb uint64_t reqid; 4126b4cac81SBjoern A. Zeeb int n_match_sets; 4136b4cac81SBjoern A. Zeeb int n_scan_plans; 4146b4cac81SBjoern A. Zeeb int n_ssids; 4156b4cac81SBjoern A. Zeeb int n_channels; 4166b4cac81SBjoern A. Zeeb struct cfg80211_match_set *match_sets; 4176b4cac81SBjoern A. Zeeb struct cfg80211_sched_scan_plan *scan_plans; 4186b4cac81SBjoern A. Zeeb struct cfg80211_ssid *ssids; 4196b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *channels[0]; 4206b4cac81SBjoern A. Zeeb }; 4216b4cac81SBjoern A. Zeeb 4226b4cac81SBjoern A. Zeeb struct cfg80211_scan_info { 4236b4cac81SBjoern A. Zeeb uint64_t scan_start_tsf; 4246b4cac81SBjoern A. Zeeb uint8_t tsf_bssid[ETH_ALEN]; 4256b4cac81SBjoern A. Zeeb bool aborted; 4266b4cac81SBjoern A. Zeeb }; 4276b4cac81SBjoern A. Zeeb 4286b4cac81SBjoern A. Zeeb struct cfg80211_beacon_data { 4296b4cac81SBjoern A. Zeeb /* XXX TODO */ 4306b4cac81SBjoern A. Zeeb const uint8_t *head; 4316b4cac81SBjoern A. Zeeb const uint8_t *tail; 4326b4cac81SBjoern A. Zeeb uint32_t head_len; 4336b4cac81SBjoern A. Zeeb uint32_t tail_len; 4346b4cac81SBjoern A. Zeeb const uint8_t *proberesp_ies; 4356b4cac81SBjoern A. Zeeb const uint8_t *assocresp_ies; 4366b4cac81SBjoern A. Zeeb uint32_t proberesp_ies_len; 4376b4cac81SBjoern A. Zeeb uint32_t assocresp_ies_len; 4386b4cac81SBjoern A. Zeeb }; 4396b4cac81SBjoern A. Zeeb 4406b4cac81SBjoern A. Zeeb struct cfg80211_ap_settings { 4416b4cac81SBjoern A. Zeeb /* XXX TODO */ 4426b4cac81SBjoern A. Zeeb int auth_type, beacon_interval, dtim_period, hidden_ssid, inactivity_timeout; 4436b4cac81SBjoern A. Zeeb const uint8_t *ssid; 4446b4cac81SBjoern A. Zeeb size_t ssid_len; 4456b4cac81SBjoern A. Zeeb struct cfg80211_beacon_data beacon; 4466b4cac81SBjoern A. Zeeb struct cfg80211_chan_def chandef; 4476b4cac81SBjoern A. Zeeb }; 4486b4cac81SBjoern A. Zeeb 4496b4cac81SBjoern A. Zeeb struct cfg80211_bss_selection { 4506b4cac81SBjoern A. Zeeb /* XXX TODO */ 4516b4cac81SBjoern A. Zeeb enum nl80211_bss_select_attr behaviour; 4526b4cac81SBjoern A. Zeeb union { 4536b4cac81SBjoern A. Zeeb enum nl80211_band band_pref; 4546b4cac81SBjoern A. Zeeb struct { 4556b4cac81SBjoern A. Zeeb enum nl80211_band band; 4566b4cac81SBjoern A. Zeeb uint8_t delta; 4576b4cac81SBjoern A. Zeeb } adjust; 4586b4cac81SBjoern A. Zeeb } param; 4596b4cac81SBjoern A. Zeeb }; 4606b4cac81SBjoern A. Zeeb 4616b4cac81SBjoern A. Zeeb struct cfg80211_crypto { /* XXX made up name */ 4626b4cac81SBjoern A. Zeeb /* XXX TODO */ 4636b4cac81SBjoern A. Zeeb enum nl80211_wpa_versions wpa_versions; 4646b4cac81SBjoern A. Zeeb uint32_t cipher_group; /* WLAN_CIPHER_SUITE_* */ 4656b4cac81SBjoern A. Zeeb uint32_t *akm_suites; 4666b4cac81SBjoern A. Zeeb uint32_t *ciphers_pairwise; 4676b4cac81SBjoern A. Zeeb const uint8_t *sae_pwd; 4686b4cac81SBjoern A. Zeeb const uint8_t *psk; 4696b4cac81SBjoern A. Zeeb int n_akm_suites; 4706b4cac81SBjoern A. Zeeb int n_ciphers_pairwise; 4716b4cac81SBjoern A. Zeeb int sae_pwd_len; 4726b4cac81SBjoern A. Zeeb }; 4736b4cac81SBjoern A. Zeeb 4746b4cac81SBjoern A. Zeeb struct cfg80211_connect_params { 4756b4cac81SBjoern A. Zeeb /* XXX TODO */ 4766b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *channel; 4776b4cac81SBjoern A. Zeeb uint8_t *bssid; 4786b4cac81SBjoern A. Zeeb const uint8_t *ie; 4796b4cac81SBjoern A. Zeeb const uint8_t *ssid; 4806b4cac81SBjoern A. Zeeb uint32_t ie_len; 4816b4cac81SBjoern A. Zeeb uint32_t ssid_len; 4826b4cac81SBjoern A. Zeeb const void *key; 4836b4cac81SBjoern A. Zeeb uint32_t key_len; 4846b4cac81SBjoern A. Zeeb int auth_type, key_idx, privacy, want_1x; 4856b4cac81SBjoern A. Zeeb struct cfg80211_bss_selection bss_select; 4866b4cac81SBjoern A. Zeeb struct cfg80211_crypto crypto; 4876b4cac81SBjoern A. Zeeb }; 4886b4cac81SBjoern A. Zeeb 4896b4cac81SBjoern A. Zeeb enum bss_param_flags { /* Used as bitflags. XXX FIXME values? */ 4906b4cac81SBjoern A. Zeeb BSS_PARAM_FLAGS_CTS_PROT = 0x01, 4916b4cac81SBjoern A. Zeeb BSS_PARAM_FLAGS_SHORT_PREAMBLE = 0x02, 4926b4cac81SBjoern A. Zeeb BSS_PARAM_FLAGS_SHORT_SLOT_TIME = 0x04, 4936b4cac81SBjoern A. Zeeb }; 4946b4cac81SBjoern A. Zeeb 4956b4cac81SBjoern A. Zeeb struct cfg80211_ibss_params { 4966b4cac81SBjoern A. Zeeb /* XXX TODO */ 4976b4cac81SBjoern A. Zeeb int basic_rates, beacon_interval; 4986b4cac81SBjoern A. Zeeb int channel_fixed, ie, ie_len, privacy; 4996b4cac81SBjoern A. Zeeb int dtim_period; 5006b4cac81SBjoern A. Zeeb uint8_t *ssid; 5016b4cac81SBjoern A. Zeeb uint8_t *bssid; 5026b4cac81SBjoern A. Zeeb int ssid_len; 5036b4cac81SBjoern A. Zeeb struct cfg80211_chan_def chandef; 5046b4cac81SBjoern A. Zeeb enum bss_param_flags flags; 5056b4cac81SBjoern A. Zeeb }; 5066b4cac81SBjoern A. Zeeb 5076b4cac81SBjoern A. Zeeb struct cfg80211_mgmt_tx_params { 5086b4cac81SBjoern A. Zeeb /* XXX TODO */ 5096b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *chan; 5106b4cac81SBjoern A. Zeeb const uint8_t *buf; 5116b4cac81SBjoern A. Zeeb size_t len; 5126b4cac81SBjoern A. Zeeb int wait; 5136b4cac81SBjoern A. Zeeb }; 5146b4cac81SBjoern A. Zeeb 5156b4cac81SBjoern A. Zeeb struct cfg80211_pmk_conf { 5166b4cac81SBjoern A. Zeeb /* XXX TODO */ 5176b4cac81SBjoern A. Zeeb const uint8_t *pmk; 5186b4cac81SBjoern A. Zeeb uint8_t pmk_len; 5196b4cac81SBjoern A. Zeeb }; 5206b4cac81SBjoern A. Zeeb 5216b4cac81SBjoern A. Zeeb struct cfg80211_pmksa { 5226b4cac81SBjoern A. Zeeb /* XXX TODO */ 5236b4cac81SBjoern A. Zeeb const uint8_t *bssid; 5246b4cac81SBjoern A. Zeeb const uint8_t *pmkid; 5256b4cac81SBjoern A. Zeeb }; 5266b4cac81SBjoern A. Zeeb 5276b4cac81SBjoern A. Zeeb struct cfg80211_wowlan_nd_match { 5286b4cac81SBjoern A. Zeeb /* XXX TODO */ 5296b4cac81SBjoern A. Zeeb struct cfg80211_ssid ssid; 5306b4cac81SBjoern A. Zeeb int n_channels; 5316b4cac81SBjoern A. Zeeb uint32_t channels[0]; /* freq! = ieee80211_channel_to_frequency() */ 5326b4cac81SBjoern A. Zeeb }; 5336b4cac81SBjoern A. Zeeb 5346b4cac81SBjoern A. Zeeb struct cfg80211_wowlan_nd_info { 5356b4cac81SBjoern A. Zeeb /* XXX TODO */ 5366b4cac81SBjoern A. Zeeb int n_matches; 5376b4cac81SBjoern A. Zeeb struct cfg80211_wowlan_nd_match *matches[0]; 5386b4cac81SBjoern A. Zeeb }; 5396b4cac81SBjoern A. Zeeb 5406b4cac81SBjoern A. Zeeb enum wiphy_wowlan_support_flags { 5416b4cac81SBjoern A. Zeeb WIPHY_WOWLAN_DISCONNECT, 5426b4cac81SBjoern A. Zeeb WIPHY_WOWLAN_GTK_REKEY_FAILURE, 5436b4cac81SBjoern A. Zeeb WIPHY_WOWLAN_MAGIC_PKT, 5446b4cac81SBjoern A. Zeeb WIPHY_WOWLAN_SUPPORTS_GTK_REKEY, 5456b4cac81SBjoern A. Zeeb WIPHY_WOWLAN_NET_DETECT, 5466b4cac81SBjoern A. Zeeb }; 5476b4cac81SBjoern A. Zeeb 5486b4cac81SBjoern A. Zeeb struct wiphy_wowlan_support { 5496b4cac81SBjoern A. Zeeb /* XXX TODO */ 5506b4cac81SBjoern A. Zeeb enum wiphy_wowlan_support_flags flags; 5516b4cac81SBjoern A. Zeeb int max_nd_match_sets, max_pkt_offset, n_patterns, pattern_max_len, pattern_min_len; 5526b4cac81SBjoern A. Zeeb }; 5536b4cac81SBjoern A. Zeeb 5546b4cac81SBjoern A. Zeeb struct station_del_parameters { 5556b4cac81SBjoern A. Zeeb /* XXX TODO */ 5566b4cac81SBjoern A. Zeeb const uint8_t *mac; 5576b4cac81SBjoern A. Zeeb uint32_t reason_code; /* elsewhere uint16_t? */ 5586b4cac81SBjoern A. Zeeb }; 5596b4cac81SBjoern A. Zeeb 5606b4cac81SBjoern A. Zeeb struct station_info { 5616b4cac81SBjoern A. Zeeb /* TODO FIXME */ 5626b4cac81SBjoern A. Zeeb int assoc_req_ies_len, connected_time; 5636b4cac81SBjoern A. Zeeb int generation, inactive_time, rx_bytes, rx_dropped_misc, rx_packets, signal, tx_bytes, tx_packets; 5646b4cac81SBjoern A. Zeeb int filled, rx_beacon, rx_beacon_signal_avg, signal_avg; 5656b4cac81SBjoern A. Zeeb int rx_duration, tx_failed, tx_retries; 5666b4cac81SBjoern A. Zeeb 5676b4cac81SBjoern A. Zeeb int chains; 5686b4cac81SBjoern A. Zeeb uint8_t chain_signal[IEEE80211_MAX_CHAINS]; 5696b4cac81SBjoern A. Zeeb uint8_t chain_signal_avg[IEEE80211_MAX_CHAINS]; 5706b4cac81SBjoern A. Zeeb 5716b4cac81SBjoern A. Zeeb uint8_t *assoc_req_ies; 5726b4cac81SBjoern A. Zeeb struct rate_info rxrate; 5736b4cac81SBjoern A. Zeeb struct rate_info txrate; 5746b4cac81SBjoern A. Zeeb struct cfg80211_ibss_params bss_param; 5756b4cac81SBjoern A. Zeeb struct nl80211_sta_flag_update sta_flags; 5766b4cac81SBjoern A. Zeeb }; 5776b4cac81SBjoern A. Zeeb 5786b4cac81SBjoern A. Zeeb struct station_parameters { 5796b4cac81SBjoern A. Zeeb /* XXX TODO */ 5806b4cac81SBjoern A. Zeeb int sta_flags_mask, sta_flags_set; 5816b4cac81SBjoern A. Zeeb }; 5826b4cac81SBjoern A. Zeeb 5836b4cac81SBjoern A. Zeeb struct key_params { 5846b4cac81SBjoern A. Zeeb /* XXX TODO */ 5856b4cac81SBjoern A. Zeeb const uint8_t *key; 5866b4cac81SBjoern A. Zeeb const uint8_t *seq; 5876b4cac81SBjoern A. Zeeb int key_len; 5886b4cac81SBjoern A. Zeeb int seq_len; 5896b4cac81SBjoern A. Zeeb uint32_t cipher; /* WLAN_CIPHER_SUITE_* */ 5906b4cac81SBjoern A. Zeeb }; 5916b4cac81SBjoern A. Zeeb 5926b4cac81SBjoern A. Zeeb struct mgmt_frame_regs { 5936b4cac81SBjoern A. Zeeb /* XXX TODO */ 5946b4cac81SBjoern A. Zeeb int interface_stypes; 5956b4cac81SBjoern A. Zeeb }; 5966b4cac81SBjoern A. Zeeb 5976b4cac81SBjoern A. Zeeb struct vif_params { 5986b4cac81SBjoern A. Zeeb /* XXX TODO */ 5996b4cac81SBjoern A. Zeeb uint8_t macaddr[ETH_ALEN]; 6006b4cac81SBjoern A. Zeeb }; 6016b4cac81SBjoern A. Zeeb 6026b4cac81SBjoern A. Zeeb /* That the world needs so many different structs for this is amazing. */ 6036b4cac81SBjoern A. Zeeb struct mac_address { 6046b4cac81SBjoern A. Zeeb uint8_t addr[ETH_ALEN]; 6056b4cac81SBjoern A. Zeeb }; 6066b4cac81SBjoern A. Zeeb 6076b4cac81SBjoern A. Zeeb struct ieee80211_reg_rule { 6086b4cac81SBjoern A. Zeeb /* TODO FIXME */ 6096b4cac81SBjoern A. Zeeb uint32_t flags; 6106b4cac81SBjoern A. Zeeb struct freq_range { 6116b4cac81SBjoern A. Zeeb int start_freq_khz; 6126b4cac81SBjoern A. Zeeb int end_freq_khz; 6136b4cac81SBjoern A. Zeeb int max_bandwidth_khz; 6146b4cac81SBjoern A. Zeeb } freq_range; 6156b4cac81SBjoern A. Zeeb struct power_rule { 6166b4cac81SBjoern A. Zeeb int max_antenna_gain; 6176b4cac81SBjoern A. Zeeb int max_eirp; 6186b4cac81SBjoern A. Zeeb } power_rule; 6196b4cac81SBjoern A. Zeeb }; 6206b4cac81SBjoern A. Zeeb 6216b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_regdomain { 6226b4cac81SBjoern A. Zeeb /* TODO FIXME */ 6236b4cac81SBjoern A. Zeeb uint8_t alpha2[2]; 6242e183d99SBjoern A. Zeeb int dfs_region; 6256b4cac81SBjoern A. Zeeb int n_reg_rules; 6266b4cac81SBjoern A. Zeeb struct ieee80211_reg_rule reg_rules[]; 6276b4cac81SBjoern A. Zeeb }; 6286b4cac81SBjoern A. Zeeb 6296b4cac81SBjoern A. Zeeb /* XXX-BZ this are insensible values probably ... */ 6306b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP0_HTC_HE 0x1 6316b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP0_TWT_REQ 0x2 6326b4cac81SBjoern A. Zeeb 6336b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP1_LINK_ADAPTATION 0x1 6346b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP1_MULTI_TID_AGG_RX_QOS_8 0x2 6356b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP1_TF_MAC_PAD_DUR_16US 0x4 6366b4cac81SBjoern A. Zeeb 6376b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP2_32BIT_BA_BITMAP 0x1 6386b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP2_ACK_EN 0x2 6396b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP2_BSR 0x4 6406b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP2_LINK_ADAPTATION 0x8 6416b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP2_BCAST_TWT 0x10 64251b461b3SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP2_ALL_ACK 0x20 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 6516b4cac81SBjoern A. Zeeb 6526b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP4_AMDSU_IN_AMPDU 0x1 6536b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP4_BQR 0x2 6546b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP4_MULTI_TID_AGG_TX_QOS_B39 0x4 6556b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP4_AMSDU_IN_AMPDU 0x8 65651b461b3SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP4_OPS 0x10 6576b4cac81SBjoern A. Zeeb 6586b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP5_HE_DYNAMIC_SM_PS 0x1 6596b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP5_HT_VHT_TRIG_FRAME_RX 0x2 6606b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP5_MULTI_TID_AGG_TX_QOS_B40 0x4 6616b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP5_MULTI_TID_AGG_TX_QOS_B41 0x8 6626b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP5_UL_2x996_TONE_RU 0x10 6636b4cac81SBjoern A. Zeeb 6646b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MCS_NOT_SUPPORTED 0x0 6656b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MCS_SUPPORT_0_7 0x1 6666b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MCS_SUPPORT_0_9 0x2 6676b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MCS_SUPPORT_0_11 0x4 6686b4cac81SBjoern A. Zeeb 6696b4cac81SBjoern A. Zeeb #define IEEE80211_HE_6GHZ_CAP_TX_ANTPAT_CONS 0x01 6706b4cac81SBjoern A. Zeeb #define IEEE80211_HE_6GHZ_CAP_RX_ANTPAT_CONS 0x02 6716b4cac81SBjoern A. Zeeb #define IEEE80211_HE_6GHZ_CAP_MIN_MPDU_START 0x04 6726b4cac81SBjoern A. Zeeb #define IEEE80211_HE_6GHZ_CAP_MAX_MPDU_LEN 0x08 6736b4cac81SBjoern A. Zeeb #define IEEE80211_HE_6GHZ_CAP_MAX_AMPDU_LEN_EXP 0x10 6746b4cac81SBjoern A. Zeeb 6756b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_160MHZ_IN_5G 0x1 6766b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_40MHZ_80MHZ_IN_5G 0x2 6776b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_40MHZ_IN_2G 0x4 67851b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_80PLUS80_MHZ_IN_5G 0x8 6796b4cac81SBjoern A. Zeeb 6806b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP1_DEVICE_CLASS_A 0x1 6816b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP1_LDPC_CODING_IN_PAYLOAD 0x2 6826b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP1_MIDAMBLE_RX_TX_MAX_NSTS 0x4 6836b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP1_PREAMBLE_PUNC_RX_MASK 0x8 68451b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP1_HE_LTF_AND_GI_FOR_HE_PPDUS_0_8US 0x10 6856b4cac81SBjoern A. Zeeb 6866b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP2_MIDAMBLE_RX_TX_MAX_NSTS 0x1 6876b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP2_NDP_4x_LTF_AND_3_2US 0x2 6886b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP2_STBC_TX_UNDER_80MHZ 0x4 6896b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP2_STBC_RX_UNDER_80MHZ 0x8 69051b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP2_DOPPLER_TX 0x10 6916b4cac81SBjoern A. Zeeb 6926b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP3_DCM_MAX_CONST_RX_MASK 0x1 6936b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP3_DCM_MAX_CONST_RX_NO_DCM 0x2 6946b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP3_DCM_MAX_CONST_TX_NO_DCM 0x4 6956b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP3_DCM_MAX_RX_NSS_1 0x8 6966b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP3_DCM_MAX_TX_NSS_1 0x10 69751b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP3_SU_BEAMFORMER 0x20 69851b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP3_DCM_MAX_CONST_RX_16_QAM 0x40 69951b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP3_DCM_MAX_CONST_TX_16_QAM 0x80 700d875aa15SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP3_DCM_MAX_TX_NSS_2 0x10 701d875aa15SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP3_RX_PARTIAL_BW_SU_IN_20MHZ_MU 0x20 702d875aa15SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP3_DCM_MAX_CONST_RX_BPSK 0x40 703d875aa15SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP3_DCM_MAX_CONST_TX_BPSK 0x80 704d875aa15SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP3_DCM_MAX_CONST_TX_MASK 0x80 7056b4cac81SBjoern A. Zeeb 7066b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP4_BEAMFORMEE_MAX_STS_UNDER_80MHZ_8 0x1 7076b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP4_BEAMFORMEE_MAX_STS_ABOVE_80MHZ_8 0x2 7086b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP4_SU_BEAMFORMEE 0x4 70951b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP4_MU_BEAMFORMER 0x8 71051b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP4_BEAMFORMEE_MAX_STS_UNDER_80MHZ_4 0x10 7116b4cac81SBjoern A. Zeeb 7126b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP5_BEAMFORMEE_NUM_SND_DIM_ABOVE_80MHZ_2 0x1 7136b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP5_BEAMFORMEE_NUM_SND_DIM_UNDER_80MHZ_2 0x2 71451b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP5_BEAMFORMEE_NUM_SND_DIM_UNDER_80MHZ_MASK 0x4 71551b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP5_NG16_MU_FEEDBACK 0x8 71651b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP5_NG16_SU_FEEDBACK 0x10 7176b4cac81SBjoern A. Zeeb 7186b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP6_PPE_THRESHOLD_PRESENT 0x1 7196b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP6_TRIG_MU_BEAMFORMER_FB 0x2 7206b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP6_TRIG_SU_BEAMFORMER_FB 0x4 72151b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP6_TRIG_SU_BEAMFORMING_FB 0x8 7226b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP6_TRIG_MU_BEAMFORMING_PARTIAL_BW_FB 0x20 72351b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP6_CODEBOOK_SIZE_42_SU 0x40 72451b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP6_CODEBOOK_SIZE_75_MU 0x80 72551b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP6_PARTIAL_BW_EXT_RANGE 0x80 7266b4cac81SBjoern A. Zeeb 7276b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP7_HE_SU_MU_PPDU_4XLTF_AND_08_US_GI 0x1 7286b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP7_MAX_NC_1 0x2 7296b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP7_MAX_NC_2 0x4 7306b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP7_MAX_NC_MASK 0x6 7316b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP7_POWER_BOOST_FACTOR_AR 0x8 7326b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP7_POWER_BOOST_FACTOR_SUPP 0x10 7336b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP7_STBC_RX_ABOVE_80MHZ 0x20 7346b4cac81SBjoern A. Zeeb 7356b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP8_20MHZ_IN_160MHZ_HE_PPDU 0x1 7366b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP8_20MHZ_IN_40MHZ_HE_PPDU_IN_2G 0x2 7376b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP8_80MHZ_IN_160MHZ_HE_PPDU 0x4 7386b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP8_DCM_MAX_RU_2x996 0x8 7396b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP8_DCM_MAX_RU_242 0x10 7406b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP8_HE_ER_SU_PPDU_4XLTF_AND_08_US_GI 0x20 74151b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP8_DCM_MAX_RU_996 0x40 74251b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP8_HE_ER_SU_1XLTF_AND_08_US_GI 0x80 7436b4cac81SBjoern A. Zeeb 744e2008091SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP9_NOMINAL_PKT_PADDING_0US 0x1 745e2008091SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP9_NOMINAL_PKT_PADDING_16US 0x2 746e2008091SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP9_NOMINAL_PKT_PADDING_8US 0x4 747e2008091SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP9_NOMINAL_PKT_PADDING_MASK 0x8 748e2008091SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP9_NOMINAL_PKT_PADDING_RESERVED 0x10 749d875aa15SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP9_NOMINAL_PKT_PADDING_POS 0x0 7506b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP9_NON_TRIGGERED_CQI_FEEDBACK 0x20 751d875aa15SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP9_RX_FULL_BW_SU_USING_MU_WITH_COMP_SIGB 0x4 752d875aa15SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP9_RX_FULL_BW_SU_USING_MU_WITH_NON_COMP_SIGB 0x8 753d875aa15SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP9_RX_1024_QAM_LESS_THAN_242_TONE_RU 0x10 754d875aa15SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP9_TX_1024_QAM_LESS_THAN_242_TONE_RU 0x20 755d875aa15SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP9_LONGER_THAN_16_SIGB_OFDM_SYM 0x40 7566b4cac81SBjoern A. Zeeb 7576b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP10_HE_MU_M1RU_MAX_LTF 0x1 7586b4cac81SBjoern A. Zeeb 7596b4cac81SBjoern A. Zeeb #define VENDOR_CMD_RAW_DATA (void *)(uintptr_t)(-ENOENT) 7606b4cac81SBjoern A. Zeeb 7616b4cac81SBjoern A. Zeeb struct ieee80211_he_cap_elem { 7626b4cac81SBjoern A. Zeeb u8 mac_cap_info[6]; 7636b4cac81SBjoern A. Zeeb u8 phy_cap_info[11]; 7646b4cac81SBjoern A. Zeeb } __packed; 7656b4cac81SBjoern A. Zeeb 7666b4cac81SBjoern A. Zeeb struct ieee80211_he_mcs_nss_supp { 7676b4cac81SBjoern A. Zeeb /* TODO FIXME */ 7686b4cac81SBjoern A. Zeeb uint32_t rx_mcs_80; 7696b4cac81SBjoern A. Zeeb uint32_t tx_mcs_80; 7706b4cac81SBjoern A. Zeeb uint32_t rx_mcs_160; 7716b4cac81SBjoern A. Zeeb uint32_t tx_mcs_160; 7726b4cac81SBjoern A. Zeeb uint32_t rx_mcs_80p80; 7736b4cac81SBjoern A. Zeeb uint32_t tx_mcs_80p80; 7746b4cac81SBjoern A. Zeeb }; 7756b4cac81SBjoern A. Zeeb 7766b4cac81SBjoern A. Zeeb #define IEEE80211_STA_HE_CAP_PPE_THRES_MAX 32 7776b4cac81SBjoern A. Zeeb struct ieee80211_sta_he_cap { 7786b4cac81SBjoern A. Zeeb /* TODO FIXME */ 7796b4cac81SBjoern A. Zeeb int has_he; 7806b4cac81SBjoern A. Zeeb struct ieee80211_he_cap_elem he_cap_elem; 7816b4cac81SBjoern A. Zeeb struct ieee80211_he_mcs_nss_supp he_mcs_nss_supp; 7826b4cac81SBjoern A. Zeeb uint8_t ppe_thres[IEEE80211_STA_HE_CAP_PPE_THRES_MAX]; 7836b4cac81SBjoern A. Zeeb }; 7846b4cac81SBjoern A. Zeeb 7856b4cac81SBjoern A. Zeeb struct ieee80211_sta_he_6ghz_capa { 7866b4cac81SBjoern A. Zeeb /* TODO FIXME */ 7876b4cac81SBjoern A. Zeeb int capa; 7886b4cac81SBjoern A. Zeeb }; 7896b4cac81SBjoern A. Zeeb 7906b4cac81SBjoern A. Zeeb struct ieee80211_sband_iftype_data { 7916b4cac81SBjoern A. Zeeb /* TODO FIXME */ 7926b4cac81SBjoern A. Zeeb enum nl80211_iftype types_mask; 7936b4cac81SBjoern A. Zeeb struct ieee80211_sta_he_cap he_cap; 7946b4cac81SBjoern A. Zeeb struct ieee80211_sta_he_6ghz_capa he_6ghz_capa; 7956b4cac81SBjoern A. Zeeb struct { 7966b4cac81SBjoern A. Zeeb const uint8_t *data; 7976b4cac81SBjoern A. Zeeb size_t len; 7986b4cac81SBjoern A. Zeeb } vendor_elems; 7996b4cac81SBjoern A. Zeeb }; 8006b4cac81SBjoern A. Zeeb 8016b4cac81SBjoern A. Zeeb struct ieee80211_supported_band { 8026b4cac81SBjoern A. Zeeb /* TODO FIXME */ 8036b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *channels; 8046b4cac81SBjoern A. Zeeb struct ieee80211_rate *bitrates; 8056b4cac81SBjoern A. Zeeb struct ieee80211_sband_iftype_data *iftype_data; 8066b4cac81SBjoern A. Zeeb int n_channels; 8076b4cac81SBjoern A. Zeeb int n_bitrates; 8086b4cac81SBjoern A. Zeeb int n_iftype_data; 8096b4cac81SBjoern A. Zeeb enum nl80211_band band; 8106b4cac81SBjoern A. Zeeb struct ieee80211_sta_ht_cap ht_cap; 8116b4cac81SBjoern A. Zeeb struct ieee80211_sta_vht_cap vht_cap; 8126b4cac81SBjoern A. Zeeb }; 8136b4cac81SBjoern A. Zeeb 8146b4cac81SBjoern A. Zeeb struct cfg80211_pkt_pattern { 8156b4cac81SBjoern A. Zeeb /* XXX TODO */ 8166b4cac81SBjoern A. Zeeb uint8_t *mask; 8176b4cac81SBjoern A. Zeeb uint8_t *pattern; 8186b4cac81SBjoern A. Zeeb int pattern_len; 8196b4cac81SBjoern A. Zeeb int pkt_offset; 8206b4cac81SBjoern A. Zeeb }; 8216b4cac81SBjoern A. Zeeb 8226b4cac81SBjoern A. Zeeb struct cfg80211_wowlan { 8236b4cac81SBjoern A. Zeeb /* XXX TODO */ 8246b4cac81SBjoern A. Zeeb int disconnect, gtk_rekey_failure, magic_pkt; 8256b4cac81SBjoern A. Zeeb int n_patterns; 8266b4cac81SBjoern A. Zeeb struct cfg80211_sched_scan_request *nd_config; 8276b4cac81SBjoern A. Zeeb struct cfg80211_pkt_pattern *patterns; 8286b4cac81SBjoern A. Zeeb }; 8296b4cac81SBjoern A. Zeeb 8306b4cac81SBjoern A. Zeeb struct cfg80211_gtk_rekey_data { 8316b4cac81SBjoern A. Zeeb /* XXX TODO */ 8326b4cac81SBjoern A. Zeeb int kck, kek, replay_ctr; 8336b4cac81SBjoern A. Zeeb }; 8346b4cac81SBjoern A. Zeeb 8352e183d99SBjoern A. Zeeb struct cfg80211_tid_cfg { 8362e183d99SBjoern A. Zeeb /* XXX TODO */ 8372e183d99SBjoern A. Zeeb int mask, noack, retry_long, rtscts, tids; 8382e183d99SBjoern A. Zeeb enum nl80211_tx_rate_setting txrate_type; 8392e183d99SBjoern A. Zeeb struct cfg80211_bitrate_mask txrate_mask; 8402e183d99SBjoern A. Zeeb }; 8412e183d99SBjoern A. Zeeb 8422e183d99SBjoern A. Zeeb struct cfg80211_tid_config { 8432e183d99SBjoern A. Zeeb /* XXX TODO */ 8442e183d99SBjoern A. Zeeb int n_tid_conf; 8452e183d99SBjoern A. Zeeb struct cfg80211_tid_cfg tid_conf[0]; 8462e183d99SBjoern A. Zeeb }; 8472e183d99SBjoern A. Zeeb 8486b4cac81SBjoern A. Zeeb struct ieee80211_iface_limit { 8496b4cac81SBjoern A. Zeeb /* TODO FIXME */ 8506b4cac81SBjoern A. Zeeb int max, types; 8516b4cac81SBjoern A. Zeeb }; 8526b4cac81SBjoern A. Zeeb 8536b4cac81SBjoern A. Zeeb struct ieee80211_iface_combination { 8546b4cac81SBjoern A. Zeeb /* TODO FIXME */ 8556b4cac81SBjoern A. Zeeb const struct ieee80211_iface_limit *limits; 8566b4cac81SBjoern A. Zeeb int n_limits; 8576b4cac81SBjoern A. Zeeb int max_interfaces, num_different_channels; 8586b4cac81SBjoern A. Zeeb int beacon_int_infra_match, beacon_int_min_gcd; 8596b4cac81SBjoern A. Zeeb }; 8606b4cac81SBjoern A. Zeeb 8616b4cac81SBjoern A. Zeeb struct iface_combination_params { 8626b4cac81SBjoern A. Zeeb int num_different_channels; 8636b4cac81SBjoern A. Zeeb int iftype_num[NUM_NL80211_IFTYPES]; 8646b4cac81SBjoern A. Zeeb }; 8656b4cac81SBjoern A. Zeeb 8666b4cac81SBjoern A. Zeeb struct regulatory_request { 8676b4cac81SBjoern A. Zeeb /* XXX TODO */ 8686b4cac81SBjoern A. Zeeb uint8_t alpha2[2]; 8696b4cac81SBjoern A. Zeeb int initiator, dfs_region; 8706b4cac81SBjoern A. Zeeb }; 8716b4cac81SBjoern A. Zeeb 8726b4cac81SBjoern A. Zeeb enum wiphy_vendor_cmd_need_flags { 8736b4cac81SBjoern A. Zeeb WIPHY_VENDOR_CMD_NEED_NETDEV = 0x01, 8746b4cac81SBjoern A. Zeeb WIPHY_VENDOR_CMD_NEED_RUNNING = 0x02, 8756b4cac81SBjoern A. Zeeb WIPHY_VENDOR_CMD_NEED_WDEV = 0x04, 8766b4cac81SBjoern A. Zeeb }; 8776b4cac81SBjoern A. Zeeb 8786b4cac81SBjoern A. Zeeb struct wiphy_vendor_command { 8796b4cac81SBjoern A. Zeeb struct { 8806b4cac81SBjoern A. Zeeb uint32_t vendor_id; 8816b4cac81SBjoern A. Zeeb uint32_t subcmd; 8826b4cac81SBjoern A. Zeeb }; 8836b4cac81SBjoern A. Zeeb uint32_t flags; 8846b4cac81SBjoern A. Zeeb void *policy; 8856b4cac81SBjoern A. Zeeb int (*doit)(struct wiphy *, struct wireless_dev *, const void *, int); 8866b4cac81SBjoern A. Zeeb }; 8876b4cac81SBjoern A. Zeeb 8886b4cac81SBjoern A. Zeeb struct wiphy_iftype_ext_capab { 8896b4cac81SBjoern A. Zeeb /* TODO FIXME */ 8906b4cac81SBjoern A. Zeeb enum nl80211_iftype iftype; 8916b4cac81SBjoern A. Zeeb const uint8_t *extended_capabilities; 8926b4cac81SBjoern A. Zeeb const uint8_t *extended_capabilities_mask; 8936b4cac81SBjoern A. Zeeb uint8_t extended_capabilities_len; 8946b4cac81SBjoern A. Zeeb 8956b4cac81SBjoern A. Zeeb }; 8966b4cac81SBjoern A. Zeeb 8972e183d99SBjoern A. Zeeb struct tid_config_support { 8982e183d99SBjoern A. Zeeb /* TODO FIXME */ 8992e183d99SBjoern A. Zeeb uint64_t vif; /* enum nl80211_tid_cfg_attr */ 9002e183d99SBjoern A. Zeeb uint64_t peer; /* enum nl80211_tid_cfg_attr */ 9012e183d99SBjoern A. Zeeb }; 9022e183d99SBjoern A. Zeeb 9036b4cac81SBjoern A. Zeeb enum cfg80211_regulatory { 9046b4cac81SBjoern A. Zeeb REGULATORY_CUSTOM_REG = BIT(0), 9056b4cac81SBjoern A. Zeeb REGULATORY_STRICT_REG = BIT(1), 9066b4cac81SBjoern A. Zeeb REGULATORY_DISABLE_BEACON_HINTS = BIT(2), 9076b4cac81SBjoern A. Zeeb REGULATORY_ENABLE_RELAX_NO_IR = BIT(3), 9086b4cac81SBjoern A. Zeeb REGULATORY_WIPHY_SELF_MANAGED = BIT(4), 9096b4cac81SBjoern A. Zeeb REGULATORY_COUNTRY_IE_IGNORE = BIT(5), 9102e183d99SBjoern A. Zeeb REGULATORY_COUNTRY_IE_FOLLOW_POWER = BIT(6), 9116b4cac81SBjoern A. Zeeb }; 9126b4cac81SBjoern A. Zeeb 9136b4cac81SBjoern A. Zeeb #define WIPHY_FLAG_AP_UAPSD 0x00000001 9146b4cac81SBjoern A. Zeeb #define WIPHY_FLAG_HAS_CHANNEL_SWITCH 0x00000002 9156b4cac81SBjoern A. Zeeb #define WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL 0x00000004 9166b4cac81SBjoern A. Zeeb #define WIPHY_FLAG_HAVE_AP_SME 0x00000008 9176b4cac81SBjoern A. Zeeb #define WIPHY_FLAG_IBSS_RSN 0x00000010 9186b4cac81SBjoern A. Zeeb #define WIPHY_FLAG_NETNS_OK 0x00000020 9196b4cac81SBjoern A. Zeeb #define WIPHY_FLAG_OFFCHAN_TX 0x00000040 9206b4cac81SBjoern A. Zeeb #define WIPHY_FLAG_PS_ON_BY_DEFAULT 0x00000080 9216b4cac81SBjoern A. Zeeb #define WIPHY_FLAG_SPLIT_SCAN_6GHZ 0x00000100 9226b4cac81SBjoern A. Zeeb #define WIPHY_FLAG_SUPPORTS_EXT_KEK_KCK 0x00000200 9236b4cac81SBjoern A. Zeeb #define WIPHY_FLAG_SUPPORTS_FW_ROAM 0x00000400 9246b4cac81SBjoern A. Zeeb #define WIPHY_FLAG_SUPPORTS_TDLS 0x00000800 9256b4cac81SBjoern A. Zeeb #define WIPHY_FLAG_TDLS_EXTERNAL_SETUP 0x00001000 9262e183d99SBjoern A. Zeeb #define WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD 0x00002000 9276b4cac81SBjoern A. Zeeb 9286b4cac81SBjoern A. Zeeb struct wiphy { 9296b4cac81SBjoern A. Zeeb 9306b4cac81SBjoern A. Zeeb struct device *dev; 9316b4cac81SBjoern A. Zeeb struct mac_address *addresses; 9326b4cac81SBjoern A. Zeeb int n_addresses; 9336b4cac81SBjoern A. Zeeb uint32_t flags; 9346b4cac81SBjoern A. Zeeb struct ieee80211_supported_band *bands[NUM_NL80211_BANDS]; 9356b4cac81SBjoern A. Zeeb uint8_t perm_addr[ETH_ALEN]; 9366b4cac81SBjoern A. Zeeb 9376b4cac81SBjoern A. Zeeb /* XXX TODO */ 9386b4cac81SBjoern A. Zeeb const struct cfg80211_pmsr_capabilities *pmsr_capa; 93951b461b3SBjoern A. Zeeb const struct cfg80211_sar_capa *sar_capa; 9406b4cac81SBjoern A. Zeeb const struct wiphy_iftype_ext_capab *iftype_ext_capab; 9416b4cac81SBjoern A. Zeeb const struct linuxkpi_ieee80211_regdomain *regd; 9422e183d99SBjoern A. Zeeb char fw_version[ETHTOOL_FWVERS_LEN]; 9436b4cac81SBjoern A. Zeeb const struct ieee80211_iface_combination *iface_combinations; 9446b4cac81SBjoern A. Zeeb const uint32_t *cipher_suites; 9456b4cac81SBjoern A. Zeeb int n_iface_combinations; 9466b4cac81SBjoern A. Zeeb int n_cipher_suites; 9476b4cac81SBjoern A. Zeeb void(*reg_notifier)(struct wiphy *, struct regulatory_request *); 9486b4cac81SBjoern A. Zeeb enum cfg80211_regulatory regulatory_flags; 9496b4cac81SBjoern A. Zeeb int n_vendor_commands; 9506b4cac81SBjoern A. Zeeb const struct wiphy_vendor_command *vendor_commands; 9516b4cac81SBjoern A. Zeeb const struct ieee80211_txrx_stypes *mgmt_stypes; 9526b4cac81SBjoern A. Zeeb uint32_t rts_threshold; 9536b4cac81SBjoern A. Zeeb uint32_t frag_threshold; 9542e183d99SBjoern A. Zeeb struct tid_config_support tid_config_support; 9556b4cac81SBjoern A. Zeeb 9566b4cac81SBjoern A. Zeeb int available_antennas_rx, available_antennas_tx; 9576b4cac81SBjoern A. Zeeb int features, hw_version; 9586b4cac81SBjoern 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; 9596b4cac81SBjoern A. Zeeb int num_iftype_ext_capab; 9606b4cac81SBjoern A. Zeeb int max_ap_assoc_sta, probe_resp_offload, software_iftypes; 9616b4cac81SBjoern A. Zeeb int bss_select_support, max_num_pmkids, retry_long, retry_short, signal_type; 9622e183d99SBjoern A. Zeeb int max_data_retry_count; 963d875aa15SBjoern A. Zeeb int tx_queue_len, rfkill; 9646b4cac81SBjoern A. Zeeb 9656b4cac81SBjoern A. Zeeb unsigned long ext_features[BITS_TO_LONGS(NUM_NL80211_EXT_FEATURES)]; 9666b4cac81SBjoern A. Zeeb struct dentry *debugfsdir; 9676b4cac81SBjoern A. Zeeb struct cfg80211_wowlan_support *wowlan; 9686b4cac81SBjoern A. Zeeb /* Lower layer (driver/mac80211) specific data. */ 9696b4cac81SBjoern A. Zeeb /* Must stay last. */ 9706b4cac81SBjoern A. Zeeb uint8_t priv[0] __aligned(CACHE_LINE_SIZE); 9716b4cac81SBjoern A. Zeeb }; 9726b4cac81SBjoern A. Zeeb 9736b4cac81SBjoern A. Zeeb struct wireless_dev { 9746b4cac81SBjoern A. Zeeb /* XXX TODO, like ic? */ 9756b4cac81SBjoern A. Zeeb int iftype; 9766b4cac81SBjoern A. Zeeb int address; 9776b4cac81SBjoern A. Zeeb struct net_device *netdev; 9786b4cac81SBjoern A. Zeeb struct wiphy *wiphy; 9796b4cac81SBjoern A. Zeeb }; 9806b4cac81SBjoern A. Zeeb 9816b4cac81SBjoern A. Zeeb struct cfg80211_ops { 9826b4cac81SBjoern A. Zeeb /* XXX TODO */ 9836b4cac81SBjoern A. Zeeb struct wireless_dev *(*add_virtual_intf)(struct wiphy *, const char *, unsigned char, enum nl80211_iftype, struct vif_params *); 9846b4cac81SBjoern A. Zeeb int (*del_virtual_intf)(struct wiphy *, struct wireless_dev *); 9856b4cac81SBjoern A. Zeeb s32 (*change_virtual_intf)(struct wiphy *, struct net_device *, enum nl80211_iftype, struct vif_params *); 9866b4cac81SBjoern A. Zeeb s32 (*scan)(struct wiphy *, struct cfg80211_scan_request *); 9876b4cac81SBjoern A. Zeeb s32 (*set_wiphy_params)(struct wiphy *, u32); 9886b4cac81SBjoern A. Zeeb s32 (*join_ibss)(struct wiphy *, struct net_device *, struct cfg80211_ibss_params *); 9896b4cac81SBjoern A. Zeeb s32 (*leave_ibss)(struct wiphy *, struct net_device *); 9906b4cac81SBjoern A. Zeeb s32 (*get_station)(struct wiphy *, struct net_device *, const u8 *, struct station_info *); 9916b4cac81SBjoern A. Zeeb int (*dump_station)(struct wiphy *, struct net_device *, int, u8 *, struct station_info *); 9926b4cac81SBjoern A. Zeeb s32 (*set_tx_power)(struct wiphy *, struct wireless_dev *, enum nl80211_tx_power_setting, s32); 9936b4cac81SBjoern A. Zeeb s32 (*get_tx_power)(struct wiphy *, struct wireless_dev *, s32 *); 9946b4cac81SBjoern A. Zeeb s32 (*add_key)(struct wiphy *, struct net_device *, u8, bool, const u8 *, struct key_params *); 9956b4cac81SBjoern A. Zeeb s32 (*del_key)(struct wiphy *, struct net_device *, u8, bool, const u8 *); 9966b4cac81SBjoern A. Zeeb s32 (*get_key)(struct wiphy *, struct net_device *, u8, bool, const u8 *, void *, void(*)(void *, struct key_params *)); 9976b4cac81SBjoern A. Zeeb s32 (*set_default_key)(struct wiphy *, struct net_device *, u8, bool, bool); 9986b4cac81SBjoern A. Zeeb s32 (*set_default_mgmt_key)(struct wiphy *, struct net_device *, u8); 9996b4cac81SBjoern A. Zeeb s32 (*set_power_mgmt)(struct wiphy *, struct net_device *, bool, s32); 10006b4cac81SBjoern A. Zeeb s32 (*connect)(struct wiphy *, struct net_device *, struct cfg80211_connect_params *); 10016b4cac81SBjoern A. Zeeb s32 (*disconnect)(struct wiphy *, struct net_device *, u16); 10026b4cac81SBjoern A. Zeeb s32 (*suspend)(struct wiphy *, struct cfg80211_wowlan *); 10036b4cac81SBjoern A. Zeeb s32 (*resume)(struct wiphy *); 10046b4cac81SBjoern A. Zeeb s32 (*set_pmksa)(struct wiphy *, struct net_device *, struct cfg80211_pmksa *); 10056b4cac81SBjoern A. Zeeb s32 (*del_pmksa)(struct wiphy *, struct net_device *, struct cfg80211_pmksa *); 10066b4cac81SBjoern A. Zeeb s32 (*flush_pmksa)(struct wiphy *, struct net_device *); 10076b4cac81SBjoern A. Zeeb s32 (*start_ap)(struct wiphy *, struct net_device *, struct cfg80211_ap_settings *); 10086b4cac81SBjoern A. Zeeb int (*stop_ap)(struct wiphy *, struct net_device *); 10096b4cac81SBjoern A. Zeeb s32 (*change_beacon)(struct wiphy *, struct net_device *, struct cfg80211_beacon_data *); 10106b4cac81SBjoern A. Zeeb int (*del_station)(struct wiphy *, struct net_device *, struct station_del_parameters *); 10116b4cac81SBjoern A. Zeeb int (*change_station)(struct wiphy *, struct net_device *, const u8 *, struct station_parameters *); 10126b4cac81SBjoern A. Zeeb int (*sched_scan_start)(struct wiphy *, struct net_device *, struct cfg80211_sched_scan_request *); 10136b4cac81SBjoern A. Zeeb int (*sched_scan_stop)(struct wiphy *, struct net_device *, u64); 10146b4cac81SBjoern A. Zeeb void (*update_mgmt_frame_registrations)(struct wiphy *, struct wireless_dev *, struct mgmt_frame_regs *); 10156b4cac81SBjoern A. Zeeb int (*mgmt_tx)(struct wiphy *, struct wireless_dev *, struct cfg80211_mgmt_tx_params *, u64 *); 10166b4cac81SBjoern A. Zeeb int (*cancel_remain_on_channel)(struct wiphy *, struct wireless_dev *, u64); 10176b4cac81SBjoern A. Zeeb int (*get_channel)(struct wiphy *, struct wireless_dev *, struct cfg80211_chan_def *); 10186b4cac81SBjoern A. Zeeb int (*crit_proto_start)(struct wiphy *, struct wireless_dev *, enum nl80211_crit_proto_id, u16); 10196b4cac81SBjoern A. Zeeb void (*crit_proto_stop)(struct wiphy *, struct wireless_dev *); 10206b4cac81SBjoern A. Zeeb int (*tdls_oper)(struct wiphy *, struct net_device *, const u8 *, enum nl80211_tdls_operation); 10216b4cac81SBjoern A. Zeeb int (*update_connect_params)(struct wiphy *, struct net_device *, struct cfg80211_connect_params *, u32); 10226b4cac81SBjoern A. Zeeb int (*set_pmk)(struct wiphy *, struct net_device *, const struct cfg80211_pmk_conf *); 10236b4cac81SBjoern A. Zeeb int (*del_pmk)(struct wiphy *, struct net_device *, const u8 *); 10246b4cac81SBjoern A. Zeeb int (*remain_on_channel)(struct wiphy *, struct wireless_dev *, struct linuxkpi_ieee80211_channel *, unsigned int, u64 *); 10256b4cac81SBjoern A. Zeeb int (*start_p2p_device)(struct wiphy *, struct wireless_dev *); 10266b4cac81SBjoern A. Zeeb void (*stop_p2p_device)(struct wiphy *, struct wireless_dev *); 10276b4cac81SBjoern A. Zeeb }; 10286b4cac81SBjoern A. Zeeb 10296b4cac81SBjoern A. Zeeb 10306b4cac81SBjoern A. Zeeb /* -------------------------------------------------------------------------- */ 10316b4cac81SBjoern A. Zeeb 10326b4cac81SBjoern A. Zeeb /* linux_80211.c */ 10336b4cac81SBjoern A. Zeeb 10346b4cac81SBjoern A. Zeeb struct wiphy *linuxkpi_wiphy_new(const struct cfg80211_ops *, size_t); 10356b4cac81SBjoern A. Zeeb void linuxkpi_wiphy_free(struct wiphy *wiphy); 10366b4cac81SBjoern A. Zeeb 10376b4cac81SBjoern A. Zeeb int linuxkpi_regulatory_set_wiphy_regd_sync(struct wiphy *wiphy, 10386b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_regdomain *regd); 10396b4cac81SBjoern A. Zeeb uint32_t linuxkpi_ieee80211_channel_to_frequency(uint32_t, enum nl80211_band); 10406b4cac81SBjoern A. Zeeb uint32_t linuxkpi_ieee80211_frequency_to_channel(uint32_t, uint32_t); 10412e183d99SBjoern A. Zeeb struct linuxkpi_ieee80211_channel * 10422e183d99SBjoern A. Zeeb linuxkpi_ieee80211_get_channel(struct wiphy *, uint32_t); 10436b4cac81SBjoern A. Zeeb 10446b4cac81SBjoern A. Zeeb /* -------------------------------------------------------------------------- */ 10456b4cac81SBjoern A. Zeeb 10466b4cac81SBjoern A. Zeeb static __inline struct wiphy * 10476b4cac81SBjoern A. Zeeb wiphy_new(const struct cfg80211_ops *ops, size_t priv_len) 10486b4cac81SBjoern A. Zeeb { 10496b4cac81SBjoern A. Zeeb 10506b4cac81SBjoern A. Zeeb return (linuxkpi_wiphy_new(ops, priv_len)); 10516b4cac81SBjoern A. Zeeb } 10526b4cac81SBjoern A. Zeeb 10536b4cac81SBjoern A. Zeeb static __inline void 10546b4cac81SBjoern A. Zeeb wiphy_free(struct wiphy *wiphy) 10556b4cac81SBjoern A. Zeeb { 10566b4cac81SBjoern A. Zeeb 10576b4cac81SBjoern A. Zeeb linuxkpi_wiphy_free(wiphy); 10586b4cac81SBjoern A. Zeeb } 10596b4cac81SBjoern A. Zeeb 10606b4cac81SBjoern A. Zeeb static __inline void * 10616b4cac81SBjoern A. Zeeb wiphy_priv(struct wiphy *wiphy) 10626b4cac81SBjoern A. Zeeb { 10636b4cac81SBjoern A. Zeeb 10646b4cac81SBjoern A. Zeeb return (wiphy->priv); 10656b4cac81SBjoern A. Zeeb } 10666b4cac81SBjoern A. Zeeb 10676b4cac81SBjoern A. Zeeb static __inline void 10686b4cac81SBjoern A. Zeeb set_wiphy_dev(struct wiphy *wiphy, struct device *dev) 10696b4cac81SBjoern A. Zeeb { 10706b4cac81SBjoern A. Zeeb 10716b4cac81SBjoern A. Zeeb wiphy->dev = dev; 10726b4cac81SBjoern A. Zeeb } 10736b4cac81SBjoern A. Zeeb 10746b4cac81SBjoern A. Zeeb static __inline struct device * 10756b4cac81SBjoern A. Zeeb wiphy_dev(struct wiphy *wiphy) 10766b4cac81SBjoern A. Zeeb { 10776b4cac81SBjoern A. Zeeb 10786b4cac81SBjoern A. Zeeb return (wiphy->dev); 10796b4cac81SBjoern A. Zeeb } 10806b4cac81SBjoern A. Zeeb 10816b4cac81SBjoern A. Zeeb #define wiphy_err(_wiphy, _fmt, ...) \ 10826b4cac81SBjoern A. Zeeb dev_err((_wiphy)->dev, _fmt, __VA_ARGS__) 10836b4cac81SBjoern A. Zeeb 10846b4cac81SBjoern A. Zeeb static __inline const struct linuxkpi_ieee80211_regdomain * 10856b4cac81SBjoern A. Zeeb wiphy_dereference(struct wiphy *wiphy, 10866b4cac81SBjoern A. Zeeb const struct linuxkpi_ieee80211_regdomain *regd) 10876b4cac81SBjoern A. Zeeb { 10886b4cac81SBjoern A. Zeeb TODO(); 10896b4cac81SBjoern A. Zeeb return (NULL); 10906b4cac81SBjoern A. Zeeb } 10916b4cac81SBjoern A. Zeeb 1092d875aa15SBjoern A. Zeeb static __inline void 1093d875aa15SBjoern A. Zeeb wiphy_lock(struct wiphy *wiphy) 1094d875aa15SBjoern A. Zeeb { 1095d875aa15SBjoern A. Zeeb TODO(); 1096d875aa15SBjoern A. Zeeb } 1097d875aa15SBjoern A. Zeeb 1098d875aa15SBjoern A. Zeeb static __inline void 1099d875aa15SBjoern A. Zeeb wiphy_unlock(struct wiphy *wiphy) 1100d875aa15SBjoern A. Zeeb { 1101d875aa15SBjoern A. Zeeb TODO(); 1102d875aa15SBjoern A. Zeeb } 1103d875aa15SBjoern A. Zeeb 1104d875aa15SBjoern A. Zeeb static __inline void 1105d875aa15SBjoern A. Zeeb wiphy_rfkill_set_hw_state_reason(struct wiphy *wiphy, bool blocked, 1106d875aa15SBjoern A. Zeeb enum rfkill_hard_block_reasons reason) 1107d875aa15SBjoern A. Zeeb { 1108d875aa15SBjoern A. Zeeb TODO(); 1109d875aa15SBjoern A. Zeeb } 1110d875aa15SBjoern A. Zeeb 11116b4cac81SBjoern A. Zeeb /* -------------------------------------------------------------------------- */ 11126b4cac81SBjoern A. Zeeb 1113d875aa15SBjoern A. Zeeb static __inline bool 1114d875aa15SBjoern A. Zeeb rfkill_blocked(int rfkill) /* argument type? */ 1115d875aa15SBjoern A. Zeeb { 1116d875aa15SBjoern A. Zeeb TODO(); 1117d875aa15SBjoern A. Zeeb return (false); 1118d875aa15SBjoern A. Zeeb } 1119d875aa15SBjoern A. Zeeb 11206b4cac81SBjoern A. Zeeb static __inline int 11216b4cac81SBjoern A. Zeeb reg_query_regdb_wmm(uint8_t *alpha2, uint32_t center_freq, 11226b4cac81SBjoern A. Zeeb struct ieee80211_reg_rule *rule) 11236b4cac81SBjoern A. Zeeb { 11246b4cac81SBjoern A. Zeeb 11256b4cac81SBjoern A. Zeeb /* ETSI has special rules. FreeBSD regdb needs to learn about them. */ 11266b4cac81SBjoern A. Zeeb TODO(); 11276b4cac81SBjoern A. Zeeb 11286b4cac81SBjoern A. Zeeb return (-ENXIO); 11296b4cac81SBjoern A. Zeeb } 11306b4cac81SBjoern A. Zeeb 11316b4cac81SBjoern A. Zeeb static __inline const u8 * 11326b4cac81SBjoern A. Zeeb cfg80211_find_ie_match(uint32_t f, const u8 *ies, size_t ies_len, 11336b4cac81SBjoern A. Zeeb const u8 *match, int x, int y) 11346b4cac81SBjoern A. Zeeb { 11356b4cac81SBjoern A. Zeeb TODO(); 11366b4cac81SBjoern A. Zeeb return (NULL); 11376b4cac81SBjoern A. Zeeb } 11386b4cac81SBjoern A. Zeeb 11396b4cac81SBjoern A. Zeeb static __inline const u8 * 11406b4cac81SBjoern A. Zeeb cfg80211_find_ie(uint8_t eid, uint8_t *variable, uint32_t frame_size) 11416b4cac81SBjoern A. Zeeb { 11426b4cac81SBjoern A. Zeeb TODO(); 11436b4cac81SBjoern A. Zeeb return (NULL); 11446b4cac81SBjoern A. Zeeb } 11456b4cac81SBjoern A. Zeeb 11466b4cac81SBjoern A. Zeeb static __inline void 11476b4cac81SBjoern A. Zeeb cfg80211_pmsr_complete(struct wireless_dev *wdev, 11486b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_request *req, gfp_t gfp) 11496b4cac81SBjoern A. Zeeb { 11506b4cac81SBjoern A. Zeeb TODO(); 11516b4cac81SBjoern A. Zeeb } 11526b4cac81SBjoern A. Zeeb 11536b4cac81SBjoern A. Zeeb static __inline void 11546b4cac81SBjoern A. Zeeb cfg80211_pmsr_report(struct wireless_dev *wdev, 11556b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_request *req, 11566b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_result *result, gfp_t gfp) 11576b4cac81SBjoern A. Zeeb { 11586b4cac81SBjoern A. Zeeb TODO(); 11596b4cac81SBjoern A. Zeeb } 11606b4cac81SBjoern A. Zeeb 11616b4cac81SBjoern A. Zeeb static __inline void 11626b4cac81SBjoern A. Zeeb cfg80211_chandef_create(struct cfg80211_chan_def *chandef, 11636b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *chan, enum nl80211_chan_flags chan_flag) 11646b4cac81SBjoern A. Zeeb { 11656b4cac81SBjoern A. Zeeb 11666b4cac81SBjoern A. Zeeb KASSERT(chandef != NULL, ("%s: chandef is NULL\n", __func__)); 11676b4cac81SBjoern A. Zeeb KASSERT(chan != NULL, ("%s: chan is NULL\n", __func__)); 11686b4cac81SBjoern A. Zeeb 11694a07abdeSBjoern A. Zeeb memset(chandef, 0, sizeof(*chandef)); 11706b4cac81SBjoern A. Zeeb chandef->chan = chan; 11716b4cac81SBjoern A. Zeeb chandef->center_freq2 = 0; /* Set here and only overwrite if needed. */ 11726b4cac81SBjoern A. Zeeb 11736b4cac81SBjoern A. Zeeb switch (chan_flag) { 11746b4cac81SBjoern A. Zeeb case NL80211_CHAN_NO_HT: 11756b4cac81SBjoern A. Zeeb chandef->width = NL80211_CHAN_WIDTH_20_NOHT; 11766b4cac81SBjoern A. Zeeb chandef->center_freq1 = chan->center_freq; 11776b4cac81SBjoern A. Zeeb break; 11786b4cac81SBjoern A. Zeeb default: 11796b4cac81SBjoern A. Zeeb printf("%s: unsupported chan_flag %#0x\n", __func__, chan_flag); 11806b4cac81SBjoern A. Zeeb /* XXX-BZ should we panic instead? */ 11816b4cac81SBjoern A. Zeeb chandef->width = NL80211_CHAN_WIDTH_20; 11826b4cac81SBjoern A. Zeeb chandef->center_freq1 = chan->center_freq; 11836b4cac81SBjoern A. Zeeb break; 11846b4cac81SBjoern A. Zeeb }; 11856b4cac81SBjoern A. Zeeb } 11866b4cac81SBjoern A. Zeeb 11876b4cac81SBjoern A. Zeeb static __inline void 11886b4cac81SBjoern A. Zeeb cfg80211_bss_iter(struct wiphy *wiphy, struct cfg80211_chan_def *chandef, 11896b4cac81SBjoern A. Zeeb void (*iterfunc)(struct wiphy *, struct cfg80211_bss *, void *), void *data) 11906b4cac81SBjoern A. Zeeb { 11916b4cac81SBjoern A. Zeeb TODO(); 11926b4cac81SBjoern A. Zeeb } 11936b4cac81SBjoern A. Zeeb 11946b4cac81SBjoern A. Zeeb struct element { 11956b4cac81SBjoern A. Zeeb uint8_t id; 11966b4cac81SBjoern A. Zeeb uint8_t datalen; 11976b4cac81SBjoern A. Zeeb uint8_t data[0]; 11986b4cac81SBjoern A. Zeeb }; 11996b4cac81SBjoern A. Zeeb 12006b4cac81SBjoern A. Zeeb static __inline const struct element * 12016b4cac81SBjoern A. Zeeb cfg80211_find_elem(enum ieee80211_eid eid, uint8_t *data, size_t len) 12026b4cac81SBjoern A. Zeeb { 12036b4cac81SBjoern A. Zeeb TODO(); 12046b4cac81SBjoern A. Zeeb return (NULL); 12056b4cac81SBjoern A. Zeeb } 12066b4cac81SBjoern A. Zeeb 12076b4cac81SBjoern A. Zeeb static __inline uint32_t 12086b4cac81SBjoern A. Zeeb cfg80211_calculate_bitrate(struct rate_info *rate) 12096b4cac81SBjoern A. Zeeb { 12106b4cac81SBjoern A. Zeeb TODO(); 12116b4cac81SBjoern A. Zeeb return (-1); 12126b4cac81SBjoern A. Zeeb } 12136b4cac81SBjoern A. Zeeb 12146b4cac81SBjoern A. Zeeb static __inline uint32_t 12156b4cac81SBjoern A. Zeeb ieee80211_channel_to_frequency(uint32_t channel, enum nl80211_band band) 12166b4cac81SBjoern A. Zeeb { 12176b4cac81SBjoern A. Zeeb 12186b4cac81SBjoern A. Zeeb return (linuxkpi_ieee80211_channel_to_frequency(channel, band)); 12196b4cac81SBjoern A. Zeeb } 12206b4cac81SBjoern A. Zeeb 12216b4cac81SBjoern A. Zeeb static __inline uint32_t 12226b4cac81SBjoern A. Zeeb ieee80211_frequency_to_channel(uint32_t freq) 12236b4cac81SBjoern A. Zeeb { 12246b4cac81SBjoern A. Zeeb 12256b4cac81SBjoern A. Zeeb return (linuxkpi_ieee80211_frequency_to_channel(freq, 0)); 12266b4cac81SBjoern A. Zeeb } 12276b4cac81SBjoern A. Zeeb 12286b4cac81SBjoern A. Zeeb static __inline int 12296b4cac81SBjoern A. Zeeb regulatory_set_wiphy_regd_sync(struct wiphy *wiphy, 12306b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_regdomain *regd) 12316b4cac81SBjoern A. Zeeb { 12326b4cac81SBjoern A. Zeeb IMPROVE(); 12336b4cac81SBjoern A. Zeeb return (linuxkpi_regulatory_set_wiphy_regd_sync(wiphy, regd)); 12346b4cac81SBjoern A. Zeeb } 12356b4cac81SBjoern A. Zeeb 12366b4cac81SBjoern A. Zeeb static __inline int 12376b4cac81SBjoern A. Zeeb regulatory_set_wiphy_regd_sync_rtnl(struct wiphy *wiphy, 12386b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_regdomain *regd) 12396b4cac81SBjoern A. Zeeb { 12406b4cac81SBjoern A. Zeeb 12416b4cac81SBjoern A. Zeeb IMPROVE(); 12426b4cac81SBjoern A. Zeeb return (linuxkpi_regulatory_set_wiphy_regd_sync(wiphy, regd)); 12436b4cac81SBjoern A. Zeeb } 12446b4cac81SBjoern A. Zeeb 12456b4cac81SBjoern A. Zeeb static __inline int 12466b4cac81SBjoern A. Zeeb regulatory_set_wiphy_regd(struct wiphy *wiphy, 12476b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_regdomain *regd) 12486b4cac81SBjoern A. Zeeb { 12496b4cac81SBjoern A. Zeeb 12506b4cac81SBjoern A. Zeeb IMPROVE(); 12516b4cac81SBjoern A. Zeeb if (regd == NULL) 12526b4cac81SBjoern A. Zeeb return (EINVAL); 12536b4cac81SBjoern A. Zeeb 12546b4cac81SBjoern A. Zeeb /* XXX-BZ wild guessing here based on brcmfmac. */ 12556b4cac81SBjoern A. Zeeb if (wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED) 12566b4cac81SBjoern A. Zeeb wiphy->regd = regd; 12576b4cac81SBjoern A. Zeeb else 12586b4cac81SBjoern A. Zeeb return (EPERM); 12596b4cac81SBjoern A. Zeeb 12606b4cac81SBjoern A. Zeeb /* XXX FIXME, do we have to do anything with reg_notifier? */ 12616b4cac81SBjoern A. Zeeb return (0); 12626b4cac81SBjoern A. Zeeb } 12636b4cac81SBjoern A. Zeeb 12646b4cac81SBjoern A. Zeeb static __inline int 126551b461b3SBjoern A. Zeeb regulatory_hint(struct wiphy *wiphy, const uint8_t *alpha2) 12666b4cac81SBjoern A. Zeeb { 12676b4cac81SBjoern A. Zeeb TODO(); 12686b4cac81SBjoern A. Zeeb return (-ENXIO); 12696b4cac81SBjoern A. Zeeb } 12706b4cac81SBjoern A. Zeeb 12712e183d99SBjoern A. Zeeb static __inline const char * 12722e183d99SBjoern A. Zeeb reg_initiator_name(enum nl80211_reg_initiator initiator) 12732e183d99SBjoern A. Zeeb { 12742e183d99SBjoern A. Zeeb TODO(); 12752e183d99SBjoern A. Zeeb return (NULL); 12762e183d99SBjoern A. Zeeb } 12772e183d99SBjoern A. Zeeb 12786b4cac81SBjoern A. Zeeb static __inline struct linuxkpi_ieee80211_regdomain * 12796b4cac81SBjoern A. Zeeb rtnl_dereference(const struct linuxkpi_ieee80211_regdomain *regd) 12806b4cac81SBjoern A. Zeeb { 12816b4cac81SBjoern A. Zeeb TODO(); 12826b4cac81SBjoern A. Zeeb return (NULL); 12836b4cac81SBjoern A. Zeeb } 12846b4cac81SBjoern A. Zeeb 12856b4cac81SBjoern A. Zeeb static __inline struct ieee80211_reg_rule * 12866b4cac81SBjoern A. Zeeb freq_reg_info(struct wiphy *wiphy, uint32_t center_freq) 12876b4cac81SBjoern A. Zeeb { 12886b4cac81SBjoern A. Zeeb TODO(); 12896b4cac81SBjoern A. Zeeb return (NULL); 12906b4cac81SBjoern A. Zeeb } 12916b4cac81SBjoern A. Zeeb 12926b4cac81SBjoern A. Zeeb static __inline struct cfg80211_bss * 12936b4cac81SBjoern A. Zeeb cfg80211_get_bss(struct wiphy *wiphy, struct linuxkpi_ieee80211_channel *chan, 12946b4cac81SBjoern A. Zeeb uint8_t *bssid, void *p, int x, uint32_t f1, uint32_t f2) 12956b4cac81SBjoern A. Zeeb { 12966b4cac81SBjoern A. Zeeb TODO(); 12976b4cac81SBjoern A. Zeeb return (NULL); 12986b4cac81SBjoern A. Zeeb } 12996b4cac81SBjoern A. Zeeb 13006b4cac81SBjoern A. Zeeb static __inline void 13016b4cac81SBjoern A. Zeeb cfg80211_put_bss(struct wiphy *wiphy, struct cfg80211_bss *bss) 13026b4cac81SBjoern A. Zeeb { 13036b4cac81SBjoern A. Zeeb TODO(); 13046b4cac81SBjoern A. Zeeb } 13056b4cac81SBjoern A. Zeeb 13066b4cac81SBjoern A. Zeeb static __inline void 13076b4cac81SBjoern A. Zeeb wiphy_apply_custom_regulatory(struct wiphy *wiphy, 13086b4cac81SBjoern A. Zeeb const struct linuxkpi_ieee80211_regdomain *regd) 13096b4cac81SBjoern A. Zeeb { 13106b4cac81SBjoern A. Zeeb TODO(); 13116b4cac81SBjoern A. Zeeb } 13126b4cac81SBjoern A. Zeeb 13136b4cac81SBjoern A. Zeeb static __inline char * 13146b4cac81SBjoern A. Zeeb wiphy_name(struct wiphy *wiphy) 13156b4cac81SBjoern A. Zeeb { 13166b4cac81SBjoern A. Zeeb if (wiphy != NULL && wiphy->dev != NULL) 13176b4cac81SBjoern A. Zeeb return dev_name(wiphy->dev); 13182e183d99SBjoern A. Zeeb else { 13192e183d99SBjoern A. Zeeb IMPROVE("wlanNA"); 13206b4cac81SBjoern A. Zeeb return ("wlanNA"); 13216b4cac81SBjoern A. Zeeb } 13222e183d99SBjoern A. Zeeb } 13236b4cac81SBjoern A. Zeeb 13246b4cac81SBjoern A. Zeeb static __inline void 13256b4cac81SBjoern A. Zeeb wiphy_read_of_freq_limits(struct wiphy *wiphy) 13266b4cac81SBjoern A. Zeeb { 13276b4cac81SBjoern A. Zeeb #ifdef FDT 13286b4cac81SBjoern A. Zeeb TODO(); 13296b4cac81SBjoern A. Zeeb #endif 13306b4cac81SBjoern A. Zeeb } 13316b4cac81SBjoern A. Zeeb 13326b4cac81SBjoern A. Zeeb static __inline uint8_t * 13336b4cac81SBjoern A. Zeeb cfg80211_find_vendor_ie(unsigned int oui, u8 oui_type, 13346b4cac81SBjoern A. Zeeb uint8_t *data, size_t len) 13356b4cac81SBjoern A. Zeeb { 13366b4cac81SBjoern A. Zeeb TODO(); 13376b4cac81SBjoern A. Zeeb return (NULL); 13386b4cac81SBjoern A. Zeeb } 13396b4cac81SBjoern A. Zeeb 13406b4cac81SBjoern A. Zeeb static __inline void 13416b4cac81SBjoern A. Zeeb wiphy_ext_feature_set(struct wiphy *wiphy, enum nl80211_ext_feature ef) 13426b4cac81SBjoern A. Zeeb { 13436b4cac81SBjoern A. Zeeb 13446b4cac81SBjoern A. Zeeb set_bit(ef, wiphy->ext_features); 13456b4cac81SBjoern A. Zeeb } 13466b4cac81SBjoern A. Zeeb 13476b4cac81SBjoern A. Zeeb static __inline void * 13486b4cac81SBjoern A. Zeeb wiphy_net(struct wiphy *wiphy) 13496b4cac81SBjoern A. Zeeb { 13506b4cac81SBjoern A. Zeeb TODO(); 13516b4cac81SBjoern A. Zeeb return (NULL); /* XXX passed to dev_net_set() */ 13526b4cac81SBjoern A. Zeeb } 13536b4cac81SBjoern A. Zeeb 13546b4cac81SBjoern A. Zeeb static __inline int 13556b4cac81SBjoern A. Zeeb wiphy_register(struct wiphy *wiphy) 13566b4cac81SBjoern A. Zeeb { 13576b4cac81SBjoern A. Zeeb TODO(); 13586b4cac81SBjoern A. Zeeb return (0); 13596b4cac81SBjoern A. Zeeb } 13606b4cac81SBjoern A. Zeeb 13616b4cac81SBjoern A. Zeeb static __inline void 13626b4cac81SBjoern A. Zeeb wiphy_unregister(struct wiphy *wiphy) 13636b4cac81SBjoern A. Zeeb { 13646b4cac81SBjoern A. Zeeb TODO(); 13656b4cac81SBjoern A. Zeeb } 13666b4cac81SBjoern A. Zeeb 13676b4cac81SBjoern A. Zeeb static __inline void 13686b4cac81SBjoern A. Zeeb wiphy_warn(struct wiphy *wiphy, const char *fmt, ...) 13696b4cac81SBjoern A. Zeeb { 13706b4cac81SBjoern A. Zeeb TODO(); 13716b4cac81SBjoern A. Zeeb } 13726b4cac81SBjoern A. Zeeb 13736b4cac81SBjoern A. Zeeb static __inline int 13746b4cac81SBjoern A. Zeeb cfg80211_check_combinations(struct wiphy *wiphy, 13756b4cac81SBjoern A. Zeeb struct iface_combination_params *params) 13766b4cac81SBjoern A. Zeeb { 13776b4cac81SBjoern A. Zeeb TODO(); 13786b4cac81SBjoern A. Zeeb return (-ENOENT); 13796b4cac81SBjoern A. Zeeb } 13806b4cac81SBjoern A. Zeeb 13816b4cac81SBjoern A. Zeeb static __inline uint8_t 13826b4cac81SBjoern A. Zeeb cfg80211_classify8021d(struct sk_buff *skb, void *p) 13836b4cac81SBjoern A. Zeeb { 13846b4cac81SBjoern A. Zeeb TODO(); 13856b4cac81SBjoern A. Zeeb return (0); 13866b4cac81SBjoern A. Zeeb } 13876b4cac81SBjoern A. Zeeb 13886b4cac81SBjoern A. Zeeb static __inline void 13896b4cac81SBjoern A. Zeeb cfg80211_connect_done(struct net_device *ndev, 13906b4cac81SBjoern A. Zeeb struct cfg80211_connect_resp_params *conn_params, gfp_t gfp) 13916b4cac81SBjoern A. Zeeb { 13926b4cac81SBjoern A. Zeeb TODO(); 13936b4cac81SBjoern A. Zeeb } 13946b4cac81SBjoern A. Zeeb 13956b4cac81SBjoern A. Zeeb static __inline void 13966b4cac81SBjoern A. Zeeb cfg80211_crit_proto_stopped(struct wireless_dev *wdev, gfp_t gfp) 13976b4cac81SBjoern A. Zeeb { 13986b4cac81SBjoern A. Zeeb TODO(); 13996b4cac81SBjoern A. Zeeb } 14006b4cac81SBjoern A. Zeeb 14016b4cac81SBjoern A. Zeeb static __inline void 14026b4cac81SBjoern A. Zeeb cfg80211_disconnected(struct net_device *ndev, uint16_t reason, 14036b4cac81SBjoern A. Zeeb void *p, int x, bool locally_generated, gfp_t gfp) 14046b4cac81SBjoern A. Zeeb { 14056b4cac81SBjoern A. Zeeb TODO(); 14066b4cac81SBjoern A. Zeeb } 14076b4cac81SBjoern A. Zeeb 14086b4cac81SBjoern A. Zeeb static __inline int 14096b4cac81SBjoern A. Zeeb cfg80211_get_p2p_attr(const u8 *ie, u32 ie_len, 14106b4cac81SBjoern A. Zeeb enum ieee80211_p2p_attr_ids attr, u8 *p, size_t p_len) 14116b4cac81SBjoern A. Zeeb { 14126b4cac81SBjoern A. Zeeb TODO(); 14136b4cac81SBjoern A. Zeeb return (-1); 14146b4cac81SBjoern A. Zeeb } 14156b4cac81SBjoern A. Zeeb 14166b4cac81SBjoern A. Zeeb static __inline void 14176b4cac81SBjoern A. Zeeb cfg80211_ibss_joined(struct net_device *ndev, const uint8_t *addr, 14186b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *chan, gfp_t gfp) 14196b4cac81SBjoern A. Zeeb { 14206b4cac81SBjoern A. Zeeb TODO(); 14216b4cac81SBjoern A. Zeeb } 14226b4cac81SBjoern A. Zeeb 14236b4cac81SBjoern A. Zeeb static __inline struct cfg80211_bss * 14246b4cac81SBjoern A. Zeeb cfg80211_inform_bss(struct wiphy *wiphy, 14256b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *channel, 14262e183d99SBjoern A. Zeeb enum cfg80211_bss_frame_type bss_ftype, const uint8_t *bss, int _x, 14276b4cac81SBjoern A. Zeeb uint16_t cap, uint16_t intvl, const uint8_t *ie, size_t ie_len, 14286b4cac81SBjoern A. Zeeb int signal, gfp_t gfp) 14296b4cac81SBjoern A. Zeeb { 14306b4cac81SBjoern A. Zeeb TODO(); 14316b4cac81SBjoern A. Zeeb return (NULL); 14326b4cac81SBjoern A. Zeeb } 14336b4cac81SBjoern A. Zeeb 14346b4cac81SBjoern A. Zeeb static __inline struct cfg80211_bss * 14356b4cac81SBjoern A. Zeeb cfg80211_inform_bss_data(struct wiphy *wiphy, 14366b4cac81SBjoern A. Zeeb struct cfg80211_inform_bss *bss_data, 14372e183d99SBjoern A. Zeeb enum cfg80211_bss_frame_type bss_ftype, const uint8_t *bss, int _x, 14386b4cac81SBjoern A. Zeeb uint16_t cap, uint16_t intvl, const uint8_t *ie, size_t ie_len, gfp_t gfp) 14396b4cac81SBjoern A. Zeeb { 14406b4cac81SBjoern A. Zeeb TODO(); 14416b4cac81SBjoern A. Zeeb return (NULL); 14426b4cac81SBjoern A. Zeeb } 14436b4cac81SBjoern A. Zeeb 14446b4cac81SBjoern A. Zeeb static __inline void 14456b4cac81SBjoern A. Zeeb cfg80211_mgmt_tx_status(struct wireless_dev *wdev, uint64_t cookie, 14466b4cac81SBjoern A. Zeeb const u8 *buf, size_t len, bool ack, gfp_t gfp) 14476b4cac81SBjoern A. Zeeb { 14486b4cac81SBjoern A. Zeeb TODO(); 14496b4cac81SBjoern A. Zeeb } 14506b4cac81SBjoern A. Zeeb 14516b4cac81SBjoern A. Zeeb static __inline void 14526b4cac81SBjoern A. Zeeb cfg80211_michael_mic_failure(struct net_device *ndev, const uint8_t *addr, 14536b4cac81SBjoern A. Zeeb enum nl80211_key_type key_type, int _x, void *p, gfp_t gfp) 14546b4cac81SBjoern A. Zeeb { 14556b4cac81SBjoern A. Zeeb TODO(); 14566b4cac81SBjoern A. Zeeb } 14576b4cac81SBjoern A. Zeeb 14586b4cac81SBjoern A. Zeeb static __inline void 14596b4cac81SBjoern A. Zeeb cfg80211_new_sta(struct net_device *ndev, const uint8_t *addr, 14606b4cac81SBjoern A. Zeeb struct station_info *sinfo, gfp_t gfp) 14616b4cac81SBjoern A. Zeeb { 14626b4cac81SBjoern A. Zeeb TODO(); 14636b4cac81SBjoern A. Zeeb } 14646b4cac81SBjoern A. Zeeb 14656b4cac81SBjoern A. Zeeb static __inline void 14666b4cac81SBjoern A. Zeeb cfg80211_del_sta(struct net_device *ndev, const uint8_t *addr, gfp_t gfp) 14676b4cac81SBjoern A. Zeeb { 14686b4cac81SBjoern A. Zeeb TODO(); 14696b4cac81SBjoern A. Zeeb } 14706b4cac81SBjoern A. Zeeb 14716b4cac81SBjoern A. Zeeb static __inline void 14726b4cac81SBjoern A. Zeeb cfg80211_port_authorized(struct net_device *ndev, const uint8_t *bssid, 14736b4cac81SBjoern A. Zeeb gfp_t gfp) 14746b4cac81SBjoern A. Zeeb { 14756b4cac81SBjoern A. Zeeb TODO(); 14766b4cac81SBjoern A. Zeeb } 14776b4cac81SBjoern A. Zeeb 14786b4cac81SBjoern A. Zeeb static __inline void 14796b4cac81SBjoern A. Zeeb cfg80211_ready_on_channel(struct wireless_dev *wdev, uint64_t cookie, 14806b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *channel, unsigned int duration, 14816b4cac81SBjoern A. Zeeb gfp_t gfp) 14826b4cac81SBjoern A. Zeeb { 14836b4cac81SBjoern A. Zeeb TODO(); 14846b4cac81SBjoern A. Zeeb } 14856b4cac81SBjoern A. Zeeb 14866b4cac81SBjoern A. Zeeb static __inline void 14876b4cac81SBjoern A. Zeeb cfg80211_remain_on_channel_expired(struct wireless_dev *wdev, 14886b4cac81SBjoern A. Zeeb uint64_t cookie, struct linuxkpi_ieee80211_channel *channel, gfp_t gfp) 14896b4cac81SBjoern A. Zeeb { 14906b4cac81SBjoern A. Zeeb TODO(); 14916b4cac81SBjoern A. Zeeb } 14926b4cac81SBjoern A. Zeeb 14936b4cac81SBjoern A. Zeeb static __inline void 14946b4cac81SBjoern A. Zeeb cfg80211_report_wowlan_wakeup(void) 14956b4cac81SBjoern A. Zeeb { 14966b4cac81SBjoern A. Zeeb TODO(); 14976b4cac81SBjoern A. Zeeb } 14986b4cac81SBjoern A. Zeeb 14996b4cac81SBjoern A. Zeeb static __inline void 15006b4cac81SBjoern A. Zeeb cfg80211_roamed(struct net_device *ndev, struct cfg80211_roam_info *roam_info, 15016b4cac81SBjoern A. Zeeb 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_rx_mgmt(struct wireless_dev *wdev, int freq, int _x, 15086b4cac81SBjoern A. Zeeb uint8_t *p, size_t p_len, int _x2) 15096b4cac81SBjoern A. Zeeb { 15106b4cac81SBjoern A. Zeeb TODO(); 15116b4cac81SBjoern A. Zeeb } 15126b4cac81SBjoern A. Zeeb 15136b4cac81SBjoern A. Zeeb static __inline void 15146b4cac81SBjoern A. Zeeb cfg80211_scan_done(struct cfg80211_scan_request *scan_request, 15156b4cac81SBjoern A. Zeeb struct cfg80211_scan_info *info) 15166b4cac81SBjoern A. Zeeb { 15176b4cac81SBjoern A. Zeeb TODO(); 15186b4cac81SBjoern A. Zeeb } 15196b4cac81SBjoern A. Zeeb 15206b4cac81SBjoern A. Zeeb static __inline void 15216b4cac81SBjoern A. Zeeb cfg80211_sched_scan_results(struct wiphy *wiphy, uint64_t reqid) 15226b4cac81SBjoern A. Zeeb { 15236b4cac81SBjoern A. Zeeb TODO(); 15246b4cac81SBjoern A. Zeeb } 15256b4cac81SBjoern A. Zeeb 15266b4cac81SBjoern A. Zeeb static __inline void 15276b4cac81SBjoern A. Zeeb cfg80211_sched_scan_stopped(struct wiphy *wiphy, int _x) 15286b4cac81SBjoern A. Zeeb { 15296b4cac81SBjoern A. Zeeb TODO(); 15306b4cac81SBjoern A. Zeeb } 15316b4cac81SBjoern A. Zeeb 15326b4cac81SBjoern A. Zeeb static __inline void 15336b4cac81SBjoern A. Zeeb cfg80211_unregister_wdev(struct wireless_dev *wdev) 15346b4cac81SBjoern A. Zeeb { 15356b4cac81SBjoern A. Zeeb TODO(); 15366b4cac81SBjoern A. Zeeb } 15376b4cac81SBjoern A. Zeeb 15386b4cac81SBjoern A. Zeeb static __inline struct sk_buff * 15396b4cac81SBjoern A. Zeeb cfg80211_vendor_cmd_alloc_reply_skb(struct wiphy *wiphy, unsigned int len) 15406b4cac81SBjoern A. Zeeb { 15416b4cac81SBjoern A. Zeeb TODO(); 15426b4cac81SBjoern A. Zeeb return (NULL); 15436b4cac81SBjoern A. Zeeb } 15446b4cac81SBjoern A. Zeeb 15456b4cac81SBjoern A. Zeeb static __inline int 15466b4cac81SBjoern A. Zeeb cfg80211_vendor_cmd_reply(struct sk_buff *skb) 15476b4cac81SBjoern A. Zeeb { 15486b4cac81SBjoern A. Zeeb TODO(); 15496b4cac81SBjoern A. Zeeb return (-ENXIO); 15506b4cac81SBjoern A. Zeeb } 15516b4cac81SBjoern A. Zeeb 15526b4cac81SBjoern A. Zeeb static __inline struct linuxkpi_ieee80211_channel * 15536b4cac81SBjoern A. Zeeb ieee80211_get_channel(struct wiphy *wiphy, uint32_t freq) 15546b4cac81SBjoern A. Zeeb { 15552e183d99SBjoern A. Zeeb 15562e183d99SBjoern A. Zeeb return (linuxkpi_ieee80211_get_channel(wiphy, freq)); 15576b4cac81SBjoern A. Zeeb } 15586b4cac81SBjoern A. Zeeb 15596b4cac81SBjoern A. Zeeb static __inline size_t 15606b4cac81SBjoern A. Zeeb ieee80211_get_hdrlen_from_skb(struct sk_buff *skb) 15616b4cac81SBjoern A. Zeeb { 15626b4cac81SBjoern A. Zeeb 15636b4cac81SBjoern A. Zeeb TODO(); 15646b4cac81SBjoern A. Zeeb return (-1); 15656b4cac81SBjoern A. Zeeb } 15666b4cac81SBjoern A. Zeeb 15676b4cac81SBjoern A. Zeeb static __inline void 15686b4cac81SBjoern A. Zeeb cfg80211_bss_flush(struct wiphy *wiphy) 15696b4cac81SBjoern A. Zeeb { 15706b4cac81SBjoern A. Zeeb TODO(); 15716b4cac81SBjoern A. Zeeb } 15726b4cac81SBjoern A. Zeeb 15736b4cac81SBjoern A. Zeeb static __inline bool 15746b4cac81SBjoern A. Zeeb cfg80211_channel_is_psc(struct linuxkpi_ieee80211_channel *channel) 15756b4cac81SBjoern A. Zeeb { 15766b4cac81SBjoern A. Zeeb 15776b4cac81SBjoern A. Zeeb /* Only 6Ghz. */ 15786b4cac81SBjoern A. Zeeb if (channel->band != NL80211_BAND_6GHZ) 15796b4cac81SBjoern A. Zeeb return (false); 15806b4cac81SBjoern A. Zeeb 15816b4cac81SBjoern A. Zeeb TODO(); 15826b4cac81SBjoern A. Zeeb return (false); 15836b4cac81SBjoern A. Zeeb } 15846b4cac81SBjoern A. Zeeb 15852e183d99SBjoern A. Zeeb static __inline int 15862e183d99SBjoern A. Zeeb cfg80211_get_ies_channel_number(const uint8_t *ie, size_t len, 15872e183d99SBjoern A. Zeeb enum nl80211_band band, enum cfg80211_bss_frame_type ftype) 15882e183d99SBjoern A. Zeeb { 15892e183d99SBjoern A. Zeeb 15902e183d99SBjoern A. Zeeb TODO(); 15912e183d99SBjoern A. Zeeb return (-1); 15922e183d99SBjoern A. Zeeb } 15936b4cac81SBjoern A. Zeeb 15946b4cac81SBjoern A. Zeeb /* Used for scanning at least. */ 15956b4cac81SBjoern A. Zeeb static __inline void 15966b4cac81SBjoern A. Zeeb get_random_mask_addr(uint8_t *dst, const uint8_t *addr, const uint8_t *mask) 15976b4cac81SBjoern A. Zeeb { 15986b4cac81SBjoern A. Zeeb int i; 15996b4cac81SBjoern A. Zeeb 16006b4cac81SBjoern A. Zeeb /* Get a completely random address and then overlay what we want. */ 16016b4cac81SBjoern A. Zeeb get_random_bytes(dst, ETH_ALEN); 16026b4cac81SBjoern A. Zeeb for (i = 0; i < ETH_ALEN; i++) 16036b4cac81SBjoern A. Zeeb dst[i] = (dst[i] & ~(mask[i])) | (addr[i] & mask[i]); 16046b4cac81SBjoern A. Zeeb } 16056b4cac81SBjoern A. Zeeb 1606d875aa15SBjoern A. Zeeb static __inline void 1607d875aa15SBjoern A. Zeeb cfg80211_shutdown_all_interfaces(struct wiphy *wiphy) 1608d875aa15SBjoern A. Zeeb { 1609d875aa15SBjoern A. Zeeb TODO(); 1610d875aa15SBjoern A. Zeeb } 1611d875aa15SBjoern A. Zeeb 16126b4cac81SBjoern A. Zeeb #ifndef LINUXKPI_NET80211 16136b4cac81SBjoern A. Zeeb #define ieee80211_channel linuxkpi_ieee80211_channel 16146b4cac81SBjoern A. Zeeb #define ieee80211_regdomain linuxkpi_ieee80211_regdomain 16156b4cac81SBjoern A. Zeeb /* net80211::IEEE80211_VHT_MCS_SUPPORT_0_n() conflicts */ 16166b4cac81SBjoern A. Zeeb #if defined(IEEE80211_VHT_MCS_SUPPORT_0_7) 16176b4cac81SBjoern A. Zeeb #undef IEEE80211_VHT_MCS_SUPPORT_0_7 16186b4cac81SBjoern A. Zeeb #endif 16196b4cac81SBjoern A. Zeeb #if defined(IEEE80211_VHT_MCS_SUPPORT_0_8) 16206b4cac81SBjoern A. Zeeb #undef IEEE80211_VHT_MCS_SUPPORT_0_8 16216b4cac81SBjoern A. Zeeb #endif 16226b4cac81SBjoern A. Zeeb #if defined(IEEE80211_VHT_MCS_SUPPORT_0_9) 16236b4cac81SBjoern A. Zeeb #undef IEEE80211_VHT_MCS_SUPPORT_0_9 16246b4cac81SBjoern A. Zeeb #endif 16256b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_MCS_SUPPORT_0_7 LKPI_IEEE80211_VHT_MCS_SUPPORT_0_7 16266b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_MCS_SUPPORT_0_8 LKPI_IEEE80211_VHT_MCS_SUPPORT_0_8 16276b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_MCS_SUPPORT_0_9 LKPI_IEEE80211_VHT_MCS_SUPPORT_0_9 16286b4cac81SBjoern A. Zeeb #endif 16296b4cac81SBjoern A. Zeeb 16306b4cac81SBjoern A. Zeeb #endif /* _LINUXKPI_NET_CFG80211_H */ 1631