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> 39*2e183d99SBjoern 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> 44*2e183d99SBjoern A. Zeeb #include <net/regulatory.h> 456b4cac81SBjoern A. Zeeb 466b4cac81SBjoern A. Zeeb /* linux_80211.c */ 476b4cac81SBjoern A. Zeeb extern int 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 546b4cac81SBjoern A. Zeeb #define TODO() if (debug_80211 & D80211_TODO) \ 556b4cac81SBjoern A. Zeeb printf("%s:%d: XXX LKPI80211 TODO\n", __func__, __LINE__) 566b4cac81SBjoern A. Zeeb #define IMPROVE(...) if (debug_80211 & D80211_IMPROVE) \ 576b4cac81SBjoern A. Zeeb printf("%s:%d: XXX LKPI80211 IMPROVE\n", __func__, __LINE__) 586b4cac81SBjoern A. Zeeb 596b4cac81SBjoern A. Zeeb #define WIPHY_PARAM_FRAG_THRESHOLD __LINE__ /* TODO FIXME brcmfmac */ 606b4cac81SBjoern A. Zeeb #define WIPHY_PARAM_RETRY_LONG __LINE__ /* TODO FIXME brcmfmac */ 616b4cac81SBjoern A. Zeeb #define WIPHY_PARAM_RETRY_SHORT __LINE__ /* TODO FIXME brcmfmac */ 626b4cac81SBjoern A. Zeeb #define WIPHY_PARAM_RTS_THRESHOLD __LINE__ /* TODO FIXME brcmfmac */ 636b4cac81SBjoern A. Zeeb 646b4cac81SBjoern A. Zeeb #define CFG80211_SIGNAL_TYPE_MBM __LINE__ /* TODO FIXME brcmfmac */ 656b4cac81SBjoern A. Zeeb 666b4cac81SBjoern A. Zeeb #define UPDATE_ASSOC_IES 1 676b4cac81SBjoern A. Zeeb 686b4cac81SBjoern A. Zeeb #define IEEE80211_MAX_CHAINS 4 /* net80211: IEEE80211_MAX_CHAINS copied */ 696b4cac81SBjoern A. Zeeb 706b4cac81SBjoern A. Zeeb enum cfg80211_rate_info_flags { 716b4cac81SBjoern A. Zeeb RATE_INFO_FLAGS_SHORT_GI = BIT(0), 726b4cac81SBjoern A. Zeeb RATE_INFO_FLAGS_MCS = BIT(1), 736b4cac81SBjoern A. Zeeb RATE_INFO_FLAGS_VHT_MCS = BIT(2), 746b4cac81SBjoern A. Zeeb RATE_INFO_FLAGS_HE_MCS = BIT(3), 756b4cac81SBjoern A. Zeeb }; 766b4cac81SBjoern A. Zeeb 776b4cac81SBjoern A. Zeeb extern const uint8_t rfc1042_header[6]; 786b4cac81SBjoern A. Zeeb 79*2e183d99SBjoern A. Zeeb enum ieee80211_privacy { 80*2e183d99SBjoern A. Zeeb IEEE80211_PRIVACY_ANY, 81*2e183d99SBjoern A. Zeeb }; 82*2e183d99SBjoern A. Zeeb 83*2e183d99SBjoern A. Zeeb enum ieee80211_bss_type { 84*2e183d99SBjoern A. Zeeb IEEE80211_BSS_TYPE_ANY, 85*2e183d99SBjoern A. Zeeb }; 86*2e183d99SBjoern A. Zeeb 87*2e183d99SBjoern A. Zeeb enum cfg80211_bss_frame_type { 886b4cac81SBjoern A. Zeeb CFG80211_BSS_FTYPE_UNKNOWN, 89*2e183d99SBjoern A. Zeeb CFG80211_BSS_FTYPE_BEACON, 90*2e183d99SBjoern A. Zeeb CFG80211_BSS_FTYPE_PRESP, 916b4cac81SBjoern A. Zeeb }; 926b4cac81SBjoern A. Zeeb 936b4cac81SBjoern A. Zeeb enum ieee80211_channel_flags { 94d7ce88aaSBjoern A. Zeeb IEEE80211_CHAN_DISABLED = BIT(0), 95d7ce88aaSBjoern A. Zeeb IEEE80211_CHAN_INDOOR_ONLY = BIT(1), 96d7ce88aaSBjoern A. Zeeb IEEE80211_CHAN_IR_CONCURRENT = BIT(2), 97d7ce88aaSBjoern A. Zeeb IEEE80211_CHAN_RADAR = BIT(3), 98d7ce88aaSBjoern A. Zeeb IEEE80211_CHAN_NO_IR = BIT(4), 99d7ce88aaSBjoern A. Zeeb IEEE80211_CHAN_NO_HT40MINUS = BIT(5), 100d7ce88aaSBjoern A. Zeeb IEEE80211_CHAN_NO_HT40PLUS = BIT(6), 101d7ce88aaSBjoern A. Zeeb IEEE80211_CHAN_NO_80MHZ = BIT(7), 102d7ce88aaSBjoern A. Zeeb IEEE80211_CHAN_NO_160MHZ = BIT(8), 103*2e183d99SBjoern A. Zeeb IEEE80211_CHAN_NO_OFDM = BIT(9), 1046b4cac81SBjoern A. Zeeb }; 1056b4cac81SBjoern A. Zeeb #define IEEE80211_CHAN_NO_HT40 (IEEE80211_CHAN_NO_HT40MINUS|IEEE80211_CHAN_NO_HT40PLUS) 1066b4cac81SBjoern A. Zeeb 1076b4cac81SBjoern A. Zeeb struct ieee80211_txrx_stypes { 1086b4cac81SBjoern A. Zeeb uint16_t tx; 1096b4cac81SBjoern A. Zeeb uint16_t rx; 1106b4cac81SBjoern A. Zeeb }; 1116b4cac81SBjoern A. Zeeb 1126b4cac81SBjoern A. Zeeb /* XXX net80211 has an ieee80211_channel as well. */ 1136b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel { 1146b4cac81SBjoern A. Zeeb /* TODO FIXME */ 1156b4cac81SBjoern A. Zeeb uint32_t hw_value; /* ic_ieee */ 1166b4cac81SBjoern A. Zeeb uint32_t center_freq; /* ic_freq */ 1176b4cac81SBjoern A. Zeeb enum ieee80211_channel_flags flags; /* ic_flags */ 1186b4cac81SBjoern A. Zeeb enum nl80211_band band; 1196b4cac81SBjoern A. Zeeb int8_t max_power; /* ic_maxpower */ 1206b4cac81SBjoern A. Zeeb bool beacon_found; 1216b4cac81SBjoern A. Zeeb int max_antenna_gain, max_reg_power; 1226b4cac81SBjoern A. Zeeb int orig_flags; 123*2e183d99SBjoern A. Zeeb int dfs_cac_ms, dfs_state; 1246b4cac81SBjoern A. Zeeb }; 1256b4cac81SBjoern A. Zeeb 126*2e183d99SBjoern A. Zeeb /* XXX net80211 calls these IEEE80211_HTCAP_* */ 127*2e183d99SBjoern A. Zeeb #define IEEE80211_HT_CAP_LDPC_CODING 0x0001 /* IEEE80211_HTCAP_LDPC */ 128*2e183d99SBjoern A. Zeeb #define IEEE80211_HT_CAP_SUP_WIDTH_20_40 0x0002 /* IEEE80211_HTCAP_CHWIDTH40 */ 129*2e183d99SBjoern A. Zeeb #define IEEE80211_HT_CAP_GRN_FLD 0x0010 /* IEEE80211_HTCAP_GREENFIELD */ 130*2e183d99SBjoern A. Zeeb #define IEEE80211_HT_CAP_SGI_20 0x0020 /* IEEE80211_HTCAP_SHORTGI20 */ 131*2e183d99SBjoern A. Zeeb #define IEEE80211_HT_CAP_SGI_40 0x0040 /* IEEE80211_HTCAP_SHORTGI40 */ 132*2e183d99SBjoern A. Zeeb #define IEEE80211_HT_CAP_TX_STBC 0x0080 /* IEEE80211_HTCAP_TXSTBC */ 133*2e183d99SBjoern A. Zeeb #define IEEE80211_HT_CAP_RX_STBC 0x0100 /* IEEE80211_HTCAP_RXSTBC */ 134*2e183d99SBjoern A. Zeeb #define IEEE80211_HT_CAP_RX_STBC_SHIFT 8 /* IEEE80211_HTCAP_RXSTBC_S */ 135*2e183d99SBjoern A. Zeeb #define IEEE80211_HT_CAP_MAX_AMSDU 0x0800 /* IEEE80211_HTCAP_MAXAMSDU */ 136*2e183d99SBjoern A. Zeeb #define IEEE80211_HT_CAP_DSSSCCK40 0x1000 /* IEEE80211_HTCAP_DSSSCCK40 */ 137*2e183d99SBjoern A. Zeeb #define IEEE80211_HT_CAP_SM_PS 0x000c /* IEEE80211_HTCAP_SMPS */ 138*2e183d99SBjoern A. Zeeb #define IEEE80211_HT_CAP_SM_PS_SHIFT 2 139*2e183d99SBjoern A. Zeeb #define IEEE80211_HT_CAP_LSIG_TXOP_PROT 0x8000 /* IEEE80211_HTCAP_LSIGTXOPPROT */ 140*2e183d99SBjoern A. Zeeb 141*2e183d99SBjoern A. Zeeb #define IEEE80211_HT_MCS_TX_DEFINED 0x0001 142*2e183d99SBjoern A. Zeeb #define IEEE80211_HT_MCS_TX_RX_DIFF 0x0002 143*2e183d99SBjoern A. Zeeb #define IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT 2 144*2e183d99SBjoern A. Zeeb #define IEEE80211_HT_MCS_RX_HIGHEST_MASK 0x3FF 145*2e183d99SBjoern A. Zeeb #define IEEE80211_HT_MCS_MASK_LEN 10 146*2e183d99SBjoern A. Zeeb 1476b4cac81SBjoern A. Zeeb enum ieee80211_vht_mcs_support { 1486b4cac81SBjoern A. Zeeb LKPI_IEEE80211_VHT_MCS_SUPPORT_0_7, 1496b4cac81SBjoern A. Zeeb LKPI_IEEE80211_VHT_MCS_SUPPORT_0_8, 1506b4cac81SBjoern A. Zeeb LKPI_IEEE80211_VHT_MCS_SUPPORT_0_9, 1516b4cac81SBjoern A. Zeeb }; 1526b4cac81SBjoern A. Zeeb 1536b4cac81SBjoern A. Zeeb struct cfg80211_bitrate_mask { 1546b4cac81SBjoern A. Zeeb /* TODO FIXME */ 1556b4cac81SBjoern A. Zeeb /* This is so weird but nothing else works out...*/ 1566b4cac81SBjoern A. Zeeb struct { 1576b4cac81SBjoern A. Zeeb uint64_t legacy; /* XXX? */ 158*2e183d99SBjoern A. Zeeb uint8_t ht_mcs[IEEE80211_HT_MCS_MASK_LEN]; 1596b4cac81SBjoern A. Zeeb uint16_t vht_mcs[16]; /* XXX? */ 16051b461b3SBjoern A. Zeeb uint16_t he_mcs[16]; /* XXX? */ 161*2e183d99SBjoern A. Zeeb enum nl80211_txrate_gi gi; 1626b4cac81SBjoern A. Zeeb } control[NUM_NL80211_BANDS]; 1636b4cac81SBjoern A. Zeeb }; 1646b4cac81SBjoern A. Zeeb 1656b4cac81SBjoern A. Zeeb struct rate_info { 1666b4cac81SBjoern A. Zeeb /* TODO FIXME */ 1676b4cac81SBjoern A. Zeeb int bw, flags, he_dcm, he_gi, he_ru_alloc, legacy, mcs, nss; 1686b4cac81SBjoern A. Zeeb }; 1696b4cac81SBjoern A. Zeeb 1706b4cac81SBjoern A. Zeeb struct ieee80211_rate { 1716b4cac81SBjoern A. Zeeb /* TODO FIXME */ 1726b4cac81SBjoern A. Zeeb uint32_t bitrate; 1736b4cac81SBjoern A. Zeeb uint32_t hw_value; 1746b4cac81SBjoern A. Zeeb uint32_t hw_value_short; 1756b4cac81SBjoern A. Zeeb uint32_t flags; 1766b4cac81SBjoern A. Zeeb }; 1776b4cac81SBjoern A. Zeeb 1786b4cac81SBjoern A. Zeeb struct ieee80211_sta_ht_cap { 1796b4cac81SBjoern A. Zeeb /* TODO FIXME */ 1806b4cac81SBjoern A. Zeeb int ampdu_density, ampdu_factor; 1816b4cac81SBjoern A. Zeeb bool ht_supported; 1826b4cac81SBjoern A. Zeeb uint16_t cap; 1836b4cac81SBjoern A. Zeeb struct mcs { 184*2e183d99SBjoern A. Zeeb uint16_t rx_mask[IEEE80211_HT_MCS_MASK_LEN]; /* XXX ? > 4 (rtw88) */ 1856b4cac81SBjoern A. Zeeb int rx_highest; 1866b4cac81SBjoern A. Zeeb uint32_t tx_params; 1876b4cac81SBjoern A. Zeeb } mcs; 1886b4cac81SBjoern A. Zeeb }; 1896b4cac81SBjoern A. Zeeb 1906b4cac81SBjoern A. Zeeb /* XXX net80211 calls these IEEE80211_VHTCAP_* */ 1916b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_3895 0x00000000 /* IEEE80211_VHTCAP_MAX_MPDU_LENGTH_3895 */ 1926b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_7991 0x00000001 /* IEEE80211_VHTCAP_MAX_MPDU_LENGTH_7991 */ 1936b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_11454 0x00000002 /* IEEE80211_VHTCAP_MAX_MPDU_LENGTH_11454 */ 1946b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_MAX_MPDU_MASK 0x00000003 /* IEEE80211_VHTCAP_MAX_MPDU_MASK */ 1956b4cac81SBjoern A. Zeeb 1966b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ (IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_160MHZ << IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_MASK_S) 197*2e183d99SBjoern 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) 198*2e183d99SBjoern A. Zeeb #define IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_MASK 0x0000000c /* IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_MASK */ 1996b4cac81SBjoern A. Zeeb 2006b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_RXLDPC 0x00000010 /* IEEE80211_VHTCAP_RXLDPC */ 2016b4cac81SBjoern A. Zeeb 2026b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_SHORT_GI_80 0x00000020 /* IEEE80211_VHTCAP_SHORT_GI_80 */ 2036b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_SHORT_GI_160 0x00000040 /* IEEE80211_VHTCAP_SHORT_GI_160 */ 2046b4cac81SBjoern A. Zeeb 2056b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_TXSTBC 0x00000080 /* IEEE80211_VHTCAP_TXSTBC */ 2066b4cac81SBjoern A. Zeeb 2076b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_RXSTBC_1 0x00000100 /* IEEE80211_VHTCAP_RXSTBC_1 */ 2086b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_RXSTBC_MASK 0x00000700 /* IEEE80211_VHTCAP_RXSTBC_MASK */ 2096b4cac81SBjoern A. Zeeb 2106b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE 0x00000800 /* IEEE80211_VHTCAP_SU_BEAMFORMER_CAPABLE */ 2116b4cac81SBjoern A. Zeeb 2126b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_SU_BEAMFORMEE_CAPABLE 0x00001000 /* IEEE80211_VHTCAP_SU_BEAMFORMEE_CAPABLE */ 2136b4cac81SBjoern A. Zeeb 2146b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_MU_BEAMFORMER_CAPABLE 0x00080000 /* IEEE80211_VHTCAP_MU_BEAMFORMER_CAPABLE */ 2156b4cac81SBjoern A. Zeeb 2166b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_MU_BEAMFORMEE_CAPABLE 0x00100000 /* IEEE80211_VHTCAP_MU_BEAMFORMEE_CAPABLE */ 2176b4cac81SBjoern A. Zeeb 2186b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_BEAMFORMEE_STS_SHIFT 13 /* IEEE80211_VHTCAP_BEAMFORMEE_STS_SHIFT */ 219*2e183d99SBjoern A. Zeeb #define IEEE80211_VHT_CAP_BEAMFORMEE_STS_MASK (7 << IEEE80211_VHT_CAP_BEAMFORMEE_STS_SHIFT) /* IEEE80211_VHTCAP_BEAMFORMEE_STS_MASK */ 2206b4cac81SBjoern A. Zeeb 2216b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_HTC_VHT 0x00400000 /* IEEE80211_VHTCAP_HTC_VHT */ 2226b4cac81SBjoern A. Zeeb 2236b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_RX_ANTENNA_PATTERN 0x10000000 /* IEEE80211_VHTCAP_RX_ANTENNA_PATTERN */ 2246b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_TX_ANTENNA_PATTERN 0x20000000 /* IEEE80211_VHTCAP_TX_ANTENNA_PATTERN */ 2256b4cac81SBjoern A. Zeeb 2266b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_VHT_LINK_ADAPTATION_VHT_MRQ_MFB 0x0c000000 /* IEEE80211_VHTCAP_VHT_LINK_ADAPTATION_VHT_MRQ_MFB */ 2276b4cac81SBjoern A. Zeeb 2286b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_SOUNDING_DIMENSIONS_SHIFT 16 /* IEEE80211_VHTCAP_SOUNDING_DIMENSIONS_SHIFT */ 2296b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_SOUNDING_DIMENSIONS_MASK \ 2306b4cac81SBjoern A. Zeeb (7 << IEEE80211_VHTCAP_SOUNDING_DIMENSIONS_SHIFT) /* IEEE80211_VHTCAP_SOUNDING_DIMENSIONS_MASK */ 2316b4cac81SBjoern A. Zeeb 2326b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_SHIFT 23 /* IEEE80211_VHTCAP_MAX_A_MPDU_LENGTH_EXPONENT_SHIFT */ 2336b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MASK \ 2346b4cac81SBjoern A. Zeeb (7 << IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_SHIFT) /* IEEE80211_VHTCAP_MAX_A_MPDU_LENGTH_EXPONENT_MASK */ 2356b4cac81SBjoern A. Zeeb 236*2e183d99SBjoern A. Zeeb 2376b4cac81SBjoern A. Zeeb struct ieee80211_sta_vht_cap { 2386b4cac81SBjoern A. Zeeb /* TODO FIXME */ 2396b4cac81SBjoern A. Zeeb bool vht_supported; 2406b4cac81SBjoern A. Zeeb uint32_t cap; 2416b4cac81SBjoern A. Zeeb struct vht_mcs vht_mcs; 2426b4cac81SBjoern A. Zeeb }; 2436b4cac81SBjoern A. Zeeb 2446b4cac81SBjoern A. Zeeb struct cfg80211_connect_resp_params { 2456b4cac81SBjoern A. Zeeb /* XXX TODO */ 2466b4cac81SBjoern A. Zeeb uint8_t *bssid; 2476b4cac81SBjoern A. Zeeb const uint8_t *req_ie; 2486b4cac81SBjoern A. Zeeb const uint8_t *resp_ie; 2496b4cac81SBjoern A. Zeeb uint32_t req_ie_len; 2506b4cac81SBjoern A. Zeeb uint32_t resp_ie_len; 2516b4cac81SBjoern A. Zeeb int status; 2526b4cac81SBjoern A. Zeeb }; 2536b4cac81SBjoern A. Zeeb 2546b4cac81SBjoern A. Zeeb struct cfg80211_inform_bss { 2556b4cac81SBjoern A. Zeeb /* XXX TODO */ 2566b4cac81SBjoern A. Zeeb int boottime_ns, scan_width, signal; 2576b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *chan; 2586b4cac81SBjoern A. Zeeb }; 2596b4cac81SBjoern A. Zeeb 2606b4cac81SBjoern A. Zeeb struct cfg80211_roam_info { 2616b4cac81SBjoern A. Zeeb /* XXX TODO */ 2626b4cac81SBjoern A. Zeeb uint8_t *bssid; 2636b4cac81SBjoern A. Zeeb const uint8_t *req_ie; 2646b4cac81SBjoern A. Zeeb const uint8_t *resp_ie; 2656b4cac81SBjoern A. Zeeb uint32_t req_ie_len; 2666b4cac81SBjoern A. Zeeb uint32_t resp_ie_len; 2676b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *channel; 2686b4cac81SBjoern A. Zeeb }; 2696b4cac81SBjoern A. Zeeb 2706b4cac81SBjoern A. Zeeb struct cfg80211_bss_ies { 2716b4cac81SBjoern A. Zeeb /* XXX TODO, type is best guess. Fix if more info. */ 2726b4cac81SBjoern A. Zeeb uint8_t *data; 2736b4cac81SBjoern A. Zeeb int len; 2746b4cac81SBjoern A. Zeeb }; 2756b4cac81SBjoern A. Zeeb 2766b4cac81SBjoern A. Zeeb struct cfg80211_bss { 2776b4cac81SBjoern A. Zeeb /* XXX TODO */ 2786b4cac81SBjoern A. Zeeb struct cfg80211_bss_ies *ies; 2796b4cac81SBjoern A. Zeeb }; 2806b4cac81SBjoern A. Zeeb 2816b4cac81SBjoern A. Zeeb struct cfg80211_chan_def { 2826b4cac81SBjoern A. Zeeb /* XXX TODO */ 2836b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *chan; 2846b4cac81SBjoern A. Zeeb enum nl80211_chan_width width; 2856b4cac81SBjoern A. Zeeb uint32_t center_freq1; 2866b4cac81SBjoern A. Zeeb uint32_t center_freq2; 2876b4cac81SBjoern A. Zeeb }; 2886b4cac81SBjoern A. Zeeb 2896b4cac81SBjoern A. Zeeb struct cfg80211_ftm_responder_stats { 2906b4cac81SBjoern A. Zeeb /* XXX TODO */ 2916b4cac81SBjoern 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; 2926b4cac81SBjoern A. Zeeb }; 2936b4cac81SBjoern A. Zeeb 2946b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_capabilities { 2956b4cac81SBjoern A. Zeeb /* XXX TODO */ 2966b4cac81SBjoern A. Zeeb int max_peers, randomize_mac_addr, report_ap_tsf; 2976b4cac81SBjoern A. Zeeb struct { 2986b4cac81SBjoern 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; 2996b4cac81SBjoern A. Zeeb } ftm; 3006b4cac81SBjoern A. Zeeb }; 3016b4cac81SBjoern A. Zeeb 3026b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_ftm_request { 3036b4cac81SBjoern A. Zeeb /* XXX TODO */ 3046b4cac81SBjoern A. Zeeb int asap, burst_period, ftmr_retries, ftms_per_burst, non_trigger_based, num_bursts_exp, request_civicloc, request_lci, trigger_based; 3056b4cac81SBjoern A. Zeeb uint8_t bss_color; 3066b4cac81SBjoern A. Zeeb bool lmr_feedback; 3076b4cac81SBjoern A. Zeeb }; 3086b4cac81SBjoern A. Zeeb 3096b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_request_peer { 3106b4cac81SBjoern A. Zeeb /* XXX TODO */ 3116b4cac81SBjoern A. Zeeb struct cfg80211_chan_def chandef; 3126b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_ftm_request ftm; 3136b4cac81SBjoern A. Zeeb uint8_t addr[ETH_ALEN]; 3146b4cac81SBjoern A. Zeeb int report_ap_tsf; 3156b4cac81SBjoern A. Zeeb }; 3166b4cac81SBjoern A. Zeeb 3176b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_request { 3186b4cac81SBjoern A. Zeeb /* XXX TODO */ 3196b4cac81SBjoern A. Zeeb int cookie, n_peers, timeout; 3206b4cac81SBjoern A. Zeeb uint8_t mac_addr[ETH_ALEN], mac_addr_mask[ETH_ALEN]; 3216b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_request_peer peers[]; 3226b4cac81SBjoern A. Zeeb }; 3236b4cac81SBjoern A. Zeeb 3246b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_ftm_result { 3256b4cac81SBjoern A. Zeeb /* XXX TODO */ 3266b4cac81SBjoern A. Zeeb int burst_index, busy_retry_time, failure_reason; 3276b4cac81SBjoern 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; 3286b4cac81SBjoern A. Zeeb uint8_t *lci; 3296b4cac81SBjoern A. Zeeb uint8_t *civicloc; 3306b4cac81SBjoern A. Zeeb int lci_len; 3316b4cac81SBjoern A. Zeeb int civicloc_len; 3326b4cac81SBjoern A. Zeeb }; 3336b4cac81SBjoern A. Zeeb 3346b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_result { 3356b4cac81SBjoern A. Zeeb /* XXX TODO */ 3366b4cac81SBjoern A. Zeeb int ap_tsf, ap_tsf_valid, final, host_time, status, type; 3376b4cac81SBjoern A. Zeeb uint8_t addr[ETH_ALEN]; 3386b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_ftm_result ftm; 3396b4cac81SBjoern A. Zeeb }; 3406b4cac81SBjoern A. Zeeb 34151b461b3SBjoern A. Zeeb struct cfg80211_sar_freq_ranges { 34251b461b3SBjoern A. Zeeb uint32_t start_freq; 34351b461b3SBjoern A. Zeeb uint32_t end_freq; 34451b461b3SBjoern A. Zeeb }; 34551b461b3SBjoern A. Zeeb 34651b461b3SBjoern A. Zeeb struct cfg80211_sar_sub_specs { 34751b461b3SBjoern A. Zeeb uint32_t freq_range_index; 34851b461b3SBjoern A. Zeeb int power; 34951b461b3SBjoern A. Zeeb }; 35051b461b3SBjoern A. Zeeb 35151b461b3SBjoern A. Zeeb struct cfg80211_sar_specs { 35251b461b3SBjoern A. Zeeb enum nl80211_sar_type type; 35351b461b3SBjoern A. Zeeb uint32_t num_sub_specs; 35451b461b3SBjoern A. Zeeb struct cfg80211_sar_sub_specs sub_specs[]; 35551b461b3SBjoern A. Zeeb }; 35651b461b3SBjoern A. Zeeb 35751b461b3SBjoern A. Zeeb struct cfg80211_sar_capa { 35851b461b3SBjoern A. Zeeb enum nl80211_sar_type type; 35951b461b3SBjoern A. Zeeb uint32_t num_freq_ranges; 36051b461b3SBjoern A. Zeeb const struct cfg80211_sar_freq_ranges *freq_ranges; 36151b461b3SBjoern A. Zeeb }; 36251b461b3SBjoern A. Zeeb 3636b4cac81SBjoern A. Zeeb struct cfg80211_ssid { 3646b4cac81SBjoern A. Zeeb int ssid_len; 3656b4cac81SBjoern A. Zeeb uint8_t ssid[IEEE80211_MAX_SSID_LEN]; 3666b4cac81SBjoern A. Zeeb }; 3676b4cac81SBjoern A. Zeeb 3686b4cac81SBjoern A. Zeeb struct cfg80211_scan_6ghz_params { 3696b4cac81SBjoern A. Zeeb /* XXX TODO */ 3706b4cac81SBjoern A. Zeeb uint8_t *bssid; 3716b4cac81SBjoern A. Zeeb int channel_idx, psc_no_listen, short_ssid, short_ssid_valid, unsolicited_probe; 3726b4cac81SBjoern A. Zeeb }; 3736b4cac81SBjoern A. Zeeb 3746b4cac81SBjoern A. Zeeb struct cfg80211_match_set { 3756b4cac81SBjoern A. Zeeb uint8_t bssid[ETH_ALEN]; 3766b4cac81SBjoern A. Zeeb struct cfg80211_ssid ssid; 3776b4cac81SBjoern A. Zeeb int rssi_thold; 3786b4cac81SBjoern A. Zeeb }; 3796b4cac81SBjoern A. Zeeb 3806b4cac81SBjoern A. Zeeb struct cfg80211_scan_request { 3816b4cac81SBjoern A. Zeeb /* XXX TODO */ 3826b4cac81SBjoern A. Zeeb int duration, duration_mandatory, flags; 3836b4cac81SBjoern A. Zeeb bool no_cck; 3846b4cac81SBjoern A. Zeeb bool scan_6ghz; 3856b4cac81SBjoern A. Zeeb struct wireless_dev *wdev; 3866b4cac81SBjoern A. Zeeb struct wiphy *wiphy; 3876b4cac81SBjoern A. Zeeb int ie_len; 3886b4cac81SBjoern A. Zeeb uint8_t *ie; 3896b4cac81SBjoern A. Zeeb uint8_t mac_addr[ETH_ALEN], mac_addr_mask[ETH_ALEN]; 3906b4cac81SBjoern A. Zeeb int n_ssids; 3916b4cac81SBjoern A. Zeeb int n_6ghz_params; 3926b4cac81SBjoern A. Zeeb int n_channels; 3936b4cac81SBjoern A. Zeeb struct cfg80211_ssid *ssids; 3946b4cac81SBjoern A. Zeeb struct cfg80211_scan_6ghz_params *scan_6ghz_params; 3956b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *channels[0]; 3966b4cac81SBjoern A. Zeeb }; 3976b4cac81SBjoern A. Zeeb 3986b4cac81SBjoern A. Zeeb struct cfg80211_sched_scan_plan { 3996b4cac81SBjoern A. Zeeb /* XXX TODO */ 4006b4cac81SBjoern A. Zeeb int interval, iterations; 4016b4cac81SBjoern A. Zeeb }; 4026b4cac81SBjoern A. Zeeb 4036b4cac81SBjoern A. Zeeb struct cfg80211_sched_scan_request { 4046b4cac81SBjoern A. Zeeb /* XXX TODO */ 4056b4cac81SBjoern A. Zeeb int delay, flags; 4066b4cac81SBjoern A. Zeeb uint8_t mac_addr[ETH_ALEN], mac_addr_mask[ETH_ALEN]; 4076b4cac81SBjoern A. Zeeb uint64_t reqid; 4086b4cac81SBjoern A. Zeeb int n_match_sets; 4096b4cac81SBjoern A. Zeeb int n_scan_plans; 4106b4cac81SBjoern A. Zeeb int n_ssids; 4116b4cac81SBjoern A. Zeeb int n_channels; 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]; 620*2e183d99SBjoern 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 6286b4cac81SBjoern A. Zeeb 6296b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP1_LINK_ADAPTATION 0x1 6306b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP1_MULTI_TID_AGG_RX_QOS_8 0x2 6316b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP1_TF_MAC_PAD_DUR_16US 0x4 6326b4cac81SBjoern A. Zeeb 6336b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP2_32BIT_BA_BITMAP 0x1 6346b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP2_ACK_EN 0x2 6356b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP2_BSR 0x4 6366b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP2_LINK_ADAPTATION 0x8 6376b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP2_BCAST_TWT 0x10 63851b461b3SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP2_ALL_ACK 0x20 6396b4cac81SBjoern A. Zeeb 6406b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP3_MAX_AMPDU_LEN_EXP_VHT_2 0x1 6416b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP3_OMI_CONTROL 0x2 6426b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP3_MAX_AMPDU_LEN_EXP_EXT_1 0x10 64351b461b3SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP3_MAX_AMPDU_LEN_EXP_EXT_2 0x20 64451b461b3SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP3_MAX_AMPDU_LEN_EXP_EXT_3 0x40 64551b461b3SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP3_MAX_AMPDU_LEN_EXP_MASK 0x70 6466b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP3_RX_CTRL_FRAME_TO_MULTIBSS 0x80 6476b4cac81SBjoern A. Zeeb 6486b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP4_AMDSU_IN_AMPDU 0x1 6496b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP4_BQR 0x2 6506b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP4_MULTI_TID_AGG_TX_QOS_B39 0x4 6516b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP4_AMSDU_IN_AMPDU 0x8 65251b461b3SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP4_OPS 0x10 6536b4cac81SBjoern A. Zeeb 6546b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP5_HE_DYNAMIC_SM_PS 0x1 6556b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP5_HT_VHT_TRIG_FRAME_RX 0x2 6566b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP5_MULTI_TID_AGG_TX_QOS_B40 0x4 6576b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP5_MULTI_TID_AGG_TX_QOS_B41 0x8 6586b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MAC_CAP5_UL_2x996_TONE_RU 0x10 6596b4cac81SBjoern A. Zeeb 6606b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MCS_NOT_SUPPORTED 0x0 6616b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MCS_SUPPORT_0_7 0x1 6626b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MCS_SUPPORT_0_9 0x2 6636b4cac81SBjoern A. Zeeb #define IEEE80211_HE_MCS_SUPPORT_0_11 0x4 6646b4cac81SBjoern A. Zeeb 6656b4cac81SBjoern A. Zeeb #define IEEE80211_HE_6GHZ_CAP_TX_ANTPAT_CONS 0x01 6666b4cac81SBjoern A. Zeeb #define IEEE80211_HE_6GHZ_CAP_RX_ANTPAT_CONS 0x02 6676b4cac81SBjoern A. Zeeb #define IEEE80211_HE_6GHZ_CAP_MIN_MPDU_START 0x04 6686b4cac81SBjoern A. Zeeb #define IEEE80211_HE_6GHZ_CAP_MAX_MPDU_LEN 0x08 6696b4cac81SBjoern A. Zeeb #define IEEE80211_HE_6GHZ_CAP_MAX_AMPDU_LEN_EXP 0x10 6706b4cac81SBjoern A. Zeeb 6716b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_160MHZ_IN_5G 0x1 6726b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_40MHZ_80MHZ_IN_5G 0x2 6736b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_40MHZ_IN_2G 0x4 67451b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_80PLUS80_MHZ_IN_5G 0x8 6756b4cac81SBjoern A. Zeeb 6766b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP1_DEVICE_CLASS_A 0x1 6776b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP1_LDPC_CODING_IN_PAYLOAD 0x2 6786b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP1_MIDAMBLE_RX_TX_MAX_NSTS 0x4 6796b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP1_PREAMBLE_PUNC_RX_MASK 0x8 68051b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP1_HE_LTF_AND_GI_FOR_HE_PPDUS_0_8US 0x10 6816b4cac81SBjoern A. Zeeb 6826b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP2_MIDAMBLE_RX_TX_MAX_NSTS 0x1 6836b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP2_NDP_4x_LTF_AND_3_2US 0x2 6846b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP2_STBC_TX_UNDER_80MHZ 0x4 6856b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP2_STBC_RX_UNDER_80MHZ 0x8 68651b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP2_DOPPLER_TX 0x10 6876b4cac81SBjoern A. Zeeb 6886b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP3_DCM_MAX_CONST_RX_MASK 0x1 6896b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP3_DCM_MAX_CONST_RX_NO_DCM 0x2 6906b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP3_DCM_MAX_CONST_TX_NO_DCM 0x4 6916b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP3_DCM_MAX_RX_NSS_1 0x8 6926b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP3_DCM_MAX_TX_NSS_1 0x10 69351b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP3_SU_BEAMFORMER 0x20 69451b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP3_DCM_MAX_CONST_RX_16_QAM 0x40 69551b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP3_DCM_MAX_CONST_TX_16_QAM 0x80 69651b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP3_DCM_MAX_TX_NSS_2 0x100 69751b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP3_RX_PARTIAL_BW_SU_IN_20MHZ_MU 0x200 6986b4cac81SBjoern A. Zeeb 6996b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP4_BEAMFORMEE_MAX_STS_UNDER_80MHZ_8 0x1 7006b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP4_BEAMFORMEE_MAX_STS_ABOVE_80MHZ_8 0x2 7016b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP4_SU_BEAMFORMEE 0x4 70251b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP4_MU_BEAMFORMER 0x8 70351b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP4_BEAMFORMEE_MAX_STS_UNDER_80MHZ_4 0x10 7046b4cac81SBjoern A. Zeeb 7056b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP5_BEAMFORMEE_NUM_SND_DIM_ABOVE_80MHZ_2 0x1 7066b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP5_BEAMFORMEE_NUM_SND_DIM_UNDER_80MHZ_2 0x2 70751b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP5_BEAMFORMEE_NUM_SND_DIM_UNDER_80MHZ_MASK 0x4 70851b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP5_NG16_MU_FEEDBACK 0x8 70951b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP5_NG16_SU_FEEDBACK 0x10 7106b4cac81SBjoern A. Zeeb 7116b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP6_PPE_THRESHOLD_PRESENT 0x1 7126b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP6_TRIG_MU_BEAMFORMER_FB 0x2 7136b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP6_TRIG_SU_BEAMFORMER_FB 0x4 71451b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP6_TRIG_SU_BEAMFORMING_FB 0x8 7156b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP6_TRIG_MU_BEAMFORMING_PARTIAL_BW_FB 0x20 71651b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP6_CODEBOOK_SIZE_42_SU 0x40 71751b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP6_CODEBOOK_SIZE_75_MU 0x80 71851b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP6_PARTIAL_BW_EXT_RANGE 0x80 7196b4cac81SBjoern A. Zeeb 7206b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP7_HE_SU_MU_PPDU_4XLTF_AND_08_US_GI 0x1 7216b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP7_MAX_NC_1 0x2 7226b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP7_MAX_NC_2 0x4 7236b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP7_MAX_NC_MASK 0x6 7246b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP7_POWER_BOOST_FACTOR_AR 0x8 7256b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP7_POWER_BOOST_FACTOR_SUPP 0x10 7266b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP7_STBC_RX_ABOVE_80MHZ 0x20 7276b4cac81SBjoern A. Zeeb 7286b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP8_20MHZ_IN_160MHZ_HE_PPDU 0x1 7296b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP8_20MHZ_IN_40MHZ_HE_PPDU_IN_2G 0x2 7306b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP8_80MHZ_IN_160MHZ_HE_PPDU 0x4 7316b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP8_DCM_MAX_RU_2x996 0x8 7326b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP8_DCM_MAX_RU_242 0x10 7336b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP8_HE_ER_SU_PPDU_4XLTF_AND_08_US_GI 0x20 73451b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP8_DCM_MAX_RU_996 0x40 73551b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP8_HE_ER_SU_1XLTF_AND_08_US_GI 0x80 7366b4cac81SBjoern A. Zeeb 737e2008091SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP9_NOMINAL_PKT_PADDING_0US 0x1 738e2008091SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP9_NOMINAL_PKT_PADDING_16US 0x2 739e2008091SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP9_NOMINAL_PKT_PADDING_8US 0x4 740e2008091SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP9_NOMINAL_PKT_PADDING_MASK 0x8 741e2008091SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP9_NOMINAL_PKT_PADDING_RESERVED 0x10 7426b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP9_NON_TRIGGERED_CQI_FEEDBACK 0x20 7436b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP9_RX_FULL_BW_SU_USING_MU_WITH_COMP_SIGB 0x40 7446b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP9_RX_FULL_BW_SU_USING_MU_WITH_NON_COMP_SIGB 0x80 7456b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP9_RX_1024_QAM_LESS_THAN_242_TONE_RU 0x100 7466b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP9_TX_1024_QAM_LESS_THAN_242_TONE_RU 0x200 74751b461b3SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP9_LONGER_THAN_16_SIGB_OFDM_SYM 0x400 7486b4cac81SBjoern A. Zeeb 7496b4cac81SBjoern A. Zeeb #define IEEE80211_HE_PHY_CAP10_HE_MU_M1RU_MAX_LTF 0x1 7506b4cac81SBjoern A. Zeeb 7516b4cac81SBjoern A. Zeeb #define VENDOR_CMD_RAW_DATA (void *)(uintptr_t)(-ENOENT) 7526b4cac81SBjoern A. Zeeb 7536b4cac81SBjoern A. Zeeb struct ieee80211_he_cap_elem { 7546b4cac81SBjoern A. Zeeb u8 mac_cap_info[6]; 7556b4cac81SBjoern A. Zeeb u8 phy_cap_info[11]; 7566b4cac81SBjoern A. Zeeb } __packed; 7576b4cac81SBjoern A. Zeeb 7586b4cac81SBjoern A. Zeeb struct ieee80211_he_mcs_nss_supp { 7596b4cac81SBjoern A. Zeeb /* TODO FIXME */ 7606b4cac81SBjoern A. Zeeb uint32_t rx_mcs_80; 7616b4cac81SBjoern A. Zeeb uint32_t tx_mcs_80; 7626b4cac81SBjoern A. Zeeb uint32_t rx_mcs_160; 7636b4cac81SBjoern A. Zeeb uint32_t tx_mcs_160; 7646b4cac81SBjoern A. Zeeb uint32_t rx_mcs_80p80; 7656b4cac81SBjoern A. Zeeb uint32_t tx_mcs_80p80; 7666b4cac81SBjoern A. Zeeb }; 7676b4cac81SBjoern A. Zeeb 7686b4cac81SBjoern A. Zeeb #define IEEE80211_STA_HE_CAP_PPE_THRES_MAX 32 7696b4cac81SBjoern A. Zeeb struct ieee80211_sta_he_cap { 7706b4cac81SBjoern A. Zeeb /* TODO FIXME */ 7716b4cac81SBjoern A. Zeeb int has_he; 7726b4cac81SBjoern A. Zeeb struct ieee80211_he_cap_elem he_cap_elem; 7736b4cac81SBjoern A. Zeeb struct ieee80211_he_mcs_nss_supp he_mcs_nss_supp; 7746b4cac81SBjoern A. Zeeb uint8_t ppe_thres[IEEE80211_STA_HE_CAP_PPE_THRES_MAX]; 7756b4cac81SBjoern A. Zeeb }; 7766b4cac81SBjoern A. Zeeb 7776b4cac81SBjoern A. Zeeb struct ieee80211_sta_he_6ghz_capa { 7786b4cac81SBjoern A. Zeeb /* TODO FIXME */ 7796b4cac81SBjoern A. Zeeb int capa; 7806b4cac81SBjoern A. Zeeb }; 7816b4cac81SBjoern A. Zeeb 7826b4cac81SBjoern A. Zeeb struct ieee80211_sband_iftype_data { 7836b4cac81SBjoern A. Zeeb /* TODO FIXME */ 7846b4cac81SBjoern A. Zeeb enum nl80211_iftype types_mask; 7856b4cac81SBjoern A. Zeeb struct ieee80211_sta_he_cap he_cap; 7866b4cac81SBjoern A. Zeeb struct ieee80211_sta_he_6ghz_capa he_6ghz_capa; 7876b4cac81SBjoern A. Zeeb struct { 7886b4cac81SBjoern A. Zeeb const uint8_t *data; 7896b4cac81SBjoern A. Zeeb size_t len; 7906b4cac81SBjoern A. Zeeb } vendor_elems; 7916b4cac81SBjoern A. Zeeb }; 7926b4cac81SBjoern A. Zeeb 7936b4cac81SBjoern A. Zeeb struct ieee80211_supported_band { 7946b4cac81SBjoern A. Zeeb /* TODO FIXME */ 7956b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *channels; 7966b4cac81SBjoern A. Zeeb struct ieee80211_rate *bitrates; 7976b4cac81SBjoern A. Zeeb struct ieee80211_sband_iftype_data *iftype_data; 7986b4cac81SBjoern A. Zeeb int n_channels; 7996b4cac81SBjoern A. Zeeb int n_bitrates; 8006b4cac81SBjoern A. Zeeb int n_iftype_data; 8016b4cac81SBjoern A. Zeeb enum nl80211_band band; 8026b4cac81SBjoern A. Zeeb struct ieee80211_sta_ht_cap ht_cap; 8036b4cac81SBjoern A. Zeeb struct ieee80211_sta_vht_cap vht_cap; 8046b4cac81SBjoern A. Zeeb }; 8056b4cac81SBjoern A. Zeeb 8066b4cac81SBjoern A. Zeeb struct cfg80211_pkt_pattern { 8076b4cac81SBjoern A. Zeeb /* XXX TODO */ 8086b4cac81SBjoern A. Zeeb uint8_t *mask; 8096b4cac81SBjoern A. Zeeb uint8_t *pattern; 8106b4cac81SBjoern A. Zeeb int pattern_len; 8116b4cac81SBjoern A. Zeeb int pkt_offset; 8126b4cac81SBjoern A. Zeeb }; 8136b4cac81SBjoern A. Zeeb 8146b4cac81SBjoern A. Zeeb struct cfg80211_wowlan { 8156b4cac81SBjoern A. Zeeb /* XXX TODO */ 8166b4cac81SBjoern A. Zeeb int disconnect, gtk_rekey_failure, magic_pkt; 8176b4cac81SBjoern A. Zeeb int n_patterns; 8186b4cac81SBjoern A. Zeeb struct cfg80211_sched_scan_request *nd_config; 8196b4cac81SBjoern A. Zeeb struct cfg80211_pkt_pattern *patterns; 8206b4cac81SBjoern A. Zeeb }; 8216b4cac81SBjoern A. Zeeb 8226b4cac81SBjoern A. Zeeb struct cfg80211_gtk_rekey_data { 8236b4cac81SBjoern A. Zeeb /* XXX TODO */ 8246b4cac81SBjoern A. Zeeb int kck, kek, replay_ctr; 8256b4cac81SBjoern A. Zeeb }; 8266b4cac81SBjoern A. Zeeb 827*2e183d99SBjoern A. Zeeb struct cfg80211_tid_cfg { 828*2e183d99SBjoern A. Zeeb /* XXX TODO */ 829*2e183d99SBjoern A. Zeeb int mask, noack, retry_long, rtscts, tids; 830*2e183d99SBjoern A. Zeeb enum nl80211_tx_rate_setting txrate_type; 831*2e183d99SBjoern A. Zeeb struct cfg80211_bitrate_mask txrate_mask; 832*2e183d99SBjoern A. Zeeb }; 833*2e183d99SBjoern A. Zeeb 834*2e183d99SBjoern A. Zeeb struct cfg80211_tid_config { 835*2e183d99SBjoern A. Zeeb /* XXX TODO */ 836*2e183d99SBjoern A. Zeeb int n_tid_conf; 837*2e183d99SBjoern A. Zeeb struct cfg80211_tid_cfg tid_conf[0]; 838*2e183d99SBjoern A. Zeeb }; 839*2e183d99SBjoern A. Zeeb 8406b4cac81SBjoern A. Zeeb struct ieee80211_iface_limit { 8416b4cac81SBjoern A. Zeeb /* TODO FIXME */ 8426b4cac81SBjoern A. Zeeb int max, types; 8436b4cac81SBjoern A. Zeeb }; 8446b4cac81SBjoern A. Zeeb 8456b4cac81SBjoern A. Zeeb struct ieee80211_iface_combination { 8466b4cac81SBjoern A. Zeeb /* TODO FIXME */ 8476b4cac81SBjoern A. Zeeb const struct ieee80211_iface_limit *limits; 8486b4cac81SBjoern A. Zeeb int n_limits; 8496b4cac81SBjoern A. Zeeb int max_interfaces, num_different_channels; 8506b4cac81SBjoern A. Zeeb int beacon_int_infra_match, beacon_int_min_gcd; 8516b4cac81SBjoern A. Zeeb }; 8526b4cac81SBjoern A. Zeeb 8536b4cac81SBjoern A. Zeeb struct iface_combination_params { 8546b4cac81SBjoern A. Zeeb int num_different_channels; 8556b4cac81SBjoern A. Zeeb int iftype_num[NUM_NL80211_IFTYPES]; 8566b4cac81SBjoern A. Zeeb }; 8576b4cac81SBjoern A. Zeeb 8586b4cac81SBjoern A. Zeeb struct regulatory_request { 8596b4cac81SBjoern A. Zeeb /* XXX TODO */ 8606b4cac81SBjoern A. Zeeb uint8_t alpha2[2]; 8616b4cac81SBjoern A. Zeeb int initiator, dfs_region; 8626b4cac81SBjoern A. Zeeb }; 8636b4cac81SBjoern A. Zeeb 8646b4cac81SBjoern A. Zeeb enum wiphy_vendor_cmd_need_flags { 8656b4cac81SBjoern A. Zeeb WIPHY_VENDOR_CMD_NEED_NETDEV = 0x01, 8666b4cac81SBjoern A. Zeeb WIPHY_VENDOR_CMD_NEED_RUNNING = 0x02, 8676b4cac81SBjoern A. Zeeb WIPHY_VENDOR_CMD_NEED_WDEV = 0x04, 8686b4cac81SBjoern A. Zeeb }; 8696b4cac81SBjoern A. Zeeb 8706b4cac81SBjoern A. Zeeb struct wiphy_vendor_command { 8716b4cac81SBjoern A. Zeeb struct { 8726b4cac81SBjoern A. Zeeb uint32_t vendor_id; 8736b4cac81SBjoern A. Zeeb uint32_t subcmd; 8746b4cac81SBjoern A. Zeeb }; 8756b4cac81SBjoern A. Zeeb uint32_t flags; 8766b4cac81SBjoern A. Zeeb void *policy; 8776b4cac81SBjoern A. Zeeb int (*doit)(struct wiphy *, struct wireless_dev *, const void *, int); 8786b4cac81SBjoern A. Zeeb }; 8796b4cac81SBjoern A. Zeeb 8806b4cac81SBjoern A. Zeeb struct wiphy_iftype_ext_capab { 8816b4cac81SBjoern A. Zeeb /* TODO FIXME */ 8826b4cac81SBjoern A. Zeeb enum nl80211_iftype iftype; 8836b4cac81SBjoern A. Zeeb const uint8_t *extended_capabilities; 8846b4cac81SBjoern A. Zeeb const uint8_t *extended_capabilities_mask; 8856b4cac81SBjoern A. Zeeb uint8_t extended_capabilities_len; 8866b4cac81SBjoern A. Zeeb 8876b4cac81SBjoern A. Zeeb }; 8886b4cac81SBjoern A. Zeeb 889*2e183d99SBjoern A. Zeeb struct tid_config_support { 890*2e183d99SBjoern A. Zeeb /* TODO FIXME */ 891*2e183d99SBjoern A. Zeeb uint64_t vif; /* enum nl80211_tid_cfg_attr */ 892*2e183d99SBjoern A. Zeeb uint64_t peer; /* enum nl80211_tid_cfg_attr */ 893*2e183d99SBjoern A. Zeeb }; 894*2e183d99SBjoern A. Zeeb 8956b4cac81SBjoern A. Zeeb enum cfg80211_regulatory { 8966b4cac81SBjoern A. Zeeb REGULATORY_CUSTOM_REG = BIT(0), 8976b4cac81SBjoern A. Zeeb REGULATORY_STRICT_REG = BIT(1), 8986b4cac81SBjoern A. Zeeb REGULATORY_DISABLE_BEACON_HINTS = BIT(2), 8996b4cac81SBjoern A. Zeeb REGULATORY_ENABLE_RELAX_NO_IR = BIT(3), 9006b4cac81SBjoern A. Zeeb REGULATORY_WIPHY_SELF_MANAGED = BIT(4), 9016b4cac81SBjoern A. Zeeb REGULATORY_COUNTRY_IE_IGNORE = BIT(5), 902*2e183d99SBjoern A. Zeeb REGULATORY_COUNTRY_IE_FOLLOW_POWER = BIT(6), 9036b4cac81SBjoern A. Zeeb }; 9046b4cac81SBjoern A. Zeeb 9056b4cac81SBjoern A. Zeeb #define WIPHY_FLAG_AP_UAPSD 0x00000001 9066b4cac81SBjoern A. Zeeb #define WIPHY_FLAG_HAS_CHANNEL_SWITCH 0x00000002 9076b4cac81SBjoern A. Zeeb #define WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL 0x00000004 9086b4cac81SBjoern A. Zeeb #define WIPHY_FLAG_HAVE_AP_SME 0x00000008 9096b4cac81SBjoern A. Zeeb #define WIPHY_FLAG_IBSS_RSN 0x00000010 9106b4cac81SBjoern A. Zeeb #define WIPHY_FLAG_NETNS_OK 0x00000020 9116b4cac81SBjoern A. Zeeb #define WIPHY_FLAG_OFFCHAN_TX 0x00000040 9126b4cac81SBjoern A. Zeeb #define WIPHY_FLAG_PS_ON_BY_DEFAULT 0x00000080 9136b4cac81SBjoern A. Zeeb #define WIPHY_FLAG_SPLIT_SCAN_6GHZ 0x00000100 9146b4cac81SBjoern A. Zeeb #define WIPHY_FLAG_SUPPORTS_EXT_KEK_KCK 0x00000200 9156b4cac81SBjoern A. Zeeb #define WIPHY_FLAG_SUPPORTS_FW_ROAM 0x00000400 9166b4cac81SBjoern A. Zeeb #define WIPHY_FLAG_SUPPORTS_TDLS 0x00000800 9176b4cac81SBjoern A. Zeeb #define WIPHY_FLAG_TDLS_EXTERNAL_SETUP 0x00001000 918*2e183d99SBjoern A. Zeeb #define WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD 0x00002000 9196b4cac81SBjoern A. Zeeb 9206b4cac81SBjoern A. Zeeb struct wiphy { 9216b4cac81SBjoern A. Zeeb 9226b4cac81SBjoern A. Zeeb struct device *dev; 9236b4cac81SBjoern A. Zeeb struct mac_address *addresses; 9246b4cac81SBjoern A. Zeeb int n_addresses; 9256b4cac81SBjoern A. Zeeb uint32_t flags; 9266b4cac81SBjoern A. Zeeb struct ieee80211_supported_band *bands[NUM_NL80211_BANDS]; 9276b4cac81SBjoern A. Zeeb uint8_t perm_addr[ETH_ALEN]; 9286b4cac81SBjoern A. Zeeb 9296b4cac81SBjoern A. Zeeb /* XXX TODO */ 9306b4cac81SBjoern A. Zeeb const struct cfg80211_pmsr_capabilities *pmsr_capa; 93151b461b3SBjoern A. Zeeb const struct cfg80211_sar_capa *sar_capa; 9326b4cac81SBjoern A. Zeeb const struct wiphy_iftype_ext_capab *iftype_ext_capab; 9336b4cac81SBjoern A. Zeeb const struct linuxkpi_ieee80211_regdomain *regd; 934*2e183d99SBjoern A. Zeeb char fw_version[ETHTOOL_FWVERS_LEN]; 9356b4cac81SBjoern A. Zeeb const struct ieee80211_iface_combination *iface_combinations; 9366b4cac81SBjoern A. Zeeb const uint32_t *cipher_suites; 9376b4cac81SBjoern A. Zeeb int n_iface_combinations; 9386b4cac81SBjoern A. Zeeb int n_cipher_suites; 9396b4cac81SBjoern A. Zeeb void(*reg_notifier)(struct wiphy *, struct regulatory_request *); 9406b4cac81SBjoern A. Zeeb enum cfg80211_regulatory regulatory_flags; 9416b4cac81SBjoern A. Zeeb int n_vendor_commands; 9426b4cac81SBjoern A. Zeeb const struct wiphy_vendor_command *vendor_commands; 9436b4cac81SBjoern A. Zeeb const struct ieee80211_txrx_stypes *mgmt_stypes; 9446b4cac81SBjoern A. Zeeb uint32_t rts_threshold; 9456b4cac81SBjoern A. Zeeb uint32_t frag_threshold; 946*2e183d99SBjoern A. Zeeb struct tid_config_support tid_config_support; 9476b4cac81SBjoern A. Zeeb 9486b4cac81SBjoern A. Zeeb int available_antennas_rx, available_antennas_tx; 9496b4cac81SBjoern A. Zeeb int features, hw_version; 9506b4cac81SBjoern 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; 9516b4cac81SBjoern A. Zeeb int num_iftype_ext_capab; 9526b4cac81SBjoern A. Zeeb int max_ap_assoc_sta, probe_resp_offload, software_iftypes; 9536b4cac81SBjoern A. Zeeb int bss_select_support, max_num_pmkids, retry_long, retry_short, signal_type; 954*2e183d99SBjoern A. Zeeb int max_data_retry_count; 955*2e183d99SBjoern A. Zeeb int tx_queue_len; 9566b4cac81SBjoern A. Zeeb 9576b4cac81SBjoern A. Zeeb unsigned long ext_features[BITS_TO_LONGS(NUM_NL80211_EXT_FEATURES)]; 9586b4cac81SBjoern A. Zeeb struct dentry *debugfsdir; 9596b4cac81SBjoern A. Zeeb struct cfg80211_wowlan_support *wowlan; 9606b4cac81SBjoern A. Zeeb /* Lower layer (driver/mac80211) specific data. */ 9616b4cac81SBjoern A. Zeeb /* Must stay last. */ 9626b4cac81SBjoern A. Zeeb uint8_t priv[0] __aligned(CACHE_LINE_SIZE); 9636b4cac81SBjoern A. Zeeb }; 9646b4cac81SBjoern A. Zeeb 9656b4cac81SBjoern A. Zeeb struct wireless_dev { 9666b4cac81SBjoern A. Zeeb /* XXX TODO, like ic? */ 9676b4cac81SBjoern A. Zeeb int iftype; 9686b4cac81SBjoern A. Zeeb int address; 9696b4cac81SBjoern A. Zeeb struct net_device *netdev; 9706b4cac81SBjoern A. Zeeb struct wiphy *wiphy; 9716b4cac81SBjoern A. Zeeb }; 9726b4cac81SBjoern A. Zeeb 9736b4cac81SBjoern A. Zeeb struct cfg80211_ops { 9746b4cac81SBjoern A. Zeeb /* XXX TODO */ 9756b4cac81SBjoern A. Zeeb struct wireless_dev *(*add_virtual_intf)(struct wiphy *, const char *, unsigned char, enum nl80211_iftype, struct vif_params *); 9766b4cac81SBjoern A. Zeeb int (*del_virtual_intf)(struct wiphy *, struct wireless_dev *); 9776b4cac81SBjoern A. Zeeb s32 (*change_virtual_intf)(struct wiphy *, struct net_device *, enum nl80211_iftype, struct vif_params *); 9786b4cac81SBjoern A. Zeeb s32 (*scan)(struct wiphy *, struct cfg80211_scan_request *); 9796b4cac81SBjoern A. Zeeb s32 (*set_wiphy_params)(struct wiphy *, u32); 9806b4cac81SBjoern A. Zeeb s32 (*join_ibss)(struct wiphy *, struct net_device *, struct cfg80211_ibss_params *); 9816b4cac81SBjoern A. Zeeb s32 (*leave_ibss)(struct wiphy *, struct net_device *); 9826b4cac81SBjoern A. Zeeb s32 (*get_station)(struct wiphy *, struct net_device *, const u8 *, struct station_info *); 9836b4cac81SBjoern A. Zeeb int (*dump_station)(struct wiphy *, struct net_device *, int, u8 *, struct station_info *); 9846b4cac81SBjoern A. Zeeb s32 (*set_tx_power)(struct wiphy *, struct wireless_dev *, enum nl80211_tx_power_setting, s32); 9856b4cac81SBjoern A. Zeeb s32 (*get_tx_power)(struct wiphy *, struct wireless_dev *, s32 *); 9866b4cac81SBjoern A. Zeeb s32 (*add_key)(struct wiphy *, struct net_device *, u8, bool, const u8 *, struct key_params *); 9876b4cac81SBjoern A. Zeeb s32 (*del_key)(struct wiphy *, struct net_device *, u8, bool, const u8 *); 9886b4cac81SBjoern A. Zeeb s32 (*get_key)(struct wiphy *, struct net_device *, u8, bool, const u8 *, void *, void(*)(void *, struct key_params *)); 9896b4cac81SBjoern A. Zeeb s32 (*set_default_key)(struct wiphy *, struct net_device *, u8, bool, bool); 9906b4cac81SBjoern A. Zeeb s32 (*set_default_mgmt_key)(struct wiphy *, struct net_device *, u8); 9916b4cac81SBjoern A. Zeeb s32 (*set_power_mgmt)(struct wiphy *, struct net_device *, bool, s32); 9926b4cac81SBjoern A. Zeeb s32 (*connect)(struct wiphy *, struct net_device *, struct cfg80211_connect_params *); 9936b4cac81SBjoern A. Zeeb s32 (*disconnect)(struct wiphy *, struct net_device *, u16); 9946b4cac81SBjoern A. Zeeb s32 (*suspend)(struct wiphy *, struct cfg80211_wowlan *); 9956b4cac81SBjoern A. Zeeb s32 (*resume)(struct wiphy *); 9966b4cac81SBjoern A. Zeeb s32 (*set_pmksa)(struct wiphy *, struct net_device *, struct cfg80211_pmksa *); 9976b4cac81SBjoern A. Zeeb s32 (*del_pmksa)(struct wiphy *, struct net_device *, struct cfg80211_pmksa *); 9986b4cac81SBjoern A. Zeeb s32 (*flush_pmksa)(struct wiphy *, struct net_device *); 9996b4cac81SBjoern A. Zeeb s32 (*start_ap)(struct wiphy *, struct net_device *, struct cfg80211_ap_settings *); 10006b4cac81SBjoern A. Zeeb int (*stop_ap)(struct wiphy *, struct net_device *); 10016b4cac81SBjoern A. Zeeb s32 (*change_beacon)(struct wiphy *, struct net_device *, struct cfg80211_beacon_data *); 10026b4cac81SBjoern A. Zeeb int (*del_station)(struct wiphy *, struct net_device *, struct station_del_parameters *); 10036b4cac81SBjoern A. Zeeb int (*change_station)(struct wiphy *, struct net_device *, const u8 *, struct station_parameters *); 10046b4cac81SBjoern A. Zeeb int (*sched_scan_start)(struct wiphy *, struct net_device *, struct cfg80211_sched_scan_request *); 10056b4cac81SBjoern A. Zeeb int (*sched_scan_stop)(struct wiphy *, struct net_device *, u64); 10066b4cac81SBjoern A. Zeeb void (*update_mgmt_frame_registrations)(struct wiphy *, struct wireless_dev *, struct mgmt_frame_regs *); 10076b4cac81SBjoern A. Zeeb int (*mgmt_tx)(struct wiphy *, struct wireless_dev *, struct cfg80211_mgmt_tx_params *, u64 *); 10086b4cac81SBjoern A. Zeeb int (*cancel_remain_on_channel)(struct wiphy *, struct wireless_dev *, u64); 10096b4cac81SBjoern A. Zeeb int (*get_channel)(struct wiphy *, struct wireless_dev *, struct cfg80211_chan_def *); 10106b4cac81SBjoern A. Zeeb int (*crit_proto_start)(struct wiphy *, struct wireless_dev *, enum nl80211_crit_proto_id, u16); 10116b4cac81SBjoern A. Zeeb void (*crit_proto_stop)(struct wiphy *, struct wireless_dev *); 10126b4cac81SBjoern A. Zeeb int (*tdls_oper)(struct wiphy *, struct net_device *, const u8 *, enum nl80211_tdls_operation); 10136b4cac81SBjoern A. Zeeb int (*update_connect_params)(struct wiphy *, struct net_device *, struct cfg80211_connect_params *, u32); 10146b4cac81SBjoern A. Zeeb int (*set_pmk)(struct wiphy *, struct net_device *, const struct cfg80211_pmk_conf *); 10156b4cac81SBjoern A. Zeeb int (*del_pmk)(struct wiphy *, struct net_device *, const u8 *); 10166b4cac81SBjoern A. Zeeb int (*remain_on_channel)(struct wiphy *, struct wireless_dev *, struct linuxkpi_ieee80211_channel *, unsigned int, u64 *); 10176b4cac81SBjoern A. Zeeb int (*start_p2p_device)(struct wiphy *, struct wireless_dev *); 10186b4cac81SBjoern A. Zeeb void (*stop_p2p_device)(struct wiphy *, struct wireless_dev *); 10196b4cac81SBjoern A. Zeeb }; 10206b4cac81SBjoern A. Zeeb 10216b4cac81SBjoern A. Zeeb 10226b4cac81SBjoern A. Zeeb /* -------------------------------------------------------------------------- */ 10236b4cac81SBjoern A. Zeeb 10246b4cac81SBjoern A. Zeeb /* linux_80211.c */ 10256b4cac81SBjoern A. Zeeb 10266b4cac81SBjoern A. Zeeb struct wiphy *linuxkpi_wiphy_new(const struct cfg80211_ops *, size_t); 10276b4cac81SBjoern A. Zeeb void linuxkpi_wiphy_free(struct wiphy *wiphy); 10286b4cac81SBjoern A. Zeeb 10296b4cac81SBjoern A. Zeeb int linuxkpi_regulatory_set_wiphy_regd_sync(struct wiphy *wiphy, 10306b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_regdomain *regd); 10316b4cac81SBjoern A. Zeeb uint32_t linuxkpi_ieee80211_channel_to_frequency(uint32_t, enum nl80211_band); 10326b4cac81SBjoern A. Zeeb uint32_t linuxkpi_ieee80211_frequency_to_channel(uint32_t, uint32_t); 1033*2e183d99SBjoern A. Zeeb struct linuxkpi_ieee80211_channel * 1034*2e183d99SBjoern A. Zeeb linuxkpi_ieee80211_get_channel(struct wiphy *, uint32_t); 10356b4cac81SBjoern A. Zeeb 10366b4cac81SBjoern A. Zeeb /* -------------------------------------------------------------------------- */ 10376b4cac81SBjoern A. Zeeb 10386b4cac81SBjoern A. Zeeb static __inline struct wiphy * 10396b4cac81SBjoern A. Zeeb wiphy_new(const struct cfg80211_ops *ops, size_t priv_len) 10406b4cac81SBjoern A. Zeeb { 10416b4cac81SBjoern A. Zeeb 10426b4cac81SBjoern A. Zeeb return (linuxkpi_wiphy_new(ops, priv_len)); 10436b4cac81SBjoern A. Zeeb } 10446b4cac81SBjoern A. Zeeb 10456b4cac81SBjoern A. Zeeb static __inline void 10466b4cac81SBjoern A. Zeeb wiphy_free(struct wiphy *wiphy) 10476b4cac81SBjoern A. Zeeb { 10486b4cac81SBjoern A. Zeeb 10496b4cac81SBjoern A. Zeeb linuxkpi_wiphy_free(wiphy); 10506b4cac81SBjoern A. Zeeb } 10516b4cac81SBjoern A. Zeeb 10526b4cac81SBjoern A. Zeeb static __inline void * 10536b4cac81SBjoern A. Zeeb wiphy_priv(struct wiphy *wiphy) 10546b4cac81SBjoern A. Zeeb { 10556b4cac81SBjoern A. Zeeb 10566b4cac81SBjoern A. Zeeb return (wiphy->priv); 10576b4cac81SBjoern A. Zeeb } 10586b4cac81SBjoern A. Zeeb 10596b4cac81SBjoern A. Zeeb static __inline void 10606b4cac81SBjoern A. Zeeb set_wiphy_dev(struct wiphy *wiphy, struct device *dev) 10616b4cac81SBjoern A. Zeeb { 10626b4cac81SBjoern A. Zeeb 10636b4cac81SBjoern A. Zeeb wiphy->dev = dev; 10646b4cac81SBjoern A. Zeeb } 10656b4cac81SBjoern A. Zeeb 10666b4cac81SBjoern A. Zeeb static __inline struct device * 10676b4cac81SBjoern A. Zeeb wiphy_dev(struct wiphy *wiphy) 10686b4cac81SBjoern A. Zeeb { 10696b4cac81SBjoern A. Zeeb 10706b4cac81SBjoern A. Zeeb return (wiphy->dev); 10716b4cac81SBjoern A. Zeeb } 10726b4cac81SBjoern A. Zeeb 10736b4cac81SBjoern A. Zeeb #define wiphy_err(_wiphy, _fmt, ...) \ 10746b4cac81SBjoern A. Zeeb dev_err((_wiphy)->dev, _fmt, __VA_ARGS__) 10756b4cac81SBjoern A. Zeeb 10766b4cac81SBjoern A. Zeeb static __inline const struct linuxkpi_ieee80211_regdomain * 10776b4cac81SBjoern A. Zeeb wiphy_dereference(struct wiphy *wiphy, 10786b4cac81SBjoern A. Zeeb const struct linuxkpi_ieee80211_regdomain *regd) 10796b4cac81SBjoern A. Zeeb { 10806b4cac81SBjoern A. Zeeb TODO(); 10816b4cac81SBjoern A. Zeeb return (NULL); 10826b4cac81SBjoern A. Zeeb } 10836b4cac81SBjoern A. Zeeb 10846b4cac81SBjoern A. Zeeb /* -------------------------------------------------------------------------- */ 10856b4cac81SBjoern A. Zeeb 10866b4cac81SBjoern A. Zeeb static __inline int 10876b4cac81SBjoern A. Zeeb reg_query_regdb_wmm(uint8_t *alpha2, uint32_t center_freq, 10886b4cac81SBjoern A. Zeeb struct ieee80211_reg_rule *rule) 10896b4cac81SBjoern A. Zeeb { 10906b4cac81SBjoern A. Zeeb 10916b4cac81SBjoern A. Zeeb /* ETSI has special rules. FreeBSD regdb needs to learn about them. */ 10926b4cac81SBjoern A. Zeeb TODO(); 10936b4cac81SBjoern A. Zeeb 10946b4cac81SBjoern A. Zeeb return (-ENXIO); 10956b4cac81SBjoern A. Zeeb } 10966b4cac81SBjoern A. Zeeb 10976b4cac81SBjoern A. Zeeb static __inline const u8 * 10986b4cac81SBjoern A. Zeeb cfg80211_find_ie_match(uint32_t f, const u8 *ies, size_t ies_len, 10996b4cac81SBjoern A. Zeeb const u8 *match, int x, int y) 11006b4cac81SBjoern A. Zeeb { 11016b4cac81SBjoern A. Zeeb TODO(); 11026b4cac81SBjoern A. Zeeb return (NULL); 11036b4cac81SBjoern A. Zeeb } 11046b4cac81SBjoern A. Zeeb 11056b4cac81SBjoern A. Zeeb static __inline const u8 * 11066b4cac81SBjoern A. Zeeb cfg80211_find_ie(uint8_t eid, uint8_t *variable, uint32_t frame_size) 11076b4cac81SBjoern A. Zeeb { 11086b4cac81SBjoern A. Zeeb TODO(); 11096b4cac81SBjoern A. Zeeb return (NULL); 11106b4cac81SBjoern A. Zeeb } 11116b4cac81SBjoern A. Zeeb 11126b4cac81SBjoern A. Zeeb static __inline void 11136b4cac81SBjoern A. Zeeb cfg80211_pmsr_complete(struct wireless_dev *wdev, 11146b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_request *req, gfp_t gfp) 11156b4cac81SBjoern A. Zeeb { 11166b4cac81SBjoern A. Zeeb TODO(); 11176b4cac81SBjoern A. Zeeb } 11186b4cac81SBjoern A. Zeeb 11196b4cac81SBjoern A. Zeeb static __inline void 11206b4cac81SBjoern A. Zeeb cfg80211_pmsr_report(struct wireless_dev *wdev, 11216b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_request *req, 11226b4cac81SBjoern A. Zeeb struct cfg80211_pmsr_result *result, gfp_t gfp) 11236b4cac81SBjoern A. Zeeb { 11246b4cac81SBjoern A. Zeeb TODO(); 11256b4cac81SBjoern A. Zeeb } 11266b4cac81SBjoern A. Zeeb 11276b4cac81SBjoern A. Zeeb static __inline void 11286b4cac81SBjoern A. Zeeb cfg80211_chandef_create(struct cfg80211_chan_def *chandef, 11296b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *chan, enum nl80211_chan_flags chan_flag) 11306b4cac81SBjoern A. Zeeb { 11316b4cac81SBjoern A. Zeeb 11326b4cac81SBjoern A. Zeeb KASSERT(chandef != NULL, ("%s: chandef is NULL\n", __func__)); 11336b4cac81SBjoern A. Zeeb KASSERT(chan != NULL, ("%s: chan is NULL\n", __func__)); 11346b4cac81SBjoern A. Zeeb 11356b4cac81SBjoern A. Zeeb chandef->chan = chan; 11366b4cac81SBjoern A. Zeeb chandef->center_freq2 = 0; /* Set here and only overwrite if needed. */ 11376b4cac81SBjoern A. Zeeb chandef->chan = chan; 11386b4cac81SBjoern A. Zeeb 11396b4cac81SBjoern A. Zeeb switch (chan_flag) { 11406b4cac81SBjoern A. Zeeb case NL80211_CHAN_NO_HT: 11416b4cac81SBjoern A. Zeeb chandef->width = NL80211_CHAN_WIDTH_20_NOHT; 11426b4cac81SBjoern A. Zeeb chandef->center_freq1 = chan->center_freq; 11436b4cac81SBjoern A. Zeeb break; 11446b4cac81SBjoern A. Zeeb default: 11456b4cac81SBjoern A. Zeeb printf("%s: unsupported chan_flag %#0x\n", __func__, chan_flag); 11466b4cac81SBjoern A. Zeeb /* XXX-BZ should we panic instead? */ 11476b4cac81SBjoern A. Zeeb chandef->width = NL80211_CHAN_WIDTH_20; 11486b4cac81SBjoern A. Zeeb chandef->center_freq1 = chan->center_freq; 11496b4cac81SBjoern A. Zeeb break; 11506b4cac81SBjoern A. Zeeb }; 11516b4cac81SBjoern A. Zeeb } 11526b4cac81SBjoern A. Zeeb 11536b4cac81SBjoern A. Zeeb static __inline void 11546b4cac81SBjoern A. Zeeb cfg80211_bss_iter(struct wiphy *wiphy, struct cfg80211_chan_def *chandef, 11556b4cac81SBjoern A. Zeeb void (*iterfunc)(struct wiphy *, struct cfg80211_bss *, void *), void *data) 11566b4cac81SBjoern A. Zeeb { 11576b4cac81SBjoern A. Zeeb TODO(); 11586b4cac81SBjoern A. Zeeb } 11596b4cac81SBjoern A. Zeeb 11606b4cac81SBjoern A. Zeeb struct element { 11616b4cac81SBjoern A. Zeeb uint8_t id; 11626b4cac81SBjoern A. Zeeb uint8_t datalen; 11636b4cac81SBjoern A. Zeeb uint8_t data[0]; 11646b4cac81SBjoern A. Zeeb }; 11656b4cac81SBjoern A. Zeeb 11666b4cac81SBjoern A. Zeeb static __inline const struct element * 11676b4cac81SBjoern A. Zeeb cfg80211_find_elem(enum ieee80211_eid eid, uint8_t *data, size_t len) 11686b4cac81SBjoern A. Zeeb { 11696b4cac81SBjoern A. Zeeb TODO(); 11706b4cac81SBjoern A. Zeeb return (NULL); 11716b4cac81SBjoern A. Zeeb } 11726b4cac81SBjoern A. Zeeb 11736b4cac81SBjoern A. Zeeb static __inline uint32_t 11746b4cac81SBjoern A. Zeeb cfg80211_calculate_bitrate(struct rate_info *rate) 11756b4cac81SBjoern A. Zeeb { 11766b4cac81SBjoern A. Zeeb TODO(); 11776b4cac81SBjoern A. Zeeb return (-1); 11786b4cac81SBjoern A. Zeeb } 11796b4cac81SBjoern A. Zeeb 11806b4cac81SBjoern A. Zeeb static __inline uint32_t 11816b4cac81SBjoern A. Zeeb ieee80211_channel_to_frequency(uint32_t channel, enum nl80211_band band) 11826b4cac81SBjoern A. Zeeb { 11836b4cac81SBjoern A. Zeeb 11846b4cac81SBjoern A. Zeeb return (linuxkpi_ieee80211_channel_to_frequency(channel, band)); 11856b4cac81SBjoern A. Zeeb } 11866b4cac81SBjoern A. Zeeb 11876b4cac81SBjoern A. Zeeb static __inline uint32_t 11886b4cac81SBjoern A. Zeeb ieee80211_frequency_to_channel(uint32_t freq) 11896b4cac81SBjoern A. Zeeb { 11906b4cac81SBjoern A. Zeeb 11916b4cac81SBjoern A. Zeeb return (linuxkpi_ieee80211_frequency_to_channel(freq, 0)); 11926b4cac81SBjoern A. Zeeb } 11936b4cac81SBjoern A. Zeeb 11946b4cac81SBjoern A. Zeeb static __inline int 11956b4cac81SBjoern A. Zeeb regulatory_set_wiphy_regd_sync(struct wiphy *wiphy, 11966b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_regdomain *regd) 11976b4cac81SBjoern A. Zeeb { 11986b4cac81SBjoern A. Zeeb IMPROVE(); 11996b4cac81SBjoern A. Zeeb return (linuxkpi_regulatory_set_wiphy_regd_sync(wiphy, regd)); 12006b4cac81SBjoern A. Zeeb } 12016b4cac81SBjoern A. Zeeb 12026b4cac81SBjoern A. Zeeb static __inline int 12036b4cac81SBjoern A. Zeeb regulatory_set_wiphy_regd_sync_rtnl(struct wiphy *wiphy, 12046b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_regdomain *regd) 12056b4cac81SBjoern A. Zeeb { 12066b4cac81SBjoern A. Zeeb 12076b4cac81SBjoern A. Zeeb IMPROVE(); 12086b4cac81SBjoern A. Zeeb return (linuxkpi_regulatory_set_wiphy_regd_sync(wiphy, regd)); 12096b4cac81SBjoern A. Zeeb } 12106b4cac81SBjoern A. Zeeb 12116b4cac81SBjoern A. Zeeb static __inline int 12126b4cac81SBjoern A. Zeeb regulatory_set_wiphy_regd(struct wiphy *wiphy, 12136b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_regdomain *regd) 12146b4cac81SBjoern A. Zeeb { 12156b4cac81SBjoern A. Zeeb 12166b4cac81SBjoern A. Zeeb IMPROVE(); 12176b4cac81SBjoern A. Zeeb if (regd == NULL) 12186b4cac81SBjoern A. Zeeb return (EINVAL); 12196b4cac81SBjoern A. Zeeb 12206b4cac81SBjoern A. Zeeb /* XXX-BZ wild guessing here based on brcmfmac. */ 12216b4cac81SBjoern A. Zeeb if (wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED) 12226b4cac81SBjoern A. Zeeb wiphy->regd = regd; 12236b4cac81SBjoern A. Zeeb else 12246b4cac81SBjoern A. Zeeb return (EPERM); 12256b4cac81SBjoern A. Zeeb 12266b4cac81SBjoern A. Zeeb /* XXX FIXME, do we have to do anything with reg_notifier? */ 12276b4cac81SBjoern A. Zeeb return (0); 12286b4cac81SBjoern A. Zeeb } 12296b4cac81SBjoern A. Zeeb 12306b4cac81SBjoern A. Zeeb static __inline int 123151b461b3SBjoern A. Zeeb regulatory_hint(struct wiphy *wiphy, const uint8_t *alpha2) 12326b4cac81SBjoern A. Zeeb { 12336b4cac81SBjoern A. Zeeb TODO(); 12346b4cac81SBjoern A. Zeeb return (-ENXIO); 12356b4cac81SBjoern A. Zeeb } 12366b4cac81SBjoern A. Zeeb 1237*2e183d99SBjoern A. Zeeb static __inline const char * 1238*2e183d99SBjoern A. Zeeb reg_initiator_name(enum nl80211_reg_initiator initiator) 1239*2e183d99SBjoern A. Zeeb { 1240*2e183d99SBjoern A. Zeeb TODO(); 1241*2e183d99SBjoern A. Zeeb return (NULL); 1242*2e183d99SBjoern A. Zeeb } 1243*2e183d99SBjoern A. Zeeb 12446b4cac81SBjoern A. Zeeb static __inline struct linuxkpi_ieee80211_regdomain * 12456b4cac81SBjoern A. Zeeb rtnl_dereference(const struct linuxkpi_ieee80211_regdomain *regd) 12466b4cac81SBjoern A. Zeeb { 12476b4cac81SBjoern A. Zeeb TODO(); 12486b4cac81SBjoern A. Zeeb return (NULL); 12496b4cac81SBjoern A. Zeeb } 12506b4cac81SBjoern A. Zeeb 12516b4cac81SBjoern A. Zeeb static __inline struct ieee80211_reg_rule * 12526b4cac81SBjoern A. Zeeb freq_reg_info(struct wiphy *wiphy, uint32_t center_freq) 12536b4cac81SBjoern A. Zeeb { 12546b4cac81SBjoern A. Zeeb TODO(); 12556b4cac81SBjoern A. Zeeb return (NULL); 12566b4cac81SBjoern A. Zeeb } 12576b4cac81SBjoern A. Zeeb 12586b4cac81SBjoern A. Zeeb static __inline struct cfg80211_bss * 12596b4cac81SBjoern A. Zeeb cfg80211_get_bss(struct wiphy *wiphy, struct linuxkpi_ieee80211_channel *chan, 12606b4cac81SBjoern A. Zeeb uint8_t *bssid, void *p, int x, uint32_t f1, uint32_t f2) 12616b4cac81SBjoern A. Zeeb { 12626b4cac81SBjoern A. Zeeb TODO(); 12636b4cac81SBjoern A. Zeeb return (NULL); 12646b4cac81SBjoern A. Zeeb } 12656b4cac81SBjoern A. Zeeb 12666b4cac81SBjoern A. Zeeb static __inline void 12676b4cac81SBjoern A. Zeeb cfg80211_put_bss(struct wiphy *wiphy, struct cfg80211_bss *bss) 12686b4cac81SBjoern A. Zeeb { 12696b4cac81SBjoern A. Zeeb TODO(); 12706b4cac81SBjoern A. Zeeb } 12716b4cac81SBjoern A. Zeeb 12726b4cac81SBjoern A. Zeeb static __inline void 12736b4cac81SBjoern A. Zeeb wiphy_apply_custom_regulatory(struct wiphy *wiphy, 12746b4cac81SBjoern A. Zeeb const struct linuxkpi_ieee80211_regdomain *regd) 12756b4cac81SBjoern A. Zeeb { 12766b4cac81SBjoern A. Zeeb TODO(); 12776b4cac81SBjoern A. Zeeb } 12786b4cac81SBjoern A. Zeeb 12796b4cac81SBjoern A. Zeeb static __inline char * 12806b4cac81SBjoern A. Zeeb wiphy_name(struct wiphy *wiphy) 12816b4cac81SBjoern A. Zeeb { 12826b4cac81SBjoern A. Zeeb if (wiphy != NULL && wiphy->dev != NULL) 12836b4cac81SBjoern A. Zeeb return dev_name(wiphy->dev); 1284*2e183d99SBjoern A. Zeeb else { 1285*2e183d99SBjoern A. Zeeb IMPROVE("wlanNA"); 12866b4cac81SBjoern A. Zeeb return ("wlanNA"); 12876b4cac81SBjoern A. Zeeb } 1288*2e183d99SBjoern A. Zeeb } 12896b4cac81SBjoern A. Zeeb 12906b4cac81SBjoern A. Zeeb static __inline void 12916b4cac81SBjoern A. Zeeb wiphy_read_of_freq_limits(struct wiphy *wiphy) 12926b4cac81SBjoern A. Zeeb { 12936b4cac81SBjoern A. Zeeb #ifdef FDT 12946b4cac81SBjoern A. Zeeb TODO(); 12956b4cac81SBjoern A. Zeeb #endif 12966b4cac81SBjoern A. Zeeb } 12976b4cac81SBjoern A. Zeeb 12986b4cac81SBjoern A. Zeeb static __inline uint8_t * 12996b4cac81SBjoern A. Zeeb cfg80211_find_vendor_ie(unsigned int oui, u8 oui_type, 13006b4cac81SBjoern A. Zeeb uint8_t *data, size_t len) 13016b4cac81SBjoern A. Zeeb { 13026b4cac81SBjoern A. Zeeb TODO(); 13036b4cac81SBjoern A. Zeeb return (NULL); 13046b4cac81SBjoern A. Zeeb } 13056b4cac81SBjoern A. Zeeb 13066b4cac81SBjoern A. Zeeb static __inline void 13076b4cac81SBjoern A. Zeeb wiphy_ext_feature_set(struct wiphy *wiphy, enum nl80211_ext_feature ef) 13086b4cac81SBjoern A. Zeeb { 13096b4cac81SBjoern A. Zeeb 13106b4cac81SBjoern A. Zeeb set_bit(ef, wiphy->ext_features); 13116b4cac81SBjoern A. Zeeb } 13126b4cac81SBjoern A. Zeeb 13136b4cac81SBjoern A. Zeeb static __inline void * 13146b4cac81SBjoern A. Zeeb wiphy_net(struct wiphy *wiphy) 13156b4cac81SBjoern A. Zeeb { 13166b4cac81SBjoern A. Zeeb TODO(); 13176b4cac81SBjoern A. Zeeb return (NULL); /* XXX passed to dev_net_set() */ 13186b4cac81SBjoern A. Zeeb } 13196b4cac81SBjoern A. Zeeb 13206b4cac81SBjoern A. Zeeb static __inline int 13216b4cac81SBjoern A. Zeeb wiphy_register(struct wiphy *wiphy) 13226b4cac81SBjoern A. Zeeb { 13236b4cac81SBjoern A. Zeeb TODO(); 13246b4cac81SBjoern A. Zeeb return (0); 13256b4cac81SBjoern A. Zeeb } 13266b4cac81SBjoern A. Zeeb 13276b4cac81SBjoern A. Zeeb static __inline void 13286b4cac81SBjoern A. Zeeb wiphy_unregister(struct wiphy *wiphy) 13296b4cac81SBjoern A. Zeeb { 13306b4cac81SBjoern A. Zeeb TODO(); 13316b4cac81SBjoern A. Zeeb } 13326b4cac81SBjoern A. Zeeb 13336b4cac81SBjoern A. Zeeb static __inline void 13346b4cac81SBjoern A. Zeeb wiphy_warn(struct wiphy *wiphy, const char *fmt, ...) 13356b4cac81SBjoern A. Zeeb { 13366b4cac81SBjoern A. Zeeb TODO(); 13376b4cac81SBjoern A. Zeeb } 13386b4cac81SBjoern A. Zeeb 13396b4cac81SBjoern A. Zeeb static __inline int 13406b4cac81SBjoern A. Zeeb cfg80211_check_combinations(struct wiphy *wiphy, 13416b4cac81SBjoern A. Zeeb struct iface_combination_params *params) 13426b4cac81SBjoern A. Zeeb { 13436b4cac81SBjoern A. Zeeb TODO(); 13446b4cac81SBjoern A. Zeeb return (-ENOENT); 13456b4cac81SBjoern A. Zeeb } 13466b4cac81SBjoern A. Zeeb 13476b4cac81SBjoern A. Zeeb static __inline uint8_t 13486b4cac81SBjoern A. Zeeb cfg80211_classify8021d(struct sk_buff *skb, void *p) 13496b4cac81SBjoern A. Zeeb { 13506b4cac81SBjoern A. Zeeb TODO(); 13516b4cac81SBjoern A. Zeeb return (0); 13526b4cac81SBjoern A. Zeeb } 13536b4cac81SBjoern A. Zeeb 13546b4cac81SBjoern A. Zeeb static __inline void 13556b4cac81SBjoern A. Zeeb cfg80211_connect_done(struct net_device *ndev, 13566b4cac81SBjoern A. Zeeb struct cfg80211_connect_resp_params *conn_params, gfp_t gfp) 13576b4cac81SBjoern A. Zeeb { 13586b4cac81SBjoern A. Zeeb TODO(); 13596b4cac81SBjoern A. Zeeb } 13606b4cac81SBjoern A. Zeeb 13616b4cac81SBjoern A. Zeeb static __inline void 13626b4cac81SBjoern A. Zeeb cfg80211_crit_proto_stopped(struct wireless_dev *wdev, gfp_t gfp) 13636b4cac81SBjoern A. Zeeb { 13646b4cac81SBjoern A. Zeeb TODO(); 13656b4cac81SBjoern A. Zeeb } 13666b4cac81SBjoern A. Zeeb 13676b4cac81SBjoern A. Zeeb static __inline void 13686b4cac81SBjoern A. Zeeb cfg80211_disconnected(struct net_device *ndev, uint16_t reason, 13696b4cac81SBjoern A. Zeeb void *p, int x, bool locally_generated, gfp_t gfp) 13706b4cac81SBjoern A. Zeeb { 13716b4cac81SBjoern A. Zeeb TODO(); 13726b4cac81SBjoern A. Zeeb } 13736b4cac81SBjoern A. Zeeb 13746b4cac81SBjoern A. Zeeb static __inline int 13756b4cac81SBjoern A. Zeeb cfg80211_get_p2p_attr(const u8 *ie, u32 ie_len, 13766b4cac81SBjoern A. Zeeb enum ieee80211_p2p_attr_ids attr, u8 *p, size_t p_len) 13776b4cac81SBjoern A. Zeeb { 13786b4cac81SBjoern A. Zeeb TODO(); 13796b4cac81SBjoern A. Zeeb return (-1); 13806b4cac81SBjoern A. Zeeb } 13816b4cac81SBjoern A. Zeeb 13826b4cac81SBjoern A. Zeeb static __inline void 13836b4cac81SBjoern A. Zeeb cfg80211_ibss_joined(struct net_device *ndev, const uint8_t *addr, 13846b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *chan, gfp_t gfp) 13856b4cac81SBjoern A. Zeeb { 13866b4cac81SBjoern A. Zeeb TODO(); 13876b4cac81SBjoern A. Zeeb } 13886b4cac81SBjoern A. Zeeb 13896b4cac81SBjoern A. Zeeb static __inline struct cfg80211_bss * 13906b4cac81SBjoern A. Zeeb cfg80211_inform_bss(struct wiphy *wiphy, 13916b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *channel, 1392*2e183d99SBjoern A. Zeeb enum cfg80211_bss_frame_type bss_ftype, const uint8_t *bss, int _x, 13936b4cac81SBjoern A. Zeeb uint16_t cap, uint16_t intvl, const uint8_t *ie, size_t ie_len, 13946b4cac81SBjoern A. Zeeb int signal, gfp_t gfp) 13956b4cac81SBjoern A. Zeeb { 13966b4cac81SBjoern A. Zeeb TODO(); 13976b4cac81SBjoern A. Zeeb return (NULL); 13986b4cac81SBjoern A. Zeeb } 13996b4cac81SBjoern A. Zeeb 14006b4cac81SBjoern A. Zeeb static __inline struct cfg80211_bss * 14016b4cac81SBjoern A. Zeeb cfg80211_inform_bss_data(struct wiphy *wiphy, 14026b4cac81SBjoern A. Zeeb struct cfg80211_inform_bss *bss_data, 1403*2e183d99SBjoern A. Zeeb enum cfg80211_bss_frame_type bss_ftype, const uint8_t *bss, int _x, 14046b4cac81SBjoern A. Zeeb uint16_t cap, uint16_t intvl, const uint8_t *ie, size_t ie_len, gfp_t gfp) 14056b4cac81SBjoern A. Zeeb { 14066b4cac81SBjoern A. Zeeb TODO(); 14076b4cac81SBjoern A. Zeeb return (NULL); 14086b4cac81SBjoern A. Zeeb } 14096b4cac81SBjoern A. Zeeb 14106b4cac81SBjoern A. Zeeb static __inline void 14116b4cac81SBjoern A. Zeeb cfg80211_mgmt_tx_status(struct wireless_dev *wdev, uint64_t cookie, 14126b4cac81SBjoern A. Zeeb const u8 *buf, size_t len, bool ack, gfp_t gfp) 14136b4cac81SBjoern A. Zeeb { 14146b4cac81SBjoern A. Zeeb TODO(); 14156b4cac81SBjoern A. Zeeb } 14166b4cac81SBjoern A. Zeeb 14176b4cac81SBjoern A. Zeeb static __inline void 14186b4cac81SBjoern A. Zeeb cfg80211_michael_mic_failure(struct net_device *ndev, const uint8_t *addr, 14196b4cac81SBjoern A. Zeeb enum nl80211_key_type key_type, int _x, void *p, gfp_t gfp) 14206b4cac81SBjoern A. Zeeb { 14216b4cac81SBjoern A. Zeeb TODO(); 14226b4cac81SBjoern A. Zeeb } 14236b4cac81SBjoern A. Zeeb 14246b4cac81SBjoern A. Zeeb static __inline void 14256b4cac81SBjoern A. Zeeb cfg80211_new_sta(struct net_device *ndev, const uint8_t *addr, 14266b4cac81SBjoern A. Zeeb struct station_info *sinfo, gfp_t gfp) 14276b4cac81SBjoern A. Zeeb { 14286b4cac81SBjoern A. Zeeb TODO(); 14296b4cac81SBjoern A. Zeeb } 14306b4cac81SBjoern A. Zeeb 14316b4cac81SBjoern A. Zeeb static __inline void 14326b4cac81SBjoern A. Zeeb cfg80211_del_sta(struct net_device *ndev, const uint8_t *addr, gfp_t gfp) 14336b4cac81SBjoern A. Zeeb { 14346b4cac81SBjoern A. Zeeb TODO(); 14356b4cac81SBjoern A. Zeeb } 14366b4cac81SBjoern A. Zeeb 14376b4cac81SBjoern A. Zeeb static __inline void 14386b4cac81SBjoern A. Zeeb cfg80211_port_authorized(struct net_device *ndev, const uint8_t *bssid, 14396b4cac81SBjoern A. Zeeb gfp_t gfp) 14406b4cac81SBjoern A. Zeeb { 14416b4cac81SBjoern A. Zeeb TODO(); 14426b4cac81SBjoern A. Zeeb } 14436b4cac81SBjoern A. Zeeb 14446b4cac81SBjoern A. Zeeb static __inline void 14456b4cac81SBjoern A. Zeeb cfg80211_ready_on_channel(struct wireless_dev *wdev, uint64_t cookie, 14466b4cac81SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *channel, unsigned int duration, 14476b4cac81SBjoern A. Zeeb gfp_t gfp) 14486b4cac81SBjoern A. Zeeb { 14496b4cac81SBjoern A. Zeeb TODO(); 14506b4cac81SBjoern A. Zeeb } 14516b4cac81SBjoern A. Zeeb 14526b4cac81SBjoern A. Zeeb static __inline void 14536b4cac81SBjoern A. Zeeb cfg80211_remain_on_channel_expired(struct wireless_dev *wdev, 14546b4cac81SBjoern A. Zeeb uint64_t cookie, struct linuxkpi_ieee80211_channel *channel, gfp_t gfp) 14556b4cac81SBjoern A. Zeeb { 14566b4cac81SBjoern A. Zeeb TODO(); 14576b4cac81SBjoern A. Zeeb } 14586b4cac81SBjoern A. Zeeb 14596b4cac81SBjoern A. Zeeb static __inline void 14606b4cac81SBjoern A. Zeeb cfg80211_report_wowlan_wakeup(void) 14616b4cac81SBjoern A. Zeeb { 14626b4cac81SBjoern A. Zeeb TODO(); 14636b4cac81SBjoern A. Zeeb } 14646b4cac81SBjoern A. Zeeb 14656b4cac81SBjoern A. Zeeb static __inline void 14666b4cac81SBjoern A. Zeeb cfg80211_roamed(struct net_device *ndev, struct cfg80211_roam_info *roam_info, 14676b4cac81SBjoern A. Zeeb gfp_t gfp) 14686b4cac81SBjoern A. Zeeb { 14696b4cac81SBjoern A. Zeeb TODO(); 14706b4cac81SBjoern A. Zeeb } 14716b4cac81SBjoern A. Zeeb 14726b4cac81SBjoern A. Zeeb static __inline void 14736b4cac81SBjoern A. Zeeb cfg80211_rx_mgmt(struct wireless_dev *wdev, int freq, int _x, 14746b4cac81SBjoern A. Zeeb uint8_t *p, size_t p_len, int _x2) 14756b4cac81SBjoern A. Zeeb { 14766b4cac81SBjoern A. Zeeb TODO(); 14776b4cac81SBjoern A. Zeeb } 14786b4cac81SBjoern A. Zeeb 14796b4cac81SBjoern A. Zeeb static __inline void 14806b4cac81SBjoern A. Zeeb cfg80211_scan_done(struct cfg80211_scan_request *scan_request, 14816b4cac81SBjoern A. Zeeb struct cfg80211_scan_info *info) 14826b4cac81SBjoern A. Zeeb { 14836b4cac81SBjoern A. Zeeb TODO(); 14846b4cac81SBjoern A. Zeeb } 14856b4cac81SBjoern A. Zeeb 14866b4cac81SBjoern A. Zeeb static __inline void 14876b4cac81SBjoern A. Zeeb cfg80211_sched_scan_results(struct wiphy *wiphy, uint64_t reqid) 14886b4cac81SBjoern A. Zeeb { 14896b4cac81SBjoern A. Zeeb TODO(); 14906b4cac81SBjoern A. Zeeb } 14916b4cac81SBjoern A. Zeeb 14926b4cac81SBjoern A. Zeeb static __inline void 14936b4cac81SBjoern A. Zeeb cfg80211_sched_scan_stopped(struct wiphy *wiphy, int _x) 14946b4cac81SBjoern A. Zeeb { 14956b4cac81SBjoern A. Zeeb TODO(); 14966b4cac81SBjoern A. Zeeb } 14976b4cac81SBjoern A. Zeeb 14986b4cac81SBjoern A. Zeeb static __inline void 14996b4cac81SBjoern A. Zeeb cfg80211_unregister_wdev(struct wireless_dev *wdev) 15006b4cac81SBjoern A. Zeeb { 15016b4cac81SBjoern A. Zeeb TODO(); 15026b4cac81SBjoern A. Zeeb } 15036b4cac81SBjoern A. Zeeb 15046b4cac81SBjoern A. Zeeb static __inline struct sk_buff * 15056b4cac81SBjoern A. Zeeb cfg80211_vendor_cmd_alloc_reply_skb(struct wiphy *wiphy, unsigned int len) 15066b4cac81SBjoern A. Zeeb { 15076b4cac81SBjoern A. Zeeb TODO(); 15086b4cac81SBjoern A. Zeeb return (NULL); 15096b4cac81SBjoern A. Zeeb } 15106b4cac81SBjoern A. Zeeb 15116b4cac81SBjoern A. Zeeb static __inline int 15126b4cac81SBjoern A. Zeeb cfg80211_vendor_cmd_reply(struct sk_buff *skb) 15136b4cac81SBjoern A. Zeeb { 15146b4cac81SBjoern A. Zeeb TODO(); 15156b4cac81SBjoern A. Zeeb return (-ENXIO); 15166b4cac81SBjoern A. Zeeb } 15176b4cac81SBjoern A. Zeeb 15186b4cac81SBjoern A. Zeeb static __inline struct linuxkpi_ieee80211_channel * 15196b4cac81SBjoern A. Zeeb ieee80211_get_channel(struct wiphy *wiphy, uint32_t freq) 15206b4cac81SBjoern A. Zeeb { 1521*2e183d99SBjoern A. Zeeb 1522*2e183d99SBjoern A. Zeeb return (linuxkpi_ieee80211_get_channel(wiphy, freq)); 15236b4cac81SBjoern A. Zeeb } 15246b4cac81SBjoern A. Zeeb 15256b4cac81SBjoern A. Zeeb static __inline size_t 15266b4cac81SBjoern A. Zeeb ieee80211_get_hdrlen_from_skb(struct sk_buff *skb) 15276b4cac81SBjoern A. Zeeb { 15286b4cac81SBjoern A. Zeeb 15296b4cac81SBjoern A. Zeeb TODO(); 15306b4cac81SBjoern A. Zeeb return (-1); 15316b4cac81SBjoern A. Zeeb } 15326b4cac81SBjoern A. Zeeb 15336b4cac81SBjoern A. Zeeb static __inline void 15346b4cac81SBjoern A. Zeeb cfg80211_bss_flush(struct wiphy *wiphy) 15356b4cac81SBjoern A. Zeeb { 15366b4cac81SBjoern A. Zeeb TODO(); 15376b4cac81SBjoern A. Zeeb } 15386b4cac81SBjoern A. Zeeb 15396b4cac81SBjoern A. Zeeb static __inline bool 15406b4cac81SBjoern A. Zeeb cfg80211_channel_is_psc(struct linuxkpi_ieee80211_channel *channel) 15416b4cac81SBjoern A. Zeeb { 15426b4cac81SBjoern A. Zeeb 15436b4cac81SBjoern A. Zeeb /* Only 6Ghz. */ 15446b4cac81SBjoern A. Zeeb if (channel->band != NL80211_BAND_6GHZ) 15456b4cac81SBjoern A. Zeeb return (false); 15466b4cac81SBjoern A. Zeeb 15476b4cac81SBjoern A. Zeeb TODO(); 15486b4cac81SBjoern A. Zeeb return (false); 15496b4cac81SBjoern A. Zeeb } 15506b4cac81SBjoern A. Zeeb 1551*2e183d99SBjoern A. Zeeb static __inline int 1552*2e183d99SBjoern A. Zeeb cfg80211_get_ies_channel_number(const uint8_t *ie, size_t len, 1553*2e183d99SBjoern A. Zeeb enum nl80211_band band, enum cfg80211_bss_frame_type ftype) 1554*2e183d99SBjoern A. Zeeb { 1555*2e183d99SBjoern A. Zeeb 1556*2e183d99SBjoern A. Zeeb TODO(); 1557*2e183d99SBjoern A. Zeeb return (-1); 1558*2e183d99SBjoern A. Zeeb } 15596b4cac81SBjoern A. Zeeb 15606b4cac81SBjoern A. Zeeb /* Used for scanning at least. */ 15616b4cac81SBjoern A. Zeeb static __inline void 15626b4cac81SBjoern A. Zeeb get_random_mask_addr(uint8_t *dst, const uint8_t *addr, const uint8_t *mask) 15636b4cac81SBjoern A. Zeeb { 15646b4cac81SBjoern A. Zeeb int i; 15656b4cac81SBjoern A. Zeeb 15666b4cac81SBjoern A. Zeeb /* Get a completely random address and then overlay what we want. */ 15676b4cac81SBjoern A. Zeeb get_random_bytes(dst, ETH_ALEN); 15686b4cac81SBjoern A. Zeeb for (i = 0; i < ETH_ALEN; i++) 15696b4cac81SBjoern A. Zeeb dst[i] = (dst[i] & ~(mask[i])) | (addr[i] & mask[i]); 15706b4cac81SBjoern A. Zeeb } 15716b4cac81SBjoern A. Zeeb 15726b4cac81SBjoern A. Zeeb #ifndef LINUXKPI_NET80211 15736b4cac81SBjoern A. Zeeb #define ieee80211_channel linuxkpi_ieee80211_channel 15746b4cac81SBjoern A. Zeeb #define ieee80211_regdomain linuxkpi_ieee80211_regdomain 15756b4cac81SBjoern A. Zeeb /* net80211::IEEE80211_VHT_MCS_SUPPORT_0_n() conflicts */ 15766b4cac81SBjoern A. Zeeb #if defined(IEEE80211_VHT_MCS_SUPPORT_0_7) 15776b4cac81SBjoern A. Zeeb #undef IEEE80211_VHT_MCS_SUPPORT_0_7 15786b4cac81SBjoern A. Zeeb #endif 15796b4cac81SBjoern A. Zeeb #if defined(IEEE80211_VHT_MCS_SUPPORT_0_8) 15806b4cac81SBjoern A. Zeeb #undef IEEE80211_VHT_MCS_SUPPORT_0_8 15816b4cac81SBjoern A. Zeeb #endif 15826b4cac81SBjoern A. Zeeb #if defined(IEEE80211_VHT_MCS_SUPPORT_0_9) 15836b4cac81SBjoern A. Zeeb #undef IEEE80211_VHT_MCS_SUPPORT_0_9 15846b4cac81SBjoern A. Zeeb #endif 15856b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_MCS_SUPPORT_0_7 LKPI_IEEE80211_VHT_MCS_SUPPORT_0_7 15866b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_MCS_SUPPORT_0_8 LKPI_IEEE80211_VHT_MCS_SUPPORT_0_8 15876b4cac81SBjoern A. Zeeb #define IEEE80211_VHT_MCS_SUPPORT_0_9 LKPI_IEEE80211_VHT_MCS_SUPPORT_0_9 15886b4cac81SBjoern A. Zeeb #endif 15896b4cac81SBjoern A. Zeeb 15906b4cac81SBjoern A. Zeeb #endif /* _LINUXKPI_NET_CFG80211_H */ 1591