xref: /freebsd/sys/compat/linuxkpi/common/src/linux_80211.c (revision f1a110f1f0f2ef83758f7d0a984b14f512ea00fd)
16b4cac81SBjoern A. Zeeb /*-
2ec6185c5SBjoern A. Zeeb  * Copyright (c) 2020-2025 The FreeBSD Foundation
3c272abc5SBjoern A. Zeeb  * Copyright (c) 2020-2025 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 
306b4cac81SBjoern A. Zeeb /*
316b4cac81SBjoern A. Zeeb  * Public functions are called linuxkpi_*().
326b4cac81SBjoern A. Zeeb  * Internal (static) functions are called lkpi_*().
336b4cac81SBjoern A. Zeeb  *
346b4cac81SBjoern A. Zeeb  * The internal structures holding metadata over public structures are also
356b4cac81SBjoern A. Zeeb  * called lkpi_xxx (usually with a member at the end called xxx).
366b4cac81SBjoern A. Zeeb  * Note: we do not replicate the structure names but the general variable names
376b4cac81SBjoern A. Zeeb  * for these (e.g., struct hw -> struct lkpi_hw, struct sta -> struct lkpi_sta).
386b4cac81SBjoern A. Zeeb  * There are macros to access one from the other.
396b4cac81SBjoern A. Zeeb  * We call the internal versions lxxx (e.g., hw -> lhw, sta -> lsta).
406b4cac81SBjoern A. Zeeb  */
416b4cac81SBjoern A. Zeeb 
4211db70b6SBjoern A. Zeeb /*
4311db70b6SBjoern A. Zeeb  * TODO:
4411db70b6SBjoern A. Zeeb  * - lots :)
4511db70b6SBjoern A. Zeeb  * - HW_CRYPTO: we need a "keystore" and an ordered list for suspend/resume.
4611db70b6SBjoern A. Zeeb  */
4711db70b6SBjoern A. Zeeb 
486b4cac81SBjoern A. Zeeb #include <sys/param.h>
496b4cac81SBjoern A. Zeeb #include <sys/types.h>
506b4cac81SBjoern A. Zeeb #include <sys/kernel.h>
516b4cac81SBjoern A. Zeeb #include <sys/errno.h>
526b4cac81SBjoern A. Zeeb #include <sys/malloc.h>
536b4cac81SBjoern A. Zeeb #include <sys/module.h>
546b4cac81SBjoern A. Zeeb #include <sys/mutex.h>
5540839418SBjoern A. Zeeb #include <sys/sbuf.h>
566b4cac81SBjoern A. Zeeb #include <sys/socket.h>
576b4cac81SBjoern A. Zeeb #include <sys/sysctl.h>
586b4cac81SBjoern A. Zeeb #include <sys/queue.h>
596b4cac81SBjoern A. Zeeb #include <sys/taskqueue.h>
60527687a9SBjoern A. Zeeb #include <sys/libkern.h>
616b4cac81SBjoern A. Zeeb 
626b4cac81SBjoern A. Zeeb #include <net/if.h>
636b4cac81SBjoern A. Zeeb #include <net/if_var.h>
646b4cac81SBjoern A. Zeeb #include <net/if_media.h>
656b4cac81SBjoern A. Zeeb #include <net/ethernet.h>
666b4cac81SBjoern A. Zeeb 
676b4cac81SBjoern A. Zeeb #include <net80211/ieee80211_var.h>
686b4cac81SBjoern A. Zeeb #include <net80211/ieee80211_proto.h>
696b4cac81SBjoern A. Zeeb #include <net80211/ieee80211_ratectl.h>
706b4cac81SBjoern A. Zeeb #include <net80211/ieee80211_radiotap.h>
719fb91463SBjoern A. Zeeb #include <net80211/ieee80211_vht.h>
726b4cac81SBjoern A. Zeeb 
736b4cac81SBjoern A. Zeeb #define	LINUXKPI_NET80211
746b4cac81SBjoern A. Zeeb #include <net/mac80211.h>
756b4cac81SBjoern A. Zeeb 
766b4cac81SBjoern A. Zeeb #include <linux/workqueue.h>
77a8f735a6SBjoern A. Zeeb #include <linux/rculist.h>
786b4cac81SBjoern A. Zeeb #include "linux_80211.h"
796b4cac81SBjoern A. Zeeb 
804a67f1dfSBjoern A. Zeeb #define	LKPI_80211_WME
8111db70b6SBjoern A. Zeeb #define	LKPI_80211_HW_CRYPTO
8275d23d88SBjoern A. Zeeb #define	LKPI_80211_HT
832c44f1ffSBjoern A. Zeeb #define	LKPI_80211_VHT
8411db70b6SBjoern A. Zeeb 
859fb91463SBjoern A. Zeeb #if defined(LKPI_80211_VHT) && !defined(LKPI_80211_HT)
869fb91463SBjoern A. Zeeb #define	LKPI_80211_HT
879fb91463SBjoern A. Zeeb #endif
8811db70b6SBjoern A. Zeeb #if defined(LKPI_80211_HT) && !defined(LKPI_80211_HW_CRYPTO)
8911db70b6SBjoern A. Zeeb #define	LKPI_80211_HW_CRYPTO
9011db70b6SBjoern A. Zeeb #endif
91b35f6cd0SBjoern A. Zeeb 
926b4cac81SBjoern A. Zeeb static MALLOC_DEFINE(M_LKPI80211, "lkpi80211", "LinuxKPI 80211 compat");
936b4cac81SBjoern A. Zeeb 
945a9a0d78SBjoern A. Zeeb /* XXX-BZ really want this and others in queue.h */
955a9a0d78SBjoern A. Zeeb #define	TAILQ_ELEM_INIT(elm, field) do {				\
965a9a0d78SBjoern A. Zeeb 	(elm)->field.tqe_next = NULL;					\
975a9a0d78SBjoern A. Zeeb 	(elm)->field.tqe_prev = NULL;					\
985a9a0d78SBjoern A. Zeeb } while (0)
995a9a0d78SBjoern A. Zeeb 
1006b4cac81SBjoern A. Zeeb /* -------------------------------------------------------------------------- */
1016b4cac81SBjoern A. Zeeb 
1029d9ba2b7SBjoern A. Zeeb SYSCTL_DECL(_compat_linuxkpi);
1039d9ba2b7SBjoern A. Zeeb SYSCTL_NODE(_compat_linuxkpi, OID_AUTO, 80211, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
1049d9ba2b7SBjoern A. Zeeb     "LinuxKPI 802.11 compatibility layer");
1059d9ba2b7SBjoern A. Zeeb 
10611db70b6SBjoern A. Zeeb #if defined(LKPI_80211_HW_CRYPTO)
10711db70b6SBjoern A. Zeeb static bool lkpi_hwcrypto = false;
10811db70b6SBjoern A. Zeeb SYSCTL_BOOL(_compat_linuxkpi_80211, OID_AUTO, hw_crypto, CTLFLAG_RDTUN,
10911db70b6SBjoern A. Zeeb     &lkpi_hwcrypto, 0, "Enable LinuxKPI 802.11 hardware crypto offload");
110b71d3043SBjoern A. Zeeb 
111b71d3043SBjoern A. Zeeb static bool lkpi_hwcrypto_tkip = false;
112b71d3043SBjoern A. Zeeb SYSCTL_BOOL(_compat_linuxkpi_80211, OID_AUTO, tkip, CTLFLAG_RDTUN,
113b71d3043SBjoern A. Zeeb     &lkpi_hwcrypto_tkip, 0, "Enable LinuxKPI 802.11 TKIP crypto offload");
11411db70b6SBjoern A. Zeeb #endif
11511db70b6SBjoern A. Zeeb 
11640839418SBjoern A. Zeeb /* Keep public for as long as header files are using it too. */
11740839418SBjoern A. Zeeb int linuxkpi_debug_80211;
11840839418SBjoern A. Zeeb 
11940839418SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
1209d9ba2b7SBjoern A. Zeeb SYSCTL_INT(_compat_linuxkpi_80211, OID_AUTO, debug, CTLFLAG_RWTUN,
1219d9ba2b7SBjoern A. Zeeb     &linuxkpi_debug_80211, 0, "LinuxKPI 802.11 debug level");
1229d9ba2b7SBjoern A. Zeeb 
1239d9ba2b7SBjoern A. Zeeb #define	UNIMPLEMENTED		if (linuxkpi_debug_80211 & D80211_TODO)		\
1246b4cac81SBjoern A. Zeeb     printf("XXX-TODO %s:%d: UNIMPLEMENTED\n", __func__, __LINE__)
1259d9ba2b7SBjoern A. Zeeb #define	TRACEOK()		if (linuxkpi_debug_80211 & D80211_TRACEOK)	\
1266b4cac81SBjoern A. Zeeb     printf("XXX-TODO %s:%d: TRACEPOINT\n", __func__, __LINE__)
1276b4cac81SBjoern A. Zeeb #else
1286b4cac81SBjoern A. Zeeb #define	UNIMPLEMENTED		do { } while (0)
1296b4cac81SBjoern A. Zeeb #define	TRACEOK()		do { } while (0)
1306b4cac81SBjoern A. Zeeb #endif
1316b4cac81SBjoern A. Zeeb 
1326b4cac81SBjoern A. Zeeb /* #define	PREP_TX_INFO_DURATION	(IEEE80211_TRANS_WAIT * 1000) */
1336b4cac81SBjoern A. Zeeb #ifndef PREP_TX_INFO_DURATION
1346b4cac81SBjoern A. Zeeb #define	PREP_TX_INFO_DURATION	0 /* Let the driver do its thing. */
1356b4cac81SBjoern A. Zeeb #endif
1366b4cac81SBjoern A. Zeeb 
1376b4cac81SBjoern A. Zeeb /* This is DSAP | SSAP | CTRL | ProtoID/OrgCode{3}. */
1386b4cac81SBjoern A. Zeeb const uint8_t rfc1042_header[6] = { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
1396b4cac81SBjoern A. Zeeb 
140b0f73768SBjoern A. Zeeb /* IEEE 802.11-05/0257r1 */
141b0f73768SBjoern A. Zeeb const uint8_t bridge_tunnel_header[6] = { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0xf8 };
142b0f73768SBjoern A. Zeeb 
143fb3c249eSBjoern A. Zeeb /* IEEE 802.11e Table 20i-UP-to-AC mappings. */
144fb3c249eSBjoern A. Zeeb static const uint8_t ieee80211e_up_to_ac[] = {
1454f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_BE,
1464f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_BK,
1474f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_BK,
1484f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_BE,
1494f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_VI,
1504f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_VI,
1514f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_VO,
1524f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_VO,
1534f61ef8bSBjoern A. Zeeb #if 0
1544f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_VO, /* We treat MGMT as TID 8, which is set as AC_VO */
1554f61ef8bSBjoern A. Zeeb #endif
1564f61ef8bSBjoern A. Zeeb };
1574f61ef8bSBjoern A. Zeeb 
1586b4cac81SBjoern A. Zeeb const struct cfg80211_ops linuxkpi_mac80211cfgops = {
1596b4cac81SBjoern A. Zeeb 	/*
1606b4cac81SBjoern A. Zeeb 	 * XXX TODO need a "glue layer" to link cfg80211 ops to
1616b4cac81SBjoern A. Zeeb 	 * mac80211 and to the driver or net80211.
1626b4cac81SBjoern A. Zeeb 	 * Can we pass some on 1:1? Need to compare the (*f)().
1636b4cac81SBjoern A. Zeeb 	 */
1646b4cac81SBjoern A. Zeeb };
1656b4cac81SBjoern A. Zeeb 
166ac867c20SBjoern A. Zeeb #if 0
1676b4cac81SBjoern A. Zeeb static struct lkpi_sta *lkpi_find_lsta_by_ni(struct lkpi_vif *,
1686b4cac81SBjoern A. Zeeb     struct ieee80211_node *);
169ac867c20SBjoern A. Zeeb #endif
17088665349SBjoern A. Zeeb static void lkpi_80211_txq_tx_one(struct lkpi_sta *, struct mbuf *);
1716b4cac81SBjoern A. Zeeb static void lkpi_80211_txq_task(void *, int);
172759a996dSBjoern A. Zeeb static void lkpi_80211_lhw_rxq_task(void *, int);
1736b4cac81SBjoern A. Zeeb static void lkpi_ieee80211_free_skb_mbuf(void *);
1744a67f1dfSBjoern A. Zeeb #ifdef LKPI_80211_WME
1754a67f1dfSBjoern A. Zeeb static int lkpi_wme_update(struct lkpi_hw *, struct ieee80211vap *, bool);
1764a67f1dfSBjoern A. Zeeb #endif
177db480c29SBjoern A. Zeeb static void lkpi_ieee80211_wake_queues_locked(struct ieee80211_hw *);
1786b4cac81SBjoern A. Zeeb 
17940839418SBjoern A. Zeeb static const char *
18040839418SBjoern A. Zeeb lkpi_rate_info_bw_to_str(enum rate_info_bw bw)
18140839418SBjoern A. Zeeb {
18240839418SBjoern A. Zeeb 
18340839418SBjoern A. Zeeb 	switch (bw) {
18440839418SBjoern A. Zeeb 
18540839418SBjoern A. Zeeb         case RATE_INFO_BW_20:
18640839418SBjoern A. Zeeb 		return ("20");
18740839418SBjoern A. Zeeb 		break;
18840839418SBjoern A. Zeeb         case RATE_INFO_BW_5:
18940839418SBjoern A. Zeeb 		return ("5");
19040839418SBjoern A. Zeeb 		break;
19140839418SBjoern A. Zeeb         case RATE_INFO_BW_10:
19240839418SBjoern A. Zeeb 		return ("10");
19340839418SBjoern A. Zeeb 		break;
19440839418SBjoern A. Zeeb         case RATE_INFO_BW_40:
19540839418SBjoern A. Zeeb 		return ("40");
19640839418SBjoern A. Zeeb 		break;
19740839418SBjoern A. Zeeb         case RATE_INFO_BW_80:
19840839418SBjoern A. Zeeb 		return ("80");
19940839418SBjoern A. Zeeb 		break;
20040839418SBjoern A. Zeeb         case RATE_INFO_BW_160:
20140839418SBjoern A. Zeeb 		return ("160");
20240839418SBjoern A. Zeeb 		break;
20340839418SBjoern A. Zeeb         case RATE_INFO_BW_HE_RU:
20440839418SBjoern A. Zeeb 		IMPROVE("nl80211_he_ru_alloc");
20540839418SBjoern A. Zeeb 		return ("HE_RU");
20640839418SBjoern A. Zeeb 		break;
20740839418SBjoern A. Zeeb         case RATE_INFO_BW_320:
20840839418SBjoern A. Zeeb 		return ("320");
20940839418SBjoern A. Zeeb 		break;
21040839418SBjoern A. Zeeb         case RATE_INFO_BW_EHT_RU:
21140839418SBjoern A. Zeeb 		IMPROVE("nl80211_eht_ru_alloc");
21240839418SBjoern A. Zeeb 		return ("EHT_RU");
21340839418SBjoern A. Zeeb 		break;
21440839418SBjoern A. Zeeb 	default:
21540839418SBjoern A. Zeeb 		return ("?");
21640839418SBjoern A. Zeeb 		break;
21740839418SBjoern A. Zeeb 	}
21840839418SBjoern A. Zeeb }
21940839418SBjoern A. Zeeb 
22040839418SBjoern A. Zeeb static void
22140839418SBjoern A. Zeeb lkpi_nl80211_sta_info_to_str(struct sbuf *s, const char *prefix,
22240839418SBjoern A. Zeeb     const uint64_t flags)
22340839418SBjoern A. Zeeb {
22440839418SBjoern A. Zeeb 	int bit, i;
22540839418SBjoern A. Zeeb 
22640839418SBjoern A. Zeeb 	sbuf_printf(s, "%s %#010jx", prefix, flags);
22740839418SBjoern A. Zeeb 
22840839418SBjoern A. Zeeb 	i = 0;
22940839418SBjoern A. Zeeb 	for (bit = 0; bit < BITS_PER_TYPE(flags); bit++) {
23040839418SBjoern A. Zeeb 
23140839418SBjoern A. Zeeb 		if ((flags & BIT_ULL(bit)) == 0)
23240839418SBjoern A. Zeeb 			continue;
23340839418SBjoern A. Zeeb 
23440839418SBjoern A. Zeeb #define	EXPAND_CASE(_flag)						\
23540839418SBjoern A. Zeeb 	case NL80211_STA_INFO_ ## _flag:				\
23640839418SBjoern A. Zeeb 		sbuf_printf(s, "%c%s", (i == 0) ? '<' : ',', #_flag);	\
23740839418SBjoern A. Zeeb 		i++;							\
23840839418SBjoern A. Zeeb 		break;
23940839418SBjoern A. Zeeb 
24040839418SBjoern A. Zeeb 		switch (bit) {
24140839418SBjoern A. Zeeb 		EXPAND_CASE(BEACON_RX)
24240839418SBjoern A. Zeeb 		EXPAND_CASE(BEACON_SIGNAL_AVG)
24340839418SBjoern A. Zeeb 		EXPAND_CASE(BSS_PARAM)
24440839418SBjoern A. Zeeb 		EXPAND_CASE(CHAIN_SIGNAL)
24540839418SBjoern A. Zeeb 		EXPAND_CASE(CHAIN_SIGNAL_AVG)
24640839418SBjoern A. Zeeb 		EXPAND_CASE(CONNECTED_TIME)
24740839418SBjoern A. Zeeb 		EXPAND_CASE(INACTIVE_TIME)
24840839418SBjoern A. Zeeb 		EXPAND_CASE(SIGNAL)
24940839418SBjoern A. Zeeb 		EXPAND_CASE(SIGNAL_AVG)
25040839418SBjoern A. Zeeb 		EXPAND_CASE(STA_FLAGS)
25140839418SBjoern A. Zeeb 		EXPAND_CASE(RX_BITRATE)
25240839418SBjoern A. Zeeb 		EXPAND_CASE(RX_PACKETS)
25340839418SBjoern A. Zeeb 		EXPAND_CASE(RX_BYTES)
25440839418SBjoern A. Zeeb 		EXPAND_CASE(RX_DROP_MISC)
25540839418SBjoern A. Zeeb 		EXPAND_CASE(TX_BITRATE)
25640839418SBjoern A. Zeeb 		EXPAND_CASE(TX_PACKETS)
25740839418SBjoern A. Zeeb 		EXPAND_CASE(TX_BYTES)
25840839418SBjoern A. Zeeb 		EXPAND_CASE(TX_BYTES64)
25940839418SBjoern A. Zeeb 		EXPAND_CASE(RX_BYTES64)
26040839418SBjoern A. Zeeb 		EXPAND_CASE(TX_FAILED)
26140839418SBjoern A. Zeeb 		EXPAND_CASE(TX_RETRIES)
26240839418SBjoern A. Zeeb 		EXPAND_CASE(RX_DURATION)
26340839418SBjoern A. Zeeb 		EXPAND_CASE(TX_DURATION)
26440839418SBjoern A. Zeeb 		EXPAND_CASE(ACK_SIGNAL)
26540839418SBjoern A. Zeeb 		EXPAND_CASE(ACK_SIGNAL_AVG)
26640839418SBjoern A. Zeeb 		default:
26740839418SBjoern A. Zeeb 			sbuf_printf(s, "%c?%d", (i == 0) ? '<' : ',', bit);
26840839418SBjoern A. Zeeb 			break;
26940839418SBjoern A. Zeeb 		}
27040839418SBjoern A. Zeeb 	}
27140839418SBjoern A. Zeeb #undef	EXPAND_CASE
27240839418SBjoern A. Zeeb 	if (i > 0)
27340839418SBjoern A. Zeeb 		sbuf_printf(s, ">");
27440839418SBjoern A. Zeeb 	sbuf_printf(s, "\n");
27540839418SBjoern A. Zeeb }
27640839418SBjoern A. Zeeb 
27740839418SBjoern A. Zeeb static int
27840839418SBjoern A. Zeeb lkpi_80211_dump_stas(SYSCTL_HANDLER_ARGS)
27940839418SBjoern A. Zeeb {
28040839418SBjoern A. Zeeb 	struct lkpi_hw *lhw;
28140839418SBjoern A. Zeeb 	struct ieee80211_hw *hw;
28240839418SBjoern A. Zeeb 	struct ieee80211vap *vap;
28340839418SBjoern A. Zeeb 	struct lkpi_vif *lvif;
28440839418SBjoern A. Zeeb 	struct ieee80211_vif *vif;
28540839418SBjoern A. Zeeb 	struct lkpi_sta *lsta;
28640839418SBjoern A. Zeeb 	struct ieee80211_sta *sta;
28740839418SBjoern A. Zeeb 	struct station_info sinfo;
28840839418SBjoern A. Zeeb 	struct sbuf s;
28940839418SBjoern A. Zeeb 	int error;
29040839418SBjoern A. Zeeb 
29140839418SBjoern A. Zeeb 	if (req->newptr)
29240839418SBjoern A. Zeeb 		return (EPERM);
29340839418SBjoern A. Zeeb 
29440839418SBjoern A. Zeeb 	lvif = (struct lkpi_vif *)arg1;
29540839418SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
29640839418SBjoern A. Zeeb 	vap = LVIF_TO_VAP(lvif);
29740839418SBjoern A. Zeeb 	lhw = vap->iv_ic->ic_softc;
29840839418SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
29940839418SBjoern A. Zeeb 
30040839418SBjoern A. Zeeb 	sbuf_new_for_sysctl(&s, NULL, 1024, req);
30140839418SBjoern A. Zeeb 
30240839418SBjoern A. Zeeb 	wiphy_lock(hw->wiphy);
303a8f735a6SBjoern A. Zeeb 	list_for_each_entry(lsta, &lvif->lsta_list, lsta_list) {
30440839418SBjoern A. Zeeb 		sta = LSTA_TO_STA(lsta);
30540839418SBjoern A. Zeeb 
30640839418SBjoern A. Zeeb 		sbuf_putc(&s, '\n');
30740839418SBjoern A. Zeeb 		sbuf_printf(&s, "lsta %p sta %p added_to_drv %d\n", lsta, sta, lsta->added_to_drv);
30840839418SBjoern A. Zeeb 
30940839418SBjoern A. Zeeb 		memset(&sinfo, 0, sizeof(sinfo));
31040839418SBjoern A. Zeeb 		error = lkpi_80211_mo_sta_statistics(hw, vif, sta, &sinfo);
31140839418SBjoern A. Zeeb 		if (error == EEXIST)	/* Not added to driver. */
31240839418SBjoern A. Zeeb 			continue;
31340839418SBjoern A. Zeeb 		if (error == ENOTSUPP) {
31440839418SBjoern A. Zeeb 			sbuf_printf(&s, " sta_statistics not supported\n");
31540839418SBjoern A. Zeeb 			continue;
31640839418SBjoern A. Zeeb 		}
31740839418SBjoern A. Zeeb 		if (error != 0) {
31840839418SBjoern A. Zeeb 			sbuf_printf(&s, " sta_statistics failed: %d\n", error);
31940839418SBjoern A. Zeeb 			continue;
32040839418SBjoern A. Zeeb 		}
32140839418SBjoern A. Zeeb 
322a1adefb1SBjoern A. Zeeb 		/* If no RX_BITRATE is reported, try to fill it in from the lsta sinfo. */
323a1adefb1SBjoern A. Zeeb 		if ((sinfo.filled & BIT_ULL(NL80211_STA_INFO_RX_BITRATE)) == 0 &&
324a1adefb1SBjoern A. Zeeb 		    (lsta->sinfo.filled & BIT_ULL(NL80211_STA_INFO_RX_BITRATE)) != 0) {
325a1adefb1SBjoern A. Zeeb 			memcpy(&sinfo.rxrate, &lsta->sinfo.rxrate, sizeof(sinfo.rxrate));
326a1adefb1SBjoern A. Zeeb 			sinfo.filled |= BIT_ULL(NL80211_STA_INFO_RX_BITRATE);
327a1adefb1SBjoern A. Zeeb 		}
328a1adefb1SBjoern A. Zeeb 
32940839418SBjoern A. Zeeb 		lkpi_nl80211_sta_info_to_str(&s, " nl80211_sta_info (valid fields)", sinfo.filled);
33040839418SBjoern A. Zeeb 		sbuf_printf(&s, " connected_time %u inactive_time %u\n",
33140839418SBjoern A. Zeeb 		    sinfo.connected_time, sinfo.inactive_time);
33240839418SBjoern A. Zeeb 		sbuf_printf(&s, " rx_bytes %ju rx_packets %u rx_dropped_misc %u\n",
33340839418SBjoern A. Zeeb 		    (uintmax_t)sinfo.rx_bytes, sinfo.rx_packets, sinfo.rx_dropped_misc);
33440839418SBjoern A. Zeeb 		sbuf_printf(&s, " rx_duration %ju rx_beacon %u rx_beacon_signal_avg %d\n",
33540839418SBjoern A. Zeeb 		    (uintmax_t)sinfo.rx_duration, sinfo.rx_beacon, (int8_t)sinfo.rx_beacon_signal_avg);
33640839418SBjoern A. Zeeb 
33740839418SBjoern A. Zeeb 		sbuf_printf(&s, " tx_bytes %ju tx_packets %u tx_failed %u\n",
33840839418SBjoern A. Zeeb 		    (uintmax_t)sinfo.tx_bytes, sinfo.tx_packets, sinfo.tx_failed);
33940839418SBjoern A. Zeeb 		sbuf_printf(&s, " tx_duration %ju tx_retries %u\n",
34040839418SBjoern A. Zeeb 		    (uintmax_t)sinfo.tx_duration, sinfo.tx_retries);
34140839418SBjoern A. Zeeb 
34240839418SBjoern A. Zeeb 		sbuf_printf(&s, " signal %d signal_avg %d ack_signal %d avg_ack_signal %d\n",
34340839418SBjoern A. Zeeb 		    sinfo.signal, sinfo.signal_avg, sinfo.ack_signal, sinfo.avg_ack_signal);
34440839418SBjoern A. Zeeb 
34540839418SBjoern A. Zeeb 		sbuf_printf(&s, " generation %d assoc_req_ies_len %zu chains %d\n",
34640839418SBjoern A. Zeeb 		    sinfo.generation, sinfo.assoc_req_ies_len, sinfo.chains);
34740839418SBjoern A. Zeeb 
34840839418SBjoern A. Zeeb 		for (int i = 0; i < sinfo.chains && i < IEEE80211_MAX_CHAINS; i++) {
34940839418SBjoern A. Zeeb 			sbuf_printf(&s, "  chain[%d] signal %d signal_avg %d\n",
35040839418SBjoern A. Zeeb 			    i, (int8_t)sinfo.chain_signal[i], (int8_t)sinfo.chain_signal_avg[i]);
35140839418SBjoern A. Zeeb 		}
35240839418SBjoern A. Zeeb 
35340839418SBjoern A. Zeeb 		/* assoc_req_ies, bss_param, sta_flags */
35440839418SBjoern A. Zeeb 
35540839418SBjoern A. Zeeb 		sbuf_printf(&s, " rxrate: flags %b bw %u(%s) legacy %u kbit/s mcs %u nss %u\n",
35640839418SBjoern A. Zeeb 		    sinfo.rxrate.flags, CFG80211_RATE_INFO_FLAGS_BITS,
35740839418SBjoern A. Zeeb 		    sinfo.rxrate.bw, lkpi_rate_info_bw_to_str(sinfo.rxrate.bw),
35840839418SBjoern A. Zeeb 		    sinfo.rxrate.legacy * 100,
35940839418SBjoern A. Zeeb 		    sinfo.rxrate.mcs, sinfo.rxrate.nss);
36040839418SBjoern A. Zeeb 		sbuf_printf(&s, "         he_dcm %u he_gi %u he_ru_alloc %u eht_gi %u\n",
36140839418SBjoern A. Zeeb 		    sinfo.rxrate.he_dcm, sinfo.rxrate.he_gi, sinfo.rxrate.he_ru_alloc,
36240839418SBjoern A. Zeeb 		    sinfo.rxrate.eht_gi);
36340839418SBjoern A. Zeeb 		sbuf_printf(&s, " txrate: flags %b bw %u(%s) legacy %u kbit/s mcs %u nss %u\n",
36440839418SBjoern A. Zeeb 		    sinfo.txrate.flags, CFG80211_RATE_INFO_FLAGS_BITS,
36540839418SBjoern A. Zeeb 		    sinfo.txrate.bw, lkpi_rate_info_bw_to_str(sinfo.txrate.bw),
36640839418SBjoern A. Zeeb 		    sinfo.txrate.legacy * 100,
36740839418SBjoern A. Zeeb 		    sinfo.txrate.mcs, sinfo.txrate.nss);
36840839418SBjoern A. Zeeb 		sbuf_printf(&s, "         he_dcm %u he_gi %u he_ru_alloc %u eht_gi %u\n",
36940839418SBjoern A. Zeeb 		    sinfo.txrate.he_dcm, sinfo.txrate.he_gi, sinfo.txrate.he_ru_alloc,
37040839418SBjoern A. Zeeb 		    sinfo.txrate.eht_gi);
37140839418SBjoern A. Zeeb 	}
37240839418SBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
37340839418SBjoern A. Zeeb 
37440839418SBjoern A. Zeeb 	sbuf_finish(&s);
37540839418SBjoern A. Zeeb 	sbuf_delete(&s);
37640839418SBjoern A. Zeeb 
37740839418SBjoern A. Zeeb 	return (0);
37840839418SBjoern A. Zeeb }
37940839418SBjoern A. Zeeb 
38062d51a43SBjoern A. Zeeb static enum ieee80211_sta_rx_bw
38162d51a43SBjoern A. Zeeb lkpi_cw_to_rx_bw(enum nl80211_chan_width cw)
38262d51a43SBjoern A. Zeeb {
38362d51a43SBjoern A. Zeeb 	switch (cw) {
38462d51a43SBjoern A. Zeeb 	case NL80211_CHAN_WIDTH_320:
38562d51a43SBjoern A. Zeeb 		return (IEEE80211_STA_RX_BW_320);
38662d51a43SBjoern A. Zeeb 	case NL80211_CHAN_WIDTH_160:
38762d51a43SBjoern A. Zeeb 	case NL80211_CHAN_WIDTH_80P80:
38862d51a43SBjoern A. Zeeb 		return (IEEE80211_STA_RX_BW_160);
38962d51a43SBjoern A. Zeeb 	case NL80211_CHAN_WIDTH_80:
39062d51a43SBjoern A. Zeeb 		return (IEEE80211_STA_RX_BW_80);
39162d51a43SBjoern A. Zeeb 	case NL80211_CHAN_WIDTH_40:
39262d51a43SBjoern A. Zeeb 		return (IEEE80211_STA_RX_BW_40);
39362d51a43SBjoern A. Zeeb 	case NL80211_CHAN_WIDTH_20:
39462d51a43SBjoern A. Zeeb 	case NL80211_CHAN_WIDTH_20_NOHT:
39562d51a43SBjoern A. Zeeb 		return (IEEE80211_STA_RX_BW_20);
39662d51a43SBjoern A. Zeeb 	case NL80211_CHAN_WIDTH_5:
39762d51a43SBjoern A. Zeeb 	case NL80211_CHAN_WIDTH_10:
39862d51a43SBjoern A. Zeeb 		/* Unsupported input. */
39962d51a43SBjoern A. Zeeb 		return (IEEE80211_STA_RX_BW_20);
40062d51a43SBjoern A. Zeeb 	}
40162d51a43SBjoern A. Zeeb }
40262d51a43SBjoern A. Zeeb 
40362d51a43SBjoern A. Zeeb static enum nl80211_chan_width
40462d51a43SBjoern A. Zeeb lkpi_rx_bw_to_cw(enum ieee80211_sta_rx_bw rx_bw)
40562d51a43SBjoern A. Zeeb {
40662d51a43SBjoern A. Zeeb 	switch (rx_bw) {
40762d51a43SBjoern A. Zeeb 	case IEEE80211_STA_RX_BW_20:
40862d51a43SBjoern A. Zeeb 		return (NL80211_CHAN_WIDTH_20);	/* _NOHT */
40962d51a43SBjoern A. Zeeb 	case IEEE80211_STA_RX_BW_40:
41062d51a43SBjoern A. Zeeb 		return (NL80211_CHAN_WIDTH_40);
41162d51a43SBjoern A. Zeeb 	case IEEE80211_STA_RX_BW_80:
41262d51a43SBjoern A. Zeeb 		return (NL80211_CHAN_WIDTH_80);
41362d51a43SBjoern A. Zeeb 	case IEEE80211_STA_RX_BW_160:
41462d51a43SBjoern A. Zeeb 		return (NL80211_CHAN_WIDTH_160); /* 80P80 */
41562d51a43SBjoern A. Zeeb 	case IEEE80211_STA_RX_BW_320:
41662d51a43SBjoern A. Zeeb 		return (NL80211_CHAN_WIDTH_320);
41762d51a43SBjoern A. Zeeb 	}
41862d51a43SBjoern A. Zeeb }
41962d51a43SBjoern A. Zeeb 
42062d51a43SBjoern A. Zeeb static void
42162d51a43SBjoern A. Zeeb lkpi_sync_chanctx_cw_from_rx_bw(struct ieee80211_hw *hw,
42262d51a43SBjoern A. Zeeb     struct ieee80211_vif *vif, struct ieee80211_sta *sta)
42362d51a43SBjoern A. Zeeb {
42462d51a43SBjoern A. Zeeb 	struct ieee80211_chanctx_conf *chanctx_conf;
42562d51a43SBjoern A. Zeeb 	enum ieee80211_sta_rx_bw old_bw;
42662d51a43SBjoern A. Zeeb 	uint32_t changed;
42762d51a43SBjoern A. Zeeb 
42862d51a43SBjoern A. Zeeb 	chanctx_conf = rcu_dereference_protected(vif->bss_conf.chanctx_conf,
42962d51a43SBjoern A. Zeeb 	    lockdep_is_held(&hw->wiphy->mtx));
43062d51a43SBjoern A. Zeeb 	if (chanctx_conf == NULL)
43162d51a43SBjoern A. Zeeb 		return;
43262d51a43SBjoern A. Zeeb 
43362d51a43SBjoern A. Zeeb 	old_bw = lkpi_cw_to_rx_bw(chanctx_conf->def.width);
43462d51a43SBjoern A. Zeeb 	if (old_bw == sta->deflink.bandwidth)
43562d51a43SBjoern A. Zeeb 		return;
43662d51a43SBjoern A. Zeeb 
43762d51a43SBjoern A. Zeeb 	chanctx_conf->def.width = lkpi_rx_bw_to_cw(sta->deflink.bandwidth);
43862d51a43SBjoern A. Zeeb 	if (chanctx_conf->def.width == NL80211_CHAN_WIDTH_20 &&
43962d51a43SBjoern A. Zeeb 	    !sta->deflink.ht_cap.ht_supported)
44062d51a43SBjoern A. Zeeb 		chanctx_conf->def.width = NL80211_CHAN_WIDTH_20_NOHT;
44162d51a43SBjoern A. Zeeb 
44262d51a43SBjoern A. Zeeb 	chanctx_conf->min_def = chanctx_conf->def;
44362d51a43SBjoern A. Zeeb 
44462d51a43SBjoern A. Zeeb 	vif->bss_conf.chanreq.oper.width = chanctx_conf->def.width;
44562d51a43SBjoern A. Zeeb 
44662d51a43SBjoern A. Zeeb 	changed = IEEE80211_CHANCTX_CHANGE_MIN_WIDTH;
44762d51a43SBjoern A. Zeeb 	changed |= IEEE80211_CHANCTX_CHANGE_WIDTH;
44862d51a43SBjoern A. Zeeb 	lkpi_80211_mo_change_chanctx(hw, chanctx_conf, changed);
44962d51a43SBjoern A. Zeeb }
45062d51a43SBjoern A. Zeeb 
4519fb91463SBjoern A. Zeeb #if defined(LKPI_80211_HT)
4529fb91463SBjoern A. Zeeb static void
45362d51a43SBjoern A. Zeeb lkpi_sta_sync_ht_from_ni(struct ieee80211_vif *vif, struct ieee80211_sta *sta,
45462d51a43SBjoern A. Zeeb     struct ieee80211_node *ni)
4559fb91463SBjoern A. Zeeb {
4569fb91463SBjoern A. Zeeb 	struct ieee80211vap *vap;
4579fb91463SBjoern A. Zeeb 	uint8_t *ie;
4589fb91463SBjoern A. Zeeb 	struct ieee80211_ht_cap *htcap;
4599fb91463SBjoern A. Zeeb 	int i, rx_nss;
4609fb91463SBjoern A. Zeeb 
461f9c7a07dSBjoern A. Zeeb 	if ((ni->ni_flags & IEEE80211_NODE_HT) == 0) {
462f9c7a07dSBjoern A. Zeeb 		sta->deflink.ht_cap.ht_supported = false;
4639fb91463SBjoern A. Zeeb 		return;
464f9c7a07dSBjoern A. Zeeb 	}
4659fb91463SBjoern A. Zeeb 
4669fb91463SBjoern A. Zeeb 	sta->deflink.ht_cap.ht_supported = true;
4679fb91463SBjoern A. Zeeb 
4689fb91463SBjoern A. Zeeb 	/* htcap->ampdu_params_info */
4699fb91463SBjoern A. Zeeb 	vap = ni->ni_vap;
4709fb91463SBjoern A. Zeeb 	sta->deflink.ht_cap.ampdu_density = _IEEE80211_MASKSHIFT(ni->ni_htparam, IEEE80211_HTCAP_MPDUDENSITY);
4719fb91463SBjoern A. Zeeb 	if (sta->deflink.ht_cap.ampdu_density > vap->iv_ampdu_density)
4729fb91463SBjoern A. Zeeb 		sta->deflink.ht_cap.ampdu_density = vap->iv_ampdu_density;
4739fb91463SBjoern A. Zeeb 	sta->deflink.ht_cap.ampdu_factor = _IEEE80211_MASKSHIFT(ni->ni_htparam, IEEE80211_HTCAP_MAXRXAMPDU);
4749fb91463SBjoern A. Zeeb 	if (sta->deflink.ht_cap.ampdu_factor > vap->iv_ampdu_rxmax)
4759fb91463SBjoern A. Zeeb 		sta->deflink.ht_cap.ampdu_factor = vap->iv_ampdu_rxmax;
4769fb91463SBjoern A. Zeeb 
4779fb91463SBjoern A. Zeeb 	ie = ni->ni_ies.htcap_ie;
4789fb91463SBjoern A. Zeeb 	KASSERT(ie != NULL, ("%s: HT but no htcap_ie on ni %p\n", __func__, ni));
4799fb91463SBjoern A. Zeeb 	if (ie[0] == IEEE80211_ELEMID_VENDOR)
4809fb91463SBjoern A. Zeeb 		ie += 4;
4819fb91463SBjoern A. Zeeb 	ie += 2;
4829fb91463SBjoern A. Zeeb 	htcap = (struct ieee80211_ht_cap *)ie;
4839fb91463SBjoern A. Zeeb 	sta->deflink.ht_cap.cap = htcap->cap_info;
4849fb91463SBjoern A. Zeeb 	sta->deflink.ht_cap.mcs = htcap->mcs;
4859fb91463SBjoern A. Zeeb 
486f9c7a07dSBjoern A. Zeeb 	/*
487f9c7a07dSBjoern A. Zeeb 	 * 802.11n-2009 20.6 Parameters for HT MCSs gives the mandatory/
488f9c7a07dSBjoern A. Zeeb 	 * optional MCS for Nss=1..4.  We need to check the first four
489f9c7a07dSBjoern A. Zeeb 	 * MCS sets from the Rx MCS Bitmask; then there is MCS 32 and
490f9c7a07dSBjoern A. Zeeb 	 * MCS33.. is UEQM.
491f9c7a07dSBjoern A. Zeeb 	 */
4929fb91463SBjoern A. Zeeb 	rx_nss = 0;
493f9c7a07dSBjoern A. Zeeb 	for (i = 0; i < 4; i++) {
49458dae28fSBjoern A. Zeeb 		if (htcap->mcs.rx_mask[i] != 0)
4959fb91463SBjoern A. Zeeb 			rx_nss++;
4969fb91463SBjoern A. Zeeb 	}
49758dae28fSBjoern A. Zeeb 	if (rx_nss > 0) {
498f9c7a07dSBjoern A. Zeeb 		sta->deflink.rx_nss = rx_nss;
49958dae28fSBjoern A. Zeeb 	} else {
50058dae28fSBjoern A. Zeeb 		sta->deflink.ht_cap.ht_supported = false;
50158dae28fSBjoern A. Zeeb 		return;
50258dae28fSBjoern A. Zeeb 	}
50358dae28fSBjoern A. Zeeb 
50458dae28fSBjoern A. Zeeb 	if ((sta->deflink.ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) != 0 &&
50558dae28fSBjoern A. Zeeb 	    IEEE80211_IS_CHAN_HT40(ni->ni_chan))
50658dae28fSBjoern A. Zeeb 		sta->deflink.bandwidth = IEEE80211_STA_RX_BW_40;
50758dae28fSBjoern A. Zeeb 	else
50858dae28fSBjoern A. Zeeb 		sta->deflink.bandwidth = IEEE80211_STA_RX_BW_20;
5099fb91463SBjoern A. Zeeb 
510f9c7a07dSBjoern A. Zeeb 	IMPROVE("sta->wme");
511f9c7a07dSBjoern A. Zeeb 
512f9c7a07dSBjoern A. Zeeb 	if (sta->deflink.ht_cap.cap & IEEE80211_HT_CAP_MAX_AMSDU)
513f9c7a07dSBjoern A. Zeeb 		sta->deflink.agg.max_amsdu_len = IEEE80211_MAX_MPDU_LEN_HT_7935;
514f9c7a07dSBjoern A. Zeeb 	else
515f9c7a07dSBjoern A. Zeeb 		sta->deflink.agg.max_amsdu_len = IEEE80211_MAX_MPDU_LEN_HT_3839;
516f9c7a07dSBjoern A. Zeeb 	sta->deflink.agg.max_rc_amsdu_len = IEEE80211_MAX_MPDU_LEN_HT_BA;
517f9c7a07dSBjoern A. Zeeb #ifdef __handled_by_driver__	/* iwlwifi only? actually unused? */
518f9c7a07dSBjoern A. Zeeb 	for (i = 0; i < nitems(sta.deflink.agg.max_tid_amsdu_len); i++) {
519f9c7a07dSBjoern A. Zeeb 		sta->deflink.agg.max_tid_amsdu_len[j] = ;
520f9c7a07dSBjoern A. Zeeb 	}
521f9c7a07dSBjoern A. Zeeb #endif
5229fb91463SBjoern A. Zeeb }
5239fb91463SBjoern A. Zeeb #endif
5249fb91463SBjoern A. Zeeb 
5259fb91463SBjoern A. Zeeb #if defined(LKPI_80211_VHT)
5269fb91463SBjoern A. Zeeb static void
52762d51a43SBjoern A. Zeeb lkpi_sta_sync_vht_from_ni(struct ieee80211_vif *vif, struct ieee80211_sta *sta,
52862d51a43SBjoern A. Zeeb     struct ieee80211_node *ni)
5299fb91463SBjoern A. Zeeb {
5309df0d1f3SBjoern A. Zeeb 	enum ieee80211_sta_rx_bw bw;
531f9c7a07dSBjoern A. Zeeb 	uint32_t width;
532f9c7a07dSBjoern A. Zeeb 	int rx_nss;
533f9c7a07dSBjoern A. Zeeb 	uint16_t rx_mcs_map;
534f9c7a07dSBjoern A. Zeeb 	uint8_t mcs;
5359fb91463SBjoern A. Zeeb 
5365393cd34SBjoern A. Zeeb 	if ((ni->ni_flags & IEEE80211_NODE_VHT) == 0 ||
5375393cd34SBjoern A. Zeeb 	    !IEEE80211_IS_CHAN_VHT_5GHZ(ni->ni_chan)) {
538f9c7a07dSBjoern A. Zeeb 		sta->deflink.vht_cap.vht_supported = false;
5399fb91463SBjoern A. Zeeb 		return;
540f9c7a07dSBjoern A. Zeeb 	}
5419fb91463SBjoern A. Zeeb 
542f9c7a07dSBjoern A. Zeeb 	sta->deflink.vht_cap.vht_supported = true;
543f9c7a07dSBjoern A. Zeeb 
544f9c7a07dSBjoern A. Zeeb 	sta->deflink.vht_cap.cap = ni->ni_vhtcap;
545f9c7a07dSBjoern A. Zeeb 	sta->deflink.vht_cap.vht_mcs = ni->ni_vht_mcsinfo;
546f9c7a07dSBjoern A. Zeeb 
5473e022a91SBjoern A. Zeeb 	/*
5483e022a91SBjoern A. Zeeb 	 * If VHT20/40 are selected do not update the bandwidth
5493e022a91SBjoern A. Zeeb 	 * from HT but stya on VHT.
5503e022a91SBjoern A. Zeeb 	 */
5513e022a91SBjoern A. Zeeb 	if (ni->ni_vht_chanwidth == IEEE80211_VHT_CHANWIDTH_USE_HT)
5523e022a91SBjoern A. Zeeb 		goto skip_bw;
5533e022a91SBjoern A. Zeeb 
5549df0d1f3SBjoern A. Zeeb 	bw = sta->deflink.bandwidth;
555f9c7a07dSBjoern A. Zeeb 	width = (sta->deflink.vht_cap.cap & IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_MASK);
556f9c7a07dSBjoern A. Zeeb 	switch (width) {
5579df0d1f3SBjoern A. Zeeb 	/* Deprecated. */
558f9c7a07dSBjoern A. Zeeb 	case IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ:
559f9c7a07dSBjoern A. Zeeb 	case IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ:
5609df0d1f3SBjoern A. Zeeb 		bw = IEEE80211_STA_RX_BW_160;
561f9c7a07dSBjoern A. Zeeb 		break;
562f9c7a07dSBjoern A. Zeeb 	default:
563f9c7a07dSBjoern A. Zeeb 		/* Check if we do support 160Mhz somehow after all. */
564f9c7a07dSBjoern A. Zeeb 		if ((sta->deflink.vht_cap.cap & IEEE80211_VHT_CAP_EXT_NSS_BW_MASK) != 0)
5659df0d1f3SBjoern A. Zeeb 			bw = IEEE80211_STA_RX_BW_160;
566f9c7a07dSBjoern A. Zeeb 		else
5679df0d1f3SBjoern A. Zeeb 			bw = IEEE80211_STA_RX_BW_80;
5689fb91463SBjoern A. Zeeb 	}
5699df0d1f3SBjoern A. Zeeb 	/*
5709df0d1f3SBjoern A. Zeeb 	 * While we can set what is possibly supported we also need to be
5719df0d1f3SBjoern A. Zeeb 	 * on a channel which supports that bandwidth; e.g., we can support
5729df0d1f3SBjoern A. Zeeb 	 * VHT160 but the AP only does VHT80.
5739df0d1f3SBjoern A. Zeeb 	 * Further ni_chan will also have filtered out what we disabled
5749df0d1f3SBjoern A. Zeeb 	 * by configuration.
5759df0d1f3SBjoern A. Zeeb 	 * Once net80211 channel selection is fixed for 802.11-2020 and
5769df0d1f3SBjoern A. Zeeb 	 * VHT160 we can possibly spare ourselves the above.
5779df0d1f3SBjoern A. Zeeb 	 */
5789df0d1f3SBjoern A. Zeeb 	if (bw == IEEE80211_STA_RX_BW_160 &&
5799df0d1f3SBjoern A. Zeeb 	    !IEEE80211_IS_CHAN_VHT160(ni->ni_chan) &&
5809df0d1f3SBjoern A. Zeeb 	    !IEEE80211_IS_CHAN_VHT80P80(ni->ni_chan))
5819df0d1f3SBjoern A. Zeeb 		bw = IEEE80211_STA_RX_BW_80;
5829df0d1f3SBjoern A. Zeeb 	if (bw == IEEE80211_STA_RX_BW_80 &&
5839df0d1f3SBjoern A. Zeeb 	    !IEEE80211_IS_CHAN_VHT80(ni->ni_chan))
5849df0d1f3SBjoern A. Zeeb 		bw = sta->deflink.bandwidth;
5859df0d1f3SBjoern A. Zeeb 	sta->deflink.bandwidth = bw;
5863e022a91SBjoern A. Zeeb skip_bw:
587f9c7a07dSBjoern A. Zeeb 
588f9c7a07dSBjoern A. Zeeb 	rx_nss = 0;
589f9c7a07dSBjoern A. Zeeb 	rx_mcs_map = sta->deflink.vht_cap.vht_mcs.rx_mcs_map;
590f9c7a07dSBjoern A. Zeeb 	for (int i = 7; i >= 0; i--) {
591f9c7a07dSBjoern A. Zeeb 		mcs = rx_mcs_map >> (2 * i);
592f9c7a07dSBjoern A. Zeeb 		mcs &= 0x3;
593f9c7a07dSBjoern A. Zeeb 		if (mcs != IEEE80211_VHT_MCS_NOT_SUPPORTED) {
594f9c7a07dSBjoern A. Zeeb 			rx_nss = i + 1;
595f9c7a07dSBjoern A. Zeeb 			break;
596f9c7a07dSBjoern A. Zeeb 		}
597f9c7a07dSBjoern A. Zeeb 	}
598f9c7a07dSBjoern A. Zeeb 	if (rx_nss > 0)
599f9c7a07dSBjoern A. Zeeb 		sta->deflink.rx_nss = rx_nss;
600f9c7a07dSBjoern A. Zeeb 
601f9c7a07dSBjoern A. Zeeb 	switch (sta->deflink.vht_cap.cap & IEEE80211_VHT_CAP_MAX_MPDU_MASK) {
602f9c7a07dSBjoern A. Zeeb 	case IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_11454:
603f9c7a07dSBjoern A. Zeeb 		sta->deflink.agg.max_amsdu_len = IEEE80211_MAX_MPDU_LEN_VHT_11454;
604f9c7a07dSBjoern A. Zeeb 		break;
605f9c7a07dSBjoern A. Zeeb 	case IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_7991:
606f9c7a07dSBjoern A. Zeeb 		sta->deflink.agg.max_amsdu_len = IEEE80211_MAX_MPDU_LEN_VHT_7991;
607f9c7a07dSBjoern A. Zeeb 		break;
608f9c7a07dSBjoern A. Zeeb 	case IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_3895:
609f9c7a07dSBjoern A. Zeeb 	default:
610f9c7a07dSBjoern A. Zeeb 		sta->deflink.agg.max_amsdu_len = IEEE80211_MAX_MPDU_LEN_VHT_3895;
611f9c7a07dSBjoern A. Zeeb 		break;
612f9c7a07dSBjoern A. Zeeb 	}
6139fb91463SBjoern A. Zeeb }
6149fb91463SBjoern A. Zeeb #endif
6159fb91463SBjoern A. Zeeb 
616d9f59799SBjoern A. Zeeb static void
61762d51a43SBjoern A. Zeeb lkpi_sta_sync_from_ni(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
61862d51a43SBjoern A. Zeeb     struct ieee80211_sta *sta, struct ieee80211_node *ni, bool updchnctx)
619f9c7a07dSBjoern A. Zeeb {
620f9c7a07dSBjoern A. Zeeb 
621f9c7a07dSBjoern A. Zeeb #if defined(LKPI_80211_HT)
62262d51a43SBjoern A. Zeeb 	lkpi_sta_sync_ht_from_ni(vif, sta, ni);
623f9c7a07dSBjoern A. Zeeb #endif
624f9c7a07dSBjoern A. Zeeb #if defined(LKPI_80211_VHT)
62562d51a43SBjoern A. Zeeb 	lkpi_sta_sync_vht_from_ni(vif, sta, ni);
626f9c7a07dSBjoern A. Zeeb #endif
62734c150ccSBjoern A. Zeeb 
62834c150ccSBjoern A. Zeeb 	/*
62934c150ccSBjoern A. Zeeb 	 * Ensure rx_nss is at least 1 as otherwise drivers run into
63034c150ccSBjoern A. Zeeb 	 * unexpected problems.
63134c150ccSBjoern A. Zeeb 	 */
63234c150ccSBjoern A. Zeeb 	sta->deflink.rx_nss = MAX(1, sta->deflink.rx_nss);
63334c150ccSBjoern A. Zeeb 
63462d51a43SBjoern A. Zeeb 	/*
63562d51a43SBjoern A. Zeeb 	 * We are also called from node allocation which net80211
63662d51a43SBjoern A. Zeeb 	 * can do even on `ifconfig down`; in that case the chanctx
63762d51a43SBjoern A. Zeeb 	 * may still be valid and we get a discrepancy between
63862d51a43SBjoern A. Zeeb 	 * sta and chanctx.  Thus do not try to update the chanctx
63962d51a43SBjoern A. Zeeb 	 * when called from lkpi_lsta_alloc().
64062d51a43SBjoern A. Zeeb 	 */
64162d51a43SBjoern A. Zeeb 	if (updchnctx)
64262d51a43SBjoern A. Zeeb 		lkpi_sync_chanctx_cw_from_rx_bw(hw, vif, sta);
643f9c7a07dSBjoern A. Zeeb }
644f9c7a07dSBjoern A. Zeeb 
645389265e3SBjoern A. Zeeb static uint8_t
646389265e3SBjoern A. Zeeb lkpi_get_max_rx_chains(struct ieee80211_node *ni)
647389265e3SBjoern A. Zeeb {
648389265e3SBjoern A. Zeeb 	uint8_t chains;
649389265e3SBjoern A. Zeeb #if defined(LKPI_80211_HT) || defined(LKPI_80211_VHT)
650389265e3SBjoern A. Zeeb 	struct lkpi_sta *lsta;
651389265e3SBjoern A. Zeeb 	struct ieee80211_sta *sta;
652389265e3SBjoern A. Zeeb 
653389265e3SBjoern A. Zeeb 	lsta = ni->ni_drv_data;
654389265e3SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
655389265e3SBjoern A. Zeeb #endif
656389265e3SBjoern A. Zeeb 
657389265e3SBjoern A. Zeeb 	chains = 1;
658389265e3SBjoern A. Zeeb #if defined(LKPI_80211_HT)
659389265e3SBjoern A. Zeeb 	IMPROVE("We should factor counting MCS/NSS out for sync and here");
660389265e3SBjoern A. Zeeb 	if (sta->deflink.ht_cap.ht_supported)
661389265e3SBjoern A. Zeeb 		chains = MAX(chains, sta->deflink.rx_nss);
662389265e3SBjoern A. Zeeb #endif
663389265e3SBjoern A. Zeeb 
664389265e3SBjoern A. Zeeb #if defined(LKPI_80211_VHT)
665389265e3SBjoern A. Zeeb 	if (sta->deflink.vht_cap.vht_supported)
666389265e3SBjoern A. Zeeb 		chains = MAX(chains, sta->deflink.rx_nss);
667389265e3SBjoern A. Zeeb #endif
668389265e3SBjoern A. Zeeb 
669389265e3SBjoern A. Zeeb 	return (chains);
670389265e3SBjoern A. Zeeb }
671389265e3SBjoern A. Zeeb 
672f9c7a07dSBjoern A. Zeeb static void
67367674c1cSBjoern A. Zeeb lkpi_lsta_dump(struct lkpi_sta *lsta, struct ieee80211_node *ni,
67467674c1cSBjoern A. Zeeb     const char *_f, int _l)
675d9f59799SBjoern A. Zeeb {
676d9f59799SBjoern A. Zeeb 
6779d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
6789d9ba2b7SBjoern A. Zeeb 	if ((linuxkpi_debug_80211 & D80211_TRACE_STA) == 0)
679d9f59799SBjoern A. Zeeb 		return;
680d9f59799SBjoern A. Zeeb 	if (lsta == NULL)
681d9f59799SBjoern A. Zeeb 		return;
682d9f59799SBjoern A. Zeeb 
683d9f59799SBjoern A. Zeeb 	printf("%s:%d lsta %p ni %p sta %p\n",
68467674c1cSBjoern A. Zeeb 	    _f, _l, lsta, ni, &lsta->sta);
68567674c1cSBjoern A. Zeeb 	if (ni != NULL)
68667674c1cSBjoern A. Zeeb 		ieee80211_dump_node(NULL, ni);
687d9f59799SBjoern A. Zeeb 	printf("\ttxq_task txq len %d mtx\n", mbufq_len(&lsta->txq));
688d9f59799SBjoern A. Zeeb 	printf("\tkc %p state %d added_to_drv %d in_mgd %d\n",
68911db70b6SBjoern A. Zeeb 		&lsta->kc[0], lsta->state, lsta->added_to_drv, lsta->in_mgd);
6909d9ba2b7SBjoern A. Zeeb #endif
691d9f59799SBjoern A. Zeeb }
692d9f59799SBjoern A. Zeeb 
693d9f59799SBjoern A. Zeeb static void
694d9f59799SBjoern A. Zeeb lkpi_lsta_remove(struct lkpi_sta *lsta, struct lkpi_vif *lvif)
695d9f59799SBjoern A. Zeeb {
696d9f59799SBjoern A. Zeeb 
697cd0fcf9fSBjoern A. Zeeb 	lockdep_assert_wiphy(lsta->hw->wiphy);
698d9f59799SBjoern A. Zeeb 
699a8f735a6SBjoern A. Zeeb 	KASSERT(!list_empty(&lsta->lsta_list),
700a8f735a6SBjoern A. Zeeb 	    ("%s: lsta %p ni %p\n", __func__, lsta, lsta->ni));
701a8f735a6SBjoern A. Zeeb 	list_del_init(&lsta->lsta_list);
702d9f59799SBjoern A. Zeeb }
703d9f59799SBjoern A. Zeeb 
7044f61ef8bSBjoern A. Zeeb static struct lkpi_sta *
7054f61ef8bSBjoern A. Zeeb lkpi_lsta_alloc(struct ieee80211vap *vap, const uint8_t mac[IEEE80211_ADDR_LEN],
7064f61ef8bSBjoern A. Zeeb     struct ieee80211_hw *hw, struct ieee80211_node *ni)
7074f61ef8bSBjoern A. Zeeb {
7084f61ef8bSBjoern A. Zeeb 	struct lkpi_sta *lsta;
7094f61ef8bSBjoern A. Zeeb 	struct lkpi_vif *lvif;
7104f61ef8bSBjoern A. Zeeb 	struct ieee80211_vif *vif;
7114f61ef8bSBjoern A. Zeeb 	struct ieee80211_sta *sta;
712b6b352e4SBjoern A. Zeeb 	int band, i, tid;
7134f61ef8bSBjoern A. Zeeb 
7144f61ef8bSBjoern A. Zeeb 	lsta = malloc(sizeof(*lsta) + hw->sta_data_size, M_LKPI80211,
7154f61ef8bSBjoern A. Zeeb 	    M_NOWAIT | M_ZERO);
7164f61ef8bSBjoern A. Zeeb 	if (lsta == NULL)
7174f61ef8bSBjoern A. Zeeb 		return (NULL);
7184f61ef8bSBjoern A. Zeeb 
719a8f735a6SBjoern A. Zeeb 	lsta->hw = hw;
7204f61ef8bSBjoern A. Zeeb 	lsta->added_to_drv = false;
7214f61ef8bSBjoern A. Zeeb 	lsta->state = IEEE80211_STA_NOTEXIST;
7224f61ef8bSBjoern A. Zeeb 	/*
7230936c648SBjoern A. Zeeb 	 * Link the ni to the lsta here without taking a reference.
7240936c648SBjoern A. Zeeb 	 * For one we would have to take the reference in node_init()
7250936c648SBjoern A. Zeeb 	 * as ieee80211_alloc_node() will initialise the refcount after us.
7260936c648SBjoern A. Zeeb 	 * For the other a ni and an lsta are 1:1 mapped and always together
7270936c648SBjoern A. Zeeb 	 * from [ic_]node_alloc() to [ic_]node_free() so we are essentally
7280936c648SBjoern A. Zeeb 	 * using the ni references for the lsta as well despite it being
7290936c648SBjoern A. Zeeb 	 * two separate allocations.
7304f61ef8bSBjoern A. Zeeb 	 */
7310936c648SBjoern A. Zeeb 	lsta->ni = ni;
7324f61ef8bSBjoern A. Zeeb 	/* The back-pointer "drv_data" to net80211_node let's us get lsta. */
7334f61ef8bSBjoern A. Zeeb 	ni->ni_drv_data = lsta;
7344f61ef8bSBjoern A. Zeeb 
7354f61ef8bSBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
7364f61ef8bSBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
7374f61ef8bSBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
7384f61ef8bSBjoern A. Zeeb 
7394f61ef8bSBjoern A. Zeeb 	IEEE80211_ADDR_COPY(sta->addr, mac);
740b6b352e4SBjoern A. Zeeb 
741b6b352e4SBjoern A. Zeeb 	/* TXQ */
7424f61ef8bSBjoern A. Zeeb 	for (tid = 0; tid < nitems(sta->txq); tid++) {
7434f61ef8bSBjoern A. Zeeb 		struct lkpi_txq *ltxq;
7444f61ef8bSBjoern A. Zeeb 
745d0d29110SBjoern A. Zeeb 		/* We are not limiting ourselves to hw.queues here. */
7464f61ef8bSBjoern A. Zeeb 		ltxq = malloc(sizeof(*ltxq) + hw->txq_data_size,
7474f61ef8bSBjoern A. Zeeb 		    M_LKPI80211, M_NOWAIT | M_ZERO);
7484f61ef8bSBjoern A. Zeeb 		if (ltxq == NULL)
7494f61ef8bSBjoern A. Zeeb 			goto cleanup;
7504f61ef8bSBjoern A. Zeeb 		/* iwlwifi//mvm/sta.c::tid_to_mac80211_ac[] */
7514f61ef8bSBjoern A. Zeeb 		if (tid == IEEE80211_NUM_TIDS) {
752d0d29110SBjoern A. Zeeb 			if (!ieee80211_hw_check(hw, STA_MMPDU_TXQ)) {
753d0d29110SBjoern A. Zeeb 				free(ltxq, M_LKPI80211);
754d0d29110SBjoern A. Zeeb 				continue;
755d0d29110SBjoern A. Zeeb 			}
756d0d29110SBjoern A. Zeeb 			IMPROVE("AP/if we support non-STA here too");
7574f61ef8bSBjoern A. Zeeb 			ltxq->txq.ac = IEEE80211_AC_VO;
7584f61ef8bSBjoern A. Zeeb 		} else {
759fb3c249eSBjoern A. Zeeb 			ltxq->txq.ac = ieee80211e_up_to_ac[tid & 7];
7604f61ef8bSBjoern A. Zeeb 		}
761d0d29110SBjoern A. Zeeb 		ltxq->seen_dequeue = false;
7620cbcfa19SBjoern A. Zeeb 		ltxq->stopped = false;
763d0d29110SBjoern A. Zeeb 		ltxq->txq.vif = vif;
7644f61ef8bSBjoern A. Zeeb 		ltxq->txq.tid = tid;
7654f61ef8bSBjoern A. Zeeb 		ltxq->txq.sta = sta;
7660cbcfa19SBjoern A. Zeeb 		TAILQ_ELEM_INIT(ltxq, txq_entry);
767d0d29110SBjoern A. Zeeb 		skb_queue_head_init(&ltxq->skbq);
768eac3646fSBjoern A. Zeeb 		LKPI_80211_LTXQ_LOCK_INIT(ltxq);
7694f61ef8bSBjoern A. Zeeb 		sta->txq[tid] = &ltxq->txq;
7704f61ef8bSBjoern A. Zeeb 	}
7714f61ef8bSBjoern A. Zeeb 
772b6b352e4SBjoern A. Zeeb 	/* Deflink information. */
773b6b352e4SBjoern A. Zeeb 	for (band = 0; band < NUM_NL80211_BANDS; band++) {
774b6b352e4SBjoern A. Zeeb 		struct ieee80211_supported_band *supband;
775b6b352e4SBjoern A. Zeeb 
776b6b352e4SBjoern A. Zeeb 		supband = hw->wiphy->bands[band];
777b6b352e4SBjoern A. Zeeb 		if (supband == NULL)
778b6b352e4SBjoern A. Zeeb 			continue;
779b6b352e4SBjoern A. Zeeb 
780b6b352e4SBjoern A. Zeeb 		for (i = 0; i < supband->n_bitrates; i++) {
78173cd1c5dSBjoern A. Zeeb 			switch (band) {
78273cd1c5dSBjoern A. Zeeb 			case NL80211_BAND_2GHZ:
78373cd1c5dSBjoern A. Zeeb 				switch (supband->bitrates[i].bitrate) {
78473cd1c5dSBjoern A. Zeeb 				case 240:	/* 11g only */
78573cd1c5dSBjoern A. Zeeb 				case 120:	/* 11g only */
78673cd1c5dSBjoern A. Zeeb 				case 110:
78773cd1c5dSBjoern A. Zeeb 				case 60:	/* 11g only */
78873cd1c5dSBjoern A. Zeeb 				case 55:
78973cd1c5dSBjoern A. Zeeb 				case 20:
79073cd1c5dSBjoern A. Zeeb 				case 10:
791b6b352e4SBjoern A. Zeeb 					sta->deflink.supp_rates[band] |= BIT(i);
79273cd1c5dSBjoern A. Zeeb 					break;
79373cd1c5dSBjoern A. Zeeb 				}
79473cd1c5dSBjoern A. Zeeb 				break;
79573cd1c5dSBjoern A. Zeeb 			case NL80211_BAND_5GHZ:
79673cd1c5dSBjoern A. Zeeb 				switch (supband->bitrates[i].bitrate) {
79773cd1c5dSBjoern A. Zeeb 				case 240:
79873cd1c5dSBjoern A. Zeeb 				case 120:
79973cd1c5dSBjoern A. Zeeb 				case 60:
80073cd1c5dSBjoern A. Zeeb 					sta->deflink.supp_rates[band] |= BIT(i);
80173cd1c5dSBjoern A. Zeeb 					break;
80273cd1c5dSBjoern A. Zeeb 				}
80373cd1c5dSBjoern A. Zeeb 				break;
80473cd1c5dSBjoern A. Zeeb 			}
805b6b352e4SBjoern A. Zeeb 		}
806b6b352e4SBjoern A. Zeeb 	}
8079fb91463SBjoern A. Zeeb 
8086ffb7bd4SBjoern A. Zeeb 	sta->deflink.smps_mode = IEEE80211_SMPS_OFF;
8099fb91463SBjoern A. Zeeb 	sta->deflink.bandwidth = IEEE80211_STA_RX_BW_20;
810f5a58c2dSMikhail Pchelin 	sta->deflink.rx_nss = 1;
8119fb91463SBjoern A. Zeeb 
81262d51a43SBjoern A. Zeeb 	lkpi_sta_sync_from_ni(hw, vif, sta, ni, false);
8139fb91463SBjoern A. Zeeb 
814f9c7a07dSBjoern A. Zeeb 	IMPROVE("he, eht, bw_320, ... smps_mode, ..");
815b6b352e4SBjoern A. Zeeb 
8166ffb7bd4SBjoern A. Zeeb 	/* Link configuration. */
8176ffb7bd4SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(sta->deflink.addr, sta->addr);
8186ffb7bd4SBjoern A. Zeeb 	sta->link[0] = &sta->deflink;
8196ffb7bd4SBjoern A. Zeeb 	for (i = 1; i < nitems(sta->link); i++) {
8206ffb7bd4SBjoern A. Zeeb 		IMPROVE("more links; only link[0] = deflink currently.");
8216ffb7bd4SBjoern A. Zeeb 	}
82271034267SBjoern A. Zeeb 	IMPROVE("11be");
82371034267SBjoern A. Zeeb 	sta->mlo = false;
8246ffb7bd4SBjoern A. Zeeb 
8254f61ef8bSBjoern A. Zeeb 	/* Deferred TX path. */
826fa4e4257SBjoern A. Zeeb 	LKPI_80211_LSTA_TXQ_LOCK_INIT(lsta);
8274f61ef8bSBjoern A. Zeeb 	TASK_INIT(&lsta->txq_task, 0, lkpi_80211_txq_task, lsta);
828832b8e98SBjoern A. Zeeb 	mbufq_init(&lsta->txq, 32 * NAPI_POLL_WEIGHT);
8290936c648SBjoern A. Zeeb 	lsta->txq_ready = true;
8304f61ef8bSBjoern A. Zeeb 
8314f61ef8bSBjoern A. Zeeb 	return (lsta);
8324f61ef8bSBjoern A. Zeeb 
8334f61ef8bSBjoern A. Zeeb cleanup:
834eac3646fSBjoern A. Zeeb 	for (; tid >= 0; tid--) {
835eac3646fSBjoern A. Zeeb 		struct lkpi_txq *ltxq;
836eac3646fSBjoern A. Zeeb 
837eac3646fSBjoern A. Zeeb 		ltxq = TXQ_TO_LTXQ(sta->txq[tid]);
838eac3646fSBjoern A. Zeeb 		LKPI_80211_LTXQ_LOCK_DESTROY(ltxq);
8394f61ef8bSBjoern A. Zeeb 		free(sta->txq[tid], M_LKPI80211);
840eac3646fSBjoern A. Zeeb 	}
8414f61ef8bSBjoern A. Zeeb 	free(lsta, M_LKPI80211);
8424f61ef8bSBjoern A. Zeeb 	return (NULL);
8434f61ef8bSBjoern A. Zeeb }
8444f61ef8bSBjoern A. Zeeb 
8450936c648SBjoern A. Zeeb static void
8460936c648SBjoern A. Zeeb lkpi_lsta_free(struct lkpi_sta *lsta, struct ieee80211_node *ni)
8470936c648SBjoern A. Zeeb {
8480936c648SBjoern A. Zeeb 	struct mbuf *m;
8490936c648SBjoern A. Zeeb 
8500936c648SBjoern A. Zeeb 	if (lsta->added_to_drv)
8510936c648SBjoern A. Zeeb 		panic("%s: Trying to free an lsta still known to firmware: "
8520936c648SBjoern A. Zeeb 		    "lsta %p ni %p added_to_drv %d\n",
8530936c648SBjoern A. Zeeb 		    __func__, lsta, ni, lsta->added_to_drv);
8540936c648SBjoern A. Zeeb 
8550936c648SBjoern A. Zeeb 	/* XXX-BZ free resources, ... */
8560936c648SBjoern A. Zeeb 	IMPROVE();
8570936c648SBjoern A. Zeeb 
858fa4e4257SBjoern A. Zeeb 	/* Drain sta->txq[] */
859fa4e4257SBjoern A. Zeeb 
860fa4e4257SBjoern A. Zeeb 	LKPI_80211_LSTA_TXQ_LOCK(lsta);
8610936c648SBjoern A. Zeeb 	lsta->txq_ready = false;
862fa4e4257SBjoern A. Zeeb 	LKPI_80211_LSTA_TXQ_UNLOCK(lsta);
8630936c648SBjoern A. Zeeb 
8640936c648SBjoern A. Zeeb 	/* Drain taskq, won't be restarted until added_to_drv is set again. */
8650936c648SBjoern A. Zeeb 	while (taskqueue_cancel(taskqueue_thread, &lsta->txq_task, NULL) != 0)
8660936c648SBjoern A. Zeeb 		taskqueue_drain(taskqueue_thread, &lsta->txq_task);
8670936c648SBjoern A. Zeeb 
8680936c648SBjoern A. Zeeb 	/* Flush mbufq (make sure to release ni refs!). */
8690936c648SBjoern A. Zeeb 	m = mbufq_dequeue(&lsta->txq);
8700936c648SBjoern A. Zeeb 	while (m != NULL) {
8710936c648SBjoern A. Zeeb 		struct ieee80211_node *nim;
8720936c648SBjoern A. Zeeb 
8730936c648SBjoern A. Zeeb 		nim = (struct ieee80211_node *)m->m_pkthdr.rcvif;
8740936c648SBjoern A. Zeeb 		if (nim != NULL)
8750936c648SBjoern A. Zeeb 			ieee80211_free_node(nim);
8760936c648SBjoern A. Zeeb 		m_freem(m);
8770936c648SBjoern A. Zeeb 		m = mbufq_dequeue(&lsta->txq);
8780936c648SBjoern A. Zeeb 	}
8790936c648SBjoern A. Zeeb 	KASSERT(mbufq_empty(&lsta->txq), ("%s: lsta %p has txq len %d != 0\n",
8800936c648SBjoern A. Zeeb 	    __func__, lsta, mbufq_len(&lsta->txq)));
881fa4e4257SBjoern A. Zeeb 	LKPI_80211_LSTA_TXQ_LOCK_DESTROY(lsta);
8820936c648SBjoern A. Zeeb 
8830936c648SBjoern A. Zeeb 	/* Remove lsta from vif; that is done by the state machine.  Should assert it? */
8840936c648SBjoern A. Zeeb 
8850936c648SBjoern A. Zeeb 	IMPROVE("Make sure everything is cleaned up.");
8860936c648SBjoern A. Zeeb 
8870936c648SBjoern A. Zeeb 	/* Free lsta. */
8880936c648SBjoern A. Zeeb 	lsta->ni = NULL;
8890936c648SBjoern A. Zeeb 	ni->ni_drv_data = NULL;
8900936c648SBjoern A. Zeeb 	free(lsta, M_LKPI80211);
8910936c648SBjoern A. Zeeb }
8920936c648SBjoern A. Zeeb 
8930936c648SBjoern A. Zeeb 
8946b4cac81SBjoern A. Zeeb static enum nl80211_band
8956b4cac81SBjoern A. Zeeb lkpi_net80211_chan_to_nl80211_band(struct ieee80211_channel *c)
8966b4cac81SBjoern A. Zeeb {
8976b4cac81SBjoern A. Zeeb 
8986b4cac81SBjoern A. Zeeb 	if (IEEE80211_IS_CHAN_2GHZ(c))
8996b4cac81SBjoern A. Zeeb 		return (NL80211_BAND_2GHZ);
9006b4cac81SBjoern A. Zeeb 	else if (IEEE80211_IS_CHAN_5GHZ(c))
9016b4cac81SBjoern A. Zeeb 		return (NL80211_BAND_5GHZ);
9026b4cac81SBjoern A. Zeeb #ifdef __notyet__
9036b4cac81SBjoern A. Zeeb 	else if ()
9046b4cac81SBjoern A. Zeeb 		return (NL80211_BAND_6GHZ);
9056b4cac81SBjoern A. Zeeb 	else if ()
9066b4cac81SBjoern A. Zeeb 		return (NL80211_BAND_60GHZ);
9076b4cac81SBjoern A. Zeeb 	else if (IEEE80211_IS_CHAN_GSM(c))
9086b4cac81SBjoern A. Zeeb 		return (NL80211_BAND_XXX);
9096b4cac81SBjoern A. Zeeb #endif
9106b4cac81SBjoern A. Zeeb 	else
9116b4cac81SBjoern A. Zeeb 		panic("%s: unsupported band. c %p flags %#x\n",
9126b4cac81SBjoern A. Zeeb 		    __func__, c, c->ic_flags);
9136b4cac81SBjoern A. Zeeb }
9146b4cac81SBjoern A. Zeeb 
9156b4cac81SBjoern A. Zeeb static uint32_t
9166b4cac81SBjoern A. Zeeb lkpi_nl80211_band_to_net80211_band(enum nl80211_band band)
9176b4cac81SBjoern A. Zeeb {
9186b4cac81SBjoern A. Zeeb 
9196b4cac81SBjoern A. Zeeb 	/* XXX-BZ this is just silly; net80211 is too convoluted. */
9206b4cac81SBjoern A. Zeeb 	/* IEEE80211_CHAN_A / _G / .. doesn't really work either. */
9216b4cac81SBjoern A. Zeeb 	switch (band) {
9226b4cac81SBjoern A. Zeeb 	case NL80211_BAND_2GHZ:
9236b4cac81SBjoern A. Zeeb 		return (IEEE80211_CHAN_2GHZ);
9246b4cac81SBjoern A. Zeeb 		break;
9256b4cac81SBjoern A. Zeeb 	case NL80211_BAND_5GHZ:
9266b4cac81SBjoern A. Zeeb 		return (IEEE80211_CHAN_5GHZ);
9276b4cac81SBjoern A. Zeeb 		break;
9286b4cac81SBjoern A. Zeeb 	case NL80211_BAND_60GHZ:
9296b4cac81SBjoern A. Zeeb 		break;
9306b4cac81SBjoern A. Zeeb 	case NL80211_BAND_6GHZ:
9316b4cac81SBjoern A. Zeeb 		break;
9326b4cac81SBjoern A. Zeeb 	default:
9336b4cac81SBjoern A. Zeeb 		panic("%s: unsupported band %u\n", __func__, band);
9346b4cac81SBjoern A. Zeeb 		break;
9356b4cac81SBjoern A. Zeeb 	}
9366b4cac81SBjoern A. Zeeb 
9376b4cac81SBjoern A. Zeeb 	IMPROVE();
9386b4cac81SBjoern A. Zeeb 	return (0x00);
9396b4cac81SBjoern A. Zeeb }
9406b4cac81SBjoern A. Zeeb 
941e3a0b120SBjoern A. Zeeb #if 0
9426b4cac81SBjoern A. Zeeb static enum ieee80211_ac_numbers
9436b4cac81SBjoern A. Zeeb lkpi_ac_net_to_l80211(int ac)
9446b4cac81SBjoern A. Zeeb {
9456b4cac81SBjoern A. Zeeb 
9466b4cac81SBjoern A. Zeeb 	switch (ac) {
9476b4cac81SBjoern A. Zeeb 	case WME_AC_VO:
9486b4cac81SBjoern A. Zeeb 		return (IEEE80211_AC_VO);
9496b4cac81SBjoern A. Zeeb 	case WME_AC_VI:
9506b4cac81SBjoern A. Zeeb 		return (IEEE80211_AC_VI);
9516b4cac81SBjoern A. Zeeb 	case WME_AC_BE:
9526b4cac81SBjoern A. Zeeb 		return (IEEE80211_AC_BE);
9536b4cac81SBjoern A. Zeeb 	case WME_AC_BK:
9546b4cac81SBjoern A. Zeeb 		return (IEEE80211_AC_BK);
9556b4cac81SBjoern A. Zeeb 	default:
9566b4cac81SBjoern A. Zeeb 		printf("%s: invalid WME_AC_* input: ac = %d\n", __func__, ac);
9576b4cac81SBjoern A. Zeeb 		return (IEEE80211_AC_BE);
9586b4cac81SBjoern A. Zeeb 	}
9596b4cac81SBjoern A. Zeeb }
960e3a0b120SBjoern A. Zeeb #endif
9616b4cac81SBjoern A. Zeeb 
9626b4cac81SBjoern A. Zeeb static enum nl80211_iftype
9636b4cac81SBjoern A. Zeeb lkpi_opmode_to_vif_type(enum ieee80211_opmode opmode)
9646b4cac81SBjoern A. Zeeb {
9656b4cac81SBjoern A. Zeeb 
9666b4cac81SBjoern A. Zeeb 	switch (opmode) {
9676b4cac81SBjoern A. Zeeb 	case IEEE80211_M_IBSS:
9686b4cac81SBjoern A. Zeeb 		return (NL80211_IFTYPE_ADHOC);
9696b4cac81SBjoern A. Zeeb 		break;
9706b4cac81SBjoern A. Zeeb 	case IEEE80211_M_STA:
9716b4cac81SBjoern A. Zeeb 		return (NL80211_IFTYPE_STATION);
9726b4cac81SBjoern A. Zeeb 		break;
9736b4cac81SBjoern A. Zeeb 	case IEEE80211_M_WDS:
9746b4cac81SBjoern A. Zeeb 		return (NL80211_IFTYPE_WDS);
9756b4cac81SBjoern A. Zeeb 		break;
9766b4cac81SBjoern A. Zeeb 	case IEEE80211_M_HOSTAP:
9776b4cac81SBjoern A. Zeeb 		return (NL80211_IFTYPE_AP);
9786b4cac81SBjoern A. Zeeb 		break;
9796b4cac81SBjoern A. Zeeb 	case IEEE80211_M_MONITOR:
9806b4cac81SBjoern A. Zeeb 		return (NL80211_IFTYPE_MONITOR);
9816b4cac81SBjoern A. Zeeb 		break;
9826b4cac81SBjoern A. Zeeb 	case IEEE80211_M_MBSS:
9836b4cac81SBjoern A. Zeeb 		return (NL80211_IFTYPE_MESH_POINT);
9846b4cac81SBjoern A. Zeeb 		break;
9856b4cac81SBjoern A. Zeeb 	case IEEE80211_M_AHDEMO:
9866b4cac81SBjoern A. Zeeb 		/* FALLTHROUGH */
9876b4cac81SBjoern A. Zeeb 	default:
9886b4cac81SBjoern A. Zeeb 		printf("ERROR: %s: unsupported opmode %d\n", __func__, opmode);
9896b4cac81SBjoern A. Zeeb 		/* FALLTHROUGH */
9906b4cac81SBjoern A. Zeeb 	}
9916b4cac81SBjoern A. Zeeb 	return (NL80211_IFTYPE_UNSPECIFIED);
9926b4cac81SBjoern A. Zeeb }
9936b4cac81SBjoern A. Zeeb 
994b35f6cd0SBjoern A. Zeeb #ifdef LKPI_80211_HW_CRYPTO
99512a511c8SBjoern A. Zeeb static const char *
99612a511c8SBjoern A. Zeeb lkpi_cipher_suite_to_name(uint32_t wlan_cipher_suite)
99712a511c8SBjoern A. Zeeb {
99812a511c8SBjoern A. Zeeb 	switch (wlan_cipher_suite) {
99912a511c8SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_WEP40:
100012a511c8SBjoern A. Zeeb 		return ("WEP40");
1001bf8c25f1SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_WEP104:
1002bf8c25f1SBjoern A. Zeeb 		return ("WEP104");
100312a511c8SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_TKIP:
100412a511c8SBjoern A. Zeeb 		return ("TKIP");
100512a511c8SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_CCMP:
100612a511c8SBjoern A. Zeeb 		return ("CCMP");
1007bf8c25f1SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_CCMP_256:
1008bf8c25f1SBjoern A. Zeeb 		return ("CCMP_256");
100912a511c8SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_GCMP:
101012a511c8SBjoern A. Zeeb 		return ("GCMP");
101112a511c8SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_GCMP_256:
101212a511c8SBjoern A. Zeeb 		return ("GCMP_256");
1013bf8c25f1SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_AES_CMAC:
1014bf8c25f1SBjoern A. Zeeb 		return ("AES_CMAC");
1015bf8c25f1SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_BIP_CMAC_256:
1016bf8c25f1SBjoern A. Zeeb 		return ("BIP_CMAC_256");
101712a511c8SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_BIP_GMAC_128:
101812a511c8SBjoern A. Zeeb 		return ("BIP_GMAC_128");
101912a511c8SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_BIP_GMAC_256:
102012a511c8SBjoern A. Zeeb 		return ("BIP_GMAC_256");
102112a511c8SBjoern A. Zeeb 	default:
102212a511c8SBjoern A. Zeeb 		return ("??");
102312a511c8SBjoern A. Zeeb 	}
102412a511c8SBjoern A. Zeeb }
102512a511c8SBjoern A. Zeeb 
10266b4cac81SBjoern A. Zeeb static uint32_t
1027bf8c25f1SBjoern A. Zeeb lkpi_l80211_to_net80211_cyphers(struct ieee80211com *ic,
1028bf8c25f1SBjoern A. Zeeb     uint32_t wlan_cipher_suite)
10296b4cac81SBjoern A. Zeeb {
10306b4cac81SBjoern A. Zeeb 	switch (wlan_cipher_suite) {
10316b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_WEP40:
10326b4cac81SBjoern A. Zeeb 		return (IEEE80211_CRYPTO_WEP);
1033bf8c25f1SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_WEP104:
1034bf8c25f1SBjoern A. Zeeb 		return (IEEE80211_CRYPTO_WEP);
10356b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_TKIP:
10366b4cac81SBjoern A. Zeeb 		return (IEEE80211_CRYPTO_TKIP);
10376b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_CCMP:
1038906521f8SBjoern A. Zeeb 		return (IEEE80211_CRYPTO_AES_CCM);
10396b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_CCMP_256:
1040bf8c25f1SBjoern A. Zeeb 		return (IEEE80211_CRYPTO_AES_CCM_256);
1041bf8c25f1SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_GCMP:
1042bf8c25f1SBjoern A. Zeeb 		return (IEEE80211_CRYPTO_AES_GCM_128);
1043bf8c25f1SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_GCMP_256:
1044bf8c25f1SBjoern A. Zeeb 		return (IEEE80211_CRYPTO_AES_GCM_256);
1045bf8c25f1SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_AES_CMAC:
1046bf8c25f1SBjoern A. Zeeb 		return (IEEE80211_CRYPTO_BIP_CMAC_128);
10476b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_BIP_CMAC_256:
1048bf8c25f1SBjoern A. Zeeb 		return (IEEE80211_CRYPTO_BIP_CMAC_256);
1049bf8c25f1SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_BIP_GMAC_128:
1050bf8c25f1SBjoern A. Zeeb 		return (IEEE80211_CRYPTO_BIP_GMAC_128);
1051bf8c25f1SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_BIP_GMAC_256:
1052bf8c25f1SBjoern A. Zeeb 		return (IEEE80211_CRYPTO_BIP_GMAC_256);
10536b4cac81SBjoern A. Zeeb 	default:
1054bf8c25f1SBjoern A. Zeeb 		ic_printf(ic, "%s: unknown WLAN Cipher Suite %#08x | %u (%s)\n",
105512a511c8SBjoern A. Zeeb 		    __func__,
105612a511c8SBjoern A. Zeeb 		    wlan_cipher_suite >> 8, wlan_cipher_suite & 0xff,
105712a511c8SBjoern A. Zeeb 		    lkpi_cipher_suite_to_name(wlan_cipher_suite));
10586b4cac81SBjoern A. Zeeb 		return (0);
10596b4cac81SBjoern A. Zeeb 	}
1060bf8c25f1SBjoern A. Zeeb }
10616b4cac81SBjoern A. Zeeb 
10626b4cac81SBjoern A. Zeeb static uint32_t
10636b4cac81SBjoern A. Zeeb lkpi_net80211_to_l80211_cipher_suite(uint32_t cipher, uint8_t keylen)
10646b4cac81SBjoern A. Zeeb {
10656b4cac81SBjoern A. Zeeb 
10666b4cac81SBjoern A. Zeeb 	switch (cipher) {
10676b4cac81SBjoern A. Zeeb 	case IEEE80211_CIPHER_WEP:
1068aaee0ed3SBjoern A. Zeeb 		if (keylen == (40/NBBY))
10696b4cac81SBjoern A. Zeeb 			return (WLAN_CIPHER_SUITE_WEP40);
1070aaee0ed3SBjoern A. Zeeb 		else if (keylen == (104/NBBY))
10716b4cac81SBjoern A. Zeeb 			return (WLAN_CIPHER_SUITE_WEP104);
1072aaee0ed3SBjoern A. Zeeb 		else {
1073aaee0ed3SBjoern A. Zeeb 			printf("%s: WEP with unsupported keylen %d\n",
1074aaee0ed3SBjoern A. Zeeb 			    __func__, keylen * NBBY);
1075aaee0ed3SBjoern A. Zeeb 			return (0);
1076aaee0ed3SBjoern A. Zeeb 		}
10776b4cac81SBjoern A. Zeeb 		break;
1078bf8c25f1SBjoern A. Zeeb 	case IEEE80211_CIPHER_TKIP:
1079bf8c25f1SBjoern A. Zeeb 		return (WLAN_CIPHER_SUITE_TKIP);
1080bf8c25f1SBjoern A. Zeeb 	case IEEE80211_CIPHER_AES_CCM:
1081bf8c25f1SBjoern A. Zeeb 		return (WLAN_CIPHER_SUITE_CCMP);
1082bf8c25f1SBjoern A. Zeeb 	case IEEE80211_CIPHER_AES_CCM_256:
1083bf8c25f1SBjoern A. Zeeb 		return (WLAN_CIPHER_SUITE_CCMP_256);
1084bf8c25f1SBjoern A. Zeeb 	case IEEE80211_CIPHER_AES_GCM_128:
1085bf8c25f1SBjoern A. Zeeb 		return (WLAN_CIPHER_SUITE_GCMP);
1086bf8c25f1SBjoern A. Zeeb 	case IEEE80211_CIPHER_AES_GCM_256:
1087bf8c25f1SBjoern A. Zeeb 		return (WLAN_CIPHER_SUITE_GCMP_256);
1088bf8c25f1SBjoern A. Zeeb 	case IEEE80211_CIPHER_BIP_CMAC_128:
1089bf8c25f1SBjoern A. Zeeb 		return (WLAN_CIPHER_SUITE_AES_CMAC);
1090bf8c25f1SBjoern A. Zeeb 	case IEEE80211_CIPHER_BIP_CMAC_256:
1091bf8c25f1SBjoern A. Zeeb 		return (WLAN_CIPHER_SUITE_BIP_CMAC_256);
1092bf8c25f1SBjoern A. Zeeb 	case IEEE80211_CIPHER_BIP_GMAC_128:
1093bf8c25f1SBjoern A. Zeeb 		return (WLAN_CIPHER_SUITE_BIP_GMAC_128);
1094bf8c25f1SBjoern A. Zeeb 	case IEEE80211_CIPHER_BIP_GMAC_256:
1095bf8c25f1SBjoern A. Zeeb 		return (WLAN_CIPHER_SUITE_BIP_GMAC_256);
1096bf8c25f1SBjoern A. Zeeb 
10976b4cac81SBjoern A. Zeeb 	case IEEE80211_CIPHER_AES_OCB:
10986b4cac81SBjoern A. Zeeb 	case IEEE80211_CIPHER_TKIPMIC:
1099bf8c25f1SBjoern A. Zeeb 		/*
1100bf8c25f1SBjoern A. Zeeb 		 * TKIP w/ hw MIC support
1101bf8c25f1SBjoern A. Zeeb 		 * (gone wrong; should really be a crypto flag in net80211).
1102bf8c25f1SBjoern A. Zeeb 		 */
11036b4cac81SBjoern A. Zeeb 	case IEEE80211_CIPHER_CKIP:
11046b4cac81SBjoern A. Zeeb 	case IEEE80211_CIPHER_NONE:
11056b4cac81SBjoern A. Zeeb 		printf("%s: unsupported cipher %#010x\n", __func__, cipher);
11066b4cac81SBjoern A. Zeeb 		break;
11076b4cac81SBjoern A. Zeeb 	default:
11086b4cac81SBjoern A. Zeeb 		printf("%s: unknown cipher %#010x\n", __func__, cipher);
11096b4cac81SBjoern A. Zeeb 	};
11106b4cac81SBjoern A. Zeeb 	return (0);
11116b4cac81SBjoern A. Zeeb }
11126b4cac81SBjoern A. Zeeb #endif
11136b4cac81SBjoern A. Zeeb 
11146b4cac81SBjoern A. Zeeb #ifdef __notyet__
11156b4cac81SBjoern A. Zeeb static enum ieee80211_sta_state
11166b4cac81SBjoern A. Zeeb lkpi_net80211_state_to_sta_state(enum ieee80211_state state)
11176b4cac81SBjoern A. Zeeb {
11186b4cac81SBjoern A. Zeeb 
11196b4cac81SBjoern A. Zeeb 	/*
11206b4cac81SBjoern A. Zeeb 	 * XXX-BZ The net80211 states are "try to ..", the lkpi8011 states are
11216b4cac81SBjoern A. Zeeb 	 * "done".  Also ASSOC/AUTHORIZED are both "RUN" then?
11226b4cac81SBjoern A. Zeeb 	 */
11236b4cac81SBjoern A. Zeeb 	switch (state) {
11246b4cac81SBjoern A. Zeeb 	case IEEE80211_S_INIT:
11256b4cac81SBjoern A. Zeeb 		return (IEEE80211_STA_NOTEXIST);
11266b4cac81SBjoern A. Zeeb 	case IEEE80211_S_SCAN:
11276b4cac81SBjoern A. Zeeb 		return (IEEE80211_STA_NONE);
11286b4cac81SBjoern A. Zeeb 	case IEEE80211_S_AUTH:
11296b4cac81SBjoern A. Zeeb 		return (IEEE80211_STA_AUTH);
11306b4cac81SBjoern A. Zeeb 	case IEEE80211_S_ASSOC:
11316b4cac81SBjoern A. Zeeb 		return (IEEE80211_STA_ASSOC);
11326b4cac81SBjoern A. Zeeb 	case IEEE80211_S_RUN:
11336b4cac81SBjoern A. Zeeb 		return (IEEE80211_STA_AUTHORIZED);
11346b4cac81SBjoern A. Zeeb 	case IEEE80211_S_CAC:
11356b4cac81SBjoern A. Zeeb 	case IEEE80211_S_CSA:
11366b4cac81SBjoern A. Zeeb 	case IEEE80211_S_SLEEP:
11376b4cac81SBjoern A. Zeeb 	default:
11386b4cac81SBjoern A. Zeeb 		UNIMPLEMENTED;
11396b4cac81SBjoern A. Zeeb 	};
11406b4cac81SBjoern A. Zeeb 
11416b4cac81SBjoern A. Zeeb 	return (IEEE80211_STA_NOTEXIST);
11426b4cac81SBjoern A. Zeeb }
11436b4cac81SBjoern A. Zeeb #endif
11446b4cac81SBjoern A. Zeeb 
11456b4cac81SBjoern A. Zeeb static struct linuxkpi_ieee80211_channel *
11466b4cac81SBjoern A. Zeeb lkpi_find_lkpi80211_chan(struct lkpi_hw *lhw,
11476b4cac81SBjoern A. Zeeb     struct ieee80211_channel *c)
11486b4cac81SBjoern A. Zeeb {
11496b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
11506b4cac81SBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel *channels;
11516b4cac81SBjoern A. Zeeb 	enum nl80211_band band;
11526b4cac81SBjoern A. Zeeb 	int i, nchans;
11536b4cac81SBjoern A. Zeeb 
11546b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
11556b4cac81SBjoern A. Zeeb 	band = lkpi_net80211_chan_to_nl80211_band(c);
11566b4cac81SBjoern A. Zeeb 	if (hw->wiphy->bands[band] == NULL)
11576b4cac81SBjoern A. Zeeb 		return (NULL);
11586b4cac81SBjoern A. Zeeb 
11596b4cac81SBjoern A. Zeeb 	nchans = hw->wiphy->bands[band]->n_channels;
11606b4cac81SBjoern A. Zeeb 	if (nchans <= 0)
11616b4cac81SBjoern A. Zeeb 		return (NULL);
11626b4cac81SBjoern A. Zeeb 
11636b4cac81SBjoern A. Zeeb 	channels = hw->wiphy->bands[band]->channels;
11646b4cac81SBjoern A. Zeeb 	for (i = 0; i < nchans; i++) {
11656b4cac81SBjoern A. Zeeb 		if (channels[i].hw_value == c->ic_ieee)
11666b4cac81SBjoern A. Zeeb 			return (&channels[i]);
11676b4cac81SBjoern A. Zeeb 	}
11686b4cac81SBjoern A. Zeeb 
11696b4cac81SBjoern A. Zeeb 	return (NULL);
11706b4cac81SBjoern A. Zeeb }
11716b4cac81SBjoern A. Zeeb 
11722ac8a218SBjoern A. Zeeb #if 0
11736b4cac81SBjoern A. Zeeb static struct linuxkpi_ieee80211_channel *
11746b4cac81SBjoern A. Zeeb lkpi_get_lkpi80211_chan(struct ieee80211com *ic, struct ieee80211_node *ni)
11756b4cac81SBjoern A. Zeeb {
11766b4cac81SBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel *chan;
11776b4cac81SBjoern A. Zeeb 	struct ieee80211_channel *c;
11786b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
11796b4cac81SBjoern A. Zeeb 
11806b4cac81SBjoern A. Zeeb 	chan = NULL;
11816b4cac81SBjoern A. Zeeb 	if (ni != NULL && ni->ni_chan != IEEE80211_CHAN_ANYC)
11826b4cac81SBjoern A. Zeeb 		c = ni->ni_chan;
11836b4cac81SBjoern A. Zeeb 	else if (ic->ic_bsschan != IEEE80211_CHAN_ANYC)
11846b4cac81SBjoern A. Zeeb 		c = ic->ic_bsschan;
11856b4cac81SBjoern A. Zeeb 	else if (ic->ic_curchan != IEEE80211_CHAN_ANYC)
11866b4cac81SBjoern A. Zeeb 		c = ic->ic_curchan;
11876b4cac81SBjoern A. Zeeb 	else
11886b4cac81SBjoern A. Zeeb 		c = NULL;
11896b4cac81SBjoern A. Zeeb 
11906b4cac81SBjoern A. Zeeb 	if (c != NULL && c != IEEE80211_CHAN_ANYC) {
11916b4cac81SBjoern A. Zeeb 		lhw = ic->ic_softc;
11926b4cac81SBjoern A. Zeeb 		chan = lkpi_find_lkpi80211_chan(lhw, c);
11936b4cac81SBjoern A. Zeeb 	}
11946b4cac81SBjoern A. Zeeb 
11956b4cac81SBjoern A. Zeeb 	return (chan);
11966b4cac81SBjoern A. Zeeb }
11972ac8a218SBjoern A. Zeeb #endif
11986b4cac81SBjoern A. Zeeb 
11992e183d99SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *
12002e183d99SBjoern A. Zeeb linuxkpi_ieee80211_get_channel(struct wiphy *wiphy, uint32_t freq)
12012e183d99SBjoern A. Zeeb {
12022e183d99SBjoern A. Zeeb 	enum nl80211_band band;
12032e183d99SBjoern A. Zeeb 
12042e183d99SBjoern A. Zeeb 	for (band = 0; band < NUM_NL80211_BANDS; band++) {
12052e183d99SBjoern A. Zeeb 		struct ieee80211_supported_band *supband;
12062e183d99SBjoern A. Zeeb 		struct linuxkpi_ieee80211_channel *channels;
12072e183d99SBjoern A. Zeeb 		int i;
12082e183d99SBjoern A. Zeeb 
12092e183d99SBjoern A. Zeeb 		supband = wiphy->bands[band];
12102e183d99SBjoern A. Zeeb 		if (supband == NULL || supband->n_channels == 0)
12112e183d99SBjoern A. Zeeb 			continue;
12122e183d99SBjoern A. Zeeb 
12132e183d99SBjoern A. Zeeb 		channels = supband->channels;
12142e183d99SBjoern A. Zeeb 		for (i = 0; i < supband->n_channels; i++) {
12152e183d99SBjoern A. Zeeb 			if (channels[i].center_freq == freq)
12162e183d99SBjoern A. Zeeb 				return (&channels[i]);
12172e183d99SBjoern A. Zeeb 		}
12182e183d99SBjoern A. Zeeb 	}
12192e183d99SBjoern A. Zeeb 
12202e183d99SBjoern A. Zeeb 	return (NULL);
12212e183d99SBjoern A. Zeeb }
12222e183d99SBjoern A. Zeeb 
1223b35f6cd0SBjoern A. Zeeb #ifdef LKPI_80211_HW_CRYPTO
12246b4cac81SBjoern A. Zeeb static int
122511db70b6SBjoern A. Zeeb lkpi_sta_del_keys(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
122611db70b6SBjoern A. Zeeb     struct lkpi_sta *lsta)
122711db70b6SBjoern A. Zeeb {
122811db70b6SBjoern A. Zeeb 	int error;
122911db70b6SBjoern A. Zeeb 
123011db70b6SBjoern A. Zeeb 	if (!lkpi_hwcrypto)
123111db70b6SBjoern A. Zeeb 		return (0);
123211db70b6SBjoern A. Zeeb 
123311db70b6SBjoern A. Zeeb 	lockdep_assert_wiphy(hw->wiphy);
123411db70b6SBjoern A. Zeeb 	ieee80211_ref_node(lsta->ni);
123511db70b6SBjoern A. Zeeb 
123611db70b6SBjoern A. Zeeb 	error = 0;
123711db70b6SBjoern A. Zeeb 	for (ieee80211_keyix keyix = 0; keyix < nitems(lsta->kc); keyix++) {
123811db70b6SBjoern A. Zeeb 		struct ieee80211_key_conf *kc;
123911db70b6SBjoern A. Zeeb 		int err;
124011db70b6SBjoern A. Zeeb 
124111db70b6SBjoern A. Zeeb 		if (lsta->kc[keyix] == NULL)
124211db70b6SBjoern A. Zeeb 			continue;
124311db70b6SBjoern A. Zeeb 		kc = lsta->kc[keyix];
124411db70b6SBjoern A. Zeeb 
1245a6f6329cSBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
1246a6f6329cSBjoern A. Zeeb 		if (linuxkpi_debug_80211 & D80211_TRACE_HW_CRYPTO)
124780386ed9SBjoern A. Zeeb 			ic_printf(lsta->ni->ni_ic, "%d %lu %s: running set_key cmd %d(%s) for "
1248a6f6329cSBjoern A. Zeeb 			    "sta %6D: keyidx %u hw_key_idx %u flags %b\n",
124980386ed9SBjoern A. Zeeb 			    curthread->td_tid, jiffies, __func__,
125080386ed9SBjoern A. Zeeb 			    DISABLE_KEY, "DISABLE", lsta->sta.addr, ":",
1251a6f6329cSBjoern A. Zeeb 			    kc->keyidx, kc->hw_key_idx, kc->flags, IEEE80211_KEY_FLAG_BITS);
1252a6f6329cSBjoern A. Zeeb #endif
1253a6f6329cSBjoern A. Zeeb 
125411db70b6SBjoern A. Zeeb 		err = lkpi_80211_mo_set_key(hw, DISABLE_KEY, vif,
125511db70b6SBjoern A. Zeeb 		    LSTA_TO_STA(lsta), kc);
125611db70b6SBjoern A. Zeeb 		if (err != 0) {
125780386ed9SBjoern A. Zeeb 			ic_printf(lsta->ni->ni_ic, "%d %lu %s: set_key cmd %d(%s) for "
125880386ed9SBjoern A. Zeeb 			    "sta %6D failed: %d\n", curthread->td_tid, jiffies, __func__,
125980386ed9SBjoern A. Zeeb 			    DISABLE_KEY, "DISABLE", lsta->sta.addr, ":", err);
126011db70b6SBjoern A. Zeeb 			error++;
126111db70b6SBjoern A. Zeeb 
126211db70b6SBjoern A. Zeeb 			/*
126311db70b6SBjoern A. Zeeb 			 * If we free the key here we will never be able to get it
126411db70b6SBjoern A. Zeeb 			 * removed from the driver/fw which will likely make us
126511db70b6SBjoern A. Zeeb 			 * crash (firmware).
126611db70b6SBjoern A. Zeeb 			 */
126711db70b6SBjoern A. Zeeb 			continue;
126811db70b6SBjoern A. Zeeb 		}
126911db70b6SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
127011db70b6SBjoern A. Zeeb 		if (linuxkpi_debug_80211 & D80211_TRACE_HW_CRYPTO)
127180386ed9SBjoern A. Zeeb 			ic_printf(lsta->ni->ni_ic, "%d %lu %s: set_key cmd %d(%s) for "
1272a6f6329cSBjoern A. Zeeb 			    "sta %6D succeeded: keyidx %u hw_key_idx %u flags %b\n",
127380386ed9SBjoern A. Zeeb 			    curthread->td_tid, jiffies, __func__,
127480386ed9SBjoern A. Zeeb 			    DISABLE_KEY, "DISABLE", lsta->sta.addr, ":",
1275a6f6329cSBjoern A. Zeeb 			    kc->keyidx, kc->hw_key_idx, kc->flags, IEEE80211_KEY_FLAG_BITS);
127611db70b6SBjoern A. Zeeb #endif
127711db70b6SBjoern A. Zeeb 
127811db70b6SBjoern A. Zeeb 		lsta->kc[keyix] = NULL;
127911db70b6SBjoern A. Zeeb 		free(kc, M_LKPI80211);
128011db70b6SBjoern A. Zeeb 	}
128111db70b6SBjoern A. Zeeb 	ieee80211_free_node(lsta->ni);
128211db70b6SBjoern A. Zeeb 	return (error);
128311db70b6SBjoern A. Zeeb }
128411db70b6SBjoern A. Zeeb 
1285aa294e8eSBjoern A. Zeeb /* XXX-BZ one day we should replace this iterating over VIFs, or node list? */
1286aa294e8eSBjoern A. Zeeb /* See also lkpi_sta_del_keys() these days. */
128711db70b6SBjoern A. Zeeb static int
1288aa294e8eSBjoern A. Zeeb lkpi_iv_key_delete(struct ieee80211vap *vap, const struct ieee80211_key *k)
12896b4cac81SBjoern A. Zeeb {
12906b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
12916b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
12926b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
12936b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
129411db70b6SBjoern A. Zeeb 	struct lkpi_sta *lsta;
12956b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
12966b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
12976b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
12986b4cac81SBjoern A. Zeeb 	struct ieee80211_key_conf *kc;
12996b4cac81SBjoern A. Zeeb 	int error;
13006b4cac81SBjoern A. Zeeb 
13016b4cac81SBjoern A. Zeeb 	ic = vap->iv_ic;
1302284af342SBjoern A. Zeeb 	lhw = ic->ic_softc;
1303284af342SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
1304284af342SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
1305284af342SBjoern A. Zeeb 
1306284af342SBjoern A. Zeeb 	/*
1307284af342SBjoern A. Zeeb 	 * Make sure we do not make it here without going through
1308284af342SBjoern A. Zeeb 	 * lkpi_iv_key_update_begin() first.
1309284af342SBjoern A. Zeeb 	 */
1310284af342SBjoern A. Zeeb 	lockdep_assert_wiphy(hw->wiphy);
1311284af342SBjoern A. Zeeb 
1312a6f6329cSBjoern A. Zeeb 	if (IEEE80211_KEY_UNDEFINED(k)) {
1313a6f6329cSBjoern A. Zeeb 		ic_printf(ic, "%s: vap %p key %p is undefined: %p %u\n",
1314a6f6329cSBjoern A. Zeeb 		    __func__, vap, k, k->wk_cipher, k->wk_keyix);
1315a6f6329cSBjoern A. Zeeb 		return (0);
1316a6f6329cSBjoern A. Zeeb 	}
13176b4cac81SBjoern A. Zeeb 
131811db70b6SBjoern A. Zeeb 	if (vap->iv_bss == NULL) {
131911db70b6SBjoern A. Zeeb 		ic_printf(ic, "%s: iv_bss %p for vap %p is NULL\n",
132011db70b6SBjoern A. Zeeb 		    __func__, vap->iv_bss, vap);
132111db70b6SBjoern A. Zeeb 		return (0);
132211db70b6SBjoern A. Zeeb 	}
1323a6f6329cSBjoern A. Zeeb 
132411db70b6SBjoern A. Zeeb 	ni = ieee80211_ref_node(vap->iv_bss);
132511db70b6SBjoern A. Zeeb 	lsta = ni->ni_drv_data;
132611db70b6SBjoern A. Zeeb 	if (lsta == NULL) {
132711db70b6SBjoern A. Zeeb 		ic_printf(ic, "%s: ni %p (%6D) with lsta NULL\n",
132811db70b6SBjoern A. Zeeb 		    __func__, ni, ni->ni_bssid, ":");
132911db70b6SBjoern A. Zeeb 		ieee80211_free_node(ni);
133011db70b6SBjoern A. Zeeb 		return (0);
133111db70b6SBjoern A. Zeeb 	}
133211db70b6SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
133311db70b6SBjoern A. Zeeb 
133411db70b6SBjoern A. Zeeb 	if (lsta->kc[k->wk_keyix] == NULL) {
133511db70b6SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
133611db70b6SBjoern A. Zeeb 		if (linuxkpi_debug_80211 & D80211_TRACE_HW_CRYPTO)
133780386ed9SBjoern A. Zeeb 			ic_printf(ic, "%d %lu %s: sta %6D and no key information, "
133811db70b6SBjoern A. Zeeb 			    "keyidx %u wk_macaddr %6D; returning success\n",
133980386ed9SBjoern A. Zeeb 			    curthread->td_tid, jiffies, __func__, sta->addr, ":",
134011db70b6SBjoern A. Zeeb 			    k->wk_keyix, k->wk_macaddr, ":");
134111db70b6SBjoern A. Zeeb #endif
134211db70b6SBjoern A. Zeeb 		ieee80211_free_node(ni);
134311db70b6SBjoern A. Zeeb 		return (1);
134411db70b6SBjoern A. Zeeb 	}
134511db70b6SBjoern A. Zeeb 	kc = lsta->kc[k->wk_keyix];
134611db70b6SBjoern A. Zeeb 
1347a6f6329cSBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
1348a6f6329cSBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_HW_CRYPTO)
134980386ed9SBjoern A. Zeeb 		ic_printf(ic, "%d %lu %s: running set_key cmd %d(%s) for sta %6D: "
135080386ed9SBjoern A. Zeeb 		    "keyidx %u hw_key_idx %u flags %b\n",
135180386ed9SBjoern A. Zeeb 		    curthread->td_tid, jiffies, __func__,
1352a6f6329cSBjoern A. Zeeb 		    DISABLE_KEY, "DISABLE", sta->addr, ":",
1353a6f6329cSBjoern A. Zeeb 		    kc->keyidx, kc->hw_key_idx, kc->flags, IEEE80211_KEY_FLAG_BITS);
1354a6f6329cSBjoern A. Zeeb #endif
1355a6f6329cSBjoern A. Zeeb 
1356a6f6329cSBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
135711db70b6SBjoern A. Zeeb 	error = lkpi_80211_mo_set_key(hw, DISABLE_KEY, vif, sta, kc);
135811db70b6SBjoern A. Zeeb 	if (error != 0) {
135980386ed9SBjoern A. Zeeb 		ic_printf(ic, "%d %lu %s: set_key cmd %d(%s) for sta %6D failed: %d\n",
136080386ed9SBjoern A. Zeeb 		    curthread->td_tid, jiffies, __func__,
136180386ed9SBjoern A. Zeeb 		    DISABLE_KEY, "DISABLE", sta->addr, ":", error);
136211db70b6SBjoern A. Zeeb 		error = 0;
136311db70b6SBjoern A. Zeeb 		goto out;
136411db70b6SBjoern A. Zeeb 	}
136511db70b6SBjoern A. Zeeb 
136611db70b6SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
136711db70b6SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_HW_CRYPTO)
136880386ed9SBjoern A. Zeeb 		ic_printf(ic, "%d %lu %s: set_key cmd %d(%s) for sta %6D succeeded: "
136980386ed9SBjoern A. Zeeb 		    "keyidx %u hw_key_idx %u flags %b\n",
137080386ed9SBjoern A. Zeeb 		    curthread->td_tid, jiffies, __func__,
137111db70b6SBjoern A. Zeeb 		    DISABLE_KEY, "DISABLE", sta->addr, ":",
1372a6f6329cSBjoern A. Zeeb 		    kc->keyidx, kc->hw_key_idx, kc->flags, IEEE80211_KEY_FLAG_BITS);
137311db70b6SBjoern A. Zeeb #endif
137411db70b6SBjoern A. Zeeb 	lsta->kc[k->wk_keyix] = NULL;
137511db70b6SBjoern A. Zeeb 	free(kc, M_LKPI80211);
137611db70b6SBjoern A. Zeeb 	error = 1;
137711db70b6SBjoern A. Zeeb out:
137811db70b6SBjoern A. Zeeb 	ieee80211_free_node(ni);
137911db70b6SBjoern A. Zeeb 	return (error);
138011db70b6SBjoern A. Zeeb }
138111db70b6SBjoern A. Zeeb 
138211db70b6SBjoern A. Zeeb static int
1383aa294e8eSBjoern A. Zeeb lkpi_iv_key_set(struct ieee80211vap *vap, const struct ieee80211_key *k)
138411db70b6SBjoern A. Zeeb {
138511db70b6SBjoern A. Zeeb 	struct ieee80211com *ic;
138611db70b6SBjoern A. Zeeb 	struct lkpi_hw *lhw;
138711db70b6SBjoern A. Zeeb 	struct ieee80211_hw *hw;
138811db70b6SBjoern A. Zeeb 	struct lkpi_vif *lvif;
138911db70b6SBjoern A. Zeeb 	struct lkpi_sta *lsta;
139011db70b6SBjoern A. Zeeb 	struct ieee80211_vif *vif;
139111db70b6SBjoern A. Zeeb 	struct ieee80211_sta *sta;
139211db70b6SBjoern A. Zeeb 	struct ieee80211_node *ni;
139311db70b6SBjoern A. Zeeb 	struct ieee80211_key_conf *kc;
139411db70b6SBjoern A. Zeeb 	uint32_t lcipher;
139592942717SBjoern A. Zeeb 	uint16_t exp_flags;
13964b9ae864SBjoern A. Zeeb 	uint8_t keylen;
139711db70b6SBjoern A. Zeeb 	int error;
139811db70b6SBjoern A. Zeeb 
139911db70b6SBjoern A. Zeeb 	ic = vap->iv_ic;
1400284af342SBjoern A. Zeeb 	lhw = ic->ic_softc;
1401284af342SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
1402284af342SBjoern A. Zeeb 
1403284af342SBjoern A. Zeeb 	/*
1404284af342SBjoern A. Zeeb 	 * Make sure we do not make it here without going through
1405284af342SBjoern A. Zeeb 	 * lkpi_iv_key_update_begin() first.
1406284af342SBjoern A. Zeeb 	 */
1407284af342SBjoern A. Zeeb 	lockdep_assert_wiphy(hw->wiphy);
1408284af342SBjoern A. Zeeb 
1409a6f6329cSBjoern A. Zeeb 	if (IEEE80211_KEY_UNDEFINED(k)) {
1410a6f6329cSBjoern A. Zeeb 		ic_printf(ic, "%s: vap %p key %p is undefined: %p %u\n",
1411a6f6329cSBjoern A. Zeeb 		    __func__, vap, k, k->wk_cipher, k->wk_keyix);
1412a6f6329cSBjoern A. Zeeb 		return (0);
1413a6f6329cSBjoern A. Zeeb 	}
141411db70b6SBjoern A. Zeeb 
141511db70b6SBjoern A. Zeeb 	if (vap->iv_bss == NULL) {
141611db70b6SBjoern A. Zeeb 		ic_printf(ic, "%s: iv_bss %p for vap %p is NULL\n",
141711db70b6SBjoern A. Zeeb 		    __func__, vap->iv_bss, vap);
141811db70b6SBjoern A. Zeeb 		return (0);
141911db70b6SBjoern A. Zeeb 	}
142011db70b6SBjoern A. Zeeb 	ni = ieee80211_ref_node(vap->iv_bss);
142111db70b6SBjoern A. Zeeb 	lsta = ni->ni_drv_data;
142211db70b6SBjoern A. Zeeb 	if (lsta == NULL) {
142311db70b6SBjoern A. Zeeb 		ic_printf(ic, "%s: ni %p (%6D) with lsta NULL\n",
142411db70b6SBjoern A. Zeeb 		    __func__, ni, ni->ni_bssid, ":");
142511db70b6SBjoern A. Zeeb 		ieee80211_free_node(ni);
142611db70b6SBjoern A. Zeeb 		return (0);
142711db70b6SBjoern A. Zeeb 	}
142811db70b6SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
142911db70b6SBjoern A. Zeeb 
14304b9ae864SBjoern A. Zeeb 	keylen = k->wk_keylen;
14314b9ae864SBjoern A. Zeeb 	lcipher = lkpi_net80211_to_l80211_cipher_suite(
14324b9ae864SBjoern A. Zeeb 	    k->wk_cipher->ic_cipher, k->wk_keylen);
14334b9ae864SBjoern A. Zeeb 	switch (lcipher) {
14344b9ae864SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_TKIP:
14354b9ae864SBjoern A. Zeeb 		keylen += 2 * k->wk_cipher->ic_miclen;
14364b9ae864SBjoern A. Zeeb 		break;
143729ddd583SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_CCMP:
143829ddd583SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_GCMP:
143929ddd583SBjoern A. Zeeb 		break;
14404b9ae864SBjoern A. Zeeb 	default:
14414b9ae864SBjoern A. Zeeb 		ic_printf(ic, "%s: CIPHER SUITE %#x (%s) not supported\n",
14424b9ae864SBjoern A. Zeeb 		    __func__, lcipher, lkpi_cipher_suite_to_name(lcipher));
14434b9ae864SBjoern A. Zeeb 		IMPROVE();
14444b9ae864SBjoern A. Zeeb 		ieee80211_free_node(ni);
14454b9ae864SBjoern A. Zeeb 		return (0);
14464b9ae864SBjoern A. Zeeb 	}
14474b9ae864SBjoern A. Zeeb 
144811db70b6SBjoern A. Zeeb 	if (lsta->kc[k->wk_keyix] != NULL) {
144911db70b6SBjoern A. Zeeb 		IMPROVE("Still in firmware? Del first. Can we assert this cannot happen?");
145011db70b6SBjoern A. Zeeb 		ic_printf(ic, "%s: sta %6D found with key information\n",
145111db70b6SBjoern A. Zeeb 		    __func__, sta->addr, ":");
145211db70b6SBjoern A. Zeeb 		kc = lsta->kc[k->wk_keyix];
145311db70b6SBjoern A. Zeeb 		lsta->kc[k->wk_keyix] = NULL;
145411db70b6SBjoern A. Zeeb 		free(kc, M_LKPI80211);
145511db70b6SBjoern A. Zeeb 		kc = NULL;	/* safeguard */
145611db70b6SBjoern A. Zeeb 	}
145711db70b6SBjoern A. Zeeb 
14584b9ae864SBjoern A. Zeeb 	kc = malloc(sizeof(*kc) + keylen, M_LKPI80211, M_WAITOK | M_ZERO);
145911db70b6SBjoern A. Zeeb 	kc->_k = k;		/* Save the pointer to net80211. */
146011db70b6SBjoern A. Zeeb 	kc->cipher = lcipher;
14616b4cac81SBjoern A. Zeeb 	kc->keyidx = k->wk_keyix;
14626b4cac81SBjoern A. Zeeb #if 0
14636b4cac81SBjoern A. Zeeb 	kc->hw_key_idx = /* set by hw and needs to be passed for TX */;
14646b4cac81SBjoern A. Zeeb #endif
14656b4cac81SBjoern A. Zeeb 	atomic64_set(&kc->tx_pn, k->wk_keytsc);
14666b4cac81SBjoern A. Zeeb 	kc->keylen = k->wk_keylen;
14676b4cac81SBjoern A. Zeeb 	memcpy(kc->key, k->wk_key, k->wk_keylen);
14686b4cac81SBjoern A. Zeeb 
146911db70b6SBjoern A. Zeeb 	if (k->wk_flags & (IEEE80211_KEY_XMIT | IEEE80211_KEY_RECV))
147011db70b6SBjoern A. Zeeb 		kc->flags |= IEEE80211_KEY_FLAG_PAIRWISE;
147111db70b6SBjoern A. Zeeb 	if (k->wk_flags & IEEE80211_KEY_GROUP)
147211db70b6SBjoern A. Zeeb 		kc->flags &= ~IEEE80211_KEY_FLAG_PAIRWISE;
147311db70b6SBjoern A. Zeeb 
14746b4cac81SBjoern A. Zeeb 	kc->iv_len = k->wk_cipher->ic_header;
14756b4cac81SBjoern A. Zeeb 	kc->icv_len = k->wk_cipher->ic_trailer;
147629ddd583SBjoern A. Zeeb 
147729ddd583SBjoern A. Zeeb 	switch (kc->cipher) {
14786b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_TKIP:
14794b9ae864SBjoern A. Zeeb 		memcpy(kc->key + NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY, k->wk_txmic, k->wk_cipher->ic_miclen);
14804b9ae864SBjoern A. Zeeb 		memcpy(kc->key + NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY, k->wk_rxmic, k->wk_cipher->ic_miclen);
148129ddd583SBjoern A. Zeeb 		break;
148229ddd583SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_CCMP:
148329ddd583SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_GCMP:
148492942717SBjoern A. Zeeb 		break;
14856b4cac81SBjoern A. Zeeb 	default:
148611db70b6SBjoern A. Zeeb 		/* currently UNREACH */
14876b4cac81SBjoern A. Zeeb 		IMPROVE();
148811db70b6SBjoern A. Zeeb 		break;
14896b4cac81SBjoern A. Zeeb 	};
149011db70b6SBjoern A. Zeeb 	lsta->kc[k->wk_keyix] = kc;
14916b4cac81SBjoern A. Zeeb 
1492a6f6329cSBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
1493a6f6329cSBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_HW_CRYPTO)
149480386ed9SBjoern A. Zeeb 		ic_printf(ic, "%d %lu %s: running set_key cmd %d(%s) for sta %6D: "
149580386ed9SBjoern A. Zeeb 		    "kc %p keyidx %u hw_key_idx %u keylen %u flags %b\n",
149680386ed9SBjoern A. Zeeb 		    curthread->td_tid, jiffies, __func__,
14974b9ae864SBjoern A. Zeeb 		    SET_KEY, "SET", sta->addr, ":", kc, kc->keyidx, kc->hw_key_idx,
14984b9ae864SBjoern A. Zeeb 		    kc->keylen, kc->flags, IEEE80211_KEY_FLAG_BITS);
1499a6f6329cSBjoern A. Zeeb #endif
1500a6f6329cSBjoern A. Zeeb 
1501a6f6329cSBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
1502a6f6329cSBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
150311db70b6SBjoern A. Zeeb 	error = lkpi_80211_mo_set_key(hw, SET_KEY, vif, sta, kc);
150411db70b6SBjoern A. Zeeb 	if (error != 0) {
150580386ed9SBjoern A. Zeeb 		ic_printf(ic, "%d %lu %s: set_key cmd %d(%s) for sta %6D failed: %d\n",
150680386ed9SBjoern A. Zeeb 		    curthread->td_tid, jiffies, __func__,
150780386ed9SBjoern A. Zeeb 		    SET_KEY, "SET", sta->addr, ":", error);
150811db70b6SBjoern A. Zeeb 		lsta->kc[k->wk_keyix] = NULL;
150911db70b6SBjoern A. Zeeb 		free(kc, M_LKPI80211);
151011db70b6SBjoern A. Zeeb 		ieee80211_free_node(ni);
151111db70b6SBjoern A. Zeeb 		return (0);
15126b4cac81SBjoern A. Zeeb 	}
15136b4cac81SBjoern A. Zeeb 
151411db70b6SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
151511db70b6SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_HW_CRYPTO)
151680386ed9SBjoern A. Zeeb 		ic_printf(ic, "%d %lu %s: set_key cmd %d(%s) for sta %6D succeeded: "
151780386ed9SBjoern A. Zeeb 		    "kc %p keyidx %u hw_key_idx %u flags %b\n",
151880386ed9SBjoern A. Zeeb 		    curthread->td_tid, jiffies, __func__,
151911db70b6SBjoern A. Zeeb 		    SET_KEY, "SET", sta->addr, ":",
1520a6f6329cSBjoern A. Zeeb 		    kc, kc->keyidx, kc->hw_key_idx, kc->flags, IEEE80211_KEY_FLAG_BITS);
152111db70b6SBjoern A. Zeeb #endif
152211db70b6SBjoern A. Zeeb 
152392942717SBjoern A. Zeeb 	exp_flags = 0;
152492942717SBjoern A. Zeeb 	switch (kc->cipher) {
152592942717SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_TKIP:
152692942717SBjoern A. Zeeb 		exp_flags = (IEEE80211_KEY_FLAG_PAIRWISE |
152792942717SBjoern A. Zeeb 			IEEE80211_KEY_FLAG_PUT_IV_SPACE |
152892942717SBjoern A. Zeeb 			IEEE80211_KEY_FLAG_GENERATE_MMIC |
152992942717SBjoern A. Zeeb 			IEEE80211_KEY_FLAG_PUT_MIC_SPACE);
153092942717SBjoern A. Zeeb #define	TKIP_INVAL_COMBINATION						\
153192942717SBjoern A. Zeeb      (IEEE80211_KEY_FLAG_PUT_MIC_SPACE|IEEE80211_KEY_FLAG_GENERATE_MMIC)
153292942717SBjoern A. Zeeb 		if ((kc->flags & TKIP_INVAL_COMBINATION) == TKIP_INVAL_COMBINATION) {
153392942717SBjoern A. Zeeb 			ic_printf(ic, "%s: SET_KEY for %s returned invalid "
153492942717SBjoern A. Zeeb 			    "combination %b\n", __func__,
153592942717SBjoern A. Zeeb 			    lkpi_cipher_suite_to_name(kc->cipher),
153692942717SBjoern A. Zeeb 			    kc->flags, IEEE80211_KEY_FLAG_BITS);
153792942717SBjoern A. Zeeb 		}
153892942717SBjoern A. Zeeb #undef	TKIP_INVAL_COMBINATION
153992942717SBjoern A. Zeeb #ifdef __notyet__
154092942717SBjoern A. Zeeb 		/* Do flags surgery; special see linuxkpi_ieee80211_ifattach(). */
154192942717SBjoern A. Zeeb 		if ((kc->flags & IEEE80211_KEY_FLAG_GENERATE_MMIC) != 0) {
154292942717SBjoern A. Zeeb 			k->wk_flags &= ~(IEEE80211_KEY_NOMICMGT|IEEE80211_KEY_NOMIC);
154392942717SBjoern A. Zeeb 			k->wk_flags |= IEEE80211_KEY_SWMIC;
154492942717SBjoern A. Zeeb 			ic->ic_cryptocaps &= ~IEEE80211_CRYPTO_TKIPMIC
154592942717SBjoern A. Zeeb 		}
154692942717SBjoern A. Zeeb #endif
154792942717SBjoern A. Zeeb 		break;
154892942717SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_CCMP:
154929ddd583SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_GCMP:
155092942717SBjoern A. Zeeb 		exp_flags = (IEEE80211_KEY_FLAG_PAIRWISE |
155192942717SBjoern A. Zeeb 		    IEEE80211_KEY_FLAG_PUT_IV_SPACE |
155292942717SBjoern A. Zeeb 		    IEEE80211_KEY_FLAG_GENERATE_IV |
155391716e8dSBjoern A. Zeeb 		    IEEE80211_KEY_FLAG_GENERATE_IV_MGMT |	/* Only needs IV geeration for MGMT frames. */
155491716e8dSBjoern A. Zeeb 		    IEEE80211_KEY_FLAG_SW_MGMT_TX);		/* MFP in software */
155592942717SBjoern A. Zeeb 		break;
155692942717SBjoern A. Zeeb 	}
155792942717SBjoern A. Zeeb 	if ((kc->flags & ~exp_flags) != 0)
155892942717SBjoern A. Zeeb 		ic_printf(ic, "%s: SET_KEY for %s returned unexpected key flags: "
155992942717SBjoern A. Zeeb 		    " %#06x & ~%#06x = %b\n", __func__,
156092942717SBjoern A. Zeeb 		    lkpi_cipher_suite_to_name(kc->cipher), kc->flags, exp_flags,
156192942717SBjoern A. Zeeb 		    (kc->flags & ~exp_flags), IEEE80211_KEY_FLAG_BITS);
156292942717SBjoern A. Zeeb 
156392942717SBjoern A. Zeeb #ifdef __notyet__
156492942717SBjoern A. Zeeb 	/* Do flags surgery. */
156592942717SBjoern A. Zeeb 	if ((kc->flags & IEEE80211_KEY_FLAG_GENERATE_IV_MGMT) == 0)
156692942717SBjoern A. Zeeb 		k->wk_flags |= IEEE80211_KEY_NOIVMGT;
156792942717SBjoern A. Zeeb 	if ((kc->flags & IEEE80211_KEY_FLAG_GENERATE_IV) == 0)
156892942717SBjoern A. Zeeb 		k->wk_flags |= IEEE80211_KEY_NOIV;
156992942717SBjoern A. Zeeb #endif
157092942717SBjoern A. Zeeb 
157111db70b6SBjoern A. Zeeb 	ieee80211_free_node(ni);
15726b4cac81SBjoern A. Zeeb 	return (1);
15736b4cac81SBjoern A. Zeeb }
15746b4cac81SBjoern A. Zeeb 
1575b8dfc3ecSBjoern A. Zeeb static void
1576b8dfc3ecSBjoern A. Zeeb lkpi_iv_key_update_begin(struct ieee80211vap *vap)
1577b8dfc3ecSBjoern A. Zeeb {
1578b8dfc3ecSBjoern A. Zeeb 	struct ieee80211_node_table *nt;
1579b8dfc3ecSBjoern A. Zeeb 	struct ieee80211com *ic;
1580b8dfc3ecSBjoern A. Zeeb 	struct lkpi_hw *lhw;
1581b8dfc3ecSBjoern A. Zeeb 	struct ieee80211_hw *hw;
1582b8dfc3ecSBjoern A. Zeeb 	struct lkpi_vif *lvif;
1583a6413bceSBjoern A. Zeeb 	struct ieee80211_node *ni;
1584a6165709SBjoern A. Zeeb 	bool icislocked, ntislocked;
1585b8dfc3ecSBjoern A. Zeeb 
1586b8dfc3ecSBjoern A. Zeeb 	ic = vap->iv_ic;
1587b8dfc3ecSBjoern A. Zeeb 	lhw = ic->ic_softc;
1588b8dfc3ecSBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
1589b8dfc3ecSBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
1590b8dfc3ecSBjoern A. Zeeb 	nt = &ic->ic_sta;
1591b8dfc3ecSBjoern A. Zeeb 
1592a6165709SBjoern A. Zeeb 	icislocked = IEEE80211_IS_LOCKED(ic);
1593a6165709SBjoern A. Zeeb 	ntislocked = IEEE80211_NODE_IS_LOCKED(nt);
1594b8dfc3ecSBjoern A. Zeeb 
1595b8dfc3ecSBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
1596b8dfc3ecSBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_HW_CRYPTO)
159780386ed9SBjoern A. Zeeb 		ic_printf(ic, "%d %lu %s: vap %p ic %p %slocked nt %p %slocked "
159880386ed9SBjoern A. Zeeb 		    "lvif ic_unlocked %d nt_unlocked %d\n",
159980386ed9SBjoern A. Zeeb 		    curthread->td_tid, jiffies, __func__, vap,
1600a6165709SBjoern A. Zeeb 		    ic, icislocked ? "" : "un", nt, ntislocked ? "" : "un",
1601a6165709SBjoern A. Zeeb 		    lvif->ic_unlocked, lvif->nt_unlocked);
1602b8dfc3ecSBjoern A. Zeeb #endif
1603b8dfc3ecSBjoern A. Zeeb 
1604a6413bceSBjoern A. Zeeb 	/*
1605a6413bceSBjoern A. Zeeb 	 * This is inconsistent net80211 locking to be fixed one day.
1606a6413bceSBjoern A. Zeeb 	 */
1607a6413bceSBjoern A. Zeeb 	/* Try to make sure the node does not go away while possibly unlocked. */
1608a6413bceSBjoern A. Zeeb 	ni = NULL;
1609a6413bceSBjoern A. Zeeb 	if (icislocked || ntislocked) {
1610a6413bceSBjoern A. Zeeb 		if (vap->iv_bss != NULL)
1611a6413bceSBjoern A. Zeeb 			ni = ieee80211_ref_node(vap->iv_bss);
1612a6413bceSBjoern A. Zeeb 	}
1613a6413bceSBjoern A. Zeeb 
1614a6165709SBjoern A. Zeeb 	if (icislocked)
1615a6165709SBjoern A. Zeeb 		IEEE80211_UNLOCK(ic);
1616a6165709SBjoern A. Zeeb 	if (ntislocked)
1617b8dfc3ecSBjoern A. Zeeb 		IEEE80211_NODE_UNLOCK(nt);
1618b8dfc3ecSBjoern A. Zeeb 
1619b8dfc3ecSBjoern A. Zeeb 	wiphy_lock(hw->wiphy);
1620b8dfc3ecSBjoern A. Zeeb 
1621a6413bceSBjoern A. Zeeb 	KASSERT(lvif->key_update_iv_bss == NULL, ("%s: key_update_iv_bss not NULL %p",
1622a6413bceSBjoern A. Zeeb 	    __func__, lvif->key_update_iv_bss));
1623a6413bceSBjoern A. Zeeb 	lvif->key_update_iv_bss = ni;
1624a6413bceSBjoern A. Zeeb 
1625b8dfc3ecSBjoern A. Zeeb 	/*
1626a6165709SBjoern A. Zeeb 	 * ic/nt_unlocked could be a bool given we are under the lock and there
1627b8dfc3ecSBjoern A. Zeeb 	 * must only be a single thread.
1628b8dfc3ecSBjoern A. Zeeb 	 * In case anything in the future disturbs the order the refcnt will
1629b8dfc3ecSBjoern A. Zeeb 	 * help us catching problems a lot easier.
1630b8dfc3ecSBjoern A. Zeeb 	 */
1631a6165709SBjoern A. Zeeb 	if (icislocked)
1632a6165709SBjoern A. Zeeb 		refcount_acquire(&lvif->ic_unlocked);
1633a6165709SBjoern A. Zeeb 	if (ntislocked)
1634b8dfc3ecSBjoern A. Zeeb 		refcount_acquire(&lvif->nt_unlocked);
1635db480c29SBjoern A. Zeeb 
1636db480c29SBjoern A. Zeeb 	/*
1637db480c29SBjoern A. Zeeb 	 * Stop the queues while doing key updates.
1638db480c29SBjoern A. Zeeb 	 */
1639db480c29SBjoern A. Zeeb 	ieee80211_stop_queues(hw);
1640b8dfc3ecSBjoern A. Zeeb }
1641b8dfc3ecSBjoern A. Zeeb 
1642b8dfc3ecSBjoern A. Zeeb static void
1643b8dfc3ecSBjoern A. Zeeb lkpi_iv_key_update_end(struct ieee80211vap *vap)
1644b8dfc3ecSBjoern A. Zeeb {
1645b8dfc3ecSBjoern A. Zeeb 	struct ieee80211_node_table *nt;
1646b8dfc3ecSBjoern A. Zeeb 	struct ieee80211com *ic;
1647b8dfc3ecSBjoern A. Zeeb 	struct lkpi_hw *lhw;
1648b8dfc3ecSBjoern A. Zeeb 	struct ieee80211_hw *hw;
1649b8dfc3ecSBjoern A. Zeeb 	struct lkpi_vif *lvif;
1650a6165709SBjoern A. Zeeb 	bool icislocked, ntislocked;
1651b8dfc3ecSBjoern A. Zeeb 
1652b8dfc3ecSBjoern A. Zeeb 	ic = vap->iv_ic;
1653b8dfc3ecSBjoern A. Zeeb 	lhw = ic->ic_softc;
1654b8dfc3ecSBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
1655b8dfc3ecSBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
1656b8dfc3ecSBjoern A. Zeeb 	nt = &ic->ic_sta;
1657b8dfc3ecSBjoern A. Zeeb 
1658db480c29SBjoern A. Zeeb 	/*
1659db480c29SBjoern A. Zeeb 	 * Re-enabled the queues after the key update.
1660db480c29SBjoern A. Zeeb 	 */
1661db480c29SBjoern A. Zeeb 	lkpi_ieee80211_wake_queues_locked(hw);
1662db480c29SBjoern A. Zeeb 
1663a6165709SBjoern A. Zeeb 	icislocked = IEEE80211_IS_LOCKED(ic);
1664a6165709SBjoern A. Zeeb 	MPASS(!icislocked);
1665a6165709SBjoern A. Zeeb 	ntislocked = IEEE80211_NODE_IS_LOCKED(nt);
1666a6165709SBjoern A. Zeeb 	MPASS(!ntislocked);
1667b8dfc3ecSBjoern A. Zeeb 
1668b8dfc3ecSBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
1669b8dfc3ecSBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_HW_CRYPTO)
167080386ed9SBjoern A. Zeeb 		ic_printf(ic, "%d %lu %s: vap %p ic %p %slocked nt %p %slocked "
167180386ed9SBjoern A. Zeeb 		    "lvif ic_unlocked %d nt_unlocked %d\n",
167280386ed9SBjoern A. Zeeb 		    curthread->td_tid, jiffies, __func__, vap,
1673a6165709SBjoern A. Zeeb 		    ic, icislocked ? "" : "un", nt, ntislocked ? "" : "un",
1674a6165709SBjoern A. Zeeb 		    lvif->ic_unlocked, lvif->nt_unlocked);
1675b8dfc3ecSBjoern A. Zeeb #endif
1676b8dfc3ecSBjoern A. Zeeb 
1677b8dfc3ecSBjoern A. Zeeb 	/*
1678b8dfc3ecSBjoern A. Zeeb 	 * Check under lock; see comment in lkpi_iv_key_update_begin().
1679b8dfc3ecSBjoern A. Zeeb 	 * In case the refcnt gets out of sync locking in net80211 will
1680b8dfc3ecSBjoern A. Zeeb 	 * quickly barf as well (trying to unlock a lock not held).
1681b8dfc3ecSBjoern A. Zeeb 	 */
1682a6165709SBjoern A. Zeeb 	icislocked = refcount_release_if_last(&lvif->ic_unlocked);
1683a6165709SBjoern A. Zeeb 	ntislocked = refcount_release_if_last(&lvif->nt_unlocked);
1684a6413bceSBjoern A. Zeeb 
1685a6413bceSBjoern A. Zeeb 	if (lvif->key_update_iv_bss != NULL) {
1686a6413bceSBjoern A. Zeeb 		ieee80211_free_node(lvif->key_update_iv_bss);
1687a6413bceSBjoern A. Zeeb 		lvif->key_update_iv_bss = NULL;
1688a6413bceSBjoern A. Zeeb 	}
1689a6413bceSBjoern A. Zeeb 
1690b8dfc3ecSBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
1691b8dfc3ecSBjoern A. Zeeb 
1692a6165709SBjoern A. Zeeb 	/*
1693a6165709SBjoern A. Zeeb 	 * This is inconsistent net80211 locking to be fixed one day.
1694a6165709SBjoern A. Zeeb 	 * ic before nt to avoid a LOR.
1695a6165709SBjoern A. Zeeb 	 */
1696a6165709SBjoern A. Zeeb 	if (icislocked)
1697a6165709SBjoern A. Zeeb 		IEEE80211_LOCK(ic);
1698a6165709SBjoern A. Zeeb 	if (ntislocked)
1699b8dfc3ecSBjoern A. Zeeb 		IEEE80211_NODE_LOCK(nt);
1700b8dfc3ecSBjoern A. Zeeb }
17016b4cac81SBjoern A. Zeeb #endif
17026b4cac81SBjoern A. Zeeb 
17036b4cac81SBjoern A. Zeeb static u_int
17046b4cac81SBjoern A. Zeeb lkpi_ic_update_mcast_copy(void *arg, struct sockaddr_dl *sdl, u_int cnt)
17056b4cac81SBjoern A. Zeeb {
17066b4cac81SBjoern A. Zeeb 	struct netdev_hw_addr_list *mc_list;
17076b4cac81SBjoern A. Zeeb 	struct netdev_hw_addr *addr;
17086b4cac81SBjoern A. Zeeb 
17096b4cac81SBjoern A. Zeeb 	KASSERT(arg != NULL && sdl != NULL, ("%s: arg %p sdl %p cnt %u\n",
17106b4cac81SBjoern A. Zeeb 	    __func__, arg, sdl, cnt));
17116b4cac81SBjoern A. Zeeb 
17126b4cac81SBjoern A. Zeeb 	mc_list = arg;
17136b4cac81SBjoern A. Zeeb 	/* If it is on the list already skip it. */
17146b4cac81SBjoern A. Zeeb 	netdev_hw_addr_list_for_each(addr, mc_list) {
17156b4cac81SBjoern A. Zeeb 		if (!memcmp(addr->addr, LLADDR(sdl), sdl->sdl_alen))
17166b4cac81SBjoern A. Zeeb 			return (0);
17176b4cac81SBjoern A. Zeeb 	}
17186b4cac81SBjoern A. Zeeb 
17196b4cac81SBjoern A. Zeeb 	addr = malloc(sizeof(*addr), M_LKPI80211, M_NOWAIT | M_ZERO);
17206b4cac81SBjoern A. Zeeb 	if (addr == NULL)
17216b4cac81SBjoern A. Zeeb 		return (0);
17226b4cac81SBjoern A. Zeeb 
17236b4cac81SBjoern A. Zeeb 	INIT_LIST_HEAD(&addr->addr_list);
17246b4cac81SBjoern A. Zeeb 	memcpy(addr->addr, LLADDR(sdl), sdl->sdl_alen);
17256b4cac81SBjoern A. Zeeb 	/* XXX this should be a netdev function? */
17266b4cac81SBjoern A. Zeeb 	list_add(&addr->addr_list, &mc_list->addr_list);
17276b4cac81SBjoern A. Zeeb 	mc_list->count++;
17286b4cac81SBjoern A. Zeeb 
17299d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
17309d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE)
17316b4cac81SBjoern A. Zeeb 		printf("%s:%d: mc_list count %d: added %6D\n",
17326b4cac81SBjoern A. Zeeb 		    __func__, __LINE__, mc_list->count, addr->addr, ":");
17339d9ba2b7SBjoern A. Zeeb #endif
17346b4cac81SBjoern A. Zeeb 
17356b4cac81SBjoern A. Zeeb 	return (1);
17366b4cac81SBjoern A. Zeeb }
17376b4cac81SBjoern A. Zeeb 
17386b4cac81SBjoern A. Zeeb static void
17396b4cac81SBjoern A. Zeeb lkpi_update_mcast_filter(struct ieee80211com *ic, bool force)
17406b4cac81SBjoern A. Zeeb {
17416b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
17426b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
17436b4cac81SBjoern A. Zeeb 	struct netdev_hw_addr_list mc_list;
17446b4cac81SBjoern A. Zeeb 	struct list_head *le, *next;
17456b4cac81SBjoern A. Zeeb 	struct netdev_hw_addr *addr;
17466b4cac81SBjoern A. Zeeb 	struct ieee80211vap *vap;
17476b4cac81SBjoern A. Zeeb 	u64 mc;
17486b4cac81SBjoern A. Zeeb 	unsigned int changed_flags, total_flags;
17496b4cac81SBjoern A. Zeeb 
17506b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
17516b4cac81SBjoern A. Zeeb 
17526b4cac81SBjoern A. Zeeb 	if (lhw->ops->prepare_multicast == NULL ||
17536b4cac81SBjoern A. Zeeb 	    lhw->ops->configure_filter == NULL)
17546b4cac81SBjoern A. Zeeb 		return;
17556b4cac81SBjoern A. Zeeb 
17566b4cac81SBjoern A. Zeeb 	if (!lhw->update_mc && !force)
17576b4cac81SBjoern A. Zeeb 		return;
17586b4cac81SBjoern A. Zeeb 
17596b4cac81SBjoern A. Zeeb 	changed_flags = total_flags = 0;
17606b4cac81SBjoern A. Zeeb 	mc_list.count = 0;
17616b4cac81SBjoern A. Zeeb 	INIT_LIST_HEAD(&mc_list.addr_list);
17626b4cac81SBjoern A. Zeeb 	if (ic->ic_allmulti == 0) {
17636b4cac81SBjoern A. Zeeb 		TAILQ_FOREACH(vap, &ic->ic_vaps, iv_next)
17646b4cac81SBjoern A. Zeeb 			if_foreach_llmaddr(vap->iv_ifp,
17656b4cac81SBjoern A. Zeeb 			    lkpi_ic_update_mcast_copy, &mc_list);
17666b4cac81SBjoern A. Zeeb 	} else {
17676b4cac81SBjoern A. Zeeb 		changed_flags |= FIF_ALLMULTI;
17686b4cac81SBjoern A. Zeeb 	}
17696b4cac81SBjoern A. Zeeb 
17706b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
17716b4cac81SBjoern A. Zeeb 	mc = lkpi_80211_mo_prepare_multicast(hw, &mc_list);
17726b4cac81SBjoern A. Zeeb 	/*
17736b4cac81SBjoern A. Zeeb 	 * XXX-BZ make sure to get this sorted what is a change,
17746b4cac81SBjoern A. Zeeb 	 * what gets all set; what was already set?
17756b4cac81SBjoern A. Zeeb 	 */
17766b4cac81SBjoern A. Zeeb 	total_flags = changed_flags;
17776b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_configure_filter(hw, changed_flags, &total_flags, mc);
17786b4cac81SBjoern A. Zeeb 
17799d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
17809d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE)
17816b4cac81SBjoern A. Zeeb 		printf("%s: changed_flags %#06x count %d total_flags %#010x\n",
17826b4cac81SBjoern A. Zeeb 		    __func__, changed_flags, mc_list.count, total_flags);
17839d9ba2b7SBjoern A. Zeeb #endif
17846b4cac81SBjoern A. Zeeb 
17856b4cac81SBjoern A. Zeeb 	if (mc_list.count != 0) {
17866b4cac81SBjoern A. Zeeb 		list_for_each_safe(le, next, &mc_list.addr_list) {
17876b4cac81SBjoern A. Zeeb 			addr = list_entry(le, struct netdev_hw_addr, addr_list);
17886b4cac81SBjoern A. Zeeb 			free(addr, M_LKPI80211);
17896b4cac81SBjoern A. Zeeb 			mc_list.count--;
17906b4cac81SBjoern A. Zeeb 		}
17916b4cac81SBjoern A. Zeeb 	}
17926b4cac81SBjoern A. Zeeb 	KASSERT(mc_list.count == 0, ("%s: mc_list %p count %d != 0\n",
17936b4cac81SBjoern A. Zeeb 	    __func__, &mc_list, mc_list.count));
17946b4cac81SBjoern A. Zeeb }
17956b4cac81SBjoern A. Zeeb 
1796fa8f007dSBjoern A. Zeeb static enum ieee80211_bss_changed
1797fa8f007dSBjoern A. Zeeb lkpi_update_dtim_tsf(struct ieee80211_vif *vif, struct ieee80211_node *ni,
1798fa8f007dSBjoern A. Zeeb     struct ieee80211vap *vap, const char *_f, int _l)
1799fa8f007dSBjoern A. Zeeb {
1800fa8f007dSBjoern A. Zeeb 	enum ieee80211_bss_changed bss_changed;
1801fa8f007dSBjoern A. Zeeb 
1802fa8f007dSBjoern A. Zeeb 	bss_changed = 0;
1803fa8f007dSBjoern A. Zeeb 
18049d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
18059d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE)
1806fa8f007dSBjoern A. Zeeb 		printf("%s:%d [%s:%d] assoc %d aid %d beacon_int %u "
1807fa8f007dSBjoern A. Zeeb 		    "dtim_period %u sync_dtim_count %u sync_tsf %ju "
1808ac1d519cSBjoern A. Zeeb 		    "sync_device_ts %u bss_changed %#010jx\n",
1809fa8f007dSBjoern A. Zeeb 			__func__, __LINE__, _f, _l,
1810616e1330SBjoern A. Zeeb 			vif->cfg.assoc, vif->cfg.aid,
1811fa8f007dSBjoern A. Zeeb 			vif->bss_conf.beacon_int, vif->bss_conf.dtim_period,
1812fa8f007dSBjoern A. Zeeb 			vif->bss_conf.sync_dtim_count,
1813fa8f007dSBjoern A. Zeeb 			(uintmax_t)vif->bss_conf.sync_tsf,
1814fa8f007dSBjoern A. Zeeb 			vif->bss_conf.sync_device_ts,
1815ac1d519cSBjoern A. Zeeb 			(uintmax_t)bss_changed);
18169d9ba2b7SBjoern A. Zeeb #endif
1817fa8f007dSBjoern A. Zeeb 
1818fa8f007dSBjoern A. Zeeb 	if (vif->bss_conf.beacon_int != ni->ni_intval) {
1819fa8f007dSBjoern A. Zeeb 		vif->bss_conf.beacon_int = ni->ni_intval;
1820fa8f007dSBjoern A. Zeeb 		/* iwlwifi FW bug workaround; iwl_mvm_mac_sta_state. */
1821fa8f007dSBjoern A. Zeeb 		if (vif->bss_conf.beacon_int < 16)
1822fa8f007dSBjoern A. Zeeb 			vif->bss_conf.beacon_int = 16;
1823fa8f007dSBjoern A. Zeeb 		bss_changed |= BSS_CHANGED_BEACON_INT;
1824fa8f007dSBjoern A. Zeeb 	}
1825fa8f007dSBjoern A. Zeeb 	if (vif->bss_conf.dtim_period != vap->iv_dtim_period &&
1826fa8f007dSBjoern A. Zeeb 	    vap->iv_dtim_period > 0) {
1827fa8f007dSBjoern A. Zeeb 		vif->bss_conf.dtim_period = vap->iv_dtim_period;
1828fa8f007dSBjoern A. Zeeb 		bss_changed |= BSS_CHANGED_BEACON_INFO;
1829fa8f007dSBjoern A. Zeeb 	}
1830fa8f007dSBjoern A. Zeeb 
1831fa8f007dSBjoern A. Zeeb 	vif->bss_conf.sync_dtim_count = vap->iv_dtim_count;
1832fa8f007dSBjoern A. Zeeb 	vif->bss_conf.sync_tsf = le64toh(ni->ni_tstamp.tsf);
1833fa8f007dSBjoern A. Zeeb 	/* vif->bss_conf.sync_device_ts = set in linuxkpi_ieee80211_rx. */
1834fa8f007dSBjoern A. Zeeb 
18359d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
18369d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE)
1837fa8f007dSBjoern A. Zeeb 		printf("%s:%d [%s:%d] assoc %d aid %d beacon_int %u "
1838fa8f007dSBjoern A. Zeeb 		    "dtim_period %u sync_dtim_count %u sync_tsf %ju "
1839ac1d519cSBjoern A. Zeeb 		    "sync_device_ts %u bss_changed %#010jx\n",
1840fa8f007dSBjoern A. Zeeb 			__func__, __LINE__, _f, _l,
1841616e1330SBjoern A. Zeeb 			vif->cfg.assoc, vif->cfg.aid,
1842fa8f007dSBjoern A. Zeeb 			vif->bss_conf.beacon_int, vif->bss_conf.dtim_period,
1843fa8f007dSBjoern A. Zeeb 			vif->bss_conf.sync_dtim_count,
1844fa8f007dSBjoern A. Zeeb 			(uintmax_t)vif->bss_conf.sync_tsf,
1845fa8f007dSBjoern A. Zeeb 			vif->bss_conf.sync_device_ts,
1846ac1d519cSBjoern A. Zeeb 			(uintmax_t)bss_changed);
18479d9ba2b7SBjoern A. Zeeb #endif
1848fa8f007dSBjoern A. Zeeb 
1849fa8f007dSBjoern A. Zeeb 	return (bss_changed);
1850fa8f007dSBjoern A. Zeeb }
1851fa8f007dSBjoern A. Zeeb 
18526b4cac81SBjoern A. Zeeb static void
18536b4cac81SBjoern A. Zeeb lkpi_stop_hw_scan(struct lkpi_hw *lhw, struct ieee80211_vif *vif)
18546b4cac81SBjoern A. Zeeb {
18556b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
18566b4cac81SBjoern A. Zeeb 	int error;
18578ac540d3SBjoern A. Zeeb 	bool cancel;
18586b4cac81SBjoern A. Zeeb 
18598ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_LOCK(lhw);
18608ac540d3SBjoern A. Zeeb 	cancel = (lhw->scan_flags & LKPI_LHW_SCAN_RUNNING) != 0;
18618ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_UNLOCK(lhw);
18628ac540d3SBjoern A. Zeeb 	if (!cancel)
18636b4cac81SBjoern A. Zeeb 		return;
18646b4cac81SBjoern A. Zeeb 
18656b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
18666b4cac81SBjoern A. Zeeb 
1867bec76628SBjoern A. Zeeb 	IEEE80211_UNLOCK(lhw->ic);
1868cd0fcf9fSBjoern A. Zeeb 	wiphy_lock(hw->wiphy);
18696b4cac81SBjoern A. Zeeb 	/* Need to cancel the scan. */
18706b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_cancel_hw_scan(hw, vif);
1871cd0fcf9fSBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
18726b4cac81SBjoern A. Zeeb 
18736b4cac81SBjoern A. Zeeb 	/* Need to make sure we see ieee80211_scan_completed. */
18748ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_LOCK(lhw);
18758ac540d3SBjoern A. Zeeb 	if ((lhw->scan_flags & LKPI_LHW_SCAN_RUNNING) != 0)
18768ac540d3SBjoern A. Zeeb 		error = msleep(lhw, &lhw->scan_mtx, 0, "lhwscanstop", hz/2);
18778ac540d3SBjoern A. Zeeb 	cancel = (lhw->scan_flags & LKPI_LHW_SCAN_RUNNING) != 0;
18788ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_UNLOCK(lhw);
18798ac540d3SBjoern A. Zeeb 
1880bec76628SBjoern A. Zeeb 	IEEE80211_LOCK(lhw->ic);
18816b4cac81SBjoern A. Zeeb 
18828ac540d3SBjoern A. Zeeb 	if (cancel)
18836b4cac81SBjoern A. Zeeb 		ic_printf(lhw->ic, "%s: failed to cancel scan: %d (%p, %p)\n",
18846b4cac81SBjoern A. Zeeb 		    __func__, error, lhw, vif);
18856b4cac81SBjoern A. Zeeb }
18866b4cac81SBjoern A. Zeeb 
18876b4cac81SBjoern A. Zeeb static void
1888086be6a8SBjoern A. Zeeb lkpi_hw_conf_idle(struct ieee80211_hw *hw, bool new)
1889086be6a8SBjoern A. Zeeb {
1890086be6a8SBjoern A. Zeeb 	struct lkpi_hw *lhw;
1891086be6a8SBjoern A. Zeeb 	int error;
1892086be6a8SBjoern A. Zeeb 	bool old;
1893086be6a8SBjoern A. Zeeb 
1894086be6a8SBjoern A. Zeeb 	old = hw->conf.flags & IEEE80211_CONF_IDLE;
1895086be6a8SBjoern A. Zeeb 	if (old == new)
1896086be6a8SBjoern A. Zeeb 		return;
1897086be6a8SBjoern A. Zeeb 
1898086be6a8SBjoern A. Zeeb 	hw->conf.flags ^= IEEE80211_CONF_IDLE;
1899086be6a8SBjoern A. Zeeb 	error = lkpi_80211_mo_config(hw, IEEE80211_CONF_CHANGE_IDLE);
1900086be6a8SBjoern A. Zeeb 	if (error != 0 && error != EOPNOTSUPP) {
1901086be6a8SBjoern A. Zeeb 		lhw = HW_TO_LHW(hw);
1902086be6a8SBjoern A. Zeeb 		ic_printf(lhw->ic, "ERROR: %s: config %#0x returned %d\n",
1903086be6a8SBjoern A. Zeeb 		    __func__, IEEE80211_CONF_CHANGE_IDLE, error);
1904086be6a8SBjoern A. Zeeb 	}
1905086be6a8SBjoern A. Zeeb }
1906086be6a8SBjoern A. Zeeb 
19075a4d2461SBjoern A. Zeeb static enum ieee80211_bss_changed
19086b4cac81SBjoern A. Zeeb lkpi_disassoc(struct ieee80211_sta *sta, struct ieee80211_vif *vif,
19096b4cac81SBjoern A. Zeeb     struct lkpi_hw *lhw)
19106b4cac81SBjoern A. Zeeb {
19115a4d2461SBjoern A. Zeeb 	enum ieee80211_bss_changed changed;
19125a4d2461SBjoern A. Zeeb 
19135a4d2461SBjoern A. Zeeb 	changed = 0;
19146b4cac81SBjoern A. Zeeb 	sta->aid = 0;
1915616e1330SBjoern A. Zeeb 	if (vif->cfg.assoc) {
19166b4cac81SBjoern A. Zeeb 
19176b4cac81SBjoern A. Zeeb 		lhw->update_mc = true;
19186b4cac81SBjoern A. Zeeb 		lkpi_update_mcast_filter(lhw->ic, true);
19196b4cac81SBjoern A. Zeeb 
1920616e1330SBjoern A. Zeeb 		vif->cfg.assoc = false;
1921616e1330SBjoern A. Zeeb 		vif->cfg.aid = 0;
19226b4cac81SBjoern A. Zeeb 		changed |= BSS_CHANGED_ASSOC;
19236b4cac81SBjoern A. Zeeb 		IMPROVE();
1924086be6a8SBjoern A. Zeeb 
19255a4d2461SBjoern A. Zeeb 		/*
19265a4d2461SBjoern A. Zeeb 		 * Executing the bss_info_changed(BSS_CHANGED_ASSOC) with
19275a4d2461SBjoern A. Zeeb 		 * assoc = false right away here will remove the sta from
19285a4d2461SBjoern A. Zeeb 		 * firmware for iwlwifi.
19295a4d2461SBjoern A. Zeeb 		 * We no longer do this but only return the BSS_CHNAGED value.
19305a4d2461SBjoern A. Zeeb 		 * The caller is responsible for removing the sta gong to
19315a4d2461SBjoern A. Zeeb 		 * IEEE80211_STA_NOTEXIST and then executing the
19325a4d2461SBjoern A. Zeeb 		 * bss_info_changed() update.
19335a4d2461SBjoern A. Zeeb 		 * See lkpi_sta_run_to_init() for more detailed comment.
19345a4d2461SBjoern A. Zeeb 		 */
19356b4cac81SBjoern A. Zeeb 	}
19365a4d2461SBjoern A. Zeeb 
19375a4d2461SBjoern A. Zeeb 	return (changed);
19386b4cac81SBjoern A. Zeeb }
19396b4cac81SBjoern A. Zeeb 
19406b4cac81SBjoern A. Zeeb static void
19416b4cac81SBjoern A. Zeeb lkpi_wake_tx_queues(struct ieee80211_hw *hw, struct ieee80211_sta *sta,
19426b4cac81SBjoern A. Zeeb     bool dequeue_seen, bool no_emptyq)
19436b4cac81SBjoern A. Zeeb {
19446b4cac81SBjoern A. Zeeb 	struct lkpi_txq *ltxq;
19456b4cac81SBjoern A. Zeeb 	int tid;
1946eac3646fSBjoern A. Zeeb 	bool ltxq_empty;
19476b4cac81SBjoern A. Zeeb 
19486b4cac81SBjoern A. Zeeb 	/* Wake up all queues to know they are allocated in the driver. */
19496b4cac81SBjoern A. Zeeb 	for (tid = 0; tid < nitems(sta->txq); tid++) {
19506b4cac81SBjoern A. Zeeb 
19516b4cac81SBjoern A. Zeeb 		if (tid == IEEE80211_NUM_TIDS) {
19526b4cac81SBjoern A. Zeeb 			IMPROVE("station specific?");
19536b4cac81SBjoern A. Zeeb 			if (!ieee80211_hw_check(hw, STA_MMPDU_TXQ))
19546b4cac81SBjoern A. Zeeb 				continue;
19556b4cac81SBjoern A. Zeeb 		} else if (tid >= hw->queues)
19566b4cac81SBjoern A. Zeeb 			continue;
19576b4cac81SBjoern A. Zeeb 
19586b4cac81SBjoern A. Zeeb 		if (sta->txq[tid] == NULL)
19596b4cac81SBjoern A. Zeeb 			continue;
19606b4cac81SBjoern A. Zeeb 
19616b4cac81SBjoern A. Zeeb 		ltxq = TXQ_TO_LTXQ(sta->txq[tid]);
19626b4cac81SBjoern A. Zeeb 		if (dequeue_seen && !ltxq->seen_dequeue)
19636b4cac81SBjoern A. Zeeb 			continue;
19646b4cac81SBjoern A. Zeeb 
1965eac3646fSBjoern A. Zeeb 		LKPI_80211_LTXQ_LOCK(ltxq);
1966eac3646fSBjoern A. Zeeb 		ltxq_empty = skb_queue_empty(&ltxq->skbq);
1967eac3646fSBjoern A. Zeeb 		LKPI_80211_LTXQ_UNLOCK(ltxq);
1968eac3646fSBjoern A. Zeeb 		if (no_emptyq && ltxq_empty)
19696b4cac81SBjoern A. Zeeb 			continue;
19706b4cac81SBjoern A. Zeeb 
19716b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_wake_tx_queue(hw, sta->txq[tid]);
19726b4cac81SBjoern A. Zeeb 	}
19736b4cac81SBjoern A. Zeeb }
19746b4cac81SBjoern A. Zeeb 
197588665349SBjoern A. Zeeb /*
197688665349SBjoern A. Zeeb  * On the way down from RUN -> ASSOC -> AUTH we may send a DISASSOC or DEAUTH
197788665349SBjoern A. Zeeb  * packet.  The problem is that the state machine functions tend to hold the
197888665349SBjoern A. Zeeb  * LHW lock which will prevent lkpi_80211_txq_tx_one() from sending the packet.
197988665349SBjoern A. Zeeb  * We call this after dropping the ic lock and before acquiring the LHW lock.
198088665349SBjoern A. Zeeb  * we make sure no further packets are queued and if they are queued the task
198188665349SBjoern A. Zeeb  * will finish or be cancelled.  At the end if a packet is left we manually
198288665349SBjoern A. Zeeb  * send it.  scan_to_auth() would re-enable sending if the lsta would be
198388665349SBjoern A. Zeeb  * re-used.
198488665349SBjoern A. Zeeb  */
198588665349SBjoern A. Zeeb static void
198688665349SBjoern A. Zeeb lkpi_80211_flush_tx(struct lkpi_hw *lhw, struct lkpi_sta *lsta)
198788665349SBjoern A. Zeeb {
1988cd0fcf9fSBjoern A. Zeeb 	struct ieee80211_hw *hw;
198988665349SBjoern A. Zeeb 	struct mbufq mq;
199088665349SBjoern A. Zeeb 	struct mbuf *m;
199188665349SBjoern A. Zeeb 	int len;
199288665349SBjoern A. Zeeb 
1993cd0fcf9fSBjoern A. Zeeb 	/* There is no lockdep_assert_not_held_wiphy(). */
1994cd0fcf9fSBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
1995cd0fcf9fSBjoern A. Zeeb 	lockdep_assert_not_held(&hw->wiphy->mtx);
199688665349SBjoern A. Zeeb 
199788665349SBjoern A. Zeeb 	/* Do not accept any new packets until scan_to_auth or lsta_free(). */
199888665349SBjoern A. Zeeb 	LKPI_80211_LSTA_TXQ_LOCK(lsta);
199988665349SBjoern A. Zeeb 	lsta->txq_ready = false;
200088665349SBjoern A. Zeeb 	LKPI_80211_LSTA_TXQ_UNLOCK(lsta);
200188665349SBjoern A. Zeeb 
200288665349SBjoern A. Zeeb 	while (taskqueue_cancel(taskqueue_thread, &lsta->txq_task, NULL) != 0)
200388665349SBjoern A. Zeeb 		taskqueue_drain(taskqueue_thread, &lsta->txq_task);
200488665349SBjoern A. Zeeb 
200588665349SBjoern A. Zeeb 	LKPI_80211_LSTA_TXQ_LOCK(lsta);
200688665349SBjoern A. Zeeb 	len = mbufq_len(&lsta->txq);
200788665349SBjoern A. Zeeb 	if (len <= 0) {
200888665349SBjoern A. Zeeb 		LKPI_80211_LSTA_TXQ_UNLOCK(lsta);
200988665349SBjoern A. Zeeb 		return;
201088665349SBjoern A. Zeeb 	}
201188665349SBjoern A. Zeeb 
201288665349SBjoern A. Zeeb 	mbufq_init(&mq, IFQ_MAXLEN);
201388665349SBjoern A. Zeeb 	mbufq_concat(&mq, &lsta->txq);
201488665349SBjoern A. Zeeb 	LKPI_80211_LSTA_TXQ_UNLOCK(lsta);
201588665349SBjoern A. Zeeb 
201688665349SBjoern A. Zeeb 	m = mbufq_dequeue(&mq);
201788665349SBjoern A. Zeeb 	while (m != NULL) {
201888665349SBjoern A. Zeeb 		lkpi_80211_txq_tx_one(lsta, m);
201988665349SBjoern A. Zeeb 		m = mbufq_dequeue(&mq);
202088665349SBjoern A. Zeeb 	}
202188665349SBjoern A. Zeeb }
202288665349SBjoern A. Zeeb 
202350d826beSBjoern A. Zeeb 
202450d826beSBjoern A. Zeeb static void
202550d826beSBjoern A. Zeeb lkpi_remove_chanctx(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
202650d826beSBjoern A. Zeeb {
202750d826beSBjoern A. Zeeb 	struct ieee80211_chanctx_conf *chanctx_conf;
2028231168c7SBjoern A. Zeeb 	struct lkpi_chanctx *lchanctx;
202950d826beSBjoern A. Zeeb 
2030231168c7SBjoern A. Zeeb 	chanctx_conf = rcu_dereference_protected(vif->bss_conf.chanctx_conf,
2031231168c7SBjoern A. Zeeb 	    lockdep_is_held(&hw->wiphy->mtx));
2032231168c7SBjoern A. Zeeb 
2033231168c7SBjoern A. Zeeb 	if (chanctx_conf == NULL)
2034231168c7SBjoern A. Zeeb 		return;
2035231168c7SBjoern A. Zeeb 
203650d826beSBjoern A. Zeeb 	/* Remove vif context. */
2037231168c7SBjoern A. Zeeb 	lkpi_80211_mo_unassign_vif_chanctx(hw, vif, &vif->bss_conf, chanctx_conf);
203850d826beSBjoern A. Zeeb 
203950d826beSBjoern A. Zeeb 	lkpi_hw_conf_idle(hw, true);
204050d826beSBjoern A. Zeeb 
204150d826beSBjoern A. Zeeb 	/* Remove chan ctx. */
204250d826beSBjoern A. Zeeb 	lkpi_80211_mo_remove_chanctx(hw, chanctx_conf);
2043231168c7SBjoern A. Zeeb 
2044231168c7SBjoern A. Zeeb 	/* Cleanup. */
2045231168c7SBjoern A. Zeeb 	rcu_assign_pointer(vif->bss_conf.chanctx_conf, NULL);
204650d826beSBjoern A. Zeeb 	lchanctx = CHANCTX_CONF_TO_LCHANCTX(chanctx_conf);
2047a8a47a41SBjoern A. Zeeb 	list_del(&lchanctx->entry);
204850d826beSBjoern A. Zeeb 	free(lchanctx, M_LKPI80211);
204950d826beSBjoern A. Zeeb }
205050d826beSBjoern A. Zeeb 
205150d826beSBjoern A. Zeeb 
20526b4cac81SBjoern A. Zeeb /* -------------------------------------------------------------------------- */
20536b4cac81SBjoern A. Zeeb 
20546b4cac81SBjoern A. Zeeb static int
20556b4cac81SBjoern A. Zeeb lkpi_sta_state_do_nada(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
20566b4cac81SBjoern A. Zeeb {
20576b4cac81SBjoern A. Zeeb 
20586b4cac81SBjoern A. Zeeb 	return (0);
20596b4cac81SBjoern A. Zeeb }
20606b4cac81SBjoern A. Zeeb 
20616b4cac81SBjoern A. Zeeb /* lkpi_iv_newstate() handles the stop scan case generally. */
20626b4cac81SBjoern A. Zeeb #define	lkpi_sta_scan_to_init(_v, _n, _a)	lkpi_sta_state_do_nada(_v, _n, _a)
20636b4cac81SBjoern A. Zeeb 
20646b4cac81SBjoern A. Zeeb static int
20656b4cac81SBjoern A. Zeeb lkpi_sta_scan_to_auth(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
20666b4cac81SBjoern A. Zeeb {
20676b4cac81SBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel *chan;
2068c5e25798SBjoern A. Zeeb 	struct lkpi_chanctx *lchanctx;
2069d1af434dSBjoern A. Zeeb 	struct ieee80211_chanctx_conf *chanctx_conf;
20706b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
20716b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
20726b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
20736b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
20746b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
20756b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
20766b4cac81SBjoern A. Zeeb 	enum ieee80211_bss_changed bss_changed;
20776b4cac81SBjoern A. Zeeb 	struct ieee80211_prep_tx_info prep_tx_info;
20786b4cac81SBjoern A. Zeeb 	uint32_t changed;
20796b4cac81SBjoern A. Zeeb 	int error;
208016d987feSBjoern A. Zeeb 	bool synched;
20816b4cac81SBjoern A. Zeeb 
20822ac8a218SBjoern A. Zeeb 	/*
20832ac8a218SBjoern A. Zeeb 	 * In here we use vap->iv_bss until lvif->lvif_bss is set.
20842ac8a218SBjoern A. Zeeb 	 * For all later (STATE >= AUTH) functions we need to use the lvif
20852ac8a218SBjoern A. Zeeb 	 * cache which will be tracked even through (*iv_update_bss)().
20862ac8a218SBjoern A. Zeeb 	 */
20872ac8a218SBjoern A. Zeeb 
20882ac8a218SBjoern A. Zeeb 	if (vap->iv_bss == NULL) {
20892ac8a218SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s: no iv_bss for vap %p\n", __func__, vap);
20902ac8a218SBjoern A. Zeeb 		return (EINVAL);
20912ac8a218SBjoern A. Zeeb 	}
20920936c648SBjoern A. Zeeb 	/*
20930936c648SBjoern A. Zeeb 	 * Keep the ni alive locally.  In theory (and practice) iv_bss can change
20940936c648SBjoern A. Zeeb 	 * once we unlock here.  This is due to net80211 allowing state changes
20950936c648SBjoern A. Zeeb 	 * and new join1() despite having an active node as well as due to
20960936c648SBjoern A. Zeeb 	 * the fact that the iv_bss can be swapped under the hood in (*iv_update_bss).
20970936c648SBjoern A. Zeeb 	 */
20982ac8a218SBjoern A. Zeeb 	ni = ieee80211_ref_node(vap->iv_bss);
20992ac8a218SBjoern A. Zeeb 	if (ni->ni_chan == NULL || ni->ni_chan == IEEE80211_CHAN_ANYC) {
21002ac8a218SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s: no channel set for iv_bss ni %p "
21012ac8a218SBjoern A. Zeeb 		    "on vap %p\n", __func__, ni, vap);
21020936c648SBjoern A. Zeeb 		ieee80211_free_node(ni);	/* Error handling for the local ni. */
21032ac8a218SBjoern A. Zeeb 		return (EINVAL);
21046b4cac81SBjoern A. Zeeb 	}
21056b4cac81SBjoern A. Zeeb 
21066b4cac81SBjoern A. Zeeb 	lhw = vap->iv_ic->ic_softc;
21072ac8a218SBjoern A. Zeeb 	chan = lkpi_find_lkpi80211_chan(lhw, ni->ni_chan);
21082ac8a218SBjoern A. Zeeb 	if (chan == NULL) {
21092ac8a218SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s: failed to get LKPI channel from "
21102ac8a218SBjoern A. Zeeb 		    "iv_bss ni %p on vap %p\n", __func__, ni, vap);
21110936c648SBjoern A. Zeeb 		ieee80211_free_node(ni);	/* Error handling for the local ni. */
21122ac8a218SBjoern A. Zeeb 		return (ESRCH);
21132ac8a218SBjoern A. Zeeb 	}
21142ac8a218SBjoern A. Zeeb 
21156b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
21166b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
21176b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
21186b4cac81SBjoern A. Zeeb 
21190936c648SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
21200936c648SBjoern A. Zeeb 	/* XXX-BZ KASSERT later? */
21210936c648SBjoern A. Zeeb 	if (lvif->lvif_bss_synched || lvif->lvif_bss != NULL) {
21220936c648SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: lvif %p vap %p iv_bss %p lvif_bss %p "
21230936c648SBjoern A. Zeeb 		    "lvif_bss->ni %p synched %d\n", __func__, __LINE__,
21240936c648SBjoern A. Zeeb 		    lvif, vap, vap->iv_bss, lvif->lvif_bss,
21250936c648SBjoern A. Zeeb 		    (lvif->lvif_bss != NULL) ? lvif->lvif_bss->ni : NULL,
21260936c648SBjoern A. Zeeb 		    lvif->lvif_bss_synched);
212792690579SMark Johnston 		LKPI_80211_LVIF_UNLOCK(lvif);
212892690579SMark Johnston 		ieee80211_free_node(ni);	/* Error handling for the local ni. */
21290936c648SBjoern A. Zeeb 		return (EBUSY);
21300936c648SBjoern A. Zeeb 	}
21310936c648SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
21320936c648SBjoern A. Zeeb 
21336b4cac81SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
2134cd0fcf9fSBjoern A. Zeeb 	wiphy_lock(hw->wiphy);
21356b4cac81SBjoern A. Zeeb 
21366b4cac81SBjoern A. Zeeb 	/* Add chanctx (or if exists, change it). */
2137560708cbSBjoern A. Zeeb 	chanctx_conf = rcu_dereference_protected(vif->bss_conf.chanctx_conf,
2138560708cbSBjoern A. Zeeb 	    lockdep_is_held(&hw->wiphy->mtx));
2139560708cbSBjoern A. Zeeb 	if (chanctx_conf != NULL) {
2140d1af434dSBjoern A. Zeeb 		lchanctx = CHANCTX_CONF_TO_LCHANCTX(chanctx_conf);
21416b4cac81SBjoern A. Zeeb 		IMPROVE("diff changes for changed, working on live copy, rcu");
21426b4cac81SBjoern A. Zeeb 	} else {
21436b4cac81SBjoern A. Zeeb 		/* Keep separate alloc as in Linux this is rcu managed? */
2144c5e25798SBjoern A. Zeeb 		lchanctx = malloc(sizeof(*lchanctx) + hw->chanctx_data_size,
21456b4cac81SBjoern A. Zeeb 		    M_LKPI80211, M_WAITOK | M_ZERO);
2146d1af434dSBjoern A. Zeeb 		chanctx_conf = &lchanctx->chanctx_conf;
21476b4cac81SBjoern A. Zeeb 	}
21486b4cac81SBjoern A. Zeeb 
2149d1af434dSBjoern A. Zeeb 	chanctx_conf->rx_chains_static = 1;
2150389265e3SBjoern A. Zeeb 	chanctx_conf->rx_chains_dynamic = 1;
2151d1af434dSBjoern A. Zeeb 	chanctx_conf->radar_enabled =
21526b4cac81SBjoern A. Zeeb 	    (chan->flags & IEEE80211_CHAN_RADAR) ? true : false;
2153d1af434dSBjoern A. Zeeb 	chanctx_conf->def.chan = chan;
2154d1af434dSBjoern A. Zeeb 	chanctx_conf->def.width = NL80211_CHAN_WIDTH_20_NOHT;
215590d8e307SBjoern A. Zeeb 	chanctx_conf->def.center_freq1 = ieee80211_get_channel_center_freq1(ni->ni_chan);
215690d8e307SBjoern A. Zeeb 	chanctx_conf->def.center_freq2 = ieee80211_get_channel_center_freq2(ni->ni_chan);
21579fb91463SBjoern A. Zeeb 	IMPROVE("Check vht_cap from band not just chan?");
21582ac8a218SBjoern A. Zeeb 	KASSERT(ni->ni_chan != NULL && ni->ni_chan != IEEE80211_CHAN_ANYC,
21592ac8a218SBjoern A. Zeeb 	   ("%s:%d: ni %p ni_chan %p\n", __func__, __LINE__, ni, ni->ni_chan));
216062d51a43SBjoern A. Zeeb 
21619fb91463SBjoern A. Zeeb #ifdef LKPI_80211_HT
21629fb91463SBjoern A. Zeeb 	if (IEEE80211_IS_CHAN_HT(ni->ni_chan)) {
216390d8e307SBjoern A. Zeeb 		if (IEEE80211_IS_CHAN_HT40(ni->ni_chan))
2164d1af434dSBjoern A. Zeeb 			chanctx_conf->def.width = NL80211_CHAN_WIDTH_40;
216590d8e307SBjoern A. Zeeb 		else
2166d1af434dSBjoern A. Zeeb 			chanctx_conf->def.width = NL80211_CHAN_WIDTH_20;
21679fb91463SBjoern A. Zeeb 	}
21689fb91463SBjoern A. Zeeb #endif
21699fb91463SBjoern A. Zeeb #ifdef LKPI_80211_VHT
21705393cd34SBjoern A. Zeeb 	if (IEEE80211_IS_CHAN_VHT_5GHZ(ni->ni_chan)) {
217190d8e307SBjoern A. Zeeb 		if (IEEE80211_IS_CHAN_VHT80P80(ni->ni_chan))
2172d1af434dSBjoern A. Zeeb 			chanctx_conf->def.width = NL80211_CHAN_WIDTH_80P80;
217390d8e307SBjoern A. Zeeb 		else if (IEEE80211_IS_CHAN_VHT160(ni->ni_chan))
2174d1af434dSBjoern A. Zeeb 			chanctx_conf->def.width = NL80211_CHAN_WIDTH_160;
21754bf049bfSBjoern A. Zeeb 		else if (IEEE80211_IS_CHAN_VHT80(ni->ni_chan))
2176d1af434dSBjoern A. Zeeb 			chanctx_conf->def.width = NL80211_CHAN_WIDTH_80;
21779fb91463SBjoern A. Zeeb 	}
21789fb91463SBjoern A. Zeeb #endif
2179389265e3SBjoern A. Zeeb 	chanctx_conf->rx_chains_dynamic = lkpi_get_max_rx_chains(ni);
21806b4cac81SBjoern A. Zeeb 	/* Responder ... */
218190d8e307SBjoern A. Zeeb #if 0
218290d8e307SBjoern A. Zeeb 	chanctx_conf->min_def.chan = chanctx_conf->def.chan;
2183d1af434dSBjoern A. Zeeb 	chanctx_conf->min_def.width = NL80211_CHAN_WIDTH_20_NOHT;
218490d8e307SBjoern A. Zeeb #ifdef LKPI_80211_HT
218590d8e307SBjoern A. Zeeb 	if (IEEE80211_IS_CHAN_HT(ni->ni_chan) || IEEE80211_IS_CHAN_VHT(ni->ni_chan))
218690d8e307SBjoern A. Zeeb 		chanctx_conf->min_def.width = NL80211_CHAN_WIDTH_20;
218790d8e307SBjoern A. Zeeb #endif
218890d8e307SBjoern A. Zeeb 	chanctx_conf->min_def.center_freq1 = chanctx_conf->def.center_freq1;
218990d8e307SBjoern A. Zeeb 	chanctx_conf->min_def.center_freq2 = chanctx_conf->def.center_freq2;
219090d8e307SBjoern A. Zeeb #else
219190d8e307SBjoern A. Zeeb 	chanctx_conf->min_def = chanctx_conf->def;
219290d8e307SBjoern A. Zeeb #endif
21936b4cac81SBjoern A. Zeeb 
21946ffb7bd4SBjoern A. Zeeb 	/* Set bss info (bss_info_changed). */
21956ffb7bd4SBjoern A. Zeeb 	bss_changed = 0;
21966ffb7bd4SBjoern A. Zeeb 	vif->bss_conf.bssid = ni->ni_bssid;
21976ffb7bd4SBjoern A. Zeeb 	bss_changed |= BSS_CHANGED_BSSID;
21986ffb7bd4SBjoern A. Zeeb 	vif->bss_conf.txpower = ni->ni_txpower;
21996ffb7bd4SBjoern A. Zeeb 	bss_changed |= BSS_CHANGED_TXPOWER;
22006ffb7bd4SBjoern A. Zeeb 	vif->cfg.idle = false;
22016ffb7bd4SBjoern A. Zeeb 	bss_changed |= BSS_CHANGED_IDLE;
22026ffb7bd4SBjoern A. Zeeb 
22036ffb7bd4SBjoern A. Zeeb 	/* vif->bss_conf.basic_rates ? Where exactly? */
22046ffb7bd4SBjoern A. Zeeb 
22056ffb7bd4SBjoern A. Zeeb 	/* Should almost assert it is this. */
22066ffb7bd4SBjoern A. Zeeb 	vif->cfg.assoc = false;
22076ffb7bd4SBjoern A. Zeeb 	vif->cfg.aid = 0;
22086ffb7bd4SBjoern A. Zeeb 
22096ffb7bd4SBjoern A. Zeeb 	bss_changed |= lkpi_update_dtim_tsf(vif, ni, vap, __func__, __LINE__);
22106ffb7bd4SBjoern A. Zeeb 
22116b4cac81SBjoern A. Zeeb 	error = 0;
2212560708cbSBjoern A. Zeeb 	if (vif->bss_conf.chanctx_conf == chanctx_conf) {
22136b4cac81SBjoern A. Zeeb 		changed = IEEE80211_CHANCTX_CHANGE_MIN_WIDTH;
22146b4cac81SBjoern A. Zeeb 		changed |= IEEE80211_CHANCTX_CHANGE_RADAR;
22156b4cac81SBjoern A. Zeeb 		changed |= IEEE80211_CHANCTX_CHANGE_RX_CHAINS;
22166b4cac81SBjoern A. Zeeb 		changed |= IEEE80211_CHANCTX_CHANGE_WIDTH;
2217d1af434dSBjoern A. Zeeb 		lkpi_80211_mo_change_chanctx(hw, chanctx_conf, changed);
22186b4cac81SBjoern A. Zeeb 	} else {
2219d1af434dSBjoern A. Zeeb 		error = lkpi_80211_mo_add_chanctx(hw, chanctx_conf);
22206b4cac81SBjoern A. Zeeb 		if (error == 0 || error == EOPNOTSUPP) {
22217b43f4d0SBjoern A. Zeeb 			vif->bss_conf.chanreq.oper.chan = chanctx_conf->def.chan;
22227b43f4d0SBjoern A. Zeeb 			vif->bss_conf.chanreq.oper.width = chanctx_conf->def.width;
22237b43f4d0SBjoern A. Zeeb 			vif->bss_conf.chanreq.oper.center_freq1 =
2224d1af434dSBjoern A. Zeeb 			    chanctx_conf->def.center_freq1;
22257b43f4d0SBjoern A. Zeeb 			vif->bss_conf.chanreq.oper.center_freq2 =
2226d1af434dSBjoern A. Zeeb 			    chanctx_conf->def.center_freq2;
22276b4cac81SBjoern A. Zeeb 		} else {
2228018d93ecSBjoern A. Zeeb 			ic_printf(vap->iv_ic, "%s:%d: mo_add_chanctx "
2229018d93ecSBjoern A. Zeeb 			    "failed: %d\n", __func__, __LINE__, error);
22306b4cac81SBjoern A. Zeeb 			goto out;
22316b4cac81SBjoern A. Zeeb 		}
22326ffb7bd4SBjoern A. Zeeb 
2233a8a47a41SBjoern A. Zeeb 		list_add_rcu(&lchanctx->entry, &lhw->lchanctx_list);
2234560708cbSBjoern A. Zeeb 		rcu_assign_pointer(vif->bss_conf.chanctx_conf, chanctx_conf);
22356ffb7bd4SBjoern A. Zeeb 
22366b4cac81SBjoern A. Zeeb 		/* Assign vif chanctx. */
22376b4cac81SBjoern A. Zeeb 		if (error == 0)
223868541546SBjoern A. Zeeb 			error = lkpi_80211_mo_assign_vif_chanctx(hw, vif,
2239d1af434dSBjoern A. Zeeb 			    &vif->bss_conf, chanctx_conf);
22406b4cac81SBjoern A. Zeeb 		if (error == EOPNOTSUPP)
22416b4cac81SBjoern A. Zeeb 			error = 0;
22426b4cac81SBjoern A. Zeeb 		if (error != 0) {
2243018d93ecSBjoern A. Zeeb 			ic_printf(vap->iv_ic, "%s:%d: mo_assign_vif_chanctx "
2244018d93ecSBjoern A. Zeeb 			    "failed: %d\n", __func__, __LINE__, error);
2245d1af434dSBjoern A. Zeeb 			lkpi_80211_mo_remove_chanctx(hw, chanctx_conf);
2246560708cbSBjoern A. Zeeb 			rcu_assign_pointer(vif->bss_conf.chanctx_conf, NULL);
2247d1af434dSBjoern A. Zeeb 			lchanctx = CHANCTX_CONF_TO_LCHANCTX(chanctx_conf);
2248a8a47a41SBjoern A. Zeeb 			list_del(&lchanctx->entry);
2249c5e25798SBjoern A. Zeeb 			free(lchanctx, M_LKPI80211);
22506b4cac81SBjoern A. Zeeb 			goto out;
22516b4cac81SBjoern A. Zeeb 		}
22526b4cac81SBjoern A. Zeeb 	}
22536b4cac81SBjoern A. Zeeb 	IMPROVE("update radiotap chan fields too");
22546b4cac81SBjoern A. Zeeb 
22556b4cac81SBjoern A. Zeeb 	/* RATES */
22566b4cac81SBjoern A. Zeeb 	IMPROVE("bss info: not all needs to come now and rates are missing");
22576b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, bss_changed);
22586b4cac81SBjoern A. Zeeb 
2259d9f59799SBjoern A. Zeeb 	/*
22600936c648SBjoern A. Zeeb 	 * Given ni and lsta are 1:1 from alloc to free we can assert that
22610936c648SBjoern A. Zeeb 	 * ni always has lsta data attach despite net80211 node swapping
22620936c648SBjoern A. Zeeb 	 * under the hoods.
2263d9f59799SBjoern A. Zeeb 	 */
22640936c648SBjoern A. Zeeb 	KASSERT(ni->ni_drv_data != NULL, ("%s: ni %p ni_drv_data %p\n",
22650936c648SBjoern A. Zeeb 	    __func__, ni, ni->ni_drv_data));
22666b4cac81SBjoern A. Zeeb 	lsta = ni->ni_drv_data;
2267e24e8103SBjoern A. Zeeb 
22682ac8a218SBjoern A. Zeeb 	/* Insert the [l]sta into the list of known stations. */
2269a8f735a6SBjoern A. Zeeb 	list_add_tail(&lsta->lsta_list, &lvif->lsta_list);
2270e24e8103SBjoern A. Zeeb 
2271d9f59799SBjoern A. Zeeb 	/* Add (or adjust) sta and change state (from NOTEXIST) to NONE. */
22726b4cac81SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
22736b4cac81SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_NOTEXIST, ("%s: lsta %p state not "
22746b4cac81SBjoern A. Zeeb 	    "NOTEXIST: %#x\n", __func__, lsta, lsta->state));
2275e7fe0373SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_NONE);
22766b4cac81SBjoern A. Zeeb 	if (error != 0) {
22776b4cac81SBjoern A. Zeeb 		IMPROVE("do we need to undo the chan ctx?");
2278018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: mo_sta_state(NONE) "
2279018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, error);
22806b4cac81SBjoern A. Zeeb 		goto out;
22816b4cac81SBjoern A. Zeeb 	}
22826b4cac81SBjoern A. Zeeb #if 0
22836b4cac81SBjoern A. Zeeb 	lsta->added_to_drv = true;	/* mo manages. */
22846b4cac81SBjoern A. Zeeb #endif
22856b4cac81SBjoern A. Zeeb 
22869d9ba2b7SBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
22879d9ba2b7SBjoern A. Zeeb 
22881665ef97SBjoern A. Zeeb #if 0
22896b4cac81SBjoern A. Zeeb 	/*
22906b4cac81SBjoern A. Zeeb 	 * Wakeup all queues now that sta is there so we have as much time to
22916b4cac81SBjoern A. Zeeb 	 * possibly prepare the queue in the driver to be ready for the 1st
22926b4cac81SBjoern A. Zeeb 	 * packet;  lkpi_80211_txq_tx_one() still has a workaround as there
22936b4cac81SBjoern A. Zeeb 	 * is no guarantee or way to check.
2294d9f59799SBjoern A. Zeeb 	 * XXX-BZ and by now we know that this does not work on all drivers
2295d9f59799SBjoern A. Zeeb 	 * for all queues.
22966b4cac81SBjoern A. Zeeb 	 */
2297e7fe0373SBjoern A. Zeeb 	lkpi_wake_tx_queues(hw, LSTA_TO_STA(lsta), false, false);
22981665ef97SBjoern A. Zeeb #endif
22996b4cac81SBjoern A. Zeeb 
23006b4cac81SBjoern A. Zeeb 	/* Start mgd_prepare_tx. */
23016b4cac81SBjoern A. Zeeb 	memset(&prep_tx_info, 0, sizeof(prep_tx_info));
23026b4cac81SBjoern A. Zeeb 	prep_tx_info.duration = PREP_TX_INFO_DURATION;
23036b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_mgd_prepare_tx(hw, vif, &prep_tx_info);
23046b4cac81SBjoern A. Zeeb 	lsta->in_mgd = true;
23056b4cac81SBjoern A. Zeeb 
23066b4cac81SBjoern A. Zeeb 	/*
23076b4cac81SBjoern A. Zeeb 	 * What is going to happen next:
23086b4cac81SBjoern A. Zeeb 	 * - <twiddle> .. we should end up in "auth_to_assoc"
23096b4cac81SBjoern A. Zeeb 	 * - event_callback
23106b4cac81SBjoern A. Zeeb 	 * - update sta_state (NONE to AUTH)
23116b4cac81SBjoern A. Zeeb 	 * - mgd_complete_tx
23126b4cac81SBjoern A. Zeeb 	 * (ideally we'd do that on a callback for something else ...)
23136b4cac81SBjoern A. Zeeb 	 */
23146b4cac81SBjoern A. Zeeb 
2315cd0fcf9fSBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
2316105b9df2SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
2317105b9df2SBjoern A. Zeeb 
2318105b9df2SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
2319105b9df2SBjoern A. Zeeb 	/* Re-check given (*iv_update_bss) could have happened while we were unlocked. */
2320105b9df2SBjoern A. Zeeb 	if (lvif->lvif_bss_synched || lvif->lvif_bss != NULL ||
2321105b9df2SBjoern A. Zeeb 	    lsta->ni != vap->iv_bss)
2322105b9df2SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: lvif %p vap %p iv_bss %p lvif_bss %p "
2323105b9df2SBjoern A. Zeeb 		    "lvif_bss->ni %p synched %d, ni %p lsta %p\n", __func__, __LINE__,
2324105b9df2SBjoern A. Zeeb 		    lvif, vap, vap->iv_bss, lvif->lvif_bss,
2325105b9df2SBjoern A. Zeeb 		    (lvif->lvif_bss != NULL) ? lvif->lvif_bss->ni : NULL,
2326105b9df2SBjoern A. Zeeb 		    lvif->lvif_bss_synched, ni, lsta);
2327105b9df2SBjoern A. Zeeb 
2328105b9df2SBjoern A. Zeeb 	/*
2329105b9df2SBjoern A. Zeeb 	 * Reference the "ni" for caching the lsta/ni in lvif->lvif_bss.
2330105b9df2SBjoern A. Zeeb 	 * Given we cache lsta we use lsta->ni instead of ni here (even though
2331105b9df2SBjoern A. Zeeb 	 * lsta->ni == ni) to be distinct from the rest of the code where we do
2332105b9df2SBjoern A. Zeeb 	 * assume that ni == vap->iv_bss which it may or may not be.
2333105b9df2SBjoern A. Zeeb 	 * So do NOT use iv_bss here anymore as that may have diverged from our
2334105b9df2SBjoern A. Zeeb 	 * function local ni already while ic was unlocked and would lead to
2335105b9df2SBjoern A. Zeeb 	 * inconsistencies.  Go and see if we lost a race and do not update
2336105b9df2SBjoern A. Zeeb 	 * lvif_bss_synched in that case.
2337105b9df2SBjoern A. Zeeb 	 */
2338105b9df2SBjoern A. Zeeb 	ieee80211_ref_node(lsta->ni);
2339105b9df2SBjoern A. Zeeb 	lvif->lvif_bss = lsta;
2340105b9df2SBjoern A. Zeeb 	if (lsta->ni == vap->iv_bss) {
234116d987feSBjoern A. Zeeb 		lvif->lvif_bss_synched = synched = true;
2342105b9df2SBjoern A. Zeeb 	} else {
2343105b9df2SBjoern A. Zeeb 		/* Set to un-synched no matter what. */
234416d987feSBjoern A. Zeeb 		lvif->lvif_bss_synched = synched = false;
2345105b9df2SBjoern A. Zeeb 		/*
2346105b9df2SBjoern A. Zeeb 		 * We do not error as someone has to take us down.
2347105b9df2SBjoern A. Zeeb 		 * If we are followed by a 2nd, new net80211::join1() going to
2348105b9df2SBjoern A. Zeeb 		 * AUTH lkpi_sta_a_to_a() will error, lkpi_sta_auth_to_{scan,init}()
2349105b9df2SBjoern A. Zeeb 		 * will take the lvif->lvif_bss node down eventually.
2350105b9df2SBjoern A. Zeeb 		 * What happens with the vap->iv_bss node will entirely be up
2351105b9df2SBjoern A. Zeeb 		 * to net80211 as we never used the node beyond alloc()/free()
2352105b9df2SBjoern A. Zeeb 		 * and we do not hold an extra reference for that anymore given
2353105b9df2SBjoern A. Zeeb 		 * ni : lsta == 1:1.
235416d987feSBjoern A. Zeeb 		 * Problem is if we do not error a MGMT/AUTH frame will be
235516d987feSBjoern A. Zeeb 		 * sent from net80211::sta_newstate(); disable lsta queue below.
2356105b9df2SBjoern A. Zeeb 		 */
2357105b9df2SBjoern A. Zeeb 	}
2358105b9df2SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
235916d987feSBjoern A. Zeeb 	/*
236016d987feSBjoern A. Zeeb 	 * Make sure in case the sta did not change and we re-added it,
236116d987feSBjoern A. Zeeb 	 * that we can tx again but only if the vif/iv_bss are in sync.
236216d987feSBjoern A. Zeeb 	 * Otherwise this should prevent the MGMT/AUTH frame from being
236316d987feSBjoern A. Zeeb 	 * sent triggering a warning in iwlwifi.
236416d987feSBjoern A. Zeeb 	 */
236516d987feSBjoern A. Zeeb 	LKPI_80211_LSTA_TXQ_LOCK(lsta);
236616d987feSBjoern A. Zeeb 	lsta->txq_ready = synched;
236716d987feSBjoern A. Zeeb 	LKPI_80211_LSTA_TXQ_UNLOCK(lsta);
2368105b9df2SBjoern A. Zeeb 	goto out_relocked;
2369105b9df2SBjoern A. Zeeb 
23706b4cac81SBjoern A. Zeeb out:
2371cd0fcf9fSBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
23726b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
2373105b9df2SBjoern A. Zeeb out_relocked:
23740936c648SBjoern A. Zeeb 	/*
2375105b9df2SBjoern A. Zeeb 	 * Release the reference that kept the ni stable locally
23760936c648SBjoern A. Zeeb 	 * during the work of this function.
23770936c648SBjoern A. Zeeb 	 */
23786b4cac81SBjoern A. Zeeb 	if (ni != NULL)
23796b4cac81SBjoern A. Zeeb 		ieee80211_free_node(ni);
23806b4cac81SBjoern A. Zeeb 	return (error);
23816b4cac81SBjoern A. Zeeb }
23826b4cac81SBjoern A. Zeeb 
23836b4cac81SBjoern A. Zeeb static int
23846b4cac81SBjoern A. Zeeb lkpi_sta_auth_to_scan(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
23856b4cac81SBjoern A. Zeeb {
23866b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
23876b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
23886b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
23896b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
23906b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
23916b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
23926b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
23936b4cac81SBjoern A. Zeeb 	struct ieee80211_prep_tx_info prep_tx_info;
23946b4cac81SBjoern A. Zeeb 	int error;
23956b4cac81SBjoern A. Zeeb 
23966b4cac81SBjoern A. Zeeb 	lhw = vap->iv_ic->ic_softc;
23976b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
23986b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
23996b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
24006b4cac81SBjoern A. Zeeb 
24012ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
24022ac8a218SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
24032ac8a218SBjoern A. Zeeb 	/* XXX-BZ KASSERT later; state going down so no action. */
24042ac8a218SBjoern A. Zeeb 	if (lvif->lvif_bss == NULL)
24052ac8a218SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: lvif %p vap %p iv_bss %p lvif_bss %p "
24062ac8a218SBjoern A. Zeeb 		    "lvif_bss->ni %p synched %d\n", __func__, __LINE__,
24072ac8a218SBjoern A. Zeeb 		    lvif, vap, vap->iv_bss, lvif->lvif_bss,
24082ac8a218SBjoern A. Zeeb 		    (lvif->lvif_bss != NULL) ? lvif->lvif_bss->ni : NULL,
24092ac8a218SBjoern A. Zeeb 		    lvif->lvif_bss_synched);
24102ac8a218SBjoern A. Zeeb #endif
24112ac8a218SBjoern A. Zeeb 
24122ac8a218SBjoern A. Zeeb 	lsta = lvif->lvif_bss;
24132ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
24142ac8a218SBjoern A. Zeeb 	KASSERT(lsta != NULL && lsta->ni != NULL, ("%s: lsta %p ni %p "
24152ac8a218SBjoern A. Zeeb 	    "lvif %p vap %p\n", __func__,
24162ac8a218SBjoern A. Zeeb 	    lsta, (lsta != NULL) ? lsta->ni : NULL, lvif, vap));
24172ac8a218SBjoern A. Zeeb 	ni = lsta->ni;			/* Reference held for lvif_bss. */
24186b4cac81SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
24196b4cac81SBjoern A. Zeeb 
242067674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
24216b4cac81SBjoern A. Zeeb 
24226b4cac81SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
2423cd0fcf9fSBjoern A. Zeeb 	wiphy_lock(hw->wiphy);
24246b4cac81SBjoern A. Zeeb 
2425d9f59799SBjoern A. Zeeb 	/* flush, drop. */
2426d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_flush(hw, vif,  nitems(sta->txq), true);
2427d9f59799SBjoern A. Zeeb 
24286b4cac81SBjoern A. Zeeb 	/* Wake tx queues to get packet(s) out. */
242988665349SBjoern A. Zeeb 	lkpi_wake_tx_queues(hw, sta, false, true);
24306b4cac81SBjoern A. Zeeb 
24316b4cac81SBjoern A. Zeeb 	/* flush, no drop */
24326b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_flush(hw, vif,  nitems(sta->txq), false);
24336b4cac81SBjoern A. Zeeb 
24346b4cac81SBjoern A. Zeeb 	/* End mgd_complete_tx. */
24356b4cac81SBjoern A. Zeeb 	if (lsta->in_mgd) {
24366b4cac81SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
24376b4cac81SBjoern A. Zeeb 		prep_tx_info.success = false;
24386b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info);
24396b4cac81SBjoern A. Zeeb 		lsta->in_mgd = false;
24406b4cac81SBjoern A. Zeeb 	}
24416b4cac81SBjoern A. Zeeb 
24426b4cac81SBjoern A. Zeeb 	/* sync_rx_queues */
24436b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_sync_rx_queues(hw);
24446b4cac81SBjoern A. Zeeb 
24456b4cac81SBjoern A. Zeeb 	/* sta_pre_rcu_remove */
24466b4cac81SBjoern A. Zeeb         lkpi_80211_mo_sta_pre_rcu_remove(hw, vif, sta);
2447d9f59799SBjoern A. Zeeb 
2448d9f59799SBjoern A. Zeeb 	/* Take the station down. */
24496b4cac81SBjoern A. Zeeb 
24506b4cac81SBjoern A. Zeeb 	/* Adjust sta and change state (from NONE) to NOTEXIST. */
24516b4cac81SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
24526b4cac81SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_NONE, ("%s: lsta %p state not "
2453d9f59799SBjoern A. Zeeb 	    "NONE: %#x, nstate %d arg %d\n", __func__, lsta, lsta->state, nstate, arg));
2454e7fe0373SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_NOTEXIST);
24556b4cac81SBjoern A. Zeeb 	if (error != 0) {
24566b4cac81SBjoern A. Zeeb 		IMPROVE("do we need to undo the chan ctx?");
2457018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: mo_sta_state(NOTEXIST) "
2458018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, error);
24596b4cac81SBjoern A. Zeeb 		goto out;
24606b4cac81SBjoern A. Zeeb 	}
24616b4cac81SBjoern A. Zeeb #if 0
24626b4cac81SBjoern A. Zeeb 	lsta->added_to_drv = false;	/* mo manages. */
24636b4cac81SBjoern A. Zeeb #endif
24646b4cac81SBjoern A. Zeeb 
246567674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
24666b4cac81SBjoern A. Zeeb 
24672ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
24682ac8a218SBjoern A. Zeeb 	/* Remove ni reference for this cache of lsta. */
24692ac8a218SBjoern A. Zeeb 	lvif->lvif_bss = NULL;
24702ac8a218SBjoern A. Zeeb 	lvif->lvif_bss_synched = false;
24712ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
2472d9f59799SBjoern A. Zeeb 	lkpi_lsta_remove(lsta, lvif);
24730936c648SBjoern A. Zeeb 	/*
24740936c648SBjoern A. Zeeb 	 * The very last release the reference on the ni for the ni/lsta on
24750936c648SBjoern A. Zeeb 	 * lvif->lvif_bss.  Upon return from this both ni and lsta are invalid
24760936c648SBjoern A. Zeeb 	 * and potentially freed.
24770936c648SBjoern A. Zeeb 	 */
24780936c648SBjoern A. Zeeb 	ieee80211_free_node(ni);
2479d9f59799SBjoern A. Zeeb 
2480d9f59799SBjoern A. Zeeb 	/* conf_tx */
2481d9f59799SBjoern A. Zeeb 
248250d826beSBjoern A. Zeeb 	lkpi_remove_chanctx(hw, vif);
24836b4cac81SBjoern A. Zeeb 
24846b4cac81SBjoern A. Zeeb out:
2485cd0fcf9fSBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
24866b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
24876b4cac81SBjoern A. Zeeb 	return (error);
24886b4cac81SBjoern A. Zeeb }
24896b4cac81SBjoern A. Zeeb 
24906b4cac81SBjoern A. Zeeb static int
24916b4cac81SBjoern A. Zeeb lkpi_sta_auth_to_init(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
24926b4cac81SBjoern A. Zeeb {
24936b4cac81SBjoern A. Zeeb 	int error;
24946b4cac81SBjoern A. Zeeb 
24956b4cac81SBjoern A. Zeeb 	error = lkpi_sta_auth_to_scan(vap, nstate, arg);
24966b4cac81SBjoern A. Zeeb 	if (error == 0)
24976b4cac81SBjoern A. Zeeb 		error = lkpi_sta_scan_to_init(vap, nstate, arg);
24986b4cac81SBjoern A. Zeeb 	return (error);
24996b4cac81SBjoern A. Zeeb }
25006b4cac81SBjoern A. Zeeb 
25016b4cac81SBjoern A. Zeeb static int
25026b4cac81SBjoern A. Zeeb lkpi_sta_auth_to_assoc(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
25036b4cac81SBjoern A. Zeeb {
25046b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
25056b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
25066b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
25076b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
25086b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
25096b4cac81SBjoern A. Zeeb 	struct ieee80211_prep_tx_info prep_tx_info;
25106b4cac81SBjoern A. Zeeb 	int error;
25116b4cac81SBjoern A. Zeeb 
25126b4cac81SBjoern A. Zeeb 	lhw = vap->iv_ic->ic_softc;
25136b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
25146b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
25156b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
25166b4cac81SBjoern A. Zeeb 
25176b4cac81SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
2518cd0fcf9fSBjoern A. Zeeb 	wiphy_lock(hw->wiphy);
25192ac8a218SBjoern A. Zeeb 
25202ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
25212ac8a218SBjoern A. Zeeb 	/* XXX-BZ KASSERT later? */
25222ac8a218SBjoern A. Zeeb 	if (!lvif->lvif_bss_synched || lvif->lvif_bss == NULL) {
25232ac8a218SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
25242ac8a218SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: lvif %p vap %p iv_bss %p lvif_bss %p "
25252ac8a218SBjoern A. Zeeb 		    "lvif_bss->ni %p synched %d\n", __func__, __LINE__,
25262ac8a218SBjoern A. Zeeb 		    lvif, vap, vap->iv_bss, lvif->lvif_bss,
25272ac8a218SBjoern A. Zeeb 		    (lvif->lvif_bss != NULL) ? lvif->lvif_bss->ni : NULL,
25282ac8a218SBjoern A. Zeeb 		    lvif->lvif_bss_synched);
25292ac8a218SBjoern A. Zeeb #endif
25302ac8a218SBjoern A. Zeeb 		error = ENOTRECOVERABLE;
25312ac8a218SBjoern A. Zeeb 		LKPI_80211_LVIF_UNLOCK(lvif);
25322ac8a218SBjoern A. Zeeb 		goto out;
25332ac8a218SBjoern A. Zeeb 	}
25342ac8a218SBjoern A. Zeeb 	lsta = lvif->lvif_bss;
25352ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
25362ac8a218SBjoern A. Zeeb 
25372ac8a218SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: lsta %p\n", __func__, lsta));
25386b4cac81SBjoern A. Zeeb 
25396b4cac81SBjoern A. Zeeb 	/* Finish auth. */
25406b4cac81SBjoern A. Zeeb 	IMPROVE("event callback");
25416b4cac81SBjoern A. Zeeb 
25426b4cac81SBjoern A. Zeeb 	/* Update sta_state (NONE to AUTH). */
25436b4cac81SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_NONE, ("%s: lsta %p state not "
25446b4cac81SBjoern A. Zeeb 	    "NONE: %#x\n", __func__, lsta, lsta->state));
2545e7fe0373SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_AUTH);
2546018d93ecSBjoern A. Zeeb 	if (error != 0) {
2547018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: mo_sta_state(AUTH) "
2548018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, error);
25496b4cac81SBjoern A. Zeeb 		goto out;
2550018d93ecSBjoern A. Zeeb 	}
25516b4cac81SBjoern A. Zeeb 
25526b4cac81SBjoern A. Zeeb 	/* End mgd_complete_tx. */
25536b4cac81SBjoern A. Zeeb 	if (lsta->in_mgd) {
25546b4cac81SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
25556b4cac81SBjoern A. Zeeb 		prep_tx_info.success = true;
25566b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info);
25576b4cac81SBjoern A. Zeeb 		lsta->in_mgd = false;
25586b4cac81SBjoern A. Zeeb 	}
25596b4cac81SBjoern A. Zeeb 
25606b4cac81SBjoern A. Zeeb 	/* Now start assoc. */
25616b4cac81SBjoern A. Zeeb 
25626b4cac81SBjoern A. Zeeb 	/* Start mgd_prepare_tx. */
25636b4cac81SBjoern A. Zeeb 	if (!lsta->in_mgd) {
25646b4cac81SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
25656b4cac81SBjoern A. Zeeb 		prep_tx_info.duration = PREP_TX_INFO_DURATION;
25666b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_mgd_prepare_tx(hw, vif, &prep_tx_info);
25676b4cac81SBjoern A. Zeeb 		lsta->in_mgd = true;
25686b4cac81SBjoern A. Zeeb 	}
25696b4cac81SBjoern A. Zeeb 
25706b4cac81SBjoern A. Zeeb 	/* Wake tx queue to get packet out. */
257188665349SBjoern A. Zeeb 	lkpi_wake_tx_queues(hw, LSTA_TO_STA(lsta), false, true);
25726b4cac81SBjoern A. Zeeb 
25736b4cac81SBjoern A. Zeeb 	/*
25746b4cac81SBjoern A. Zeeb 	 * <twiddle> .. we end up in "assoc_to_run"
25756b4cac81SBjoern A. Zeeb 	 * - update sta_state (AUTH to ASSOC)
25766b4cac81SBjoern A. Zeeb 	 * - conf_tx [all]
25776b4cac81SBjoern A. Zeeb 	 * - bss_info_changed (assoc, aid, ssid, ..)
25786b4cac81SBjoern A. Zeeb 	 * - change_chanctx (if needed)
25796b4cac81SBjoern A. Zeeb 	 * - event_callback
25806b4cac81SBjoern A. Zeeb 	 * - mgd_complete_tx
25816b4cac81SBjoern A. Zeeb 	 */
25826b4cac81SBjoern A. Zeeb 
25836b4cac81SBjoern A. Zeeb out:
2584cd0fcf9fSBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
25856b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
25866b4cac81SBjoern A. Zeeb 	return (error);
25876b4cac81SBjoern A. Zeeb }
25886b4cac81SBjoern A. Zeeb 
25896b4cac81SBjoern A. Zeeb /* auth_to_auth, assoc_to_assoc. */
25906b4cac81SBjoern A. Zeeb static int
25916b4cac81SBjoern A. Zeeb lkpi_sta_a_to_a(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
25926b4cac81SBjoern A. Zeeb {
25936b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
25946b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
25956b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
25966b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
25976b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
25986b4cac81SBjoern A. Zeeb 	struct ieee80211_prep_tx_info prep_tx_info;
25992ac8a218SBjoern A. Zeeb 	int error;
26006b4cac81SBjoern A. Zeeb 
26016b4cac81SBjoern A. Zeeb 	lhw = vap->iv_ic->ic_softc;
26026b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
26036b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
26046b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
26056b4cac81SBjoern A. Zeeb 
26066b4cac81SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
2607cd0fcf9fSBjoern A. Zeeb 	wiphy_lock(hw->wiphy);
26082ac8a218SBjoern A. Zeeb 
26092ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
26102ac8a218SBjoern A. Zeeb 	/* XXX-BZ KASSERT later? */
26112ac8a218SBjoern A. Zeeb 	if (!lvif->lvif_bss_synched || lvif->lvif_bss == NULL) {
26122ac8a218SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
26132ac8a218SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: lvif %p vap %p iv_bss %p lvif_bss %p "
26142ac8a218SBjoern A. Zeeb 		    "lvif_bss->ni %p synched %d\n", __func__, __LINE__,
26152ac8a218SBjoern A. Zeeb 		    lvif, vap, vap->iv_bss, lvif->lvif_bss,
26162ac8a218SBjoern A. Zeeb 		    (lvif->lvif_bss != NULL) ? lvif->lvif_bss->ni : NULL,
26172ac8a218SBjoern A. Zeeb 		    lvif->lvif_bss_synched);
26182ac8a218SBjoern A. Zeeb #endif
26192ac8a218SBjoern A. Zeeb 		LKPI_80211_LVIF_UNLOCK(lvif);
26202ac8a218SBjoern A. Zeeb 		error = ENOTRECOVERABLE;
26212ac8a218SBjoern A. Zeeb 		goto out;
26222ac8a218SBjoern A. Zeeb 	}
26232ac8a218SBjoern A. Zeeb 	lsta = lvif->lvif_bss;
26242ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
26252ac8a218SBjoern A. Zeeb 
26262ac8a218SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: lsta %p! lvif %p vap %p\n", __func__,
26272ac8a218SBjoern A. Zeeb 	    lsta, lvif, vap));
26286b4cac81SBjoern A. Zeeb 
26296b4cac81SBjoern A. Zeeb 	IMPROVE("event callback?");
26306b4cac81SBjoern A. Zeeb 
26316b4cac81SBjoern A. Zeeb 	/* End mgd_complete_tx. */
26326b4cac81SBjoern A. Zeeb 	if (lsta->in_mgd) {
26336b4cac81SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
26346b4cac81SBjoern A. Zeeb 		prep_tx_info.success = false;
26356b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info);
26366b4cac81SBjoern A. Zeeb 		lsta->in_mgd = false;
26376b4cac81SBjoern A. Zeeb 	}
26386b4cac81SBjoern A. Zeeb 
26396b4cac81SBjoern A. Zeeb 	/* Now start assoc. */
26406b4cac81SBjoern A. Zeeb 
26416b4cac81SBjoern A. Zeeb 	/* Start mgd_prepare_tx. */
26426b4cac81SBjoern A. Zeeb 	if (!lsta->in_mgd) {
26436b4cac81SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
26446b4cac81SBjoern A. Zeeb 		prep_tx_info.duration = PREP_TX_INFO_DURATION;
26456b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_mgd_prepare_tx(hw, vif, &prep_tx_info);
26466b4cac81SBjoern A. Zeeb 		lsta->in_mgd = true;
26476b4cac81SBjoern A. Zeeb 	}
26486b4cac81SBjoern A. Zeeb 
26492ac8a218SBjoern A. Zeeb 	error = 0;
26502ac8a218SBjoern A. Zeeb out:
2651cd0fcf9fSBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
26526b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
26536b4cac81SBjoern A. Zeeb 
26542ac8a218SBjoern A. Zeeb 	return (error);
26556b4cac81SBjoern A. Zeeb }
26566b4cac81SBjoern A. Zeeb 
26576b4cac81SBjoern A. Zeeb static int
2658d9f59799SBjoern A. Zeeb _lkpi_sta_assoc_to_down(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
26596b4cac81SBjoern A. Zeeb {
26606b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
26616b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
26626b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
26636b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
26646b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
26656b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
26666b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
26676b4cac81SBjoern A. Zeeb 	struct ieee80211_prep_tx_info prep_tx_info;
2668d9f59799SBjoern A. Zeeb 	enum ieee80211_bss_changed bss_changed;
26696b4cac81SBjoern A. Zeeb 	int error;
26706b4cac81SBjoern A. Zeeb 
26716b4cac81SBjoern A. Zeeb 	lhw = vap->iv_ic->ic_softc;
26726b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
26736b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
26746b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
26756b4cac81SBjoern A. Zeeb 
26762ac8a218SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
2677cd0fcf9fSBjoern A. Zeeb 	wiphy_lock(hw->wiphy);
26782ac8a218SBjoern A. Zeeb 
26792ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
26802ac8a218SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
26812ac8a218SBjoern A. Zeeb 	/* XXX-BZ KASSERT later; state going down so no action. */
26822ac8a218SBjoern A. Zeeb 	if (lvif->lvif_bss == NULL)
26832ac8a218SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: lvif %p vap %p iv_bss %p lvif_bss %p "
26842ac8a218SBjoern A. Zeeb 		    "lvif_bss->ni %p synched %d\n", __func__, __LINE__,
26852ac8a218SBjoern A. Zeeb 		    lvif, vap, vap->iv_bss, lvif->lvif_bss,
26862ac8a218SBjoern A. Zeeb 		    (lvif->lvif_bss != NULL) ? lvif->lvif_bss->ni : NULL,
26872ac8a218SBjoern A. Zeeb 		    lvif->lvif_bss_synched);
26882ac8a218SBjoern A. Zeeb #endif
26892ac8a218SBjoern A. Zeeb 	lsta = lvif->lvif_bss;
26902ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
26912ac8a218SBjoern A. Zeeb 	KASSERT(lsta != NULL && lsta->ni != NULL, ("%s: lsta %p ni %p "
26922ac8a218SBjoern A. Zeeb 	    "lvif %p vap %p\n", __func__,
26932ac8a218SBjoern A. Zeeb 	    lsta, (lsta != NULL) ? lsta->ni : NULL, lvif, vap));
26942ac8a218SBjoern A. Zeeb 
26952ac8a218SBjoern A. Zeeb 	ni = lsta->ni;		/* Reference held for lvif_bss. */
26966b4cac81SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
26976b4cac81SBjoern A. Zeeb 
269867674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
2699d9f59799SBjoern A. Zeeb 
2700d9f59799SBjoern A. Zeeb 	/* flush, drop. */
2701d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_flush(hw, vif,  nitems(sta->txq), true);
2702d9f59799SBjoern A. Zeeb 
2703d9f59799SBjoern A. Zeeb 	IMPROVE("What are the proper conditions for DEAUTH_NEED_MGD_TX_PREP?");
2704d9f59799SBjoern A. Zeeb 	if (ieee80211_hw_check(hw, DEAUTH_NEED_MGD_TX_PREP) &&
2705d9f59799SBjoern A. Zeeb 	    !lsta->in_mgd) {
2706d9f59799SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
2707d9f59799SBjoern A. Zeeb 		prep_tx_info.duration = PREP_TX_INFO_DURATION;
2708ac1d519cSBjoern A. Zeeb 		prep_tx_info.was_assoc = true;
2709d9f59799SBjoern A. Zeeb 		lkpi_80211_mo_mgd_prepare_tx(hw, vif, &prep_tx_info);
2710d9f59799SBjoern A. Zeeb 		lsta->in_mgd = true;
2711d9f59799SBjoern A. Zeeb 	}
2712d9f59799SBjoern A. Zeeb 
2713cd0fcf9fSBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
2714d9f59799SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
2715d9f59799SBjoern A. Zeeb 
271688665349SBjoern A. Zeeb 	/* Call iv_newstate first so we get potential DEAUTH packet out. */
2717d9f59799SBjoern A. Zeeb 	error = lvif->iv_newstate(vap, nstate, arg);
2718018d93ecSBjoern A. Zeeb 	if (error != 0) {
2719018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: iv_newstate(%p, %d, %d) "
2720018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, vap, nstate, arg, error);
2721d9f59799SBjoern A. Zeeb 		goto outni;
2722018d93ecSBjoern A. Zeeb 	}
2723d9f59799SBjoern A. Zeeb 
2724d9f59799SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
272588665349SBjoern A. Zeeb 
272688665349SBjoern A. Zeeb 	/* Ensure the packets get out. */
272788665349SBjoern A. Zeeb 	lkpi_80211_flush_tx(lhw, lsta);
272888665349SBjoern A. Zeeb 
2729cd0fcf9fSBjoern A. Zeeb 	wiphy_lock(hw->wiphy);
2730d9f59799SBjoern A. Zeeb 
273167674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
2732d9f59799SBjoern A. Zeeb 
2733d9f59799SBjoern A. Zeeb 	/* Wake tx queues to get packet(s) out. */
273488665349SBjoern A. Zeeb 	lkpi_wake_tx_queues(hw, sta, false, true);
2735d9f59799SBjoern A. Zeeb 
2736d9f59799SBjoern A. Zeeb 	/* flush, no drop */
2737d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_flush(hw, vif,  nitems(sta->txq), false);
2738d9f59799SBjoern A. Zeeb 
27396b4cac81SBjoern A. Zeeb 	/* End mgd_complete_tx. */
27406b4cac81SBjoern A. Zeeb 	if (lsta->in_mgd) {
27416b4cac81SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
27426b4cac81SBjoern A. Zeeb 		prep_tx_info.success = false;
2743ac1d519cSBjoern A. Zeeb 		prep_tx_info.was_assoc = true;
27446b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info);
27456b4cac81SBjoern A. Zeeb 		lsta->in_mgd = false;
27466b4cac81SBjoern A. Zeeb 	}
27476b4cac81SBjoern A. Zeeb 
2748d9f59799SBjoern A. Zeeb 	/* sync_rx_queues */
2749d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_sync_rx_queues(hw);
2750d9f59799SBjoern A. Zeeb 
2751d9f59799SBjoern A. Zeeb 	/* sta_pre_rcu_remove */
2752d9f59799SBjoern A. Zeeb         lkpi_80211_mo_sta_pre_rcu_remove(hw, vif, sta);
2753d9f59799SBjoern A. Zeeb 
2754d9f59799SBjoern A. Zeeb 	/* Take the station down. */
2755d9f59799SBjoern A. Zeeb 
27566b4cac81SBjoern A. Zeeb 	/* Update sta and change state (from AUTH) to NONE. */
27576b4cac81SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
27586b4cac81SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_AUTH, ("%s: lsta %p state not "
27596b4cac81SBjoern A. Zeeb 	    "AUTH: %#x\n", __func__, lsta, lsta->state));
2760e7fe0373SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_NONE);
2761018d93ecSBjoern A. Zeeb 	if (error != 0) {
2762018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: mo_sta_state(NONE) "
2763018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, error);
27646b4cac81SBjoern A. Zeeb 		goto out;
2765018d93ecSBjoern A. Zeeb 	}
27666b4cac81SBjoern A. Zeeb 
27675a4d2461SBjoern A. Zeeb 	/* See comment in lkpi_sta_run_to_init(). */
27685a4d2461SBjoern A. Zeeb 	bss_changed = 0;
27695a4d2461SBjoern A. Zeeb 	bss_changed |= lkpi_disassoc(sta, vif, lhw);
27706b4cac81SBjoern A. Zeeb 
27715a4d2461SBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
277216e688b2SBjoern A. Zeeb 
2773d9f59799SBjoern A. Zeeb 	/* Adjust sta and change state (from NONE) to NOTEXIST. */
2774d9f59799SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
2775d9f59799SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_NONE, ("%s: lsta %p state not "
2776d9f59799SBjoern A. Zeeb 	    "NONE: %#x, nstate %d arg %d\n", __func__, lsta, lsta->state, nstate, arg));
2777e7fe0373SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_NOTEXIST);
2778d9f59799SBjoern A. Zeeb 	if (error != 0) {
2779d9f59799SBjoern A. Zeeb 		IMPROVE("do we need to undo the chan ctx?");
2780018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: mo_sta_state(NOTEXIST) "
2781018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, error);
2782d9f59799SBjoern A. Zeeb 		goto out;
2783d9f59799SBjoern A. Zeeb 	}
2784d9f59799SBjoern A. Zeeb 
278516e688b2SBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);	/* sta no longer save to use. */
2786d9f59799SBjoern A. Zeeb 
2787d9f59799SBjoern A. Zeeb 	IMPROVE("Any bss_info changes to announce?");
2788d9f59799SBjoern A. Zeeb 	vif->bss_conf.qos = 0;
2789d9f59799SBjoern A. Zeeb 	bss_changed |= BSS_CHANGED_QOS;
2790616e1330SBjoern A. Zeeb 	vif->cfg.ssid_len = 0;
2791616e1330SBjoern A. Zeeb 	memset(vif->cfg.ssid, '\0', sizeof(vif->cfg.ssid));
2792d9f59799SBjoern A. Zeeb 	bss_changed |= BSS_CHANGED_BSSID;
2793d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, bss_changed);
2794d9f59799SBjoern A. Zeeb 
27952ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
27962ac8a218SBjoern A. Zeeb 	/* Remove ni reference for this cache of lsta. */
27972ac8a218SBjoern A. Zeeb 	lvif->lvif_bss = NULL;
27982ac8a218SBjoern A. Zeeb 	lvif->lvif_bss_synched = false;
27992ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
2800d9f59799SBjoern A. Zeeb 	lkpi_lsta_remove(lsta, lvif);
28010936c648SBjoern A. Zeeb 	/*
28020936c648SBjoern A. Zeeb 	 * The very last release the reference on the ni for the ni/lsta on
28030936c648SBjoern A. Zeeb 	 * lvif->lvif_bss.  Upon return from this both ni and lsta are invalid
28040936c648SBjoern A. Zeeb 	 * and potentially freed.
28050936c648SBjoern A. Zeeb 	 */
28060936c648SBjoern A. Zeeb 	ieee80211_free_node(ni);
2807d9f59799SBjoern A. Zeeb 
2808d9f59799SBjoern A. Zeeb 	/* conf_tx */
2809d9f59799SBjoern A. Zeeb 
281050d826beSBjoern A. Zeeb 	lkpi_remove_chanctx(hw, vif);
2811d9f59799SBjoern A. Zeeb 
2812d9f59799SBjoern A. Zeeb 	error = EALREADY;
28136b4cac81SBjoern A. Zeeb out:
2814cd0fcf9fSBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
28156b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
2816d9f59799SBjoern A. Zeeb outni:
28176b4cac81SBjoern A. Zeeb 	return (error);
28186b4cac81SBjoern A. Zeeb }
28196b4cac81SBjoern A. Zeeb 
28206b4cac81SBjoern A. Zeeb static int
2821d9f59799SBjoern A. Zeeb lkpi_sta_assoc_to_auth(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
2822d9f59799SBjoern A. Zeeb {
2823d9f59799SBjoern A. Zeeb 	int error;
2824d9f59799SBjoern A. Zeeb 
2825d9f59799SBjoern A. Zeeb 	error = _lkpi_sta_assoc_to_down(vap, nstate, arg);
2826d9f59799SBjoern A. Zeeb 	if (error != 0 && error != EALREADY)
2827d9f59799SBjoern A. Zeeb 		return (error);
2828d9f59799SBjoern A. Zeeb 
2829d9f59799SBjoern A. Zeeb 	/* At this point iv_bss is long a new node! */
2830d9f59799SBjoern A. Zeeb 
2831d9f59799SBjoern A. Zeeb 	error |= lkpi_sta_scan_to_auth(vap, nstate, 0);
2832d9f59799SBjoern A. Zeeb 	return (error);
2833d9f59799SBjoern A. Zeeb }
2834d9f59799SBjoern A. Zeeb 
2835d9f59799SBjoern A. Zeeb static int
28366b4cac81SBjoern A. Zeeb lkpi_sta_assoc_to_scan(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
28376b4cac81SBjoern A. Zeeb {
28386b4cac81SBjoern A. Zeeb 	int error;
28396b4cac81SBjoern A. Zeeb 
2840d9f59799SBjoern A. Zeeb 	error = _lkpi_sta_assoc_to_down(vap, nstate, arg);
28416b4cac81SBjoern A. Zeeb 	return (error);
28426b4cac81SBjoern A. Zeeb }
28436b4cac81SBjoern A. Zeeb 
28446b4cac81SBjoern A. Zeeb static int
28456b4cac81SBjoern A. Zeeb lkpi_sta_assoc_to_init(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
28466b4cac81SBjoern A. Zeeb {
28476b4cac81SBjoern A. Zeeb 	int error;
28486b4cac81SBjoern A. Zeeb 
2849d9f59799SBjoern A. Zeeb 	error = _lkpi_sta_assoc_to_down(vap, nstate, arg);
28506b4cac81SBjoern A. Zeeb 	return (error);
28516b4cac81SBjoern A. Zeeb }
28526b4cac81SBjoern A. Zeeb 
28536b4cac81SBjoern A. Zeeb static int
28546b4cac81SBjoern A. Zeeb lkpi_sta_assoc_to_run(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
28556b4cac81SBjoern A. Zeeb {
28566b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
28576b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
28586b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
28596b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
28606b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
28616b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
28626b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
28636b4cac81SBjoern A. Zeeb 	struct ieee80211_prep_tx_info prep_tx_info;
28646b4cac81SBjoern A. Zeeb 	enum ieee80211_bss_changed bss_changed;
28656b4cac81SBjoern A. Zeeb 	int error;
28666b4cac81SBjoern A. Zeeb 
28676b4cac81SBjoern A. Zeeb 	lhw = vap->iv_ic->ic_softc;
28686b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
28696b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
28706b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
28716b4cac81SBjoern A. Zeeb 
28726b4cac81SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
2873cd0fcf9fSBjoern A. Zeeb 	wiphy_lock(hw->wiphy);
28742ac8a218SBjoern A. Zeeb 
28752ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
28762ac8a218SBjoern A. Zeeb 	/* XXX-BZ KASSERT later? */
28772ac8a218SBjoern A. Zeeb 	if (!lvif->lvif_bss_synched || lvif->lvif_bss == NULL) {
28782ac8a218SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
28792ac8a218SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: lvif %p vap %p iv_bss %p lvif_bss %p "
28802ac8a218SBjoern A. Zeeb 		    "lvif_bss->ni %p synched %d\n", __func__, __LINE__,
28812ac8a218SBjoern A. Zeeb 		    lvif, vap, vap->iv_bss, lvif->lvif_bss,
28822ac8a218SBjoern A. Zeeb 		    (lvif->lvif_bss != NULL) ? lvif->lvif_bss->ni : NULL,
28832ac8a218SBjoern A. Zeeb 		    lvif->lvif_bss_synched);
28842ac8a218SBjoern A. Zeeb #endif
28852ac8a218SBjoern A. Zeeb 		LKPI_80211_LVIF_UNLOCK(lvif);
28862ac8a218SBjoern A. Zeeb 		error = ENOTRECOVERABLE;
28872ac8a218SBjoern A. Zeeb 		goto out;
28882ac8a218SBjoern A. Zeeb 	}
28892ac8a218SBjoern A. Zeeb 	lsta = lvif->lvif_bss;
28902ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
28912ac8a218SBjoern A. Zeeb 	KASSERT(lsta != NULL && lsta->ni != NULL, ("%s: lsta %p ni %p "
28922ac8a218SBjoern A. Zeeb 	    "lvif %p vap %p\n", __func__,
28932ac8a218SBjoern A. Zeeb 	    lsta, (lsta != NULL) ? lsta->ni : NULL, lvif, vap));
28942ac8a218SBjoern A. Zeeb 
28952ac8a218SBjoern A. Zeeb 	ni = lsta->ni;		/* Reference held for lvif_bss. */
28966b4cac81SBjoern A. Zeeb 
28976b4cac81SBjoern A. Zeeb 	IMPROVE("ponder some of this moved to ic_newassoc, scan_assoc_success, "
28986b4cac81SBjoern A. Zeeb 	    "and to lesser extend ieee80211_notify_node_join");
28996b4cac81SBjoern A. Zeeb 
29009597f7cbSBjoern A. Zeeb 	/* Finish assoc. */
29019597f7cbSBjoern A. Zeeb 	/* Update sta_state (AUTH to ASSOC) and set aid. */
29029597f7cbSBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_AUTH, ("%s: lsta %p state not "
29039597f7cbSBjoern A. Zeeb 	    "AUTH: %#x\n", __func__, lsta, lsta->state));
29046b4cac81SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
29059597f7cbSBjoern A. Zeeb 	sta->aid = IEEE80211_NODE_AID(ni);
29064a67f1dfSBjoern A. Zeeb #ifdef LKPI_80211_WME
29074a67f1dfSBjoern A. Zeeb 	if (vap->iv_flags & IEEE80211_F_WME)
29084a67f1dfSBjoern A. Zeeb 		sta->wme = true;
29094a67f1dfSBjoern A. Zeeb #endif
2910e7fe0373SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_ASSOC);
2911018d93ecSBjoern A. Zeeb 	if (error != 0) {
2912018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: mo_sta_state(ASSOC) "
2913018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, error);
29149597f7cbSBjoern A. Zeeb 		goto out;
2915018d93ecSBjoern A. Zeeb 	}
29166b4cac81SBjoern A. Zeeb 
29176b4cac81SBjoern A. Zeeb 	IMPROVE("wme / conf_tx [all]");
29186b4cac81SBjoern A. Zeeb 
29196b4cac81SBjoern A. Zeeb 	/* Update bss info (bss_info_changed) (assoc, aid, ..). */
29206b4cac81SBjoern A. Zeeb 	bss_changed = 0;
29214a67f1dfSBjoern A. Zeeb #ifdef LKPI_80211_WME
29224a67f1dfSBjoern A. Zeeb 	bss_changed |= lkpi_wme_update(lhw, vap, true);
29234a67f1dfSBjoern A. Zeeb #endif
2924616e1330SBjoern A. Zeeb 	if (!vif->cfg.assoc || vif->cfg.aid != IEEE80211_NODE_AID(ni)) {
2925616e1330SBjoern A. Zeeb 		vif->cfg.assoc = true;
2926616e1330SBjoern A. Zeeb 		vif->cfg.aid = IEEE80211_NODE_AID(ni);
29276b4cac81SBjoern A. Zeeb 		bss_changed |= BSS_CHANGED_ASSOC;
29286b4cac81SBjoern A. Zeeb 	}
29296b4cac81SBjoern A. Zeeb 	/* We set SSID but this is not BSSID! */
2930616e1330SBjoern A. Zeeb 	vif->cfg.ssid_len = ni->ni_esslen;
2931616e1330SBjoern A. Zeeb 	memcpy(vif->cfg.ssid, ni->ni_essid, ni->ni_esslen);
29326b4cac81SBjoern A. Zeeb 	if ((vap->iv_flags & IEEE80211_F_SHPREAMBLE) !=
29336b4cac81SBjoern A. Zeeb 	    vif->bss_conf.use_short_preamble) {
29346b4cac81SBjoern A. Zeeb 		vif->bss_conf.use_short_preamble ^= 1;
29356b4cac81SBjoern A. Zeeb 		/* bss_changed |= BSS_CHANGED_??? */
29366b4cac81SBjoern A. Zeeb 	}
29376b4cac81SBjoern A. Zeeb 	if ((vap->iv_flags & IEEE80211_F_SHSLOT) !=
29386b4cac81SBjoern A. Zeeb 	    vif->bss_conf.use_short_slot) {
29396b4cac81SBjoern A. Zeeb 		vif->bss_conf.use_short_slot ^= 1;
29406b4cac81SBjoern A. Zeeb 		/* bss_changed |= BSS_CHANGED_??? */
29416b4cac81SBjoern A. Zeeb 	}
29426b4cac81SBjoern A. Zeeb 	if ((ni->ni_flags & IEEE80211_NODE_QOS) !=
29436b4cac81SBjoern A. Zeeb 	    vif->bss_conf.qos) {
29446b4cac81SBjoern A. Zeeb 		vif->bss_conf.qos ^= 1;
29456b4cac81SBjoern A. Zeeb 		bss_changed |= BSS_CHANGED_QOS;
29466b4cac81SBjoern A. Zeeb 	}
2947fa8f007dSBjoern A. Zeeb 
2948fa8f007dSBjoern A. Zeeb 	bss_changed |= lkpi_update_dtim_tsf(vif, ni, vap, __func__, __LINE__);
29496b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, bss_changed);
29506b4cac81SBjoern A. Zeeb 
29516b4cac81SBjoern A. Zeeb 	/* - change_chanctx (if needed)
29526b4cac81SBjoern A. Zeeb 	 * - event_callback
29536b4cac81SBjoern A. Zeeb 	 */
29546b4cac81SBjoern A. Zeeb 
29556b4cac81SBjoern A. Zeeb 	/* End mgd_complete_tx. */
29566b4cac81SBjoern A. Zeeb 	if (lsta->in_mgd) {
29576b4cac81SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
29586b4cac81SBjoern A. Zeeb 		prep_tx_info.success = true;
29596b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info);
29606b4cac81SBjoern A. Zeeb 		lsta->in_mgd = false;
29616b4cac81SBjoern A. Zeeb 	}
29626b4cac81SBjoern A. Zeeb 
2963086be6a8SBjoern A. Zeeb 	lkpi_hw_conf_idle(hw, false);
2964086be6a8SBjoern A. Zeeb 
29656b4cac81SBjoern A. Zeeb 	/*
29666b4cac81SBjoern A. Zeeb 	 * And then:
29676b4cac81SBjoern A. Zeeb 	 * - (more packets)?
29686b4cac81SBjoern A. Zeeb 	 * - set_key
29696b4cac81SBjoern A. Zeeb 	 * - set_default_unicast_key
29706b4cac81SBjoern A. Zeeb 	 * - set_key (?)
29716b4cac81SBjoern A. Zeeb 	 * - ipv6_addr_change (?)
29726b4cac81SBjoern A. Zeeb 	 */
29736b4cac81SBjoern A. Zeeb 	/* Prepare_multicast && configure_filter. */
29746b4cac81SBjoern A. Zeeb 	lhw->update_mc = true;
29756b4cac81SBjoern A. Zeeb 	lkpi_update_mcast_filter(vap->iv_ic, true);
29766b4cac81SBjoern A. Zeeb 
29776b4cac81SBjoern A. Zeeb 	if (!ieee80211_node_is_authorized(ni)) {
29786b4cac81SBjoern A. Zeeb 		IMPROVE("net80211 does not consider node authorized");
29796b4cac81SBjoern A. Zeeb 	}
29806b4cac81SBjoern A. Zeeb 
29819fb91463SBjoern A. Zeeb 	IMPROVE("Is this the right spot, has net80211 done all updates already?");
298262d51a43SBjoern A. Zeeb 	lkpi_sta_sync_from_ni(hw, vif, sta, ni, true);
29839fb91463SBjoern A. Zeeb 
29846b4cac81SBjoern A. Zeeb 	/* Update sta_state (ASSOC to AUTHORIZED). */
29856b4cac81SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
29866b4cac81SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_ASSOC, ("%s: lsta %p state not "
29876b4cac81SBjoern A. Zeeb 	    "ASSOC: %#x\n", __func__, lsta, lsta->state));
2988e7fe0373SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_AUTHORIZED);
29896b4cac81SBjoern A. Zeeb 	if (error != 0) {
29906b4cac81SBjoern A. Zeeb 		IMPROVE("undo some changes?");
2991018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: mo_sta_state(AUTHORIZED) "
2992018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, error);
29936b4cac81SBjoern A. Zeeb 		goto out;
29946b4cac81SBjoern A. Zeeb 	}
29956b4cac81SBjoern A. Zeeb 
29966b4cac81SBjoern A. Zeeb 	/* - drv_config (?)
29976b4cac81SBjoern A. Zeeb 	 * - bss_info_changed
29986b4cac81SBjoern A. Zeeb 	 * - set_rekey_data (?)
29996b4cac81SBjoern A. Zeeb 	 *
30006b4cac81SBjoern A. Zeeb 	 * And now we should be passing packets.
30016b4cac81SBjoern A. Zeeb 	 */
30026b4cac81SBjoern A. Zeeb 	IMPROVE("Need that bssid setting, and the keys");
30036b4cac81SBjoern A. Zeeb 
3004fa8f007dSBjoern A. Zeeb 	bss_changed = 0;
3005fa8f007dSBjoern A. Zeeb 	bss_changed |= lkpi_update_dtim_tsf(vif, ni, vap, __func__, __LINE__);
3006fa8f007dSBjoern A. Zeeb 	lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, bss_changed);
3007fa8f007dSBjoern A. Zeeb 
30086b4cac81SBjoern A. Zeeb out:
3009cd0fcf9fSBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
30106b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
30116b4cac81SBjoern A. Zeeb 	return (error);
30126b4cac81SBjoern A. Zeeb }
30136b4cac81SBjoern A. Zeeb 
30146b4cac81SBjoern A. Zeeb static int
30156b4cac81SBjoern A. Zeeb lkpi_sta_auth_to_run(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
30166b4cac81SBjoern A. Zeeb {
30176b4cac81SBjoern A. Zeeb 	int error;
30186b4cac81SBjoern A. Zeeb 
30196b4cac81SBjoern A. Zeeb 	error = lkpi_sta_auth_to_assoc(vap, nstate, arg);
30206b4cac81SBjoern A. Zeeb 	if (error == 0)
30216b4cac81SBjoern A. Zeeb 		error = lkpi_sta_assoc_to_run(vap, nstate, arg);
30226b4cac81SBjoern A. Zeeb 	return (error);
30236b4cac81SBjoern A. Zeeb }
30246b4cac81SBjoern A. Zeeb 
30256b4cac81SBjoern A. Zeeb static int
30266b4cac81SBjoern A. Zeeb lkpi_sta_run_to_assoc(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
30276b4cac81SBjoern A. Zeeb {
30286b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
30296b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
30306b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
30316b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
30326b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
30336b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
30346b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
3035d9f59799SBjoern A. Zeeb 	struct ieee80211_prep_tx_info prep_tx_info;
3036d9f59799SBjoern A. Zeeb #if 0
3037d9f59799SBjoern A. Zeeb 	enum ieee80211_bss_changed bss_changed;
3038d9f59799SBjoern A. Zeeb #endif
30396b4cac81SBjoern A. Zeeb 	int error;
30406b4cac81SBjoern A. Zeeb 
30416b4cac81SBjoern A. Zeeb 	lhw = vap->iv_ic->ic_softc;
30426b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
30436b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
30446b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
30456b4cac81SBjoern A. Zeeb 
30462ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
30472ac8a218SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
30482ac8a218SBjoern A. Zeeb 	/* XXX-BZ KASSERT later; state going down so no action. */
30492ac8a218SBjoern A. Zeeb 	if (lvif->lvif_bss == NULL)
30502ac8a218SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: lvif %p vap %p iv_bss %p lvif_bss %p "
30512ac8a218SBjoern A. Zeeb 		    "lvif_bss->ni %p synched %d\n", __func__, __LINE__,
30522ac8a218SBjoern A. Zeeb 		    lvif, vap, vap->iv_bss, lvif->lvif_bss,
30532ac8a218SBjoern A. Zeeb 		    (lvif->lvif_bss != NULL) ? lvif->lvif_bss->ni : NULL,
30542ac8a218SBjoern A. Zeeb 		    lvif->lvif_bss_synched);
30552ac8a218SBjoern A. Zeeb #endif
30562ac8a218SBjoern A. Zeeb 	lsta = lvif->lvif_bss;
30572ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
30582ac8a218SBjoern A. Zeeb 	KASSERT(lsta != NULL && lsta->ni != NULL, ("%s: lsta %p ni %p "
30592ac8a218SBjoern A. Zeeb 	    "lvif %p vap %p\n", __func__,
30602ac8a218SBjoern A. Zeeb 	    lsta, (lsta != NULL) ? lsta->ni : NULL, lvif, vap));
30612ac8a218SBjoern A. Zeeb 
30622ac8a218SBjoern A. Zeeb 	ni = lsta->ni;		/* Reference held for lvif_bss. */
30636b4cac81SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
30646b4cac81SBjoern A. Zeeb 
306567674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
3066d9f59799SBjoern A. Zeeb 
3067d9f59799SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
3068cd0fcf9fSBjoern A. Zeeb 	wiphy_lock(hw->wiphy);
3069d9f59799SBjoern A. Zeeb 
3070d9f59799SBjoern A. Zeeb 	/* flush, drop. */
3071d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_flush(hw, vif,  nitems(sta->txq), true);
3072d9f59799SBjoern A. Zeeb 
3073d9f59799SBjoern A. Zeeb 	IMPROVE("What are the proper conditions for DEAUTH_NEED_MGD_TX_PREP?");
3074d9f59799SBjoern A. Zeeb 	if (ieee80211_hw_check(hw, DEAUTH_NEED_MGD_TX_PREP) &&
3075d9f59799SBjoern A. Zeeb 	    !lsta->in_mgd) {
3076d9f59799SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
3077d9f59799SBjoern A. Zeeb 		prep_tx_info.duration = PREP_TX_INFO_DURATION;
3078ac1d519cSBjoern A. Zeeb 		prep_tx_info.was_assoc = true;
3079d9f59799SBjoern A. Zeeb 		lkpi_80211_mo_mgd_prepare_tx(hw, vif, &prep_tx_info);
3080d9f59799SBjoern A. Zeeb 		lsta->in_mgd = true;
3081d9f59799SBjoern A. Zeeb 	}
3082d9f59799SBjoern A. Zeeb 
3083cd0fcf9fSBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
3084d9f59799SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
3085d9f59799SBjoern A. Zeeb 
3086d9f59799SBjoern A. Zeeb 	/* Call iv_newstate first so we get potential DISASSOC packet out. */
3087d9f59799SBjoern A. Zeeb 	error = lvif->iv_newstate(vap, nstate, arg);
3088018d93ecSBjoern A. Zeeb 	if (error != 0) {
3089018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: iv_newstate(%p, %d, %d) "
3090018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, vap, nstate, arg, error);
3091d9f59799SBjoern A. Zeeb 		goto outni;
3092018d93ecSBjoern A. Zeeb 	}
3093d9f59799SBjoern A. Zeeb 
3094d9f59799SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
309588665349SBjoern A. Zeeb 
309688665349SBjoern A. Zeeb 	/* Ensure the packets get out. */
309788665349SBjoern A. Zeeb 	lkpi_80211_flush_tx(lhw, lsta);
309888665349SBjoern A. Zeeb 
3099cd0fcf9fSBjoern A. Zeeb 	wiphy_lock(hw->wiphy);
3100d9f59799SBjoern A. Zeeb 
310167674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
3102d9f59799SBjoern A. Zeeb 
3103d9f59799SBjoern A. Zeeb 	/* Wake tx queues to get packet(s) out. */
310488665349SBjoern A. Zeeb 	lkpi_wake_tx_queues(hw, sta, false, true);
3105d9f59799SBjoern A. Zeeb 
3106d9f59799SBjoern A. Zeeb 	/* flush, no drop */
3107d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_flush(hw, vif,  nitems(sta->txq), false);
3108d9f59799SBjoern A. Zeeb 
3109d9f59799SBjoern A. Zeeb 	/* End mgd_complete_tx. */
3110d9f59799SBjoern A. Zeeb 	if (lsta->in_mgd) {
3111d9f59799SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
3112d9f59799SBjoern A. Zeeb 		prep_tx_info.success = false;
3113ac1d519cSBjoern A. Zeeb 		prep_tx_info.was_assoc = true;
3114d9f59799SBjoern A. Zeeb 		lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info);
3115d9f59799SBjoern A. Zeeb 		lsta->in_mgd = false;
3116d9f59799SBjoern A. Zeeb 	}
3117d9f59799SBjoern A. Zeeb 
3118d9f59799SBjoern A. Zeeb #if 0
3119d9f59799SBjoern A. Zeeb 	/* sync_rx_queues */
3120d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_sync_rx_queues(hw);
3121d9f59799SBjoern A. Zeeb 
3122d9f59799SBjoern A. Zeeb 	/* sta_pre_rcu_remove */
3123d9f59799SBjoern A. Zeeb         lkpi_80211_mo_sta_pre_rcu_remove(hw, vif, sta);
3124d9f59799SBjoern A. Zeeb #endif
3125d9f59799SBjoern A. Zeeb 
3126d9f59799SBjoern A. Zeeb 	/* Take the station down. */
3127d9f59799SBjoern A. Zeeb 
31286b4cac81SBjoern A. Zeeb 	/* Adjust sta and change state (from AUTHORIZED) to ASSOC. */
31296b4cac81SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
31306b4cac81SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_AUTHORIZED, ("%s: lsta %p state not "
31316b4cac81SBjoern A. Zeeb 	    "AUTHORIZED: %#x\n", __func__, lsta, lsta->state));
3132e7fe0373SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_ASSOC);
3133018d93ecSBjoern A. Zeeb 	if (error != 0) {
3134018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: mo_sta_state(ASSOC) "
3135018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, error);
31366b4cac81SBjoern A. Zeeb 		goto out;
3137018d93ecSBjoern A. Zeeb 	}
31386b4cac81SBjoern A. Zeeb 
313967674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
31406b4cac81SBjoern A. Zeeb 
314111db70b6SBjoern A. Zeeb #ifdef LKPI_80211_HW_CRYPTO
314211db70b6SBjoern A. Zeeb 	if (lkpi_hwcrypto) {
314311db70b6SBjoern A. Zeeb 		error = lkpi_sta_del_keys(hw, vif, lsta);
314411db70b6SBjoern A. Zeeb 		if (error != 0) {
314511db70b6SBjoern A. Zeeb 			ic_printf(vap->iv_ic, "%s:%d: lkpi_sta_del_keys "
314611db70b6SBjoern A. Zeeb 			    "failed: %d\n", __func__, __LINE__, error);
314711db70b6SBjoern A. Zeeb 			/*
314811db70b6SBjoern A. Zeeb 			 * Either drv/fw will crash or cleanup itself,
314911db70b6SBjoern A. Zeeb 			 * otherwise net80211 will delete the keys (at a
315011db70b6SBjoern A. Zeeb 			 * less appropriate time).
315111db70b6SBjoern A. Zeeb 			 */
315211db70b6SBjoern A. Zeeb 			/* goto out; */
315311db70b6SBjoern A. Zeeb 		}
315411db70b6SBjoern A. Zeeb 	}
315511db70b6SBjoern A. Zeeb #endif
315611db70b6SBjoern A. Zeeb 
31576b4cac81SBjoern A. Zeeb 	/* Update sta_state (ASSOC to AUTH). */
31586b4cac81SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
31596b4cac81SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_ASSOC, ("%s: lsta %p state not "
31606b4cac81SBjoern A. Zeeb 	    "ASSOC: %#x\n", __func__, lsta, lsta->state));
3161e7fe0373SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_AUTH);
3162018d93ecSBjoern A. Zeeb 	if (error != 0) {
3163018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: mo_sta_state(AUTH) "
3164018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, error);
31656b4cac81SBjoern A. Zeeb 		goto out;
3166018d93ecSBjoern A. Zeeb 	}
31676b4cac81SBjoern A. Zeeb 
316867674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
31696b4cac81SBjoern A. Zeeb 
3170d9f59799SBjoern A. Zeeb #if 0
3171d9f59799SBjoern A. Zeeb 	/* Update bss info (bss_info_changed) (assoc, aid, ..). */
3172d9f59799SBjoern A. Zeeb 	lkpi_disassoc(sta, vif, lhw);
3173d9f59799SBjoern A. Zeeb #endif
3174d9f59799SBjoern A. Zeeb 
3175d9f59799SBjoern A. Zeeb 	error = EALREADY;
31766b4cac81SBjoern A. Zeeb out:
3177cd0fcf9fSBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
31786b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
3179d9f59799SBjoern A. Zeeb outni:
31806b4cac81SBjoern A. Zeeb 	return (error);
31816b4cac81SBjoern A. Zeeb }
31826b4cac81SBjoern A. Zeeb 
31836b4cac81SBjoern A. Zeeb static int
3184d9f59799SBjoern A. Zeeb lkpi_sta_run_to_init(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
3185d9f59799SBjoern A. Zeeb {
3186d9f59799SBjoern A. Zeeb 	struct lkpi_hw *lhw;
3187d9f59799SBjoern A. Zeeb 	struct ieee80211_hw *hw;
3188d9f59799SBjoern A. Zeeb 	struct lkpi_vif *lvif;
3189d9f59799SBjoern A. Zeeb 	struct ieee80211_vif *vif;
3190d9f59799SBjoern A. Zeeb 	struct ieee80211_node *ni;
3191d9f59799SBjoern A. Zeeb 	struct lkpi_sta *lsta;
3192d9f59799SBjoern A. Zeeb 	struct ieee80211_sta *sta;
3193d9f59799SBjoern A. Zeeb 	struct ieee80211_prep_tx_info prep_tx_info;
3194d9f59799SBjoern A. Zeeb 	enum ieee80211_bss_changed bss_changed;
3195d9f59799SBjoern A. Zeeb 	int error;
3196d9f59799SBjoern A. Zeeb 
3197d9f59799SBjoern A. Zeeb 	lhw = vap->iv_ic->ic_softc;
3198d9f59799SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
3199d9f59799SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
3200d9f59799SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
3201d9f59799SBjoern A. Zeeb 
32022ac8a218SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
3203cd0fcf9fSBjoern A. Zeeb 	wiphy_lock(hw->wiphy);
32042ac8a218SBjoern A. Zeeb 
32052ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
32062ac8a218SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
32072ac8a218SBjoern A. Zeeb 	/* XXX-BZ KASSERT later; state going down so no action. */
32082ac8a218SBjoern A. Zeeb 	if (lvif->lvif_bss == NULL)
32092ac8a218SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: lvif %p vap %p iv_bss %p lvif_bss %p "
32102ac8a218SBjoern A. Zeeb 		    "lvif_bss->ni %p synched %d\n", __func__, __LINE__,
32112ac8a218SBjoern A. Zeeb 		    lvif, vap, vap->iv_bss, lvif->lvif_bss,
32122ac8a218SBjoern A. Zeeb 		    (lvif->lvif_bss != NULL) ? lvif->lvif_bss->ni : NULL,
32132ac8a218SBjoern A. Zeeb 		    lvif->lvif_bss_synched);
32142ac8a218SBjoern A. Zeeb #endif
32152ac8a218SBjoern A. Zeeb 	lsta = lvif->lvif_bss;
32162ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
32172ac8a218SBjoern A. Zeeb 	KASSERT(lsta != NULL && lsta->ni != NULL, ("%s: lsta %p ni %p "
32182ac8a218SBjoern A. Zeeb 	    "lvif %p vap %p\n", __func__,
32192ac8a218SBjoern A. Zeeb 	    lsta, (lsta != NULL) ? lsta->ni : NULL, lvif, vap));
32202ac8a218SBjoern A. Zeeb 
32212ac8a218SBjoern A. Zeeb 	ni = lsta->ni;		/* Reference held for lvif_bss. */
3222d9f59799SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
3223d9f59799SBjoern A. Zeeb 
322467674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
3225d9f59799SBjoern A. Zeeb 
3226d9f59799SBjoern A. Zeeb 	/* flush, drop. */
3227d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_flush(hw, vif,  nitems(sta->txq), true);
3228d9f59799SBjoern A. Zeeb 
3229d9f59799SBjoern A. Zeeb 	IMPROVE("What are the proper conditions for DEAUTH_NEED_MGD_TX_PREP?");
3230d9f59799SBjoern A. Zeeb 	if (ieee80211_hw_check(hw, DEAUTH_NEED_MGD_TX_PREP) &&
3231d9f59799SBjoern A. Zeeb 	    !lsta->in_mgd) {
3232d9f59799SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
3233d9f59799SBjoern A. Zeeb 		prep_tx_info.duration = PREP_TX_INFO_DURATION;
3234ac1d519cSBjoern A. Zeeb 		prep_tx_info.was_assoc = true;
3235d9f59799SBjoern A. Zeeb 		lkpi_80211_mo_mgd_prepare_tx(hw, vif, &prep_tx_info);
3236d9f59799SBjoern A. Zeeb 		lsta->in_mgd = true;
3237d9f59799SBjoern A. Zeeb 	}
3238d9f59799SBjoern A. Zeeb 
3239cd0fcf9fSBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
3240d9f59799SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
3241d9f59799SBjoern A. Zeeb 
3242d9f59799SBjoern A. Zeeb 	/* Call iv_newstate first so we get potential DISASSOC packet out. */
3243d9f59799SBjoern A. Zeeb 	error = lvif->iv_newstate(vap, nstate, arg);
3244018d93ecSBjoern A. Zeeb 	if (error != 0) {
3245018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: iv_newstate(%p, %d, %d) "
3246018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, vap, nstate, arg, error);
3247d9f59799SBjoern A. Zeeb 		goto outni;
3248018d93ecSBjoern A. Zeeb 	}
3249d9f59799SBjoern A. Zeeb 
3250d9f59799SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
325188665349SBjoern A. Zeeb 
325288665349SBjoern A. Zeeb 	/* Ensure the packets get out. */
325388665349SBjoern A. Zeeb 	lkpi_80211_flush_tx(lhw, lsta);
325488665349SBjoern A. Zeeb 
3255cd0fcf9fSBjoern A. Zeeb 	wiphy_lock(hw->wiphy);
3256d9f59799SBjoern A. Zeeb 
325767674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
3258d9f59799SBjoern A. Zeeb 
3259d9f59799SBjoern A. Zeeb 	/* Wake tx queues to get packet(s) out. */
326088665349SBjoern A. Zeeb 	lkpi_wake_tx_queues(hw, sta, false, true);
3261d9f59799SBjoern A. Zeeb 
3262d9f59799SBjoern A. Zeeb 	/* flush, no drop */
3263d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_flush(hw, vif,  nitems(sta->txq), false);
3264d9f59799SBjoern A. Zeeb 
3265d9f59799SBjoern A. Zeeb 	/* End mgd_complete_tx. */
3266d9f59799SBjoern A. Zeeb 	if (lsta->in_mgd) {
3267d9f59799SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
3268d9f59799SBjoern A. Zeeb 		prep_tx_info.success = false;
3269ac1d519cSBjoern A. Zeeb 		prep_tx_info.was_assoc = true;
3270d9f59799SBjoern A. Zeeb 		lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info);
3271d9f59799SBjoern A. Zeeb 		lsta->in_mgd = false;
3272d9f59799SBjoern A. Zeeb 	}
3273d9f59799SBjoern A. Zeeb 
3274d9f59799SBjoern A. Zeeb 	/* sync_rx_queues */
3275d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_sync_rx_queues(hw);
3276d9f59799SBjoern A. Zeeb 
3277d9f59799SBjoern A. Zeeb 	/* sta_pre_rcu_remove */
3278d9f59799SBjoern A. Zeeb         lkpi_80211_mo_sta_pre_rcu_remove(hw, vif, sta);
3279d9f59799SBjoern A. Zeeb 
3280d9f59799SBjoern A. Zeeb 	/* Take the station down. */
3281d9f59799SBjoern A. Zeeb 
3282d9f59799SBjoern A. Zeeb 	/* Adjust sta and change state (from AUTHORIZED) to ASSOC. */
3283d9f59799SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
3284d9f59799SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_AUTHORIZED, ("%s: lsta %p state not "
3285d9f59799SBjoern A. Zeeb 	    "AUTHORIZED: %#x\n", __func__, lsta, lsta->state));
3286e7fe0373SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_ASSOC);
3287018d93ecSBjoern A. Zeeb 	if (error != 0) {
3288018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: mo_sta_state(ASSOC) "
3289018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, error);
3290d9f59799SBjoern A. Zeeb 		goto out;
3291018d93ecSBjoern A. Zeeb 	}
3292d9f59799SBjoern A. Zeeb 
329367674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
3294d9f59799SBjoern A. Zeeb 
329511db70b6SBjoern A. Zeeb #ifdef LKPI_80211_HW_CRYPTO
329611db70b6SBjoern A. Zeeb 	if (lkpi_hwcrypto) {
329711db70b6SBjoern A. Zeeb 		error = lkpi_sta_del_keys(hw, vif, lsta);
329811db70b6SBjoern A. Zeeb 		if (error != 0) {
329911db70b6SBjoern A. Zeeb 			ic_printf(vap->iv_ic, "%s:%d: lkpi_sta_del_keys "
330011db70b6SBjoern A. Zeeb 			    "failed: %d\n", __func__, __LINE__, error);
330111db70b6SBjoern A. Zeeb 			/*
330211db70b6SBjoern A. Zeeb 			 * Either drv/fw will crash or cleanup itself,
330311db70b6SBjoern A. Zeeb 			 * otherwise net80211 will delete the keys (at a
330411db70b6SBjoern A. Zeeb 			 * less appropriate time).
330511db70b6SBjoern A. Zeeb 			 */
330611db70b6SBjoern A. Zeeb 			/* goto out; */
330711db70b6SBjoern A. Zeeb 		}
330811db70b6SBjoern A. Zeeb 	}
330911db70b6SBjoern A. Zeeb #endif
331011db70b6SBjoern A. Zeeb 
3311d9f59799SBjoern A. Zeeb 	/* Update sta_state (ASSOC to AUTH). */
3312d9f59799SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
3313d9f59799SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_ASSOC, ("%s: lsta %p state not "
3314d9f59799SBjoern A. Zeeb 	    "ASSOC: %#x\n", __func__, lsta, lsta->state));
3315e7fe0373SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_AUTH);
3316018d93ecSBjoern A. Zeeb 	if (error != 0) {
3317018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: mo_sta_state(AUTH) "
3318018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, error);
3319d9f59799SBjoern A. Zeeb 		goto out;
3320018d93ecSBjoern A. Zeeb 	}
3321d9f59799SBjoern A. Zeeb 
332267674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
3323d9f59799SBjoern A. Zeeb 
3324d9f59799SBjoern A. Zeeb 	/* Update sta and change state (from AUTH) to NONE. */
3325d9f59799SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
3326d9f59799SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_AUTH, ("%s: lsta %p state not "
3327d9f59799SBjoern A. Zeeb 	    "AUTH: %#x\n", __func__, lsta, lsta->state));
3328e7fe0373SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_NONE);
3329018d93ecSBjoern A. Zeeb 	if (error != 0) {
3330018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: mo_sta_state(NONE) "
3331018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, error);
3332d9f59799SBjoern A. Zeeb 		goto out;
3333018d93ecSBjoern A. Zeeb 	}
3334d9f59799SBjoern A. Zeeb 
33355a4d2461SBjoern A. Zeeb 	bss_changed = 0;
333616e688b2SBjoern A. Zeeb 	/*
33375a4d2461SBjoern A. Zeeb 	 * Start updating bss info (bss_info_changed) (assoc, aid, ..).
33385a4d2461SBjoern A. Zeeb 	 *
333916e688b2SBjoern A. Zeeb 	 * One would expect this to happen when going off AUTHORIZED.
33405a4d2461SBjoern A. Zeeb 	 * See comment there; removes the sta from fw if not careful
33415a4d2461SBjoern A. Zeeb 	 * (bss_info_changed() change is executed right away).
33425a4d2461SBjoern A. Zeeb 	 *
33435a4d2461SBjoern A. Zeeb 	 * We need to do this now, before sta changes to IEEE80211_STA_NOTEXIST
33445a4d2461SBjoern A. Zeeb 	 * as otherwise drivers (iwlwifi at least) will silently not remove
33455a4d2461SBjoern A. Zeeb 	 * the sta from the firmware and when we will add a new one trigger
33465a4d2461SBjoern A. Zeeb 	 * a fw assert.
33475a4d2461SBjoern A. Zeeb 	 *
33485a4d2461SBjoern A. Zeeb 	 * The order which works best so far avoiding early removal or silent
33495a4d2461SBjoern A. Zeeb 	 * non-removal seems to be (for iwlwifi::mld-mac80211.c cases;
33505a4d2461SBjoern A. Zeeb 	 * the iwlwifi:mac80211.c case still to be tested):
33515a4d2461SBjoern A. Zeeb 	 * 1) lkpi_disassoc(): set vif->cfg.assoc = false (aid=0 side effect here)
33525a4d2461SBjoern A. Zeeb 	 * 2) call the last sta_state update -> IEEE80211_STA_NOTEXIST
33535a4d2461SBjoern A. Zeeb 	 *    (removes the sta given assoc is false)
33545a4d2461SBjoern A. Zeeb 	 * 3) add the remaining BSS_CHANGED changes and call bss_info_changed()
33555a4d2461SBjoern A. Zeeb 	 * 4) call unassign_vif_chanctx
33565a4d2461SBjoern A. Zeeb 	 * 5) call lkpi_hw_conf_idle
33575a4d2461SBjoern A. Zeeb 	 * 6) call remove_chanctx
335816e688b2SBjoern A. Zeeb 	 */
33595a4d2461SBjoern A. Zeeb 	bss_changed |= lkpi_disassoc(sta, vif, lhw);
33605a4d2461SBjoern A. Zeeb 
33615a4d2461SBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
336216e688b2SBjoern A. Zeeb 
3363d9f59799SBjoern A. Zeeb 	/* Adjust sta and change state (from NONE) to NOTEXIST. */
3364d9f59799SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
3365d9f59799SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_NONE, ("%s: lsta %p state not "
3366d9f59799SBjoern A. Zeeb 	    "NONE: %#x, nstate %d arg %d\n", __func__, lsta, lsta->state, nstate, arg));
3367e7fe0373SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_NOTEXIST);
3368d9f59799SBjoern A. Zeeb 	if (error != 0) {
3369d9f59799SBjoern A. Zeeb 		IMPROVE("do we need to undo the chan ctx?");
3370018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: mo_sta_state(NOTEXIST) "
3371018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, error);
3372d9f59799SBjoern A. Zeeb 		goto out;
3373d9f59799SBjoern A. Zeeb 	}
3374d9f59799SBjoern A. Zeeb 
33755a4d2461SBjoern A. Zeeb 	lkpi_lsta_remove(lsta, lvif);
33765a4d2461SBjoern A. Zeeb 
337716e688b2SBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);	/* sta no longer save to use. */
3378d9f59799SBjoern A. Zeeb 
3379d9f59799SBjoern A. Zeeb 	IMPROVE("Any bss_info changes to announce?");
3380d9f59799SBjoern A. Zeeb 	vif->bss_conf.qos = 0;
3381d9f59799SBjoern A. Zeeb 	bss_changed |= BSS_CHANGED_QOS;
3382616e1330SBjoern A. Zeeb 	vif->cfg.ssid_len = 0;
3383616e1330SBjoern A. Zeeb 	memset(vif->cfg.ssid, '\0', sizeof(vif->cfg.ssid));
3384d9f59799SBjoern A. Zeeb 	bss_changed |= BSS_CHANGED_BSSID;
33855a4d2461SBjoern A. Zeeb 	vif->bss_conf.use_short_preamble = false;
33865a4d2461SBjoern A. Zeeb 	vif->bss_conf.qos = false;
33875a4d2461SBjoern A. Zeeb 	/* XXX BSS_CHANGED_???? */
3388d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, bss_changed);
3389d9f59799SBjoern A. Zeeb 
33902ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
33912ac8a218SBjoern A. Zeeb 	/* Remove ni reference for this cache of lsta. */
33922ac8a218SBjoern A. Zeeb 	lvif->lvif_bss = NULL;
33932ac8a218SBjoern A. Zeeb 	lvif->lvif_bss_synched = false;
33942ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
33950936c648SBjoern A. Zeeb 	/*
33960936c648SBjoern A. Zeeb 	 * The very last release the reference on the ni for the ni/lsta on
33970936c648SBjoern A. Zeeb 	 * lvif->lvif_bss.  Upon return from this both ni and lsta are invalid
33980936c648SBjoern A. Zeeb 	 * and potentially freed.
33990936c648SBjoern A. Zeeb 	 */
34000936c648SBjoern A. Zeeb 	ieee80211_free_node(ni);
3401d9f59799SBjoern A. Zeeb 
3402d9f59799SBjoern A. Zeeb 	/* conf_tx */
3403d9f59799SBjoern A. Zeeb 
340450d826beSBjoern A. Zeeb 	lkpi_remove_chanctx(hw, vif);
3405d9f59799SBjoern A. Zeeb 
3406d9f59799SBjoern A. Zeeb 	error = EALREADY;
3407d9f59799SBjoern A. Zeeb out:
3408cd0fcf9fSBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
3409d9f59799SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
3410d9f59799SBjoern A. Zeeb outni:
3411d9f59799SBjoern A. Zeeb 	return (error);
3412d9f59799SBjoern A. Zeeb }
3413d9f59799SBjoern A. Zeeb 
3414d9f59799SBjoern A. Zeeb static int
3415d9f59799SBjoern A. Zeeb lkpi_sta_run_to_scan(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
3416d9f59799SBjoern A. Zeeb {
3417d9f59799SBjoern A. Zeeb 
3418d9f59799SBjoern A. Zeeb 	return (lkpi_sta_run_to_init(vap, nstate, arg));
3419d9f59799SBjoern A. Zeeb }
3420d9f59799SBjoern A. Zeeb 
3421d9f59799SBjoern A. Zeeb static int
34226b4cac81SBjoern A. Zeeb lkpi_sta_run_to_auth(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
34236b4cac81SBjoern A. Zeeb {
34246b4cac81SBjoern A. Zeeb 	int error;
34256b4cac81SBjoern A. Zeeb 
3426d9f59799SBjoern A. Zeeb 	error = lkpi_sta_run_to_init(vap, nstate, arg);
3427d9f59799SBjoern A. Zeeb 	if (error != 0 && error != EALREADY)
3428d9f59799SBjoern A. Zeeb 		return (error);
3429d9f59799SBjoern A. Zeeb 
3430d9f59799SBjoern A. Zeeb 	/* At this point iv_bss is long a new node! */
3431d9f59799SBjoern A. Zeeb 
3432d9f59799SBjoern A. Zeeb 	error |= lkpi_sta_scan_to_auth(vap, nstate, 0);
34336b4cac81SBjoern A. Zeeb 	return (error);
34346b4cac81SBjoern A. Zeeb }
34356b4cac81SBjoern A. Zeeb 
3436d9f59799SBjoern A. Zeeb /* -------------------------------------------------------------------------- */
34376b4cac81SBjoern A. Zeeb 
34386b4cac81SBjoern A. Zeeb /*
34396b4cac81SBjoern A. Zeeb  * The matches the documented state changes in net80211::sta_newstate().
34406b4cac81SBjoern A. Zeeb  * XXX (1) without CSA and SLEEP yet, * XXX (2) not all unhandled cases
34416b4cac81SBjoern A. Zeeb  * there are "invalid" (so there is a room for failure here).
34426b4cac81SBjoern A. Zeeb  */
34436b4cac81SBjoern A. Zeeb struct fsm_state {
34446b4cac81SBjoern A. Zeeb 	/* INIT, SCAN, AUTH, ASSOC, CAC, RUN, CSA, SLEEP */
34456b4cac81SBjoern A. Zeeb 	enum ieee80211_state ostate;
34466b4cac81SBjoern A. Zeeb 	enum ieee80211_state nstate;
34476b4cac81SBjoern A. Zeeb 	int (*handler)(struct ieee80211vap *, enum ieee80211_state, int);
34486b4cac81SBjoern A. Zeeb } sta_state_fsm[] = {
34496b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_INIT,	IEEE80211_S_INIT, lkpi_sta_state_do_nada },
34506b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_SCAN,	IEEE80211_S_INIT, lkpi_sta_state_do_nada },	/* scan_to_init */
34516b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_AUTH,	IEEE80211_S_INIT, lkpi_sta_auth_to_init },	/* not explicitly in sta_newstate() */
3452d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_ASSOC,	IEEE80211_S_INIT, lkpi_sta_assoc_to_init },	/* Send DEAUTH. */
3453d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_RUN,	IEEE80211_S_INIT, lkpi_sta_run_to_init },	/* Send DISASSOC. */
34546b4cac81SBjoern A. Zeeb 
34556b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_INIT,	IEEE80211_S_SCAN, lkpi_sta_state_do_nada },
34566b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_SCAN,	IEEE80211_S_SCAN, lkpi_sta_state_do_nada },
34576b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_AUTH,	IEEE80211_S_SCAN, lkpi_sta_auth_to_scan },
34586b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_ASSOC,	IEEE80211_S_SCAN, lkpi_sta_assoc_to_scan },
3459d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_RUN,	IEEE80211_S_SCAN, lkpi_sta_run_to_scan },	/* Beacon miss. */
34606b4cac81SBjoern A. Zeeb 
3461d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_INIT,	IEEE80211_S_AUTH, lkpi_sta_scan_to_auth },	/* Send AUTH. */
3462d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_SCAN,	IEEE80211_S_AUTH, lkpi_sta_scan_to_auth },	/* Send AUTH. */
3463d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_AUTH,	IEEE80211_S_AUTH, lkpi_sta_a_to_a },		/* Send ?AUTH. */
3464d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_ASSOC,	IEEE80211_S_AUTH, lkpi_sta_assoc_to_auth },	/* Send ?AUTH. */
3465d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_RUN,	IEEE80211_S_AUTH, lkpi_sta_run_to_auth },	/* Send ?AUTH. */
34666b4cac81SBjoern A. Zeeb 
3467d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_AUTH,	IEEE80211_S_ASSOC, lkpi_sta_auth_to_assoc },	/* Send ASSOCREQ. */
3468d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_ASSOC,	IEEE80211_S_ASSOC, lkpi_sta_a_to_a },		/* Send ASSOCREQ. */
3469d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_RUN,	IEEE80211_S_ASSOC, lkpi_sta_run_to_assoc },	/* Send ASSOCREQ/REASSOCREQ. */
34706b4cac81SBjoern A. Zeeb 
34716b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_AUTH,	IEEE80211_S_RUN, lkpi_sta_auth_to_run },
34726b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_ASSOC,	IEEE80211_S_RUN, lkpi_sta_assoc_to_run },
34736b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_RUN,	IEEE80211_S_RUN, lkpi_sta_state_do_nada },
34746b4cac81SBjoern A. Zeeb 
34756b4cac81SBjoern A. Zeeb 	/* Dummy at the end without handler. */
34766b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_INIT,	IEEE80211_S_INIT, NULL },
34776b4cac81SBjoern A. Zeeb };
34786b4cac81SBjoern A. Zeeb 
34796b4cac81SBjoern A. Zeeb static int
34806b4cac81SBjoern A. Zeeb lkpi_iv_newstate(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
34816b4cac81SBjoern A. Zeeb {
34826b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
34836b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
34846b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
34856b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
34866b4cac81SBjoern A. Zeeb 	struct fsm_state *s;
34876b4cac81SBjoern A. Zeeb 	enum ieee80211_state ostate;
34886b4cac81SBjoern A. Zeeb 	int error;
34896b4cac81SBjoern A. Zeeb 
34906b4cac81SBjoern A. Zeeb 	ic = vap->iv_ic;
34916b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK_ASSERT(ic);
34926b4cac81SBjoern A. Zeeb 	ostate = vap->iv_state;
34936b4cac81SBjoern A. Zeeb 
34949d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
34959d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE)
34966b4cac81SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: vap %p nstate %#x arg %#x\n",
34976b4cac81SBjoern A. Zeeb 		    __func__, __LINE__, vap, nstate, arg);
34989d9ba2b7SBjoern A. Zeeb #endif
34996b4cac81SBjoern A. Zeeb 
35006b4cac81SBjoern A. Zeeb 	if (vap->iv_opmode == IEEE80211_M_STA) {
35016b4cac81SBjoern A. Zeeb 
35026b4cac81SBjoern A. Zeeb 		lhw = ic->ic_softc;
35036b4cac81SBjoern A. Zeeb 		lvif = VAP_TO_LVIF(vap);
35046b4cac81SBjoern A. Zeeb 		vif = LVIF_TO_VIF(lvif);
35056b4cac81SBjoern A. Zeeb 
35066b4cac81SBjoern A. Zeeb 		/* No need to replicate this in most state handlers. */
35076b4cac81SBjoern A. Zeeb 		if (ostate == IEEE80211_S_SCAN && nstate != IEEE80211_S_SCAN)
35086b4cac81SBjoern A. Zeeb 			lkpi_stop_hw_scan(lhw, vif);
35096b4cac81SBjoern A. Zeeb 
35106b4cac81SBjoern A. Zeeb 		s = sta_state_fsm;
35116b4cac81SBjoern A. Zeeb 
35126b4cac81SBjoern A. Zeeb 	} else {
35136b4cac81SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s: only station mode currently supported: "
35146b4cac81SBjoern A. Zeeb 		    "cap %p iv_opmode %d\n", __func__, vap, vap->iv_opmode);
35156b4cac81SBjoern A. Zeeb 		return (ENOSYS);
35166b4cac81SBjoern A. Zeeb 	}
35176b4cac81SBjoern A. Zeeb 
35186b4cac81SBjoern A. Zeeb 	error = 0;
35196b4cac81SBjoern A. Zeeb 	for (; s->handler != NULL; s++) {
35206b4cac81SBjoern A. Zeeb 		if (ostate == s->ostate && nstate == s->nstate) {
35219d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
35229d9ba2b7SBjoern A. Zeeb 			if (linuxkpi_debug_80211 & D80211_TRACE)
3523d9f59799SBjoern A. Zeeb 				ic_printf(vap->iv_ic, "%s: new state %d (%s) ->"
3524d9f59799SBjoern A. Zeeb 				    " %d (%s): arg %d.\n", __func__,
3525d9f59799SBjoern A. Zeeb 				    ostate, ieee80211_state_name[ostate],
3526d9f59799SBjoern A. Zeeb 				    nstate, ieee80211_state_name[nstate], arg);
35279d9ba2b7SBjoern A. Zeeb #endif
35286b4cac81SBjoern A. Zeeb 			error = s->handler(vap, nstate, arg);
35296b4cac81SBjoern A. Zeeb 			break;
35306b4cac81SBjoern A. Zeeb 		}
35316b4cac81SBjoern A. Zeeb 	}
35326b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK_ASSERT(vap->iv_ic);
35336b4cac81SBjoern A. Zeeb 
35346b4cac81SBjoern A. Zeeb 	if (s->handler == NULL) {
3535d9f59799SBjoern A. Zeeb 		IMPROVE("turn this into a KASSERT\n");
35366b4cac81SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s: unsupported state transition "
35376b4cac81SBjoern A. Zeeb 		    "%d (%s) -> %d (%s)\n", __func__,
35386b4cac81SBjoern A. Zeeb 		    ostate, ieee80211_state_name[ostate],
35396b4cac81SBjoern A. Zeeb 		    nstate, ieee80211_state_name[nstate]);
35406b4cac81SBjoern A. Zeeb 		return (ENOSYS);
35416b4cac81SBjoern A. Zeeb 	}
35426b4cac81SBjoern A. Zeeb 
35436b4cac81SBjoern A. Zeeb 	if (error == EALREADY) {
35449d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
35459d9ba2b7SBjoern A. Zeeb 		if (linuxkpi_debug_80211 & D80211_TRACE)
3546d9f59799SBjoern A. Zeeb 			ic_printf(vap->iv_ic, "%s: state transition %d (%s) -> "
3547d9f59799SBjoern A. Zeeb 			    "%d (%s): iv_newstate already handled: %d.\n",
3548d9f59799SBjoern A. Zeeb 			    __func__, ostate, ieee80211_state_name[ostate],
3549d9f59799SBjoern A. Zeeb 			    nstate, ieee80211_state_name[nstate], error);
35509d9ba2b7SBjoern A. Zeeb #endif
35516b4cac81SBjoern A. Zeeb 		return (0);
35526b4cac81SBjoern A. Zeeb 	}
35536b4cac81SBjoern A. Zeeb 
35546b4cac81SBjoern A. Zeeb 	if (error != 0) {
35556b4cac81SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s: error %d during state transition "
35566b4cac81SBjoern A. Zeeb 		    "%d (%s) -> %d (%s)\n", __func__, error,
35576b4cac81SBjoern A. Zeeb 		    ostate, ieee80211_state_name[ostate],
35586b4cac81SBjoern A. Zeeb 		    nstate, ieee80211_state_name[nstate]);
355945c27ad5SBjoern A. Zeeb 		return (error);
35606b4cac81SBjoern A. Zeeb 	}
35616b4cac81SBjoern A. Zeeb 
35629d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
35639d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE)
3564d9f59799SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: vap %p nstate %#x arg %#x "
3565d9f59799SBjoern A. Zeeb 		    "calling net80211 parent\n",
35666b4cac81SBjoern A. Zeeb 		    __func__, __LINE__, vap, nstate, arg);
35679d9ba2b7SBjoern A. Zeeb #endif
35686b4cac81SBjoern A. Zeeb 
35696b4cac81SBjoern A. Zeeb 	return (lvif->iv_newstate(vap, nstate, arg));
35706b4cac81SBjoern A. Zeeb }
35716b4cac81SBjoern A. Zeeb 
35726b4cac81SBjoern A. Zeeb /* -------------------------------------------------------------------------- */
35736b4cac81SBjoern A. Zeeb 
3574d9f59799SBjoern A. Zeeb /*
3575d9f59799SBjoern A. Zeeb  * We overload (*iv_update_bss) as otherwise we have cases in, e.g.,
3576d9f59799SBjoern A. Zeeb  * net80211::ieee80211_sta_join1() where vap->iv_bss gets replaced by a
3577d9f59799SBjoern A. Zeeb  * new node without us knowing and thus our ni/lsta are out of sync.
3578d9f59799SBjoern A. Zeeb  */
3579d9f59799SBjoern A. Zeeb static struct ieee80211_node *
3580d9f59799SBjoern A. Zeeb lkpi_iv_update_bss(struct ieee80211vap *vap, struct ieee80211_node *ni)
3581d9f59799SBjoern A. Zeeb {
3582d9f59799SBjoern A. Zeeb 	struct lkpi_vif *lvif;
35832ac8a218SBjoern A. Zeeb 	struct ieee80211_node *rni;
3584d9f59799SBjoern A. Zeeb 
35852ac8a218SBjoern A. Zeeb 	IEEE80211_LOCK_ASSERT(vap->iv_ic);
3586d9f59799SBjoern A. Zeeb 
3587ed3ef56bSBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
35882ac8a218SBjoern A. Zeeb 
35892ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
35902ac8a218SBjoern A. Zeeb 	lvif->lvif_bss_synched = false;
35912ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
35922ac8a218SBjoern A. Zeeb 
35932ac8a218SBjoern A. Zeeb 	rni = lvif->iv_update_bss(vap, ni);
35942ac8a218SBjoern A. Zeeb 	return (rni);
3595d9f59799SBjoern A. Zeeb }
3596d9f59799SBjoern A. Zeeb 
35974a67f1dfSBjoern A. Zeeb #ifdef LKPI_80211_WME
35986b4cac81SBjoern A. Zeeb static int
35994a67f1dfSBjoern A. Zeeb lkpi_wme_update(struct lkpi_hw *lhw, struct ieee80211vap *vap, bool planned)
36006b4cac81SBjoern A. Zeeb {
36014a67f1dfSBjoern A. Zeeb 	struct ieee80211com *ic;
36026b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
36036b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
36046b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
36056b4cac81SBjoern A. Zeeb 	struct chanAccParams chp;
36066b4cac81SBjoern A. Zeeb 	struct wmeParams wmeparr[WME_NUM_AC];
36076b4cac81SBjoern A. Zeeb 	struct ieee80211_tx_queue_params txqp;
36086b4cac81SBjoern A. Zeeb 	enum ieee80211_bss_changed changed;
36096b4cac81SBjoern A. Zeeb 	int error;
36106b4cac81SBjoern A. Zeeb 	uint16_t ac;
36116b4cac81SBjoern A. Zeeb 
3612cd0fcf9fSBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
3613cd0fcf9fSBjoern A. Zeeb 	lockdep_assert_wiphy(hw->wiphy);
3614cd0fcf9fSBjoern A. Zeeb 
36156b4cac81SBjoern A. Zeeb 	IMPROVE();
36166b4cac81SBjoern A. Zeeb 	KASSERT(WME_NUM_AC == IEEE80211_NUM_ACS, ("%s: WME_NUM_AC %d != "
36176b4cac81SBjoern A. Zeeb 	    "IEEE80211_NUM_ACS %d\n", __func__, WME_NUM_AC, IEEE80211_NUM_ACS));
36186b4cac81SBjoern A. Zeeb 
36196b4cac81SBjoern A. Zeeb 	if (vap == NULL)
36206b4cac81SBjoern A. Zeeb 		return (0);
36216b4cac81SBjoern A. Zeeb 
36224a67f1dfSBjoern A. Zeeb 	if ((vap->iv_flags & IEEE80211_F_WME) == 0)
36234a67f1dfSBjoern A. Zeeb 		return (0);
36244a67f1dfSBjoern A. Zeeb 
36256b4cac81SBjoern A. Zeeb 	if (lhw->ops->conf_tx == NULL)
36266b4cac81SBjoern A. Zeeb 		return (0);
36276b4cac81SBjoern A. Zeeb 
36284a67f1dfSBjoern A. Zeeb 	if (!planned && (vap->iv_state != IEEE80211_S_RUN)) {
36294a67f1dfSBjoern A. Zeeb 		lhw->update_wme = true;
36304a67f1dfSBjoern A. Zeeb 		return (0);
36314a67f1dfSBjoern A. Zeeb 	}
36324a67f1dfSBjoern A. Zeeb 	lhw->update_wme = false;
36336b4cac81SBjoern A. Zeeb 
36344a67f1dfSBjoern A. Zeeb 	ic = lhw->ic;
36356b4cac81SBjoern A. Zeeb 	ieee80211_wme_ic_getparams(ic, &chp);
36366b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK(ic);
36376b4cac81SBjoern A. Zeeb 	for (ac = 0; ac < WME_NUM_AC; ac++)
36386b4cac81SBjoern A. Zeeb 		wmeparr[ac] = chp.cap_wmeParams[ac];
36396b4cac81SBjoern A. Zeeb 	IEEE80211_UNLOCK(ic);
36406b4cac81SBjoern A. Zeeb 
36414a67f1dfSBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
36424a67f1dfSBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
36434a67f1dfSBjoern A. Zeeb 
36446b4cac81SBjoern A. Zeeb 	/* Configure tx queues (conf_tx) & send BSS_CHANGED_QOS. */
36456b4cac81SBjoern A. Zeeb 	for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
36466b4cac81SBjoern A. Zeeb 		struct wmeParams *wmep;
36476b4cac81SBjoern A. Zeeb 
36486b4cac81SBjoern A. Zeeb 		wmep = &wmeparr[ac];
36496b4cac81SBjoern A. Zeeb 		bzero(&txqp, sizeof(txqp));
36506b4cac81SBjoern A. Zeeb 		txqp.cw_min = wmep->wmep_logcwmin;
36516b4cac81SBjoern A. Zeeb 		txqp.cw_max = wmep->wmep_logcwmax;
36526b4cac81SBjoern A. Zeeb 		txqp.txop = wmep->wmep_txopLimit;
36536b4cac81SBjoern A. Zeeb 		txqp.aifs = wmep->wmep_aifsn;
365468541546SBjoern A. Zeeb 		error = lkpi_80211_mo_conf_tx(hw, vif, /* link_id */0, ac, &txqp);
36556b4cac81SBjoern A. Zeeb 		if (error != 0)
36563f0083c4SBjoern A. Zeeb 			ic_printf(ic, "%s: conf_tx ac %u failed %d\n",
36576b4cac81SBjoern A. Zeeb 			    __func__, ac, error);
36586b4cac81SBjoern A. Zeeb 	}
36596b4cac81SBjoern A. Zeeb 	changed = BSS_CHANGED_QOS;
36604a67f1dfSBjoern A. Zeeb 	if (!planned)
36616b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, changed);
36624a67f1dfSBjoern A. Zeeb 
36634a67f1dfSBjoern A. Zeeb 	return (changed);
36644a67f1dfSBjoern A. Zeeb }
36656b4cac81SBjoern A. Zeeb #endif
36666b4cac81SBjoern A. Zeeb 
36674a67f1dfSBjoern A. Zeeb static int
36684a67f1dfSBjoern A. Zeeb lkpi_ic_wme_update(struct ieee80211com *ic)
36694a67f1dfSBjoern A. Zeeb {
36704a67f1dfSBjoern A. Zeeb #ifdef LKPI_80211_WME
36714a67f1dfSBjoern A. Zeeb 	struct ieee80211vap *vap;
36724a67f1dfSBjoern A. Zeeb 	struct lkpi_hw *lhw;
3673cd0fcf9fSBjoern A. Zeeb 	struct ieee80211_hw *hw;
36744a67f1dfSBjoern A. Zeeb 
36754a67f1dfSBjoern A. Zeeb 	IMPROVE("Use the per-VAP callback in net80211.");
36764a67f1dfSBjoern A. Zeeb 	vap = TAILQ_FIRST(&ic->ic_vaps);
36774a67f1dfSBjoern A. Zeeb 	if (vap == NULL)
36786b4cac81SBjoern A. Zeeb 		return (0);
36794a67f1dfSBjoern A. Zeeb 
36804a67f1dfSBjoern A. Zeeb 	lhw = ic->ic_softc;
3681cd0fcf9fSBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
36824a67f1dfSBjoern A. Zeeb 
3683cd0fcf9fSBjoern A. Zeeb 	wiphy_lock(hw->wiphy);
36844a67f1dfSBjoern A. Zeeb 	lkpi_wme_update(lhw, vap, false);
3685cd0fcf9fSBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
36864a67f1dfSBjoern A. Zeeb #endif
36874a67f1dfSBjoern A. Zeeb 	return (0);	/* unused */
36886b4cac81SBjoern A. Zeeb }
36896b4cac81SBjoern A. Zeeb 
36904aff4048SBjoern A. Zeeb /*
36914aff4048SBjoern A. Zeeb  * Change link-layer address on the vif (if the vap is not started/"UP").
36924aff4048SBjoern A. Zeeb  * This can happen if a user changes 'ether' using ifconfig.
36934aff4048SBjoern A. Zeeb  * The code is based on net80211/ieee80211_freebsd.c::wlan_iflladdr() but
36944aff4048SBjoern A. Zeeb  * we do use a per-[l]vif event handler to be sure we exist as we
36954aff4048SBjoern A. Zeeb  * cannot assume that from every vap derives a vif and we have a hard
36964aff4048SBjoern A. Zeeb  * time checking based on net80211 information.
3697edab5a28SBjoern A. Zeeb  * Should this ever become a real problem we could add a callback function
3698edab5a28SBjoern A. Zeeb  * to wlan_iflladdr() to be set optionally but that would be for a
3699edab5a28SBjoern A. Zeeb  * single-consumer (or needs a list) -- was just too complicated for an
3700edab5a28SBjoern A. Zeeb  * otherwise perfect mechanism FreeBSD already provides.
37014aff4048SBjoern A. Zeeb  */
37024aff4048SBjoern A. Zeeb static void
37034aff4048SBjoern A. Zeeb lkpi_vif_iflladdr(void *arg, struct ifnet *ifp)
37044aff4048SBjoern A. Zeeb {
37054aff4048SBjoern A. Zeeb 	struct epoch_tracker et;
37064aff4048SBjoern A. Zeeb 	struct ieee80211_vif *vif;
37074aff4048SBjoern A. Zeeb 
37084aff4048SBjoern A. Zeeb 	NET_EPOCH_ENTER(et);
3709edab5a28SBjoern A. Zeeb 	/* NB: identify vap's by if_transmit; left as an extra check. */
3710edab5a28SBjoern A. Zeeb 	if (if_gettransmitfn(ifp) != ieee80211_vap_transmit ||
3711edab5a28SBjoern A. Zeeb 	    (if_getflags(ifp) & IFF_UP) != 0) {
37124aff4048SBjoern A. Zeeb 		NET_EPOCH_EXIT(et);
37134aff4048SBjoern A. Zeeb 		return;
37144aff4048SBjoern A. Zeeb 	}
37154aff4048SBjoern A. Zeeb 
37164aff4048SBjoern A. Zeeb 	vif = arg;
371757609cb2SJustin Hibbits 	IEEE80211_ADDR_COPY(vif->bss_conf.addr, if_getlladdr(ifp));
37184aff4048SBjoern A. Zeeb 	NET_EPOCH_EXIT(et);
37194aff4048SBjoern A. Zeeb }
37204aff4048SBjoern A. Zeeb 
37216b4cac81SBjoern A. Zeeb static struct ieee80211vap *
37226b4cac81SBjoern A. Zeeb lkpi_ic_vap_create(struct ieee80211com *ic, const char name[IFNAMSIZ],
37236b4cac81SBjoern A. Zeeb     int unit, enum ieee80211_opmode opmode, int flags,
37246b4cac81SBjoern A. Zeeb     const uint8_t bssid[IEEE80211_ADDR_LEN],
37256b4cac81SBjoern A. Zeeb     const uint8_t mac[IEEE80211_ADDR_LEN])
37266b4cac81SBjoern A. Zeeb {
37276b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
37286b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
37296b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
37306b4cac81SBjoern A. Zeeb 	struct ieee80211vap *vap;
37316b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
3732a6042e17SBjoern A. Zeeb 	struct ieee80211_tx_queue_params txqp;
37336b4cac81SBjoern A. Zeeb 	enum ieee80211_bss_changed changed;
373440839418SBjoern A. Zeeb 	struct sysctl_oid *node;
37356b4cac81SBjoern A. Zeeb 	size_t len;
3736e3a0b120SBjoern A. Zeeb 	int error, i;
3737a6042e17SBjoern A. Zeeb 	uint16_t ac;
37386b4cac81SBjoern A. Zeeb 
37396b4cac81SBjoern A. Zeeb 	if (!TAILQ_EMPTY(&ic->ic_vaps))	/* 1 so far. Add <n> once this works. */
37406b4cac81SBjoern A. Zeeb 		return (NULL);
37416b4cac81SBjoern A. Zeeb 
37426b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
37436b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
37446b4cac81SBjoern A. Zeeb 
37456b4cac81SBjoern A. Zeeb 	len = sizeof(*lvif);
37466b4cac81SBjoern A. Zeeb 	len += hw->vif_data_size;	/* vif->drv_priv */
37476b4cac81SBjoern A. Zeeb 
37486b4cac81SBjoern A. Zeeb 	lvif = malloc(len, M_80211_VAP, M_WAITOK | M_ZERO);
37496b4cac81SBjoern A. Zeeb 	mtx_init(&lvif->mtx, "lvif", NULL, MTX_DEF);
3750a8f735a6SBjoern A. Zeeb 	INIT_LIST_HEAD(&lvif->lsta_list);
37512ac8a218SBjoern A. Zeeb 	lvif->lvif_bss = NULL;
3752b8dfc3ecSBjoern A. Zeeb 	refcount_init(&lvif->nt_unlocked, 0);
37532ac8a218SBjoern A. Zeeb 	lvif->lvif_bss_synched = false;
37546b4cac81SBjoern A. Zeeb 	vap = LVIF_TO_VAP(lvif);
37556b4cac81SBjoern A. Zeeb 
37566b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
37576b4cac81SBjoern A. Zeeb 	memcpy(vif->addr, mac, IEEE80211_ADDR_LEN);
37586b4cac81SBjoern A. Zeeb 	vif->p2p = false;
37596b4cac81SBjoern A. Zeeb 	vif->probe_req_reg = false;
37606b4cac81SBjoern A. Zeeb 	vif->type = lkpi_opmode_to_vif_type(opmode);
37616b4cac81SBjoern A. Zeeb 	lvif->wdev.iftype = vif->type;
37626b4cac81SBjoern A. Zeeb 	/* Need to fill in other fields as well. */
37636b4cac81SBjoern A. Zeeb 	IMPROVE();
37646b4cac81SBjoern A. Zeeb 
37656b4cac81SBjoern A. Zeeb 	/* XXX-BZ hardcoded for now! */
37666b4cac81SBjoern A. Zeeb #if 1
3767560708cbSBjoern A. Zeeb 	RCU_INIT_POINTER(vif->bss_conf.chanctx_conf, NULL);
3768adff403fSBjoern A. Zeeb 	vif->bss_conf.vif = vif;
37696ffb7bd4SBjoern A. Zeeb 	/* vap->iv_myaddr is not set until net80211::vap_setup or vap_attach. */
37706ffb7bd4SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(vif->bss_conf.addr, mac);
37714aff4048SBjoern A. Zeeb 	lvif->lvif_ifllevent = EVENTHANDLER_REGISTER(iflladdr_event,
37724aff4048SBjoern A. Zeeb 	    lkpi_vif_iflladdr, vif, EVENTHANDLER_PRI_ANY);
37736ffb7bd4SBjoern A. Zeeb 	vif->bss_conf.link_id = 0;	/* Non-MLO operation. */
37747b43f4d0SBjoern A. Zeeb 	vif->bss_conf.chanreq.oper.width = NL80211_CHAN_WIDTH_20_NOHT;
37756b4cac81SBjoern A. Zeeb 	vif->bss_conf.use_short_preamble = false;	/* vap->iv_flags IEEE80211_F_SHPREAMBLE */
37766b4cac81SBjoern A. Zeeb 	vif->bss_conf.use_short_slot = false;		/* vap->iv_flags IEEE80211_F_SHSLOT */
37776b4cac81SBjoern A. Zeeb 	vif->bss_conf.qos = false;
37786b4cac81SBjoern A. Zeeb 	vif->bss_conf.use_cts_prot = false;		/* vap->iv_protmode */
37796b4cac81SBjoern A. Zeeb 	vif->bss_conf.ht_operation_mode = IEEE80211_HT_OP_MODE_PROTECTION_NONE;
3780616e1330SBjoern A. Zeeb 	vif->cfg.aid = 0;
3781616e1330SBjoern A. Zeeb 	vif->cfg.assoc = false;
3782616e1330SBjoern A. Zeeb 	vif->cfg.idle = true;
3783616e1330SBjoern A. Zeeb 	vif->cfg.ps = false;
37846ffb7bd4SBjoern A. Zeeb 	IMPROVE("Check other fields and then figure out whats is left elsewhere of them");
3785caaa79c3SBjoern A. Zeeb 	/*
3786caaa79c3SBjoern A. Zeeb 	 * We need to initialize it to something as the bss_info_changed call
3787caaa79c3SBjoern A. Zeeb 	 * will try to copy from it in iwlwifi and NULL is a panic.
3788caaa79c3SBjoern A. Zeeb 	 * We will set the proper one in scan_to_auth() before being assoc.
3789caaa79c3SBjoern A. Zeeb 	 */
37906ffb7bd4SBjoern A. Zeeb 	vif->bss_conf.bssid = ieee80211broadcastaddr;
37916b4cac81SBjoern A. Zeeb #endif
37926b4cac81SBjoern A. Zeeb #if 0
37936b4cac81SBjoern A. Zeeb 	vif->bss_conf.dtim_period = 0; /* IEEE80211_DTIM_DEFAULT ; must stay 0. */
37946b4cac81SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(vif->bss_conf.bssid, bssid);
37956b4cac81SBjoern A. Zeeb 	vif->bss_conf.beacon_int = ic->ic_bintval;
37966b4cac81SBjoern A. Zeeb 	/* iwlwifi bug. */
37976b4cac81SBjoern A. Zeeb 	if (vif->bss_conf.beacon_int < 16)
37986b4cac81SBjoern A. Zeeb 		vif->bss_conf.beacon_int = 16;
37996b4cac81SBjoern A. Zeeb #endif
3800e3a0b120SBjoern A. Zeeb 
38016ffb7bd4SBjoern A. Zeeb 	/* Link Config */
38026ffb7bd4SBjoern A. Zeeb 	vif->link_conf[0] = &vif->bss_conf;
38036ffb7bd4SBjoern A. Zeeb 	for (i = 0; i < nitems(vif->link_conf); i++) {
38046ffb7bd4SBjoern A. Zeeb 		IMPROVE("more than 1 link one day");
38056ffb7bd4SBjoern A. Zeeb 	}
38066ffb7bd4SBjoern A. Zeeb 
3807e3a0b120SBjoern A. Zeeb 	/* Setup queue defaults; driver may override in (*add_interface). */
3808e3a0b120SBjoern A. Zeeb 	for (i = 0; i < IEEE80211_NUM_ACS; i++) {
3809e3a0b120SBjoern A. Zeeb 		if (ieee80211_hw_check(hw, QUEUE_CONTROL))
3810e3a0b120SBjoern A. Zeeb 			vif->hw_queue[i] = IEEE80211_INVAL_HW_QUEUE;
3811e3a0b120SBjoern A. Zeeb 		else if (hw->queues >= IEEE80211_NUM_ACS)
3812e3a0b120SBjoern A. Zeeb 			vif->hw_queue[i] = i;
3813e3a0b120SBjoern A. Zeeb 		else
3814e3a0b120SBjoern A. Zeeb 			vif->hw_queue[i] = 0;
38150cbcfa19SBjoern A. Zeeb 
38160cbcfa19SBjoern A. Zeeb 		/* Initialize the queue to running. Stopped? */
38170cbcfa19SBjoern A. Zeeb 		lvif->hw_queue_stopped[i] = false;
3818e3a0b120SBjoern A. Zeeb 	}
3819e3a0b120SBjoern A. Zeeb 	vif->cab_queue = IEEE80211_INVAL_HW_QUEUE;
3820e3a0b120SBjoern A. Zeeb 
38216b4cac81SBjoern A. Zeeb 	IMPROVE();
38226b4cac81SBjoern A. Zeeb 
38236b4cac81SBjoern A. Zeeb 	error = lkpi_80211_mo_start(hw);
38246b4cac81SBjoern A. Zeeb 	if (error != 0) {
38253f0083c4SBjoern A. Zeeb 		ic_printf(ic, "%s: failed to start hw: %d\n", __func__, error);
38266b4cac81SBjoern A. Zeeb 		mtx_destroy(&lvif->mtx);
38276b4cac81SBjoern A. Zeeb 		free(lvif, M_80211_VAP);
38286b4cac81SBjoern A. Zeeb 		return (NULL);
38296b4cac81SBjoern A. Zeeb 	}
38306b4cac81SBjoern A. Zeeb 
38316b4cac81SBjoern A. Zeeb 	error = lkpi_80211_mo_add_interface(hw, vif);
38326b4cac81SBjoern A. Zeeb 	if (error != 0) {
38336b4cac81SBjoern A. Zeeb 		IMPROVE();	/* XXX-BZ mo_stop()? */
38343f0083c4SBjoern A. Zeeb 		ic_printf(ic, "%s: failed to add interface: %d\n", __func__, error);
38356b4cac81SBjoern A. Zeeb 		mtx_destroy(&lvif->mtx);
38366b4cac81SBjoern A. Zeeb 		free(lvif, M_80211_VAP);
38376b4cac81SBjoern A. Zeeb 		return (NULL);
38386b4cac81SBjoern A. Zeeb 	}
38396b4cac81SBjoern A. Zeeb 
38408891c455SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_LOCK(lhw);
38416b4cac81SBjoern A. Zeeb 	TAILQ_INSERT_TAIL(&lhw->lvif_head, lvif, lvif_entry);
38428891c455SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_UNLOCK(lhw);
38436b4cac81SBjoern A. Zeeb 
38446b4cac81SBjoern A. Zeeb 	/* Set bss_info. */
38456b4cac81SBjoern A. Zeeb 	changed = 0;
38466b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, changed);
38476b4cac81SBjoern A. Zeeb 
3848a6042e17SBjoern A. Zeeb 	/* Configure tx queues (conf_tx), default WME & send BSS_CHANGED_QOS. */
3849a6042e17SBjoern A. Zeeb 	IMPROVE("Hardcoded values; to fix see 802.11-2016, 9.4.2.29 EDCA Parameter Set element");
3850cd0fcf9fSBjoern A. Zeeb 	wiphy_lock(hw->wiphy);
3851a6042e17SBjoern A. Zeeb 	for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
3852a6042e17SBjoern A. Zeeb 
3853a6042e17SBjoern A. Zeeb 		bzero(&txqp, sizeof(txqp));
3854a6042e17SBjoern A. Zeeb 		txqp.cw_min = 15;
3855a6042e17SBjoern A. Zeeb 		txqp.cw_max = 1023;
3856a6042e17SBjoern A. Zeeb 		txqp.txop = 0;
3857a6042e17SBjoern A. Zeeb 		txqp.aifs = 2;
3858a6042e17SBjoern A. Zeeb 		error = lkpi_80211_mo_conf_tx(hw, vif, /* link_id */0, ac, &txqp);
3859a6042e17SBjoern A. Zeeb 		if (error != 0)
3860a6042e17SBjoern A. Zeeb 			ic_printf(ic, "%s: conf_tx ac %u failed %d\n",
3861a6042e17SBjoern A. Zeeb 			    __func__, ac, error);
3862a6042e17SBjoern A. Zeeb 	}
3863cd0fcf9fSBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
3864a6042e17SBjoern A. Zeeb 	changed = BSS_CHANGED_QOS;
3865a6042e17SBjoern A. Zeeb 	lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, changed);
38666b4cac81SBjoern A. Zeeb 
38676b4cac81SBjoern A. Zeeb 	/* Force MC init. */
38686b4cac81SBjoern A. Zeeb 	lkpi_update_mcast_filter(ic, true);
38696b4cac81SBjoern A. Zeeb 
38706b4cac81SBjoern A. Zeeb 	IMPROVE();
38716b4cac81SBjoern A. Zeeb 
38726b4cac81SBjoern A. Zeeb 	ieee80211_vap_setup(ic, vap, name, unit, opmode, flags, bssid);
38736b4cac81SBjoern A. Zeeb 
38746b4cac81SBjoern A. Zeeb 	/* Override with LinuxKPI method so we can drive mac80211/cfg80211. */
38756b4cac81SBjoern A. Zeeb 	lvif->iv_newstate = vap->iv_newstate;
38766b4cac81SBjoern A. Zeeb 	vap->iv_newstate = lkpi_iv_newstate;
3877d9f59799SBjoern A. Zeeb 	lvif->iv_update_bss = vap->iv_update_bss;
3878d9f59799SBjoern A. Zeeb 	vap->iv_update_bss = lkpi_iv_update_bss;
38796b4cac81SBjoern A. Zeeb 
3880b35f6cd0SBjoern A. Zeeb #ifdef LKPI_80211_HW_CRYPTO
388111db70b6SBjoern A. Zeeb 	/* Key management. */
388211db70b6SBjoern A. Zeeb 	if (lkpi_hwcrypto && lhw->ops->set_key != NULL) {
38836b4cac81SBjoern A. Zeeb 		vap->iv_key_set = lkpi_iv_key_set;
38846b4cac81SBjoern A. Zeeb 		vap->iv_key_delete = lkpi_iv_key_delete;
3885b8dfc3ecSBjoern A. Zeeb 		vap->iv_key_update_begin = lkpi_iv_key_update_begin;
3886b8dfc3ecSBjoern A. Zeeb 		vap->iv_key_update_end = lkpi_iv_key_update_end;
38876b4cac81SBjoern A. Zeeb 	}
388811db70b6SBjoern A. Zeeb #endif
38896b4cac81SBjoern A. Zeeb 
38909fb91463SBjoern A. Zeeb #ifdef LKPI_80211_HT
38919fb91463SBjoern A. Zeeb 	/* Stay with the iv_ampdu_rxmax,limit / iv_ampdu_density defaults until later. */
38929fb91463SBjoern A. Zeeb #endif
38939fb91463SBjoern A. Zeeb 
38946b4cac81SBjoern A. Zeeb 	ieee80211_ratectl_init(vap);
38956b4cac81SBjoern A. Zeeb 
38966b4cac81SBjoern A. Zeeb 	/* Complete setup. */
38976b4cac81SBjoern A. Zeeb 	ieee80211_vap_attach(vap, ieee80211_media_change,
38986b4cac81SBjoern A. Zeeb 	    ieee80211_media_status, mac);
38996b4cac81SBjoern A. Zeeb 
390011db70b6SBjoern A. Zeeb #ifdef LKPI_80211_HT
390111db70b6SBjoern A. Zeeb 	/*
390211db70b6SBjoern A. Zeeb 	 * Modern chipset/fw/drv will do A-MPDU in drv/fw and fail
390311db70b6SBjoern A. Zeeb 	 * to do so if they cannot do the crypto too.
390411db70b6SBjoern A. Zeeb 	 */
390511db70b6SBjoern A. Zeeb 	if (!lkpi_hwcrypto && ieee80211_hw_check(hw, AMPDU_AGGREGATION))
390611db70b6SBjoern A. Zeeb 		vap->iv_flags_ht &= ~IEEE80211_FHT_AMPDU_RX;
390711db70b6SBjoern A. Zeeb #endif
3908ac2c7271SBjoern A. Zeeb #if defined(LKPI_80211_HT)
3909ac2c7271SBjoern A. Zeeb 	/* 20250125-BZ Keep A-MPDU TX cleared until we sorted out AddBA for all drivers. */
3910ac2c7271SBjoern A. Zeeb 	vap->iv_flags_ht &= ~IEEE80211_FHT_AMPDU_TX;
3911ac2c7271SBjoern A. Zeeb #endif
391211db70b6SBjoern A. Zeeb 
39136b4cac81SBjoern A. Zeeb 	if (hw->max_listen_interval == 0)
39146b4cac81SBjoern A. Zeeb 		hw->max_listen_interval = 7 * (ic->ic_lintval / ic->ic_bintval);
39156b4cac81SBjoern A. Zeeb 	hw->conf.listen_interval = hw->max_listen_interval;
39166b4cac81SBjoern A. Zeeb 	ic->ic_set_channel(ic);
39176b4cac81SBjoern A. Zeeb 
39186b4cac81SBjoern A. Zeeb 	/* XXX-BZ do we need to be able to update these? */
39196b4cac81SBjoern A. Zeeb 	hw->wiphy->frag_threshold = vap->iv_fragthreshold;
39206b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_set_frag_threshold(hw, vap->iv_fragthreshold);
39216b4cac81SBjoern A. Zeeb 	hw->wiphy->rts_threshold = vap->iv_rtsthreshold;
39226b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_set_rts_threshold(hw, vap->iv_rtsthreshold);
39236b4cac81SBjoern A. Zeeb 	/* any others? */
392440839418SBjoern A. Zeeb 
392540839418SBjoern A. Zeeb 	/* Add per-VIF/VAP sysctls. */
392640839418SBjoern A. Zeeb 	sysctl_ctx_init(&lvif->sysctl_ctx);
392740839418SBjoern A. Zeeb 
392840839418SBjoern A. Zeeb 	node = SYSCTL_ADD_NODE(&lvif->sysctl_ctx,
392940839418SBjoern A. Zeeb 	    SYSCTL_CHILDREN(&sysctl___compat_linuxkpi_80211),
393040839418SBjoern A. Zeeb 	    OID_AUTO, if_name(vap->iv_ifp),
393140839418SBjoern A. Zeeb 	    CTLFLAG_RD | CTLFLAG_SKIP | CTLFLAG_MPSAFE, NULL, "VIF Information");
393240839418SBjoern A. Zeeb 
393340839418SBjoern A. Zeeb 	SYSCTL_ADD_PROC(&lvif->sysctl_ctx,
393440839418SBjoern A. Zeeb 	    SYSCTL_CHILDREN(node), OID_AUTO, "dump_stas",
393540839418SBjoern A. Zeeb 	    CTLTYPE_STRING | CTLFLAG_RD | CTLFLAG_MPSAFE, lvif, 0,
393640839418SBjoern A. Zeeb 	    lkpi_80211_dump_stas, "A", "Dump sta statistics of this vif");
393740839418SBjoern A. Zeeb 
39386b4cac81SBjoern A. Zeeb 	IMPROVE();
39396b4cac81SBjoern A. Zeeb 
39406b4cac81SBjoern A. Zeeb 	return (vap);
39416b4cac81SBjoern A. Zeeb }
39426b4cac81SBjoern A. Zeeb 
39434b0af114SBjoern A. Zeeb void
39444b0af114SBjoern A. Zeeb linuxkpi_ieee80211_unregister_hw(struct ieee80211_hw *hw)
39454b0af114SBjoern A. Zeeb {
39464b0af114SBjoern A. Zeeb 
39474b0af114SBjoern A. Zeeb 	wiphy_unregister(hw->wiphy);
39484b0af114SBjoern A. Zeeb 	linuxkpi_ieee80211_ifdetach(hw);
39494b0af114SBjoern A. Zeeb 
39504b0af114SBjoern A. Zeeb 	IMPROVE();
39514b0af114SBjoern A. Zeeb }
39524b0af114SBjoern A. Zeeb 
39534b0af114SBjoern A. Zeeb void
39544b0af114SBjoern A. Zeeb linuxkpi_ieee80211_restart_hw(struct ieee80211_hw *hw)
39554b0af114SBjoern A. Zeeb {
39564b0af114SBjoern A. Zeeb 
39574b0af114SBjoern A. Zeeb 	TODO();
39584b0af114SBjoern A. Zeeb }
39594b0af114SBjoern A. Zeeb 
39606b4cac81SBjoern A. Zeeb static void
39616b4cac81SBjoern A. Zeeb lkpi_ic_vap_delete(struct ieee80211vap *vap)
39626b4cac81SBjoern A. Zeeb {
39636b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
39646b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
39656b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
39666b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
39676b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
39686b4cac81SBjoern A. Zeeb 
39696b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
39706b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
39716b4cac81SBjoern A. Zeeb 	ic = vap->iv_ic;
39726b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
39736b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
39746b4cac81SBjoern A. Zeeb 
39754aff4048SBjoern A. Zeeb 	EVENTHANDLER_DEREGISTER(iflladdr_event, lvif->lvif_ifllevent);
39764aff4048SBjoern A. Zeeb 
397740839418SBjoern A. Zeeb 	/* Clear up per-VIF/VAP sysctls. */
397840839418SBjoern A. Zeeb 	sysctl_ctx_free(&lvif->sysctl_ctx);
397940839418SBjoern A. Zeeb 
39808891c455SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_LOCK(lhw);
39816b4cac81SBjoern A. Zeeb 	TAILQ_REMOVE(&lhw->lvif_head, lvif, lvif_entry);
39828891c455SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_UNLOCK(lhw);
39836b4cac81SBjoern A. Zeeb 
39846b4cac81SBjoern A. Zeeb 	ieee80211_ratectl_deinit(vap);
39856b4cac81SBjoern A. Zeeb 	ieee80211_vap_detach(vap);
3986dbf76919SBjoern A. Zeeb 
3987dbf76919SBjoern A. Zeeb 	IMPROVE("clear up other bits in this state");
3988dbf76919SBjoern A. Zeeb 
3989dbf76919SBjoern A. Zeeb 	lkpi_80211_mo_remove_interface(hw, vif);
3990dbf76919SBjoern A. Zeeb 
39916c38c6b1SBjoern A. Zeeb 	/* Single VAP, so we can do this here. */
39927b43f4d0SBjoern A. Zeeb 	lkpi_80211_mo_stop(hw, false);			/* XXX SUSPEND */
39936c38c6b1SBjoern A. Zeeb 
39946b4cac81SBjoern A. Zeeb 	mtx_destroy(&lvif->mtx);
39956b4cac81SBjoern A. Zeeb 	free(lvif, M_80211_VAP);
39966b4cac81SBjoern A. Zeeb }
39976b4cac81SBjoern A. Zeeb 
39986b4cac81SBjoern A. Zeeb static void
39996b4cac81SBjoern A. Zeeb lkpi_ic_update_mcast(struct ieee80211com *ic)
40006b4cac81SBjoern A. Zeeb {
40016b4cac81SBjoern A. Zeeb 
40026b4cac81SBjoern A. Zeeb 	lkpi_update_mcast_filter(ic, false);
40036b4cac81SBjoern A. Zeeb 	TRACEOK();
40046b4cac81SBjoern A. Zeeb }
40056b4cac81SBjoern A. Zeeb 
40066b4cac81SBjoern A. Zeeb static void
40076b4cac81SBjoern A. Zeeb lkpi_ic_update_promisc(struct ieee80211com *ic)
40086b4cac81SBjoern A. Zeeb {
40096b4cac81SBjoern A. Zeeb 
40106b4cac81SBjoern A. Zeeb 	UNIMPLEMENTED;
40116b4cac81SBjoern A. Zeeb }
40126b4cac81SBjoern A. Zeeb 
40136b4cac81SBjoern A. Zeeb static void
40146b4cac81SBjoern A. Zeeb lkpi_ic_update_chw(struct ieee80211com *ic)
40156b4cac81SBjoern A. Zeeb {
40166b4cac81SBjoern A. Zeeb 
40176b4cac81SBjoern A. Zeeb 	UNIMPLEMENTED;
40186b4cac81SBjoern A. Zeeb }
40196b4cac81SBjoern A. Zeeb 
40206b4cac81SBjoern A. Zeeb /* Start / stop device. */
40216b4cac81SBjoern A. Zeeb static void
40226b4cac81SBjoern A. Zeeb lkpi_ic_parent(struct ieee80211com *ic)
40236b4cac81SBjoern A. Zeeb {
40246b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
40256b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
4026cd0fcf9fSBjoern A. Zeeb #ifdef HW_START_STOP
40276b4cac81SBjoern A. Zeeb 	int error;
40288d58a057SBjoern A. Zeeb #endif
40296b4cac81SBjoern A. Zeeb 	bool start_all;
40306b4cac81SBjoern A. Zeeb 
40316b4cac81SBjoern A. Zeeb 	IMPROVE();
40326b4cac81SBjoern A. Zeeb 
40336b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
40346b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
40356b4cac81SBjoern A. Zeeb 	start_all = false;
40366b4cac81SBjoern A. Zeeb 
40378ac540d3SBjoern A. Zeeb 	/* IEEE80211_UNLOCK(ic); */
4038cd0fcf9fSBjoern A. Zeeb 	wiphy_lock(hw->wiphy);
40396b4cac81SBjoern A. Zeeb 	if (ic->ic_nrunning > 0) {
40408d58a057SBjoern A. Zeeb #ifdef HW_START_STOP
40416b4cac81SBjoern A. Zeeb 		error = lkpi_80211_mo_start(hw);
40426b4cac81SBjoern A. Zeeb 		if (error == 0)
40438d58a057SBjoern A. Zeeb #endif
40446b4cac81SBjoern A. Zeeb 			start_all = true;
40456b4cac81SBjoern A. Zeeb 	} else {
40468d58a057SBjoern A. Zeeb #ifdef HW_START_STOP
40477b43f4d0SBjoern A. Zeeb 		lkpi_80211_mo_stop(hw, false);		/* XXX SUSPEND */
40488d58a057SBjoern A. Zeeb #endif
40496b4cac81SBjoern A. Zeeb 	}
4050cd0fcf9fSBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
40518ac540d3SBjoern A. Zeeb 	/* IEEE80211_LOCK(ic); */
40526b4cac81SBjoern A. Zeeb 
40536b4cac81SBjoern A. Zeeb 	if (start_all)
40546b4cac81SBjoern A. Zeeb 		ieee80211_start_all(ic);
40556b4cac81SBjoern A. Zeeb }
40566b4cac81SBjoern A. Zeeb 
40576b4cac81SBjoern A. Zeeb bool
40586b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_is_ie_id_in_ie_buf(const u8 ie, const u8 *ie_ids,
40596b4cac81SBjoern A. Zeeb     size_t ie_ids_len)
40606b4cac81SBjoern A. Zeeb {
40616b4cac81SBjoern A. Zeeb 	int i;
40626b4cac81SBjoern A. Zeeb 
40636b4cac81SBjoern A. Zeeb 	for (i = 0; i < ie_ids_len; i++) {
40646b4cac81SBjoern A. Zeeb 		if (ie == *ie_ids)
40656b4cac81SBjoern A. Zeeb 			return (true);
40666b4cac81SBjoern A. Zeeb 	}
40676b4cac81SBjoern A. Zeeb 
40686b4cac81SBjoern A. Zeeb 	return (false);
40696b4cac81SBjoern A. Zeeb }
40706b4cac81SBjoern A. Zeeb 
40716b4cac81SBjoern A. Zeeb /* Return true if skipped; false if error. */
40726b4cac81SBjoern A. Zeeb bool
40736b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_ie_advance(size_t *xp, const u8 *ies, size_t ies_len)
40746b4cac81SBjoern A. Zeeb {
40756b4cac81SBjoern A. Zeeb 	size_t x;
40766b4cac81SBjoern A. Zeeb 	uint8_t l;
40776b4cac81SBjoern A. Zeeb 
40786b4cac81SBjoern A. Zeeb 	x = *xp;
40796b4cac81SBjoern A. Zeeb 
40806b4cac81SBjoern A. Zeeb 	KASSERT(x < ies_len, ("%s: x %zu ies_len %zu ies %p\n",
40816b4cac81SBjoern A. Zeeb 	    __func__, x, ies_len, ies));
40826b4cac81SBjoern A. Zeeb 	l = ies[x + 1];
40836b4cac81SBjoern A. Zeeb 	x += 2 + l;
40846b4cac81SBjoern A. Zeeb 
40856b4cac81SBjoern A. Zeeb 	if (x > ies_len)
40866b4cac81SBjoern A. Zeeb 		return (false);
40876b4cac81SBjoern A. Zeeb 
40886b4cac81SBjoern A. Zeeb 	*xp = x;
40896b4cac81SBjoern A. Zeeb 	return (true);
40906b4cac81SBjoern A. Zeeb }
40916b4cac81SBjoern A. Zeeb 
4092d9945d78SBjoern A. Zeeb static uint8_t *
4093d9945d78SBjoern A. Zeeb lkpi_scan_ies_add(uint8_t *p, struct ieee80211_scan_ies *scan_ies,
4094d9945d78SBjoern A. Zeeb     uint32_t band_mask, struct ieee80211vap *vap, struct ieee80211_hw *hw)
40956b4cac81SBjoern A. Zeeb {
4096d9945d78SBjoern A. Zeeb 	struct ieee80211_supported_band *supband;
4097d9945d78SBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel *channels;
40983dd98026SBjoern A. Zeeb 	struct ieee80211com *ic;
4099d9945d78SBjoern A. Zeeb 	const struct ieee80211_channel *chan;
4100d9945d78SBjoern A. Zeeb 	const struct ieee80211_rateset *rs;
4101d9945d78SBjoern A. Zeeb 	uint8_t *pb;
4102d9945d78SBjoern A. Zeeb 	int band, i;
41036b4cac81SBjoern A. Zeeb 
41043dd98026SBjoern A. Zeeb 	ic = vap->iv_ic;
4105d9945d78SBjoern A. Zeeb 	for (band = 0; band < NUM_NL80211_BANDS; band++) {
4106d9945d78SBjoern A. Zeeb 		if ((band_mask & (1 << band)) == 0)
4107d9945d78SBjoern A. Zeeb 			continue;
4108d9945d78SBjoern A. Zeeb 
4109d9945d78SBjoern A. Zeeb 		supband = hw->wiphy->bands[band];
4110d9945d78SBjoern A. Zeeb 		/*
4111d9945d78SBjoern A. Zeeb 		 * This should not happen;
4112d9945d78SBjoern A. Zeeb 		 * band_mask is a bitmask of valid bands to scan on.
4113d9945d78SBjoern A. Zeeb 		 */
4114d9945d78SBjoern A. Zeeb 		if (supband == NULL || supband->n_channels == 0)
4115d9945d78SBjoern A. Zeeb 			continue;
4116d9945d78SBjoern A. Zeeb 
4117d9945d78SBjoern A. Zeeb 		/* Find a first channel to get the mode and rates from. */
4118d9945d78SBjoern A. Zeeb 		channels = supband->channels;
4119d9945d78SBjoern A. Zeeb 		chan = NULL;
4120d9945d78SBjoern A. Zeeb 		for (i = 0; i < supband->n_channels; i++) {
4121*f1a110f1SBjoern A. Zeeb 			uint32_t flags;
4122d9945d78SBjoern A. Zeeb 
4123d9945d78SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_DISABLED)
4124d9945d78SBjoern A. Zeeb 				continue;
4125d9945d78SBjoern A. Zeeb 
4126*f1a110f1SBjoern A. Zeeb 			flags = 0;
4127*f1a110f1SBjoern A. Zeeb 			switch (band) {
4128*f1a110f1SBjoern A. Zeeb 			case NL80211_BAND_2GHZ:
4129*f1a110f1SBjoern A. Zeeb 				flags |= IEEE80211_CHAN_G;
4130*f1a110f1SBjoern A. Zeeb 				break;
4131*f1a110f1SBjoern A. Zeeb 			case NL80211_BAND_5GHZ:
4132*f1a110f1SBjoern A. Zeeb 				flags |= IEEE80211_CHAN_A;
4133*f1a110f1SBjoern A. Zeeb 				break;
4134*f1a110f1SBjoern A. Zeeb 			default:
4135*f1a110f1SBjoern A. Zeeb 				panic("%s:%d: unupported band %d\n",
4136*f1a110f1SBjoern A. Zeeb 				    __func__, __LINE__, band);
4137*f1a110f1SBjoern A. Zeeb 			}
4138*f1a110f1SBjoern A. Zeeb 
41393dd98026SBjoern A. Zeeb 			chan = ieee80211_find_channel(ic,
4140*f1a110f1SBjoern A. Zeeb 			    channels[i].center_freq, flags);
4141d9945d78SBjoern A. Zeeb 			if (chan != NULL)
4142d9945d78SBjoern A. Zeeb 				break;
4143d9945d78SBjoern A. Zeeb 		}
4144d9945d78SBjoern A. Zeeb 
4145d9945d78SBjoern A. Zeeb 		/* This really should not happen. */
4146d9945d78SBjoern A. Zeeb 		if (chan == NULL)
4147d9945d78SBjoern A. Zeeb 			continue;
4148d9945d78SBjoern A. Zeeb 
4149d9945d78SBjoern A. Zeeb 		pb = p;
41503dd98026SBjoern A. Zeeb 		rs = ieee80211_get_suprates(ic, chan);	/* calls chan2mode */
4151d9945d78SBjoern A. Zeeb 		p = ieee80211_add_rates(p, rs);
4152d9945d78SBjoern A. Zeeb 		p = ieee80211_add_xrates(p, rs);
4153d9945d78SBjoern A. Zeeb 
41543dd98026SBjoern A. Zeeb #if defined(LKPI_80211_HT)
41553dd98026SBjoern A. Zeeb 		if ((vap->iv_flags_ht & IEEE80211_FHT_HT) != 0) {
41563dd98026SBjoern A. Zeeb 			struct ieee80211_channel *c;
41573dd98026SBjoern A. Zeeb 
41583dd98026SBjoern A. Zeeb 			c = ieee80211_ht_adjust_channel(ic, ic->ic_curchan,
41593dd98026SBjoern A. Zeeb 			    vap->iv_flags_ht);
41603dd98026SBjoern A. Zeeb 			p = ieee80211_add_htcap_ch(p, vap, c);
41613dd98026SBjoern A. Zeeb 		}
41623dd98026SBjoern A. Zeeb #endif
41633dd98026SBjoern A. Zeeb #if defined(LKPI_80211_VHT)
41645393cd34SBjoern A. Zeeb 		if (band == NL80211_BAND_5GHZ &&
41655393cd34SBjoern A. Zeeb 		    (vap->iv_vht_flags & IEEE80211_FVHT_VHT) != 0) {
41663dd98026SBjoern A. Zeeb 			struct ieee80211_channel *c;
41673dd98026SBjoern A. Zeeb 
41683dd98026SBjoern A. Zeeb 			c = ieee80211_ht_adjust_channel(ic, ic->ic_curchan,
41693dd98026SBjoern A. Zeeb 			    vap->iv_flags_ht);
41703dd98026SBjoern A. Zeeb 			c = ieee80211_vht_adjust_channel(ic, c,
41713dd98026SBjoern A. Zeeb 			    vap->iv_vht_flags);
41723dd98026SBjoern A. Zeeb 			p = ieee80211_add_vhtcap_ch(p, vap, c);
41733dd98026SBjoern A. Zeeb 		}
41743dd98026SBjoern A. Zeeb #endif
41753dd98026SBjoern A. Zeeb 
4176d9945d78SBjoern A. Zeeb 		scan_ies->ies[band] = pb;
4177d9945d78SBjoern A. Zeeb 		scan_ies->len[band] = p - pb;
4178d9945d78SBjoern A. Zeeb 	}
4179d9945d78SBjoern A. Zeeb 
4180d9945d78SBjoern A. Zeeb 	/* Add common_ies */
4181d9945d78SBjoern A. Zeeb 	pb = p;
4182d9945d78SBjoern A. Zeeb 	if ((vap->iv_flags & IEEE80211_F_WPA1) != 0 &&
4183d9945d78SBjoern A. Zeeb 	    vap->iv_wpa_ie != NULL) {
4184d9945d78SBjoern A. Zeeb 		memcpy(p, vap->iv_wpa_ie, 2 + vap->iv_wpa_ie[1]);
4185d9945d78SBjoern A. Zeeb 		p += 2 + vap->iv_wpa_ie[1];
4186d9945d78SBjoern A. Zeeb 	}
4187d9945d78SBjoern A. Zeeb 	if (vap->iv_appie_probereq != NULL) {
4188d9945d78SBjoern A. Zeeb 		memcpy(p, vap->iv_appie_probereq->ie_data,
4189d9945d78SBjoern A. Zeeb 		    vap->iv_appie_probereq->ie_len);
4190d9945d78SBjoern A. Zeeb 		p += vap->iv_appie_probereq->ie_len;
4191d9945d78SBjoern A. Zeeb 	}
4192d9945d78SBjoern A. Zeeb 	scan_ies->common_ies = pb;
4193d9945d78SBjoern A. Zeeb 	scan_ies->common_ie_len = p - pb;
4194d9945d78SBjoern A. Zeeb 
4195d9945d78SBjoern A. Zeeb 	return (p);
41966b4cac81SBjoern A. Zeeb }
41976b4cac81SBjoern A. Zeeb 
41986b4cac81SBjoern A. Zeeb static void
41996b4cac81SBjoern A. Zeeb lkpi_ic_scan_start(struct ieee80211com *ic)
42006b4cac81SBjoern A. Zeeb {
42016b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
42026b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
42036b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
42046b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
42056b4cac81SBjoern A. Zeeb 	struct ieee80211_scan_state *ss;
42066b4cac81SBjoern A. Zeeb 	struct ieee80211vap *vap;
42076b4cac81SBjoern A. Zeeb 	int error;
42088ac540d3SBjoern A. Zeeb 	bool is_hw_scan;
42096b4cac81SBjoern A. Zeeb 
42106b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
42118ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_LOCK(lhw);
4212a486fbbdSBjoern A. Zeeb 	if ((lhw->scan_flags & LKPI_LHW_SCAN_RUNNING) != 0) {
42136b4cac81SBjoern A. Zeeb 		/* A scan is still running. */
42148ac540d3SBjoern A. Zeeb 		LKPI_80211_LHW_SCAN_UNLOCK(lhw);
42156b4cac81SBjoern A. Zeeb 		return;
42166b4cac81SBjoern A. Zeeb 	}
42178ac540d3SBjoern A. Zeeb 	is_hw_scan = (lhw->scan_flags & LKPI_LHW_SCAN_HW) != 0;
42188ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_UNLOCK(lhw);
42196b4cac81SBjoern A. Zeeb 
42206b4cac81SBjoern A. Zeeb 	ss = ic->ic_scan;
42216b4cac81SBjoern A. Zeeb 	vap = ss->ss_vap;
42226b4cac81SBjoern A. Zeeb 	if (vap->iv_state != IEEE80211_S_SCAN) {
4223d3ef7fb4SBjoern A. Zeeb 		IMPROVE("We need to be able to scan if not in S_SCAN");
42246b4cac81SBjoern A. Zeeb 		return;
42256b4cac81SBjoern A. Zeeb 	}
42266b4cac81SBjoern A. Zeeb 
42276b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
42288ac540d3SBjoern A. Zeeb 	if (!is_hw_scan) {
4229a486fbbdSBjoern A. Zeeb 		/* If hw_scan is cleared clear FEXT_SCAN_OFFLOAD too. */
4230a486fbbdSBjoern A. Zeeb 		vap->iv_flags_ext &= ~IEEE80211_FEXT_SCAN_OFFLOAD;
4231d3ef7fb4SBjoern A. Zeeb sw_scan:
42326b4cac81SBjoern A. Zeeb 		lvif = VAP_TO_LVIF(vap);
42336b4cac81SBjoern A. Zeeb 		vif = LVIF_TO_VIF(lvif);
4234086be6a8SBjoern A. Zeeb 
4235086be6a8SBjoern A. Zeeb 		if (vap->iv_state == IEEE80211_S_SCAN)
4236086be6a8SBjoern A. Zeeb 			lkpi_hw_conf_idle(hw, false);
4237086be6a8SBjoern A. Zeeb 
42386b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_sw_scan_start(hw, vif, vif->addr);
42396b4cac81SBjoern A. Zeeb 		/* net80211::scan_start() handled PS for us. */
42406b4cac81SBjoern A. Zeeb 		IMPROVE();
42416b4cac81SBjoern A. Zeeb 		/* XXX Also means it is too late to flush queues?
42426b4cac81SBjoern A. Zeeb 		 * need to check iv_sta_ps or overload? */
42436b4cac81SBjoern A. Zeeb 		/* XXX want to adjust ss end time/ maxdwell? */
42446b4cac81SBjoern A. Zeeb 
42456b4cac81SBjoern A. Zeeb 	} else {
42466b4cac81SBjoern A. Zeeb 		struct ieee80211_scan_request *hw_req;
42476b4cac81SBjoern A. Zeeb 		struct linuxkpi_ieee80211_channel *lc, **cpp;
42486b4cac81SBjoern A. Zeeb 		struct cfg80211_ssid *ssids;
42496b4cac81SBjoern A. Zeeb 		struct cfg80211_scan_6ghz_params *s6gp;
42506b4cac81SBjoern A. Zeeb 		size_t chan_len, nchan, ssids_len, s6ghzlen;
4251d9945d78SBjoern A. Zeeb 		int band, i, ssid_count, common_ie_len;
4252d9945d78SBjoern A. Zeeb 		uint32_t band_mask;
4253d9945d78SBjoern A. Zeeb 		uint8_t *ie, *ieend;
42543206587aSBjoern A. Zeeb 		bool running;
4255d9945d78SBjoern A. Zeeb 
4256d9945d78SBjoern A. Zeeb 		ssid_count = min(ss->ss_nssid, hw->wiphy->max_scan_ssids);
4257d9945d78SBjoern A. Zeeb 		ssids_len = ssid_count * sizeof(*ssids);
42586b4cac81SBjoern A. Zeeb 		s6ghzlen = 0 * (sizeof(*s6gp));			/* XXX-BZ */
42596b4cac81SBjoern A. Zeeb 
4260d9945d78SBjoern A. Zeeb 		band_mask = 0;
42616b4cac81SBjoern A. Zeeb 		nchan = 0;
4262c272abc5SBjoern A. Zeeb 		if (ieee80211_hw_check(hw, SINGLE_SCAN_ON_ALL_BANDS)) {
4263c272abc5SBjoern A. Zeeb #if 0	/* Avoid net80211 scan lists until it has proper scan offload support. */
4264d9945d78SBjoern A. Zeeb 			for (i = ss->ss_next; i < ss->ss_last; i++) {
42656b4cac81SBjoern A. Zeeb 				nchan++;
4266d9945d78SBjoern A. Zeeb 				band = lkpi_net80211_chan_to_nl80211_band(
4267d9945d78SBjoern A. Zeeb 				    ss->ss_chans[ss->ss_next + i]);
4268d9945d78SBjoern A. Zeeb 				band_mask |= (1 << band);
4269d9945d78SBjoern A. Zeeb 			}
4270c272abc5SBjoern A. Zeeb #else
4271c272abc5SBjoern A. Zeeb 			/* Instead we scan for all channels all the time. */
4272c272abc5SBjoern A. Zeeb 			for (band = 0; band < NUM_NL80211_BANDS; band++) {
4273c272abc5SBjoern A. Zeeb 				switch (band) {
4274c272abc5SBjoern A. Zeeb 				case NL80211_BAND_2GHZ:
4275c272abc5SBjoern A. Zeeb 				case NL80211_BAND_5GHZ:
4276c272abc5SBjoern A. Zeeb 					break;
4277c272abc5SBjoern A. Zeeb 				default:
4278c272abc5SBjoern A. Zeeb 					continue;
4279c272abc5SBjoern A. Zeeb 				}
4280c272abc5SBjoern A. Zeeb 				if (hw->wiphy->bands[band] != NULL) {
4281c272abc5SBjoern A. Zeeb 					nchan += hw->wiphy->bands[band]->n_channels;
4282c272abc5SBjoern A. Zeeb 					band_mask |= (1 << band);
4283c272abc5SBjoern A. Zeeb 				}
4284c272abc5SBjoern A. Zeeb 			}
4285c272abc5SBjoern A. Zeeb #endif
4286c272abc5SBjoern A. Zeeb 		} else {
42873206587aSBjoern A. Zeeb 			IMPROVE("individual band scans not yet supported, only scanning first band");
42883206587aSBjoern A. Zeeb 			/* In theory net80211 should drive this. */
42893206587aSBjoern A. Zeeb 			/* Probably we need to add local logic for now;
42903206587aSBjoern A. Zeeb 			 * need to deal with scan_complete
42913206587aSBjoern A. Zeeb 			 * and cancel_scan and keep local state.
42923206587aSBjoern A. Zeeb 			 * Also cut the nchan down above.
42933206587aSBjoern A. Zeeb 			 */
42943206587aSBjoern A. Zeeb 			/* XXX-BZ ath10k does not set this but still does it? &$%^ */
42953206587aSBjoern A. Zeeb 		}
42963206587aSBjoern A. Zeeb 
42976b4cac81SBjoern A. Zeeb 		chan_len = nchan * (sizeof(lc) + sizeof(*lc));
42986b4cac81SBjoern A. Zeeb 
4299d9945d78SBjoern A. Zeeb 		common_ie_len = 0;
4300d9945d78SBjoern A. Zeeb 		if ((vap->iv_flags & IEEE80211_F_WPA1) != 0 &&
4301d9945d78SBjoern A. Zeeb 		    vap->iv_wpa_ie != NULL)
4302d9945d78SBjoern A. Zeeb 			common_ie_len += vap->iv_wpa_ie[1];
4303d9945d78SBjoern A. Zeeb 		if (vap->iv_appie_probereq != NULL)
4304d9945d78SBjoern A. Zeeb 			common_ie_len += vap->iv_appie_probereq->ie_len;
4305d9945d78SBjoern A. Zeeb 
4306d9945d78SBjoern A. Zeeb 		/* We would love to check this at an earlier stage... */
4307d9945d78SBjoern A. Zeeb 		if (common_ie_len >  hw->wiphy->max_scan_ie_len) {
4308d9945d78SBjoern A. Zeeb 			ic_printf(ic, "WARNING: %s: common_ie_len %d > "
4309d9945d78SBjoern A. Zeeb 			    "wiphy->max_scan_ie_len %d\n", __func__,
4310d9945d78SBjoern A. Zeeb 			    common_ie_len, hw->wiphy->max_scan_ie_len);
4311d9945d78SBjoern A. Zeeb 		}
4312d9945d78SBjoern A. Zeeb 
43133206587aSBjoern A. Zeeb 		hw_req = malloc(sizeof(*hw_req) + ssids_len +
4314d9945d78SBjoern A. Zeeb 		    s6ghzlen + chan_len + lhw->supbands * lhw->scan_ie_len +
4315d9945d78SBjoern A. Zeeb 		    common_ie_len, M_LKPI80211, M_WAITOK | M_ZERO);
43166b4cac81SBjoern A. Zeeb 
43176b4cac81SBjoern A. Zeeb 		hw_req->req.flags = 0;			/* XXX ??? */
43186b4cac81SBjoern A. Zeeb 		/* hw_req->req.wdev */
43196b4cac81SBjoern A. Zeeb 		hw_req->req.wiphy = hw->wiphy;
43206b4cac81SBjoern A. Zeeb 		hw_req->req.no_cck = false;		/* XXX */
43216b4cac81SBjoern A. Zeeb #if 0
43226b4cac81SBjoern A. Zeeb 		/* This seems to pessimise default scanning behaviour. */
43236b4cac81SBjoern A. Zeeb 		hw_req->req.duration_mandatory = TICKS_2_USEC(ss->ss_mindwell);
43246b4cac81SBjoern A. Zeeb 		hw_req->req.duration = TICKS_2_USEC(ss->ss_maxdwell);
43256b4cac81SBjoern A. Zeeb #endif
43266b4cac81SBjoern A. Zeeb #ifdef __notyet__
43276b4cac81SBjoern A. Zeeb 		hw_req->req.flags |= NL80211_SCAN_FLAG_RANDOM_ADDR;
43286b4cac81SBjoern A. Zeeb 		memcpy(hw_req->req.mac_addr, xxx, IEEE80211_ADDR_LEN);
43296b4cac81SBjoern A. Zeeb 		memset(hw_req->req.mac_addr_mask, 0xxx, IEEE80211_ADDR_LEN);
43306b4cac81SBjoern A. Zeeb #endif
4331e1e90be0SBjoern A. Zeeb 		eth_broadcast_addr(hw_req->req.bssid);
43326b4cac81SBjoern A. Zeeb 
43336b4cac81SBjoern A. Zeeb 		hw_req->req.n_channels = nchan;
43346b4cac81SBjoern A. Zeeb 		cpp = (struct linuxkpi_ieee80211_channel **)(hw_req + 1);
43356b4cac81SBjoern A. Zeeb 		lc = (struct linuxkpi_ieee80211_channel *)(cpp + nchan);
43366b4cac81SBjoern A. Zeeb 		for (i = 0; i < nchan; i++) {
43376b4cac81SBjoern A. Zeeb 			*(cpp + i) =
43386b4cac81SBjoern A. Zeeb 			    (struct linuxkpi_ieee80211_channel *)(lc + i);
43396b4cac81SBjoern A. Zeeb 		}
4340c272abc5SBjoern A. Zeeb #if 0	/* Avoid net80211 scan lists until it has proper scan offload support. */
43416b4cac81SBjoern A. Zeeb 		for (i = 0; i < nchan; i++) {
4342c272abc5SBjoern A. Zeeb 			struct ieee80211_channel *c;
43436b4cac81SBjoern A. Zeeb 
4344c272abc5SBjoern A. Zeeb 			c = ss->ss_chans[ss->ss_next + i];
43456b4cac81SBjoern A. Zeeb 			lc->hw_value = c->ic_ieee;
43463206587aSBjoern A. Zeeb 			lc->center_freq = c->ic_freq;	/* XXX */
43476b4cac81SBjoern A. Zeeb 			/* lc->flags */
43486b4cac81SBjoern A. Zeeb 			lc->band = lkpi_net80211_chan_to_nl80211_band(c);
43496b4cac81SBjoern A. Zeeb 			lc->max_power = c->ic_maxpower;
43506b4cac81SBjoern A. Zeeb 			/* lc-> ... */
43516b4cac81SBjoern A. Zeeb 			lc++;
43526b4cac81SBjoern A. Zeeb 		}
4353c272abc5SBjoern A. Zeeb #else
4354c272abc5SBjoern A. Zeeb 		for (band = 0; band < NUM_NL80211_BANDS; band++) {
4355c272abc5SBjoern A. Zeeb 			struct ieee80211_supported_band *supband;
4356c272abc5SBjoern A. Zeeb 			struct linuxkpi_ieee80211_channel *channels;
4357c272abc5SBjoern A. Zeeb 
4358c272abc5SBjoern A. Zeeb 			/* Band disabled for scanning? */
4359c272abc5SBjoern A. Zeeb 			if ((band_mask & (1 << band)) == 0)
4360c272abc5SBjoern A. Zeeb 				continue;
4361c272abc5SBjoern A. Zeeb 
4362c272abc5SBjoern A. Zeeb 			/* Nothing to scan in band? */
4363c272abc5SBjoern A. Zeeb 			supband = hw->wiphy->bands[band];
4364c272abc5SBjoern A. Zeeb 			if (supband == NULL || supband->n_channels == 0)
4365c272abc5SBjoern A. Zeeb 				continue;
4366c272abc5SBjoern A. Zeeb 
4367c272abc5SBjoern A. Zeeb 			channels = supband->channels;
4368c272abc5SBjoern A. Zeeb 			for (i = 0; i < supband->n_channels; i++) {
4369c272abc5SBjoern A. Zeeb 				*lc = channels[i];
4370c272abc5SBjoern A. Zeeb 				lc++;
4371c272abc5SBjoern A. Zeeb 			}
4372c272abc5SBjoern A. Zeeb 		}
4373c272abc5SBjoern A. Zeeb #endif
43746b4cac81SBjoern A. Zeeb 
4375d9945d78SBjoern A. Zeeb 		hw_req->req.n_ssids = ssid_count;
43766b4cac81SBjoern A. Zeeb 		if (hw_req->req.n_ssids > 0) {
43776b4cac81SBjoern A. Zeeb 			ssids = (struct cfg80211_ssid *)lc;
43786b4cac81SBjoern A. Zeeb 			hw_req->req.ssids = ssids;
4379d9945d78SBjoern A. Zeeb 			for (i = 0; i < ssid_count; i++) {
43806b4cac81SBjoern A. Zeeb 				ssids->ssid_len = ss->ss_ssid[i].len;
43816b4cac81SBjoern A. Zeeb 				memcpy(ssids->ssid, ss->ss_ssid[i].ssid,
43826b4cac81SBjoern A. Zeeb 				    ss->ss_ssid[i].len);
43836b4cac81SBjoern A. Zeeb 				ssids++;
43846b4cac81SBjoern A. Zeeb 			}
43856b4cac81SBjoern A. Zeeb 			s6gp = (struct cfg80211_scan_6ghz_params *)ssids;
43866b4cac81SBjoern A. Zeeb 		} else {
43876b4cac81SBjoern A. Zeeb 			s6gp = (struct cfg80211_scan_6ghz_params *)lc;
43886b4cac81SBjoern A. Zeeb 		}
43896b4cac81SBjoern A. Zeeb 
43906b4cac81SBjoern A. Zeeb 		/* 6GHz one day. */
43916b4cac81SBjoern A. Zeeb 		hw_req->req.n_6ghz_params = 0;
43926b4cac81SBjoern A. Zeeb 		hw_req->req.scan_6ghz_params = NULL;
43936b4cac81SBjoern A. Zeeb 		hw_req->req.scan_6ghz = false;	/* Weird boolean; not what you think. */
43946b4cac81SBjoern A. Zeeb 		/* s6gp->... */
43956b4cac81SBjoern A. Zeeb 
4396d9945d78SBjoern A. Zeeb 		ie = ieend = (uint8_t *)s6gp;
4397d9945d78SBjoern A. Zeeb 		/* Copy per-band IEs, copy common IEs */
4398d9945d78SBjoern A. Zeeb 		ieend = lkpi_scan_ies_add(ie, &hw_req->ies, band_mask, vap, hw);
4399d9945d78SBjoern A. Zeeb 		hw_req->req.ie = ie;
4400d9945d78SBjoern A. Zeeb 		hw_req->req.ie_len = ieend - ie;
4401d9945d78SBjoern A. Zeeb 
44026b4cac81SBjoern A. Zeeb 		lvif = VAP_TO_LVIF(vap);
44036b4cac81SBjoern A. Zeeb 		vif = LVIF_TO_VIF(lvif);
44043206587aSBjoern A. Zeeb 
44053206587aSBjoern A. Zeeb 		LKPI_80211_LHW_SCAN_LOCK(lhw);
44063206587aSBjoern A. Zeeb 		/* Re-check under lock. */
44073206587aSBjoern A. Zeeb 		running = (lhw->scan_flags & LKPI_LHW_SCAN_RUNNING) != 0;
44083206587aSBjoern A. Zeeb 		if (!running) {
44093206587aSBjoern A. Zeeb 			KASSERT(lhw->hw_req == NULL, ("%s: ic %p lhw %p hw_req %p "
44103206587aSBjoern A. Zeeb 			    "!= NULL\n", __func__, ic, lhw, lhw->hw_req));
44113206587aSBjoern A. Zeeb 
44123206587aSBjoern A. Zeeb 			lhw->scan_flags |= LKPI_LHW_SCAN_RUNNING;
44133206587aSBjoern A. Zeeb 			lhw->hw_req = hw_req;
44143206587aSBjoern A. Zeeb 		}
44153206587aSBjoern A. Zeeb 		LKPI_80211_LHW_SCAN_UNLOCK(lhw);
44163206587aSBjoern A. Zeeb 		if (running) {
44173206587aSBjoern A. Zeeb 			free(hw_req, M_LKPI80211);
44183206587aSBjoern A. Zeeb 			return;
44193206587aSBjoern A. Zeeb 		}
44203206587aSBjoern A. Zeeb 
44216b4cac81SBjoern A. Zeeb 		error = lkpi_80211_mo_hw_scan(hw, vif, hw_req);
44226b4cac81SBjoern A. Zeeb 		if (error != 0) {
4423d9945d78SBjoern A. Zeeb 			ieee80211_cancel_scan(vap);
4424d9945d78SBjoern A. Zeeb 
44253206587aSBjoern A. Zeeb 			/*
44263206587aSBjoern A. Zeeb 			 * ieee80211_scan_completed must be called in either
44273206587aSBjoern A. Zeeb 			 * case of error or none.  So let the free happen there
44283206587aSBjoern A. Zeeb 			 * and only there.
44293206587aSBjoern A. Zeeb 			 * That would be fine in theory but in practice drivers
44303206587aSBjoern A. Zeeb 			 * behave differently:
44313206587aSBjoern A. Zeeb 			 * ath10k does not return hw_scan until after scan_complete
44323206587aSBjoern A. Zeeb 			 *        and can then still return an error.
44333206587aSBjoern A. Zeeb 			 * rtw88 can return 1 or -EBUSY without scan_complete
44343206587aSBjoern A. Zeeb 			 * iwlwifi can return various errors before scan starts
44353206587aSBjoern A. Zeeb 			 * ...
44363206587aSBjoern A. Zeeb 			 * So we cannot rely on that behaviour and have to check
44373206587aSBjoern A. Zeeb 			 * and balance between both code paths.
44383206587aSBjoern A. Zeeb 			 */
44393206587aSBjoern A. Zeeb 			LKPI_80211_LHW_SCAN_LOCK(lhw);
44403206587aSBjoern A. Zeeb 			if ((lhw->scan_flags & LKPI_LHW_SCAN_RUNNING) != 0) {
44413206587aSBjoern A. Zeeb 				free(lhw->hw_req, M_LKPI80211);
44426b4cac81SBjoern A. Zeeb 				lhw->hw_req = NULL;
44433206587aSBjoern A. Zeeb 				lhw->scan_flags &= ~LKPI_LHW_SCAN_RUNNING;
44443206587aSBjoern A. Zeeb 			}
44453206587aSBjoern A. Zeeb 			LKPI_80211_LHW_SCAN_UNLOCK(lhw);
4446d3ef7fb4SBjoern A. Zeeb 
4447d3ef7fb4SBjoern A. Zeeb 			/*
4448d3ef7fb4SBjoern A. Zeeb 			 * XXX-SIGH magic number.
4449d3ef7fb4SBjoern A. Zeeb 			 * rtw88 has a magic "return 1" if offloading scan is
4450d3ef7fb4SBjoern A. Zeeb 			 * not possible.  Fall back to sw scan in that case.
4451d3ef7fb4SBjoern A. Zeeb 			 */
4452196cfd0bSBjoern A. Zeeb 			if (error == 1) {
44538ac540d3SBjoern A. Zeeb 				LKPI_80211_LHW_SCAN_LOCK(lhw);
4454a486fbbdSBjoern A. Zeeb 				lhw->scan_flags &= ~LKPI_LHW_SCAN_HW;
44558ac540d3SBjoern A. Zeeb 				LKPI_80211_LHW_SCAN_UNLOCK(lhw);
44563206587aSBjoern A. Zeeb 				/*
44573206587aSBjoern A. Zeeb 				 * XXX If we clear this now and later a driver
44583206587aSBjoern A. Zeeb 				 * thinks it * can do a hw_scan again, we will
44593206587aSBjoern A. Zeeb 				 * currently not re-enable it?
44603206587aSBjoern A. Zeeb 				 */
44613206587aSBjoern A. Zeeb 				vap->iv_flags_ext &= ~IEEE80211_FEXT_SCAN_OFFLOAD;
4462196cfd0bSBjoern A. Zeeb 				ieee80211_start_scan(vap,
4463196cfd0bSBjoern A. Zeeb 				    IEEE80211_SCAN_ACTIVE |
4464196cfd0bSBjoern A. Zeeb 				    IEEE80211_SCAN_NOPICK |
4465196cfd0bSBjoern A. Zeeb 				    IEEE80211_SCAN_ONCE,
4466196cfd0bSBjoern A. Zeeb 				    IEEE80211_SCAN_FOREVER,
4467196cfd0bSBjoern A. Zeeb 				    ss->ss_mindwell ? ss->ss_mindwell : msecs_to_ticks(20),
4468196cfd0bSBjoern A. Zeeb 				    ss->ss_maxdwell ? ss->ss_maxdwell : msecs_to_ticks(200),
4469196cfd0bSBjoern A. Zeeb 				    vap->iv_des_nssid, vap->iv_des_ssid);
4470d3ef7fb4SBjoern A. Zeeb 				goto sw_scan;
4471196cfd0bSBjoern A. Zeeb 			}
4472d3ef7fb4SBjoern A. Zeeb 
4473d3ef7fb4SBjoern A. Zeeb 			ic_printf(ic, "ERROR: %s: hw_scan returned %d\n",
4474d3ef7fb4SBjoern A. Zeeb 			    __func__, error);
44756b4cac81SBjoern A. Zeeb 		}
44766b4cac81SBjoern A. Zeeb 	}
44776b4cac81SBjoern A. Zeeb }
44786b4cac81SBjoern A. Zeeb 
44796b4cac81SBjoern A. Zeeb static void
44806b4cac81SBjoern A. Zeeb lkpi_ic_scan_end(struct ieee80211com *ic)
44816b4cac81SBjoern A. Zeeb {
44826b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
44838ac540d3SBjoern A. Zeeb 	bool is_hw_scan;
44846b4cac81SBjoern A. Zeeb 
44856b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
44868ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_LOCK(lhw);
4487a486fbbdSBjoern A. Zeeb 	if ((lhw->scan_flags & LKPI_LHW_SCAN_RUNNING) == 0) {
44888ac540d3SBjoern A. Zeeb 		LKPI_80211_LHW_SCAN_UNLOCK(lhw);
44896b4cac81SBjoern A. Zeeb 		return;
44906b4cac81SBjoern A. Zeeb 	}
44918ac540d3SBjoern A. Zeeb 	is_hw_scan = (lhw->scan_flags & LKPI_LHW_SCAN_HW) != 0;
44928ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_UNLOCK(lhw);
44936b4cac81SBjoern A. Zeeb 
44948ac540d3SBjoern A. Zeeb 	if (!is_hw_scan) {
4495a486fbbdSBjoern A. Zeeb 		struct ieee80211_scan_state *ss;
4496a486fbbdSBjoern A. Zeeb 		struct ieee80211vap *vap;
44976b4cac81SBjoern A. Zeeb 		struct ieee80211_hw *hw;
44986b4cac81SBjoern A. Zeeb 		struct lkpi_vif *lvif;
44996b4cac81SBjoern A. Zeeb 		struct ieee80211_vif *vif;
45006b4cac81SBjoern A. Zeeb 
4501a486fbbdSBjoern A. Zeeb 		ss = ic->ic_scan;
4502a486fbbdSBjoern A. Zeeb 		vap = ss->ss_vap;
45036b4cac81SBjoern A. Zeeb 		hw = LHW_TO_HW(lhw);
45046b4cac81SBjoern A. Zeeb 		lvif = VAP_TO_LVIF(vap);
45056b4cac81SBjoern A. Zeeb 		vif = LVIF_TO_VIF(lvif);
4506a486fbbdSBjoern A. Zeeb 
45076b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_sw_scan_complete(hw, vif);
45086b4cac81SBjoern A. Zeeb 
45096b4cac81SBjoern A. Zeeb 		/* Send PS to stop buffering if n80211 does not for us? */
4510086be6a8SBjoern A. Zeeb 
4511086be6a8SBjoern A. Zeeb 		if (vap->iv_state == IEEE80211_S_SCAN)
4512086be6a8SBjoern A. Zeeb 			lkpi_hw_conf_idle(hw, true);
45136b4cac81SBjoern A. Zeeb 	}
45146b4cac81SBjoern A. Zeeb }
45156b4cac81SBjoern A. Zeeb 
45166b4cac81SBjoern A. Zeeb static void
4517a486fbbdSBjoern A. Zeeb lkpi_ic_scan_curchan(struct ieee80211_scan_state *ss,
4518a486fbbdSBjoern A. Zeeb     unsigned long maxdwell)
4519a486fbbdSBjoern A. Zeeb {
4520a486fbbdSBjoern A. Zeeb 	struct lkpi_hw *lhw;
45218ac540d3SBjoern A. Zeeb 	bool is_hw_scan;
4522a486fbbdSBjoern A. Zeeb 
4523a486fbbdSBjoern A. Zeeb 	lhw = ss->ss_ic->ic_softc;
45248ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_LOCK(lhw);
45258ac540d3SBjoern A. Zeeb 	is_hw_scan = (lhw->scan_flags & LKPI_LHW_SCAN_HW) != 0;
45268ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_UNLOCK(lhw);
45278ac540d3SBjoern A. Zeeb 	if (!is_hw_scan)
4528a486fbbdSBjoern A. Zeeb 		lhw->ic_scan_curchan(ss, maxdwell);
4529a486fbbdSBjoern A. Zeeb }
4530a486fbbdSBjoern A. Zeeb 
4531a486fbbdSBjoern A. Zeeb static void
4532a486fbbdSBjoern A. Zeeb lkpi_ic_scan_mindwell(struct ieee80211_scan_state *ss)
4533a486fbbdSBjoern A. Zeeb {
4534a486fbbdSBjoern A. Zeeb 	struct lkpi_hw *lhw;
45358ac540d3SBjoern A. Zeeb 	bool is_hw_scan;
4536a486fbbdSBjoern A. Zeeb 
4537a486fbbdSBjoern A. Zeeb 	lhw = ss->ss_ic->ic_softc;
45388ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_LOCK(lhw);
45398ac540d3SBjoern A. Zeeb 	is_hw_scan = (lhw->scan_flags & LKPI_LHW_SCAN_HW) != 0;
45408ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_UNLOCK(lhw);
45418ac540d3SBjoern A. Zeeb 	if (!is_hw_scan)
4542a486fbbdSBjoern A. Zeeb 		lhw->ic_scan_mindwell(ss);
4543a486fbbdSBjoern A. Zeeb }
4544a486fbbdSBjoern A. Zeeb 
4545a486fbbdSBjoern A. Zeeb static void
45466b4cac81SBjoern A. Zeeb lkpi_ic_set_channel(struct ieee80211com *ic)
45476b4cac81SBjoern A. Zeeb {
45486b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
45496b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
4550b2cf3c21SBjoern A. Zeeb 	struct ieee80211_channel *c;
4551b2cf3c21SBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel *chan;
45526b4cac81SBjoern A. Zeeb 	int error;
45538ac540d3SBjoern A. Zeeb 	bool hw_scan_running;
45546b4cac81SBjoern A. Zeeb 
45556b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
4556b2cf3c21SBjoern A. Zeeb 
4557b2cf3c21SBjoern A. Zeeb 	/* If we do not support (*config)() save us the work. */
4558b2cf3c21SBjoern A. Zeeb 	if (lhw->ops->config == NULL)
45596b4cac81SBjoern A. Zeeb 		return;
45606b4cac81SBjoern A. Zeeb 
4561a486fbbdSBjoern A. Zeeb 	/* If we have a hw_scan running do not switch channels. */
45628ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_LOCK(lhw);
45638ac540d3SBjoern A. Zeeb 	hw_scan_running =
45648ac540d3SBjoern A. Zeeb 	    (lhw->scan_flags & (LKPI_LHW_SCAN_RUNNING|LKPI_LHW_SCAN_HW)) ==
45658ac540d3SBjoern A. Zeeb 		(LKPI_LHW_SCAN_RUNNING|LKPI_LHW_SCAN_HW);
45668ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_UNLOCK(lhw);
45678ac540d3SBjoern A. Zeeb 	if (hw_scan_running)
4568a486fbbdSBjoern A. Zeeb 		return;
4569a486fbbdSBjoern A. Zeeb 
4570b2cf3c21SBjoern A. Zeeb 	c = ic->ic_curchan;
4571b2cf3c21SBjoern A. Zeeb 	if (c == NULL || c == IEEE80211_CHAN_ANYC) {
45726b4cac81SBjoern A. Zeeb 		ic_printf(ic, "%s: c %p ops->config %p\n", __func__,
45736b4cac81SBjoern A. Zeeb 		    c, lhw->ops->config);
45746b4cac81SBjoern A. Zeeb 		return;
45756b4cac81SBjoern A. Zeeb 	}
45766b4cac81SBjoern A. Zeeb 
45776b4cac81SBjoern A. Zeeb 	chan = lkpi_find_lkpi80211_chan(lhw, c);
45786b4cac81SBjoern A. Zeeb 	if (chan == NULL) {
45796b4cac81SBjoern A. Zeeb 		ic_printf(ic, "%s: c %p chan %p\n", __func__,
45806b4cac81SBjoern A. Zeeb 		    c, chan);
45816b4cac81SBjoern A. Zeeb 		return;
45826b4cac81SBjoern A. Zeeb 	}
45836b4cac81SBjoern A. Zeeb 
45846b4cac81SBjoern A. Zeeb 	/* XXX max power for scanning? */
45856b4cac81SBjoern A. Zeeb 	IMPROVE();
45866b4cac81SBjoern A. Zeeb 
45876b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
45884a07abdeSBjoern A. Zeeb 	cfg80211_chandef_create(&hw->conf.chandef, chan,
45899fb91463SBjoern A. Zeeb #ifdef LKPI_80211_HT
459011450726SBjoern A. Zeeb 	    (ic->ic_flags_ht & IEEE80211_FHT_HT) ? NL80211_CHAN_HT20 :
45919fb91463SBjoern A. Zeeb #endif
45924a07abdeSBjoern A. Zeeb 	    NL80211_CHAN_NO_HT);
45936b4cac81SBjoern A. Zeeb 
45946b4cac81SBjoern A. Zeeb 	error = lkpi_80211_mo_config(hw, IEEE80211_CONF_CHANGE_CHANNEL);
45956b4cac81SBjoern A. Zeeb 	if (error != 0 && error != EOPNOTSUPP) {
45966b4cac81SBjoern A. Zeeb 		ic_printf(ic, "ERROR: %s: config %#0x returned %d\n",
45976b4cac81SBjoern A. Zeeb 		    __func__, IEEE80211_CONF_CHANGE_CHANNEL, error);
45986b4cac81SBjoern A. Zeeb 		/* XXX should we unroll to the previous chandef? */
45996b4cac81SBjoern A. Zeeb 		IMPROVE();
46006b4cac81SBjoern A. Zeeb 	} else {
46016b4cac81SBjoern A. Zeeb 		/* Update radiotap channels as well. */
46026b4cac81SBjoern A. Zeeb 		lhw->rtap_tx.wt_chan_freq = htole16(c->ic_freq);
46036b4cac81SBjoern A. Zeeb 		lhw->rtap_tx.wt_chan_flags = htole16(c->ic_flags);
46046b4cac81SBjoern A. Zeeb 		lhw->rtap_rx.wr_chan_freq = htole16(c->ic_freq);
46056b4cac81SBjoern A. Zeeb 		lhw->rtap_rx.wr_chan_flags = htole16(c->ic_flags);
46066b4cac81SBjoern A. Zeeb 	}
46076b4cac81SBjoern A. Zeeb 
46086b4cac81SBjoern A. Zeeb 	/* Currently PS is hard coded off! Not sure it belongs here. */
46096b4cac81SBjoern A. Zeeb 	IMPROVE();
46106b4cac81SBjoern A. Zeeb 	if (ieee80211_hw_check(hw, SUPPORTS_PS) &&
46116b4cac81SBjoern A. Zeeb 	    (hw->conf.flags & IEEE80211_CONF_PS) != 0) {
46126b4cac81SBjoern A. Zeeb 		hw->conf.flags &= ~IEEE80211_CONF_PS;
46136b4cac81SBjoern A. Zeeb 		error = lkpi_80211_mo_config(hw, IEEE80211_CONF_CHANGE_PS);
46146b4cac81SBjoern A. Zeeb 		if (error != 0 && error != EOPNOTSUPP)
46156b4cac81SBjoern A. Zeeb 			ic_printf(ic, "ERROR: %s: config %#0x returned "
46166b4cac81SBjoern A. Zeeb 			    "%d\n", __func__, IEEE80211_CONF_CHANGE_PS,
46176b4cac81SBjoern A. Zeeb 			    error);
46186b4cac81SBjoern A. Zeeb 	}
46196b4cac81SBjoern A. Zeeb }
46206b4cac81SBjoern A. Zeeb 
46216b4cac81SBjoern A. Zeeb static struct ieee80211_node *
46226b4cac81SBjoern A. Zeeb lkpi_ic_node_alloc(struct ieee80211vap *vap,
46236b4cac81SBjoern A. Zeeb     const uint8_t mac[IEEE80211_ADDR_LEN])
46246b4cac81SBjoern A. Zeeb {
46256b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
46266b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
46274f61ef8bSBjoern A. Zeeb 	struct ieee80211_node *ni;
46286b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
46296b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
46306b4cac81SBjoern A. Zeeb 
46316b4cac81SBjoern A. Zeeb 	ic = vap->iv_ic;
46326b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
46336b4cac81SBjoern A. Zeeb 
46346b4cac81SBjoern A. Zeeb 	/* We keep allocations de-coupled so we can deal with the two worlds. */
46354f61ef8bSBjoern A. Zeeb 	if (lhw->ic_node_alloc == NULL)
46364f61ef8bSBjoern A. Zeeb 		return (NULL);
46374f61ef8bSBjoern A. Zeeb 
46386b4cac81SBjoern A. Zeeb 	ni = lhw->ic_node_alloc(vap, mac);
46396b4cac81SBjoern A. Zeeb 	if (ni == NULL)
46406b4cac81SBjoern A. Zeeb 		return (NULL);
46416b4cac81SBjoern A. Zeeb 
46426b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
46434f61ef8bSBjoern A. Zeeb 	lsta = lkpi_lsta_alloc(vap, mac, hw, ni);
46446b4cac81SBjoern A. Zeeb 	if (lsta == NULL) {
46456b4cac81SBjoern A. Zeeb 		if (lhw->ic_node_free != NULL)
46466b4cac81SBjoern A. Zeeb 			lhw->ic_node_free(ni);
46476b4cac81SBjoern A. Zeeb 		return (NULL);
46486b4cac81SBjoern A. Zeeb 	}
46496b4cac81SBjoern A. Zeeb 
46506b4cac81SBjoern A. Zeeb 	return (ni);
46516b4cac81SBjoern A. Zeeb }
46526b4cac81SBjoern A. Zeeb 
46536b4cac81SBjoern A. Zeeb static int
46546b4cac81SBjoern A. Zeeb lkpi_ic_node_init(struct ieee80211_node *ni)
46556b4cac81SBjoern A. Zeeb {
46566b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
46576b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
46586b4cac81SBjoern A. Zeeb 	int error;
46596b4cac81SBjoern A. Zeeb 
46606b4cac81SBjoern A. Zeeb 	ic = ni->ni_ic;
46616b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
46626b4cac81SBjoern A. Zeeb 
46636b4cac81SBjoern A. Zeeb 	if (lhw->ic_node_init != NULL) {
46646b4cac81SBjoern A. Zeeb 		error = lhw->ic_node_init(ni);
46656b4cac81SBjoern A. Zeeb 		if (error != 0)
46666b4cac81SBjoern A. Zeeb 			return (error);
46676b4cac81SBjoern A. Zeeb 	}
46686b4cac81SBjoern A. Zeeb 
46696b4cac81SBjoern A. Zeeb 	/* XXX-BZ Sync other state over. */
46706b4cac81SBjoern A. Zeeb 	IMPROVE();
46716b4cac81SBjoern A. Zeeb 
46726b4cac81SBjoern A. Zeeb 	return (0);
46736b4cac81SBjoern A. Zeeb }
46746b4cac81SBjoern A. Zeeb 
46756b4cac81SBjoern A. Zeeb static void
46766b4cac81SBjoern A. Zeeb lkpi_ic_node_cleanup(struct ieee80211_node *ni)
46776b4cac81SBjoern A. Zeeb {
46786b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
46796b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
46806b4cac81SBjoern A. Zeeb 
46816b4cac81SBjoern A. Zeeb 	ic = ni->ni_ic;
46826b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
46836b4cac81SBjoern A. Zeeb 
46846b4cac81SBjoern A. Zeeb 	/* XXX-BZ remove from driver, ... */
46856b4cac81SBjoern A. Zeeb 	IMPROVE();
46866b4cac81SBjoern A. Zeeb 
46876b4cac81SBjoern A. Zeeb 	if (lhw->ic_node_cleanup != NULL)
46886b4cac81SBjoern A. Zeeb 		lhw->ic_node_cleanup(ni);
46896b4cac81SBjoern A. Zeeb }
46906b4cac81SBjoern A. Zeeb 
46916b4cac81SBjoern A. Zeeb static void
46926b4cac81SBjoern A. Zeeb lkpi_ic_node_free(struct ieee80211_node *ni)
46936b4cac81SBjoern A. Zeeb {
46946b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
46956b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
46966b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
46976b4cac81SBjoern A. Zeeb 
46986b4cac81SBjoern A. Zeeb 	ic = ni->ni_ic;
46996b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
47006b4cac81SBjoern A. Zeeb 	lsta = ni->ni_drv_data;
47016b4cac81SBjoern A. Zeeb 
47020936c648SBjoern A. Zeeb 	/* KASSERT lsta is not NULL here. Print ni/ni__refcnt. */
47036b4cac81SBjoern A. Zeeb 
47040936c648SBjoern A. Zeeb 	/*
47050936c648SBjoern A. Zeeb 	 * Pass in the original ni just in case of error we could check that
47060936c648SBjoern A. Zeeb 	 * it is the same as lsta->ni.
47070936c648SBjoern A. Zeeb 	 */
47080936c648SBjoern A. Zeeb 	lkpi_lsta_free(lsta, ni);
47096b4cac81SBjoern A. Zeeb 
47106b4cac81SBjoern A. Zeeb 	if (lhw->ic_node_free != NULL)
47116b4cac81SBjoern A. Zeeb 		lhw->ic_node_free(ni);
47126b4cac81SBjoern A. Zeeb }
47136b4cac81SBjoern A. Zeeb 
47149a45c3caSBjoern A. Zeeb /*
47159a45c3caSBjoern A. Zeeb  * lkpi_xmit() called from both the (*ic_raw_xmit) as well as the (*ic_transmit)
47169a45c3caSBjoern A. Zeeb  * call path.
47179a45c3caSBjoern A. Zeeb  * Unfortunately they have slightly different invariants.  See
47189a45c3caSBjoern A. Zeeb  * ieee80211_raw_output() and ieee80211_parent_xmitpkt().
47199a45c3caSBjoern A. Zeeb  * Both take care of the ni reference in case of error, and otherwise during
47209a45c3caSBjoern A. Zeeb  * the callback after transmit.
47219a45c3caSBjoern A. Zeeb  * The difference is that in case of error (*ic_raw_xmit) needs us to release
47229a45c3caSBjoern A. Zeeb  * the mbuf, while (*ic_transmit) will free the mbuf itself.
47239a45c3caSBjoern A. Zeeb  */
47246b4cac81SBjoern A. Zeeb static int
47259a45c3caSBjoern A. Zeeb lkpi_xmit(struct ieee80211_node *ni, struct mbuf *m,
47269a45c3caSBjoern A. Zeeb     const struct ieee80211_bpf_params *params __unused,
47279a45c3caSBjoern A. Zeeb     bool freem)
47286b4cac81SBjoern A. Zeeb {
47296b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
4730c816f64eSBjoern A. Zeeb 	int error;
47316b4cac81SBjoern A. Zeeb 
47326b4cac81SBjoern A. Zeeb 	lsta = ni->ni_drv_data;
4733fa4e4257SBjoern A. Zeeb 	LKPI_80211_LSTA_TXQ_LOCK(lsta);
47342372f8ccSBjoern A. Zeeb #if 0
473588665349SBjoern A. Zeeb 	if (!lsta->added_to_drv || !lsta->txq_ready) {
47362372f8ccSBjoern A. Zeeb #else
47372372f8ccSBjoern A. Zeeb 	/*
47382372f8ccSBjoern A. Zeeb 	 * Backout this part of 886653492945f which breaks rtw88 or
47392372f8ccSBjoern A. Zeeb 	 * in general drivers without (*sta_state)() but only the
47402372f8ccSBjoern A. Zeeb 	 * legacy fallback to (*sta_add)().
47412372f8ccSBjoern A. Zeeb 	 */
47422372f8ccSBjoern A. Zeeb 	if (!lsta->txq_ready) {
47432372f8ccSBjoern A. Zeeb #endif
4744fa4e4257SBjoern A. Zeeb 		LKPI_80211_LSTA_TXQ_UNLOCK(lsta);
47459a45c3caSBjoern A. Zeeb 		if (freem)
47460936c648SBjoern A. Zeeb 			m_free(m);
47470936c648SBjoern A. Zeeb 		return (ENETDOWN);
47480936c648SBjoern A. Zeeb 	}
47496b4cac81SBjoern A. Zeeb 
47506b4cac81SBjoern A. Zeeb 	/* Queue the packet and enqueue the task to handle it. */
4751c816f64eSBjoern A. Zeeb 	error = mbufq_enqueue(&lsta->txq, m);
4752c816f64eSBjoern A. Zeeb 	if (error != 0) {
4753c816f64eSBjoern A. Zeeb 		LKPI_80211_LSTA_TXQ_UNLOCK(lsta);
47549a45c3caSBjoern A. Zeeb 		if (freem)
4755c816f64eSBjoern A. Zeeb 			m_free(m);
4756c816f64eSBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
4757c816f64eSBjoern A. Zeeb 		if (linuxkpi_debug_80211 & D80211_TRACE_TX)
4758c816f64eSBjoern A. Zeeb 			ic_printf(ni->ni_ic, "%s: mbufq_enqueue failed: %d\n",
4759c816f64eSBjoern A. Zeeb 			    __func__, error);
4760c816f64eSBjoern A. Zeeb #endif
4761c816f64eSBjoern A. Zeeb 		return (ENETDOWN);
4762c816f64eSBjoern A. Zeeb 	}
4763fa4e4257SBjoern A. Zeeb 	taskqueue_enqueue(taskqueue_thread, &lsta->txq_task);
4764fa4e4257SBjoern A. Zeeb 	LKPI_80211_LSTA_TXQ_UNLOCK(lsta);
47656b4cac81SBjoern A. Zeeb 
47669d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
47679d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_TX)
47686b4cac81SBjoern A. Zeeb 		printf("%s:%d lsta %p ni %p %6D mbuf_qlen %d\n",
47696b4cac81SBjoern A. Zeeb 		    __func__, __LINE__, lsta, ni, ni->ni_macaddr, ":",
47706b4cac81SBjoern A. Zeeb 		    mbufq_len(&lsta->txq));
47719d9ba2b7SBjoern A. Zeeb #endif
47726b4cac81SBjoern A. Zeeb 
47736b4cac81SBjoern A. Zeeb 	return (0);
47746b4cac81SBjoern A. Zeeb }
47756b4cac81SBjoern A. Zeeb 
47769a45c3caSBjoern A. Zeeb static int
47779a45c3caSBjoern A. Zeeb lkpi_ic_raw_xmit(struct ieee80211_node *ni, struct mbuf *m,
47789a45c3caSBjoern A. Zeeb         const struct ieee80211_bpf_params *params __unused)
47799a45c3caSBjoern A. Zeeb {
47809a45c3caSBjoern A. Zeeb 	return (lkpi_xmit(ni, m, NULL, true));
47819a45c3caSBjoern A. Zeeb }
47829a45c3caSBjoern A. Zeeb 
478311db70b6SBjoern A. Zeeb #ifdef LKPI_80211_HW_CRYPTO
47844b9ae864SBjoern A. Zeeb /*
47854b9ae864SBjoern A. Zeeb  * This is a bit of a hack given we know we are operating on a
47864b9ae864SBjoern A. Zeeb  * single frame and we know that hardware will deal with it.
47874b9ae864SBjoern A. Zeeb  * But otherwise the enmic bit and the encrypt bit need to be
47884b9ae864SBjoern A. Zeeb  * decoupled.
47894b9ae864SBjoern A. Zeeb  */
479011db70b6SBjoern A. Zeeb static int
479198e55905SBjoern A. Zeeb lkpi_hw_crypto_prepare_tkip(struct ieee80211_key *k,
479298e55905SBjoern A. Zeeb     struct ieee80211_key_conf *kc, struct sk_buff *skb)
479311db70b6SBjoern A. Zeeb {
479498e55905SBjoern A. Zeeb 	struct ieee80211_hdr *hdr;
479598e55905SBjoern A. Zeeb 	uint32_t hlen, hdrlen;
47964b9ae864SBjoern A. Zeeb 	uint8_t *p;
479798e55905SBjoern A. Zeeb 
479898e55905SBjoern A. Zeeb 	/*
47994b9ae864SBjoern A. Zeeb 	 * TKIP only happens on data.
48004b9ae864SBjoern A. Zeeb 	 */
48014b9ae864SBjoern A. Zeeb 	hdr = (void *)skb->data;
48024b9ae864SBjoern A. Zeeb 	if (!ieee80211_is_data_present(hdr->frame_control))
48034b9ae864SBjoern A. Zeeb 		return (0);
48044b9ae864SBjoern A. Zeeb 
48054b9ae864SBjoern A. Zeeb 	/*
48064b9ae864SBjoern A. Zeeb 	 * "enmic" (though we do not do that).
48074b9ae864SBjoern A. Zeeb 	 */
48084b9ae864SBjoern A. Zeeb 	/* any conditions to not apply this? */
48094b9ae864SBjoern A. Zeeb 	if (skb_tailroom(skb) < k->wk_cipher->ic_miclen)
48104b9ae864SBjoern A. Zeeb 		return (ENOBUFS);
48114b9ae864SBjoern A. Zeeb 
48124b9ae864SBjoern A. Zeeb 	p = skb_put(skb, k->wk_cipher->ic_miclen);
48134b9ae864SBjoern A. Zeeb 	if ((kc->flags & IEEE80211_KEY_FLAG_PUT_MIC_SPACE) != 0)
48144b9ae864SBjoern A. Zeeb 		goto encrypt;
48154b9ae864SBjoern A. Zeeb 
48164b9ae864SBjoern A. Zeeb 	/*
48174b9ae864SBjoern A. Zeeb 	 * (*enmic) which we hopefully do not have to do with hw accel.
48184b9ae864SBjoern A. Zeeb 	 * That means if we make it here we have a problem.
48194b9ae864SBjoern A. Zeeb 	 */
48204b9ae864SBjoern A. Zeeb 	TODO("(*enmic)");
48214b9ae864SBjoern A. Zeeb 	return (ENXIO);
48224b9ae864SBjoern A. Zeeb 
48234b9ae864SBjoern A. Zeeb encrypt:
48244b9ae864SBjoern A. Zeeb 	/*
48254b9ae864SBjoern A. Zeeb 	 * "encrypt" (though we do not do that).
48264b9ae864SBjoern A. Zeeb 	 */
48274b9ae864SBjoern A. Zeeb 	/*
48284b9ae864SBjoern A. Zeeb 	 * Check if we have anything to do as requested by driver
482998e55905SBjoern A. Zeeb 	 * or if we are done?
483098e55905SBjoern A. Zeeb 	 */
483198e55905SBjoern A. Zeeb 	if ((kc->flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE) == 0 &&
483298e55905SBjoern A. Zeeb 	    (kc->flags & IEEE80211_KEY_FLAG_GENERATE_IV) == 0)
483398e55905SBjoern A. Zeeb 			return (0);
483498e55905SBjoern A. Zeeb 
483598e55905SBjoern A. Zeeb 	hlen = k->wk_cipher->ic_header;
483698e55905SBjoern A. Zeeb 	if (skb_headroom(skb) < hlen)
48374b9ae864SBjoern A. Zeeb 		return (ENOBUFS);
483898e55905SBjoern A. Zeeb 
483998e55905SBjoern A. Zeeb 	hdr = (void *)skb->data;
484098e55905SBjoern A. Zeeb 	hdrlen = ieee80211_hdrlen(hdr->frame_control);
484198e55905SBjoern A. Zeeb 	p = skb_push(skb, hlen);
484298e55905SBjoern A. Zeeb 	memmove(p, p + hlen, hdrlen);
484398e55905SBjoern A. Zeeb 
484498e55905SBjoern A. Zeeb 	/* If driver request space only we are done. */
484598e55905SBjoern A. Zeeb 	if ((kc->flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE) != 0)
484698e55905SBjoern A. Zeeb 		return (0);
484798e55905SBjoern A. Zeeb 
484898e55905SBjoern A. Zeeb 	p += hdrlen;
484998e55905SBjoern A. Zeeb 	k->wk_cipher->ic_setiv(k, p);
485098e55905SBjoern A. Zeeb 
48514b9ae864SBjoern A. Zeeb 	/* If we make it hear we do sw encryption. */
48524b9ae864SBjoern A. Zeeb 	TODO("sw encrypt");
485398e55905SBjoern A. Zeeb 	return (ENXIO);
485498e55905SBjoern A. Zeeb }
485529ddd583SBjoern A. Zeeb 
485698e55905SBjoern A. Zeeb static int
485798e55905SBjoern A. Zeeb lkpi_hw_crypto_prepare_ccmp(struct ieee80211_key *k,
485898e55905SBjoern A. Zeeb     struct ieee80211_key_conf *kc, struct sk_buff *skb)
485998e55905SBjoern A. Zeeb {
486011db70b6SBjoern A. Zeeb 	struct ieee80211_hdr *hdr;
486111db70b6SBjoern A. Zeeb 	uint32_t hlen, hdrlen;
486211db70b6SBjoern A. Zeeb 	uint8_t *p;
486311db70b6SBjoern A. Zeeb 
486411db70b6SBjoern A. Zeeb 	hdr = (void *)skb->data;
486511db70b6SBjoern A. Zeeb 
486611db70b6SBjoern A. Zeeb 	/*
486711db70b6SBjoern A. Zeeb 	 * Check if we have anythig to do as requested by driver
486811db70b6SBjoern A. Zeeb 	 * or if we are done?
486911db70b6SBjoern A. Zeeb 	 */
487011db70b6SBjoern A. Zeeb 	if ((kc->flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE) == 0 &&
487111db70b6SBjoern A. Zeeb 	    (kc->flags & IEEE80211_KEY_FLAG_GENERATE_IV) == 0 &&
487211db70b6SBjoern A. Zeeb 	    /* MFP */
487311db70b6SBjoern A. Zeeb 	    !((kc->flags & IEEE80211_KEY_FLAG_GENERATE_IV_MGMT) != 0 &&
487411db70b6SBjoern A. Zeeb 		ieee80211_is_mgmt(hdr->frame_control)))
487511db70b6SBjoern A. Zeeb 			return (0);
487611db70b6SBjoern A. Zeeb 
487711db70b6SBjoern A. Zeeb 	hlen = k->wk_cipher->ic_header;
487811db70b6SBjoern A. Zeeb 	if (skb_headroom(skb) < hlen)
48794b9ae864SBjoern A. Zeeb 		return (ENOBUFS);
488011db70b6SBjoern A. Zeeb 
488111db70b6SBjoern A. Zeeb 	hdrlen = ieee80211_hdrlen(hdr->frame_control);
488211db70b6SBjoern A. Zeeb 	p = skb_push(skb, hlen);
488311db70b6SBjoern A. Zeeb 	memmove(p, p + hlen, hdrlen);
488411db70b6SBjoern A. Zeeb 
488511db70b6SBjoern A. Zeeb 	/* If driver request space only we are done. */
488611db70b6SBjoern A. Zeeb 	if ((kc->flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE) != 0)
488711db70b6SBjoern A. Zeeb 		return (0);
488811db70b6SBjoern A. Zeeb 
488911db70b6SBjoern A. Zeeb 	p += hdrlen;
489011db70b6SBjoern A. Zeeb 	k->wk_cipher->ic_setiv(k, p);
489111db70b6SBjoern A. Zeeb 
489211db70b6SBjoern A. Zeeb 	return (0);
489311db70b6SBjoern A. Zeeb }
489498e55905SBjoern A. Zeeb 
489598e55905SBjoern A. Zeeb static int
489698e55905SBjoern A. Zeeb lkpi_hw_crypto_prepare(struct lkpi_sta *lsta, struct ieee80211_key *k,
489798e55905SBjoern A. Zeeb     struct sk_buff *skb)
489898e55905SBjoern A. Zeeb {
489998e55905SBjoern A. Zeeb 	struct ieee80211_tx_info *info;
490098e55905SBjoern A. Zeeb 	struct ieee80211_key_conf *kc;
490198e55905SBjoern A. Zeeb 
490298e55905SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: lsta is NULL", __func__));
490398e55905SBjoern A. Zeeb 	KASSERT(k != NULL, ("%s: key is NULL", __func__));
490498e55905SBjoern A. Zeeb 	KASSERT(skb != NULL, ("%s: skb is NULL", __func__));
490598e55905SBjoern A. Zeeb 
490698e55905SBjoern A. Zeeb 	kc = lsta->kc[k->wk_keyix];
490798e55905SBjoern A. Zeeb 
490898e55905SBjoern A. Zeeb 	info = IEEE80211_SKB_CB(skb);
490998e55905SBjoern A. Zeeb 	info->control.hw_key = kc;
491098e55905SBjoern A. Zeeb 
491198e55905SBjoern A. Zeeb 	/* MUST NOT happen. KASSERT? */
491298e55905SBjoern A. Zeeb 	if (kc == NULL) {
491398e55905SBjoern A. Zeeb 		ic_printf(lsta->ni->ni_ic, "%s: lsta %p k %p skb %p, "
491498e55905SBjoern A. Zeeb 		    "kc is NULL on hw crypto offload\n", __func__, lsta, k, skb);
491598e55905SBjoern A. Zeeb 		return (ENXIO);
491698e55905SBjoern A. Zeeb 	}
491798e55905SBjoern A. Zeeb 
491898e55905SBjoern A. Zeeb 	switch (kc->cipher) {
491998e55905SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_TKIP:
492098e55905SBjoern A. Zeeb 		return (lkpi_hw_crypto_prepare_tkip(k, kc, skb));
492198e55905SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_CCMP:
492298e55905SBjoern A. Zeeb 		return (lkpi_hw_crypto_prepare_ccmp(k, kc, skb));
492329ddd583SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_GCMP:
492429ddd583SBjoern A. Zeeb 		return (lkpi_hw_crypto_prepare_ccmp(k, kc, skb));
492598e55905SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_WEP40:
492698e55905SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_WEP104:
492798e55905SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_CCMP_256:
492898e55905SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_GCMP_256:
492998e55905SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_AES_CMAC:
493098e55905SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_BIP_CMAC_256:
493198e55905SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_BIP_GMAC_128:
493298e55905SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_BIP_GMAC_256:
493398e55905SBjoern A. Zeeb 	default:
493498e55905SBjoern A. Zeeb 		ic_printf(lsta->ni->ni_ic, "%s: lsta %p k %p kc %p skb %p, "
493598e55905SBjoern A. Zeeb 		    "unsupported cipher suite %u (%s)\n", __func__, lsta, k, kc,
493698e55905SBjoern A. Zeeb 		    skb, kc->cipher, lkpi_cipher_suite_to_name(kc->cipher));
493798e55905SBjoern A. Zeeb 		return (EOPNOTSUPP);
493898e55905SBjoern A. Zeeb 	}
493998e55905SBjoern A. Zeeb }
494098e55905SBjoern A. Zeeb 
494198e55905SBjoern A. Zeeb static uint8_t
494298e55905SBjoern A. Zeeb lkpi_hw_crypto_tailroom(struct lkpi_sta *lsta, struct ieee80211_key *k)
494398e55905SBjoern A. Zeeb {
494498e55905SBjoern A. Zeeb 	struct ieee80211_key_conf *kc;
494598e55905SBjoern A. Zeeb 
494698e55905SBjoern A. Zeeb 	kc = lsta->kc[k->wk_keyix];
494798e55905SBjoern A. Zeeb 	if (kc == NULL)
494898e55905SBjoern A. Zeeb 		return (0);
494998e55905SBjoern A. Zeeb 
495098e55905SBjoern A. Zeeb 	IMPROVE("which other flags need tailroom?");
495198e55905SBjoern A. Zeeb 	if (kc->flags & (IEEE80211_KEY_FLAG_PUT_MIC_SPACE))
495298e55905SBjoern A. Zeeb 		return (32);	/* Large enough to hold everything and pow2. */
495398e55905SBjoern A. Zeeb 
495498e55905SBjoern A. Zeeb 	return (0);
495598e55905SBjoern A. Zeeb }
495611db70b6SBjoern A. Zeeb #endif
495711db70b6SBjoern A. Zeeb 
49586b4cac81SBjoern A. Zeeb static void
49596b4cac81SBjoern A. Zeeb lkpi_80211_txq_tx_one(struct lkpi_sta *lsta, struct mbuf *m)
49606b4cac81SBjoern A. Zeeb {
49616b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
49626b4cac81SBjoern A. Zeeb 	struct ieee80211_frame *wh;
49636b4cac81SBjoern A. Zeeb 	struct ieee80211_key *k;
49646b4cac81SBjoern A. Zeeb 	struct sk_buff *skb;
49656b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
49666b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
49676b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
49686b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
49696b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
49706b4cac81SBjoern A. Zeeb 	struct ieee80211_channel *c;
49716b4cac81SBjoern A. Zeeb 	struct ieee80211_tx_control control;
49726b4cac81SBjoern A. Zeeb 	struct ieee80211_tx_info *info;
49736b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
4974e3a0b120SBjoern A. Zeeb 	struct ieee80211_hdr *hdr;
4975ac867c20SBjoern A. Zeeb 	struct lkpi_txq *ltxq;
49766b4cac81SBjoern A. Zeeb 	void *buf;
497711db70b6SBjoern A. Zeeb 	ieee80211_keyix keyix;
497898e55905SBjoern A. Zeeb 	uint8_t ac, tid, tailroom;
49796b4cac81SBjoern A. Zeeb 
49806b4cac81SBjoern A. Zeeb 	M_ASSERTPKTHDR(m);
49816b4cac81SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
49829d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_TX_DUMP)
49836b4cac81SBjoern A. Zeeb 		hexdump(mtod(m, const void *), m->m_len, "RAW TX (plain) ", 0);
49846b4cac81SBjoern A. Zeeb #endif
49856b4cac81SBjoern A. Zeeb 
49866b4cac81SBjoern A. Zeeb 	ni = lsta->ni;
4987b35f6cd0SBjoern A. Zeeb 	k = NULL;
498811db70b6SBjoern A. Zeeb 	keyix = IEEE80211_KEYIX_NONE;
49896b4cac81SBjoern A. Zeeb 	wh = mtod(m, struct ieee80211_frame *);
49906b4cac81SBjoern A. Zeeb 	if (wh->i_fc[1] & IEEE80211_FC1_PROTECTED) {
499111db70b6SBjoern A. Zeeb 
499211db70b6SBjoern A. Zeeb #ifdef LKPI_80211_HW_CRYPTO
499311db70b6SBjoern A. Zeeb 		if (lkpi_hwcrypto) {
499411db70b6SBjoern A. Zeeb 			k = ieee80211_crypto_get_txkey(ni, m);
499511db70b6SBjoern A. Zeeb 			if (k != NULL && lsta->kc[k->wk_keyix] != NULL)
499611db70b6SBjoern A. Zeeb 				keyix = k->wk_keyix;
499711db70b6SBjoern A. Zeeb 		}
499811db70b6SBjoern A. Zeeb #endif
499911db70b6SBjoern A. Zeeb 
500011db70b6SBjoern A. Zeeb 		/* Encrypt the frame if need be. */
500111db70b6SBjoern A. Zeeb 		if (keyix == IEEE80211_KEYIX_NONE) {
50026b4cac81SBjoern A. Zeeb 			/* Retrieve key for TX && do software encryption. */
50036b4cac81SBjoern A. Zeeb 			k = ieee80211_crypto_encap(ni, m);
50046b4cac81SBjoern A. Zeeb 			if (k == NULL) {
50056b4cac81SBjoern A. Zeeb 				ieee80211_free_node(ni);
50066b4cac81SBjoern A. Zeeb 				m_freem(m);
50076b4cac81SBjoern A. Zeeb 				return;
50086b4cac81SBjoern A. Zeeb 			}
50096b4cac81SBjoern A. Zeeb 		}
501011db70b6SBjoern A. Zeeb 	}
50116b4cac81SBjoern A. Zeeb 
50126b4cac81SBjoern A. Zeeb 	ic = ni->ni_ic;
50136b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
50146b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
50156b4cac81SBjoern A. Zeeb 	c = ni->ni_chan;
50166b4cac81SBjoern A. Zeeb 
50176b4cac81SBjoern A. Zeeb 	if (ieee80211_radiotap_active_vap(ni->ni_vap)) {
50186b4cac81SBjoern A. Zeeb 		struct lkpi_radiotap_tx_hdr *rtap;
50196b4cac81SBjoern A. Zeeb 
50206b4cac81SBjoern A. Zeeb 		rtap = &lhw->rtap_tx;
50216b4cac81SBjoern A. Zeeb 		rtap->wt_flags = 0;
50226b4cac81SBjoern A. Zeeb 		if (k != NULL)
50236b4cac81SBjoern A. Zeeb 			rtap->wt_flags |= IEEE80211_RADIOTAP_F_WEP;
50246b4cac81SBjoern A. Zeeb 		if (m->m_flags & M_FRAG)
50256b4cac81SBjoern A. Zeeb 			rtap->wt_flags |= IEEE80211_RADIOTAP_F_FRAG;
50266b4cac81SBjoern A. Zeeb 		IMPROVE();
50276b4cac81SBjoern A. Zeeb 		rtap->wt_rate = 0;
50286b4cac81SBjoern A. Zeeb 		if (c != NULL && c != IEEE80211_CHAN_ANYC) {
50296b4cac81SBjoern A. Zeeb 			rtap->wt_chan_freq = htole16(c->ic_freq);
50306b4cac81SBjoern A. Zeeb 			rtap->wt_chan_flags = htole16(c->ic_flags);
50316b4cac81SBjoern A. Zeeb 		}
50326b4cac81SBjoern A. Zeeb 
50336b4cac81SBjoern A. Zeeb 		ieee80211_radiotap_tx(ni->ni_vap, m);
50346b4cac81SBjoern A. Zeeb 	}
50356b4cac81SBjoern A. Zeeb 
503698e55905SBjoern A. Zeeb #ifdef LKPI_80211_HW_CRYPTO
503798e55905SBjoern A. Zeeb 	if (lkpi_hwcrypto && keyix != IEEE80211_KEYIX_NONE)
503898e55905SBjoern A. Zeeb 		tailroom = lkpi_hw_crypto_tailroom(lsta, k);
503998e55905SBjoern A. Zeeb 	else
504098e55905SBjoern A. Zeeb #endif
504198e55905SBjoern A. Zeeb 		tailroom = 0;
504298e55905SBjoern A. Zeeb 
50436b4cac81SBjoern A. Zeeb 	/*
50446b4cac81SBjoern A. Zeeb 	 * net80211 should handle hw->extra_tx_headroom.
50456b4cac81SBjoern A. Zeeb 	 * Though for as long as we are copying we don't mind.
50463d09d310SBjoern A. Zeeb 	 * XXX-BZ rtw88 asks for too much headroom for ipv6+tcp:
50473d09d310SBjoern A. Zeeb 	 * https://lists.freebsd.org/archives/freebsd-transport/2022-February/000012.html
50486b4cac81SBjoern A. Zeeb 	 */
504998e55905SBjoern A. Zeeb 	skb = dev_alloc_skb(hw->extra_tx_headroom + tailroom + m->m_pkthdr.len);
50506b4cac81SBjoern A. Zeeb 	if (skb == NULL) {
5051bcf1d8eeSBjoern A. Zeeb 		static uint8_t skb_alloc_failures = 0;
5052bcf1d8eeSBjoern A. Zeeb 
5053bcf1d8eeSBjoern A. Zeeb 		if (skb_alloc_failures++ == 0) {
5054bcf1d8eeSBjoern A. Zeeb 			int tid;
5055bcf1d8eeSBjoern A. Zeeb 
5056bcf1d8eeSBjoern A. Zeeb 			sta = LSTA_TO_STA(lsta);
5057bcf1d8eeSBjoern A. Zeeb 			ic_printf(ic, "ERROR %s: skb alloc failed %d + %d, lsta %p sta %p ni %p\n",
5058bcf1d8eeSBjoern A. Zeeb 			    __func__, hw->extra_tx_headroom, m->m_pkthdr.len, lsta, sta, ni);
5059bcf1d8eeSBjoern A. Zeeb 			for (tid = 0; tid < nitems(sta->txq); tid++) {
5060bcf1d8eeSBjoern A. Zeeb 				if (sta->txq[tid] == NULL)
5061bcf1d8eeSBjoern A. Zeeb 					continue;
5062bcf1d8eeSBjoern A. Zeeb 				ltxq = TXQ_TO_LTXQ(sta->txq[tid]);
5063bcf1d8eeSBjoern A. Zeeb 				ic_printf(ic, "  tid %d ltxq %p seen_dequeue %d stopped %d skb_queue_len %u\n",
5064bcf1d8eeSBjoern A. Zeeb 				    tid, ltxq, ltxq->seen_dequeue, ltxq->stopped, skb_queue_len(&ltxq->skbq));
5065bcf1d8eeSBjoern A. Zeeb 			}
5066bcf1d8eeSBjoern A. Zeeb 		}
50676b4cac81SBjoern A. Zeeb 		ieee80211_free_node(ni);
50686b4cac81SBjoern A. Zeeb 		m_freem(m);
50696b4cac81SBjoern A. Zeeb 		return;
50706b4cac81SBjoern A. Zeeb 	}
50716b4cac81SBjoern A. Zeeb 	skb_reserve(skb, hw->extra_tx_headroom);
50726b4cac81SBjoern A. Zeeb 
50736b4cac81SBjoern A. Zeeb 	/* XXX-BZ we need a SKB version understanding mbuf. */
50746b4cac81SBjoern A. Zeeb 	/* Save the mbuf for ieee80211_tx_complete(). */
50756b4cac81SBjoern A. Zeeb 	skb->m_free_func = lkpi_ieee80211_free_skb_mbuf;
50766b4cac81SBjoern A. Zeeb 	skb->m = m;
50776b4cac81SBjoern A. Zeeb #if 0
50786b4cac81SBjoern A. Zeeb 	skb_put_data(skb, m->m_data, m->m_pkthdr.len);
50796b4cac81SBjoern A. Zeeb #else
50806b4cac81SBjoern A. Zeeb 	buf = skb_put(skb, m->m_pkthdr.len);
50816b4cac81SBjoern A. Zeeb 	m_copydata(m, 0, m->m_pkthdr.len, buf);
50826b4cac81SBjoern A. Zeeb #endif
50836b4cac81SBjoern A. Zeeb 	/* Save the ni. */
50846b4cac81SBjoern A. Zeeb 	m->m_pkthdr.PH_loc.ptr = ni;
50856b4cac81SBjoern A. Zeeb 
50866b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(ni->ni_vap);
50876b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
50886b4cac81SBjoern A. Zeeb 
5089e3a0b120SBjoern A. Zeeb 	hdr = (void *)skb->data;
5090e3a0b120SBjoern A. Zeeb 	tid = linuxkpi_ieee80211_get_tid(hdr, true);
5091e3a0b120SBjoern A. Zeeb 	if (tid == IEEE80211_NONQOS_TID) { /* == IEEE80211_NUM_TIDS */
50921665ef97SBjoern A. Zeeb 		if (!ieee80211_is_data(hdr->frame_control)) {
50931665ef97SBjoern A. Zeeb 			/* MGMT and CTRL frames go on TID 7/VO. */
50941665ef97SBjoern A. Zeeb 			skb->priority = 7;
50951665ef97SBjoern A. Zeeb 			ac = IEEE80211_AC_VO;
50961665ef97SBjoern A. Zeeb 		} else {
50971665ef97SBjoern A. Zeeb 			/* Other non-QOS traffic goes to BE. */
50981665ef97SBjoern A. Zeeb 			/* Contrary to net80211 we MUST NOT promote M_EAPOL. */
5099e3a0b120SBjoern A. Zeeb 			skb->priority = 0;
5100e3a0b120SBjoern A. Zeeb 			ac = IEEE80211_AC_BE;
51011665ef97SBjoern A. Zeeb 		}
5102e3a0b120SBjoern A. Zeeb 	} else {
5103e3a0b120SBjoern A. Zeeb 		skb->priority = tid & IEEE80211_QOS_CTL_TID_MASK;
5104fb3c249eSBjoern A. Zeeb 		ac = ieee80211e_up_to_ac[tid & 7];
5105e3a0b120SBjoern A. Zeeb 	}
51066b4cac81SBjoern A. Zeeb 	skb_set_queue_mapping(skb, ac);
51076b4cac81SBjoern A. Zeeb 
51086b4cac81SBjoern A. Zeeb 	info = IEEE80211_SKB_CB(skb);
51096b4cac81SBjoern A. Zeeb 	info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
51106b4cac81SBjoern A. Zeeb 	/* Slight delay; probably only happens on scanning so fine? */
51116b4cac81SBjoern A. Zeeb 	if (c == NULL || c == IEEE80211_CHAN_ANYC)
51126b4cac81SBjoern A. Zeeb 		c = ic->ic_curchan;
51136b4cac81SBjoern A. Zeeb 	info->band = lkpi_net80211_chan_to_nl80211_band(c);
5114e3a0b120SBjoern A. Zeeb 	info->hw_queue = vif->hw_queue[ac];
51156b4cac81SBjoern A. Zeeb 	if (m->m_flags & M_EAPOL)
51166b4cac81SBjoern A. Zeeb 		info->control.flags |= IEEE80211_TX_CTRL_PORT_CTRL_PROTO;
51176b4cac81SBjoern A. Zeeb 	info->control.vif = vif;
51186b4cac81SBjoern A. Zeeb 	/* XXX-BZ info->control.rates */
51199fb91463SBjoern A. Zeeb #ifdef __notyet__
51209fb91463SBjoern A. Zeeb #ifdef LKPI_80211_HT
51219fb91463SBjoern A. Zeeb 	info->control.rts_cts_rate_idx=
51229fb91463SBjoern A. Zeeb 	info->control.use_rts= /* RTS */
51239fb91463SBjoern A. Zeeb 	info->control.use_cts_prot= /* RTS/CTS*/
51249fb91463SBjoern A. Zeeb #endif
51259fb91463SBjoern A. Zeeb #endif
51266b4cac81SBjoern A. Zeeb 
51276b4cac81SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
5128b35f6cd0SBjoern A. Zeeb #ifdef LKPI_80211_HW_CRYPTO
512911db70b6SBjoern A. Zeeb 	if (lkpi_hwcrypto && keyix != IEEE80211_KEYIX_NONE) {
513011db70b6SBjoern A. Zeeb 		int error;
513111db70b6SBjoern A. Zeeb 
513211db70b6SBjoern A. Zeeb 		error = lkpi_hw_crypto_prepare(lsta, k, skb);
513311db70b6SBjoern A. Zeeb 		if (error != 0) {
513411db70b6SBjoern A. Zeeb 			/*
513511db70b6SBjoern A. Zeeb 			 * We only have to free the skb which will free the
513611db70b6SBjoern A. Zeeb 			 * mbuf and release the reference on the ni.
513711db70b6SBjoern A. Zeeb 			 */
513811db70b6SBjoern A. Zeeb 			dev_kfree_skb(skb);
513911db70b6SBjoern A. Zeeb 			return;
514011db70b6SBjoern A. Zeeb 		}
514111db70b6SBjoern A. Zeeb 	}
51426b4cac81SBjoern A. Zeeb #endif
51436b4cac81SBjoern A. Zeeb 
51446b4cac81SBjoern A. Zeeb 	IMPROVE();
51456b4cac81SBjoern A. Zeeb 
5146e3a0b120SBjoern A. Zeeb 	ltxq = NULL;
5147e3a0b120SBjoern A. Zeeb 	if (!ieee80211_is_data_present(hdr->frame_control)) {
5148e3a0b120SBjoern A. Zeeb 		if (vif->type == NL80211_IFTYPE_STATION &&
5149e3a0b120SBjoern A. Zeeb 		    lsta->added_to_drv &&
5150e3a0b120SBjoern A. Zeeb 		    sta->txq[IEEE80211_NUM_TIDS] != NULL)
5151d0d29110SBjoern A. Zeeb 			ltxq = TXQ_TO_LTXQ(sta->txq[IEEE80211_NUM_TIDS]);
5152e3a0b120SBjoern A. Zeeb 	} else if (lsta->added_to_drv &&
5153e3a0b120SBjoern A. Zeeb 	    sta->txq[skb->priority] != NULL) {
5154e3a0b120SBjoern A. Zeeb 		ltxq = TXQ_TO_LTXQ(sta->txq[skb->priority]);
5155e3a0b120SBjoern A. Zeeb 	}
5156e3a0b120SBjoern A. Zeeb 	if (ltxq == NULL)
5157d0d29110SBjoern A. Zeeb 		goto ops_tx;
5158e3a0b120SBjoern A. Zeeb 
5159d0d29110SBjoern A. Zeeb 	KASSERT(ltxq != NULL, ("%s: lsta %p sta %p m %p skb %p "
5160d0d29110SBjoern A. Zeeb 	    "ltxq %p != NULL\n", __func__, lsta, sta, m, skb, ltxq));
5161d0d29110SBjoern A. Zeeb 
5162eac3646fSBjoern A. Zeeb 	LKPI_80211_LTXQ_LOCK(ltxq);
51636b4cac81SBjoern A. Zeeb 	skb_queue_tail(&ltxq->skbq, skb);
51649d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
51659d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_TX)
5166325aa4dbSMark Johnston 		printf("%s:%d mo_wake_tx_queue :: %d %lu lsta %p sta %p "
5167d0d29110SBjoern A. Zeeb 		    "ni %p %6D skb %p lxtq %p { qlen %u, ac %d tid %u } "
5168d0d29110SBjoern A. Zeeb 		    "WAKE_TX_Q ac %d prio %u qmap %u\n",
5169fb6eaf74SBjoern A. Zeeb 		    __func__, __LINE__,
5170325aa4dbSMark Johnston 		    curthread->td_tid, jiffies,
5171d0d29110SBjoern A. Zeeb 		    lsta, sta, ni, ni->ni_macaddr, ":", skb, ltxq,
5172d0d29110SBjoern A. Zeeb 		    skb_queue_len(&ltxq->skbq), ltxq->txq.ac,
5173d0d29110SBjoern A. Zeeb 		    ltxq->txq.tid, ac, skb->priority, skb->qmap);
51749d9ba2b7SBjoern A. Zeeb #endif
5175eac3646fSBjoern A. Zeeb 	LKPI_80211_LTXQ_UNLOCK(ltxq);
5176cd0fcf9fSBjoern A. Zeeb 	wiphy_lock(hw->wiphy);
5177d0d29110SBjoern A. Zeeb 	lkpi_80211_mo_wake_tx_queue(hw, &ltxq->txq);
5178cd0fcf9fSBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
51796b4cac81SBjoern A. Zeeb 	return;
51806b4cac81SBjoern A. Zeeb 
51816b4cac81SBjoern A. Zeeb ops_tx:
51829d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
51839d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_TX)
5184d0d29110SBjoern A. Zeeb 		printf("%s:%d mo_tx :: lsta %p sta %p ni %p %6D skb %p "
5185d0d29110SBjoern A. Zeeb 		    "TX ac %d prio %u qmap %u\n",
51866b4cac81SBjoern A. Zeeb 		    __func__, __LINE__, lsta, sta, ni, ni->ni_macaddr, ":",
51876b4cac81SBjoern A. Zeeb 		    skb, ac, skb->priority, skb->qmap);
51889d9ba2b7SBjoern A. Zeeb #endif
51896b4cac81SBjoern A. Zeeb 	memset(&control, 0, sizeof(control));
51906b4cac81SBjoern A. Zeeb 	control.sta = sta;
5191cd0fcf9fSBjoern A. Zeeb 	wiphy_lock(hw->wiphy);
51926b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_tx(hw, &control, skb);
5193cd0fcf9fSBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
51946b4cac81SBjoern A. Zeeb }
51956b4cac81SBjoern A. Zeeb 
51966b4cac81SBjoern A. Zeeb static void
51976b4cac81SBjoern A. Zeeb lkpi_80211_txq_task(void *ctx, int pending)
51986b4cac81SBjoern A. Zeeb {
51996b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
52006b4cac81SBjoern A. Zeeb 	struct mbufq mq;
52016b4cac81SBjoern A. Zeeb 	struct mbuf *m;
520288665349SBjoern A. Zeeb 	bool shall_tx;
52036b4cac81SBjoern A. Zeeb 
52046b4cac81SBjoern A. Zeeb 	lsta = ctx;
52056b4cac81SBjoern A. Zeeb 
52069d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
52079d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_TX)
52086b4cac81SBjoern A. Zeeb 		printf("%s:%d lsta %p ni %p %6D pending %d mbuf_qlen %d\n",
52099d9ba2b7SBjoern A. Zeeb 		    __func__, __LINE__, lsta, lsta->ni, lsta->ni->ni_macaddr, ":",
52106b4cac81SBjoern A. Zeeb 		    pending, mbufq_len(&lsta->txq));
52119d9ba2b7SBjoern A. Zeeb #endif
52126b4cac81SBjoern A. Zeeb 
52136b4cac81SBjoern A. Zeeb 	mbufq_init(&mq, IFQ_MAXLEN);
52146b4cac81SBjoern A. Zeeb 
5215fa4e4257SBjoern A. Zeeb 	LKPI_80211_LSTA_TXQ_LOCK(lsta);
5216fa4e4257SBjoern A. Zeeb 	/*
5217fa4e4257SBjoern A. Zeeb 	 * Do not re-check lsta->txq_ready here; we may have a pending
521888665349SBjoern A. Zeeb 	 * disassoc/deauth frame still.  On the contrary if txq_ready is
521988665349SBjoern A. Zeeb 	 * false we do not have a valid sta anymore in the firmware so no
522088665349SBjoern A. Zeeb 	 * point to try to TX.
522188665349SBjoern A. Zeeb 	 * We also use txq_ready as a semaphore and will drain the txq manually
522288665349SBjoern A. Zeeb 	 * if needed on our way towards SCAN/INIT in the state machine.
5223fa4e4257SBjoern A. Zeeb 	 */
52242372f8ccSBjoern A. Zeeb #if 0
522588665349SBjoern A. Zeeb 	shall_tx = lsta->added_to_drv && lsta->txq_ready;
52262372f8ccSBjoern A. Zeeb #else
52272372f8ccSBjoern A. Zeeb 	/*
52282372f8ccSBjoern A. Zeeb 	 * Backout this part of 886653492945f which breaks rtw88 or
52292372f8ccSBjoern A. Zeeb 	 * in general drivers without (*sta_state)() but only the
52302372f8ccSBjoern A. Zeeb 	 * legacy fallback to (*sta_add)().
52312372f8ccSBjoern A. Zeeb 	 */
52322372f8ccSBjoern A. Zeeb 	shall_tx = lsta->txq_ready;
52332372f8ccSBjoern A. Zeeb #endif
523488665349SBjoern A. Zeeb 	if (__predict_true(shall_tx))
52356b4cac81SBjoern A. Zeeb 		mbufq_concat(&mq, &lsta->txq);
523688665349SBjoern A. Zeeb 	/*
523788665349SBjoern A. Zeeb 	 * else a state change will push the packets out manually or
523888665349SBjoern A. Zeeb 	 * lkpi_lsta_free() will drain the lsta->txq and free the mbufs.
523988665349SBjoern A. Zeeb 	 */
5240fa4e4257SBjoern A. Zeeb 	LKPI_80211_LSTA_TXQ_UNLOCK(lsta);
52416b4cac81SBjoern A. Zeeb 
52426b4cac81SBjoern A. Zeeb 	m = mbufq_dequeue(&mq);
52436b4cac81SBjoern A. Zeeb 	while (m != NULL) {
52446b4cac81SBjoern A. Zeeb 		lkpi_80211_txq_tx_one(lsta, m);
52456b4cac81SBjoern A. Zeeb 		m = mbufq_dequeue(&mq);
52466b4cac81SBjoern A. Zeeb 	}
52476b4cac81SBjoern A. Zeeb }
52486b4cac81SBjoern A. Zeeb 
52496b4cac81SBjoern A. Zeeb static int
52506b4cac81SBjoern A. Zeeb lkpi_ic_transmit(struct ieee80211com *ic, struct mbuf *m)
52516b4cac81SBjoern A. Zeeb {
52526b4cac81SBjoern A. Zeeb 
52536b4cac81SBjoern A. Zeeb 	/* XXX TODO */
52546b4cac81SBjoern A. Zeeb 	IMPROVE();
52556b4cac81SBjoern A. Zeeb 
52566b4cac81SBjoern A. Zeeb 	/* Quick and dirty cheating hack. */
52576b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
52586b4cac81SBjoern A. Zeeb 
52596b4cac81SBjoern A. Zeeb 	ni = (struct ieee80211_node *)m->m_pkthdr.rcvif;
52609a45c3caSBjoern A. Zeeb 	return (lkpi_xmit(ni, m, NULL, false));
52616b4cac81SBjoern A. Zeeb }
52626b4cac81SBjoern A. Zeeb 
52639fb91463SBjoern A. Zeeb #ifdef LKPI_80211_HT
52649fb91463SBjoern A. Zeeb static int
52659fb91463SBjoern A. Zeeb lkpi_ic_recv_action(struct ieee80211_node *ni, const struct ieee80211_frame *wh,
52669fb91463SBjoern A. Zeeb     const uint8_t *frm, const uint8_t *efrm)
52679fb91463SBjoern A. Zeeb {
52689fb91463SBjoern A. Zeeb 	struct ieee80211com *ic;
52699fb91463SBjoern A. Zeeb 	struct lkpi_hw *lhw;
52709fb91463SBjoern A. Zeeb 
52719fb91463SBjoern A. Zeeb 	ic = ni->ni_ic;
52729fb91463SBjoern A. Zeeb 	lhw = ic->ic_softc;
52739fb91463SBjoern A. Zeeb 
5274310743c4SBjoern A. Zeeb 	IMPROVE_HT("recv_action called; nothing to do in lkpi; make debugging");
52759fb91463SBjoern A. Zeeb 
52769fb91463SBjoern A. Zeeb 	return (lhw->ic_recv_action(ni, wh, frm, efrm));
52779fb91463SBjoern A. Zeeb }
52789fb91463SBjoern A. Zeeb 
52799fb91463SBjoern A. Zeeb static int
52809fb91463SBjoern A. Zeeb lkpi_ic_send_action(struct ieee80211_node *ni, int category, int action, void *sa)
52819fb91463SBjoern A. Zeeb {
52829fb91463SBjoern A. Zeeb 	struct ieee80211com *ic;
52839fb91463SBjoern A. Zeeb 	struct lkpi_hw *lhw;
52849fb91463SBjoern A. Zeeb 
52859fb91463SBjoern A. Zeeb 	ic = ni->ni_ic;
52869fb91463SBjoern A. Zeeb 	lhw = ic->ic_softc;
52879fb91463SBjoern A. Zeeb 
5288310743c4SBjoern A. Zeeb 	IMPROVE_HT("send_action called; nothing to do in lkpi; make debugging");
52899fb91463SBjoern A. Zeeb 
52909fb91463SBjoern A. Zeeb 	return (lhw->ic_send_action(ni, category, action, sa));
52919fb91463SBjoern A. Zeeb }
52929fb91463SBjoern A. Zeeb 
52939fb91463SBjoern A. Zeeb 
52949fb91463SBjoern A. Zeeb static int
52959fb91463SBjoern A. Zeeb lkpi_ic_ampdu_enable(struct ieee80211_node *ni, struct ieee80211_tx_ampdu *tap)
52969fb91463SBjoern A. Zeeb {
52979fb91463SBjoern A. Zeeb 	struct ieee80211com *ic;
52989fb91463SBjoern A. Zeeb 	struct lkpi_hw *lhw;
52999fb91463SBjoern A. Zeeb 
53009fb91463SBjoern A. Zeeb 	ic = ni->ni_ic;
53019fb91463SBjoern A. Zeeb 	lhw = ic->ic_softc;
53029fb91463SBjoern A. Zeeb 
5303310743c4SBjoern A. Zeeb 	IMPROVE_HT("ieee80211_ampdu_enable called; nothing to do in lkpi for now; make debugging");
53049fb91463SBjoern A. Zeeb 
53059fb91463SBjoern A. Zeeb 	return (lhw->ic_ampdu_enable(ni, tap));
53069fb91463SBjoern A. Zeeb }
53079fb91463SBjoern A. Zeeb 
5308310743c4SBjoern A. Zeeb /*
5309310743c4SBjoern A. Zeeb  * (*ic_addba_request)() is called by ieee80211_ampdu_request() before
5310310743c4SBjoern A. Zeeb  * calling send_action(CAT_BA, BA_ADDBA_REQUEST).
5311310743c4SBjoern A. Zeeb  *
5312310743c4SBjoern A. Zeeb  * NB: returns 0 on ERROR!
5313310743c4SBjoern A. Zeeb  */
53149fb91463SBjoern A. Zeeb static int
53159fb91463SBjoern A. Zeeb lkpi_ic_addba_request(struct ieee80211_node *ni, struct ieee80211_tx_ampdu *tap,
53169fb91463SBjoern A. Zeeb     int dialogtoken, int baparamset, int batimeout)
53179fb91463SBjoern A. Zeeb {
53189fb91463SBjoern A. Zeeb 	struct ieee80211com *ic;
53199fb91463SBjoern A. Zeeb 	struct lkpi_hw *lhw;
5320310743c4SBjoern A. Zeeb 	struct ieee80211_hw *hw;
5321310743c4SBjoern A. Zeeb 	struct ieee80211vap *vap;
5322310743c4SBjoern A. Zeeb 	struct lkpi_vif *lvif;
5323310743c4SBjoern A. Zeeb 	struct ieee80211_vif *vif;
5324310743c4SBjoern A. Zeeb 	struct lkpi_sta *lsta;
5325310743c4SBjoern A. Zeeb 	struct ieee80211_sta *sta;
5326310743c4SBjoern A. Zeeb 	struct ieee80211_ampdu_params params = { };
5327310743c4SBjoern A. Zeeb 	int error;
53289fb91463SBjoern A. Zeeb 
53299fb91463SBjoern A. Zeeb 	ic = ni->ni_ic;
53309fb91463SBjoern A. Zeeb 	lhw = ic->ic_softc;
5331310743c4SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
5332310743c4SBjoern A. Zeeb 	vap = ni->ni_vap;
5333310743c4SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
5334310743c4SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
5335310743c4SBjoern A. Zeeb 	lsta = ni->ni_drv_data;
5336310743c4SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
53379fb91463SBjoern A. Zeeb 
5338310743c4SBjoern A. Zeeb 	if (!lsta->added_to_drv) {
5339310743c4SBjoern A. Zeeb 		ic_printf(ic, "%s: lsta %p ni %p, sta %p not added to firmware\n",
5340310743c4SBjoern A. Zeeb 		    __func__, lsta, ni, sta);
5341310743c4SBjoern A. Zeeb 		return (0);
5342310743c4SBjoern A. Zeeb 	}
5343310743c4SBjoern A. Zeeb 
5344310743c4SBjoern A. Zeeb 	params.sta = sta;
5345310743c4SBjoern A. Zeeb 	params.action = IEEE80211_AMPDU_TX_START;
5346310743c4SBjoern A. Zeeb 	/* Keep 0 here! */
5347310743c4SBjoern A. Zeeb 	params.buf_size = 0;
5348310743c4SBjoern A. Zeeb 	params.timeout = 0;
5349310743c4SBjoern A. Zeeb 	params.ssn = tap->txa_start & (IEEE80211_SEQ_RANGE-1);
5350310743c4SBjoern A. Zeeb 	params.tid = tap->txa_tid;
5351310743c4SBjoern A. Zeeb 	params.amsdu = false;
5352310743c4SBjoern A. Zeeb 
5353310743c4SBjoern A. Zeeb 	IEEE80211_UNLOCK(ic);
5354cd0fcf9fSBjoern A. Zeeb 	wiphy_lock(hw->wiphy);
5355310743c4SBjoern A. Zeeb 	error = lkpi_80211_mo_ampdu_action(hw, vif, &params);
5356cd0fcf9fSBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
5357310743c4SBjoern A. Zeeb 	IEEE80211_LOCK(ic);
5358310743c4SBjoern A. Zeeb 	if (error != 0) {
5359310743c4SBjoern A. Zeeb 		ic_printf(ic, "%s: mo_ampdu_action returned %d. ni %p tap %p\n",
5360310743c4SBjoern A. Zeeb 		    __func__, error, ni, tap);
5361310743c4SBjoern A. Zeeb 		return (0);
5362310743c4SBjoern A. Zeeb 	}
53639fb91463SBjoern A. Zeeb 
53649fb91463SBjoern A. Zeeb 	return (lhw->ic_addba_request(ni, tap, dialogtoken, baparamset, batimeout));
53659fb91463SBjoern A. Zeeb }
53669fb91463SBjoern A. Zeeb 
5367310743c4SBjoern A. Zeeb /*
5368310743c4SBjoern A. Zeeb  * (*ic_addba_response)() is called from ht_recv_action_ba_addba_response()
5369310743c4SBjoern A. Zeeb  * and calls the default ieee80211_addba_response() which always returns 1.
5370310743c4SBjoern A. Zeeb  *
5371310743c4SBjoern A. Zeeb  * NB: No error checking in net80211!
5372310743c4SBjoern A. Zeeb  * Staying with 0 is an error.
5373310743c4SBjoern A. Zeeb  */
53749fb91463SBjoern A. Zeeb static int
53759fb91463SBjoern A. Zeeb lkpi_ic_addba_response(struct ieee80211_node *ni, struct ieee80211_tx_ampdu *tap,
53769fb91463SBjoern A. Zeeb     int status, int baparamset, int batimeout)
53779fb91463SBjoern A. Zeeb {
53789fb91463SBjoern A. Zeeb 	struct ieee80211com *ic;
53799fb91463SBjoern A. Zeeb 	struct lkpi_hw *lhw;
5380310743c4SBjoern A. Zeeb 	struct ieee80211_hw *hw;
5381310743c4SBjoern A. Zeeb 	struct ieee80211vap *vap;
5382310743c4SBjoern A. Zeeb 	struct lkpi_vif *lvif;
5383310743c4SBjoern A. Zeeb 	struct ieee80211_vif *vif;
5384310743c4SBjoern A. Zeeb 	struct lkpi_sta *lsta;
5385310743c4SBjoern A. Zeeb 	struct ieee80211_sta *sta;
5386310743c4SBjoern A. Zeeb 	struct ieee80211_ampdu_params params = { };
5387310743c4SBjoern A. Zeeb 	int error;
53889fb91463SBjoern A. Zeeb 
53899fb91463SBjoern A. Zeeb 	ic = ni->ni_ic;
53909fb91463SBjoern A. Zeeb 	lhw = ic->ic_softc;
5391310743c4SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
5392310743c4SBjoern A. Zeeb 	vap = ni->ni_vap;
5393310743c4SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
5394310743c4SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
5395310743c4SBjoern A. Zeeb 	lsta = ni->ni_drv_data;
5396310743c4SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
53979fb91463SBjoern A. Zeeb 
5398310743c4SBjoern A. Zeeb 	if (!lsta->added_to_drv) {
5399310743c4SBjoern A. Zeeb 		ic_printf(ic, "%s: lsta %p ni %p, sta %p not added to firmware\n",
5400310743c4SBjoern A. Zeeb 		    __func__, lsta, ni, sta);
5401310743c4SBjoern A. Zeeb 		return (0);
5402310743c4SBjoern A. Zeeb 	}
5403310743c4SBjoern A. Zeeb 
5404310743c4SBjoern A. Zeeb 	if (status == IEEE80211_STATUS_SUCCESS) {
5405310743c4SBjoern A. Zeeb 		params.sta = sta;
5406310743c4SBjoern A. Zeeb 		params.action = IEEE80211_AMPDU_TX_OPERATIONAL;
5407310743c4SBjoern A. Zeeb 		params.buf_size = tap->txa_wnd;
5408310743c4SBjoern A. Zeeb 		params.timeout = 0;
5409310743c4SBjoern A. Zeeb 		params.ssn = 0;
5410310743c4SBjoern A. Zeeb 		params.tid = tap->txa_tid;
5411310743c4SBjoern A. Zeeb 		if ((tap->txa_flags & IEEE80211_AGGR_AMSDU) != 0)
5412310743c4SBjoern A. Zeeb 			params.amsdu = true;
5413310743c4SBjoern A. Zeeb 		else
5414310743c4SBjoern A. Zeeb 			params.amsdu = false;
5415310743c4SBjoern A. Zeeb 	} else {
5416310743c4SBjoern A. Zeeb 		/* We need to free the allocated resources. */
5417310743c4SBjoern A. Zeeb 		params.sta = sta;
5418310743c4SBjoern A. Zeeb 		switch (status) {
5419310743c4SBjoern A. Zeeb 			/* params.action = FLUSH, FLUSH_CONT */
5420310743c4SBjoern A. Zeeb 		default:
5421310743c4SBjoern A. Zeeb 			params.action = IEEE80211_AMPDU_TX_STOP_CONT;
5422310743c4SBjoern A. Zeeb 			break;
5423310743c4SBjoern A. Zeeb 		}
5424310743c4SBjoern A. Zeeb 		params.buf_size = 0;
5425310743c4SBjoern A. Zeeb 		params.timeout = 0;
5426310743c4SBjoern A. Zeeb 		params.ssn = 0;
5427310743c4SBjoern A. Zeeb 		params.tid = tap->txa_tid;
5428310743c4SBjoern A. Zeeb 		params.amsdu = false;
5429310743c4SBjoern A. Zeeb 	}
5430310743c4SBjoern A. Zeeb 
5431310743c4SBjoern A. Zeeb 	IEEE80211_UNLOCK(ic);
5432cd0fcf9fSBjoern A. Zeeb 	wiphy_lock(hw->wiphy);
5433310743c4SBjoern A. Zeeb 	error = lkpi_80211_mo_ampdu_action(hw, vif, &params);
5434cd0fcf9fSBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
5435310743c4SBjoern A. Zeeb 	IEEE80211_LOCK(ic);
5436310743c4SBjoern A. Zeeb 	if (error != 0) {
5437310743c4SBjoern A. Zeeb 		ic_printf(ic, "%s: mo_ampdu_action returned %d. ni %p tap %p\n",
5438310743c4SBjoern A. Zeeb 		    __func__, error, ni, tap);
5439310743c4SBjoern A. Zeeb 		return (0);
5440310743c4SBjoern A. Zeeb 	}
5441310743c4SBjoern A. Zeeb 
5442310743c4SBjoern A. Zeeb 	IMPROVE_HT("who unleashes the TXQ? and when?, do we need to ni->ni_txseqs[tid] = tap->txa_start & 0xfff;");
54439fb91463SBjoern A. Zeeb 
54449fb91463SBjoern A. Zeeb 	return (lhw->ic_addba_response(ni, tap, status, baparamset, batimeout));
54459fb91463SBjoern A. Zeeb }
54469fb91463SBjoern A. Zeeb 
5447310743c4SBjoern A. Zeeb /*
5448310743c4SBjoern A. Zeeb  * (*ic_addba_stop)() is called from ampdu_tx_stop(), ht_recv_action_ba_delba(),
5449310743c4SBjoern A. Zeeb  * and ieee80211_ampdu_stop() and calls the default ieee80211_addba_stop().
5450310743c4SBjoern A. Zeeb  */
54519fb91463SBjoern A. Zeeb static void
54529fb91463SBjoern A. Zeeb lkpi_ic_addba_stop(struct ieee80211_node *ni, struct ieee80211_tx_ampdu *tap)
54539fb91463SBjoern A. Zeeb {
54549fb91463SBjoern A. Zeeb 	struct ieee80211com *ic;
54559fb91463SBjoern A. Zeeb 	struct lkpi_hw *lhw;
5456310743c4SBjoern A. Zeeb 	struct ieee80211_hw *hw;
5457310743c4SBjoern A. Zeeb 	struct ieee80211vap *vap;
5458310743c4SBjoern A. Zeeb 	struct lkpi_vif *lvif;
5459310743c4SBjoern A. Zeeb 	struct ieee80211_vif *vif;
5460310743c4SBjoern A. Zeeb 	struct lkpi_sta *lsta;
5461310743c4SBjoern A. Zeeb 	struct ieee80211_sta *sta;
5462310743c4SBjoern A. Zeeb 	struct ieee80211_ampdu_params params = { };
5463310743c4SBjoern A. Zeeb 	int error;
54649fb91463SBjoern A. Zeeb 
54659fb91463SBjoern A. Zeeb 	ic = ni->ni_ic;
54669fb91463SBjoern A. Zeeb 	lhw = ic->ic_softc;
5467310743c4SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
5468310743c4SBjoern A. Zeeb 	vap = ni->ni_vap;
5469310743c4SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
5470310743c4SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
5471310743c4SBjoern A. Zeeb 	lsta = ni->ni_drv_data;
5472310743c4SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
54739fb91463SBjoern A. Zeeb 
5474310743c4SBjoern A. Zeeb 	if (!lsta->added_to_drv) {
5475310743c4SBjoern A. Zeeb 		ic_printf(ic, "%s: lsta %p ni %p, sta %p not added to firmware\n",
5476310743c4SBjoern A. Zeeb 		    __func__, lsta, ni, sta);
5477310743c4SBjoern A. Zeeb 		goto n80211;
5478310743c4SBjoern A. Zeeb 	}
54799fb91463SBjoern A. Zeeb 
5480310743c4SBjoern A. Zeeb 	/* We need to free the allocated resources. */
5481310743c4SBjoern A. Zeeb 	params.sta = sta;
5482310743c4SBjoern A. Zeeb 	IMPROVE("net80211 does not provide a reason to us");
5483310743c4SBjoern A. Zeeb 	params.action = IEEE80211_AMPDU_TX_STOP_CONT; /* params.action = FLUSH, FLUSH_CONT */
5484310743c4SBjoern A. Zeeb 	params.buf_size = 0;
5485310743c4SBjoern A. Zeeb 	params.timeout = 0;
5486310743c4SBjoern A. Zeeb 	params.ssn = 0;
5487310743c4SBjoern A. Zeeb 	params.tid = tap->txa_tid;
5488310743c4SBjoern A. Zeeb 	params.amsdu = false;
5489310743c4SBjoern A. Zeeb 
5490310743c4SBjoern A. Zeeb 	IEEE80211_UNLOCK(ic);
5491cd0fcf9fSBjoern A. Zeeb 	wiphy_lock(hw->wiphy);
5492310743c4SBjoern A. Zeeb 	error = lkpi_80211_mo_ampdu_action(hw, vif, &params);
5493cd0fcf9fSBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
5494310743c4SBjoern A. Zeeb 	IEEE80211_LOCK(ic);
5495310743c4SBjoern A. Zeeb 	if (error != 0) {
5496310743c4SBjoern A. Zeeb 		ic_printf(ic, "%s: mo_ampdu_action returned %d. ni %p tap %p\n",
5497310743c4SBjoern A. Zeeb 		    __func__, error, ni, tap);
5498310743c4SBjoern A. Zeeb 		goto n80211;
5499310743c4SBjoern A. Zeeb 	}
5500310743c4SBjoern A. Zeeb 
5501310743c4SBjoern A. Zeeb 	IMPROVE_HT("anyting else?");
5502310743c4SBjoern A. Zeeb 
5503310743c4SBjoern A. Zeeb n80211:
55049fb91463SBjoern A. Zeeb 	lhw->ic_addba_stop(ni, tap);
55059fb91463SBjoern A. Zeeb }
55069fb91463SBjoern A. Zeeb 
55079fb91463SBjoern A. Zeeb static void
55089fb91463SBjoern A. Zeeb lkpi_ic_addba_response_timeout(struct ieee80211_node *ni, struct ieee80211_tx_ampdu *tap)
55099fb91463SBjoern A. Zeeb {
55109fb91463SBjoern A. Zeeb 	struct ieee80211com *ic;
55119fb91463SBjoern A. Zeeb 	struct lkpi_hw *lhw;
55129fb91463SBjoern A. Zeeb 
55139fb91463SBjoern A. Zeeb 	ic = ni->ni_ic;
55149fb91463SBjoern A. Zeeb 	lhw = ic->ic_softc;
55159fb91463SBjoern A. Zeeb 
55169fb91463SBjoern A. Zeeb 	IMPROVE_HT();
55179fb91463SBjoern A. Zeeb 
55189fb91463SBjoern A. Zeeb 	lhw->ic_addba_response_timeout(ni, tap);
55199fb91463SBjoern A. Zeeb }
55209fb91463SBjoern A. Zeeb 
55219fb91463SBjoern A. Zeeb static void
55229fb91463SBjoern A. Zeeb lkpi_ic_bar_response(struct ieee80211_node *ni, struct ieee80211_tx_ampdu *tap,
55239fb91463SBjoern A. Zeeb     int status)
55249fb91463SBjoern A. Zeeb {
55259fb91463SBjoern A. Zeeb 	struct ieee80211com *ic;
55269fb91463SBjoern A. Zeeb 	struct lkpi_hw *lhw;
55279fb91463SBjoern A. Zeeb 
55289fb91463SBjoern A. Zeeb 	ic = ni->ni_ic;
55299fb91463SBjoern A. Zeeb 	lhw = ic->ic_softc;
55309fb91463SBjoern A. Zeeb 
55319fb91463SBjoern A. Zeeb 	IMPROVE_HT();
55329fb91463SBjoern A. Zeeb 
55339fb91463SBjoern A. Zeeb 	lhw->ic_bar_response(ni, tap, status);
55349fb91463SBjoern A. Zeeb }
55359fb91463SBjoern A. Zeeb 
55369fb91463SBjoern A. Zeeb static int
55379fb91463SBjoern A. Zeeb lkpi_ic_ampdu_rx_start(struct ieee80211_node *ni, struct ieee80211_rx_ampdu *rap,
55389fb91463SBjoern A. Zeeb     int baparamset, int batimeout, int baseqctl)
55399fb91463SBjoern A. Zeeb {
55409fb91463SBjoern A. Zeeb 	struct ieee80211com *ic;
55419fb91463SBjoern A. Zeeb 	struct lkpi_hw *lhw;
55429fb91463SBjoern A. Zeeb 	struct ieee80211_hw *hw;
55439fb91463SBjoern A. Zeeb 	struct ieee80211vap *vap;
55449fb91463SBjoern A. Zeeb 	struct lkpi_vif *lvif;
55459fb91463SBjoern A. Zeeb 	struct ieee80211_vif *vif;
55469fb91463SBjoern A. Zeeb 	struct lkpi_sta *lsta;
55479fb91463SBjoern A. Zeeb 	struct ieee80211_sta *sta;
5548310743c4SBjoern A. Zeeb 	struct ieee80211_ampdu_params params = { };
55499fb91463SBjoern A. Zeeb 	int error;
55509fb91463SBjoern A. Zeeb 
55519fb91463SBjoern A. Zeeb 	ic = ni->ni_ic;
55529fb91463SBjoern A. Zeeb 	lhw = ic->ic_softc;
55539fb91463SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
55549fb91463SBjoern A. Zeeb 	vap = ni->ni_vap;
55559fb91463SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
55569fb91463SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
55579fb91463SBjoern A. Zeeb 	lsta = ni->ni_drv_data;
55589fb91463SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
55599fb91463SBjoern A. Zeeb 
5560310743c4SBjoern A. Zeeb 	IEEE80211_UNLOCK_ASSERT(ic);
5561310743c4SBjoern A. Zeeb 
5562310743c4SBjoern A. Zeeb 	if (!lsta->added_to_drv) {
5563310743c4SBjoern A. Zeeb 		ic_printf(ic, "%s: lsta %p ni %p vap %p, sta %p not added to firmware\n",
5564310743c4SBjoern A. Zeeb 		    __func__, lsta, ni, vap, sta);
5565310743c4SBjoern A. Zeeb 		return (-ENXIO);
5566310743c4SBjoern A. Zeeb 	}
5567310743c4SBjoern A. Zeeb 
55689fb91463SBjoern A. Zeeb 	params.sta = sta;
55699fb91463SBjoern A. Zeeb 	params.action = IEEE80211_AMPDU_RX_START;
55709fb91463SBjoern A. Zeeb 	params.buf_size = _IEEE80211_MASKSHIFT(le16toh(baparamset), IEEE80211_BAPS_BUFSIZ);
55719fb91463SBjoern A. Zeeb 	if (params.buf_size == 0)
55729fb91463SBjoern A. Zeeb 		params.buf_size = IEEE80211_MAX_AMPDU_BUF_HT;
55739fb91463SBjoern A. Zeeb 	else
55749fb91463SBjoern A. Zeeb 		params.buf_size = min(params.buf_size, IEEE80211_MAX_AMPDU_BUF_HT);
5575310743c4SBjoern A. Zeeb 	if (hw->max_rx_aggregation_subframes > 0 &&
5576310743c4SBjoern A. Zeeb 	    params.buf_size > hw->max_rx_aggregation_subframes)
55779fb91463SBjoern A. Zeeb 		params.buf_size = hw->max_rx_aggregation_subframes;
55789fb91463SBjoern A. Zeeb 	params.timeout = le16toh(batimeout);
55799fb91463SBjoern A. Zeeb 	params.ssn = _IEEE80211_MASKSHIFT(le16toh(baseqctl), IEEE80211_BASEQ_START);
55809fb91463SBjoern A. Zeeb 	params.tid = _IEEE80211_MASKSHIFT(le16toh(baparamset), IEEE80211_BAPS_TID);
5581310743c4SBjoern A. Zeeb 
5582310743c4SBjoern A. Zeeb 	/* Based on net80211::ampdu_rx_start(). */
5583310743c4SBjoern A. Zeeb 	if ((vap->iv_htcaps & IEEE80211_HTC_RX_AMSDU_AMPDU) &&
5584310743c4SBjoern A. Zeeb 	    (_IEEE80211_MASKSHIFT(baparamset, IEEE80211_BAPS_AMSDU)))
5585310743c4SBjoern A. Zeeb 		params.amsdu = true;
5586310743c4SBjoern A. Zeeb 	else
55879fb91463SBjoern A. Zeeb 		params.amsdu = false;
55889fb91463SBjoern A. Zeeb 
5589cd0fcf9fSBjoern A. Zeeb 	wiphy_lock(hw->wiphy);
55909fb91463SBjoern A. Zeeb 	error = lkpi_80211_mo_ampdu_action(hw, vif, &params);
5591cd0fcf9fSBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
55929fb91463SBjoern A. Zeeb 	if (error != 0) {
55939fb91463SBjoern A. Zeeb 		ic_printf(ic, "%s: mo_ampdu_action returned %d. ni %p rap %p\n",
55949fb91463SBjoern A. Zeeb 		    __func__, error, ni, rap);
55959fb91463SBjoern A. Zeeb 		return (error);
55969fb91463SBjoern A. Zeeb 	}
5597310743c4SBjoern A. Zeeb 
5598310743c4SBjoern A. Zeeb 	if (!ieee80211_hw_check(hw, SUPPORTS_REORDERING_BUFFER)) {
5599310743c4SBjoern A. Zeeb 		IMPROVE("%s: TODO: SUPPORTS_REORDERING_BUFFER not set; check net80211\n", __func__);
5600310743c4SBjoern A. Zeeb 	}
5601310743c4SBjoern A. Zeeb 
56029fb91463SBjoern A. Zeeb 	IMPROVE_HT("net80211 is missing the error check on return and assumes success");
56039fb91463SBjoern A. Zeeb 
56049fb91463SBjoern A. Zeeb 	error = lhw->ic_ampdu_rx_start(ni, rap, baparamset, batimeout, baseqctl);
56059fb91463SBjoern A. Zeeb 	return (error);
56069fb91463SBjoern A. Zeeb }
56079fb91463SBjoern A. Zeeb 
56089fb91463SBjoern A. Zeeb static void
56099fb91463SBjoern A. Zeeb lkpi_ic_ampdu_rx_stop(struct ieee80211_node *ni, struct ieee80211_rx_ampdu *rap)
56109fb91463SBjoern A. Zeeb {
56119fb91463SBjoern A. Zeeb 	struct ieee80211com *ic;
56129fb91463SBjoern A. Zeeb 	struct lkpi_hw *lhw;
56139fb91463SBjoern A. Zeeb 	struct ieee80211_hw *hw;
56149fb91463SBjoern A. Zeeb 	struct ieee80211vap *vap;
56159fb91463SBjoern A. Zeeb 	struct lkpi_vif *lvif;
56169fb91463SBjoern A. Zeeb 	struct ieee80211_vif *vif;
56179fb91463SBjoern A. Zeeb 	struct lkpi_sta *lsta;
56189fb91463SBjoern A. Zeeb 	struct ieee80211_sta *sta;
5619310743c4SBjoern A. Zeeb 	struct ieee80211_ampdu_params params = { };
56209fb91463SBjoern A. Zeeb 	int error;
56219fb91463SBjoern A. Zeeb 	uint8_t tid;
562265c573e4SBjoern A. Zeeb 	bool ic_locked;
56239fb91463SBjoern A. Zeeb 
56249fb91463SBjoern A. Zeeb 	ic = ni->ni_ic;
56259fb91463SBjoern A. Zeeb 	lhw = ic->ic_softc;
56269fb91463SBjoern A. Zeeb 
56279fb91463SBjoern A. Zeeb 	/*
56289fb91463SBjoern A. Zeeb 	 * We should not (cannot) call into mac80211 ops with AMPDU_RX_STOP if
56299fb91463SBjoern A. Zeeb 	 * we did not START.  Some drivers pass it down to firmware which will
56309fb91463SBjoern A. Zeeb 	 * simply barf and net80211 calls ieee80211_ht_node_cleanup() from
56319fb91463SBjoern A. Zeeb 	 * ieee80211_ht_node_init() amongst others which will iterate over all
56329fb91463SBjoern A. Zeeb 	 * tid and call ic_ampdu_rx_stop() unconditionally.
56339fb91463SBjoern A. Zeeb 	 * XXX net80211 should probably be more "gentle" in these cases and
56349fb91463SBjoern A. Zeeb 	 * track some state itself.
56359fb91463SBjoern A. Zeeb 	 */
56369fb91463SBjoern A. Zeeb 	if ((rap->rxa_flags & IEEE80211_AGGR_RUNNING) == 0)
56379fb91463SBjoern A. Zeeb 		goto net80211_only;
56389fb91463SBjoern A. Zeeb 
56399fb91463SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
56409fb91463SBjoern A. Zeeb 	vap = ni->ni_vap;
56419fb91463SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
56429fb91463SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
56439fb91463SBjoern A. Zeeb 	lsta = ni->ni_drv_data;
56449fb91463SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
56459fb91463SBjoern A. Zeeb 
56469fb91463SBjoern A. Zeeb 	IMPROVE_HT("This really should be passed from ht_recv_action_ba_delba.");
56479fb91463SBjoern A. Zeeb 	for (tid = 0; tid < WME_NUM_TID; tid++) {
56489fb91463SBjoern A. Zeeb 		if (&ni->ni_rx_ampdu[tid] == rap)
56499fb91463SBjoern A. Zeeb 			break;
56509fb91463SBjoern A. Zeeb 	}
56519fb91463SBjoern A. Zeeb 
56529fb91463SBjoern A. Zeeb 	params.sta = sta;
56539fb91463SBjoern A. Zeeb 	params.action = IEEE80211_AMPDU_RX_STOP;
56549fb91463SBjoern A. Zeeb 	params.buf_size = 0;
56559fb91463SBjoern A. Zeeb 	params.timeout = 0;
56569fb91463SBjoern A. Zeeb 	params.ssn = 0;
56579fb91463SBjoern A. Zeeb 	params.tid = tid;
56589fb91463SBjoern A. Zeeb 	params.amsdu = false;
56599fb91463SBjoern A. Zeeb 
566065c573e4SBjoern A. Zeeb 	ic_locked = IEEE80211_IS_LOCKED(ic);
566165c573e4SBjoern A. Zeeb 	if (ic_locked)
566265c573e4SBjoern A. Zeeb 		IEEE80211_UNLOCK(ic);
5663cd0fcf9fSBjoern A. Zeeb 	wiphy_lock(hw->wiphy);
56649fb91463SBjoern A. Zeeb 	error = lkpi_80211_mo_ampdu_action(hw, vif, &params);
5665cd0fcf9fSBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
566665c573e4SBjoern A. Zeeb 	if (ic_locked)
566765c573e4SBjoern A. Zeeb 		IEEE80211_LOCK(ic);
56689fb91463SBjoern A. Zeeb 	if (error != 0)
56699fb91463SBjoern A. Zeeb 		ic_printf(ic, "%s: mo_ampdu_action returned %d. ni %p rap %p\n",
56709fb91463SBjoern A. Zeeb 		    __func__, error, ni, rap);
56719fb91463SBjoern A. Zeeb 
56729fb91463SBjoern A. Zeeb net80211_only:
56739fb91463SBjoern A. Zeeb 	lhw->ic_ampdu_rx_stop(ni, rap);
56749fb91463SBjoern A. Zeeb }
56759fb91463SBjoern A. Zeeb #endif
56769fb91463SBjoern A. Zeeb 
56779fb91463SBjoern A. Zeeb static void
56789fb91463SBjoern A. Zeeb lkpi_ic_getradiocaps_ht(struct ieee80211com *ic, struct ieee80211_hw *hw,
56799fb91463SBjoern A. Zeeb     uint8_t *bands, int *chan_flags, enum nl80211_band band)
56809fb91463SBjoern A. Zeeb {
56819fb91463SBjoern A. Zeeb #ifdef LKPI_80211_HT
56829fb91463SBjoern A. Zeeb 	struct ieee80211_sta_ht_cap *ht_cap;
56839fb91463SBjoern A. Zeeb 
56849fb91463SBjoern A. Zeeb 	ht_cap = &hw->wiphy->bands[band]->ht_cap;
56859fb91463SBjoern A. Zeeb 	if (!ht_cap->ht_supported)
56869fb91463SBjoern A. Zeeb 		return;
56879fb91463SBjoern A. Zeeb 
56889fb91463SBjoern A. Zeeb 	switch (band) {
56899fb91463SBjoern A. Zeeb 	case NL80211_BAND_2GHZ:
56909fb91463SBjoern A. Zeeb 		setbit(bands, IEEE80211_MODE_11NG);
56919fb91463SBjoern A. Zeeb 		break;
56929fb91463SBjoern A. Zeeb 	case NL80211_BAND_5GHZ:
56939fb91463SBjoern A. Zeeb 		setbit(bands, IEEE80211_MODE_11NA);
56949fb91463SBjoern A. Zeeb 		break;
56959fb91463SBjoern A. Zeeb 	default:
56969fb91463SBjoern A. Zeeb 		IMPROVE("Unsupported band %d", band);
56979fb91463SBjoern A. Zeeb 		return;
56989fb91463SBjoern A. Zeeb 	}
56999fb91463SBjoern A. Zeeb 
57009fb91463SBjoern A. Zeeb 	ic->ic_htcaps = IEEE80211_HTC_HT;	/* HT operation */
57019fb91463SBjoern A. Zeeb 
57029fb91463SBjoern A. Zeeb 	/*
57039fb91463SBjoern A. Zeeb 	 * Rather than manually checking each flag and
57049fb91463SBjoern A. Zeeb 	 * translating IEEE80211_HT_CAP_ to IEEE80211_HTCAP_,
57059fb91463SBjoern A. Zeeb 	 * simply copy the 16bits.
57069fb91463SBjoern A. Zeeb 	 */
57079fb91463SBjoern A. Zeeb 	ic->ic_htcaps |= ht_cap->cap;
57089fb91463SBjoern A. Zeeb 
57099fb91463SBjoern A. Zeeb 	/* Then deal with the other flags. */
57109fb91463SBjoern A. Zeeb 	if (ieee80211_hw_check(hw, AMPDU_AGGREGATION))
57119fb91463SBjoern A. Zeeb 		ic->ic_htcaps |= IEEE80211_HTC_AMPDU;
57129fb91463SBjoern A. Zeeb #ifdef __notyet__
57139fb91463SBjoern A. Zeeb 	if (ieee80211_hw_check(hw, TX_AMSDU))
57149fb91463SBjoern A. Zeeb 		ic->ic_htcaps |= IEEE80211_HTC_AMSDU;
57159fb91463SBjoern A. Zeeb 	if (ieee80211_hw_check(hw, SUPPORTS_AMSDU_IN_AMPDU))
57169fb91463SBjoern A. Zeeb 		ic->ic_htcaps |= (IEEE80211_HTC_RX_AMSDU_AMPDU |
57179fb91463SBjoern A. Zeeb 		    IEEE80211_HTC_TX_AMSDU_AMPDU);
57189fb91463SBjoern A. Zeeb #endif
57199fb91463SBjoern A. Zeeb 
57209fb91463SBjoern A. Zeeb 	IMPROVE("PS, ampdu_*, ht_cap.mcs.tx_params, ...");
57219fb91463SBjoern A. Zeeb 	ic->ic_htcaps |= IEEE80211_HTCAP_SMPS_OFF;
57229fb91463SBjoern A. Zeeb 
57239fb91463SBjoern A. Zeeb 	/* Only add HT40 channels if supported. */
57249fb91463SBjoern A. Zeeb 	if ((ic->ic_htcaps & IEEE80211_HTCAP_CHWIDTH40) != 0 &&
57259fb91463SBjoern A. Zeeb 	    chan_flags != NULL)
57269fb91463SBjoern A. Zeeb 		*chan_flags |= NET80211_CBW_FLAG_HT40;
57279fb91463SBjoern A. Zeeb #endif
57289fb91463SBjoern A. Zeeb }
57299fb91463SBjoern A. Zeeb 
57306b4cac81SBjoern A. Zeeb static void
57316b4cac81SBjoern A. Zeeb lkpi_ic_getradiocaps(struct ieee80211com *ic, int maxchan,
57326b4cac81SBjoern A. Zeeb     int *n, struct ieee80211_channel *c)
57336b4cac81SBjoern A. Zeeb {
57346b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
57356b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
57366b4cac81SBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel *channels;
57376b4cac81SBjoern A. Zeeb 	uint8_t bands[IEEE80211_MODE_BYTES];
57386b4cac81SBjoern A. Zeeb 	int chan_flags, error, i, nchans;
57396b4cac81SBjoern A. Zeeb 
57406b4cac81SBjoern A. Zeeb 	/* Channels */
57416b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
57426b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
57436b4cac81SBjoern A. Zeeb 
57446b4cac81SBjoern A. Zeeb 	/* NL80211_BAND_2GHZ */
57456b4cac81SBjoern A. Zeeb 	nchans = 0;
57466b4cac81SBjoern A. Zeeb 	if (hw->wiphy->bands[NL80211_BAND_2GHZ] != NULL)
57476b4cac81SBjoern A. Zeeb 		nchans = hw->wiphy->bands[NL80211_BAND_2GHZ]->n_channels;
57486b4cac81SBjoern A. Zeeb 	if (nchans > 0) {
57496b4cac81SBjoern A. Zeeb 		memset(bands, 0, sizeof(bands));
57506b4cac81SBjoern A. Zeeb 		chan_flags = 0;
57516b4cac81SBjoern A. Zeeb 		setbit(bands, IEEE80211_MODE_11B);
57526b4cac81SBjoern A. Zeeb 		/* XXX-BZ unclear how to check for 11g. */
57539fb91463SBjoern A. Zeeb 
57549fb91463SBjoern A. Zeeb 		IMPROVE("the bitrates may have flags?");
57556b4cac81SBjoern A. Zeeb 		setbit(bands, IEEE80211_MODE_11G);
57569fb91463SBjoern A. Zeeb 
57579fb91463SBjoern A. Zeeb 		lkpi_ic_getradiocaps_ht(ic, hw, bands, &chan_flags,
57589fb91463SBjoern A. Zeeb 		    NL80211_BAND_2GHZ);
57596b4cac81SBjoern A. Zeeb 
57606b4cac81SBjoern A. Zeeb 		channels = hw->wiphy->bands[NL80211_BAND_2GHZ]->channels;
5761cee56e77SBjoern A. Zeeb 		for (i = 0; i < nchans && *n < maxchan; i++) {
57626b4cac81SBjoern A. Zeeb 			uint32_t nflags = 0;
57636b4cac81SBjoern A. Zeeb 			int cflags = chan_flags;
57646b4cac81SBjoern A. Zeeb 
57656b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_DISABLED) {
57663f0083c4SBjoern A. Zeeb 				ic_printf(ic, "%s: Skipping disabled chan "
57673f0083c4SBjoern A. Zeeb 				    "[%u/%u/%#x]\n", __func__,
57686b4cac81SBjoern A. Zeeb 				    channels[i].hw_value,
57696b4cac81SBjoern A. Zeeb 				    channels[i].center_freq, channels[i].flags);
57706b4cac81SBjoern A. Zeeb 				continue;
57716b4cac81SBjoern A. Zeeb 			}
57726b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_NO_IR)
57736b4cac81SBjoern A. Zeeb 				nflags |= (IEEE80211_CHAN_NOADHOC|IEEE80211_CHAN_PASSIVE);
57746b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_RADAR)
57756b4cac81SBjoern A. Zeeb 				nflags |= IEEE80211_CHAN_DFS;
57766b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_NO_160MHZ)
57776b4cac81SBjoern A. Zeeb 				cflags &= ~(NET80211_CBW_FLAG_VHT160|NET80211_CBW_FLAG_VHT80P80);
57786b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_NO_80MHZ)
57796b4cac81SBjoern A. Zeeb 				cflags &= ~NET80211_CBW_FLAG_VHT80;
57806b4cac81SBjoern A. Zeeb 			/* XXX how to map the remaining enum ieee80211_channel_flags? */
57816b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_NO_HT40)
57826b4cac81SBjoern A. Zeeb 				cflags &= ~NET80211_CBW_FLAG_HT40;
57836b4cac81SBjoern A. Zeeb 
57846b4cac81SBjoern A. Zeeb 			error = ieee80211_add_channel_cbw(c, maxchan, n,
57856b4cac81SBjoern A. Zeeb 			    channels[i].hw_value, channels[i].center_freq,
57866b4cac81SBjoern A. Zeeb 			    channels[i].max_power,
57875856761fSBjoern A. Zeeb 			    nflags, bands, cflags);
5788cee56e77SBjoern A. Zeeb 			/* net80211::ENOBUFS: *n >= maxchans */
5789cee56e77SBjoern A. Zeeb 			if (error != 0 && error != ENOBUFS)
57903f0083c4SBjoern A. Zeeb 				ic_printf(ic, "%s: Adding chan %u/%u/%#x/%#x/%#x/%#x "
57913f0083c4SBjoern A. Zeeb 				    "returned error %d\n",
57926b4cac81SBjoern A. Zeeb 				    __func__, channels[i].hw_value,
57936b4cac81SBjoern A. Zeeb 				    channels[i].center_freq, channels[i].flags,
57946b4cac81SBjoern A. Zeeb 				    nflags, chan_flags, cflags, error);
5795cee56e77SBjoern A. Zeeb 			if (error != 0)
57966b4cac81SBjoern A. Zeeb 				break;
57976b4cac81SBjoern A. Zeeb 		}
57986b4cac81SBjoern A. Zeeb 	}
57996b4cac81SBjoern A. Zeeb 
58006b4cac81SBjoern A. Zeeb 	/* NL80211_BAND_5GHZ */
58016b4cac81SBjoern A. Zeeb 	nchans = 0;
58026b4cac81SBjoern A. Zeeb 	if (hw->wiphy->bands[NL80211_BAND_5GHZ] != NULL)
58036b4cac81SBjoern A. Zeeb 		nchans = hw->wiphy->bands[NL80211_BAND_5GHZ]->n_channels;
58046b4cac81SBjoern A. Zeeb 	if (nchans > 0) {
58056b4cac81SBjoern A. Zeeb 		memset(bands, 0, sizeof(bands));
58066b4cac81SBjoern A. Zeeb 		chan_flags = 0;
58076b4cac81SBjoern A. Zeeb 		setbit(bands, IEEE80211_MODE_11A);
58089fb91463SBjoern A. Zeeb 
58099fb91463SBjoern A. Zeeb 		lkpi_ic_getradiocaps_ht(ic, hw, bands, &chan_flags,
58109fb91463SBjoern A. Zeeb 		    NL80211_BAND_5GHZ);
58119fb91463SBjoern A. Zeeb 
58129fb91463SBjoern A. Zeeb #ifdef LKPI_80211_VHT
58136b4cac81SBjoern A. Zeeb 		if (hw->wiphy->bands[NL80211_BAND_5GHZ]->vht_cap.vht_supported) {
58146b4cac81SBjoern A. Zeeb 
58156b4cac81SBjoern A. Zeeb 			ic->ic_flags_ext |= IEEE80211_FEXT_VHT;
5816562adbe1SBjoern A. Zeeb 			ic->ic_vht_cap.vht_cap_info =
58176b4cac81SBjoern A. Zeeb 			    hw->wiphy->bands[NL80211_BAND_5GHZ]->vht_cap.cap;
5818ecb2e5f9SBjoern A. Zeeb 			ic->ic_vht_cap.supp_mcs =
5819ecb2e5f9SBjoern A. Zeeb 			    hw->wiphy->bands[NL80211_BAND_5GHZ]->vht_cap.vht_mcs;
58206b4cac81SBjoern A. Zeeb 
58216b4cac81SBjoern A. Zeeb 			setbit(bands, IEEE80211_MODE_VHT_5GHZ);
58226b4cac81SBjoern A. Zeeb 			chan_flags |= NET80211_CBW_FLAG_VHT80;
58236b4cac81SBjoern A. Zeeb 			if (IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_IS_160MHZ(
5824562adbe1SBjoern A. Zeeb 			    ic->ic_vht_cap.vht_cap_info))
58256b4cac81SBjoern A. Zeeb 				chan_flags |= NET80211_CBW_FLAG_VHT160;
58266b4cac81SBjoern A. Zeeb 			if (IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_IS_160_80P80MHZ(
5827562adbe1SBjoern A. Zeeb 			    ic->ic_vht_cap.vht_cap_info))
58286b4cac81SBjoern A. Zeeb 				chan_flags |= NET80211_CBW_FLAG_VHT80P80;
58296b4cac81SBjoern A. Zeeb 		}
58306b4cac81SBjoern A. Zeeb #endif
58316b4cac81SBjoern A. Zeeb 
58326b4cac81SBjoern A. Zeeb 		channels = hw->wiphy->bands[NL80211_BAND_5GHZ]->channels;
5833cee56e77SBjoern A. Zeeb 		for (i = 0; i < nchans && *n < maxchan; i++) {
58346b4cac81SBjoern A. Zeeb 			uint32_t nflags = 0;
58356b4cac81SBjoern A. Zeeb 			int cflags = chan_flags;
58366b4cac81SBjoern A. Zeeb 
58376b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_DISABLED) {
58383f0083c4SBjoern A. Zeeb 				ic_printf(ic, "%s: Skipping disabled chan "
58393f0083c4SBjoern A. Zeeb 				    "[%u/%u/%#x]\n", __func__,
58406b4cac81SBjoern A. Zeeb 				    channels[i].hw_value,
58416b4cac81SBjoern A. Zeeb 				    channels[i].center_freq, channels[i].flags);
58426b4cac81SBjoern A. Zeeb 				continue;
58436b4cac81SBjoern A. Zeeb 			}
58446b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_NO_IR)
58456b4cac81SBjoern A. Zeeb 				nflags |= (IEEE80211_CHAN_NOADHOC|IEEE80211_CHAN_PASSIVE);
58466b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_RADAR)
58476b4cac81SBjoern A. Zeeb 				nflags |= IEEE80211_CHAN_DFS;
58486b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_NO_160MHZ)
58496b4cac81SBjoern A. Zeeb 				cflags &= ~(NET80211_CBW_FLAG_VHT160|NET80211_CBW_FLAG_VHT80P80);
58506b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_NO_80MHZ)
58516b4cac81SBjoern A. Zeeb 				cflags &= ~NET80211_CBW_FLAG_VHT80;
58526b4cac81SBjoern A. Zeeb 			/* XXX hwo to map the remaining enum ieee80211_channel_flags? */
58536b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_NO_HT40)
58546b4cac81SBjoern A. Zeeb 				cflags &= ~NET80211_CBW_FLAG_HT40;
58556b4cac81SBjoern A. Zeeb 
58566b4cac81SBjoern A. Zeeb 			error = ieee80211_add_channel_cbw(c, maxchan, n,
58576b4cac81SBjoern A. Zeeb 			    channels[i].hw_value, channels[i].center_freq,
58586b4cac81SBjoern A. Zeeb 			    channels[i].max_power,
58595856761fSBjoern A. Zeeb 			    nflags, bands, cflags);
5860cee56e77SBjoern A. Zeeb 			/* net80211::ENOBUFS: *n >= maxchans */
5861cee56e77SBjoern A. Zeeb 			if (error != 0 && error != ENOBUFS)
58623f0083c4SBjoern A. Zeeb 				ic_printf(ic, "%s: Adding chan %u/%u/%#x/%#x/%#x/%#x "
58633f0083c4SBjoern A. Zeeb 				    "returned error %d\n",
58646b4cac81SBjoern A. Zeeb 				    __func__, channels[i].hw_value,
58656b4cac81SBjoern A. Zeeb 				    channels[i].center_freq, channels[i].flags,
58666b4cac81SBjoern A. Zeeb 				    nflags, chan_flags, cflags, error);
5867cee56e77SBjoern A. Zeeb 			if (error != 0)
58686b4cac81SBjoern A. Zeeb 				break;
58696b4cac81SBjoern A. Zeeb 		}
58706b4cac81SBjoern A. Zeeb 	}
58716b4cac81SBjoern A. Zeeb }
58726b4cac81SBjoern A. Zeeb 
58736b4cac81SBjoern A. Zeeb static void *
58746b4cac81SBjoern A. Zeeb lkpi_ieee80211_ifalloc(void)
58756b4cac81SBjoern A. Zeeb {
58766b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
58776b4cac81SBjoern A. Zeeb 
58786b4cac81SBjoern A. Zeeb 	ic = malloc(sizeof(*ic), M_LKPI80211, M_WAITOK | M_ZERO);
58796b4cac81SBjoern A. Zeeb 
58806b4cac81SBjoern A. Zeeb 	/* Setting these happens later when we have device information. */
58816b4cac81SBjoern A. Zeeb 	ic->ic_softc = NULL;
58826b4cac81SBjoern A. Zeeb 	ic->ic_name = "linuxkpi";
58836b4cac81SBjoern A. Zeeb 
58846b4cac81SBjoern A. Zeeb 	return (ic);
58856b4cac81SBjoern A. Zeeb }
58866b4cac81SBjoern A. Zeeb 
58876b4cac81SBjoern A. Zeeb struct ieee80211_hw *
58886b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_alloc_hw(size_t priv_len, const struct ieee80211_ops *ops)
58896b4cac81SBjoern A. Zeeb {
58906b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
58916b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
58926b4cac81SBjoern A. Zeeb 	struct wiphy *wiphy;
5893a5ae63edSBjoern A. Zeeb 	int ac;
58946b4cac81SBjoern A. Zeeb 
58956b4cac81SBjoern A. Zeeb 	/* Get us and the driver data also allocated. */
58966b4cac81SBjoern A. Zeeb 	wiphy = wiphy_new(&linuxkpi_mac80211cfgops, sizeof(*lhw) + priv_len);
58976b4cac81SBjoern A. Zeeb 	if (wiphy == NULL)
58986b4cac81SBjoern A. Zeeb 		return (NULL);
58996b4cac81SBjoern A. Zeeb 
59006b4cac81SBjoern A. Zeeb 	lhw = wiphy_priv(wiphy);
59016b4cac81SBjoern A. Zeeb 	lhw->ops = ops;
5902652e22d3SBjoern A. Zeeb 
59038ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_LOCK_INIT(lhw);
5904eac3646fSBjoern A. Zeeb 	LKPI_80211_LHW_TXQ_LOCK_INIT(lhw);
59058891c455SBjoern A. Zeeb 	sx_init_flags(&lhw->lvif_sx, "lhw-lvif", SX_RECURSE | SX_DUPOK);
59066b4cac81SBjoern A. Zeeb 	TAILQ_INIT(&lhw->lvif_head);
5907a5ae63edSBjoern A. Zeeb 	for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
5908a5ae63edSBjoern A. Zeeb 		lhw->txq_generation[ac] = 1;
5909a5ae63edSBjoern A. Zeeb 		TAILQ_INIT(&lhw->scheduled_txqs[ac]);
5910a5ae63edSBjoern A. Zeeb 	}
59116b4cac81SBjoern A. Zeeb 
5912a8a47a41SBjoern A. Zeeb 	/* Chanctx_conf */
5913a8a47a41SBjoern A. Zeeb 	INIT_LIST_HEAD(&lhw->lchanctx_list);
5914a8a47a41SBjoern A. Zeeb 
5915759a996dSBjoern A. Zeeb 	/* Deferred RX path. */
5916759a996dSBjoern A. Zeeb 	LKPI_80211_LHW_RXQ_LOCK_INIT(lhw);
5917759a996dSBjoern A. Zeeb 	TASK_INIT(&lhw->rxq_task, 0, lkpi_80211_lhw_rxq_task, lhw);
5918832b8e98SBjoern A. Zeeb 	mbufq_init(&lhw->rxq, 32 * NAPI_POLL_WEIGHT);
5919759a996dSBjoern A. Zeeb 	lhw->rxq_stopped = false;
5920759a996dSBjoern A. Zeeb 
59216b4cac81SBjoern A. Zeeb 	/*
59226b4cac81SBjoern A. Zeeb 	 * XXX-BZ TODO make sure there is a "_null" function to all ops
59236b4cac81SBjoern A. Zeeb 	 * not initialized.
59246b4cac81SBjoern A. Zeeb 	 */
59256b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
59266b4cac81SBjoern A. Zeeb 	hw->wiphy = wiphy;
5927086be6a8SBjoern A. Zeeb 	hw->conf.flags |= IEEE80211_CONF_IDLE;
59286b4cac81SBjoern A. Zeeb 	hw->priv = (void *)(lhw + 1);
59296b4cac81SBjoern A. Zeeb 
59306b4cac81SBjoern A. Zeeb 	/* BSD Specific. */
59316b4cac81SBjoern A. Zeeb 	lhw->ic = lkpi_ieee80211_ifalloc();
59326b4cac81SBjoern A. Zeeb 
59336b4cac81SBjoern A. Zeeb 	IMPROVE();
59346b4cac81SBjoern A. Zeeb 
59356b4cac81SBjoern A. Zeeb 	return (hw);
59366b4cac81SBjoern A. Zeeb }
59376b4cac81SBjoern A. Zeeb 
59386b4cac81SBjoern A. Zeeb void
59396b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_iffree(struct ieee80211_hw *hw)
59406b4cac81SBjoern A. Zeeb {
59416b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
5942759a996dSBjoern A. Zeeb 	struct mbuf *m;
59436b4cac81SBjoern A. Zeeb 
59446b4cac81SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
59456b4cac81SBjoern A. Zeeb 	free(lhw->ic, M_LKPI80211);
59466b4cac81SBjoern A. Zeeb 	lhw->ic = NULL;
59476b4cac81SBjoern A. Zeeb 
5948759a996dSBjoern A. Zeeb 	/*
5949759a996dSBjoern A. Zeeb 	 * Drain the deferred RX path.
5950759a996dSBjoern A. Zeeb 	 */
5951759a996dSBjoern A. Zeeb 	LKPI_80211_LHW_RXQ_LOCK(lhw);
5952759a996dSBjoern A. Zeeb 	lhw->rxq_stopped = true;
5953759a996dSBjoern A. Zeeb 	LKPI_80211_LHW_RXQ_UNLOCK(lhw);
5954759a996dSBjoern A. Zeeb 
5955759a996dSBjoern A. Zeeb 	/* Drain taskq, won't be restarted due to rxq_stopped being set. */
5956759a996dSBjoern A. Zeeb 	while (taskqueue_cancel(taskqueue_thread, &lhw->rxq_task, NULL) != 0)
5957759a996dSBjoern A. Zeeb 		taskqueue_drain(taskqueue_thread, &lhw->rxq_task);
5958759a996dSBjoern A. Zeeb 
5959759a996dSBjoern A. Zeeb 	/* Flush mbufq (make sure to release ni refs!). */
5960759a996dSBjoern A. Zeeb 	m = mbufq_dequeue(&lhw->rxq);
5961759a996dSBjoern A. Zeeb 	while (m != NULL) {
5962dbae3dcfSBjoern A. Zeeb #ifdef LKPI_80211_USE_MTAG
5963759a996dSBjoern A. Zeeb 		struct m_tag *mtag;
5964759a996dSBjoern A. Zeeb 
5965759a996dSBjoern A. Zeeb 		mtag = m_tag_locate(m, MTAG_ABI_LKPI80211, LKPI80211_TAG_RXNI, NULL);
5966759a996dSBjoern A. Zeeb 		if (mtag != NULL) {
5967759a996dSBjoern A. Zeeb 			struct lkpi_80211_tag_rxni *rxni;
5968759a996dSBjoern A. Zeeb 
5969759a996dSBjoern A. Zeeb 			rxni = (struct lkpi_80211_tag_rxni *)(mtag + 1);
5970759a996dSBjoern A. Zeeb 			ieee80211_free_node(rxni->ni);
5971759a996dSBjoern A. Zeeb 		}
5972dbae3dcfSBjoern A. Zeeb #else
5973dbae3dcfSBjoern A. Zeeb 		if (m->m_pkthdr.PH_loc.ptr != NULL) {
5974dbae3dcfSBjoern A. Zeeb 			struct ieee80211_node *ni;
5975dbae3dcfSBjoern A. Zeeb 
5976dbae3dcfSBjoern A. Zeeb 			ni = m->m_pkthdr.PH_loc.ptr;
5977dbae3dcfSBjoern A. Zeeb 			ieee80211_free_node(ni);
5978dbae3dcfSBjoern A. Zeeb 		}
5979dbae3dcfSBjoern A. Zeeb #endif
5980759a996dSBjoern A. Zeeb 		m_freem(m);
5981759a996dSBjoern A. Zeeb 		m = mbufq_dequeue(&lhw->rxq);
5982759a996dSBjoern A. Zeeb 	}
5983759a996dSBjoern A. Zeeb 	KASSERT(mbufq_empty(&lhw->rxq), ("%s: lhw %p has rxq len %d != 0\n",
5984759a996dSBjoern A. Zeeb 	    __func__, lhw, mbufq_len(&lhw->rxq)));
5985759a996dSBjoern A. Zeeb 	LKPI_80211_LHW_RXQ_LOCK_DESTROY(lhw);
5986759a996dSBjoern A. Zeeb 
5987a8a47a41SBjoern A. Zeeb 	/* Chanctx_conf. */
5988a8a47a41SBjoern A. Zeeb 	if (!list_empty_careful(&lhw->lchanctx_list)) {
5989a8a47a41SBjoern A. Zeeb 		struct lkpi_chanctx *lchanctx, *next;
5990a8a47a41SBjoern A. Zeeb 		struct ieee80211_chanctx_conf *chanctx_conf;
5991a8a47a41SBjoern A. Zeeb 
5992a8a47a41SBjoern A. Zeeb 		list_for_each_entry_safe(lchanctx, next, &lhw->lchanctx_list, entry) {
5993a8a47a41SBjoern A. Zeeb 			if (lchanctx->added_to_drv) {
5994a8a47a41SBjoern A. Zeeb 				/* In reality we should panic? */
5995a8a47a41SBjoern A. Zeeb 				chanctx_conf = &lchanctx->chanctx_conf;
5996a8a47a41SBjoern A. Zeeb 				lkpi_80211_mo_remove_chanctx(hw, chanctx_conf);
5997a8a47a41SBjoern A. Zeeb 			}
5998a8a47a41SBjoern A. Zeeb 			list_del(&lchanctx->entry);
5999a8a47a41SBjoern A. Zeeb 			free(lchanctx, M_LKPI80211);
6000a8a47a41SBjoern A. Zeeb 		}
6001a8a47a41SBjoern A. Zeeb 	}
6002a8a47a41SBjoern A. Zeeb 
60036b4cac81SBjoern A. Zeeb 	/* Cleanup more of lhw here or in wiphy_free()? */
6004eac3646fSBjoern A. Zeeb 	LKPI_80211_LHW_TXQ_LOCK_DESTROY(lhw);
60058ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_LOCK_DESTROY(lhw);
6006eac3646fSBjoern A. Zeeb 	sx_destroy(&lhw->lvif_sx);
60076b4cac81SBjoern A. Zeeb 	IMPROVE();
60086b4cac81SBjoern A. Zeeb }
60096b4cac81SBjoern A. Zeeb 
60106b4cac81SBjoern A. Zeeb void
60116b4cac81SBjoern A. Zeeb linuxkpi_set_ieee80211_dev(struct ieee80211_hw *hw, char *name)
60126b4cac81SBjoern A. Zeeb {
60136b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
60146b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
60156b4cac81SBjoern A. Zeeb 
60166b4cac81SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
60176b4cac81SBjoern A. Zeeb 	ic = lhw->ic;
60186b4cac81SBjoern A. Zeeb 
60196b4cac81SBjoern A. Zeeb 	/* Now set a proper name before ieee80211_ifattach(). */
60206b4cac81SBjoern A. Zeeb 	ic->ic_softc = lhw;
60216b4cac81SBjoern A. Zeeb 	ic->ic_name = name;
60226b4cac81SBjoern A. Zeeb 
60236b4cac81SBjoern A. Zeeb 	/* XXX-BZ do we also need to set wiphy name? */
60246b4cac81SBjoern A. Zeeb }
60256b4cac81SBjoern A. Zeeb 
60266b4cac81SBjoern A. Zeeb struct ieee80211_hw *
60276b4cac81SBjoern A. Zeeb linuxkpi_wiphy_to_ieee80211_hw(struct wiphy *wiphy)
60286b4cac81SBjoern A. Zeeb {
60296b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
60306b4cac81SBjoern A. Zeeb 
60316b4cac81SBjoern A. Zeeb 	lhw = wiphy_priv(wiphy);
60326b4cac81SBjoern A. Zeeb 	return (LHW_TO_HW(lhw));
60336b4cac81SBjoern A. Zeeb }
60346b4cac81SBjoern A. Zeeb 
60356b4cac81SBjoern A. Zeeb static void
60366b4cac81SBjoern A. Zeeb lkpi_radiotap_attach(struct lkpi_hw *lhw)
60376b4cac81SBjoern A. Zeeb {
60386b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
60396b4cac81SBjoern A. Zeeb 
60406b4cac81SBjoern A. Zeeb 	ic = lhw->ic;
60416b4cac81SBjoern A. Zeeb 	ieee80211_radiotap_attach(ic,
60426b4cac81SBjoern A. Zeeb 	    &lhw->rtap_tx.wt_ihdr, sizeof(lhw->rtap_tx),
60436b4cac81SBjoern A. Zeeb 	    LKPI_RTAP_TX_FLAGS_PRESENT,
60446b4cac81SBjoern A. Zeeb 	    &lhw->rtap_rx.wr_ihdr, sizeof(lhw->rtap_rx),
60456b4cac81SBjoern A. Zeeb 	    LKPI_RTAP_RX_FLAGS_PRESENT);
60466b4cac81SBjoern A. Zeeb }
60476b4cac81SBjoern A. Zeeb 
60482e183d99SBjoern A. Zeeb int
60496b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_ifattach(struct ieee80211_hw *hw)
60506b4cac81SBjoern A. Zeeb {
60516b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
60526b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
6053c5b96b3eSBjoern A. Zeeb 	int band, i;
60546b4cac81SBjoern A. Zeeb 
60556b4cac81SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
60566b4cac81SBjoern A. Zeeb 	ic = lhw->ic;
60576b4cac81SBjoern A. Zeeb 
6058652e22d3SBjoern A. Zeeb 	/* We do it this late as wiphy->dev should be set for the name. */
6059652e22d3SBjoern A. Zeeb 	lhw->workq = alloc_ordered_workqueue(wiphy_name(hw->wiphy), 0);
6060652e22d3SBjoern A. Zeeb 	if (lhw->workq == NULL)
6061652e22d3SBjoern A. Zeeb 		return (-EAGAIN);
6062652e22d3SBjoern A. Zeeb 
60636b4cac81SBjoern A. Zeeb 	/* XXX-BZ figure this out how they count his... */
60646b4cac81SBjoern A. Zeeb 	if (!is_zero_ether_addr(hw->wiphy->perm_addr)) {
60656b4cac81SBjoern A. Zeeb 		IEEE80211_ADDR_COPY(ic->ic_macaddr,
60666b4cac81SBjoern A. Zeeb 		    hw->wiphy->perm_addr);
60676b4cac81SBjoern A. Zeeb 	} else if (hw->wiphy->n_addresses > 0) {
60686b4cac81SBjoern A. Zeeb 		/* We take the first one. */
60696b4cac81SBjoern A. Zeeb 		IEEE80211_ADDR_COPY(ic->ic_macaddr,
60706b4cac81SBjoern A. Zeeb 		    hw->wiphy->addresses[0].addr);
60716b4cac81SBjoern A. Zeeb 	} else {
60726b4cac81SBjoern A. Zeeb 		ic_printf(ic, "%s: warning, no hardware address!\n", __func__);
60736b4cac81SBjoern A. Zeeb 	}
60746b4cac81SBjoern A. Zeeb 
60753d09d310SBjoern A. Zeeb #ifdef __not_yet__
60763d09d310SBjoern A. Zeeb 	/* See comment in lkpi_80211_txq_tx_one(). */
60776b4cac81SBjoern A. Zeeb 	ic->ic_headroom = hw->extra_tx_headroom;
60783d09d310SBjoern A. Zeeb #endif
60796b4cac81SBjoern A. Zeeb 
60806b4cac81SBjoern A. Zeeb 	ic->ic_phytype = IEEE80211_T_OFDM;	/* not only, but not used */
60816b4cac81SBjoern A. Zeeb 	ic->ic_opmode = IEEE80211_M_STA;
60826b4cac81SBjoern A. Zeeb 
60836b4cac81SBjoern A. Zeeb 	/* Set device capabilities. */
60846b4cac81SBjoern A. Zeeb 	/* XXX-BZ we need to get these from linux80211/drivers and convert. */
60856b4cac81SBjoern A. Zeeb 	ic->ic_caps =
60866b4cac81SBjoern A. Zeeb 	    IEEE80211_C_STA |
60876b4cac81SBjoern A. Zeeb 	    IEEE80211_C_MONITOR |
60886b4cac81SBjoern A. Zeeb 	    IEEE80211_C_WPA |		/* WPA/RSN */
60894a67f1dfSBjoern A. Zeeb #ifdef LKPI_80211_WME
60906b4cac81SBjoern A. Zeeb 	    IEEE80211_C_WME |
60914a67f1dfSBjoern A. Zeeb #endif
60926b4cac81SBjoern A. Zeeb #if 0
60936b4cac81SBjoern A. Zeeb 	    IEEE80211_C_PMGT |
60946b4cac81SBjoern A. Zeeb #endif
60956b4cac81SBjoern A. Zeeb 	    IEEE80211_C_SHSLOT |	/* short slot time supported */
60966b4cac81SBjoern A. Zeeb 	    IEEE80211_C_SHPREAMBLE	/* short preamble supported */
60976b4cac81SBjoern A. Zeeb 	    ;
60986b4cac81SBjoern A. Zeeb #if 0
60996b4cac81SBjoern A. Zeeb 	/* Scanning is a different kind of beast to re-work. */
61006b4cac81SBjoern A. Zeeb 	ic->ic_caps |= IEEE80211_C_BGSCAN;
61016b4cac81SBjoern A. Zeeb #endif
6102cc4e78d5SBjoern A. Zeeb 	if (lhw->ops->hw_scan) {
6103cc4e78d5SBjoern A. Zeeb 		/*
6104cc4e78d5SBjoern A. Zeeb 		 * Advertise full-offload scanning.
6105cc4e78d5SBjoern A. Zeeb 		 *
6106cc4e78d5SBjoern A. Zeeb 		 * Not limiting to SINGLE_SCAN_ON_ALL_BANDS here as otherwise
6107cc4e78d5SBjoern A. Zeeb 		 * we essentially disable hw_scan for all drivers not setting
6108cc4e78d5SBjoern A. Zeeb 		 * the flag.
6109cc4e78d5SBjoern A. Zeeb 		 */
61106b4cac81SBjoern A. Zeeb 		ic->ic_flags_ext |= IEEE80211_FEXT_SCAN_OFFLOAD;
6111a486fbbdSBjoern A. Zeeb 		lhw->scan_flags |= LKPI_LHW_SCAN_HW;
61126b4cac81SBjoern A. Zeeb 	}
61136b4cac81SBjoern A. Zeeb 
611463578bf2SBjoern A. Zeeb 	/* Does HW support Fragmentation offload? */
611563578bf2SBjoern A. Zeeb 	if (ieee80211_hw_check(hw, SUPPORTS_TX_FRAG))
611663578bf2SBjoern A. Zeeb 		ic->ic_flags_ext |= IEEE80211_FEXT_FRAG_OFFLOAD;
611763578bf2SBjoern A. Zeeb 
6118527687a9SBjoern A. Zeeb 	/*
6119527687a9SBjoern A. Zeeb 	 * The wiphy variables report bitmasks of avail antennas.
6120527687a9SBjoern A. Zeeb 	 * (*get_antenna) get the current bitmask sets which can be
6121527687a9SBjoern A. Zeeb 	 * altered by (*set_antenna) for some drivers.
6122527687a9SBjoern A. Zeeb 	 * XXX-BZ will the count alone do us much good long-term in net80211?
6123527687a9SBjoern A. Zeeb 	 */
6124527687a9SBjoern A. Zeeb 	if (hw->wiphy->available_antennas_rx ||
6125527687a9SBjoern A. Zeeb 	    hw->wiphy->available_antennas_tx) {
6126527687a9SBjoern A. Zeeb 		uint32_t rxs, txs;
6127527687a9SBjoern A. Zeeb 
6128527687a9SBjoern A. Zeeb 		if (lkpi_80211_mo_get_antenna(hw, &txs, &rxs) == 0) {
6129527687a9SBjoern A. Zeeb 			ic->ic_rxstream = bitcount32(rxs);
6130527687a9SBjoern A. Zeeb 			ic->ic_txstream = bitcount32(txs);
6131527687a9SBjoern A. Zeeb 		}
6132527687a9SBjoern A. Zeeb 	}
6133527687a9SBjoern A. Zeeb 
61346b4cac81SBjoern A. Zeeb 	ic->ic_cryptocaps = 0;
6135b35f6cd0SBjoern A. Zeeb #ifdef LKPI_80211_HW_CRYPTO
613611db70b6SBjoern A. Zeeb 	if (lkpi_hwcrypto && hw->wiphy->n_cipher_suites > 0) {
6137bf8c25f1SBjoern A. Zeeb 		uint32_t hwciphers;
6138bf8c25f1SBjoern A. Zeeb 
6139bf8c25f1SBjoern A. Zeeb 		hwciphers = 0;
614092942717SBjoern A. Zeeb 		for (i = 0; i < hw->wiphy->n_cipher_suites; i++) {
614192942717SBjoern A. Zeeb 			uint32_t cs;
614292942717SBjoern A. Zeeb 
614392942717SBjoern A. Zeeb 			cs = lkpi_l80211_to_net80211_cyphers(
6144bf8c25f1SBjoern A. Zeeb 			    ic, hw->wiphy->cipher_suites[i]);
614592942717SBjoern A. Zeeb 			if (cs == IEEE80211_CRYPTO_TKIP) {
614692942717SBjoern A. Zeeb 				/*
614792942717SBjoern A. Zeeb 				 * We do set this here.  We will only find out
614892942717SBjoern A. Zeeb 				 * when doing a SET_KEY operation depending on
614992942717SBjoern A. Zeeb 				 * what the driver returns.
615092942717SBjoern A. Zeeb 				 * net80211::ieee80211_crypto_newkey()
615192942717SBjoern A. Zeeb 				 * checks this so we will have to do flags
615292942717SBjoern A. Zeeb 				 * surgery later.
615392942717SBjoern A. Zeeb 				 */
615492942717SBjoern A. Zeeb 				cs |= IEEE80211_CRYPTO_TKIPMIC;
615592942717SBjoern A. Zeeb 			}
615692942717SBjoern A. Zeeb 			hwciphers |= cs;
615792942717SBjoern A. Zeeb 		}
6158bf8c25f1SBjoern A. Zeeb 		/*
6159bf8c25f1SBjoern A. Zeeb 		 * (20250415) nothing anywhere in the path checks we actually
6160bf8c25f1SBjoern A. Zeeb 		 * support all these in net80211.
6161bf8c25f1SBjoern A. Zeeb 		 * net80211 supports _256 variants but the ioctl does not.
6162bf8c25f1SBjoern A. Zeeb 		 */
6163bf8c25f1SBjoern A. Zeeb 		IMPROVE("as net80211 grows more support, enable them");
616492942717SBjoern A. Zeeb 		hwciphers &= (IEEE80211_CRYPTO_WEP |
616592942717SBjoern A. Zeeb 		    IEEE80211_CRYPTO_TKIP | IEEE80211_CRYPTO_TKIPMIC |
6166bf8c25f1SBjoern A. Zeeb 		    IEEE80211_CRYPTO_AES_CCM | IEEE80211_CRYPTO_AES_GCM_128);
6167b71d3043SBjoern A. Zeeb 		/*
6168b71d3043SBjoern A. Zeeb 		 * We only support CCMP here, so further filter.
6169b71d3043SBjoern A. Zeeb 		 * Also permit TKIP if turned on.
6170b71d3043SBjoern A. Zeeb 		 */
6171b71d3043SBjoern A. Zeeb 		hwciphers &= (IEEE80211_CRYPTO_AES_CCM |
617229ddd583SBjoern A. Zeeb 		    IEEE80211_CRYPTO_AES_GCM_128 |
6173b71d3043SBjoern A. Zeeb 		    (lkpi_hwcrypto_tkip ? (IEEE80211_CRYPTO_TKIP |
6174b71d3043SBjoern A. Zeeb 		    IEEE80211_CRYPTO_TKIPMIC) : 0));
6175bf8c25f1SBjoern A. Zeeb 		ieee80211_set_hardware_ciphers(ic, hwciphers);
61766b4cac81SBjoern A. Zeeb 	}
61776b4cac81SBjoern A. Zeeb #endif
61786b4cac81SBjoern A. Zeeb 
61796b4cac81SBjoern A. Zeeb 	lkpi_ic_getradiocaps(ic, IEEE80211_CHAN_MAX, &ic->ic_nchans,
61806b4cac81SBjoern A. Zeeb 	    ic->ic_channels);
61816b4cac81SBjoern A. Zeeb 
61826b4cac81SBjoern A. Zeeb 	ieee80211_ifattach(ic);
61836b4cac81SBjoern A. Zeeb 
61846b4cac81SBjoern A. Zeeb 	ic->ic_update_mcast = lkpi_ic_update_mcast;
61856b4cac81SBjoern A. Zeeb 	ic->ic_update_promisc = lkpi_ic_update_promisc;
61866b4cac81SBjoern A. Zeeb 	ic->ic_update_chw = lkpi_ic_update_chw;
61876b4cac81SBjoern A. Zeeb 	ic->ic_parent = lkpi_ic_parent;
61886b4cac81SBjoern A. Zeeb 	ic->ic_scan_start = lkpi_ic_scan_start;
61896b4cac81SBjoern A. Zeeb 	ic->ic_scan_end = lkpi_ic_scan_end;
61906b4cac81SBjoern A. Zeeb 	ic->ic_set_channel = lkpi_ic_set_channel;
61916b4cac81SBjoern A. Zeeb 	ic->ic_transmit = lkpi_ic_transmit;
61926b4cac81SBjoern A. Zeeb 	ic->ic_raw_xmit = lkpi_ic_raw_xmit;
61936b4cac81SBjoern A. Zeeb 	ic->ic_vap_create = lkpi_ic_vap_create;
61946b4cac81SBjoern A. Zeeb 	ic->ic_vap_delete = lkpi_ic_vap_delete;
61956b4cac81SBjoern A. Zeeb 	ic->ic_getradiocaps = lkpi_ic_getradiocaps;
61966b4cac81SBjoern A. Zeeb 	ic->ic_wme.wme_update = lkpi_ic_wme_update;
61976b4cac81SBjoern A. Zeeb 
6198a486fbbdSBjoern A. Zeeb 	lhw->ic_scan_curchan = ic->ic_scan_curchan;
6199a486fbbdSBjoern A. Zeeb 	ic->ic_scan_curchan = lkpi_ic_scan_curchan;
6200a486fbbdSBjoern A. Zeeb 	lhw->ic_scan_mindwell = ic->ic_scan_mindwell;
6201a486fbbdSBjoern A. Zeeb 	ic->ic_scan_mindwell = lkpi_ic_scan_mindwell;
6202a486fbbdSBjoern A. Zeeb 
62036b4cac81SBjoern A. Zeeb 	lhw->ic_node_alloc = ic->ic_node_alloc;
62046b4cac81SBjoern A. Zeeb 	ic->ic_node_alloc = lkpi_ic_node_alloc;
62056b4cac81SBjoern A. Zeeb 	lhw->ic_node_init = ic->ic_node_init;
62066b4cac81SBjoern A. Zeeb 	ic->ic_node_init = lkpi_ic_node_init;
62076b4cac81SBjoern A. Zeeb 	lhw->ic_node_cleanup = ic->ic_node_cleanup;
62086b4cac81SBjoern A. Zeeb 	ic->ic_node_cleanup = lkpi_ic_node_cleanup;
62096b4cac81SBjoern A. Zeeb 	lhw->ic_node_free = ic->ic_node_free;
62106b4cac81SBjoern A. Zeeb 	ic->ic_node_free = lkpi_ic_node_free;
62116b4cac81SBjoern A. Zeeb 
62129fb91463SBjoern A. Zeeb #ifdef LKPI_80211_HT
621386bc7259SBjoern A. Zeeb 	/*
621486bc7259SBjoern A. Zeeb 	 * Only attach if the driver/firmware supports (*ampdu_action)().
621586bc7259SBjoern A. Zeeb 	 * Otherwise it is in the hands of net80211.
621686bc7259SBjoern A. Zeeb 	 */
621786bc7259SBjoern A. Zeeb 	if (lhw->ops->ampdu_action != NULL) {
62189fb91463SBjoern A. Zeeb 		lhw->ic_recv_action = ic->ic_recv_action;
62199fb91463SBjoern A. Zeeb 		ic->ic_recv_action = lkpi_ic_recv_action;
62209fb91463SBjoern A. Zeeb 		lhw->ic_send_action = ic->ic_send_action;
62219fb91463SBjoern A. Zeeb 		ic->ic_send_action = lkpi_ic_send_action;
62229fb91463SBjoern A. Zeeb 
62239fb91463SBjoern A. Zeeb 		lhw->ic_ampdu_enable = ic->ic_ampdu_enable;
62249fb91463SBjoern A. Zeeb 		ic->ic_ampdu_enable = lkpi_ic_ampdu_enable;
62259fb91463SBjoern A. Zeeb 
62269fb91463SBjoern A. Zeeb 		lhw->ic_addba_request = ic->ic_addba_request;
62279fb91463SBjoern A. Zeeb 		ic->ic_addba_request = lkpi_ic_addba_request;
62289fb91463SBjoern A. Zeeb 		lhw->ic_addba_response = ic->ic_addba_response;
62299fb91463SBjoern A. Zeeb 		ic->ic_addba_response = lkpi_ic_addba_response;
62309fb91463SBjoern A. Zeeb 		lhw->ic_addba_stop = ic->ic_addba_stop;
62319fb91463SBjoern A. Zeeb 		ic->ic_addba_stop = lkpi_ic_addba_stop;
62329fb91463SBjoern A. Zeeb 		lhw->ic_addba_response_timeout = ic->ic_addba_response_timeout;
62339fb91463SBjoern A. Zeeb 		ic->ic_addba_response_timeout = lkpi_ic_addba_response_timeout;
62349fb91463SBjoern A. Zeeb 
62359fb91463SBjoern A. Zeeb 		lhw->ic_bar_response = ic->ic_bar_response;
62369fb91463SBjoern A. Zeeb 		ic->ic_bar_response = lkpi_ic_bar_response;
62379fb91463SBjoern A. Zeeb 
62389fb91463SBjoern A. Zeeb 		lhw->ic_ampdu_rx_start = ic->ic_ampdu_rx_start;
62399fb91463SBjoern A. Zeeb 		ic->ic_ampdu_rx_start = lkpi_ic_ampdu_rx_start;
62409fb91463SBjoern A. Zeeb 		lhw->ic_ampdu_rx_stop = ic->ic_ampdu_rx_stop;
62419fb91463SBjoern A. Zeeb 		ic->ic_ampdu_rx_stop = lkpi_ic_ampdu_rx_stop;
624286bc7259SBjoern A. Zeeb 	}
62439fb91463SBjoern A. Zeeb #endif
62449fb91463SBjoern A. Zeeb 
62456b4cac81SBjoern A. Zeeb 	lkpi_radiotap_attach(lhw);
62466b4cac81SBjoern A. Zeeb 
6247c5b96b3eSBjoern A. Zeeb 	/*
6248c5b96b3eSBjoern A. Zeeb 	 * Assign the first possible channel for now;  seems Realtek drivers
6249c5b96b3eSBjoern A. Zeeb 	 * expect one.
6250d9945d78SBjoern A. Zeeb 	 * Also remember the amount of bands we support and the most rates
6251d9945d78SBjoern A. Zeeb 	 * in any band so we can scale [(ext) sup rates] IE(s) accordingly.
6252c5b96b3eSBjoern A. Zeeb 	 */
6253d9945d78SBjoern A. Zeeb 	lhw->supbands = lhw->max_rates = 0;
6254f454a4a1SBjoern A. Zeeb 	for (band = 0; band < NUM_NL80211_BANDS; band++) {
6255c5b96b3eSBjoern A. Zeeb 		struct ieee80211_supported_band *supband;
6256c5b96b3eSBjoern A. Zeeb 		struct linuxkpi_ieee80211_channel *channels;
6257c5b96b3eSBjoern A. Zeeb 
6258c5b96b3eSBjoern A. Zeeb 		supband = hw->wiphy->bands[band];
6259c5b96b3eSBjoern A. Zeeb 		if (supband == NULL || supband->n_channels == 0)
6260c5b96b3eSBjoern A. Zeeb 			continue;
6261c5b96b3eSBjoern A. Zeeb 
6262d9945d78SBjoern A. Zeeb 		lhw->supbands++;
6263d9945d78SBjoern A. Zeeb 		lhw->max_rates = max(lhw->max_rates, supband->n_bitrates);
6264d9945d78SBjoern A. Zeeb 
6265f454a4a1SBjoern A. Zeeb 		/* If we have a channel, we need to keep counting supbands. */
6266f454a4a1SBjoern A. Zeeb 		if (hw->conf.chandef.chan != NULL)
6267f454a4a1SBjoern A. Zeeb 			continue;
6268f454a4a1SBjoern A. Zeeb 
6269c5b96b3eSBjoern A. Zeeb 		channels = supband->channels;
6270c5b96b3eSBjoern A. Zeeb 		for (i = 0; i < supband->n_channels; i++) {
6271c5b96b3eSBjoern A. Zeeb 
6272c5b96b3eSBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_DISABLED)
6273c5b96b3eSBjoern A. Zeeb 				continue;
6274c5b96b3eSBjoern A. Zeeb 
62754a07abdeSBjoern A. Zeeb 			cfg80211_chandef_create(&hw->conf.chandef, &channels[i],
62769fb91463SBjoern A. Zeeb #ifdef LKPI_80211_HT
627711450726SBjoern A. Zeeb 			    (ic->ic_flags_ht & IEEE80211_FHT_HT) ? NL80211_CHAN_HT20 :
62789fb91463SBjoern A. Zeeb #endif
6279c5b96b3eSBjoern A. Zeeb 			    NL80211_CHAN_NO_HT);
6280c5b96b3eSBjoern A. Zeeb 			break;
6281c5b96b3eSBjoern A. Zeeb 		}
6282c5b96b3eSBjoern A. Zeeb 	}
6283c5b96b3eSBjoern A. Zeeb 
6284d9945d78SBjoern A. Zeeb 	IMPROVE("see net80211::ieee80211_chan_init vs. wiphy->bands[].bitrates possibly in lkpi_ic_getradiocaps?");
6285d9945d78SBjoern A. Zeeb 
6286d9945d78SBjoern A. Zeeb 	/* Make sure we do not support more than net80211 is willing to take. */
6287d9945d78SBjoern A. Zeeb 	if (lhw->max_rates > IEEE80211_RATE_MAXSIZE) {
6288d9945d78SBjoern A. Zeeb 		ic_printf(ic, "%s: limiting max_rates %d to %d!\n", __func__,
6289d9945d78SBjoern A. Zeeb 		    lhw->max_rates, IEEE80211_RATE_MAXSIZE);
6290d9945d78SBjoern A. Zeeb 		lhw->max_rates = IEEE80211_RATE_MAXSIZE;
6291d9945d78SBjoern A. Zeeb 	}
6292d9945d78SBjoern A. Zeeb 
6293d9945d78SBjoern A. Zeeb 	/*
6294d9945d78SBjoern A. Zeeb 	 * The maximum supported bitrates on any band + size for
6295d9945d78SBjoern A. Zeeb 	 * DSSS Parameter Set give our per-band IE size.
6296d9945d78SBjoern A. Zeeb 	 * SSID is the responsibility of the driver and goes on the side.
6297d9945d78SBjoern A. Zeeb 	 * The user specified bits coming from the vap go into the
6298d9945d78SBjoern A. Zeeb 	 * "common ies" fields.
6299d9945d78SBjoern A. Zeeb 	 */
6300d9945d78SBjoern A. Zeeb 	lhw->scan_ie_len = 2 + IEEE80211_RATE_SIZE;
6301d9945d78SBjoern A. Zeeb 	if (lhw->max_rates > IEEE80211_RATE_SIZE)
6302d9945d78SBjoern A. Zeeb 		lhw->scan_ie_len += 2 + (lhw->max_rates - IEEE80211_RATE_SIZE);
630378ca45dfSBjoern A. Zeeb 
630478ca45dfSBjoern A. Zeeb 	if (hw->wiphy->features & NL80211_FEATURE_DS_PARAM_SET_IE_IN_PROBES) {
6305d9945d78SBjoern A. Zeeb 		/*
630678ca45dfSBjoern A. Zeeb 		 * net80211 does not seem to support the DSSS Parameter Set but
630778ca45dfSBjoern A. Zeeb 		 * some of the drivers insert it so calculate the extra fixed
630878ca45dfSBjoern A. Zeeb 		 * space in.
6309d9945d78SBjoern A. Zeeb 		 */
6310d9945d78SBjoern A. Zeeb 		lhw->scan_ie_len += 2 + 1;
631178ca45dfSBjoern A. Zeeb 	}
6312d9945d78SBjoern A. Zeeb 
63139fb91463SBjoern A. Zeeb #if defined(LKPI_80211_HT)
63149fb91463SBjoern A. Zeeb 	if ((ic->ic_htcaps & IEEE80211_HTC_HT) != 0)
63159fb91463SBjoern A. Zeeb 		lhw->scan_ie_len += sizeof(struct ieee80211_ie_htcap);
63169fb91463SBjoern A. Zeeb #endif
63179fb91463SBjoern A. Zeeb #if defined(LKPI_80211_VHT)
63181f73e0edSBjoern A. Zeeb 	if (IEEE80211_CONF_VHT(ic))
63199fb91463SBjoern A. Zeeb 		lhw->scan_ie_len += 2 + sizeof(struct ieee80211_vht_cap);
63209fb91463SBjoern A. Zeeb #endif
63219fb91463SBjoern A. Zeeb 
6322d9945d78SBjoern A. Zeeb 	/* Reduce the max_scan_ie_len "left" by the amount we consume already. */
632378ca45dfSBjoern A. Zeeb 	if (hw->wiphy->max_scan_ie_len > 0) {
632478ca45dfSBjoern A. Zeeb 		if (lhw->scan_ie_len > hw->wiphy->max_scan_ie_len)
632578ca45dfSBjoern A. Zeeb 			goto err;
6326d9945d78SBjoern A. Zeeb 		hw->wiphy->max_scan_ie_len -= lhw->scan_ie_len;
632778ca45dfSBjoern A. Zeeb 	}
6328d9945d78SBjoern A. Zeeb 
63296b4cac81SBjoern A. Zeeb 	if (bootverbose)
63306b4cac81SBjoern A. Zeeb 		ieee80211_announce(ic);
63312e183d99SBjoern A. Zeeb 
63322e183d99SBjoern A. Zeeb 	return (0);
633378ca45dfSBjoern A. Zeeb err:
633478ca45dfSBjoern A. Zeeb 	IMPROVE("TODO FIXME CLEANUP");
633578ca45dfSBjoern A. Zeeb 	return (-EAGAIN);
63366b4cac81SBjoern A. Zeeb }
63376b4cac81SBjoern A. Zeeb 
63386b4cac81SBjoern A. Zeeb void
63396b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_ifdetach(struct ieee80211_hw *hw)
63406b4cac81SBjoern A. Zeeb {
63416b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
63426b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
63436b4cac81SBjoern A. Zeeb 
63446b4cac81SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
63456b4cac81SBjoern A. Zeeb 	ic = lhw->ic;
63466b4cac81SBjoern A. Zeeb 	ieee80211_ifdetach(ic);
63476b4cac81SBjoern A. Zeeb }
63486b4cac81SBjoern A. Zeeb 
63496b4cac81SBjoern A. Zeeb void
63506b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_iterate_interfaces(struct ieee80211_hw *hw,
63516b4cac81SBjoern A. Zeeb     enum ieee80211_iface_iter flags,
63526b4cac81SBjoern A. Zeeb     void(*iterfunc)(void *, uint8_t *, struct ieee80211_vif *),
63536b4cac81SBjoern A. Zeeb     void *arg)
63546b4cac81SBjoern A. Zeeb {
63556b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
63566b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
63576b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
635861a68e50SBjoern A. Zeeb 	bool active, atomic, nin_drv;
63596b4cac81SBjoern A. Zeeb 
63606b4cac81SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
63616b4cac81SBjoern A. Zeeb 
63626b4cac81SBjoern A. Zeeb 	if (flags & ~(IEEE80211_IFACE_ITER_NORMAL|
63636b4cac81SBjoern A. Zeeb 	    IEEE80211_IFACE_ITER_RESUME_ALL|
636461a68e50SBjoern A. Zeeb 	    IEEE80211_IFACE_SKIP_SDATA_NOT_IN_DRIVER|
6365adff403fSBjoern A. Zeeb 	    IEEE80211_IFACE_ITER_ACTIVE|IEEE80211_IFACE_ITER__ATOMIC)) {
63666b4cac81SBjoern A. Zeeb 		ic_printf(lhw->ic, "XXX TODO %s flags(%#x) not yet supported.\n",
63676b4cac81SBjoern A. Zeeb 		    __func__, flags);
63686b4cac81SBjoern A. Zeeb 	}
63696b4cac81SBjoern A. Zeeb 
6370adff403fSBjoern A. Zeeb 	active = (flags & IEEE80211_IFACE_ITER_ACTIVE) != 0;
63716b4cac81SBjoern A. Zeeb 	atomic = (flags & IEEE80211_IFACE_ITER__ATOMIC) != 0;
637261a68e50SBjoern A. Zeeb 	nin_drv = (flags & IEEE80211_IFACE_SKIP_SDATA_NOT_IN_DRIVER) != 0;
63736b4cac81SBjoern A. Zeeb 
63746b4cac81SBjoern A. Zeeb 	if (atomic)
63758891c455SBjoern A. Zeeb 		LKPI_80211_LHW_LVIF_LOCK(lhw);
63766b4cac81SBjoern A. Zeeb 	TAILQ_FOREACH(lvif, &lhw->lvif_head, lvif_entry) {
63776b4cac81SBjoern A. Zeeb 		struct ieee80211vap *vap;
63786b4cac81SBjoern A. Zeeb 
63796b4cac81SBjoern A. Zeeb 		vif = LVIF_TO_VIF(lvif);
63806b4cac81SBjoern A. Zeeb 
63816b4cac81SBjoern A. Zeeb 		/*
63826b4cac81SBjoern A. Zeeb 		 * If we want "active" interfaces, we need to distinguish on
63836b4cac81SBjoern A. Zeeb 		 * whether the driver knows about them or not to be able to
63846b4cac81SBjoern A. Zeeb 		 * handle the "resume" case correctly.  Skip the ones the
63856b4cac81SBjoern A. Zeeb 		 * driver does not know about.
63866b4cac81SBjoern A. Zeeb 		 */
63876b4cac81SBjoern A. Zeeb 		if (active && !lvif->added_to_drv &&
63886b4cac81SBjoern A. Zeeb 		    (flags & IEEE80211_IFACE_ITER_RESUME_ALL) != 0)
63896b4cac81SBjoern A. Zeeb 			continue;
63906b4cac81SBjoern A. Zeeb 
63916b4cac81SBjoern A. Zeeb 		/*
639261a68e50SBjoern A. Zeeb 		 * If we shall skip interfaces not added to the driver do so
639361a68e50SBjoern A. Zeeb 		 * if we haven't yet.
639461a68e50SBjoern A. Zeeb 		 */
639561a68e50SBjoern A. Zeeb 		if (nin_drv && !lvif->added_to_drv)
639661a68e50SBjoern A. Zeeb 			continue;
639761a68e50SBjoern A. Zeeb 
639861a68e50SBjoern A. Zeeb 		/*
63996b4cac81SBjoern A. Zeeb 		 * Run the iterator function if we are either not asking
64006b4cac81SBjoern A. Zeeb 		 * asking for active only or if the VAP is "running".
64016b4cac81SBjoern A. Zeeb 		 */
64026b4cac81SBjoern A. Zeeb 		/* XXX-BZ probably should have state in the lvif as well. */
64036b4cac81SBjoern A. Zeeb 		vap = LVIF_TO_VAP(lvif);
64046b4cac81SBjoern A. Zeeb 		if (!active || (vap->iv_state != IEEE80211_S_INIT))
64056b4cac81SBjoern A. Zeeb 			iterfunc(arg, vif->addr, vif);
64066b4cac81SBjoern A. Zeeb 	}
64076b4cac81SBjoern A. Zeeb 	if (atomic)
64088891c455SBjoern A. Zeeb 		LKPI_80211_LHW_LVIF_UNLOCK(lhw);
64096b4cac81SBjoern A. Zeeb }
64106b4cac81SBjoern A. Zeeb 
641111db70b6SBjoern A. Zeeb static void
641211db70b6SBjoern A. Zeeb lkpi_ieee80211_iterate_keys(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
641311db70b6SBjoern A. Zeeb     ieee80211_keyix keyix, struct lkpi_sta *lsta,
641411db70b6SBjoern A. Zeeb     void(*iterfunc)(struct ieee80211_hw *, struct ieee80211_vif *,
641511db70b6SBjoern A. Zeeb 	struct ieee80211_sta *, struct ieee80211_key_conf *, void *),
641611db70b6SBjoern A. Zeeb     void *arg)
641711db70b6SBjoern A. Zeeb {
641811db70b6SBjoern A. Zeeb 	if (!lsta->added_to_drv)
641911db70b6SBjoern A. Zeeb 		return;
642011db70b6SBjoern A. Zeeb 
642111db70b6SBjoern A. Zeeb 	if (lsta->kc[keyix] == NULL)
642211db70b6SBjoern A. Zeeb 		return;
642311db70b6SBjoern A. Zeeb 
642411db70b6SBjoern A. Zeeb 	iterfunc(hw, vif, LSTA_TO_STA(lsta), lsta->kc[keyix], arg);
642511db70b6SBjoern A. Zeeb }
642611db70b6SBjoern A. Zeeb 
64276b4cac81SBjoern A. Zeeb void
64286b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_iterate_keys(struct ieee80211_hw *hw,
64296b4cac81SBjoern A. Zeeb     struct ieee80211_vif *vif,
64306b4cac81SBjoern A. Zeeb     void(*iterfunc)(struct ieee80211_hw *, struct ieee80211_vif *,
64316b4cac81SBjoern A. Zeeb         struct ieee80211_sta *, struct ieee80211_key_conf *, void *),
643211db70b6SBjoern A. Zeeb     void *arg, bool rcu)
64336b4cac81SBjoern A. Zeeb {
643411db70b6SBjoern A. Zeeb 	struct lkpi_sta *lsta;
643511db70b6SBjoern A. Zeeb 	struct lkpi_vif *lvif;
64366b4cac81SBjoern A. Zeeb 
643711db70b6SBjoern A. Zeeb 	lvif = VIF_TO_LVIF(vif);
643811db70b6SBjoern A. Zeeb 
643911db70b6SBjoern A. Zeeb 	if (rcu) {
6440a8f735a6SBjoern A. Zeeb 		rcu_read_lock_held();		/* XXX-BZ is this correct? */
6441a8f735a6SBjoern A. Zeeb 
644211db70b6SBjoern A. Zeeb 		if (vif == NULL) {
644311db70b6SBjoern A. Zeeb 			TODO();
644411db70b6SBjoern A. Zeeb 		} else {
6445a8f735a6SBjoern A. Zeeb 			list_for_each_entry_rcu(lsta, &lvif->lsta_list, lsta_list) {
644611db70b6SBjoern A. Zeeb 				for (ieee80211_keyix keyix = 0; keyix < nitems(lsta->kc);
644711db70b6SBjoern A. Zeeb 				    keyix++)
644811db70b6SBjoern A. Zeeb 					lkpi_ieee80211_iterate_keys(hw, vif,
644911db70b6SBjoern A. Zeeb 					    keyix, lsta, iterfunc, arg);
645011db70b6SBjoern A. Zeeb 			}
645111db70b6SBjoern A. Zeeb 		}
645211db70b6SBjoern A. Zeeb 	} else {
645311db70b6SBjoern A. Zeeb 		TODO("Used by suspend/resume; order of keys as installed to "
645411db70b6SBjoern A. Zeeb 		"firmware is important; we'll need to rewrite some code for that");
645511db70b6SBjoern A. Zeeb 		lockdep_assert_wiphy(hw->wiphy);
645611db70b6SBjoern A. Zeeb 
645711db70b6SBjoern A. Zeeb 		if (vif == NULL) {
645811db70b6SBjoern A. Zeeb 			TODO();
645911db70b6SBjoern A. Zeeb 		} else {
6460a8f735a6SBjoern A. Zeeb 			list_for_each_entry(lsta, &lvif->lsta_list, lsta_list) {
646111db70b6SBjoern A. Zeeb 				for (ieee80211_keyix keyix = 0; keyix < nitems(lsta->kc);
646211db70b6SBjoern A. Zeeb 				    keyix++)
646311db70b6SBjoern A. Zeeb 					lkpi_ieee80211_iterate_keys(hw, vif,
646411db70b6SBjoern A. Zeeb 					    keyix, lsta, iterfunc, arg);
646511db70b6SBjoern A. Zeeb 			}
646611db70b6SBjoern A. Zeeb 		}
646711db70b6SBjoern A. Zeeb 	}
64686b4cac81SBjoern A. Zeeb }
64696b4cac81SBjoern A. Zeeb 
64706b4cac81SBjoern A. Zeeb void
64716b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_iterate_chan_contexts(struct ieee80211_hw *hw,
64726b4cac81SBjoern A. Zeeb     void(*iterfunc)(struct ieee80211_hw *, struct ieee80211_chanctx_conf *,
64736b4cac81SBjoern A. Zeeb 	void *),
64746b4cac81SBjoern A. Zeeb     void *arg)
64756b4cac81SBjoern A. Zeeb {
6476c5e25798SBjoern A. Zeeb 	struct lkpi_hw *lhw;
6477c5e25798SBjoern A. Zeeb 	struct lkpi_chanctx *lchanctx;
64786b4cac81SBjoern A. Zeeb 
6479c5e25798SBjoern A. Zeeb 	KASSERT(hw != NULL && iterfunc != NULL,
6480c5e25798SBjoern A. Zeeb 	    ("%s: hw %p iterfunc %p arg %p\n", __func__, hw, iterfunc, arg));
6481c5e25798SBjoern A. Zeeb 
6482c5e25798SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
6483c5e25798SBjoern A. Zeeb 
6484a8a47a41SBjoern A. Zeeb 	rcu_read_lock();
6485a8a47a41SBjoern A. Zeeb 	list_for_each_entry_rcu(lchanctx, &lhw->lchanctx_list, entry) {
6486c5e25798SBjoern A. Zeeb 		if (!lchanctx->added_to_drv)
6487c5e25798SBjoern A. Zeeb 			continue;
6488d1af434dSBjoern A. Zeeb 		iterfunc(hw, &lchanctx->chanctx_conf, arg);
6489c5e25798SBjoern A. Zeeb 	}
6490a8a47a41SBjoern A. Zeeb 	rcu_read_unlock();
64916b4cac81SBjoern A. Zeeb }
64926b4cac81SBjoern A. Zeeb 
64936b4cac81SBjoern A. Zeeb void
64946b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_iterate_stations_atomic(struct ieee80211_hw *hw,
64956b4cac81SBjoern A. Zeeb    void (*iterfunc)(void *, struct ieee80211_sta *), void *arg)
64966b4cac81SBjoern A. Zeeb {
64976b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
64986b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
64996b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
65006b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
65016b4cac81SBjoern A. Zeeb 
65026b4cac81SBjoern A. Zeeb 	KASSERT(hw != NULL && iterfunc != NULL,
65036b4cac81SBjoern A. Zeeb 	    ("%s: hw %p iterfunc %p arg %p\n", __func__, hw, iterfunc, arg));
65046b4cac81SBjoern A. Zeeb 
65056b4cac81SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
65066b4cac81SBjoern A. Zeeb 
65078891c455SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_LOCK(lhw);
65086b4cac81SBjoern A. Zeeb 	TAILQ_FOREACH(lvif, &lhw->lvif_head, lvif_entry) {
65096b4cac81SBjoern A. Zeeb 
6510a8f735a6SBjoern A. Zeeb 		rcu_read_lock();
6511a8f735a6SBjoern A. Zeeb 		list_for_each_entry_rcu(lsta, &lvif->lsta_list, lsta_list) {
65126b4cac81SBjoern A. Zeeb 			if (!lsta->added_to_drv)
65136b4cac81SBjoern A. Zeeb 				continue;
65146b4cac81SBjoern A. Zeeb 			sta = LSTA_TO_STA(lsta);
65156b4cac81SBjoern A. Zeeb 			iterfunc(arg, sta);
65166b4cac81SBjoern A. Zeeb 		}
6517a8f735a6SBjoern A. Zeeb 		rcu_read_unlock();
65186b4cac81SBjoern A. Zeeb 	}
65198891c455SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_UNLOCK(lhw);
65206b4cac81SBjoern A. Zeeb }
65216b4cac81SBjoern A. Zeeb 
6522673d62fcSBjoern A. Zeeb struct linuxkpi_ieee80211_regdomain *
6523673d62fcSBjoern A. Zeeb lkpi_get_linuxkpi_ieee80211_regdomain(size_t n)
6524673d62fcSBjoern A. Zeeb {
6525673d62fcSBjoern A. Zeeb 	struct linuxkpi_ieee80211_regdomain *regd;
6526673d62fcSBjoern A. Zeeb 
6527673d62fcSBjoern A. Zeeb 	regd = kzalloc(sizeof(*regd) + n * sizeof(struct ieee80211_reg_rule),
6528673d62fcSBjoern A. Zeeb 	    GFP_KERNEL);
6529673d62fcSBjoern A. Zeeb 	return (regd);
6530673d62fcSBjoern A. Zeeb }
6531673d62fcSBjoern A. Zeeb 
65326b4cac81SBjoern A. Zeeb int
65336b4cac81SBjoern A. Zeeb linuxkpi_regulatory_set_wiphy_regd_sync(struct wiphy *wiphy,
65346b4cac81SBjoern A. Zeeb     struct linuxkpi_ieee80211_regdomain *regd)
65356b4cac81SBjoern A. Zeeb {
65366b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
65376b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
65386b4cac81SBjoern A. Zeeb 	struct ieee80211_regdomain *rd;
65396b4cac81SBjoern A. Zeeb 
65406b4cac81SBjoern A. Zeeb 	lhw = wiphy_priv(wiphy);
65416b4cac81SBjoern A. Zeeb 	ic = lhw->ic;
65426b4cac81SBjoern A. Zeeb 
65436b4cac81SBjoern A. Zeeb 	rd = &ic->ic_regdomain;
65446b4cac81SBjoern A. Zeeb 	if (rd->isocc[0] == '\0') {
65456b4cac81SBjoern A. Zeeb 		rd->isocc[0] = regd->alpha2[0];
65466b4cac81SBjoern A. Zeeb 		rd->isocc[1] = regd->alpha2[1];
65476b4cac81SBjoern A. Zeeb 	}
65486b4cac81SBjoern A. Zeeb 
65496b4cac81SBjoern A. Zeeb 	TODO();
65506b4cac81SBjoern A. Zeeb 	/* XXX-BZ finish the rest. */
65516b4cac81SBjoern A. Zeeb 
65526b4cac81SBjoern A. Zeeb 	return (0);
65536b4cac81SBjoern A. Zeeb }
65546b4cac81SBjoern A. Zeeb 
65556b4cac81SBjoern A. Zeeb void
65566b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_scan_completed(struct ieee80211_hw *hw,
65576b4cac81SBjoern A. Zeeb     struct cfg80211_scan_info *info)
65586b4cac81SBjoern A. Zeeb {
65596b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
65606b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
65616b4cac81SBjoern A. Zeeb 	struct ieee80211_scan_state *ss;
65626b4cac81SBjoern A. Zeeb 
65636b4cac81SBjoern A. Zeeb 	lhw = wiphy_priv(hw->wiphy);
65646b4cac81SBjoern A. Zeeb 	ic = lhw->ic;
65656b4cac81SBjoern A. Zeeb 	ss = ic->ic_scan;
65666b4cac81SBjoern A. Zeeb 
65676b4cac81SBjoern A. Zeeb 	ieee80211_scan_done(ss->ss_vap);
65686b4cac81SBjoern A. Zeeb 
65698ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_LOCK(lhw);
65706b4cac81SBjoern A. Zeeb 	free(lhw->hw_req, M_LKPI80211);
65716b4cac81SBjoern A. Zeeb 	lhw->hw_req = NULL;
6572a486fbbdSBjoern A. Zeeb 	lhw->scan_flags &= ~LKPI_LHW_SCAN_RUNNING;
65736b4cac81SBjoern A. Zeeb 	wakeup(lhw);
65748ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_UNLOCK(lhw);
65756b4cac81SBjoern A. Zeeb 
65766b4cac81SBjoern A. Zeeb 	return;
65776b4cac81SBjoern A. Zeeb }
65786b4cac81SBjoern A. Zeeb 
6579759a996dSBjoern A. Zeeb static void
6580759a996dSBjoern A. Zeeb lkpi_80211_lhw_rxq_rx_one(struct lkpi_hw *lhw, struct mbuf *m)
6581759a996dSBjoern A. Zeeb {
6582759a996dSBjoern A. Zeeb 	struct ieee80211_node *ni;
6583dbae3dcfSBjoern A. Zeeb #ifdef LKPI_80211_USE_MTAG
6584759a996dSBjoern A. Zeeb 	struct m_tag *mtag;
6585dbae3dcfSBjoern A. Zeeb #endif
6586759a996dSBjoern A. Zeeb 	int ok;
6587759a996dSBjoern A. Zeeb 
6588759a996dSBjoern A. Zeeb 	ni = NULL;
6589dbae3dcfSBjoern A. Zeeb #ifdef LKPI_80211_USE_MTAG
6590759a996dSBjoern A. Zeeb         mtag = m_tag_locate(m, MTAG_ABI_LKPI80211, LKPI80211_TAG_RXNI, NULL);
6591759a996dSBjoern A. Zeeb 	if (mtag != NULL) {
6592759a996dSBjoern A. Zeeb 		struct lkpi_80211_tag_rxni *rxni;
6593759a996dSBjoern A. Zeeb 
6594759a996dSBjoern A. Zeeb 		rxni = (struct lkpi_80211_tag_rxni *)(mtag + 1);
6595759a996dSBjoern A. Zeeb 		ni = rxni->ni;
6596759a996dSBjoern A. Zeeb 	}
6597dbae3dcfSBjoern A. Zeeb #else
6598dbae3dcfSBjoern A. Zeeb 	if (m->m_pkthdr.PH_loc.ptr != NULL) {
6599dbae3dcfSBjoern A. Zeeb 		ni = m->m_pkthdr.PH_loc.ptr;
6600dbae3dcfSBjoern A. Zeeb 		m->m_pkthdr.PH_loc.ptr = NULL;
6601dbae3dcfSBjoern A. Zeeb 	}
6602dbae3dcfSBjoern A. Zeeb #endif
6603759a996dSBjoern A. Zeeb 
6604759a996dSBjoern A. Zeeb 	if (ni != NULL) {
6605759a996dSBjoern A. Zeeb 		ok = ieee80211_input_mimo(ni, m);
6606759a996dSBjoern A. Zeeb 		ieee80211_free_node(ni);		/* Release the reference. */
6607759a996dSBjoern A. Zeeb 		if (ok < 0)
6608759a996dSBjoern A. Zeeb 			m_freem(m);
6609759a996dSBjoern A. Zeeb 	} else {
6610759a996dSBjoern A. Zeeb 		ok = ieee80211_input_mimo_all(lhw->ic, m);
6611759a996dSBjoern A. Zeeb 		/* mbuf got consumed. */
6612759a996dSBjoern A. Zeeb 	}
6613759a996dSBjoern A. Zeeb 
6614759a996dSBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
6615759a996dSBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_RX)
6616bd206a6fSBjoern A. Zeeb 		printf("TRACE-RX: %s: handled frame type %#0x\n", __func__, ok);
6617759a996dSBjoern A. Zeeb #endif
6618759a996dSBjoern A. Zeeb }
6619759a996dSBjoern A. Zeeb 
6620759a996dSBjoern A. Zeeb static void
6621759a996dSBjoern A. Zeeb lkpi_80211_lhw_rxq_task(void *ctx, int pending)
6622759a996dSBjoern A. Zeeb {
6623759a996dSBjoern A. Zeeb 	struct lkpi_hw *lhw;
6624759a996dSBjoern A. Zeeb 	struct mbufq mq;
6625759a996dSBjoern A. Zeeb 	struct mbuf *m;
6626759a996dSBjoern A. Zeeb 
6627759a996dSBjoern A. Zeeb 	lhw = ctx;
6628759a996dSBjoern A. Zeeb 
6629759a996dSBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
6630759a996dSBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_RX)
6631bd206a6fSBjoern A. Zeeb 		printf("TRACE-RX: %s: lhw %p pending %d mbuf_qlen %d\n",
6632bd206a6fSBjoern A. Zeeb 		    __func__, lhw, pending, mbufq_len(&lhw->rxq));
6633759a996dSBjoern A. Zeeb #endif
6634759a996dSBjoern A. Zeeb 
6635759a996dSBjoern A. Zeeb 	mbufq_init(&mq, IFQ_MAXLEN);
6636759a996dSBjoern A. Zeeb 
6637759a996dSBjoern A. Zeeb 	LKPI_80211_LHW_RXQ_LOCK(lhw);
6638759a996dSBjoern A. Zeeb 	mbufq_concat(&mq, &lhw->rxq);
6639759a996dSBjoern A. Zeeb 	LKPI_80211_LHW_RXQ_UNLOCK(lhw);
6640759a996dSBjoern A. Zeeb 
6641759a996dSBjoern A. Zeeb 	m = mbufq_dequeue(&mq);
6642759a996dSBjoern A. Zeeb 	while (m != NULL) {
6643759a996dSBjoern A. Zeeb 		lkpi_80211_lhw_rxq_rx_one(lhw, m);
6644759a996dSBjoern A. Zeeb 		m = mbufq_dequeue(&mq);
6645759a996dSBjoern A. Zeeb 	}
6646759a996dSBjoern A. Zeeb }
6647759a996dSBjoern A. Zeeb 
664849010ba7SBjoern A. Zeeb static void
6649a1adefb1SBjoern A. Zeeb lkpi_convert_rx_status(struct ieee80211_hw *hw, struct lkpi_sta *lsta,
665049010ba7SBjoern A. Zeeb     struct ieee80211_rx_status *rx_status,
665149010ba7SBjoern A. Zeeb     struct ieee80211_rx_stats *rx_stats,
665249010ba7SBjoern A. Zeeb     uint8_t *rssip)
665349010ba7SBjoern A. Zeeb {
665449010ba7SBjoern A. Zeeb 	struct ieee80211_supported_band *supband;
6655a1adefb1SBjoern A. Zeeb 	struct rate_info rxrate;
665649010ba7SBjoern A. Zeeb 	int i;
665749010ba7SBjoern A. Zeeb 	uint8_t rssi;
665849010ba7SBjoern A. Zeeb 
6659a1adefb1SBjoern A. Zeeb 	memset(&rxrate, 0, sizeof(rxrate));
666049010ba7SBjoern A. Zeeb 	memset(rx_stats, 0, sizeof(*rx_stats));
666149010ba7SBjoern A. Zeeb 	rx_stats->r_flags = IEEE80211_R_NF | IEEE80211_R_RSSI;
666249010ba7SBjoern A. Zeeb 	/* XXX-BZ correct hardcoded noise floor, survey data? */
666349010ba7SBjoern A. Zeeb 	rx_stats->c_nf = -96;
666449010ba7SBjoern A. Zeeb 	if (ieee80211_hw_check(hw, SIGNAL_DBM) &&
666549010ba7SBjoern A. Zeeb 	    !(rx_status->flag & RX_FLAG_NO_SIGNAL_VAL))
666649010ba7SBjoern A. Zeeb 		rssi = rx_status->signal;
666749010ba7SBjoern A. Zeeb 	else
666849010ba7SBjoern A. Zeeb 		rssi = rx_stats->c_nf;
666949010ba7SBjoern A. Zeeb 	/*
667049010ba7SBjoern A. Zeeb 	 * net80211 signal strength data are in .5 dBm units relative to
667149010ba7SBjoern A. Zeeb 	 * the current noise floor (see comment in ieee80211_node.h).
667249010ba7SBjoern A. Zeeb 	 */
667349010ba7SBjoern A. Zeeb 	rssi -= rx_stats->c_nf;
667449010ba7SBjoern A. Zeeb 	if (rssip != NULL)
667549010ba7SBjoern A. Zeeb 		*rssip = rssi;
667649010ba7SBjoern A. Zeeb 	rx_stats->c_rssi = rssi * 2;
667749010ba7SBjoern A. Zeeb 	rx_stats->r_flags |= IEEE80211_R_BAND;
667849010ba7SBjoern A. Zeeb 	rx_stats->c_band =
667949010ba7SBjoern A. Zeeb 	    lkpi_nl80211_band_to_net80211_band(rx_status->band);
668049010ba7SBjoern A. Zeeb 	rx_stats->r_flags |= IEEE80211_R_FREQ | IEEE80211_R_IEEE;
668149010ba7SBjoern A. Zeeb 	rx_stats->c_freq = rx_status->freq;
668249010ba7SBjoern A. Zeeb 	rx_stats->c_ieee = ieee80211_mhz2ieee(rx_stats->c_freq, rx_stats->c_band);
668349010ba7SBjoern A. Zeeb 
668449010ba7SBjoern A. Zeeb 	rx_stats->c_rx_tsf = rx_status->mactime;
668549010ba7SBjoern A. Zeeb 
668649010ba7SBjoern A. Zeeb 	/* XXX RX_FLAG_MACTIME_IS_RTAP_TS64 ? */
668749010ba7SBjoern A. Zeeb 	if ((rx_status->flag & RX_FLAG_MACTIME) ==
668849010ba7SBjoern A. Zeeb 	    (RX_FLAG_MACTIME_START|RX_FLAG_MACTIME_END)) {
668949010ba7SBjoern A. Zeeb 		rx_stats->r_flags |= IEEE80211_R_TSF64;
669049010ba7SBjoern A. Zeeb 		/* XXX RX_FLAG_MACTIME_PLCP_START ? */
669149010ba7SBjoern A. Zeeb 		if ((rx_status->flag & RX_FLAG_MACTIME) == RX_FLAG_MACTIME_START)
669249010ba7SBjoern A. Zeeb 			rx_stats->r_flags |= IEEE80211_R_TSF_START;
669349010ba7SBjoern A. Zeeb 		if ((rx_status->flag & RX_FLAG_MACTIME) == RX_FLAG_MACTIME_END)
669449010ba7SBjoern A. Zeeb 			rx_stats->r_flags |= IEEE80211_R_TSF_END;
669549010ba7SBjoern A. Zeeb 		/* XXX-BZ if TSF_END will net80211 do the unwind of time? */
669649010ba7SBjoern A. Zeeb 	}
669749010ba7SBjoern A. Zeeb 
669849010ba7SBjoern A. Zeeb 	if (rx_status->chains != 0) {
669949010ba7SBjoern A. Zeeb 		int cc;
670049010ba7SBjoern A. Zeeb 		int8_t crssi;
670149010ba7SBjoern A. Zeeb 
670249010ba7SBjoern A. Zeeb 		rx_stats->c_chain = rx_status->chains;
670349010ba7SBjoern A. Zeeb 		rx_stats->r_flags |= IEEE80211_R_C_CHAIN;
670449010ba7SBjoern A. Zeeb 
670549010ba7SBjoern A. Zeeb 		cc = 0;
670649010ba7SBjoern A. Zeeb 		for (i = 0; i < nitems(rx_status->chain_signal); i++) {
670749010ba7SBjoern A. Zeeb 			if (!(rx_status->chains & BIT(i)))
670849010ba7SBjoern A. Zeeb 				continue;
670949010ba7SBjoern A. Zeeb 			crssi = rx_status->chain_signal[i];
671049010ba7SBjoern A. Zeeb 			crssi -= rx_stats->c_nf;
671149010ba7SBjoern A. Zeeb 			rx_stats->c_rssi_ctl[i] = crssi * 2;
671249010ba7SBjoern A. Zeeb 			rx_stats->c_rssi_ext[i] = crssi * 2;	/* XXX _ext ??? ATH thing? */
671349010ba7SBjoern A. Zeeb 			/* We currently only have the global noise floor value. */
671449010ba7SBjoern A. Zeeb 			rx_stats->c_nf_ctl[i] = rx_stats->c_nf;
671549010ba7SBjoern A. Zeeb 			rx_stats->c_nf_ext[i] = rx_stats->c_nf;
671649010ba7SBjoern A. Zeeb 			cc++;
671749010ba7SBjoern A. Zeeb 		}
671849010ba7SBjoern A. Zeeb 		if (cc > 0)
671949010ba7SBjoern A. Zeeb 			 rx_stats->r_flags |= (IEEE80211_R_C_NF | IEEE80211_R_C_RSSI);
672049010ba7SBjoern A. Zeeb 	}
672149010ba7SBjoern A. Zeeb 
672249010ba7SBjoern A. Zeeb 	/* XXX-NET80211 We are not going to populate c_phytype! */
672349010ba7SBjoern A. Zeeb 
672449010ba7SBjoern A. Zeeb 	switch (rx_status->encoding) {
672549010ba7SBjoern A. Zeeb 	case RX_ENC_LEGACY:
6726a1adefb1SBjoern A. Zeeb 	{
6727a1adefb1SBjoern A. Zeeb 		uint32_t legacy = 0;
6728a1adefb1SBjoern A. Zeeb 
672949010ba7SBjoern A. Zeeb 		supband = hw->wiphy->bands[rx_status->band];
673049010ba7SBjoern A. Zeeb 		if (supband != NULL)
6731a1adefb1SBjoern A. Zeeb 			legacy = supband->bitrates[rx_status->rate_idx].bitrate;
6732a1adefb1SBjoern A. Zeeb 		rx_stats->c_rate = legacy;
6733a1adefb1SBjoern A. Zeeb 		rxrate.legacy = legacy;
673449010ba7SBjoern A. Zeeb 		/* Is there a LinuxKPI way of reporting IEEE80211_RX_F_CCK / _OFDM? */
673549010ba7SBjoern A. Zeeb 		break;
6736a1adefb1SBjoern A. Zeeb 	}
673749010ba7SBjoern A. Zeeb 	case RX_ENC_HT:
673849010ba7SBjoern A. Zeeb 		rx_stats->c_pktflags |= IEEE80211_RX_F_HT;
673949010ba7SBjoern A. Zeeb 		rx_stats->c_rate = rx_status->rate_idx;		/* mcs */
6740a1adefb1SBjoern A. Zeeb 		rxrate.flags |= RATE_INFO_FLAGS_MCS;
6741a1adefb1SBjoern A. Zeeb 		rxrate.mcs = rx_status->rate_idx;
6742a1adefb1SBjoern A. Zeeb 		if ((rx_status->enc_flags & RX_ENC_FLAG_SHORT_GI) != 0) {
6743a1adefb1SBjoern A. Zeeb 			rx_stats->c_pktflags |= IEEE80211_RX_F_SHORTGI;
6744a1adefb1SBjoern A. Zeeb 			rxrate.flags |= RATE_INFO_FLAGS_SHORT_GI;
6745a1adefb1SBjoern A. Zeeb 		}
674649010ba7SBjoern A. Zeeb 		break;
674749010ba7SBjoern A. Zeeb 	case RX_ENC_VHT:
674849010ba7SBjoern A. Zeeb 		rx_stats->c_pktflags |= IEEE80211_RX_F_VHT;
674949010ba7SBjoern A. Zeeb 		rx_stats->c_rate = rx_status->rate_idx;		/* mcs */
675049010ba7SBjoern A. Zeeb 		rx_stats->c_vhtnss = rx_status->nss;
6751a1adefb1SBjoern A. Zeeb 		rxrate.flags |= RATE_INFO_FLAGS_VHT_MCS;
6752a1adefb1SBjoern A. Zeeb 		rxrate.mcs = rx_status->rate_idx;
6753a1adefb1SBjoern A. Zeeb 		rxrate.nss = rx_status->nss;
6754a1adefb1SBjoern A. Zeeb 		if ((rx_status->enc_flags & RX_ENC_FLAG_SHORT_GI) != 0) {
6755a1adefb1SBjoern A. Zeeb 			rx_stats->c_pktflags |= IEEE80211_RX_F_SHORTGI;
6756a1adefb1SBjoern A. Zeeb 			rxrate.flags |= RATE_INFO_FLAGS_SHORT_GI;
6757a1adefb1SBjoern A. Zeeb 		}
675849010ba7SBjoern A. Zeeb 		break;
675949010ba7SBjoern A. Zeeb 	case RX_ENC_HE:
6760a1adefb1SBjoern A. Zeeb 		rxrate.flags |= RATE_INFO_FLAGS_HE_MCS;
6761a1adefb1SBjoern A. Zeeb 		rxrate.mcs = rx_status->rate_idx;
6762a1adefb1SBjoern A. Zeeb 		rxrate.nss = rx_status->nss;
6763a1adefb1SBjoern A. Zeeb 		/* XXX TODO */
6764a1adefb1SBjoern A. Zeeb 		TODO("net80211 has not matching encoding for %u", rx_status->encoding);
6765a1adefb1SBjoern A. Zeeb 		break;
676649010ba7SBjoern A. Zeeb 	case RX_ENC_EHT:
6767a1adefb1SBjoern A. Zeeb 		rxrate.flags |= RATE_INFO_FLAGS_EHT_MCS;
6768a1adefb1SBjoern A. Zeeb 		rxrate.mcs = rx_status->rate_idx;
6769a1adefb1SBjoern A. Zeeb 		rxrate.nss = rx_status->nss;
6770a1adefb1SBjoern A. Zeeb 		/* XXX TODO */
677149010ba7SBjoern A. Zeeb 		TODO("net80211 has not matching encoding for %u", rx_status->encoding);
677249010ba7SBjoern A. Zeeb 		break;
677349010ba7SBjoern A. Zeeb 	}
677449010ba7SBjoern A. Zeeb 
6775a1adefb1SBjoern A. Zeeb 	rxrate.bw = rx_status->bw;
677649010ba7SBjoern A. Zeeb 	switch (rx_status->bw) {
677749010ba7SBjoern A. Zeeb 	case RATE_INFO_BW_20:
677849010ba7SBjoern A. Zeeb 		rx_stats->c_width = IEEE80211_RX_FW_20MHZ;
677949010ba7SBjoern A. Zeeb 		break;
678049010ba7SBjoern A. Zeeb 	case RATE_INFO_BW_40:
678149010ba7SBjoern A. Zeeb 		rx_stats->c_width = IEEE80211_RX_FW_40MHZ;
678249010ba7SBjoern A. Zeeb 		break;
678349010ba7SBjoern A. Zeeb 	case RATE_INFO_BW_80:
678449010ba7SBjoern A. Zeeb 		rx_stats->c_width = IEEE80211_RX_FW_80MHZ;
678549010ba7SBjoern A. Zeeb 		break;
678649010ba7SBjoern A. Zeeb 	case RATE_INFO_BW_160:
678749010ba7SBjoern A. Zeeb 		rx_stats->c_width = IEEE80211_RX_FW_160MHZ;
678849010ba7SBjoern A. Zeeb 		break;
678949010ba7SBjoern A. Zeeb 	case RATE_INFO_BW_320:
679049010ba7SBjoern A. Zeeb 	case RATE_INFO_BW_HE_RU:
679149010ba7SBjoern A. Zeeb 	case RATE_INFO_BW_EHT_RU:
679249010ba7SBjoern A. Zeeb 	case RATE_INFO_BW_5:
679349010ba7SBjoern A. Zeeb 	case RATE_INFO_BW_10:
679449010ba7SBjoern A. Zeeb 		TODO("net80211 has not matching bandwidth for %u", rx_status->bw);
679549010ba7SBjoern A. Zeeb 		break;
679649010ba7SBjoern A. Zeeb 	}
679749010ba7SBjoern A. Zeeb 
679849010ba7SBjoern A. Zeeb 	if ((rx_status->enc_flags & RX_ENC_FLAG_LDPC) != 0)
679949010ba7SBjoern A. Zeeb 		rx_stats->c_pktflags |= IEEE80211_RX_F_LDPC;
680049010ba7SBjoern A. Zeeb 	if ((rx_status->enc_flags & RX_ENC_FLAG_STBC_MASK) != 0)
680149010ba7SBjoern A. Zeeb 		 rx_stats->c_pktflags |= IEEE80211_RX_F_STBC;
680249010ba7SBjoern A. Zeeb 
680349010ba7SBjoern A. Zeeb 	/*
680449010ba7SBjoern A. Zeeb 	 * We only need these for LKPI_80211_HW_CRYPTO in theory but in
680549010ba7SBjoern A. Zeeb 	 * case the hardware does something we do not expect always leave
680649010ba7SBjoern A. Zeeb 	 * these enabled.  Leaving this commant as documentation for the || 1.
680749010ba7SBjoern A. Zeeb 	 */
680849010ba7SBjoern A. Zeeb #if defined(LKPI_80211_HW_CRYPTO) || 1
680949010ba7SBjoern A. Zeeb 	if (rx_status->flag & RX_FLAG_DECRYPTED) {
681049010ba7SBjoern A. Zeeb 		rx_stats->c_pktflags |= IEEE80211_RX_F_DECRYPTED;
681149010ba7SBjoern A. Zeeb 		/* Only valid if decrypted is set. */
681249010ba7SBjoern A. Zeeb 		if (rx_status->flag & RX_FLAG_PN_VALIDATED)
681349010ba7SBjoern A. Zeeb 			rx_stats->c_pktflags |= IEEE80211_RX_F_PN_VALIDATED;
681449010ba7SBjoern A. Zeeb 	}
6815731ff400SBjoern A. Zeeb 	if (rx_status->flag & RX_FLAG_IV_STRIPPED)
6816731ff400SBjoern A. Zeeb 		rx_stats->c_pktflags |= IEEE80211_RX_F_IV_STRIP;
6817731ff400SBjoern A. Zeeb 	if (rx_status->flag & RX_FLAG_ICV_STRIPPED)
6818731ff400SBjoern A. Zeeb 		rx_stats->c_pktflags |= IEEE80211_RX_F_ICV_STRIP;
6819731ff400SBjoern A. Zeeb 	if (rx_status->flag & RX_FLAG_MIC_STRIPPED)
6820731ff400SBjoern A. Zeeb 		rx_stats->c_pktflags |= IEEE80211_RX_F_MIC_STRIP;
682149010ba7SBjoern A. Zeeb 	if (rx_status->flag & RX_FLAG_MMIC_STRIPPED)
682249010ba7SBjoern A. Zeeb 		rx_stats->c_pktflags |= IEEE80211_RX_F_MMIC_STRIP;
6823394a9a5bSBjoern A. Zeeb 	if (rx_status->flag & RX_FLAG_MMIC_ERROR)
6824394a9a5bSBjoern A. Zeeb 		rx_stats->c_pktflags |= IEEE80211_RX_F_FAIL_MMIC;
682549010ba7SBjoern A. Zeeb 	if (rx_status->flag & RX_FLAG_FAILED_FCS_CRC)
682649010ba7SBjoern A. Zeeb 		rx_stats->c_pktflags |= IEEE80211_RX_F_FAIL_FCSCRC;
682749010ba7SBjoern A. Zeeb #endif
6828a1adefb1SBjoern A. Zeeb 
6829a1adefb1SBjoern A. Zeeb 	if (lsta != NULL) {
6830a1adefb1SBjoern A. Zeeb 		memcpy(&lsta->sinfo.rxrate, &rxrate, sizeof(rxrate));
6831a1adefb1SBjoern A. Zeeb 		lsta->sinfo.filled |= BIT_ULL(NL80211_STA_INFO_RX_BITRATE);
6832a1adefb1SBjoern A. Zeeb 	}
683349010ba7SBjoern A. Zeeb }
683449010ba7SBjoern A. Zeeb 
6835e30e05d3SBjoern A. Zeeb /* For %list see comment towards the end of the function. */
68366b4cac81SBjoern A. Zeeb void
68376b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb,
6838e30e05d3SBjoern A. Zeeb     struct ieee80211_sta *sta, struct napi_struct *napi __unused,
6839e30e05d3SBjoern A. Zeeb     struct list_head *list __unused)
68406b4cac81SBjoern A. Zeeb {
68416b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
68426b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
68436b4cac81SBjoern A. Zeeb 	struct mbuf *m;
68446b4cac81SBjoern A. Zeeb 	struct skb_shared_info *shinfo;
68456b4cac81SBjoern A. Zeeb 	struct ieee80211_rx_status *rx_status;
68466b4cac81SBjoern A. Zeeb 	struct ieee80211_rx_stats rx_stats;
68476b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
68486b4cac81SBjoern A. Zeeb 	struct ieee80211vap *vap;
68496b4cac81SBjoern A. Zeeb 	struct ieee80211_hdr *hdr;
68506b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
6851c816f64eSBjoern A. Zeeb 	int i, offset, ok, error;
685249010ba7SBjoern A. Zeeb 	uint8_t rssi;
6853c0cadd99SBjoern A. Zeeb 	bool is_beacon;
68546b4cac81SBjoern A. Zeeb 
6855c013f810SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
6856c013f810SBjoern A. Zeeb 	ic = lhw->ic;
6857c013f810SBjoern A. Zeeb 
68586b4cac81SBjoern A. Zeeb 	if (skb->len < 2) {
68596b4cac81SBjoern A. Zeeb 		/* Need 80211 stats here. */
6860c013f810SBjoern A. Zeeb 		counter_u64_add(ic->ic_ierrors, 1);
68616b4cac81SBjoern A. Zeeb 		IMPROVE();
68626b4cac81SBjoern A. Zeeb 		goto err;
68636b4cac81SBjoern A. Zeeb 	}
68646b4cac81SBjoern A. Zeeb 
68656b4cac81SBjoern A. Zeeb 	/*
68666b4cac81SBjoern A. Zeeb 	 * For now do the data copy; we can later improve things. Might even
68676b4cac81SBjoern A. Zeeb 	 * have an mbuf backing the skb data then?
68686b4cac81SBjoern A. Zeeb 	 */
686902382a0aSBjoern A. Zeeb 	m = m_get3(skb->len, M_NOWAIT, MT_DATA, M_PKTHDR);
6870c013f810SBjoern A. Zeeb 	if (m == NULL) {
6871c013f810SBjoern A. Zeeb 		counter_u64_add(ic->ic_ierrors, 1);
68726b4cac81SBjoern A. Zeeb 		goto err;
6873c013f810SBjoern A. Zeeb 	}
68746b4cac81SBjoern A. Zeeb 	m_copyback(m, 0, skb->tail - skb->data, skb->data);
68756b4cac81SBjoern A. Zeeb 
68766b4cac81SBjoern A. Zeeb 	shinfo = skb_shinfo(skb);
68776b4cac81SBjoern A. Zeeb 	offset = m->m_len;
68786b4cac81SBjoern A. Zeeb 	for (i = 0; i < shinfo->nr_frags; i++) {
68796b4cac81SBjoern A. Zeeb 		m_copyback(m, offset, shinfo->frags[i].size,
68806b4cac81SBjoern A. Zeeb 		    (uint8_t *)linux_page_address(shinfo->frags[i].page) +
68816b4cac81SBjoern A. Zeeb 		    shinfo->frags[i].offset);
68826b4cac81SBjoern A. Zeeb 		offset += shinfo->frags[i].size;
68836b4cac81SBjoern A. Zeeb 	}
68846b4cac81SBjoern A. Zeeb 
68856b4cac81SBjoern A. Zeeb 	rx_status = IEEE80211_SKB_RXCB(skb);
68866b4cac81SBjoern A. Zeeb 
68876b4cac81SBjoern A. Zeeb 	hdr = (void *)skb->data;
6888c0cadd99SBjoern A. Zeeb 	is_beacon = ieee80211_is_beacon(hdr->frame_control);
6889c0cadd99SBjoern A. Zeeb 
6890c0cadd99SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
68919d9ba2b7SBjoern A. Zeeb 	if (is_beacon && (linuxkpi_debug_80211 & D80211_TRACE_RX_BEACONS) == 0)
68926b4cac81SBjoern A. Zeeb 		goto no_trace_beacons;
68936b4cac81SBjoern A. Zeeb 
68949d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_RX)
689573e3969fSBjoern A. Zeeb 		printf("TRACE-RX: %s: skb %p l/d/t-len (%u/%u/%u) "
6896c0cadd99SBjoern A. Zeeb 		    "h %p d %p t %p e %p sh %p (%u) m %p plen %u len %u%s\n",
689773e3969fSBjoern A. Zeeb 		    __func__, skb, skb->len, skb->data_len,
68986b4cac81SBjoern A. Zeeb 		    skb->truesize, skb->head, skb->data, skb->tail, skb->end,
68996b4cac81SBjoern A. Zeeb 		    shinfo, shinfo->nr_frags,
6900c0cadd99SBjoern A. Zeeb 		    m, m->m_pkthdr.len, m->m_len, is_beacon ? " beacon" : "");
69016b4cac81SBjoern A. Zeeb 
69029d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_RX_DUMP)
69036b4cac81SBjoern A. Zeeb 		hexdump(mtod(m, const void *), m->m_len, "RX (raw) ", 0);
69046b4cac81SBjoern A. Zeeb 
69056b4cac81SBjoern A. Zeeb 	/* Implement a dump_rxcb() !!! */
69069d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_RX)
6907f1aeb5d8SBjoern A. Zeeb 		printf("TRACE-RX: %s: RXCB: %ju %ju %u, %b, %u, %#0x, %#0x, "
690860970a32SBjoern A. Zeeb 		    "%u band %u, %u { %d %d %d %d }, %d, %#x %#x %#x %#x %u %u %u\n",
69096b4cac81SBjoern A. Zeeb 			__func__,
6910c8dafefaSBjoern A. Zeeb 			(uintmax_t)rx_status->boottime_ns,
6911c8dafefaSBjoern A. Zeeb 			(uintmax_t)rx_status->mactime,
69126b4cac81SBjoern A. Zeeb 			rx_status->device_timestamp,
6913f1aeb5d8SBjoern A. Zeeb 			rx_status->flag, IEEE80211_RX_STATUS_FLAGS_BITS,
69146b4cac81SBjoern A. Zeeb 			rx_status->freq,
69156b4cac81SBjoern A. Zeeb 			rx_status->bw,
69166b4cac81SBjoern A. Zeeb 			rx_status->encoding,
69176b4cac81SBjoern A. Zeeb 			rx_status->ampdu_reference,
69186b4cac81SBjoern A. Zeeb 			rx_status->band,
69196b4cac81SBjoern A. Zeeb 			rx_status->chains,
69206b4cac81SBjoern A. Zeeb 			rx_status->chain_signal[0],
69216b4cac81SBjoern A. Zeeb 			rx_status->chain_signal[1],
69226b4cac81SBjoern A. Zeeb 			rx_status->chain_signal[2],
692360970a32SBjoern A. Zeeb 			rx_status->chain_signal[3],
69246b4cac81SBjoern A. Zeeb 			rx_status->signal,
69256b4cac81SBjoern A. Zeeb 			rx_status->enc_flags,
69266b4cac81SBjoern A. Zeeb 			rx_status->he_dcm,
69276b4cac81SBjoern A. Zeeb 			rx_status->he_gi,
69286b4cac81SBjoern A. Zeeb 			rx_status->he_ru,
69296b4cac81SBjoern A. Zeeb 			rx_status->zero_length_psdu_type,
69306b4cac81SBjoern A. Zeeb 			rx_status->nss,
69316b4cac81SBjoern A. Zeeb 			rx_status->rate_idx);
69326b4cac81SBjoern A. Zeeb no_trace_beacons:
69336b4cac81SBjoern A. Zeeb #endif
69346b4cac81SBjoern A. Zeeb 
693558246901SBjoern A. Zeeb 	lsta = NULL;
69366b4cac81SBjoern A. Zeeb 	if (sta != NULL) {
69376b4cac81SBjoern A. Zeeb 		lsta = STA_TO_LSTA(sta);
69386b4cac81SBjoern A. Zeeb 		ni = ieee80211_ref_node(lsta->ni);
69396b4cac81SBjoern A. Zeeb 	} else {
6940c8dafefaSBjoern A. Zeeb 		struct ieee80211_frame_min *wh;
6941c8dafefaSBjoern A. Zeeb 
69426b4cac81SBjoern A. Zeeb 		wh = mtod(m, struct ieee80211_frame_min *);
69436b4cac81SBjoern A. Zeeb 		ni = ieee80211_find_rxnode(ic, wh);
69446b4cac81SBjoern A. Zeeb 		if (ni != NULL)
69456b4cac81SBjoern A. Zeeb 			lsta = ni->ni_drv_data;
69466b4cac81SBjoern A. Zeeb 	}
69476b4cac81SBjoern A. Zeeb 
6948a1adefb1SBjoern A. Zeeb 	rssi = 0;
6949a1adefb1SBjoern A. Zeeb 	lkpi_convert_rx_status(hw, lsta, rx_status, &rx_stats, &rssi);
6950a1adefb1SBjoern A. Zeeb 
6951a1adefb1SBjoern A. Zeeb 	ok = ieee80211_add_rx_params(m, &rx_stats);
6952a1adefb1SBjoern A. Zeeb 	if (ok == 0) {
6953a1adefb1SBjoern A. Zeeb 		m_freem(m);
6954a1adefb1SBjoern A. Zeeb 		counter_u64_add(ic->ic_ierrors, 1);
6955a1adefb1SBjoern A. Zeeb 		goto err;
6956a1adefb1SBjoern A. Zeeb 	}
6957a1adefb1SBjoern A. Zeeb 
69586b4cac81SBjoern A. Zeeb 	if (ni != NULL)
69596b4cac81SBjoern A. Zeeb 		vap = ni->ni_vap;
69606b4cac81SBjoern A. Zeeb 	else
69616b4cac81SBjoern A. Zeeb 		/*
69626b4cac81SBjoern A. Zeeb 		 * XXX-BZ can we improve this by looking at the frame hdr
69636b4cac81SBjoern A. Zeeb 		 * or other meta-data passed up?
69646b4cac81SBjoern A. Zeeb 		 */
69656b4cac81SBjoern A. Zeeb 		vap = TAILQ_FIRST(&ic->ic_vaps);
69666b4cac81SBjoern A. Zeeb 
69679d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
69689d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_RX)
6969bd206a6fSBjoern A. Zeeb 		printf("TRACE-RX: %s: sta %p lsta %p state %d ni %p vap %p%s\n",
6970c0cadd99SBjoern A. Zeeb 		    __func__, sta, lsta, (lsta != NULL) ? lsta->state : -1,
6971c0cadd99SBjoern A. Zeeb 		    ni, vap, is_beacon ? " beacon" : "");
69729d9ba2b7SBjoern A. Zeeb #endif
69736b4cac81SBjoern A. Zeeb 
6974c0cadd99SBjoern A. Zeeb 	if (ni != NULL && vap != NULL && is_beacon &&
6975c8dafefaSBjoern A. Zeeb 	    rx_status->device_timestamp > 0 &&
6976c8dafefaSBjoern A. Zeeb 	    m->m_pkthdr.len >= sizeof(struct ieee80211_frame)) {
6977c8dafefaSBjoern A. Zeeb 		struct lkpi_vif *lvif;
6978c8dafefaSBjoern A. Zeeb 		struct ieee80211_vif *vif;
6979c8dafefaSBjoern A. Zeeb 		struct ieee80211_frame *wh;
6980c8dafefaSBjoern A. Zeeb 
6981c8dafefaSBjoern A. Zeeb 		wh = mtod(m, struct ieee80211_frame *);
6982c8dafefaSBjoern A. Zeeb 		if (!IEEE80211_ADDR_EQ(wh->i_addr2, ni->ni_bssid))
6983c8dafefaSBjoern A. Zeeb 			goto skip_device_ts;
6984c8dafefaSBjoern A. Zeeb 
6985c8dafefaSBjoern A. Zeeb 		lvif = VAP_TO_LVIF(vap);
6986c8dafefaSBjoern A. Zeeb 		vif = LVIF_TO_VIF(lvif);
6987c8dafefaSBjoern A. Zeeb 
6988c8dafefaSBjoern A. Zeeb 		IMPROVE("TIMING_BEACON_ONLY?");
6989c8dafefaSBjoern A. Zeeb 		/* mac80211 specific (not net80211) so keep it here. */
6990c8dafefaSBjoern A. Zeeb 		vif->bss_conf.sync_device_ts = rx_status->device_timestamp;
6991c8dafefaSBjoern A. Zeeb 		/*
6992c8dafefaSBjoern A. Zeeb 		 * net80211 should take care of the other information (sync_tsf,
6993c8dafefaSBjoern A. Zeeb 		 * sync_dtim_count) as otherwise we need to parse the beacon.
6994c8dafefaSBjoern A. Zeeb 		 */
6995c8dafefaSBjoern A. Zeeb skip_device_ts:
69969fb91463SBjoern A. Zeeb 		;
69979fb91463SBjoern A. Zeeb 	}
6998c8dafefaSBjoern A. Zeeb 
69996b4cac81SBjoern A. Zeeb 	if (vap != NULL && vap->iv_state > IEEE80211_S_INIT &&
70006b4cac81SBjoern A. Zeeb 	    ieee80211_radiotap_active_vap(vap)) {
70016b4cac81SBjoern A. Zeeb 		struct lkpi_radiotap_rx_hdr *rtap;
70026b4cac81SBjoern A. Zeeb 
70036b4cac81SBjoern A. Zeeb 		rtap = &lhw->rtap_rx;
70046b4cac81SBjoern A. Zeeb 		rtap->wr_tsft = rx_status->device_timestamp;
70056b4cac81SBjoern A. Zeeb 		rtap->wr_flags = 0;
70066b4cac81SBjoern A. Zeeb 		if (rx_status->enc_flags & RX_ENC_FLAG_SHORTPRE)
70076b4cac81SBjoern A. Zeeb 			rtap->wr_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
70086b4cac81SBjoern A. Zeeb 		if (rx_status->enc_flags & RX_ENC_FLAG_SHORT_GI)
70096b4cac81SBjoern A. Zeeb 			rtap->wr_flags |= IEEE80211_RADIOTAP_F_SHORTGI;
70106b4cac81SBjoern A. Zeeb #if 0	/* .. or it does not given we strip it below. */
70116b4cac81SBjoern A. Zeeb 		if (ieee80211_hw_check(hw, RX_INCLUDES_FCS))
70126b4cac81SBjoern A. Zeeb 			rtap->wr_flags |= IEEE80211_RADIOTAP_F_FCS;
70136b4cac81SBjoern A. Zeeb #endif
70146b4cac81SBjoern A. Zeeb 		if (rx_status->flag & RX_FLAG_FAILED_FCS_CRC)
70156b4cac81SBjoern A. Zeeb 			rtap->wr_flags |= IEEE80211_RADIOTAP_F_BADFCS;
70166b4cac81SBjoern A. Zeeb 		rtap->wr_rate = 0;
70176b4cac81SBjoern A. Zeeb 		IMPROVE();
70186b4cac81SBjoern A. Zeeb 		/* XXX TODO status->encoding / rate_index / bw */
70196b4cac81SBjoern A. Zeeb 		rtap->wr_chan_freq = htole16(rx_stats.c_freq);
70206b4cac81SBjoern A. Zeeb 		if (ic->ic_curchan->ic_ieee == rx_stats.c_ieee)
70216b4cac81SBjoern A. Zeeb 			rtap->wr_chan_flags = htole16(ic->ic_curchan->ic_flags);
7022170acccfSBjoern A. Zeeb 		rtap->wr_dbm_antsignal = rssi;
70236b4cac81SBjoern A. Zeeb 		rtap->wr_dbm_antnoise = rx_stats.c_nf;
70246b4cac81SBjoern A. Zeeb 	}
70256b4cac81SBjoern A. Zeeb 
70266b4cac81SBjoern A. Zeeb 	if (ieee80211_hw_check(hw, RX_INCLUDES_FCS))
70276b4cac81SBjoern A. Zeeb 		m_adj(m, -IEEE80211_CRC_LEN);
70286b4cac81SBjoern A. Zeeb 
7029e30e05d3SBjoern A. Zeeb #if 0
7030e30e05d3SBjoern A. Zeeb 	if (list != NULL) {
7031e30e05d3SBjoern A. Zeeb 		/*
7032e30e05d3SBjoern A. Zeeb 		* Normally this would be queued up and delivered by
7033e30e05d3SBjoern A. Zeeb 		* netif_receive_skb_list(), napi_gro_receive(), or the like.
7034e30e05d3SBjoern A. Zeeb 		* See mt76::mac80211.c as only current possible consumer.
7035e30e05d3SBjoern A. Zeeb 		*/
7036e30e05d3SBjoern A. Zeeb 		IMPROVE("we simply pass the packet to net80211 to deal with.");
7037e30e05d3SBjoern A. Zeeb 	}
7038e30e05d3SBjoern A. Zeeb #endif
7039e30e05d3SBjoern A. Zeeb 
7040c013f810SBjoern A. Zeeb 	/* Attach meta-information to the mbuf for the deferred RX path. */
70416b4cac81SBjoern A. Zeeb 	if (ni != NULL) {
7042dbae3dcfSBjoern A. Zeeb #ifdef LKPI_80211_USE_MTAG
7043759a996dSBjoern A. Zeeb 		struct m_tag *mtag;
7044759a996dSBjoern A. Zeeb 		struct lkpi_80211_tag_rxni *rxni;
7045759a996dSBjoern A. Zeeb 
7046759a996dSBjoern A. Zeeb 		mtag = m_tag_alloc(MTAG_ABI_LKPI80211, LKPI80211_TAG_RXNI,
7047759a996dSBjoern A. Zeeb 		    sizeof(*rxni), IEEE80211_M_NOWAIT);
7048c013f810SBjoern A. Zeeb 		if (mtag == NULL) {
7049c013f810SBjoern A. Zeeb 			m_freem(m);
7050c013f810SBjoern A. Zeeb 			counter_u64_add(ic->ic_ierrors, 1);
7051c013f810SBjoern A. Zeeb 			goto err;
7052c013f810SBjoern A. Zeeb 		}
7053759a996dSBjoern A. Zeeb 		rxni = (struct lkpi_80211_tag_rxni *)(mtag + 1);
7054759a996dSBjoern A. Zeeb 		rxni->ni = ni;		/* We hold a reference. */
7055759a996dSBjoern A. Zeeb 		m_tag_prepend(m, mtag);
7056dbae3dcfSBjoern A. Zeeb #else
7057dbae3dcfSBjoern A. Zeeb 		m->m_pkthdr.PH_loc.ptr = ni;	/* We hold a reference. */
7058dbae3dcfSBjoern A. Zeeb #endif
7059759a996dSBjoern A. Zeeb 	}
70606b4cac81SBjoern A. Zeeb 
7061759a996dSBjoern A. Zeeb 	LKPI_80211_LHW_RXQ_LOCK(lhw);
7062759a996dSBjoern A. Zeeb 	if (lhw->rxq_stopped) {
7063759a996dSBjoern A. Zeeb 		LKPI_80211_LHW_RXQ_UNLOCK(lhw);
7064759a996dSBjoern A. Zeeb 		m_freem(m);
7065c013f810SBjoern A. Zeeb 		counter_u64_add(ic->ic_ierrors, 1);
7066759a996dSBjoern A. Zeeb 		goto err;
7067759a996dSBjoern A. Zeeb 	}
7068759a996dSBjoern A. Zeeb 
7069c816f64eSBjoern A. Zeeb 	error = mbufq_enqueue(&lhw->rxq, m);
7070c816f64eSBjoern A. Zeeb 	if (error != 0) {
7071c816f64eSBjoern A. Zeeb 		LKPI_80211_LHW_RXQ_UNLOCK(lhw);
7072c816f64eSBjoern A. Zeeb 		m_freem(m);
7073c816f64eSBjoern A. Zeeb 		counter_u64_add(ic->ic_ierrors, 1);
7074c816f64eSBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
7075c816f64eSBjoern A. Zeeb 		if (linuxkpi_debug_80211 & D80211_TRACE_RX)
7076c816f64eSBjoern A. Zeeb 			ic_printf(ni->ni_ic, "%s: mbufq_enqueue failed: %d\n",
7077c816f64eSBjoern A. Zeeb 			    __func__, error);
7078c816f64eSBjoern A. Zeeb #endif
7079c816f64eSBjoern A. Zeeb 		goto err;
7080c816f64eSBjoern A. Zeeb 	}
7081759a996dSBjoern A. Zeeb 	taskqueue_enqueue(taskqueue_thread, &lhw->rxq_task);
7082759a996dSBjoern A. Zeeb 	LKPI_80211_LHW_RXQ_UNLOCK(lhw);
70836b4cac81SBjoern A. Zeeb 
70846b4cac81SBjoern A. Zeeb 	IMPROVE();
70856b4cac81SBjoern A. Zeeb 
70866b4cac81SBjoern A. Zeeb err:
70876b4cac81SBjoern A. Zeeb 	/* The skb is ours so we can free it :-) */
70886b4cac81SBjoern A. Zeeb 	kfree_skb(skb);
70896b4cac81SBjoern A. Zeeb }
70906b4cac81SBjoern A. Zeeb 
70916b4cac81SBjoern A. Zeeb uint8_t
7092ec190d91SBjoern A. Zeeb linuxkpi_ieee80211_get_tid(struct ieee80211_hdr *hdr, bool nonqos_ok)
70936b4cac81SBjoern A. Zeeb {
70946b4cac81SBjoern A. Zeeb 	const struct ieee80211_frame *wh;
7095ec190d91SBjoern A. Zeeb 	uint8_t tid;
7096ec190d91SBjoern A. Zeeb 
7097ec190d91SBjoern A. Zeeb 	/* Linux seems to assume this is a QOS-Data-Frame */
7098ec190d91SBjoern A. Zeeb 	KASSERT(nonqos_ok || ieee80211_is_data_qos(hdr->frame_control),
7099ec190d91SBjoern A. Zeeb 	   ("%s: hdr %p fc %#06x not qos_data\n", __func__, hdr,
7100ec190d91SBjoern A. Zeeb 	   hdr->frame_control));
71016b4cac81SBjoern A. Zeeb 
71026b4cac81SBjoern A. Zeeb 	wh = (const struct ieee80211_frame *)hdr;
7103ec190d91SBjoern A. Zeeb 	tid = ieee80211_gettid(wh);
7104ec190d91SBjoern A. Zeeb 	KASSERT(nonqos_ok || tid == (tid & IEEE80211_QOS_TID), ("%s: tid %u "
7105ec190d91SBjoern A. Zeeb 	   "not expected (%u?)\n", __func__, tid, IEEE80211_NONQOS_TID));
7106ec190d91SBjoern A. Zeeb 
7107ec190d91SBjoern A. Zeeb 	return (tid);
71086b4cac81SBjoern A. Zeeb }
71096b4cac81SBjoern A. Zeeb 
7110ac1d519cSBjoern A. Zeeb /* -------------------------------------------------------------------------- */
7111ac1d519cSBjoern A. Zeeb 
7112ac1d519cSBjoern A. Zeeb static void
7113ac1d519cSBjoern A. Zeeb lkpi_wiphy_work(struct work_struct *work)
7114ac1d519cSBjoern A. Zeeb {
7115ac1d519cSBjoern A. Zeeb 	struct lkpi_wiphy *lwiphy;
7116ac1d519cSBjoern A. Zeeb 	struct wiphy *wiphy;
7117ac1d519cSBjoern A. Zeeb 	struct wiphy_work *wk;
7118ac1d519cSBjoern A. Zeeb 
7119ac1d519cSBjoern A. Zeeb 	lwiphy = container_of(work, struct lkpi_wiphy, wwk);
7120ac1d519cSBjoern A. Zeeb 	wiphy = LWIPHY_TO_WIPHY(lwiphy);
7121ac1d519cSBjoern A. Zeeb 
7122ac1d519cSBjoern A. Zeeb 	wiphy_lock(wiphy);
7123ac1d519cSBjoern A. Zeeb 
7124ac1d519cSBjoern A. Zeeb 	LKPI_80211_LWIPHY_WORK_LOCK(lwiphy);
7125ac1d519cSBjoern A. Zeeb 	wk = list_first_entry_or_null(&lwiphy->wwk_list, struct wiphy_work, entry);
7126ac1d519cSBjoern A. Zeeb 	/* If there is nothing we do nothing. */
7127ac1d519cSBjoern A. Zeeb 	if (wk == NULL) {
7128ac1d519cSBjoern A. Zeeb 		LKPI_80211_LWIPHY_WORK_UNLOCK(lwiphy);
7129ac1d519cSBjoern A. Zeeb 		wiphy_unlock(wiphy);
7130ac1d519cSBjoern A. Zeeb 		return;
7131ac1d519cSBjoern A. Zeeb 	}
7132ac1d519cSBjoern A. Zeeb 	list_del_init(&wk->entry);
7133ac1d519cSBjoern A. Zeeb 
7134ac1d519cSBjoern A. Zeeb 	/* More work to do? */
7135ac1d519cSBjoern A. Zeeb 	if (!list_empty(&lwiphy->wwk_list))
7136ac1d519cSBjoern A. Zeeb 		schedule_work(work);
7137ac1d519cSBjoern A. Zeeb 	LKPI_80211_LWIPHY_WORK_UNLOCK(lwiphy);
7138ac1d519cSBjoern A. Zeeb 
7139ac1d519cSBjoern A. Zeeb 	/* Finally call the (*wiphy_work_fn)() function. */
7140ac1d519cSBjoern A. Zeeb 	wk->fn(wiphy, wk);
7141ac1d519cSBjoern A. Zeeb 
7142ac1d519cSBjoern A. Zeeb 	wiphy_unlock(wiphy);
7143ac1d519cSBjoern A. Zeeb }
7144ac1d519cSBjoern A. Zeeb 
7145ac1d519cSBjoern A. Zeeb void
7146ac1d519cSBjoern A. Zeeb linuxkpi_wiphy_work_queue(struct wiphy *wiphy, struct wiphy_work *wwk)
7147ac1d519cSBjoern A. Zeeb {
7148ac1d519cSBjoern A. Zeeb 	struct lkpi_wiphy *lwiphy;
7149ac1d519cSBjoern A. Zeeb 
7150ac1d519cSBjoern A. Zeeb 	lwiphy = WIPHY_TO_LWIPHY(wiphy);
7151ac1d519cSBjoern A. Zeeb 
7152ac1d519cSBjoern A. Zeeb 	LKPI_80211_LWIPHY_WORK_LOCK(lwiphy);
7153ac1d519cSBjoern A. Zeeb 	/* Do not double-queue. */
7154ac1d519cSBjoern A. Zeeb 	if (list_empty(&wwk->entry))
7155ac1d519cSBjoern A. Zeeb 		list_add_tail(&wwk->entry, &lwiphy->wwk_list);
7156ac1d519cSBjoern A. Zeeb 	LKPI_80211_LWIPHY_WORK_UNLOCK(lwiphy);
7157ac1d519cSBjoern A. Zeeb 
7158ac1d519cSBjoern A. Zeeb 	/*
7159ac1d519cSBjoern A. Zeeb 	 * See how ieee80211_queue_work() work continues in Linux or if things
7160ac1d519cSBjoern A. Zeeb 	 * migrate here over time?
7161ac1d519cSBjoern A. Zeeb 	 * Use a system queue from linux/workqueue.h for now.
7162ac1d519cSBjoern A. Zeeb 	 */
7163ac1d519cSBjoern A. Zeeb 	queue_work(system_wq, &lwiphy->wwk);
7164ac1d519cSBjoern A. Zeeb }
7165ac1d519cSBjoern A. Zeeb 
7166ac1d519cSBjoern A. Zeeb void
7167ac1d519cSBjoern A. Zeeb linuxkpi_wiphy_work_cancel(struct wiphy *wiphy, struct wiphy_work *wwk)
7168ac1d519cSBjoern A. Zeeb {
7169ac1d519cSBjoern A. Zeeb 	struct lkpi_wiphy *lwiphy;
7170ac1d519cSBjoern A. Zeeb 
7171ac1d519cSBjoern A. Zeeb 	lwiphy = WIPHY_TO_LWIPHY(wiphy);
7172ac1d519cSBjoern A. Zeeb 
7173ac1d519cSBjoern A. Zeeb 	LKPI_80211_LWIPHY_WORK_LOCK(lwiphy);
7174ac1d519cSBjoern A. Zeeb 	/* Only cancel if queued. */
7175ac1d519cSBjoern A. Zeeb 	if (!list_empty(&wwk->entry))
7176ac1d519cSBjoern A. Zeeb 		list_del_init(&wwk->entry);
7177ac1d519cSBjoern A. Zeeb 	LKPI_80211_LWIPHY_WORK_UNLOCK(lwiphy);
7178ac1d519cSBjoern A. Zeeb }
7179ac1d519cSBjoern A. Zeeb 
7180ac1d519cSBjoern A. Zeeb void
7181ac1d519cSBjoern A. Zeeb linuxkpi_wiphy_work_flush(struct wiphy *wiphy, struct wiphy_work *wwk)
7182ac1d519cSBjoern A. Zeeb {
7183ac1d519cSBjoern A. Zeeb 	struct lkpi_wiphy *lwiphy;
7184ac1d519cSBjoern A. Zeeb 	struct wiphy_work *wk;
7185ac1d519cSBjoern A. Zeeb 
7186ac1d519cSBjoern A. Zeeb 	lwiphy = WIPHY_TO_LWIPHY(wiphy);
7187ac1d519cSBjoern A. Zeeb 	LKPI_80211_LWIPHY_WORK_LOCK(lwiphy);
7188ac1d519cSBjoern A. Zeeb 	/* If wwk is unset, flush everything; called when wiphy is shut down. */
7189ac1d519cSBjoern A. Zeeb 	if (wwk != NULL && list_empty(&wwk->entry)) {
7190ac1d519cSBjoern A. Zeeb 		LKPI_80211_LWIPHY_WORK_UNLOCK(lwiphy);
7191ac1d519cSBjoern A. Zeeb 		return;
7192ac1d519cSBjoern A. Zeeb 	}
7193ac1d519cSBjoern A. Zeeb 
7194ac1d519cSBjoern A. Zeeb 	while (!list_empty(&lwiphy->wwk_list)) {
7195ac1d519cSBjoern A. Zeeb 
7196ac1d519cSBjoern A. Zeeb 		wk = list_first_entry(&lwiphy->wwk_list, struct wiphy_work,
7197ac1d519cSBjoern A. Zeeb 		    entry);
7198ac1d519cSBjoern A. Zeeb 		list_del_init(&wk->entry);
7199ac1d519cSBjoern A. Zeeb 		LKPI_80211_LWIPHY_WORK_UNLOCK(lwiphy);
7200ac1d519cSBjoern A. Zeeb 		wk->fn(wiphy, wk);
7201ac1d519cSBjoern A. Zeeb 		LKPI_80211_LWIPHY_WORK_LOCK(lwiphy);
7202ac1d519cSBjoern A. Zeeb 		if (wk == wwk)
7203ac1d519cSBjoern A. Zeeb 			break;
7204ac1d519cSBjoern A. Zeeb 	}
7205ac1d519cSBjoern A. Zeeb 	LKPI_80211_LWIPHY_WORK_UNLOCK(lwiphy);
7206ac1d519cSBjoern A. Zeeb }
7207ac1d519cSBjoern A. Zeeb 
7208ac1d519cSBjoern A. Zeeb void
7209ac1d519cSBjoern A. Zeeb lkpi_wiphy_delayed_work_timer(struct timer_list *tl)
7210ac1d519cSBjoern A. Zeeb {
7211ac1d519cSBjoern A. Zeeb 	struct wiphy_delayed_work *wdwk;
7212ac1d519cSBjoern A. Zeeb 
7213ac1d519cSBjoern A. Zeeb 	wdwk = from_timer(wdwk, tl, timer);
7214ac1d519cSBjoern A. Zeeb         wiphy_work_queue(wdwk->wiphy, &wdwk->work);
7215ac1d519cSBjoern A. Zeeb }
7216ac1d519cSBjoern A. Zeeb 
7217ac1d519cSBjoern A. Zeeb void
7218ac1d519cSBjoern A. Zeeb linuxkpi_wiphy_delayed_work_queue(struct wiphy *wiphy,
7219ac1d519cSBjoern A. Zeeb     struct wiphy_delayed_work *wdwk, unsigned long delay)
7220ac1d519cSBjoern A. Zeeb {
7221ac1d519cSBjoern A. Zeeb 	if (delay == 0) {
7222ac1d519cSBjoern A. Zeeb 		/* Run right away. */
7223ac1d519cSBjoern A. Zeeb 		del_timer(&wdwk->timer);
7224ac1d519cSBjoern A. Zeeb 		wiphy_work_queue(wiphy, &wdwk->work);
7225ac1d519cSBjoern A. Zeeb 	} else {
7226ac1d519cSBjoern A. Zeeb 		wdwk->wiphy = wiphy;
7227ac1d519cSBjoern A. Zeeb 		mod_timer(&wdwk->timer, jiffies + delay);
7228ac1d519cSBjoern A. Zeeb 	}
7229ac1d519cSBjoern A. Zeeb }
7230ac1d519cSBjoern A. Zeeb 
7231ac1d519cSBjoern A. Zeeb void
7232ac1d519cSBjoern A. Zeeb linuxkpi_wiphy_delayed_work_cancel(struct wiphy *wiphy,
7233ac1d519cSBjoern A. Zeeb     struct wiphy_delayed_work *wdwk)
7234ac1d519cSBjoern A. Zeeb {
7235ac1d519cSBjoern A. Zeeb 	del_timer_sync(&wdwk->timer);
7236ac1d519cSBjoern A. Zeeb 	wiphy_work_cancel(wiphy, &wdwk->work);
7237ac1d519cSBjoern A. Zeeb }
7238ac1d519cSBjoern A. Zeeb 
7239ac1d519cSBjoern A. Zeeb /* -------------------------------------------------------------------------- */
7240ac1d519cSBjoern A. Zeeb 
72416b4cac81SBjoern A. Zeeb struct wiphy *
72426b4cac81SBjoern A. Zeeb linuxkpi_wiphy_new(const struct cfg80211_ops *ops, size_t priv_len)
72436b4cac81SBjoern A. Zeeb {
72446b4cac81SBjoern A. Zeeb 	struct lkpi_wiphy *lwiphy;
7245ac1d519cSBjoern A. Zeeb 	struct wiphy *wiphy;
72466b4cac81SBjoern A. Zeeb 
72476b4cac81SBjoern A. Zeeb 	lwiphy = kzalloc(sizeof(*lwiphy) + priv_len, GFP_KERNEL);
72486b4cac81SBjoern A. Zeeb 	if (lwiphy == NULL)
72496b4cac81SBjoern A. Zeeb 		return (NULL);
72506b4cac81SBjoern A. Zeeb 	lwiphy->ops = ops;
72516b4cac81SBjoern A. Zeeb 
7252ac1d519cSBjoern A. Zeeb 	LKPI_80211_LWIPHY_WORK_LOCK_INIT(lwiphy);
7253ac1d519cSBjoern A. Zeeb 	INIT_LIST_HEAD(&lwiphy->wwk_list);
7254ac1d519cSBjoern A. Zeeb 	INIT_WORK(&lwiphy->wwk, lkpi_wiphy_work);
7255ac1d519cSBjoern A. Zeeb 
7256ac1d519cSBjoern A. Zeeb 	wiphy = LWIPHY_TO_WIPHY(lwiphy);
7257ac1d519cSBjoern A. Zeeb 
7258ac1d519cSBjoern A. Zeeb 	mutex_init(&wiphy->mtx);
7259ac1d519cSBjoern A. Zeeb 	TODO();
7260ac1d519cSBjoern A. Zeeb 
7261ac1d519cSBjoern A. Zeeb 	return (wiphy);
72626b4cac81SBjoern A. Zeeb }
72636b4cac81SBjoern A. Zeeb 
72646b4cac81SBjoern A. Zeeb void
72656b4cac81SBjoern A. Zeeb linuxkpi_wiphy_free(struct wiphy *wiphy)
72666b4cac81SBjoern A. Zeeb {
72676b4cac81SBjoern A. Zeeb 	struct lkpi_wiphy *lwiphy;
72686b4cac81SBjoern A. Zeeb 
72696b4cac81SBjoern A. Zeeb 	if (wiphy == NULL)
72706b4cac81SBjoern A. Zeeb 		return;
72716b4cac81SBjoern A. Zeeb 
7272ac1d519cSBjoern A. Zeeb 	linuxkpi_wiphy_work_flush(wiphy, NULL);
7273ac1d519cSBjoern A. Zeeb 	mutex_destroy(&wiphy->mtx);
7274ac1d519cSBjoern A. Zeeb 
72756b4cac81SBjoern A. Zeeb 	lwiphy = WIPHY_TO_LWIPHY(wiphy);
7276ac1d519cSBjoern A. Zeeb 	LKPI_80211_LWIPHY_WORK_LOCK_DESTROY(lwiphy);
7277ac1d519cSBjoern A. Zeeb 
72786b4cac81SBjoern A. Zeeb 	kfree(lwiphy);
72796b4cac81SBjoern A. Zeeb }
72806b4cac81SBjoern A. Zeeb 
7281a7c19b8aSBjoern A. Zeeb static uint32_t
7282a7c19b8aSBjoern A. Zeeb lkpi_cfg80211_calculate_bitrate_ht(struct rate_info *rate)
7283a7c19b8aSBjoern A. Zeeb {
7284a7c19b8aSBjoern A. Zeeb 	TODO("cfg80211_calculate_bitrate_ht");
7285a7c19b8aSBjoern A. Zeeb 	return (rate->legacy);
7286a7c19b8aSBjoern A. Zeeb }
7287a7c19b8aSBjoern A. Zeeb 
7288a7c19b8aSBjoern A. Zeeb static uint32_t
7289a7c19b8aSBjoern A. Zeeb lkpi_cfg80211_calculate_bitrate_vht(struct rate_info *rate)
7290a7c19b8aSBjoern A. Zeeb {
7291a7c19b8aSBjoern A. Zeeb 	TODO("cfg80211_calculate_bitrate_vht");
7292a7c19b8aSBjoern A. Zeeb 	return (rate->legacy);
7293a7c19b8aSBjoern A. Zeeb }
7294a7c19b8aSBjoern A. Zeeb 
7295a7c19b8aSBjoern A. Zeeb uint32_t
7296a7c19b8aSBjoern A. Zeeb linuxkpi_cfg80211_calculate_bitrate(struct rate_info *rate)
7297a7c19b8aSBjoern A. Zeeb {
7298a7c19b8aSBjoern A. Zeeb 
7299a7c19b8aSBjoern A. Zeeb 	/* Beware: order! */
7300a7c19b8aSBjoern A. Zeeb 	if (rate->flags & RATE_INFO_FLAGS_MCS)
7301a7c19b8aSBjoern A. Zeeb 		return (lkpi_cfg80211_calculate_bitrate_ht(rate));
7302a7c19b8aSBjoern A. Zeeb 
7303a7c19b8aSBjoern A. Zeeb 	if (rate->flags & RATE_INFO_FLAGS_VHT_MCS)
7304a7c19b8aSBjoern A. Zeeb 		return (lkpi_cfg80211_calculate_bitrate_vht(rate));
7305a7c19b8aSBjoern A. Zeeb 
7306a7c19b8aSBjoern A. Zeeb 	IMPROVE("HE/EHT/...");
7307a7c19b8aSBjoern A. Zeeb 
7308a7c19b8aSBjoern A. Zeeb 	return (rate->legacy);
7309a7c19b8aSBjoern A. Zeeb }
7310a7c19b8aSBjoern A. Zeeb 
73116b4cac81SBjoern A. Zeeb uint32_t
73126b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_channel_to_frequency(uint32_t channel,
73136b4cac81SBjoern A. Zeeb     enum nl80211_band band)
73146b4cac81SBjoern A. Zeeb {
73156b4cac81SBjoern A. Zeeb 
73166b4cac81SBjoern A. Zeeb 	switch (band) {
73176b4cac81SBjoern A. Zeeb 	case NL80211_BAND_2GHZ:
73186b4cac81SBjoern A. Zeeb 		return (ieee80211_ieee2mhz(channel, IEEE80211_CHAN_2GHZ));
73196b4cac81SBjoern A. Zeeb 		break;
73206b4cac81SBjoern A. Zeeb 	case NL80211_BAND_5GHZ:
73216b4cac81SBjoern A. Zeeb 		return (ieee80211_ieee2mhz(channel, IEEE80211_CHAN_5GHZ));
73226b4cac81SBjoern A. Zeeb 		break;
73236b4cac81SBjoern A. Zeeb 	default:
73246b4cac81SBjoern A. Zeeb 		/* XXX abort, retry, error, panic? */
73256b4cac81SBjoern A. Zeeb 		break;
73266b4cac81SBjoern A. Zeeb 	}
73276b4cac81SBjoern A. Zeeb 
73286b4cac81SBjoern A. Zeeb 	return (0);
73296b4cac81SBjoern A. Zeeb }
73306b4cac81SBjoern A. Zeeb 
73316b4cac81SBjoern A. Zeeb uint32_t
73326b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_frequency_to_channel(uint32_t freq, uint32_t flags __unused)
73336b4cac81SBjoern A. Zeeb {
73346b4cac81SBjoern A. Zeeb 
73356b4cac81SBjoern A. Zeeb 	return (ieee80211_mhz2ieee(freq, 0));
73366b4cac81SBjoern A. Zeeb }
73376b4cac81SBjoern A. Zeeb 
7338ac867c20SBjoern A. Zeeb #if 0
73396b4cac81SBjoern A. Zeeb static struct lkpi_sta *
73406b4cac81SBjoern A. Zeeb lkpi_find_lsta_by_ni(struct lkpi_vif *lvif, struct ieee80211_node *ni)
73416b4cac81SBjoern A. Zeeb {
73426b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta, *temp;
73436b4cac81SBjoern A. Zeeb 
7344a8f735a6SBjoern A. Zeeb 	rcu_read_lock();
7345a8f735a6SBjoern A. Zeeb 	list_for_each_entry_rcu(lsta, &lvif->lsta_list, lsta_list) {
73466b4cac81SBjoern A. Zeeb 		if (lsta->ni == ni) {
7347a8f735a6SBjoern A. Zeeb 			rcu_read_unlock();
73486b4cac81SBjoern A. Zeeb 			return (lsta);
73496b4cac81SBjoern A. Zeeb 		}
73506b4cac81SBjoern A. Zeeb 	}
7351a8f735a6SBjoern A. Zeeb 	rcu_read_unlock();
73526b4cac81SBjoern A. Zeeb 
73536b4cac81SBjoern A. Zeeb 	return (NULL);
73546b4cac81SBjoern A. Zeeb }
7355ac867c20SBjoern A. Zeeb #endif
73566b4cac81SBjoern A. Zeeb 
73576b4cac81SBjoern A. Zeeb struct ieee80211_sta *
73586b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_find_sta(struct ieee80211_vif *vif, const u8 *peer)
73596b4cac81SBjoern A. Zeeb {
73606b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
7361a8f735a6SBjoern A. Zeeb 	struct lkpi_sta *lsta;
73626b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
73636b4cac81SBjoern A. Zeeb 
73646b4cac81SBjoern A. Zeeb 	lvif = VIF_TO_LVIF(vif);
73656b4cac81SBjoern A. Zeeb 
7366a8f735a6SBjoern A. Zeeb 	rcu_read_lock();
7367a8f735a6SBjoern A. Zeeb 	list_for_each_entry_rcu(lsta, &lvif->lsta_list, lsta_list) {
73686b4cac81SBjoern A. Zeeb 		sta = LSTA_TO_STA(lsta);
73696b4cac81SBjoern A. Zeeb 		if (IEEE80211_ADDR_EQ(sta->addr, peer)) {
7370a8f735a6SBjoern A. Zeeb 			rcu_read_unlock();
73716b4cac81SBjoern A. Zeeb 			return (sta);
73726b4cac81SBjoern A. Zeeb 		}
73736b4cac81SBjoern A. Zeeb 	}
7374a8f735a6SBjoern A. Zeeb 	rcu_read_unlock();
73756b4cac81SBjoern A. Zeeb 	return (NULL);
73766b4cac81SBjoern A. Zeeb }
73776b4cac81SBjoern A. Zeeb 
73786b4cac81SBjoern A. Zeeb struct ieee80211_sta *
73792e183d99SBjoern A. Zeeb linuxkpi_ieee80211_find_sta_by_ifaddr(struct ieee80211_hw *hw,
73802e183d99SBjoern A. Zeeb     const uint8_t *addr, const uint8_t *ourvifaddr)
73816b4cac81SBjoern A. Zeeb {
73826b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
73836b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
73846b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
73856b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
73866b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
73876b4cac81SBjoern A. Zeeb 
73886b4cac81SBjoern A. Zeeb 	lhw = wiphy_priv(hw->wiphy);
73896b4cac81SBjoern A. Zeeb 	sta = NULL;
73906b4cac81SBjoern A. Zeeb 
73918891c455SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_LOCK(lhw);
73926b4cac81SBjoern A. Zeeb 	TAILQ_FOREACH(lvif, &lhw->lvif_head, lvif_entry) {
73936b4cac81SBjoern A. Zeeb 
73946b4cac81SBjoern A. Zeeb 		/* XXX-BZ check our address from the vif. */
73956b4cac81SBjoern A. Zeeb 
73966b4cac81SBjoern A. Zeeb 		vif = LVIF_TO_VIF(lvif);
73976b4cac81SBjoern A. Zeeb 		if (ourvifaddr != NULL &&
73986b4cac81SBjoern A. Zeeb 		    !IEEE80211_ADDR_EQ(vif->addr, ourvifaddr))
73996b4cac81SBjoern A. Zeeb 			continue;
74006b4cac81SBjoern A. Zeeb 		sta = linuxkpi_ieee80211_find_sta(vif, addr);
74016b4cac81SBjoern A. Zeeb 		if (sta != NULL)
74026b4cac81SBjoern A. Zeeb 			break;
74036b4cac81SBjoern A. Zeeb 	}
74048891c455SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_UNLOCK(lhw);
74056b4cac81SBjoern A. Zeeb 
74066b4cac81SBjoern A. Zeeb 	if (sta != NULL) {
74076b4cac81SBjoern A. Zeeb 		lsta = STA_TO_LSTA(sta);
74086b4cac81SBjoern A. Zeeb 		if (!lsta->added_to_drv)
74096b4cac81SBjoern A. Zeeb 			return (NULL);
74106b4cac81SBjoern A. Zeeb 	}
74116b4cac81SBjoern A. Zeeb 
74126b4cac81SBjoern A. Zeeb 	return (sta);
74136b4cac81SBjoern A. Zeeb }
74146b4cac81SBjoern A. Zeeb 
74156b4cac81SBjoern A. Zeeb struct sk_buff *
74166b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_tx_dequeue(struct ieee80211_hw *hw,
74176b4cac81SBjoern A. Zeeb     struct ieee80211_txq *txq)
74186b4cac81SBjoern A. Zeeb {
74196b4cac81SBjoern A. Zeeb 	struct lkpi_txq *ltxq;
74200cbcfa19SBjoern A. Zeeb 	struct lkpi_vif *lvif;
74216b4cac81SBjoern A. Zeeb 	struct sk_buff *skb;
74226b4cac81SBjoern A. Zeeb 
7423bc24342dSBjoern A. Zeeb 	IMPROVE("wiphy_lock? or assert?");
74240cbcfa19SBjoern A. Zeeb 	skb = NULL;
74256b4cac81SBjoern A. Zeeb 	ltxq = TXQ_TO_LTXQ(txq);
74266b4cac81SBjoern A. Zeeb 	ltxq->seen_dequeue = true;
74276b4cac81SBjoern A. Zeeb 
74280cbcfa19SBjoern A. Zeeb 	if (ltxq->stopped)
74290cbcfa19SBjoern A. Zeeb 		goto stopped;
74300cbcfa19SBjoern A. Zeeb 
74310cbcfa19SBjoern A. Zeeb 	lvif = VIF_TO_LVIF(ltxq->txq.vif);
74320cbcfa19SBjoern A. Zeeb 	if (lvif->hw_queue_stopped[ltxq->txq.ac]) {
74330cbcfa19SBjoern A. Zeeb 		ltxq->stopped = true;
74340cbcfa19SBjoern A. Zeeb 		goto stopped;
74350cbcfa19SBjoern A. Zeeb 	}
74360cbcfa19SBjoern A. Zeeb 
7437eac3646fSBjoern A. Zeeb 	IMPROVE("hw(TX_FRAG_LIST)");
7438eac3646fSBjoern A. Zeeb 
7439eac3646fSBjoern A. Zeeb 	LKPI_80211_LTXQ_LOCK(ltxq);
74406b4cac81SBjoern A. Zeeb 	skb = skb_dequeue(&ltxq->skbq);
7441eac3646fSBjoern A. Zeeb 	LKPI_80211_LTXQ_UNLOCK(ltxq);
74426b4cac81SBjoern A. Zeeb 
74430cbcfa19SBjoern A. Zeeb stopped:
74446b4cac81SBjoern A. Zeeb 	return (skb);
74456b4cac81SBjoern A. Zeeb }
74466b4cac81SBjoern A. Zeeb 
74476b4cac81SBjoern A. Zeeb void
74486b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_txq_get_depth(struct ieee80211_txq *txq,
744986220d3cSBjoern A. Zeeb     unsigned long *frame_cnt, unsigned long *byte_cnt)
74506b4cac81SBjoern A. Zeeb {
74516b4cac81SBjoern A. Zeeb 	struct lkpi_txq *ltxq;
74526b4cac81SBjoern A. Zeeb 	struct sk_buff *skb;
745386220d3cSBjoern A. Zeeb 	unsigned long fc, bc;
74546b4cac81SBjoern A. Zeeb 
74556b4cac81SBjoern A. Zeeb 	ltxq = TXQ_TO_LTXQ(txq);
74566b4cac81SBjoern A. Zeeb 
74576b4cac81SBjoern A. Zeeb 	fc = bc = 0;
7458eac3646fSBjoern A. Zeeb 	LKPI_80211_LTXQ_LOCK(ltxq);
74596b4cac81SBjoern A. Zeeb 	skb_queue_walk(&ltxq->skbq, skb) {
74606b4cac81SBjoern A. Zeeb 		fc++;
74616b4cac81SBjoern A. Zeeb 		bc += skb->len;
74626b4cac81SBjoern A. Zeeb 	}
7463eac3646fSBjoern A. Zeeb 	LKPI_80211_LTXQ_UNLOCK(ltxq);
74646b4cac81SBjoern A. Zeeb 	if (frame_cnt)
74656b4cac81SBjoern A. Zeeb 		*frame_cnt = fc;
74666b4cac81SBjoern A. Zeeb 	if (byte_cnt)
74676b4cac81SBjoern A. Zeeb 		*byte_cnt = bc;
74686b4cac81SBjoern A. Zeeb 
74696b4cac81SBjoern A. Zeeb 	/* Validate that this is doing the correct thing. */
74706b4cac81SBjoern A. Zeeb 	/* Should we keep track on en/dequeue? */
74716b4cac81SBjoern A. Zeeb 	IMPROVE();
74726b4cac81SBjoern A. Zeeb }
74736b4cac81SBjoern A. Zeeb 
74746b4cac81SBjoern A. Zeeb /*
74756b4cac81SBjoern A. Zeeb  * We are called from ieee80211_free_txskb() or ieee80211_tx_status().
74766b4cac81SBjoern A. Zeeb  * The latter tries to derive the success status from the info flags
74776b4cac81SBjoern A. Zeeb  * passed back from the driver.  rawx_mit() saves the ni on the m and the
74786b4cac81SBjoern A. Zeeb  * m on the skb for us to be able to give feedback to net80211.
74796b4cac81SBjoern A. Zeeb  */
7480a8397571SBjoern A. Zeeb static void
7481a8397571SBjoern A. Zeeb _lkpi_ieee80211_free_txskb(struct ieee80211_hw *hw, struct sk_buff *skb,
74826b4cac81SBjoern A. Zeeb     int status)
74836b4cac81SBjoern A. Zeeb {
74846b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
74856b4cac81SBjoern A. Zeeb 	struct mbuf *m;
74866b4cac81SBjoern A. Zeeb 
74876b4cac81SBjoern A. Zeeb 	m = skb->m;
74886b4cac81SBjoern A. Zeeb 	skb->m = NULL;
74896b4cac81SBjoern A. Zeeb 
74906b4cac81SBjoern A. Zeeb 	if (m != NULL) {
74916b4cac81SBjoern A. Zeeb 		ni = m->m_pkthdr.PH_loc.ptr;
74926b4cac81SBjoern A. Zeeb 		/* Status: 0 is ok, != 0 is error. */
74936b4cac81SBjoern A. Zeeb 		ieee80211_tx_complete(ni, m, status);
74946b4cac81SBjoern A. Zeeb 		/* ni & mbuf were consumed. */
74956b4cac81SBjoern A. Zeeb 	}
7496a8397571SBjoern A. Zeeb }
74976b4cac81SBjoern A. Zeeb 
7498a8397571SBjoern A. Zeeb void
7499a8397571SBjoern A. Zeeb linuxkpi_ieee80211_free_txskb(struct ieee80211_hw *hw, struct sk_buff *skb,
7500a8397571SBjoern A. Zeeb     int status)
7501a8397571SBjoern A. Zeeb {
7502a8397571SBjoern A. Zeeb 
7503a8397571SBjoern A. Zeeb 	_lkpi_ieee80211_free_txskb(hw, skb, status);
75046b4cac81SBjoern A. Zeeb 	kfree_skb(skb);
75056b4cac81SBjoern A. Zeeb }
75066b4cac81SBjoern A. Zeeb 
7507383b3e8fSBjoern A. Zeeb void
7508a8397571SBjoern A. Zeeb linuxkpi_ieee80211_tx_status_ext(struct ieee80211_hw *hw,
7509a8397571SBjoern A. Zeeb     struct ieee80211_tx_status *txstat)
7510383b3e8fSBjoern A. Zeeb {
7511a8397571SBjoern A. Zeeb 	struct sk_buff *skb;
7512383b3e8fSBjoern A. Zeeb 	struct ieee80211_tx_info *info;
7513383b3e8fSBjoern A. Zeeb 	struct ieee80211_ratectl_tx_status txs;
7514383b3e8fSBjoern A. Zeeb 	struct ieee80211_node *ni;
7515383b3e8fSBjoern A. Zeeb 	int status;
7516383b3e8fSBjoern A. Zeeb 
7517a8397571SBjoern A. Zeeb 	skb = txstat->skb;
7518383b3e8fSBjoern A. Zeeb 	if (skb->m != NULL) {
7519383b3e8fSBjoern A. Zeeb 		struct mbuf *m;
7520383b3e8fSBjoern A. Zeeb 
7521383b3e8fSBjoern A. Zeeb 		m = skb->m;
7522383b3e8fSBjoern A. Zeeb 		ni = m->m_pkthdr.PH_loc.ptr;
7523383b3e8fSBjoern A. Zeeb 		memset(&txs, 0, sizeof(txs));
7524383b3e8fSBjoern A. Zeeb 	} else {
7525383b3e8fSBjoern A. Zeeb 		ni = NULL;
7526383b3e8fSBjoern A. Zeeb 	}
7527383b3e8fSBjoern A. Zeeb 
7528a8397571SBjoern A. Zeeb 	info = txstat->info;
7529383b3e8fSBjoern A. Zeeb 	if (info->flags & IEEE80211_TX_STAT_ACK) {
7530383b3e8fSBjoern A. Zeeb 		status = 0;	/* No error. */
7531383b3e8fSBjoern A. Zeeb 		txs.status = IEEE80211_RATECTL_TX_SUCCESS;
7532383b3e8fSBjoern A. Zeeb 	} else {
7533383b3e8fSBjoern A. Zeeb 		status = 1;
7534383b3e8fSBjoern A. Zeeb 		txs.status = IEEE80211_RATECTL_TX_FAIL_UNSPECIFIED;
7535383b3e8fSBjoern A. Zeeb 	}
7536383b3e8fSBjoern A. Zeeb 
7537383b3e8fSBjoern A. Zeeb 	if (ni != NULL) {
7538383b3e8fSBjoern A. Zeeb 		txs.pktlen = skb->len;
7539383b3e8fSBjoern A. Zeeb 		txs.flags |= IEEE80211_RATECTL_STATUS_PKTLEN;
7540383b3e8fSBjoern A. Zeeb 		if (info->status.rates[0].count > 1) {
7541383b3e8fSBjoern A. Zeeb 			txs.long_retries = info->status.rates[0].count - 1;	/* 1 + retries in drivers. */
7542383b3e8fSBjoern A. Zeeb 			txs.flags |= IEEE80211_RATECTL_STATUS_LONG_RETRY;
7543383b3e8fSBjoern A. Zeeb 		}
7544383b3e8fSBjoern A. Zeeb #if 0		/* Unused in net80211 currently. */
7545a8397571SBjoern A. Zeeb 		/* XXX-BZ convert check .flags for MCS/VHT/.. */
7546383b3e8fSBjoern A. Zeeb 		txs.final_rate = info->status.rates[0].idx;
7547383b3e8fSBjoern A. Zeeb 		txs.flags |= IEEE80211_RATECTL_STATUS_FINAL_RATE;
7548383b3e8fSBjoern A. Zeeb #endif
7549adff403fSBjoern A. Zeeb 		if (info->status.flags & IEEE80211_TX_STATUS_ACK_SIGNAL_VALID) {
7550383b3e8fSBjoern A. Zeeb 			txs.rssi = info->status.ack_signal;		/* XXX-BZ CONVERT? */
7551383b3e8fSBjoern A. Zeeb 			txs.flags |= IEEE80211_RATECTL_STATUS_RSSI;
7552383b3e8fSBjoern A. Zeeb 		}
7553383b3e8fSBjoern A. Zeeb 
7554d1a37f28SBjoern A. Zeeb 		IMPROVE("only update rate if needed but that requires us to get a proper rate from mo_sta_statistics");
7555383b3e8fSBjoern A. Zeeb 		ieee80211_ratectl_tx_complete(ni, &txs);
755646de4d9fSAdrian Chadd 		ieee80211_ratectl_rate(ni->ni_vap->iv_bss, NULL, 0);
7557383b3e8fSBjoern A. Zeeb 
7558383b3e8fSBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
7559383b3e8fSBjoern A. Zeeb 		if (linuxkpi_debug_80211 & D80211_TRACE_TX) {
7560d1a37f28SBjoern A. Zeeb 			printf("TX-RATE: %s: long_retries %d\n", __func__,
756146de4d9fSAdrian Chadd 			    txs.long_retries);
7562383b3e8fSBjoern A. Zeeb 		}
7563383b3e8fSBjoern A. Zeeb #endif
7564383b3e8fSBjoern A. Zeeb 	}
7565383b3e8fSBjoern A. Zeeb 
7566383b3e8fSBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
7567383b3e8fSBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_TX)
7568383b3e8fSBjoern A. Zeeb 		printf("TX-STATUS: %s: hw %p skb %p status %d : flags %#x "
7569383b3e8fSBjoern A. Zeeb 		    "band %u hw_queue %u tx_time_est %d : "
7570383b3e8fSBjoern A. Zeeb 		    "rates [ %u %u %#x, %u %u %#x, %u %u %#x, %u %u %#x ] "
7571383b3e8fSBjoern A. Zeeb 		    "ack_signal %u ampdu_ack_len %u ampdu_len %u antenna %u "
7572adff403fSBjoern A. Zeeb 		    "tx_time %u flags %#x "
7573383b3e8fSBjoern A. Zeeb 		    "status_driver_data [ %p %p ]\n",
7574383b3e8fSBjoern A. Zeeb 		    __func__, hw, skb, status, info->flags,
7575383b3e8fSBjoern A. Zeeb 		    info->band, info->hw_queue, info->tx_time_est,
7576383b3e8fSBjoern A. Zeeb 		    info->status.rates[0].idx, info->status.rates[0].count,
7577383b3e8fSBjoern A. Zeeb 		    info->status.rates[0].flags,
7578383b3e8fSBjoern A. Zeeb 		    info->status.rates[1].idx, info->status.rates[1].count,
7579383b3e8fSBjoern A. Zeeb 		    info->status.rates[1].flags,
7580383b3e8fSBjoern A. Zeeb 		    info->status.rates[2].idx, info->status.rates[2].count,
7581383b3e8fSBjoern A. Zeeb 		    info->status.rates[2].flags,
7582383b3e8fSBjoern A. Zeeb 		    info->status.rates[3].idx, info->status.rates[3].count,
7583383b3e8fSBjoern A. Zeeb 		    info->status.rates[3].flags,
7584383b3e8fSBjoern A. Zeeb 		    info->status.ack_signal, info->status.ampdu_ack_len,
7585383b3e8fSBjoern A. Zeeb 		    info->status.ampdu_len, info->status.antenna,
7586adff403fSBjoern A. Zeeb 		    info->status.tx_time, info->status.flags,
7587383b3e8fSBjoern A. Zeeb 		    info->status.status_driver_data[0],
7588383b3e8fSBjoern A. Zeeb 		    info->status.status_driver_data[1]);
7589383b3e8fSBjoern A. Zeeb #endif
7590383b3e8fSBjoern A. Zeeb 
7591a8397571SBjoern A. Zeeb 	if (txstat->free_list) {
7592a8397571SBjoern A. Zeeb 		_lkpi_ieee80211_free_txskb(hw, skb, status);
7593a8397571SBjoern A. Zeeb 		list_add_tail(&skb->list, txstat->free_list);
7594a8397571SBjoern A. Zeeb 	} else {
7595383b3e8fSBjoern A. Zeeb 		linuxkpi_ieee80211_free_txskb(hw, skb, status);
7596383b3e8fSBjoern A. Zeeb 	}
7597a8397571SBjoern A. Zeeb }
7598a8397571SBjoern A. Zeeb 
7599a8397571SBjoern A. Zeeb void
7600a8397571SBjoern A. Zeeb linuxkpi_ieee80211_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb)
7601a8397571SBjoern A. Zeeb {
7602a8397571SBjoern A. Zeeb 	struct ieee80211_tx_status status;
7603a8397571SBjoern A. Zeeb 
7604a8397571SBjoern A. Zeeb 	memset(&status, 0, sizeof(status));
7605a8397571SBjoern A. Zeeb 	status.info = IEEE80211_SKB_CB(skb);
7606a8397571SBjoern A. Zeeb 	status.skb = skb;
7607a8397571SBjoern A. Zeeb 	/* sta, n_rates, rates, free_list? */
7608a8397571SBjoern A. Zeeb 
7609a8397571SBjoern A. Zeeb 	ieee80211_tx_status_ext(hw, &status);
7610a8397571SBjoern A. Zeeb }
7611383b3e8fSBjoern A. Zeeb 
76126b4cac81SBjoern A. Zeeb /*
76136b4cac81SBjoern A. Zeeb  * This is an internal bandaid for the moment for the way we glue
76146b4cac81SBjoern A. Zeeb  * skbs and mbufs together for TX.  Once we have skbs backed by
76156b4cac81SBjoern A. Zeeb  * mbufs this should go away.
76166b4cac81SBjoern A. Zeeb  * This is a public function but kept on the private KPI (lkpi_)
76176b4cac81SBjoern A. Zeeb  * and is not exposed by a header file.
76186b4cac81SBjoern A. Zeeb  */
76196b4cac81SBjoern A. Zeeb static void
76206b4cac81SBjoern A. Zeeb lkpi_ieee80211_free_skb_mbuf(void *p)
76216b4cac81SBjoern A. Zeeb {
76226b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
76236b4cac81SBjoern A. Zeeb 	struct mbuf *m;
76246b4cac81SBjoern A. Zeeb 
76256b4cac81SBjoern A. Zeeb 	if (p == NULL)
76266b4cac81SBjoern A. Zeeb 		return;
76276b4cac81SBjoern A. Zeeb 
76286b4cac81SBjoern A. Zeeb 	m = (struct mbuf *)p;
76296b4cac81SBjoern A. Zeeb 	M_ASSERTPKTHDR(m);
76306b4cac81SBjoern A. Zeeb 
76316b4cac81SBjoern A. Zeeb 	ni = m->m_pkthdr.PH_loc.ptr;
76326b4cac81SBjoern A. Zeeb 	m->m_pkthdr.PH_loc.ptr = NULL;
76336b4cac81SBjoern A. Zeeb 	if (ni != NULL)
76346b4cac81SBjoern A. Zeeb 		ieee80211_free_node(ni);
76356b4cac81SBjoern A. Zeeb 	m_freem(m);
76366b4cac81SBjoern A. Zeeb }
76376b4cac81SBjoern A. Zeeb 
76386b4cac81SBjoern A. Zeeb void
76396b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_queue_delayed_work(struct ieee80211_hw *hw,
76406b4cac81SBjoern A. Zeeb     struct delayed_work *w, int delay)
76416b4cac81SBjoern A. Zeeb {
76426b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
76436b4cac81SBjoern A. Zeeb 
76446b4cac81SBjoern A. Zeeb 	/* Need to make sure hw is in a stable (non-suspended) state. */
76456b4cac81SBjoern A. Zeeb 	IMPROVE();
76466b4cac81SBjoern A. Zeeb 
76476b4cac81SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
76486b4cac81SBjoern A. Zeeb 	queue_delayed_work(lhw->workq, w, delay);
76496b4cac81SBjoern A. Zeeb }
76506b4cac81SBjoern A. Zeeb 
76516b4cac81SBjoern A. Zeeb void
76526b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_queue_work(struct ieee80211_hw *hw,
76536b4cac81SBjoern A. Zeeb     struct work_struct *w)
76546b4cac81SBjoern A. Zeeb {
76556b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
76566b4cac81SBjoern A. Zeeb 
76576b4cac81SBjoern A. Zeeb 	/* Need to make sure hw is in a stable (non-suspended) state. */
76586b4cac81SBjoern A. Zeeb 	IMPROVE();
76596b4cac81SBjoern A. Zeeb 
76606b4cac81SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
76616b4cac81SBjoern A. Zeeb 	queue_work(lhw->workq, w);
76626b4cac81SBjoern A. Zeeb }
76636b4cac81SBjoern A. Zeeb 
76646b4cac81SBjoern A. Zeeb struct sk_buff *
7665ade774b1SBjoern A. Zeeb linuxkpi_ieee80211_probereq_get(struct ieee80211_hw *hw, uint8_t *addr,
7666ade774b1SBjoern A. Zeeb     uint8_t *ssid, size_t ssid_len, size_t tailroom)
7667ade774b1SBjoern A. Zeeb {
7668ade774b1SBjoern A. Zeeb 	struct sk_buff *skb;
7669ade774b1SBjoern A. Zeeb 	struct ieee80211_frame *wh;
7670ade774b1SBjoern A. Zeeb 	uint8_t *p;
7671ade774b1SBjoern A. Zeeb 	size_t len;
7672ade774b1SBjoern A. Zeeb 
7673ade774b1SBjoern A. Zeeb 	len = sizeof(*wh);
7674ade774b1SBjoern A. Zeeb 	len += 2 + ssid_len;
7675ade774b1SBjoern A. Zeeb 
7676ade774b1SBjoern A. Zeeb 	skb = dev_alloc_skb(hw->extra_tx_headroom + len + tailroom);
7677ade774b1SBjoern A. Zeeb 	if (skb == NULL)
7678ade774b1SBjoern A. Zeeb 		return (NULL);
7679ade774b1SBjoern A. Zeeb 
7680ade774b1SBjoern A. Zeeb 	skb_reserve(skb, hw->extra_tx_headroom);
7681ade774b1SBjoern A. Zeeb 
7682ade774b1SBjoern A. Zeeb 	wh = skb_put_zero(skb, sizeof(*wh));
7683ade774b1SBjoern A. Zeeb 	wh->i_fc[0] = IEEE80211_FC0_VERSION_0;
7684ade774b1SBjoern A. Zeeb 	wh->i_fc[0] |= IEEE80211_FC0_SUBTYPE_PROBE_REQ | IEEE80211_FC0_TYPE_MGT;
7685ade774b1SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(wh->i_addr1, ieee80211broadcastaddr);
7686ade774b1SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(wh->i_addr2, addr);
7687ade774b1SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(wh->i_addr3, ieee80211broadcastaddr);
7688ade774b1SBjoern A. Zeeb 
7689ade774b1SBjoern A. Zeeb 	p = skb_put(skb, 2 + ssid_len);
7690ade774b1SBjoern A. Zeeb 	*p++ = IEEE80211_ELEMID_SSID;
7691ade774b1SBjoern A. Zeeb 	*p++ = ssid_len;
7692ade774b1SBjoern A. Zeeb 	if (ssid_len > 0)
7693ade774b1SBjoern A. Zeeb 		memcpy(p, ssid, ssid_len);
7694ade774b1SBjoern A. Zeeb 
7695ade774b1SBjoern A. Zeeb 	return (skb);
7696ade774b1SBjoern A. Zeeb }
7697ade774b1SBjoern A. Zeeb 
7698ade774b1SBjoern A. Zeeb struct sk_buff *
76996b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_pspoll_get(struct ieee80211_hw *hw,
77006b4cac81SBjoern A. Zeeb     struct ieee80211_vif *vif)
77016b4cac81SBjoern A. Zeeb {
77026b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
77036b4cac81SBjoern A. Zeeb 	struct ieee80211vap *vap;
77046b4cac81SBjoern A. Zeeb 	struct sk_buff *skb;
77056b4cac81SBjoern A. Zeeb 	struct ieee80211_frame_pspoll *psp;
77066b4cac81SBjoern A. Zeeb 	uint16_t v;
77076b4cac81SBjoern A. Zeeb 
77086b4cac81SBjoern A. Zeeb 	skb = dev_alloc_skb(hw->extra_tx_headroom + sizeof(*psp));
77096b4cac81SBjoern A. Zeeb 	if (skb == NULL)
77106b4cac81SBjoern A. Zeeb 		return (NULL);
77116b4cac81SBjoern A. Zeeb 
77126b4cac81SBjoern A. Zeeb 	skb_reserve(skb, hw->extra_tx_headroom);
77136b4cac81SBjoern A. Zeeb 
77146b4cac81SBjoern A. Zeeb 	lvif = VIF_TO_LVIF(vif);
77156b4cac81SBjoern A. Zeeb 	vap = LVIF_TO_VAP(lvif);
77166b4cac81SBjoern A. Zeeb 
77176b4cac81SBjoern A. Zeeb 	psp = skb_put_zero(skb, sizeof(*psp));
77186b4cac81SBjoern A. Zeeb 	psp->i_fc[0] = IEEE80211_FC0_VERSION_0;
77196b4cac81SBjoern A. Zeeb 	psp->i_fc[0] |= IEEE80211_FC0_SUBTYPE_PS_POLL | IEEE80211_FC0_TYPE_CTL;
7720616e1330SBjoern A. Zeeb 	v = htole16(vif->cfg.aid | 1<<15 | 1<<16);
77216b4cac81SBjoern A. Zeeb 	memcpy(&psp->i_aid, &v, sizeof(v));
77226b4cac81SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(psp->i_bssid, vap->iv_bss->ni_macaddr);
77236b4cac81SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(psp->i_ta, vif->addr);
77246b4cac81SBjoern A. Zeeb 
77256b4cac81SBjoern A. Zeeb 	return (skb);
77266b4cac81SBjoern A. Zeeb }
77276b4cac81SBjoern A. Zeeb 
77286b4cac81SBjoern A. Zeeb struct sk_buff *
77296b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_nullfunc_get(struct ieee80211_hw *hw,
7730adff403fSBjoern A. Zeeb     struct ieee80211_vif *vif, int linkid, bool qos)
77316b4cac81SBjoern A. Zeeb {
77326b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
77336b4cac81SBjoern A. Zeeb 	struct ieee80211vap *vap;
77346b4cac81SBjoern A. Zeeb 	struct sk_buff *skb;
77356b4cac81SBjoern A. Zeeb 	struct ieee80211_frame *nullf;
77366b4cac81SBjoern A. Zeeb 
7737adff403fSBjoern A. Zeeb 	IMPROVE("linkid");
7738adff403fSBjoern A. Zeeb 
77396b4cac81SBjoern A. Zeeb 	skb = dev_alloc_skb(hw->extra_tx_headroom + sizeof(*nullf));
77406b4cac81SBjoern A. Zeeb 	if (skb == NULL)
77416b4cac81SBjoern A. Zeeb 		return (NULL);
77426b4cac81SBjoern A. Zeeb 
77436b4cac81SBjoern A. Zeeb 	skb_reserve(skb, hw->extra_tx_headroom);
77446b4cac81SBjoern A. Zeeb 
77456b4cac81SBjoern A. Zeeb 	lvif = VIF_TO_LVIF(vif);
77466b4cac81SBjoern A. Zeeb 	vap = LVIF_TO_VAP(lvif);
77476b4cac81SBjoern A. Zeeb 
77486b4cac81SBjoern A. Zeeb 	nullf = skb_put_zero(skb, sizeof(*nullf));
77496b4cac81SBjoern A. Zeeb 	nullf->i_fc[0] = IEEE80211_FC0_VERSION_0;
77506b4cac81SBjoern A. Zeeb 	nullf->i_fc[0] |= IEEE80211_FC0_SUBTYPE_NODATA | IEEE80211_FC0_TYPE_DATA;
77516b4cac81SBjoern A. Zeeb 	nullf->i_fc[1] = IEEE80211_FC1_DIR_TODS;
77526b4cac81SBjoern A. Zeeb 
77536b4cac81SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(nullf->i_addr1, vap->iv_bss->ni_bssid);
77546b4cac81SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(nullf->i_addr2, vif->addr);
77556b4cac81SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(nullf->i_addr3, vap->iv_bss->ni_macaddr);
77566b4cac81SBjoern A. Zeeb 
77576b4cac81SBjoern A. Zeeb 	return (skb);
77586b4cac81SBjoern A. Zeeb }
77596b4cac81SBjoern A. Zeeb 
77606b4cac81SBjoern A. Zeeb struct wireless_dev *
77616b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_vif_to_wdev(struct ieee80211_vif *vif)
77626b4cac81SBjoern A. Zeeb {
77636b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
77646b4cac81SBjoern A. Zeeb 
77656b4cac81SBjoern A. Zeeb 	lvif = VIF_TO_LVIF(vif);
77666b4cac81SBjoern A. Zeeb 	return (&lvif->wdev);
77676b4cac81SBjoern A. Zeeb }
77686b4cac81SBjoern A. Zeeb 
77696b4cac81SBjoern A. Zeeb void
77706b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_connection_loss(struct ieee80211_vif *vif)
77716b4cac81SBjoern A. Zeeb {
77726b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
77736b4cac81SBjoern A. Zeeb 	struct ieee80211vap *vap;
77746b4cac81SBjoern A. Zeeb 	enum ieee80211_state nstate;
77756b4cac81SBjoern A. Zeeb 	int arg;
77766b4cac81SBjoern A. Zeeb 
77776b4cac81SBjoern A. Zeeb 	lvif = VIF_TO_LVIF(vif);
77786b4cac81SBjoern A. Zeeb 	vap = LVIF_TO_VAP(lvif);
77796b4cac81SBjoern A. Zeeb 
77806b4cac81SBjoern A. Zeeb 	/*
7781f3229b62SBjoern A. Zeeb 	 * Go to init; otherwise we need to elaborately check state and
77826b4cac81SBjoern A. Zeeb 	 * handle accordingly, e.g., if in RUN we could call iv_bmiss.
77836b4cac81SBjoern A. Zeeb 	 * Let the statemachine handle all neccessary changes.
77846b4cac81SBjoern A. Zeeb 	 */
7785f3229b62SBjoern A. Zeeb 	nstate = IEEE80211_S_INIT;
7786bb81db90SBjoern A. Zeeb 	arg = 0;	/* Not a valid reason. */
77876b4cac81SBjoern A. Zeeb 
7788018d93ecSBjoern A. Zeeb 	ic_printf(vap->iv_ic, "%s: vif %p vap %p state %s\n", __func__,
7789018d93ecSBjoern A. Zeeb 	    vif, vap, ieee80211_state_name[vap->iv_state]);
77906b4cac81SBjoern A. Zeeb 	ieee80211_new_state(vap, nstate, arg);
77916b4cac81SBjoern A. Zeeb }
77926b4cac81SBjoern A. Zeeb 
7793bb81db90SBjoern A. Zeeb void
7794bb81db90SBjoern A. Zeeb linuxkpi_ieee80211_beacon_loss(struct ieee80211_vif *vif)
7795bb81db90SBjoern A. Zeeb {
7796bb81db90SBjoern A. Zeeb 	struct lkpi_vif *lvif;
7797bb81db90SBjoern A. Zeeb 	struct ieee80211vap *vap;
7798bb81db90SBjoern A. Zeeb 
7799bb81db90SBjoern A. Zeeb 	lvif = VIF_TO_LVIF(vif);
7800bb81db90SBjoern A. Zeeb 	vap = LVIF_TO_VAP(lvif);
7801bb81db90SBjoern A. Zeeb 
7802bb81db90SBjoern A. Zeeb 	ic_printf(vap->iv_ic, "%s: vif %p vap %p state %s\n", __func__,
7803bb81db90SBjoern A. Zeeb 	    vif, vap, ieee80211_state_name[vap->iv_state]);
78043540911bSBjoern A. Zeeb 	ieee80211_beacon_miss(vap->iv_ic);
7805bb81db90SBjoern A. Zeeb }
7806bb81db90SBjoern A. Zeeb 
78075edde07cSBjoern A. Zeeb /* -------------------------------------------------------------------------- */
78085edde07cSBjoern A. Zeeb 
78095a9a0d78SBjoern A. Zeeb void
78105a9a0d78SBjoern A. Zeeb linuxkpi_ieee80211_stop_queue(struct ieee80211_hw *hw, int qnum)
78115a9a0d78SBjoern A. Zeeb {
78125a9a0d78SBjoern A. Zeeb 	struct lkpi_hw *lhw;
78135a9a0d78SBjoern A. Zeeb 	struct lkpi_vif *lvif;
78145a9a0d78SBjoern A. Zeeb 	struct ieee80211_vif *vif;
78155a9a0d78SBjoern A. Zeeb 	int ac_count, ac;
78165a9a0d78SBjoern A. Zeeb 
78175a9a0d78SBjoern A. Zeeb 	KASSERT(qnum < hw->queues, ("%s: qnum %d >= hw->queues %d, hw %p\n",
78185a9a0d78SBjoern A. Zeeb 	    __func__, qnum, hw->queues, hw));
78195a9a0d78SBjoern A. Zeeb 
78205a9a0d78SBjoern A. Zeeb 	lhw = wiphy_priv(hw->wiphy);
78215a9a0d78SBjoern A. Zeeb 
78225a9a0d78SBjoern A. Zeeb 	/* See lkpi_ic_vap_create(). */
78235a9a0d78SBjoern A. Zeeb 	if (hw->queues >= IEEE80211_NUM_ACS)
78245a9a0d78SBjoern A. Zeeb 		ac_count = IEEE80211_NUM_ACS;
78255a9a0d78SBjoern A. Zeeb 	else
78265a9a0d78SBjoern A. Zeeb 		ac_count = 1;
78275a9a0d78SBjoern A. Zeeb 
78285a9a0d78SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_LOCK(lhw);
78295a9a0d78SBjoern A. Zeeb 	TAILQ_FOREACH(lvif, &lhw->lvif_head, lvif_entry) {
78305a9a0d78SBjoern A. Zeeb 
78315a9a0d78SBjoern A. Zeeb 		vif = LVIF_TO_VIF(lvif);
78325a9a0d78SBjoern A. Zeeb 		for (ac = 0; ac < ac_count; ac++) {
78335a9a0d78SBjoern A. Zeeb 			IMPROVE_TXQ("LOCKING");
78345a9a0d78SBjoern A. Zeeb 			if (qnum == vif->hw_queue[ac]) {
78350d2cb6a6SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
78365a9a0d78SBjoern A. Zeeb 				/*
78375a9a0d78SBjoern A. Zeeb 				 * For now log this to better understand
78385a9a0d78SBjoern A. Zeeb 				 * how this is supposed to work.
78395a9a0d78SBjoern A. Zeeb 				 */
78400d2cb6a6SBjoern A. Zeeb 				if (lvif->hw_queue_stopped[ac] &&
78410d2cb6a6SBjoern A. Zeeb 				    (linuxkpi_debug_80211 & D80211_IMPROVE_TXQ) != 0)
78425a9a0d78SBjoern A. Zeeb 					ic_printf(lhw->ic, "%s:%d: lhw %p hw %p "
78435a9a0d78SBjoern A. Zeeb 					    "lvif %p vif %p ac %d qnum %d already "
78445a9a0d78SBjoern A. Zeeb 					    "stopped\n", __func__, __LINE__,
78455a9a0d78SBjoern A. Zeeb 					    lhw, hw, lvif, vif, ac, qnum);
78460d2cb6a6SBjoern A. Zeeb #endif
78475a9a0d78SBjoern A. Zeeb 				lvif->hw_queue_stopped[ac] = true;
78485a9a0d78SBjoern A. Zeeb 			}
78495a9a0d78SBjoern A. Zeeb 		}
78505a9a0d78SBjoern A. Zeeb 	}
78515a9a0d78SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_UNLOCK(lhw);
78525a9a0d78SBjoern A. Zeeb }
78535a9a0d78SBjoern A. Zeeb 
78545a9a0d78SBjoern A. Zeeb void
78555a9a0d78SBjoern A. Zeeb linuxkpi_ieee80211_stop_queues(struct ieee80211_hw *hw)
78565a9a0d78SBjoern A. Zeeb {
78575a9a0d78SBjoern A. Zeeb 	int i;
78585a9a0d78SBjoern A. Zeeb 
78595a9a0d78SBjoern A. Zeeb 	IMPROVE_TXQ("Locking; do we need further info?");
78605a9a0d78SBjoern A. Zeeb 	for (i = 0; i < hw->queues; i++)
78615a9a0d78SBjoern A. Zeeb 		linuxkpi_ieee80211_stop_queue(hw, i);
78625a9a0d78SBjoern A. Zeeb }
78635a9a0d78SBjoern A. Zeeb 
78645a9a0d78SBjoern A. Zeeb 
78655a9a0d78SBjoern A. Zeeb static void
78665a9a0d78SBjoern A. Zeeb lkpi_ieee80211_wake_queues(struct ieee80211_hw *hw, int hwq)
78675a9a0d78SBjoern A. Zeeb {
78685a9a0d78SBjoern A. Zeeb 	struct lkpi_hw *lhw;
78695a9a0d78SBjoern A. Zeeb 	struct lkpi_vif *lvif;
78705a9a0d78SBjoern A. Zeeb 	struct lkpi_sta *lsta;
78715a9a0d78SBjoern A. Zeeb 	int ac_count, ac, tid;
78725a9a0d78SBjoern A. Zeeb 
78735a9a0d78SBjoern A. Zeeb 	/* See lkpi_ic_vap_create(). */
78745a9a0d78SBjoern A. Zeeb 	if (hw->queues >= IEEE80211_NUM_ACS)
78755a9a0d78SBjoern A. Zeeb 		ac_count = IEEE80211_NUM_ACS;
78765a9a0d78SBjoern A. Zeeb 	else
78775a9a0d78SBjoern A. Zeeb 		ac_count = 1;
78785a9a0d78SBjoern A. Zeeb 
78795a9a0d78SBjoern A. Zeeb 	lhw = wiphy_priv(hw->wiphy);
78805a9a0d78SBjoern A. Zeeb 
78815a9a0d78SBjoern A. Zeeb 	IMPROVE_TXQ("Locking");
78825a9a0d78SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_LOCK(lhw);
78835a9a0d78SBjoern A. Zeeb 	TAILQ_FOREACH(lvif, &lhw->lvif_head, lvif_entry) {
78845a9a0d78SBjoern A. Zeeb 		struct ieee80211_vif *vif;
78855a9a0d78SBjoern A. Zeeb 
78865a9a0d78SBjoern A. Zeeb 		vif = LVIF_TO_VIF(lvif);
78875a9a0d78SBjoern A. Zeeb 		for (ac = 0; ac < ac_count; ac++) {
78885a9a0d78SBjoern A. Zeeb 
78895a9a0d78SBjoern A. Zeeb 			if (hwq == vif->hw_queue[ac]) {
78905a9a0d78SBjoern A. Zeeb 
78915a9a0d78SBjoern A. Zeeb 				/* XXX-BZ what about software scan? */
78925a9a0d78SBjoern A. Zeeb 
78930d2cb6a6SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
78945a9a0d78SBjoern A. Zeeb 				/*
78955a9a0d78SBjoern A. Zeeb 				 * For now log this to better understand
78965a9a0d78SBjoern A. Zeeb 				 * how this is supposed to work.
78975a9a0d78SBjoern A. Zeeb 				 */
78980d2cb6a6SBjoern A. Zeeb 				if (!lvif->hw_queue_stopped[ac] &&
78990d2cb6a6SBjoern A. Zeeb 				    (linuxkpi_debug_80211 & D80211_IMPROVE_TXQ) != 0)
79005a9a0d78SBjoern A. Zeeb 					ic_printf(lhw->ic, "%s:%d: lhw %p hw %p "
79015a9a0d78SBjoern A. Zeeb 					    "lvif %p vif %p ac %d hw_q not stopped\n",
79025a9a0d78SBjoern A. Zeeb 					    __func__, __LINE__,
79035a9a0d78SBjoern A. Zeeb 					    lhw, hw, lvif, vif, ac);
79040d2cb6a6SBjoern A. Zeeb #endif
79055a9a0d78SBjoern A. Zeeb 				lvif->hw_queue_stopped[ac] = false;
79065a9a0d78SBjoern A. Zeeb 
7907a8f735a6SBjoern A. Zeeb 				rcu_read_lock();
7908a8f735a6SBjoern A. Zeeb 				list_for_each_entry_rcu(lsta, &lvif->lsta_list, lsta_list) {
79095a9a0d78SBjoern A. Zeeb 					struct ieee80211_sta *sta;
79105a9a0d78SBjoern A. Zeeb 
79115a9a0d78SBjoern A. Zeeb 					sta = LSTA_TO_STA(lsta);
79125a9a0d78SBjoern A. Zeeb 					for (tid = 0; tid < nitems(sta->txq); tid++) {
79135a9a0d78SBjoern A. Zeeb 						struct lkpi_txq *ltxq;
79145a9a0d78SBjoern A. Zeeb 
79155a9a0d78SBjoern A. Zeeb 						if (sta->txq[tid] == NULL)
79165a9a0d78SBjoern A. Zeeb 							continue;
79175a9a0d78SBjoern A. Zeeb 
79185a9a0d78SBjoern A. Zeeb 						if (sta->txq[tid]->ac != ac)
79195a9a0d78SBjoern A. Zeeb 							continue;
79205a9a0d78SBjoern A. Zeeb 
79215a9a0d78SBjoern A. Zeeb 						ltxq = TXQ_TO_LTXQ(sta->txq[tid]);
79225a9a0d78SBjoern A. Zeeb 						if (!ltxq->stopped)
79235a9a0d78SBjoern A. Zeeb 							continue;
79245a9a0d78SBjoern A. Zeeb 
79255a9a0d78SBjoern A. Zeeb 						ltxq->stopped = false;
79265a9a0d78SBjoern A. Zeeb 
7927bc24342dSBjoern A. Zeeb 						if (!skb_queue_empty(&ltxq->skbq))
79285a9a0d78SBjoern A. Zeeb 							lkpi_80211_mo_wake_tx_queue(hw, sta->txq[tid]);
79295a9a0d78SBjoern A. Zeeb 					}
79305a9a0d78SBjoern A. Zeeb 				}
7931a8f735a6SBjoern A. Zeeb 				rcu_read_unlock();
79325a9a0d78SBjoern A. Zeeb 			}
79335a9a0d78SBjoern A. Zeeb 		}
79345a9a0d78SBjoern A. Zeeb 	}
79355a9a0d78SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_UNLOCK(lhw);
79365a9a0d78SBjoern A. Zeeb }
79375a9a0d78SBjoern A. Zeeb 
7938bc24342dSBjoern A. Zeeb static void
7939bc24342dSBjoern A. Zeeb lkpi_ieee80211_wake_queues_locked(struct ieee80211_hw *hw)
79405a9a0d78SBjoern A. Zeeb {
79415a9a0d78SBjoern A. Zeeb 	int i;
79425a9a0d78SBjoern A. Zeeb 
79435a9a0d78SBjoern A. Zeeb 	IMPROVE_TXQ("Is this all/enough here?");
79445a9a0d78SBjoern A. Zeeb 	for (i = 0; i < hw->queues; i++)
79455a9a0d78SBjoern A. Zeeb 		lkpi_ieee80211_wake_queues(hw, i);
79465a9a0d78SBjoern A. Zeeb }
79475a9a0d78SBjoern A. Zeeb 
79485a9a0d78SBjoern A. Zeeb void
7949bc24342dSBjoern A. Zeeb linuxkpi_ieee80211_wake_queues(struct ieee80211_hw *hw)
7950bc24342dSBjoern A. Zeeb {
7951bc24342dSBjoern A. Zeeb 	wiphy_lock(hw->wiphy);
7952bc24342dSBjoern A. Zeeb 	lkpi_ieee80211_wake_queues_locked(hw);
7953bc24342dSBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
7954bc24342dSBjoern A. Zeeb }
7955bc24342dSBjoern A. Zeeb 
7956bc24342dSBjoern A. Zeeb void
79575a9a0d78SBjoern A. Zeeb linuxkpi_ieee80211_wake_queue(struct ieee80211_hw *hw, int qnum)
79585a9a0d78SBjoern A. Zeeb {
79595a9a0d78SBjoern A. Zeeb 
79605a9a0d78SBjoern A. Zeeb 	KASSERT(qnum < hw->queues, ("%s: qnum %d >= hw->queues %d, hw %p\n",
79615a9a0d78SBjoern A. Zeeb 	    __func__, qnum, hw->queues, hw));
79625a9a0d78SBjoern A. Zeeb 
7963bc24342dSBjoern A. Zeeb 	wiphy_lock(hw->wiphy);
79645a9a0d78SBjoern A. Zeeb 	lkpi_ieee80211_wake_queues(hw, qnum);
7965bc24342dSBjoern A. Zeeb 	wiphy_unlock(hw->wiphy);
79665a9a0d78SBjoern A. Zeeb }
79675a9a0d78SBjoern A. Zeeb 
79685a9a0d78SBjoern A. Zeeb /* This is just hardware queues. */
79695a9a0d78SBjoern A. Zeeb void
79705a9a0d78SBjoern A. Zeeb linuxkpi_ieee80211_txq_schedule_start(struct ieee80211_hw *hw, uint8_t ac)
79715a9a0d78SBjoern A. Zeeb {
79725a9a0d78SBjoern A. Zeeb 	struct lkpi_hw *lhw;
79735a9a0d78SBjoern A. Zeeb 
79745a9a0d78SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
79755a9a0d78SBjoern A. Zeeb 
79765a9a0d78SBjoern A. Zeeb 	IMPROVE_TXQ("Are there reasons why we wouldn't schedule?");
79775a9a0d78SBjoern A. Zeeb 	IMPROVE_TXQ("LOCKING");
79785a9a0d78SBjoern A. Zeeb 	if (++lhw->txq_generation[ac] == 0)
79795a9a0d78SBjoern A. Zeeb 		lhw->txq_generation[ac]++;
79805a9a0d78SBjoern A. Zeeb }
79815a9a0d78SBjoern A. Zeeb 
79825a9a0d78SBjoern A. Zeeb struct ieee80211_txq *
79835a9a0d78SBjoern A. Zeeb linuxkpi_ieee80211_next_txq(struct ieee80211_hw *hw, uint8_t ac)
79845a9a0d78SBjoern A. Zeeb {
79855a9a0d78SBjoern A. Zeeb 	struct lkpi_hw *lhw;
79865a9a0d78SBjoern A. Zeeb 	struct ieee80211_txq *txq;
79875a9a0d78SBjoern A. Zeeb 	struct lkpi_txq *ltxq;
79885a9a0d78SBjoern A. Zeeb 
79895a9a0d78SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
79905a9a0d78SBjoern A. Zeeb 	txq = NULL;
79915a9a0d78SBjoern A. Zeeb 
79925a9a0d78SBjoern A. Zeeb 	IMPROVE_TXQ("LOCKING");
79935a9a0d78SBjoern A. Zeeb 
79945a9a0d78SBjoern A. Zeeb 	/* Check that we are scheduled. */
79955a9a0d78SBjoern A. Zeeb 	if (lhw->txq_generation[ac] == 0)
79965a9a0d78SBjoern A. Zeeb 		goto out;
79975a9a0d78SBjoern A. Zeeb 
79985a9a0d78SBjoern A. Zeeb 	ltxq = TAILQ_FIRST(&lhw->scheduled_txqs[ac]);
79995a9a0d78SBjoern A. Zeeb 	if (ltxq == NULL)
80005a9a0d78SBjoern A. Zeeb 		goto out;
80015a9a0d78SBjoern A. Zeeb 	if (ltxq->txq_generation == lhw->txq_generation[ac])
80025a9a0d78SBjoern A. Zeeb 		goto out;
80035a9a0d78SBjoern A. Zeeb 
80045a9a0d78SBjoern A. Zeeb 	ltxq->txq_generation = lhw->txq_generation[ac];
80055a9a0d78SBjoern A. Zeeb 	TAILQ_REMOVE(&lhw->scheduled_txqs[ac], ltxq, txq_entry);
80065a9a0d78SBjoern A. Zeeb 	txq = &ltxq->txq;
80075a9a0d78SBjoern A. Zeeb 	TAILQ_ELEM_INIT(ltxq, txq_entry);
80085a9a0d78SBjoern A. Zeeb 
80095a9a0d78SBjoern A. Zeeb out:
80105a9a0d78SBjoern A. Zeeb 	return (txq);
80115a9a0d78SBjoern A. Zeeb }
80125a9a0d78SBjoern A. Zeeb 
80135a9a0d78SBjoern A. Zeeb void linuxkpi_ieee80211_schedule_txq(struct ieee80211_hw *hw,
80145a9a0d78SBjoern A. Zeeb     struct ieee80211_txq *txq, bool withoutpkts)
80155a9a0d78SBjoern A. Zeeb {
80165a9a0d78SBjoern A. Zeeb 	struct lkpi_hw *lhw;
80175a9a0d78SBjoern A. Zeeb 	struct lkpi_txq *ltxq;
8018eac3646fSBjoern A. Zeeb 	bool ltxq_empty;
80195a9a0d78SBjoern A. Zeeb 
80205a9a0d78SBjoern A. Zeeb 	ltxq = TXQ_TO_LTXQ(txq);
80215a9a0d78SBjoern A. Zeeb 
80225a9a0d78SBjoern A. Zeeb 	IMPROVE_TXQ("LOCKING");
80235a9a0d78SBjoern A. Zeeb 
80245a9a0d78SBjoern A. Zeeb 	/* Only schedule if work to do or asked to anyway. */
8025eac3646fSBjoern A. Zeeb 	LKPI_80211_LTXQ_LOCK(ltxq);
8026eac3646fSBjoern A. Zeeb 	ltxq_empty = skb_queue_empty(&ltxq->skbq);
8027eac3646fSBjoern A. Zeeb 	LKPI_80211_LTXQ_UNLOCK(ltxq);
8028eac3646fSBjoern A. Zeeb 	if (!withoutpkts && ltxq_empty)
80295a9a0d78SBjoern A. Zeeb 		goto out;
80305a9a0d78SBjoern A. Zeeb 
803141b746e0SAustin Shafer 	/*
803241b746e0SAustin Shafer 	 * Make sure we do not double-schedule. We do this by checking tqe_prev,
803341b746e0SAustin Shafer 	 * the previous entry in our tailq. tqe_prev is always valid if this entry
803441b746e0SAustin Shafer 	 * is queued, tqe_next may be NULL if this is the only element in the list.
803541b746e0SAustin Shafer 	 */
803641b746e0SAustin Shafer 	if (ltxq->txq_entry.tqe_prev != NULL)
80375a9a0d78SBjoern A. Zeeb 		goto out;
80385a9a0d78SBjoern A. Zeeb 
80395a9a0d78SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
80405a9a0d78SBjoern A. Zeeb 	TAILQ_INSERT_TAIL(&lhw->scheduled_txqs[txq->ac], ltxq, txq_entry);
80415a9a0d78SBjoern A. Zeeb out:
80425a9a0d78SBjoern A. Zeeb 	return;
80435a9a0d78SBjoern A. Zeeb }
80445a9a0d78SBjoern A. Zeeb 
8045eac3646fSBjoern A. Zeeb void
8046eac3646fSBjoern A. Zeeb linuxkpi_ieee80211_handle_wake_tx_queue(struct ieee80211_hw *hw,
8047eac3646fSBjoern A. Zeeb     struct ieee80211_txq *txq)
8048eac3646fSBjoern A. Zeeb {
8049eac3646fSBjoern A. Zeeb 	struct lkpi_hw *lhw;
8050eac3646fSBjoern A. Zeeb 	struct ieee80211_txq *ntxq;
8051eac3646fSBjoern A. Zeeb 	struct ieee80211_tx_control control;
8052eac3646fSBjoern A. Zeeb         struct sk_buff *skb;
8053eac3646fSBjoern A. Zeeb 
8054eac3646fSBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
8055eac3646fSBjoern A. Zeeb 
8056eac3646fSBjoern A. Zeeb 	LKPI_80211_LHW_TXQ_LOCK(lhw);
8057eac3646fSBjoern A. Zeeb 	ieee80211_txq_schedule_start(hw, txq->ac);
8058eac3646fSBjoern A. Zeeb 	do {
8059eac3646fSBjoern A. Zeeb 		ntxq = ieee80211_next_txq(hw, txq->ac);
8060eac3646fSBjoern A. Zeeb 		if (ntxq == NULL)
8061eac3646fSBjoern A. Zeeb 			break;
8062eac3646fSBjoern A. Zeeb 
8063eac3646fSBjoern A. Zeeb 		memset(&control, 0, sizeof(control));
8064eac3646fSBjoern A. Zeeb 		control.sta = ntxq->sta;
8065eac3646fSBjoern A. Zeeb 		do {
8066eac3646fSBjoern A. Zeeb 			skb = linuxkpi_ieee80211_tx_dequeue(hw, ntxq);
8067eac3646fSBjoern A. Zeeb 			if (skb == NULL)
8068eac3646fSBjoern A. Zeeb 				break;
8069eac3646fSBjoern A. Zeeb 			lkpi_80211_mo_tx(hw, &control, skb);
8070eac3646fSBjoern A. Zeeb 		} while(1);
8071eac3646fSBjoern A. Zeeb 
8072eac3646fSBjoern A. Zeeb 		ieee80211_return_txq(hw, ntxq, false);
8073eac3646fSBjoern A. Zeeb 	} while (1);
8074eac3646fSBjoern A. Zeeb 	ieee80211_txq_schedule_end(hw, txq->ac);
8075eac3646fSBjoern A. Zeeb 	LKPI_80211_LHW_TXQ_UNLOCK(lhw);
8076eac3646fSBjoern A. Zeeb }
8077eac3646fSBjoern A. Zeeb 
80785a9a0d78SBjoern A. Zeeb /* -------------------------------------------------------------------------- */
80795a9a0d78SBjoern A. Zeeb 
80805edde07cSBjoern A. Zeeb struct lkpi_cfg80211_bss {
80815edde07cSBjoern A. Zeeb 	u_int refcnt;
80825edde07cSBjoern A. Zeeb 	struct cfg80211_bss bss;
80835edde07cSBjoern A. Zeeb };
80845edde07cSBjoern A. Zeeb 
80855edde07cSBjoern A. Zeeb struct lkpi_cfg80211_get_bss_iter_lookup {
80865edde07cSBjoern A. Zeeb 	struct wiphy *wiphy;
80875edde07cSBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel *chan;
80885edde07cSBjoern A. Zeeb 	const uint8_t *bssid;
80895edde07cSBjoern A. Zeeb 	const uint8_t *ssid;
80905edde07cSBjoern A. Zeeb 	size_t ssid_len;
80915edde07cSBjoern A. Zeeb 	enum ieee80211_bss_type bss_type;
80925edde07cSBjoern A. Zeeb 	enum ieee80211_privacy privacy;
80935edde07cSBjoern A. Zeeb 
80945edde07cSBjoern A. Zeeb 	/*
80955edde07cSBjoern A. Zeeb 	 * Something to store a copy of the result as the net80211 scan cache
80965edde07cSBjoern A. Zeeb 	 * is not refoucnted so a scan entry might go away any time.
80975edde07cSBjoern A. Zeeb 	 */
80985edde07cSBjoern A. Zeeb 	bool match;
80995edde07cSBjoern A. Zeeb 	struct cfg80211_bss *bss;
81005edde07cSBjoern A. Zeeb };
81015edde07cSBjoern A. Zeeb 
81025edde07cSBjoern A. Zeeb static void
81035edde07cSBjoern A. Zeeb lkpi_cfg80211_get_bss_iterf(void *arg, const struct ieee80211_scan_entry *se)
81045edde07cSBjoern A. Zeeb {
81055edde07cSBjoern A. Zeeb 	struct lkpi_cfg80211_get_bss_iter_lookup *lookup;
81065edde07cSBjoern A. Zeeb 	size_t ielen;
81075edde07cSBjoern A. Zeeb 
81085edde07cSBjoern A. Zeeb 	lookup = arg;
81095edde07cSBjoern A. Zeeb 
81105edde07cSBjoern A. Zeeb 	/* Do not try to find another match. */
81115edde07cSBjoern A. Zeeb 	if (lookup->match)
81125edde07cSBjoern A. Zeeb 		return;
81135edde07cSBjoern A. Zeeb 
81145edde07cSBjoern A. Zeeb 	/* Nothing to store result. */
81155edde07cSBjoern A. Zeeb 	if (lookup->bss == NULL)
81165edde07cSBjoern A. Zeeb 		return;
81175edde07cSBjoern A. Zeeb 
81185edde07cSBjoern A. Zeeb 	if (lookup->privacy != IEEE80211_PRIVACY_ANY) {
81195edde07cSBjoern A. Zeeb 		/* if (se->se_capinfo & IEEE80211_CAPINFO_PRIVACY) */
81205edde07cSBjoern A. Zeeb 		/* We have no idea what to compare to as the drivers only request ANY */
81215edde07cSBjoern A. Zeeb 		return;
81225edde07cSBjoern A. Zeeb 	}
81235edde07cSBjoern A. Zeeb 
81245edde07cSBjoern A. Zeeb 	if (lookup->bss_type != IEEE80211_BSS_TYPE_ANY) {
81255edde07cSBjoern A. Zeeb 		/* if (se->se_capinfo & (IEEE80211_CAPINFO_IBSS|IEEE80211_CAPINFO_ESS)) */
81265edde07cSBjoern A. Zeeb 		/* We have no idea what to compare to as the drivers only request ANY */
81275edde07cSBjoern A. Zeeb 		return;
81285edde07cSBjoern A. Zeeb 	}
81295edde07cSBjoern A. Zeeb 
81305edde07cSBjoern A. Zeeb 	if (lookup->chan != NULL) {
81315edde07cSBjoern A. Zeeb 		struct linuxkpi_ieee80211_channel *chan;
81325edde07cSBjoern A. Zeeb 
81335edde07cSBjoern A. Zeeb 		chan = linuxkpi_ieee80211_get_channel(lookup->wiphy,
81345edde07cSBjoern A. Zeeb 		    se->se_chan->ic_freq);
81355edde07cSBjoern A. Zeeb 		if (chan == NULL || chan != lookup->chan)
81365edde07cSBjoern A. Zeeb 			return;
81375edde07cSBjoern A. Zeeb 	}
81385edde07cSBjoern A. Zeeb 
81395edde07cSBjoern A. Zeeb 	if (lookup->bssid && !IEEE80211_ADDR_EQ(lookup->bssid, se->se_bssid))
81405edde07cSBjoern A. Zeeb 		return;
81415edde07cSBjoern A. Zeeb 
81425edde07cSBjoern A. Zeeb 	if (lookup->ssid) {
81435edde07cSBjoern A. Zeeb 		if (lookup->ssid_len != se->se_ssid[1] ||
81445edde07cSBjoern A. Zeeb 		    se->se_ssid[1] == 0)
81455edde07cSBjoern A. Zeeb 			return;
81465edde07cSBjoern A. Zeeb 		if (memcmp(lookup->ssid, se->se_ssid+2, lookup->ssid_len) != 0)
81475edde07cSBjoern A. Zeeb 			return;
81485edde07cSBjoern A. Zeeb 	}
81495edde07cSBjoern A. Zeeb 
81505edde07cSBjoern A. Zeeb 	ielen = se->se_ies.len;
81515edde07cSBjoern A. Zeeb 
81525edde07cSBjoern A. Zeeb 	lookup->bss->ies = malloc(sizeof(*lookup->bss->ies) + ielen,
81535edde07cSBjoern A. Zeeb 	    M_LKPI80211, M_NOWAIT | M_ZERO);
81545edde07cSBjoern A. Zeeb 	if (lookup->bss->ies == NULL)
81555edde07cSBjoern A. Zeeb 		return;
81565edde07cSBjoern A. Zeeb 
81575edde07cSBjoern A. Zeeb 	lookup->bss->ies->data = (uint8_t *)lookup->bss->ies + sizeof(*lookup->bss->ies);
81585edde07cSBjoern A. Zeeb 	lookup->bss->ies->len = ielen;
81595edde07cSBjoern A. Zeeb 	if (ielen)
81605edde07cSBjoern A. Zeeb 		memcpy(lookup->bss->ies->data, se->se_ies.data, ielen);
81615edde07cSBjoern A. Zeeb 
81625edde07cSBjoern A. Zeeb 	lookup->match = true;
81635edde07cSBjoern A. Zeeb }
81645edde07cSBjoern A. Zeeb 
81655edde07cSBjoern A. Zeeb struct cfg80211_bss *
81665edde07cSBjoern A. Zeeb linuxkpi_cfg80211_get_bss(struct wiphy *wiphy, struct linuxkpi_ieee80211_channel *chan,
81675edde07cSBjoern A. Zeeb     const uint8_t *bssid, const uint8_t *ssid, size_t ssid_len,
81685edde07cSBjoern A. Zeeb     enum ieee80211_bss_type bss_type, enum ieee80211_privacy privacy)
81695edde07cSBjoern A. Zeeb {
81705edde07cSBjoern A. Zeeb 	struct lkpi_cfg80211_bss *lbss;
81715edde07cSBjoern A. Zeeb 	struct lkpi_cfg80211_get_bss_iter_lookup lookup;
81725edde07cSBjoern A. Zeeb 	struct lkpi_hw *lhw;
81735edde07cSBjoern A. Zeeb 	struct ieee80211vap *vap;
81745edde07cSBjoern A. Zeeb 
81755edde07cSBjoern A. Zeeb 	lhw = wiphy_priv(wiphy);
81765edde07cSBjoern A. Zeeb 
81775edde07cSBjoern A. Zeeb 	/* Let's hope we can alloc. */
81785edde07cSBjoern A. Zeeb 	lbss = malloc(sizeof(*lbss), M_LKPI80211, M_NOWAIT | M_ZERO);
81795edde07cSBjoern A. Zeeb 	if (lbss == NULL) {
81805edde07cSBjoern A. Zeeb 		ic_printf(lhw->ic, "%s: alloc failed.\n", __func__);
81815edde07cSBjoern A. Zeeb 		return (NULL);
81825edde07cSBjoern A. Zeeb 	}
81835edde07cSBjoern A. Zeeb 
81845edde07cSBjoern A. Zeeb 	lookup.wiphy = wiphy;
81855edde07cSBjoern A. Zeeb 	lookup.chan = chan;
81865edde07cSBjoern A. Zeeb 	lookup.bssid = bssid;
81875edde07cSBjoern A. Zeeb 	lookup.ssid = ssid;
81885edde07cSBjoern A. Zeeb 	lookup.ssid_len = ssid_len;
81895edde07cSBjoern A. Zeeb 	lookup.bss_type = bss_type;
81905edde07cSBjoern A. Zeeb 	lookup.privacy = privacy;
81915edde07cSBjoern A. Zeeb 	lookup.match = false;
81925edde07cSBjoern A. Zeeb 	lookup.bss = &lbss->bss;
81935edde07cSBjoern A. Zeeb 
81945edde07cSBjoern A. Zeeb 	IMPROVE("Iterate over all VAPs comparing perm_addr and addresses?");
81955edde07cSBjoern A. Zeeb 	vap = TAILQ_FIRST(&lhw->ic->ic_vaps);
81965edde07cSBjoern A. Zeeb 	ieee80211_scan_iterate(vap, lkpi_cfg80211_get_bss_iterf, &lookup);
81975edde07cSBjoern A. Zeeb 	if (!lookup.match) {
81985edde07cSBjoern A. Zeeb 		free(lbss, M_LKPI80211);
81995edde07cSBjoern A. Zeeb 		return (NULL);
82005edde07cSBjoern A. Zeeb 	}
82015edde07cSBjoern A. Zeeb 
82025edde07cSBjoern A. Zeeb 	refcount_init(&lbss->refcnt, 1);
82035edde07cSBjoern A. Zeeb 	return (&lbss->bss);
82045edde07cSBjoern A. Zeeb }
82055edde07cSBjoern A. Zeeb 
82065edde07cSBjoern A. Zeeb void
82075edde07cSBjoern A. Zeeb linuxkpi_cfg80211_put_bss(struct wiphy *wiphy, struct cfg80211_bss *bss)
82085edde07cSBjoern A. Zeeb {
82095edde07cSBjoern A. Zeeb 	struct lkpi_cfg80211_bss *lbss;
82105edde07cSBjoern A. Zeeb 
82115edde07cSBjoern A. Zeeb 	lbss = container_of(bss, struct lkpi_cfg80211_bss, bss);
82125edde07cSBjoern A. Zeeb 
82135edde07cSBjoern A. Zeeb 	/* Free everything again on refcount ... */
82145edde07cSBjoern A. Zeeb 	if (refcount_release(&lbss->refcnt)) {
82155edde07cSBjoern A. Zeeb 		free(lbss->bss.ies, M_LKPI80211);
82165edde07cSBjoern A. Zeeb 		free(lbss, M_LKPI80211);
82175edde07cSBjoern A. Zeeb 	}
82185edde07cSBjoern A. Zeeb }
82195edde07cSBjoern A. Zeeb 
82205edde07cSBjoern A. Zeeb void
82215edde07cSBjoern A. Zeeb linuxkpi_cfg80211_bss_flush(struct wiphy *wiphy)
82225edde07cSBjoern A. Zeeb {
82235edde07cSBjoern A. Zeeb 	struct lkpi_hw *lhw;
82245edde07cSBjoern A. Zeeb 	struct ieee80211com *ic;
82255edde07cSBjoern A. Zeeb 	struct ieee80211vap *vap;
82265edde07cSBjoern A. Zeeb 
82275edde07cSBjoern A. Zeeb 	lhw = wiphy_priv(wiphy);
82285edde07cSBjoern A. Zeeb 	ic = lhw->ic;
82295edde07cSBjoern A. Zeeb 
82305edde07cSBjoern A. Zeeb 	/*
82315edde07cSBjoern A. Zeeb 	 * If we haven't called ieee80211_ifattach() yet
82325edde07cSBjoern A. Zeeb 	 * or there is no VAP, there are no scans to flush.
82335edde07cSBjoern A. Zeeb 	 */
82345edde07cSBjoern A. Zeeb 	if (ic == NULL ||
82355edde07cSBjoern A. Zeeb 	    (lhw->sc_flags & LKPI_MAC80211_DRV_STARTED) == 0)
82365edde07cSBjoern A. Zeeb 		return;
82375edde07cSBjoern A. Zeeb 
82385edde07cSBjoern A. Zeeb 	/* Should only happen on the current one? Not seen it late enough. */
82395edde07cSBjoern A. Zeeb 	IEEE80211_LOCK(ic);
82405edde07cSBjoern A. Zeeb 	TAILQ_FOREACH(vap, &ic->ic_vaps, iv_next)
82415edde07cSBjoern A. Zeeb 		ieee80211_scan_flush(vap);
82425edde07cSBjoern A. Zeeb 	IEEE80211_UNLOCK(ic);
82435edde07cSBjoern A. Zeeb }
82445edde07cSBjoern A. Zeeb 
82455edde07cSBjoern A. Zeeb /* -------------------------------------------------------------------------- */
82465edde07cSBjoern A. Zeeb 
8247ac1d519cSBjoern A. Zeeb /*
8248ac1d519cSBjoern A. Zeeb  * hw->conf get initialized/set in various places for us:
8249ac1d519cSBjoern A. Zeeb  * - linuxkpi_ieee80211_alloc_hw(): flags
8250ac1d519cSBjoern A. Zeeb  * - linuxkpi_ieee80211_ifattach(): chandef
8251ac1d519cSBjoern A. Zeeb  * - lkpi_ic_vap_create(): listen_interval
8252ac1d519cSBjoern A. Zeeb  * - lkpi_ic_set_channel(): chandef, flags
8253ac1d519cSBjoern A. Zeeb  */
8254ac1d519cSBjoern A. Zeeb 
8255ac1d519cSBjoern A. Zeeb int lkpi_80211_update_chandef(struct ieee80211_hw *hw,
8256ac1d519cSBjoern A. Zeeb     struct ieee80211_chanctx_conf *new)
8257ac1d519cSBjoern A. Zeeb {
8258ac1d519cSBjoern A. Zeeb 	struct cfg80211_chan_def *cd;
8259ac1d519cSBjoern A. Zeeb 	uint32_t changed;
8260ac1d519cSBjoern A. Zeeb 	int error;
8261ac1d519cSBjoern A. Zeeb 
8262ac1d519cSBjoern A. Zeeb 	changed = 0;
8263ac1d519cSBjoern A. Zeeb 	if (new == NULL || new->def.chan == NULL)
8264ac1d519cSBjoern A. Zeeb 		cd = NULL;
8265ac1d519cSBjoern A. Zeeb 	else
8266ac1d519cSBjoern A. Zeeb 		cd = &new->def;
8267ac1d519cSBjoern A. Zeeb 
8268ac1d519cSBjoern A. Zeeb 	if (cd && cd->chan != hw->conf.chandef.chan) {
8269ac1d519cSBjoern A. Zeeb 		/* Copy; the chan pointer is fine and will stay valid. */
8270ac1d519cSBjoern A. Zeeb 		hw->conf.chandef = *cd;
8271ac1d519cSBjoern A. Zeeb 		changed |= IEEE80211_CONF_CHANGE_CHANNEL;
8272ac1d519cSBjoern A. Zeeb 	}
8273ac1d519cSBjoern A. Zeeb 	IMPROVE("IEEE80211_CONF_CHANGE_PS, IEEE80211_CONF_CHANGE_POWER");
8274ac1d519cSBjoern A. Zeeb 
8275ac1d519cSBjoern A. Zeeb 	if (changed == 0)
8276ac1d519cSBjoern A. Zeeb 		return (0);
8277ac1d519cSBjoern A. Zeeb 
8278ac1d519cSBjoern A. Zeeb 	error = lkpi_80211_mo_config(hw, changed);
8279ac1d519cSBjoern A. Zeeb 	return (error);
8280ac1d519cSBjoern A. Zeeb }
8281ac1d519cSBjoern A. Zeeb 
8282ac1d519cSBjoern A. Zeeb /* -------------------------------------------------------------------------- */
8283ac1d519cSBjoern A. Zeeb 
82846b4cac81SBjoern A. Zeeb MODULE_VERSION(linuxkpi_wlan, 1);
82856b4cac81SBjoern A. Zeeb MODULE_DEPEND(linuxkpi_wlan, linuxkpi, 1, 1, 1);
82866b4cac81SBjoern A. Zeeb MODULE_DEPEND(linuxkpi_wlan, wlan, 1, 1, 1);
8287