xref: /freebsd/sys/compat/linuxkpi/common/src/linux_80211.c (revision a486fbbd7876bed81d738a32274953c89906edb5)
16b4cac81SBjoern A. Zeeb /*-
22e183d99SBjoern A. Zeeb  * Copyright (c) 2020-2022 The FreeBSD Foundation
3086be6a8SBjoern A. Zeeb  * Copyright (c) 2020-2022 Bjoern A. Zeeb
46b4cac81SBjoern A. Zeeb  *
56b4cac81SBjoern A. Zeeb  * This software was developed by Björn Zeeb under sponsorship from
66b4cac81SBjoern A. Zeeb  * the FreeBSD Foundation.
76b4cac81SBjoern A. Zeeb  *
86b4cac81SBjoern A. Zeeb  * Redistribution and use in source and binary forms, with or without
96b4cac81SBjoern A. Zeeb  * modification, are permitted provided that the following conditions
106b4cac81SBjoern A. Zeeb  * are met:
116b4cac81SBjoern A. Zeeb  * 1. Redistributions of source code must retain the above copyright
126b4cac81SBjoern A. Zeeb  *    notice, this list of conditions and the following disclaimer.
136b4cac81SBjoern A. Zeeb  * 2. Redistributions in binary form must reproduce the above copyright
146b4cac81SBjoern A. Zeeb  *    notice, this list of conditions and the following disclaimer in the
156b4cac81SBjoern A. Zeeb  *    documentation and/or other materials provided with the distribution.
166b4cac81SBjoern A. Zeeb  *
176b4cac81SBjoern A. Zeeb  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
186b4cac81SBjoern A. Zeeb  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
196b4cac81SBjoern A. Zeeb  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
206b4cac81SBjoern A. Zeeb  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
216b4cac81SBjoern A. Zeeb  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
226b4cac81SBjoern A. Zeeb  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
236b4cac81SBjoern A. Zeeb  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
246b4cac81SBjoern A. Zeeb  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
256b4cac81SBjoern A. Zeeb  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
266b4cac81SBjoern A. Zeeb  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
276b4cac81SBjoern A. Zeeb  * SUCH DAMAGE.
286b4cac81SBjoern A. Zeeb  */
296b4cac81SBjoern A. Zeeb 
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 
426b4cac81SBjoern A. Zeeb #include <sys/cdefs.h>
436b4cac81SBjoern A. Zeeb __FBSDID("$FreeBSD$");
446b4cac81SBjoern A. Zeeb 
456b4cac81SBjoern A. Zeeb #include <sys/param.h>
466b4cac81SBjoern A. Zeeb #include <sys/types.h>
476b4cac81SBjoern A. Zeeb #include <sys/kernel.h>
486b4cac81SBjoern A. Zeeb #include <sys/errno.h>
496b4cac81SBjoern A. Zeeb #include <sys/malloc.h>
506b4cac81SBjoern A. Zeeb #include <sys/module.h>
516b4cac81SBjoern A. Zeeb #include <sys/mutex.h>
526b4cac81SBjoern A. Zeeb #include <sys/socket.h>
536b4cac81SBjoern A. Zeeb #include <sys/sysctl.h>
546b4cac81SBjoern A. Zeeb #include <sys/queue.h>
556b4cac81SBjoern A. Zeeb #include <sys/taskqueue.h>
56527687a9SBjoern A. Zeeb #include <sys/libkern.h>
576b4cac81SBjoern A. Zeeb 
586b4cac81SBjoern A. Zeeb #include <net/if.h>
596b4cac81SBjoern A. Zeeb #include <net/if_var.h>
606b4cac81SBjoern A. Zeeb #include <net/if_media.h>
616b4cac81SBjoern A. Zeeb #include <net/ethernet.h>
626b4cac81SBjoern A. Zeeb 
636b4cac81SBjoern A. Zeeb #include <net80211/ieee80211_var.h>
646b4cac81SBjoern A. Zeeb #include <net80211/ieee80211_proto.h>
656b4cac81SBjoern A. Zeeb #include <net80211/ieee80211_ratectl.h>
666b4cac81SBjoern A. Zeeb #include <net80211/ieee80211_radiotap.h>
676b4cac81SBjoern A. Zeeb 
686b4cac81SBjoern A. Zeeb #define	LINUXKPI_NET80211
696b4cac81SBjoern A. Zeeb #include <net/mac80211.h>
706b4cac81SBjoern A. Zeeb 
716b4cac81SBjoern A. Zeeb #include <linux/workqueue.h>
726b4cac81SBjoern A. Zeeb #include "linux_80211.h"
736b4cac81SBjoern A. Zeeb 
74b35f6cd0SBjoern A. Zeeb /* #define	LKPI_80211_HW_CRYPTO */
75b35f6cd0SBjoern A. Zeeb 
766b4cac81SBjoern A. Zeeb static MALLOC_DEFINE(M_LKPI80211, "lkpi80211", "LinuxKPI 80211 compat");
776b4cac81SBjoern A. Zeeb 
786b4cac81SBjoern A. Zeeb /* -------------------------------------------------------------------------- */
796b4cac81SBjoern A. Zeeb 
809d9ba2b7SBjoern A. Zeeb /* Keep public for as long as header files are using it too. */
819d9ba2b7SBjoern A. Zeeb int linuxkpi_debug_80211;
826b4cac81SBjoern A. Zeeb 
836b4cac81SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
849d9ba2b7SBjoern A. Zeeb SYSCTL_DECL(_compat_linuxkpi);
859d9ba2b7SBjoern A. Zeeb SYSCTL_NODE(_compat_linuxkpi, OID_AUTO, 80211, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
869d9ba2b7SBjoern A. Zeeb     "LinuxKPI 802.11 compatibility layer");
879d9ba2b7SBjoern A. Zeeb 
889d9ba2b7SBjoern A. Zeeb SYSCTL_INT(_compat_linuxkpi_80211, OID_AUTO, debug, CTLFLAG_RWTUN,
899d9ba2b7SBjoern A. Zeeb     &linuxkpi_debug_80211, 0, "LinuxKPI 802.11 debug level");
909d9ba2b7SBjoern A. Zeeb 
916b4cac81SBjoern A. Zeeb #ifndef	D80211_TODO
926b4cac81SBjoern A. Zeeb #define	D80211_TODO		0x1
936b4cac81SBjoern A. Zeeb #endif
946b4cac81SBjoern A. Zeeb #ifndef D80211_IMPROVE
956b4cac81SBjoern A. Zeeb #define	D80211_IMPROVE		0x2
966b4cac81SBjoern A. Zeeb #endif
976b4cac81SBjoern A. Zeeb #define	D80211_TRACE		0x10
986b4cac81SBjoern A. Zeeb #define	D80211_TRACEOK		0x20
996b4cac81SBjoern A. Zeeb #define	D80211_TRACE_TX		0x100
1006b4cac81SBjoern A. Zeeb #define	D80211_TRACE_TX_DUMP	0x200
1016b4cac81SBjoern A. Zeeb #define	D80211_TRACE_RX		0x1000
1026b4cac81SBjoern A. Zeeb #define	D80211_TRACE_RX_DUMP	0x2000
1036b4cac81SBjoern A. Zeeb #define	D80211_TRACE_RX_BEACONS	0x4000
1046b4cac81SBjoern A. Zeeb #define	D80211_TRACEX		(D80211_TRACE_TX|D80211_TRACE_RX)
1056b4cac81SBjoern A. Zeeb #define	D80211_TRACEX_DUMP	(D80211_TRACE_TX_DUMP|D80211_TRACE_RX_DUMP)
106d9f59799SBjoern A. Zeeb #define	D80211_TRACE_STA	0x10000
1079d9ba2b7SBjoern A. Zeeb #define	UNIMPLEMENTED		if (linuxkpi_debug_80211 & D80211_TODO)		\
1086b4cac81SBjoern A. Zeeb     printf("XXX-TODO %s:%d: UNIMPLEMENTED\n", __func__, __LINE__)
1099d9ba2b7SBjoern A. Zeeb #define	TRACEOK()		if (linuxkpi_debug_80211 & D80211_TRACEOK)	\
1106b4cac81SBjoern A. Zeeb     printf("XXX-TODO %s:%d: TRACEPOINT\n", __func__, __LINE__)
1116b4cac81SBjoern A. Zeeb #else
1126b4cac81SBjoern A. Zeeb #define	UNIMPLEMENTED		do { } while (0)
1136b4cac81SBjoern A. Zeeb #define	TRACEOK()		do { } while (0)
1146b4cac81SBjoern A. Zeeb #endif
1156b4cac81SBjoern A. Zeeb 
1166b4cac81SBjoern A. Zeeb /* #define	PREP_TX_INFO_DURATION	(IEEE80211_TRANS_WAIT * 1000) */
1176b4cac81SBjoern A. Zeeb #ifndef PREP_TX_INFO_DURATION
1186b4cac81SBjoern A. Zeeb #define	PREP_TX_INFO_DURATION	0 /* Let the driver do its thing. */
1196b4cac81SBjoern A. Zeeb #endif
1206b4cac81SBjoern A. Zeeb 
121caaa79c3SBjoern A. Zeeb /* c.f. ieee80211_ioctl.c */
122caaa79c3SBjoern A. Zeeb static const uint8_t zerobssid[IEEE80211_ADDR_LEN];
123caaa79c3SBjoern A. Zeeb 
1246b4cac81SBjoern A. Zeeb /* This is DSAP | SSAP | CTRL | ProtoID/OrgCode{3}. */
1256b4cac81SBjoern A. Zeeb const uint8_t rfc1042_header[6] = { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
1266b4cac81SBjoern A. Zeeb 
127b0f73768SBjoern A. Zeeb /* IEEE 802.11-05/0257r1 */
128b0f73768SBjoern A. Zeeb const uint8_t bridge_tunnel_header[6] = { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0xf8 };
129b0f73768SBjoern A. Zeeb 
1304f61ef8bSBjoern A. Zeeb const uint8_t tid_to_mac80211_ac[] = {
1314f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_BE,
1324f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_BK,
1334f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_BK,
1344f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_BE,
1354f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_VI,
1364f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_VI,
1374f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_VO,
1384f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_VO,
1394f61ef8bSBjoern A. Zeeb #if 0
1404f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_VO, /* We treat MGMT as TID 8, which is set as AC_VO */
1414f61ef8bSBjoern A. Zeeb #endif
1424f61ef8bSBjoern A. Zeeb };
1434f61ef8bSBjoern A. Zeeb 
1446b4cac81SBjoern A. Zeeb const struct cfg80211_ops linuxkpi_mac80211cfgops = {
1456b4cac81SBjoern A. Zeeb 	/*
1466b4cac81SBjoern A. Zeeb 	 * XXX TODO need a "glue layer" to link cfg80211 ops to
1476b4cac81SBjoern A. Zeeb 	 * mac80211 and to the driver or net80211.
1486b4cac81SBjoern A. Zeeb 	 * Can we pass some on 1:1? Need to compare the (*f)().
1496b4cac81SBjoern A. Zeeb 	 */
1506b4cac81SBjoern A. Zeeb };
1516b4cac81SBjoern A. Zeeb 
1526b4cac81SBjoern A. Zeeb static struct lkpi_sta *lkpi_find_lsta_by_ni(struct lkpi_vif *,
1536b4cac81SBjoern A. Zeeb     struct ieee80211_node *);
1546b4cac81SBjoern A. Zeeb static void lkpi_80211_txq_task(void *, int);
1556b4cac81SBjoern A. Zeeb static void lkpi_ieee80211_free_skb_mbuf(void *);
1566b4cac81SBjoern A. Zeeb 
157d9f59799SBjoern A. Zeeb static void
15867674c1cSBjoern A. Zeeb lkpi_lsta_dump(struct lkpi_sta *lsta, struct ieee80211_node *ni,
15967674c1cSBjoern A. Zeeb     const char *_f, int _l)
160d9f59799SBjoern A. Zeeb {
161d9f59799SBjoern A. Zeeb 
1629d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
1639d9ba2b7SBjoern A. Zeeb 	if ((linuxkpi_debug_80211 & D80211_TRACE_STA) == 0)
164d9f59799SBjoern A. Zeeb 		return;
165d9f59799SBjoern A. Zeeb 	if (lsta == NULL)
166d9f59799SBjoern A. Zeeb 		return;
167d9f59799SBjoern A. Zeeb 
168d9f59799SBjoern A. Zeeb 	printf("%s:%d lsta %p ni %p sta %p\n",
16967674c1cSBjoern A. Zeeb 	    _f, _l, lsta, ni, &lsta->sta);
17067674c1cSBjoern A. Zeeb 	if (ni != NULL)
17167674c1cSBjoern A. Zeeb 		ieee80211_dump_node(NULL, ni);
172d9f59799SBjoern A. Zeeb 	printf("\ttxq_task txq len %d mtx\n", mbufq_len(&lsta->txq));
173d9f59799SBjoern A. Zeeb 	printf("\tkc %p state %d added_to_drv %d in_mgd %d\n",
174d9f59799SBjoern A. Zeeb 		lsta->kc, lsta->state, lsta->added_to_drv, lsta->in_mgd);
1759d9ba2b7SBjoern A. Zeeb #endif
176d9f59799SBjoern A. Zeeb }
177d9f59799SBjoern A. Zeeb 
178d9f59799SBjoern A. Zeeb static void
179d9f59799SBjoern A. Zeeb lkpi_lsta_remove(struct lkpi_sta *lsta, struct lkpi_vif *lvif)
180d9f59799SBjoern A. Zeeb {
181d9f59799SBjoern A. Zeeb 	struct ieee80211_node *ni;
182d9f59799SBjoern A. Zeeb 
183d9f59799SBjoern A. Zeeb 	ni = lsta->ni;
184d9f59799SBjoern A. Zeeb 
185d9f59799SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
186d9f59799SBjoern A. Zeeb 	TAILQ_REMOVE(&lvif->lsta_head, lsta, lsta_entry);
187d9f59799SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
188d9f59799SBjoern A. Zeeb 
189d9f59799SBjoern A. Zeeb 	lsta->ni = NULL;
190d9f59799SBjoern A. Zeeb 	ni->ni_drv_data = NULL;
191e24e8103SBjoern A. Zeeb 	if (ni != NULL)
192d9f59799SBjoern A. Zeeb 		ieee80211_free_node(ni);
193d9f59799SBjoern A. Zeeb 
194e24e8103SBjoern A. Zeeb 	IMPROVE("more from lkpi_ic_node_free() should happen here.");
195e24e8103SBjoern A. Zeeb 
196e24e8103SBjoern A. Zeeb 	free(lsta, M_LKPI80211);
197d9f59799SBjoern A. Zeeb }
198d9f59799SBjoern A. Zeeb 
1994f61ef8bSBjoern A. Zeeb static struct lkpi_sta *
2004f61ef8bSBjoern A. Zeeb lkpi_lsta_alloc(struct ieee80211vap *vap, const uint8_t mac[IEEE80211_ADDR_LEN],
2014f61ef8bSBjoern A. Zeeb     struct ieee80211_hw *hw, struct ieee80211_node *ni)
2024f61ef8bSBjoern A. Zeeb {
2034f61ef8bSBjoern A. Zeeb 	struct lkpi_sta *lsta;
2044f61ef8bSBjoern A. Zeeb 	struct lkpi_vif *lvif;
2054f61ef8bSBjoern A. Zeeb 	struct ieee80211_vif *vif;
2064f61ef8bSBjoern A. Zeeb 	struct ieee80211_sta *sta;
2074f61ef8bSBjoern A. Zeeb 	int tid;
2084f61ef8bSBjoern A. Zeeb 
2094f61ef8bSBjoern A. Zeeb 	lsta = malloc(sizeof(*lsta) + hw->sta_data_size, M_LKPI80211,
2104f61ef8bSBjoern A. Zeeb 	    M_NOWAIT | M_ZERO);
2114f61ef8bSBjoern A. Zeeb 	if (lsta == NULL)
2124f61ef8bSBjoern A. Zeeb 		return (NULL);
2134f61ef8bSBjoern A. Zeeb 
2144f61ef8bSBjoern A. Zeeb 	lsta->added_to_drv = false;
2154f61ef8bSBjoern A. Zeeb 	lsta->state = IEEE80211_STA_NOTEXIST;
2164f61ef8bSBjoern A. Zeeb #if 0
2174f61ef8bSBjoern A. Zeeb 	/*
2184f61ef8bSBjoern A. Zeeb 	 * This needs to be done in node_init() as ieee80211_alloc_node()
2194f61ef8bSBjoern A. Zeeb 	 * will initialise the refcount after us.
2204f61ef8bSBjoern A. Zeeb 	 */
2214f61ef8bSBjoern A. Zeeb 	lsta->ni = ieee80211_ref_node(ni);
2224f61ef8bSBjoern A. Zeeb #endif
2234f61ef8bSBjoern A. Zeeb 	/* The back-pointer "drv_data" to net80211_node let's us get lsta. */
2244f61ef8bSBjoern A. Zeeb 	ni->ni_drv_data = lsta;
2254f61ef8bSBjoern A. Zeeb 
2264f61ef8bSBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
2274f61ef8bSBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
2284f61ef8bSBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
2294f61ef8bSBjoern A. Zeeb 
2304f61ef8bSBjoern A. Zeeb 	IEEE80211_ADDR_COPY(sta->addr, mac);
2314f61ef8bSBjoern A. Zeeb 	for (tid = 0; tid < nitems(sta->txq); tid++) {
2324f61ef8bSBjoern A. Zeeb 		struct lkpi_txq *ltxq;
2334f61ef8bSBjoern A. Zeeb 
234d0d29110SBjoern A. Zeeb 		/* We are not limiting ourselves to hw.queues here. */
2354f61ef8bSBjoern A. Zeeb 		ltxq = malloc(sizeof(*ltxq) + hw->txq_data_size,
2364f61ef8bSBjoern A. Zeeb 		    M_LKPI80211, M_NOWAIT | M_ZERO);
2374f61ef8bSBjoern A. Zeeb 		if (ltxq == NULL)
2384f61ef8bSBjoern A. Zeeb 			goto cleanup;
2394f61ef8bSBjoern A. Zeeb 		/* iwlwifi//mvm/sta.c::tid_to_mac80211_ac[] */
2404f61ef8bSBjoern A. Zeeb 		if (tid == IEEE80211_NUM_TIDS) {
241d0d29110SBjoern A. Zeeb 			if (!ieee80211_hw_check(hw, STA_MMPDU_TXQ)) {
242d0d29110SBjoern A. Zeeb 				free(ltxq, M_LKPI80211);
243d0d29110SBjoern A. Zeeb 				continue;
244d0d29110SBjoern A. Zeeb 			}
245d0d29110SBjoern A. Zeeb 			IMPROVE("AP/if we support non-STA here too");
2464f61ef8bSBjoern A. Zeeb 			ltxq->txq.ac = IEEE80211_AC_VO;
2474f61ef8bSBjoern A. Zeeb 		} else {
2484f61ef8bSBjoern A. Zeeb 			ltxq->txq.ac = tid_to_mac80211_ac[tid & 7];
2494f61ef8bSBjoern A. Zeeb 		}
250d0d29110SBjoern A. Zeeb 		ltxq->seen_dequeue = false;
251d0d29110SBjoern A. Zeeb 		ltxq->txq.vif = vif;
2524f61ef8bSBjoern A. Zeeb 		ltxq->txq.tid = tid;
2534f61ef8bSBjoern A. Zeeb 		ltxq->txq.sta = sta;
254d0d29110SBjoern A. Zeeb 		skb_queue_head_init(&ltxq->skbq);
2554f61ef8bSBjoern A. Zeeb 		sta->txq[tid] = &ltxq->txq;
2564f61ef8bSBjoern A. Zeeb 	}
2574f61ef8bSBjoern A. Zeeb 
2584f61ef8bSBjoern A. Zeeb 	/* Deferred TX path. */
2594f61ef8bSBjoern A. Zeeb 	mtx_init(&lsta->txq_mtx, "lsta_txq", NULL, MTX_DEF);
2604f61ef8bSBjoern A. Zeeb 	TASK_INIT(&lsta->txq_task, 0, lkpi_80211_txq_task, lsta);
2614f61ef8bSBjoern A. Zeeb 	mbufq_init(&lsta->txq, IFQ_MAXLEN);
2624f61ef8bSBjoern A. Zeeb 
2634f61ef8bSBjoern A. Zeeb 	return (lsta);
2644f61ef8bSBjoern A. Zeeb 
2654f61ef8bSBjoern A. Zeeb cleanup:
2664f61ef8bSBjoern A. Zeeb 	for (; tid >= 0; tid--)
2674f61ef8bSBjoern A. Zeeb 		free(sta->txq[tid], M_LKPI80211);
2684f61ef8bSBjoern A. Zeeb 	free(lsta, M_LKPI80211);
2694f61ef8bSBjoern A. Zeeb 	return (NULL);
2704f61ef8bSBjoern A. Zeeb }
2714f61ef8bSBjoern A. Zeeb 
2726b4cac81SBjoern A. Zeeb static enum nl80211_band
2736b4cac81SBjoern A. Zeeb lkpi_net80211_chan_to_nl80211_band(struct ieee80211_channel *c)
2746b4cac81SBjoern A. Zeeb {
2756b4cac81SBjoern A. Zeeb 
2766b4cac81SBjoern A. Zeeb 	if (IEEE80211_IS_CHAN_2GHZ(c))
2776b4cac81SBjoern A. Zeeb 		return (NL80211_BAND_2GHZ);
2786b4cac81SBjoern A. Zeeb 	else if (IEEE80211_IS_CHAN_5GHZ(c))
2796b4cac81SBjoern A. Zeeb 		return (NL80211_BAND_5GHZ);
2806b4cac81SBjoern A. Zeeb #ifdef __notyet__
2816b4cac81SBjoern A. Zeeb 	else if ()
2826b4cac81SBjoern A. Zeeb 		return (NL80211_BAND_6GHZ);
2836b4cac81SBjoern A. Zeeb 	else if ()
2846b4cac81SBjoern A. Zeeb 		return (NL80211_BAND_60GHZ);
2856b4cac81SBjoern A. Zeeb 	else if (IEEE80211_IS_CHAN_GSM(c))
2866b4cac81SBjoern A. Zeeb 		return (NL80211_BAND_XXX);
2876b4cac81SBjoern A. Zeeb #endif
2886b4cac81SBjoern A. Zeeb 	else
2896b4cac81SBjoern A. Zeeb 		panic("%s: unsupported band. c %p flags %#x\n",
2906b4cac81SBjoern A. Zeeb 		    __func__, c, c->ic_flags);
2916b4cac81SBjoern A. Zeeb }
2926b4cac81SBjoern A. Zeeb 
2936b4cac81SBjoern A. Zeeb static uint32_t
2946b4cac81SBjoern A. Zeeb lkpi_nl80211_band_to_net80211_band(enum nl80211_band band)
2956b4cac81SBjoern A. Zeeb {
2966b4cac81SBjoern A. Zeeb 
2976b4cac81SBjoern A. Zeeb 	/* XXX-BZ this is just silly; net80211 is too convoluted. */
2986b4cac81SBjoern A. Zeeb 	/* IEEE80211_CHAN_A / _G / .. doesn't really work either. */
2996b4cac81SBjoern A. Zeeb 	switch (band) {
3006b4cac81SBjoern A. Zeeb 	case NL80211_BAND_2GHZ:
3016b4cac81SBjoern A. Zeeb 		return (IEEE80211_CHAN_2GHZ);
3026b4cac81SBjoern A. Zeeb 		break;
3036b4cac81SBjoern A. Zeeb 	case NL80211_BAND_5GHZ:
3046b4cac81SBjoern A. Zeeb 		return (IEEE80211_CHAN_5GHZ);
3056b4cac81SBjoern A. Zeeb 		break;
3066b4cac81SBjoern A. Zeeb 	case NL80211_BAND_60GHZ:
3076b4cac81SBjoern A. Zeeb 		break;
3086b4cac81SBjoern A. Zeeb 	case NL80211_BAND_6GHZ:
3096b4cac81SBjoern A. Zeeb 		break;
3106b4cac81SBjoern A. Zeeb 	default:
3116b4cac81SBjoern A. Zeeb 		panic("%s: unsupported band %u\n", __func__, band);
3126b4cac81SBjoern A. Zeeb 		break;
3136b4cac81SBjoern A. Zeeb 	}
3146b4cac81SBjoern A. Zeeb 
3156b4cac81SBjoern A. Zeeb 	IMPROVE();
3166b4cac81SBjoern A. Zeeb 	return (0x00);
3176b4cac81SBjoern A. Zeeb }
3186b4cac81SBjoern A. Zeeb 
3196b4cac81SBjoern A. Zeeb static enum ieee80211_ac_numbers
3206b4cac81SBjoern A. Zeeb lkpi_ac_net_to_l80211(int ac)
3216b4cac81SBjoern A. Zeeb {
3226b4cac81SBjoern A. Zeeb 
3236b4cac81SBjoern A. Zeeb 	switch (ac) {
3246b4cac81SBjoern A. Zeeb 	case WME_AC_VO:
3256b4cac81SBjoern A. Zeeb 		return (IEEE80211_AC_VO);
3266b4cac81SBjoern A. Zeeb 	case WME_AC_VI:
3276b4cac81SBjoern A. Zeeb 		return (IEEE80211_AC_VI);
3286b4cac81SBjoern A. Zeeb 	case WME_AC_BE:
3296b4cac81SBjoern A. Zeeb 		return (IEEE80211_AC_BE);
3306b4cac81SBjoern A. Zeeb 	case WME_AC_BK:
3316b4cac81SBjoern A. Zeeb 		return (IEEE80211_AC_BK);
3326b4cac81SBjoern A. Zeeb 	default:
3336b4cac81SBjoern A. Zeeb 		printf("%s: invalid WME_AC_* input: ac = %d\n", __func__, ac);
3346b4cac81SBjoern A. Zeeb 		return (IEEE80211_AC_BE);
3356b4cac81SBjoern A. Zeeb 	}
3366b4cac81SBjoern A. Zeeb }
3376b4cac81SBjoern A. Zeeb 
3386b4cac81SBjoern A. Zeeb static enum nl80211_iftype
3396b4cac81SBjoern A. Zeeb lkpi_opmode_to_vif_type(enum ieee80211_opmode opmode)
3406b4cac81SBjoern A. Zeeb {
3416b4cac81SBjoern A. Zeeb 
3426b4cac81SBjoern A. Zeeb 	switch (opmode) {
3436b4cac81SBjoern A. Zeeb 	case IEEE80211_M_IBSS:
3446b4cac81SBjoern A. Zeeb 		return (NL80211_IFTYPE_ADHOC);
3456b4cac81SBjoern A. Zeeb 		break;
3466b4cac81SBjoern A. Zeeb 	case IEEE80211_M_STA:
3476b4cac81SBjoern A. Zeeb 		return (NL80211_IFTYPE_STATION);
3486b4cac81SBjoern A. Zeeb 		break;
3496b4cac81SBjoern A. Zeeb 	case IEEE80211_M_WDS:
3506b4cac81SBjoern A. Zeeb 		return (NL80211_IFTYPE_WDS);
3516b4cac81SBjoern A. Zeeb 		break;
3526b4cac81SBjoern A. Zeeb 	case IEEE80211_M_HOSTAP:
3536b4cac81SBjoern A. Zeeb 		return (NL80211_IFTYPE_AP);
3546b4cac81SBjoern A. Zeeb 		break;
3556b4cac81SBjoern A. Zeeb 	case IEEE80211_M_MONITOR:
3566b4cac81SBjoern A. Zeeb 		return (NL80211_IFTYPE_MONITOR);
3576b4cac81SBjoern A. Zeeb 		break;
3586b4cac81SBjoern A. Zeeb 	case IEEE80211_M_MBSS:
3596b4cac81SBjoern A. Zeeb 		return (NL80211_IFTYPE_MESH_POINT);
3606b4cac81SBjoern A. Zeeb 		break;
3616b4cac81SBjoern A. Zeeb 	case IEEE80211_M_AHDEMO:
3626b4cac81SBjoern A. Zeeb 		/* FALLTHROUGH */
3636b4cac81SBjoern A. Zeeb 	default:
3646b4cac81SBjoern A. Zeeb 		printf("ERROR: %s: unsupported opmode %d\n", __func__, opmode);
3656b4cac81SBjoern A. Zeeb 		/* FALLTHROUGH */
3666b4cac81SBjoern A. Zeeb 	}
3676b4cac81SBjoern A. Zeeb 	return (NL80211_IFTYPE_UNSPECIFIED);
3686b4cac81SBjoern A. Zeeb }
3696b4cac81SBjoern A. Zeeb 
370b35f6cd0SBjoern A. Zeeb #ifdef LKPI_80211_HW_CRYPTO
3716b4cac81SBjoern A. Zeeb static uint32_t
3726b4cac81SBjoern A. Zeeb lkpi_l80211_to_net80211_cyphers(uint32_t wlan_cipher_suite)
3736b4cac81SBjoern A. Zeeb {
3746b4cac81SBjoern A. Zeeb 
3756b4cac81SBjoern A. Zeeb 	switch (wlan_cipher_suite) {
3766b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_WEP40:
3776b4cac81SBjoern A. Zeeb 		return (IEEE80211_CRYPTO_WEP);
3786b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_TKIP:
3796b4cac81SBjoern A. Zeeb 		return (IEEE80211_CRYPTO_TKIP);
3806b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_CCMP:
3816b4cac81SBjoern A. Zeeb 		return (IEEE80211_CIPHER_AES_CCM);
3826b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_WEP104:
3836b4cac81SBjoern A. Zeeb 		return (IEEE80211_CRYPTO_WEP);
3846b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_AES_CMAC:
3856b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_GCMP:
3866b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_GCMP_256:
3876b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_CCMP_256:
3886b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_BIP_GMAC_128:
3896b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_BIP_GMAC_256:
3906b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_BIP_CMAC_256:
3916b4cac81SBjoern A. Zeeb 		printf("%s: unsupported WLAN Cipher Suite %#08x | %u\n", __func__,
3926b4cac81SBjoern A. Zeeb 		    wlan_cipher_suite >> 8, wlan_cipher_suite & 0xff);
3936b4cac81SBjoern A. Zeeb 		break;
3946b4cac81SBjoern A. Zeeb 	default:
3956b4cac81SBjoern A. Zeeb 		printf("%s: unknown WLAN Cipher Suite %#08x | %u\n", __func__,
3966b4cac81SBjoern A. Zeeb 		    wlan_cipher_suite >> 8, wlan_cipher_suite & 0xff);
3976b4cac81SBjoern A. Zeeb 	}
3986b4cac81SBjoern A. Zeeb 
3996b4cac81SBjoern A. Zeeb 	return (0);
4006b4cac81SBjoern A. Zeeb }
4016b4cac81SBjoern A. Zeeb 
4026b4cac81SBjoern A. Zeeb static uint32_t
4036b4cac81SBjoern A. Zeeb lkpi_net80211_to_l80211_cipher_suite(uint32_t cipher, uint8_t keylen)
4046b4cac81SBjoern A. Zeeb {
4056b4cac81SBjoern A. Zeeb 
4066b4cac81SBjoern A. Zeeb 	switch (cipher) {
4076b4cac81SBjoern A. Zeeb 	case IEEE80211_CIPHER_TKIP:
4086b4cac81SBjoern A. Zeeb 		return (WLAN_CIPHER_SUITE_TKIP);
4096b4cac81SBjoern A. Zeeb 	case IEEE80211_CIPHER_AES_CCM:
4106b4cac81SBjoern A. Zeeb 		return (WLAN_CIPHER_SUITE_CCMP);
4116b4cac81SBjoern A. Zeeb 	case IEEE80211_CIPHER_WEP:
4126b4cac81SBjoern A. Zeeb 		if (keylen < 8)
4136b4cac81SBjoern A. Zeeb 			return (WLAN_CIPHER_SUITE_WEP40);
4146b4cac81SBjoern A. Zeeb 		else
4156b4cac81SBjoern A. Zeeb 			return (WLAN_CIPHER_SUITE_WEP104);
4166b4cac81SBjoern A. Zeeb 		break;
4176b4cac81SBjoern A. Zeeb 	case IEEE80211_CIPHER_AES_OCB:
4186b4cac81SBjoern A. Zeeb 	case IEEE80211_CIPHER_TKIPMIC:
4196b4cac81SBjoern A. Zeeb 	case IEEE80211_CIPHER_CKIP:
4206b4cac81SBjoern A. Zeeb 	case IEEE80211_CIPHER_NONE:
4216b4cac81SBjoern A. Zeeb 		printf("%s: unsupported cipher %#010x\n", __func__, cipher);
4226b4cac81SBjoern A. Zeeb 		break;
4236b4cac81SBjoern A. Zeeb 	default:
4246b4cac81SBjoern A. Zeeb 		printf("%s: unknown cipher %#010x\n", __func__, cipher);
4256b4cac81SBjoern A. Zeeb 	};
4266b4cac81SBjoern A. Zeeb 	return (0);
4276b4cac81SBjoern A. Zeeb }
4286b4cac81SBjoern A. Zeeb #endif
4296b4cac81SBjoern A. Zeeb 
4306b4cac81SBjoern A. Zeeb #ifdef __notyet__
4316b4cac81SBjoern A. Zeeb static enum ieee80211_sta_state
4326b4cac81SBjoern A. Zeeb lkpi_net80211_state_to_sta_state(enum ieee80211_state state)
4336b4cac81SBjoern A. Zeeb {
4346b4cac81SBjoern A. Zeeb 
4356b4cac81SBjoern A. Zeeb 	/*
4366b4cac81SBjoern A. Zeeb 	 * XXX-BZ The net80211 states are "try to ..", the lkpi8011 states are
4376b4cac81SBjoern A. Zeeb 	 * "done".  Also ASSOC/AUTHORIZED are both "RUN" then?
4386b4cac81SBjoern A. Zeeb 	 */
4396b4cac81SBjoern A. Zeeb 	switch (state) {
4406b4cac81SBjoern A. Zeeb 	case IEEE80211_S_INIT:
4416b4cac81SBjoern A. Zeeb 		return (IEEE80211_STA_NOTEXIST);
4426b4cac81SBjoern A. Zeeb 	case IEEE80211_S_SCAN:
4436b4cac81SBjoern A. Zeeb 		return (IEEE80211_STA_NONE);
4446b4cac81SBjoern A. Zeeb 	case IEEE80211_S_AUTH:
4456b4cac81SBjoern A. Zeeb 		return (IEEE80211_STA_AUTH);
4466b4cac81SBjoern A. Zeeb 	case IEEE80211_S_ASSOC:
4476b4cac81SBjoern A. Zeeb 		return (IEEE80211_STA_ASSOC);
4486b4cac81SBjoern A. Zeeb 	case IEEE80211_S_RUN:
4496b4cac81SBjoern A. Zeeb 		return (IEEE80211_STA_AUTHORIZED);
4506b4cac81SBjoern A. Zeeb 	case IEEE80211_S_CAC:
4516b4cac81SBjoern A. Zeeb 	case IEEE80211_S_CSA:
4526b4cac81SBjoern A. Zeeb 	case IEEE80211_S_SLEEP:
4536b4cac81SBjoern A. Zeeb 	default:
4546b4cac81SBjoern A. Zeeb 		UNIMPLEMENTED;
4556b4cac81SBjoern A. Zeeb 	};
4566b4cac81SBjoern A. Zeeb 
4576b4cac81SBjoern A. Zeeb 	return (IEEE80211_STA_NOTEXIST);
4586b4cac81SBjoern A. Zeeb }
4596b4cac81SBjoern A. Zeeb #endif
4606b4cac81SBjoern A. Zeeb 
4616b4cac81SBjoern A. Zeeb static struct linuxkpi_ieee80211_channel *
4626b4cac81SBjoern A. Zeeb lkpi_find_lkpi80211_chan(struct lkpi_hw *lhw,
4636b4cac81SBjoern A. Zeeb     struct ieee80211_channel *c)
4646b4cac81SBjoern A. Zeeb {
4656b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
4666b4cac81SBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel *channels;
4676b4cac81SBjoern A. Zeeb 	enum nl80211_band band;
4686b4cac81SBjoern A. Zeeb 	int i, nchans;
4696b4cac81SBjoern A. Zeeb 
4706b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
4716b4cac81SBjoern A. Zeeb 	band = lkpi_net80211_chan_to_nl80211_band(c);
4726b4cac81SBjoern A. Zeeb 	if (hw->wiphy->bands[band] == NULL)
4736b4cac81SBjoern A. Zeeb 		return (NULL);
4746b4cac81SBjoern A. Zeeb 
4756b4cac81SBjoern A. Zeeb 	nchans = hw->wiphy->bands[band]->n_channels;
4766b4cac81SBjoern A. Zeeb 	if (nchans <= 0)
4776b4cac81SBjoern A. Zeeb 		return (NULL);
4786b4cac81SBjoern A. Zeeb 
4796b4cac81SBjoern A. Zeeb 	channels = hw->wiphy->bands[band]->channels;
4806b4cac81SBjoern A. Zeeb 	for (i = 0; i < nchans; i++) {
4816b4cac81SBjoern A. Zeeb 		if (channels[i].hw_value == c->ic_ieee)
4826b4cac81SBjoern A. Zeeb 			return (&channels[i]);
4836b4cac81SBjoern A. Zeeb 	}
4846b4cac81SBjoern A. Zeeb 
4856b4cac81SBjoern A. Zeeb 	return (NULL);
4866b4cac81SBjoern A. Zeeb }
4876b4cac81SBjoern A. Zeeb 
4886b4cac81SBjoern A. Zeeb static struct linuxkpi_ieee80211_channel *
4896b4cac81SBjoern A. Zeeb lkpi_get_lkpi80211_chan(struct ieee80211com *ic, struct ieee80211_node *ni)
4906b4cac81SBjoern A. Zeeb {
4916b4cac81SBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel *chan;
4926b4cac81SBjoern A. Zeeb 	struct ieee80211_channel *c;
4936b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
4946b4cac81SBjoern A. Zeeb 
4956b4cac81SBjoern A. Zeeb 	chan = NULL;
4966b4cac81SBjoern A. Zeeb 	if (ni != NULL && ni->ni_chan != IEEE80211_CHAN_ANYC)
4976b4cac81SBjoern A. Zeeb 		c = ni->ni_chan;
4986b4cac81SBjoern A. Zeeb 	else if (ic->ic_bsschan != IEEE80211_CHAN_ANYC)
4996b4cac81SBjoern A. Zeeb 		c = ic->ic_bsschan;
5006b4cac81SBjoern A. Zeeb 	else if (ic->ic_curchan != IEEE80211_CHAN_ANYC)
5016b4cac81SBjoern A. Zeeb 		c = ic->ic_curchan;
5026b4cac81SBjoern A. Zeeb 	else
5036b4cac81SBjoern A. Zeeb 		c = NULL;
5046b4cac81SBjoern A. Zeeb 
5056b4cac81SBjoern A. Zeeb 	if (c != NULL && c != IEEE80211_CHAN_ANYC) {
5066b4cac81SBjoern A. Zeeb 		lhw = ic->ic_softc;
5076b4cac81SBjoern A. Zeeb 		chan = lkpi_find_lkpi80211_chan(lhw, c);
5086b4cac81SBjoern A. Zeeb 	}
5096b4cac81SBjoern A. Zeeb 
5106b4cac81SBjoern A. Zeeb 	return (chan);
5116b4cac81SBjoern A. Zeeb }
5126b4cac81SBjoern A. Zeeb 
5132e183d99SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *
5142e183d99SBjoern A. Zeeb linuxkpi_ieee80211_get_channel(struct wiphy *wiphy, uint32_t freq)
5152e183d99SBjoern A. Zeeb {
5162e183d99SBjoern A. Zeeb 	enum nl80211_band band;
5172e183d99SBjoern A. Zeeb 
5182e183d99SBjoern A. Zeeb 	for (band = 0; band < NUM_NL80211_BANDS; band++) {
5192e183d99SBjoern A. Zeeb 		struct ieee80211_supported_band *supband;
5202e183d99SBjoern A. Zeeb 		struct linuxkpi_ieee80211_channel *channels;
5212e183d99SBjoern A. Zeeb 		int i;
5222e183d99SBjoern A. Zeeb 
5232e183d99SBjoern A. Zeeb 		supband = wiphy->bands[band];
5242e183d99SBjoern A. Zeeb 		if (supband == NULL || supband->n_channels == 0)
5252e183d99SBjoern A. Zeeb 			continue;
5262e183d99SBjoern A. Zeeb 
5272e183d99SBjoern A. Zeeb 		channels = supband->channels;
5282e183d99SBjoern A. Zeeb 		for (i = 0; i < supband->n_channels; i++) {
5292e183d99SBjoern A. Zeeb 			if (channels[i].center_freq == freq)
5302e183d99SBjoern A. Zeeb 				return (&channels[i]);
5312e183d99SBjoern A. Zeeb 		}
5322e183d99SBjoern A. Zeeb 	}
5332e183d99SBjoern A. Zeeb 
5342e183d99SBjoern A. Zeeb 	return (NULL);
5352e183d99SBjoern A. Zeeb }
5362e183d99SBjoern A. Zeeb 
537d8dd6b32SBjoern A. Zeeb void
538d8dd6b32SBjoern A. Zeeb linuxkpi_cfg80211_bss_flush(struct wiphy *wiphy)
539d8dd6b32SBjoern A. Zeeb {
540d8dd6b32SBjoern A. Zeeb 	struct lkpi_hw *lhw;
541d8dd6b32SBjoern A. Zeeb 	struct ieee80211com *ic;
542d8dd6b32SBjoern A. Zeeb 	struct ieee80211vap *vap;
543d8dd6b32SBjoern A. Zeeb 
544d8dd6b32SBjoern A. Zeeb 	lhw = wiphy_priv(wiphy);
545d8dd6b32SBjoern A. Zeeb 	ic = lhw->ic;
546d8dd6b32SBjoern A. Zeeb 
547d8dd6b32SBjoern A. Zeeb 	/*
548d8dd6b32SBjoern A. Zeeb 	 * If we haven't called ieee80211_ifattach() yet
549d8dd6b32SBjoern A. Zeeb 	 * or there is no VAP, there are no scans to flush.
550d8dd6b32SBjoern A. Zeeb 	 */
551d8dd6b32SBjoern A. Zeeb 	if (ic == NULL ||
552d8dd6b32SBjoern A. Zeeb 	    (lhw->sc_flags & LKPI_MAC80211_DRV_STARTED) == 0)
553d8dd6b32SBjoern A. Zeeb 		return;
554d8dd6b32SBjoern A. Zeeb 
555d8dd6b32SBjoern A. Zeeb 	/* Should only happen on the current one? Not seen it late enough. */
556d8dd6b32SBjoern A. Zeeb 	IEEE80211_LOCK(ic);
557d8dd6b32SBjoern A. Zeeb 	TAILQ_FOREACH(vap, &ic->ic_vaps, iv_next)
558d8dd6b32SBjoern A. Zeeb 		ieee80211_scan_flush(vap);
559d8dd6b32SBjoern A. Zeeb 	IEEE80211_UNLOCK(ic);
560d8dd6b32SBjoern A. Zeeb }
561d8dd6b32SBjoern A. Zeeb 
562b35f6cd0SBjoern A. Zeeb #ifdef LKPI_80211_HW_CRYPTO
5636b4cac81SBjoern A. Zeeb static int
5646b4cac81SBjoern A. Zeeb _lkpi_iv_key_set_delete(struct ieee80211vap *vap, const struct ieee80211_key *k,
5656b4cac81SBjoern A. Zeeb     enum set_key_cmd cmd)
5666b4cac81SBjoern A. Zeeb {
5676b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
5686b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
5696b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
5706b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
5716b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
5726b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
5736b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
5746b4cac81SBjoern A. Zeeb 	struct ieee80211_key_conf *kc;
5756b4cac81SBjoern A. Zeeb 	int error;
5766b4cac81SBjoern A. Zeeb 
5776b4cac81SBjoern A. Zeeb 	/* XXX TODO Check (k->wk_flags & IEEE80211_KEY_SWENCRYPT) and don't upload to driver/hw? */
5786b4cac81SBjoern A. Zeeb 
5796b4cac81SBjoern A. Zeeb 	ic = vap->iv_ic;
5806b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
5816b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
5826b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
5836b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
5846b4cac81SBjoern A. Zeeb 
5856b4cac81SBjoern A. Zeeb 	memset(&kc, 0, sizeof(kc));
5866b4cac81SBjoern A. Zeeb 	kc = malloc(sizeof(*kc) + k->wk_keylen, M_LKPI80211, M_WAITOK | M_ZERO);
5876b4cac81SBjoern A. Zeeb 	kc->cipher = lkpi_net80211_to_l80211_cipher_suite(
5886b4cac81SBjoern A. Zeeb 	    k->wk_cipher->ic_cipher, k->wk_keylen);
5896b4cac81SBjoern A. Zeeb 	kc->keyidx = k->wk_keyix;
5906b4cac81SBjoern A. Zeeb #if 0
5916b4cac81SBjoern A. Zeeb 	kc->hw_key_idx = /* set by hw and needs to be passed for TX */;
5926b4cac81SBjoern A. Zeeb #endif
5936b4cac81SBjoern A. Zeeb 	atomic64_set(&kc->tx_pn, k->wk_keytsc);
5946b4cac81SBjoern A. Zeeb 	kc->keylen = k->wk_keylen;
5956b4cac81SBjoern A. Zeeb 	memcpy(kc->key, k->wk_key, k->wk_keylen);
5966b4cac81SBjoern A. Zeeb 
5976b4cac81SBjoern A. Zeeb 	switch (kc->cipher) {
5986b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_CCMP:
5996b4cac81SBjoern A. Zeeb 		kc->iv_len = k->wk_cipher->ic_header;
6006b4cac81SBjoern A. Zeeb 		kc->icv_len = k->wk_cipher->ic_trailer;
6016b4cac81SBjoern A. Zeeb 		break;
6026b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_TKIP:
6036b4cac81SBjoern A. Zeeb 	default:
6046b4cac81SBjoern A. Zeeb 		IMPROVE();
6056b4cac81SBjoern A. Zeeb 		return (0);
6066b4cac81SBjoern A. Zeeb 	};
6076b4cac81SBjoern A. Zeeb 
6086b4cac81SBjoern A. Zeeb 	ni = vap->iv_bss;
6096b4cac81SBjoern A. Zeeb 	sta = ieee80211_find_sta(vif, ni->ni_bssid);
6106b4cac81SBjoern A. Zeeb 	if (sta != NULL) {
6116b4cac81SBjoern A. Zeeb 		struct lkpi_sta *lsta;
6126b4cac81SBjoern A. Zeeb 
6136b4cac81SBjoern A. Zeeb 		lsta = STA_TO_LSTA(sta);
6146b4cac81SBjoern A. Zeeb 		lsta->kc = kc;
6156b4cac81SBjoern A. Zeeb 	}
6166b4cac81SBjoern A. Zeeb 
6176b4cac81SBjoern A. Zeeb 	error = lkpi_80211_mo_set_key(hw, cmd, vif, sta, kc);
6186b4cac81SBjoern A. Zeeb 	if (error != 0) {
6196b4cac81SBjoern A. Zeeb 		/* XXX-BZ leaking kc currently */
6206b4cac81SBjoern A. Zeeb 		ic_printf(ic, "%s: set_key failed: %d\n", __func__, error);
6216b4cac81SBjoern A. Zeeb 		return (0);
6226b4cac81SBjoern A. Zeeb 	} else {
6236b4cac81SBjoern A. Zeeb 		ic_printf(ic, "%s: set_key succeeded: keyidx %u hw_key_idx %u "
6246b4cac81SBjoern A. Zeeb 		    "flags %#10x\n", __func__,
6256b4cac81SBjoern A. Zeeb 		    kc->keyidx, kc->hw_key_idx, kc->flags);
6266b4cac81SBjoern A. Zeeb 		return (1);
6276b4cac81SBjoern A. Zeeb 	}
6286b4cac81SBjoern A. Zeeb }
6296b4cac81SBjoern A. Zeeb 
6306b4cac81SBjoern A. Zeeb static int
6316b4cac81SBjoern A. Zeeb lkpi_iv_key_delete(struct ieee80211vap *vap, const struct ieee80211_key *k)
6326b4cac81SBjoern A. Zeeb {
6336b4cac81SBjoern A. Zeeb 
6346b4cac81SBjoern A. Zeeb 	/* XXX-BZ one day we should replace this iterating over VIFs, or node list? */
6356b4cac81SBjoern A. Zeeb 	return (_lkpi_iv_key_set_delete(vap, k, DISABLE_KEY));
6366b4cac81SBjoern A. Zeeb }
6376b4cac81SBjoern A. Zeeb static  int
6386b4cac81SBjoern A. Zeeb lkpi_iv_key_set(struct ieee80211vap *vap, const struct ieee80211_key *k)
6396b4cac81SBjoern A. Zeeb {
6406b4cac81SBjoern A. Zeeb 
6416b4cac81SBjoern A. Zeeb 	return (_lkpi_iv_key_set_delete(vap, k, SET_KEY));
6426b4cac81SBjoern A. Zeeb }
6436b4cac81SBjoern A. Zeeb #endif
6446b4cac81SBjoern A. Zeeb 
6456b4cac81SBjoern A. Zeeb static u_int
6466b4cac81SBjoern A. Zeeb lkpi_ic_update_mcast_copy(void *arg, struct sockaddr_dl *sdl, u_int cnt)
6476b4cac81SBjoern A. Zeeb {
6486b4cac81SBjoern A. Zeeb 	struct netdev_hw_addr_list *mc_list;
6496b4cac81SBjoern A. Zeeb 	struct netdev_hw_addr *addr;
6506b4cac81SBjoern A. Zeeb 
6516b4cac81SBjoern A. Zeeb 	KASSERT(arg != NULL && sdl != NULL, ("%s: arg %p sdl %p cnt %u\n",
6526b4cac81SBjoern A. Zeeb 	    __func__, arg, sdl, cnt));
6536b4cac81SBjoern A. Zeeb 
6546b4cac81SBjoern A. Zeeb 	mc_list = arg;
6556b4cac81SBjoern A. Zeeb 	/* If it is on the list already skip it. */
6566b4cac81SBjoern A. Zeeb 	netdev_hw_addr_list_for_each(addr, mc_list) {
6576b4cac81SBjoern A. Zeeb 		if (!memcmp(addr->addr, LLADDR(sdl), sdl->sdl_alen))
6586b4cac81SBjoern A. Zeeb 			return (0);
6596b4cac81SBjoern A. Zeeb 	}
6606b4cac81SBjoern A. Zeeb 
6616b4cac81SBjoern A. Zeeb 	addr = malloc(sizeof(*addr), M_LKPI80211, M_NOWAIT | M_ZERO);
6626b4cac81SBjoern A. Zeeb 	if (addr == NULL)
6636b4cac81SBjoern A. Zeeb 		return (0);
6646b4cac81SBjoern A. Zeeb 
6656b4cac81SBjoern A. Zeeb 	INIT_LIST_HEAD(&addr->addr_list);
6666b4cac81SBjoern A. Zeeb 	memcpy(addr->addr, LLADDR(sdl), sdl->sdl_alen);
6676b4cac81SBjoern A. Zeeb 	/* XXX this should be a netdev function? */
6686b4cac81SBjoern A. Zeeb 	list_add(&addr->addr_list, &mc_list->addr_list);
6696b4cac81SBjoern A. Zeeb 	mc_list->count++;
6706b4cac81SBjoern A. Zeeb 
6719d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
6729d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE)
6736b4cac81SBjoern A. Zeeb 		printf("%s:%d: mc_list count %d: added %6D\n",
6746b4cac81SBjoern A. Zeeb 		    __func__, __LINE__, mc_list->count, addr->addr, ":");
6759d9ba2b7SBjoern A. Zeeb #endif
6766b4cac81SBjoern A. Zeeb 
6776b4cac81SBjoern A. Zeeb 	return (1);
6786b4cac81SBjoern A. Zeeb }
6796b4cac81SBjoern A. Zeeb 
6806b4cac81SBjoern A. Zeeb static void
6816b4cac81SBjoern A. Zeeb lkpi_update_mcast_filter(struct ieee80211com *ic, bool force)
6826b4cac81SBjoern A. Zeeb {
6836b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
6846b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
6856b4cac81SBjoern A. Zeeb 	struct netdev_hw_addr_list mc_list;
6866b4cac81SBjoern A. Zeeb 	struct list_head *le, *next;
6876b4cac81SBjoern A. Zeeb 	struct netdev_hw_addr *addr;
6886b4cac81SBjoern A. Zeeb 	struct ieee80211vap *vap;
6896b4cac81SBjoern A. Zeeb 	u64 mc;
6906b4cac81SBjoern A. Zeeb 	unsigned int changed_flags, total_flags;
6916b4cac81SBjoern A. Zeeb 
6926b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
6936b4cac81SBjoern A. Zeeb 
6946b4cac81SBjoern A. Zeeb 	if (lhw->ops->prepare_multicast == NULL ||
6956b4cac81SBjoern A. Zeeb 	    lhw->ops->configure_filter == NULL)
6966b4cac81SBjoern A. Zeeb 		return;
6976b4cac81SBjoern A. Zeeb 
6986b4cac81SBjoern A. Zeeb 	if (!lhw->update_mc && !force)
6996b4cac81SBjoern A. Zeeb 		return;
7006b4cac81SBjoern A. Zeeb 
7016b4cac81SBjoern A. Zeeb 	changed_flags = total_flags = 0;
7026b4cac81SBjoern A. Zeeb 	mc_list.count = 0;
7036b4cac81SBjoern A. Zeeb 	INIT_LIST_HEAD(&mc_list.addr_list);
7046b4cac81SBjoern A. Zeeb 	if (ic->ic_allmulti == 0) {
7056b4cac81SBjoern A. Zeeb 		TAILQ_FOREACH(vap, &ic->ic_vaps, iv_next)
7066b4cac81SBjoern A. Zeeb 			if_foreach_llmaddr(vap->iv_ifp,
7076b4cac81SBjoern A. Zeeb 			    lkpi_ic_update_mcast_copy, &mc_list);
7086b4cac81SBjoern A. Zeeb 	} else {
7096b4cac81SBjoern A. Zeeb 		changed_flags |= FIF_ALLMULTI;
7106b4cac81SBjoern A. Zeeb 	}
7116b4cac81SBjoern A. Zeeb 
7126b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
7136b4cac81SBjoern A. Zeeb 	mc = lkpi_80211_mo_prepare_multicast(hw, &mc_list);
7146b4cac81SBjoern A. Zeeb 	/*
7156b4cac81SBjoern A. Zeeb 	 * XXX-BZ make sure to get this sorted what is a change,
7166b4cac81SBjoern A. Zeeb 	 * what gets all set; what was already set?
7176b4cac81SBjoern A. Zeeb 	 */
7186b4cac81SBjoern A. Zeeb 	total_flags = changed_flags;
7196b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_configure_filter(hw, changed_flags, &total_flags, mc);
7206b4cac81SBjoern A. Zeeb 
7219d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
7229d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE)
7236b4cac81SBjoern A. Zeeb 		printf("%s: changed_flags %#06x count %d total_flags %#010x\n",
7246b4cac81SBjoern A. Zeeb 		    __func__, changed_flags, mc_list.count, total_flags);
7259d9ba2b7SBjoern A. Zeeb #endif
7266b4cac81SBjoern A. Zeeb 
7276b4cac81SBjoern A. Zeeb 	if (mc_list.count != 0) {
7286b4cac81SBjoern A. Zeeb 		list_for_each_safe(le, next, &mc_list.addr_list) {
7296b4cac81SBjoern A. Zeeb 			addr = list_entry(le, struct netdev_hw_addr, addr_list);
7306b4cac81SBjoern A. Zeeb 			free(addr, M_LKPI80211);
7316b4cac81SBjoern A. Zeeb 			mc_list.count--;
7326b4cac81SBjoern A. Zeeb 		}
7336b4cac81SBjoern A. Zeeb 	}
7346b4cac81SBjoern A. Zeeb 	KASSERT(mc_list.count == 0, ("%s: mc_list %p count %d != 0\n",
7356b4cac81SBjoern A. Zeeb 	    __func__, &mc_list, mc_list.count));
7366b4cac81SBjoern A. Zeeb }
7376b4cac81SBjoern A. Zeeb 
738fa8f007dSBjoern A. Zeeb static enum ieee80211_bss_changed
739fa8f007dSBjoern A. Zeeb lkpi_update_dtim_tsf(struct ieee80211_vif *vif, struct ieee80211_node *ni,
740fa8f007dSBjoern A. Zeeb     struct ieee80211vap *vap, const char *_f, int _l)
741fa8f007dSBjoern A. Zeeb {
742fa8f007dSBjoern A. Zeeb 	enum ieee80211_bss_changed bss_changed;
743fa8f007dSBjoern A. Zeeb 
744fa8f007dSBjoern A. Zeeb 	bss_changed = 0;
745fa8f007dSBjoern A. Zeeb 
7469d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
7479d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE)
748fa8f007dSBjoern A. Zeeb 		printf("%s:%d [%s:%d] assoc %d aid %d beacon_int %u "
749fa8f007dSBjoern A. Zeeb 		    "dtim_period %u sync_dtim_count %u sync_tsf %ju "
750fa8f007dSBjoern A. Zeeb 		    "sync_device_ts %u bss_changed %#08x\n",
751fa8f007dSBjoern A. Zeeb 			__func__, __LINE__, _f, _l,
752fa8f007dSBjoern A. Zeeb 			vif->bss_conf.assoc, vif->bss_conf.aid,
753fa8f007dSBjoern A. Zeeb 			vif->bss_conf.beacon_int, vif->bss_conf.dtim_period,
754fa8f007dSBjoern A. Zeeb 			vif->bss_conf.sync_dtim_count,
755fa8f007dSBjoern A. Zeeb 			(uintmax_t)vif->bss_conf.sync_tsf,
756fa8f007dSBjoern A. Zeeb 			vif->bss_conf.sync_device_ts,
757fa8f007dSBjoern A. Zeeb 			bss_changed);
7589d9ba2b7SBjoern A. Zeeb #endif
759fa8f007dSBjoern A. Zeeb 
760fa8f007dSBjoern A. Zeeb 	if (vif->bss_conf.beacon_int != ni->ni_intval) {
761fa8f007dSBjoern A. Zeeb 		vif->bss_conf.beacon_int = ni->ni_intval;
762fa8f007dSBjoern A. Zeeb 		/* iwlwifi FW bug workaround; iwl_mvm_mac_sta_state. */
763fa8f007dSBjoern A. Zeeb 		if (vif->bss_conf.beacon_int < 16)
764fa8f007dSBjoern A. Zeeb 			vif->bss_conf.beacon_int = 16;
765fa8f007dSBjoern A. Zeeb 		bss_changed |= BSS_CHANGED_BEACON_INT;
766fa8f007dSBjoern A. Zeeb 	}
767fa8f007dSBjoern A. Zeeb 	if (vif->bss_conf.dtim_period != vap->iv_dtim_period &&
768fa8f007dSBjoern A. Zeeb 	    vap->iv_dtim_period > 0) {
769fa8f007dSBjoern A. Zeeb 		vif->bss_conf.dtim_period = vap->iv_dtim_period;
770fa8f007dSBjoern A. Zeeb 		bss_changed |= BSS_CHANGED_BEACON_INFO;
771fa8f007dSBjoern A. Zeeb 	}
772fa8f007dSBjoern A. Zeeb 
773fa8f007dSBjoern A. Zeeb 	vif->bss_conf.sync_dtim_count = vap->iv_dtim_count;
774fa8f007dSBjoern A. Zeeb 	vif->bss_conf.sync_tsf = le64toh(ni->ni_tstamp.tsf);
775fa8f007dSBjoern A. Zeeb 	/* vif->bss_conf.sync_device_ts = set in linuxkpi_ieee80211_rx. */
776fa8f007dSBjoern A. Zeeb 
7779d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
7789d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE)
779fa8f007dSBjoern A. Zeeb 		printf("%s:%d [%s:%d] assoc %d aid %d beacon_int %u "
780fa8f007dSBjoern A. Zeeb 		    "dtim_period %u sync_dtim_count %u sync_tsf %ju "
781fa8f007dSBjoern A. Zeeb 		    "sync_device_ts %u bss_changed %#08x\n",
782fa8f007dSBjoern A. Zeeb 			__func__, __LINE__, _f, _l,
783fa8f007dSBjoern A. Zeeb 			vif->bss_conf.assoc, vif->bss_conf.aid,
784fa8f007dSBjoern A. Zeeb 			vif->bss_conf.beacon_int, vif->bss_conf.dtim_period,
785fa8f007dSBjoern A. Zeeb 			vif->bss_conf.sync_dtim_count,
786fa8f007dSBjoern A. Zeeb 			(uintmax_t)vif->bss_conf.sync_tsf,
787fa8f007dSBjoern A. Zeeb 			vif->bss_conf.sync_device_ts,
788fa8f007dSBjoern A. Zeeb 			bss_changed);
7899d9ba2b7SBjoern A. Zeeb #endif
790fa8f007dSBjoern A. Zeeb 
791fa8f007dSBjoern A. Zeeb 	return (bss_changed);
792fa8f007dSBjoern A. Zeeb }
793fa8f007dSBjoern A. Zeeb 
7946b4cac81SBjoern A. Zeeb static void
7956b4cac81SBjoern A. Zeeb lkpi_stop_hw_scan(struct lkpi_hw *lhw, struct ieee80211_vif *vif)
7966b4cac81SBjoern A. Zeeb {
7976b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
7986b4cac81SBjoern A. Zeeb 	int error;
7996b4cac81SBjoern A. Zeeb 
800*a486fbbdSBjoern A. Zeeb 	if ((lhw->scan_flags & LKPI_LHW_SCAN_RUNNING) == 0)
8016b4cac81SBjoern A. Zeeb 		return;
8026b4cac81SBjoern A. Zeeb 
8036b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
8046b4cac81SBjoern A. Zeeb 
805bec76628SBjoern A. Zeeb 	IEEE80211_UNLOCK(lhw->ic);
806bec76628SBjoern A. Zeeb 	LKPI_80211_LHW_LOCK(lhw);
8076b4cac81SBjoern A. Zeeb 	/* Need to cancel the scan. */
8086b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_cancel_hw_scan(hw, vif);
8096b4cac81SBjoern A. Zeeb 
8106b4cac81SBjoern A. Zeeb 	/* Need to make sure we see ieee80211_scan_completed. */
8116b4cac81SBjoern A. Zeeb 	error = msleep(lhw, &lhw->mtx, 0, "lhwscanstop", hz/2);
812bec76628SBjoern A. Zeeb 	LKPI_80211_LHW_UNLOCK(lhw);
813bec76628SBjoern A. Zeeb 	IEEE80211_LOCK(lhw->ic);
8146b4cac81SBjoern A. Zeeb 
815*a486fbbdSBjoern A. Zeeb 	if ((lhw->scan_flags & LKPI_LHW_SCAN_RUNNING) != 0)
8166b4cac81SBjoern A. Zeeb 		ic_printf(lhw->ic, "%s: failed to cancel scan: %d (%p, %p)\n",
8176b4cac81SBjoern A. Zeeb 		    __func__, error, lhw, vif);
8186b4cac81SBjoern A. Zeeb }
8196b4cac81SBjoern A. Zeeb 
8206b4cac81SBjoern A. Zeeb static void
821086be6a8SBjoern A. Zeeb lkpi_hw_conf_idle(struct ieee80211_hw *hw, bool new)
822086be6a8SBjoern A. Zeeb {
823086be6a8SBjoern A. Zeeb 	struct lkpi_hw *lhw;
824086be6a8SBjoern A. Zeeb 	int error;
825086be6a8SBjoern A. Zeeb 	bool old;
826086be6a8SBjoern A. Zeeb 
827086be6a8SBjoern A. Zeeb 	old = hw->conf.flags & IEEE80211_CONF_IDLE;
828086be6a8SBjoern A. Zeeb 	if (old == new)
829086be6a8SBjoern A. Zeeb 		return;
830086be6a8SBjoern A. Zeeb 
831086be6a8SBjoern A. Zeeb 	hw->conf.flags ^= IEEE80211_CONF_IDLE;
832086be6a8SBjoern A. Zeeb 	error = lkpi_80211_mo_config(hw, IEEE80211_CONF_CHANGE_IDLE);
833086be6a8SBjoern A. Zeeb 	if (error != 0 && error != EOPNOTSUPP) {
834086be6a8SBjoern A. Zeeb 		lhw = HW_TO_LHW(hw);
835086be6a8SBjoern A. Zeeb 		ic_printf(lhw->ic, "ERROR: %s: config %#0x returned %d\n",
836086be6a8SBjoern A. Zeeb 		    __func__, IEEE80211_CONF_CHANGE_IDLE, error);
837086be6a8SBjoern A. Zeeb 	}
838086be6a8SBjoern A. Zeeb }
839086be6a8SBjoern A. Zeeb 
840086be6a8SBjoern A. Zeeb static void
8416b4cac81SBjoern A. Zeeb lkpi_disassoc(struct ieee80211_sta *sta, struct ieee80211_vif *vif,
8426b4cac81SBjoern A. Zeeb     struct lkpi_hw *lhw)
8436b4cac81SBjoern A. Zeeb {
8446b4cac81SBjoern A. Zeeb 	sta->aid = 0;
8456b4cac81SBjoern A. Zeeb 	if (vif->bss_conf.assoc) {
8466b4cac81SBjoern A. Zeeb 		struct ieee80211_hw *hw;
8476b4cac81SBjoern A. Zeeb 		enum ieee80211_bss_changed changed;
8486b4cac81SBjoern A. Zeeb 
8496b4cac81SBjoern A. Zeeb 		lhw->update_mc = true;
8506b4cac81SBjoern A. Zeeb 		lkpi_update_mcast_filter(lhw->ic, true);
8516b4cac81SBjoern A. Zeeb 
8526b4cac81SBjoern A. Zeeb 		changed = 0;
8536b4cac81SBjoern A. Zeeb 		vif->bss_conf.assoc = false;
8546b4cac81SBjoern A. Zeeb 		vif->bss_conf.aid = 0;
8556b4cac81SBjoern A. Zeeb 		changed |= BSS_CHANGED_ASSOC;
856d9f59799SBjoern A. Zeeb 		/*
857d9f59799SBjoern A. Zeeb 		 * This will remove the sta from firmware for iwlwifi.
858d9f59799SBjoern A. Zeeb 		 * So confusing that they use state and flags and ... ^%$%#%$^.
859d9f59799SBjoern A. Zeeb 		 */
8606b4cac81SBjoern A. Zeeb 		IMPROVE();
8616b4cac81SBjoern A. Zeeb 		hw = LHW_TO_HW(lhw);
8626b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf,
8636b4cac81SBjoern A. Zeeb 		    changed);
864086be6a8SBjoern A. Zeeb 
865086be6a8SBjoern A. Zeeb 		lkpi_hw_conf_idle(hw, true);
8666b4cac81SBjoern A. Zeeb 	}
8676b4cac81SBjoern A. Zeeb }
8686b4cac81SBjoern A. Zeeb 
8696b4cac81SBjoern A. Zeeb static void
8706b4cac81SBjoern A. Zeeb lkpi_wake_tx_queues(struct ieee80211_hw *hw, struct ieee80211_sta *sta,
8716b4cac81SBjoern A. Zeeb     bool dequeue_seen, bool no_emptyq)
8726b4cac81SBjoern A. Zeeb {
8736b4cac81SBjoern A. Zeeb 	struct lkpi_txq *ltxq;
8746b4cac81SBjoern A. Zeeb 	int tid;
8756b4cac81SBjoern A. Zeeb 
8766b4cac81SBjoern A. Zeeb 	/* Wake up all queues to know they are allocated in the driver. */
8776b4cac81SBjoern A. Zeeb 	for (tid = 0; tid < nitems(sta->txq); tid++) {
8786b4cac81SBjoern A. Zeeb 
8796b4cac81SBjoern A. Zeeb 			if (tid == IEEE80211_NUM_TIDS) {
8806b4cac81SBjoern A. Zeeb 				IMPROVE("station specific?");
8816b4cac81SBjoern A. Zeeb 				if (!ieee80211_hw_check(hw, STA_MMPDU_TXQ))
8826b4cac81SBjoern A. Zeeb 					continue;
8836b4cac81SBjoern A. Zeeb 			} else if (tid >= hw->queues)
8846b4cac81SBjoern A. Zeeb 				continue;
8856b4cac81SBjoern A. Zeeb 
8866b4cac81SBjoern A. Zeeb 			if (sta->txq[tid] == NULL)
8876b4cac81SBjoern A. Zeeb 				continue;
8886b4cac81SBjoern A. Zeeb 
8896b4cac81SBjoern A. Zeeb 			ltxq = TXQ_TO_LTXQ(sta->txq[tid]);
8906b4cac81SBjoern A. Zeeb 			if (dequeue_seen && !ltxq->seen_dequeue)
8916b4cac81SBjoern A. Zeeb 				continue;
8926b4cac81SBjoern A. Zeeb 
8936b4cac81SBjoern A. Zeeb 			if (no_emptyq && skb_queue_empty(&ltxq->skbq))
8946b4cac81SBjoern A. Zeeb 				continue;
8956b4cac81SBjoern A. Zeeb 
8966b4cac81SBjoern A. Zeeb 			lkpi_80211_mo_wake_tx_queue(hw, sta->txq[tid]);
8976b4cac81SBjoern A. Zeeb 	}
8986b4cac81SBjoern A. Zeeb }
8996b4cac81SBjoern A. Zeeb 
9006b4cac81SBjoern A. Zeeb /* -------------------------------------------------------------------------- */
9016b4cac81SBjoern A. Zeeb 
9026b4cac81SBjoern A. Zeeb static int
9036b4cac81SBjoern A. Zeeb lkpi_sta_state_do_nada(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
9046b4cac81SBjoern A. Zeeb {
9056b4cac81SBjoern A. Zeeb 
9066b4cac81SBjoern A. Zeeb 	return (0);
9076b4cac81SBjoern A. Zeeb }
9086b4cac81SBjoern A. Zeeb 
9096b4cac81SBjoern A. Zeeb /* lkpi_iv_newstate() handles the stop scan case generally. */
9106b4cac81SBjoern A. Zeeb #define	lkpi_sta_scan_to_init(_v, _n, _a)	lkpi_sta_state_do_nada(_v, _n, _a)
9116b4cac81SBjoern A. Zeeb 
9126b4cac81SBjoern A. Zeeb static int
9136b4cac81SBjoern A. Zeeb lkpi_sta_scan_to_auth(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
9146b4cac81SBjoern A. Zeeb {
9156b4cac81SBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel *chan;
9166b4cac81SBjoern A. Zeeb 	struct ieee80211_chanctx_conf *conf;
9176b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
9186b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
9196b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
9206b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
9216b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
9226b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
9236b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
9246b4cac81SBjoern A. Zeeb 	enum ieee80211_bss_changed bss_changed;
9256b4cac81SBjoern A. Zeeb 	struct ieee80211_prep_tx_info prep_tx_info;
9266b4cac81SBjoern A. Zeeb 	uint32_t changed;
9276b4cac81SBjoern A. Zeeb 	int error;
9286b4cac81SBjoern A. Zeeb 
9296b4cac81SBjoern A. Zeeb 	chan = lkpi_get_lkpi80211_chan(vap->iv_ic, vap->iv_bss);
9306b4cac81SBjoern A. Zeeb 	if (chan == NULL) {
9316b4cac81SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s: failed to get channel\n", __func__);
9326b4cac81SBjoern A. Zeeb 		return (ESRCH);
9336b4cac81SBjoern A. Zeeb 	}
9346b4cac81SBjoern A. Zeeb 
9356b4cac81SBjoern A. Zeeb 	lhw = vap->iv_ic->ic_softc;
9366b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
9376b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
9386b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
9396b4cac81SBjoern A. Zeeb 
940d9f59799SBjoern A. Zeeb 	ni = ieee80211_ref_node(vap->iv_bss);
941d9f59799SBjoern A. Zeeb 
9426b4cac81SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
9436b4cac81SBjoern A. Zeeb 
9446b4cac81SBjoern A. Zeeb 	/* Add chanctx (or if exists, change it). */
9456b4cac81SBjoern A. Zeeb 	if (vif->chanctx_conf != NULL) {
9466b4cac81SBjoern A. Zeeb 		conf = vif->chanctx_conf;
9476b4cac81SBjoern A. Zeeb 		IMPROVE("diff changes for changed, working on live copy, rcu");
9486b4cac81SBjoern A. Zeeb 	} else {
9496b4cac81SBjoern A. Zeeb 		/* Keep separate alloc as in Linux this is rcu managed? */
9506b4cac81SBjoern A. Zeeb 		conf = malloc(sizeof(*conf) + hw->chanctx_data_size,
9516b4cac81SBjoern A. Zeeb 		    M_LKPI80211, M_WAITOK | M_ZERO);
9526b4cac81SBjoern A. Zeeb 	}
9536b4cac81SBjoern A. Zeeb 
9546b4cac81SBjoern A. Zeeb 	conf->rx_chains_dynamic = 1;
9556b4cac81SBjoern A. Zeeb 	conf->rx_chains_static = 1;
9566b4cac81SBjoern A. Zeeb 	conf->radar_enabled =
9576b4cac81SBjoern A. Zeeb 	    (chan->flags & IEEE80211_CHAN_RADAR) ? true : false;
9586b4cac81SBjoern A. Zeeb 	conf->def.chan = chan;
9596b4cac81SBjoern A. Zeeb 	conf->def.width = NL80211_CHAN_WIDTH_20_NOHT;
9606b4cac81SBjoern A. Zeeb 	conf->def.center_freq1 = chan->center_freq;
9616b4cac81SBjoern A. Zeeb 	conf->def.center_freq2 = 0;
9626b4cac81SBjoern A. Zeeb 	/* Responder ... */
9636b4cac81SBjoern A. Zeeb 	conf->min_def.chan = chan;
9646b4cac81SBjoern A. Zeeb 	conf->min_def.width = NL80211_CHAN_WIDTH_20_NOHT;
9656b4cac81SBjoern A. Zeeb 	conf->min_def.center_freq1 = chan->center_freq;
9666b4cac81SBjoern A. Zeeb 	conf->min_def.center_freq2 = 0;
9676b4cac81SBjoern A. Zeeb 	IMPROVE("currently 20_NOHT only");
9686b4cac81SBjoern A. Zeeb 
9696b4cac81SBjoern A. Zeeb 	error = 0;
9706b4cac81SBjoern A. Zeeb 	if (vif->chanctx_conf != NULL) {
9716b4cac81SBjoern A. Zeeb 		changed = IEEE80211_CHANCTX_CHANGE_MIN_WIDTH;
9726b4cac81SBjoern A. Zeeb 		changed |= IEEE80211_CHANCTX_CHANGE_RADAR;
9736b4cac81SBjoern A. Zeeb 		changed |= IEEE80211_CHANCTX_CHANGE_RX_CHAINS;
9746b4cac81SBjoern A. Zeeb 		changed |= IEEE80211_CHANCTX_CHANGE_WIDTH;
9756b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_change_chanctx(hw, conf, changed);
9766b4cac81SBjoern A. Zeeb 	} else {
9776b4cac81SBjoern A. Zeeb 		error = lkpi_80211_mo_add_chanctx(hw, conf);
9786b4cac81SBjoern A. Zeeb 		if (error == 0 || error == EOPNOTSUPP) {
9796b4cac81SBjoern A. Zeeb 			vif->bss_conf.chandef.chan = conf->def.chan;
9806b4cac81SBjoern A. Zeeb 			vif->bss_conf.chandef.width = conf->def.width;
9816b4cac81SBjoern A. Zeeb 			vif->bss_conf.chandef.center_freq1 =
9826b4cac81SBjoern A. Zeeb 			    conf->def.center_freq1;
9836b4cac81SBjoern A. Zeeb 			vif->bss_conf.chandef.center_freq2 =
9846b4cac81SBjoern A. Zeeb 			    conf->def.center_freq2;
9856b4cac81SBjoern A. Zeeb 		} else {
9866b4cac81SBjoern A. Zeeb 			goto out;
9876b4cac81SBjoern A. Zeeb 		}
9886b4cac81SBjoern A. Zeeb 		/* Assign vif chanctx. */
9896b4cac81SBjoern A. Zeeb 		if (error == 0)
9906b4cac81SBjoern A. Zeeb 			error = lkpi_80211_mo_assign_vif_chanctx(hw, vif, conf);
9916b4cac81SBjoern A. Zeeb 		if (error == EOPNOTSUPP)
9926b4cac81SBjoern A. Zeeb 			error = 0;
9936b4cac81SBjoern A. Zeeb 		if (error != 0) {
9946b4cac81SBjoern A. Zeeb 			lkpi_80211_mo_remove_chanctx(hw, conf);
9956b4cac81SBjoern A. Zeeb 			free(conf, M_LKPI80211);
9966b4cac81SBjoern A. Zeeb 			goto out;
9976b4cac81SBjoern A. Zeeb 		}
9986b4cac81SBjoern A. Zeeb 	}
9996b4cac81SBjoern A. Zeeb 	IMPROVE("update radiotap chan fields too");
10006b4cac81SBjoern A. Zeeb 
10016b4cac81SBjoern A. Zeeb 	/* Set bss info (bss_info_changed). */
10026b4cac81SBjoern A. Zeeb 	bss_changed = 0;
1003caaa79c3SBjoern A. Zeeb 	vif->bss_conf.bssid = ni->ni_bssid;
10046b4cac81SBjoern A. Zeeb 	bss_changed |= BSS_CHANGED_BSSID;
10056b4cac81SBjoern A. Zeeb 	vif->bss_conf.txpower = ni->ni_txpower;
10066b4cac81SBjoern A. Zeeb 	bss_changed |= BSS_CHANGED_TXPOWER;
10076b4cac81SBjoern A. Zeeb 	vif->bss_conf.idle = false;
10086b4cac81SBjoern A. Zeeb 	bss_changed |= BSS_CHANGED_IDLE;
1009c8dafefaSBjoern A. Zeeb 
10106b4cac81SBjoern A. Zeeb 	/* Should almost assert it is this. */
10116b4cac81SBjoern A. Zeeb 	vif->bss_conf.assoc = false;
10126b4cac81SBjoern A. Zeeb 	vif->bss_conf.aid = 0;
1013fa8f007dSBjoern A. Zeeb 
1014fa8f007dSBjoern A. Zeeb 	bss_changed |= lkpi_update_dtim_tsf(vif, ni, vap, __func__, __LINE__);
1015fa8f007dSBjoern A. Zeeb 
10166b4cac81SBjoern A. Zeeb 	/* RATES */
10176b4cac81SBjoern A. Zeeb 	IMPROVE("bss info: not all needs to come now and rates are missing");
10186b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, bss_changed);
10196b4cac81SBjoern A. Zeeb 
1020d9f59799SBjoern A. Zeeb 	/*
1021d9f59799SBjoern A. Zeeb 	 * This is a bandaid for now.  If we went through (*iv_update_bss)()
1022d9f59799SBjoern A. Zeeb 	 * and then removed the lsta we end up here without a lsta and have
1023d9f59799SBjoern A. Zeeb 	 * to manually allocate and link it in as lkpi_ic_node_alloc()/init()
1024d9f59799SBjoern A. Zeeb 	 * would normally do.
1025d9f59799SBjoern A. Zeeb 	 * XXX-BZ I do not like this but currently we have no good way of
1026d9f59799SBjoern A. Zeeb 	 * intercepting the bss swap and state changes and packets going out
1027d9f59799SBjoern A. Zeeb 	 * workflow so live with this.  It is a compat layer after all.
1028d9f59799SBjoern A. Zeeb 	 */
1029d9f59799SBjoern A. Zeeb 	if (ni->ni_drv_data == NULL) {
1030d9f59799SBjoern A. Zeeb 		lsta = lkpi_lsta_alloc(vap, ni->ni_macaddr, hw, ni);
1031d9f59799SBjoern A. Zeeb 		if (lsta == NULL) {
1032d9f59799SBjoern A. Zeeb 			error = ENOMEM;
1033d9f59799SBjoern A. Zeeb 			goto out;
1034d9f59799SBjoern A. Zeeb 		}
1035d9f59799SBjoern A. Zeeb 		lsta->ni = ieee80211_ref_node(ni);
1036d9f59799SBjoern A. Zeeb 	} else {
10376b4cac81SBjoern A. Zeeb 		lsta = ni->ni_drv_data;
1038d9f59799SBjoern A. Zeeb 	}
1039e24e8103SBjoern A. Zeeb 
1040e24e8103SBjoern A. Zeeb 	/* Insert the [l]sta into the list of known stations. */
1041e24e8103SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
1042e24e8103SBjoern A. Zeeb 	TAILQ_INSERT_TAIL(&lvif->lsta_head, lsta, lsta_entry);
1043e24e8103SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
1044e24e8103SBjoern A. Zeeb 
1045d9f59799SBjoern A. Zeeb 	/* Add (or adjust) sta and change state (from NOTEXIST) to NONE. */
10466b4cac81SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
10476b4cac81SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_NOTEXIST, ("%s: lsta %p state not "
10486b4cac81SBjoern A. Zeeb 	    "NOTEXIST: %#x\n", __func__, lsta, lsta->state));
10496b4cac81SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
10506b4cac81SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, sta, IEEE80211_STA_NONE);
10516b4cac81SBjoern A. Zeeb 	if (error != 0) {
10526b4cac81SBjoern A. Zeeb 		IMPROVE("do we need to undo the chan ctx?");
10536b4cac81SBjoern A. Zeeb 		goto out;
10546b4cac81SBjoern A. Zeeb 	}
10556b4cac81SBjoern A. Zeeb #if 0
10566b4cac81SBjoern A. Zeeb 	lsta->added_to_drv = true;	/* mo manages. */
10576b4cac81SBjoern A. Zeeb #endif
10586b4cac81SBjoern A. Zeeb 
10599d9ba2b7SBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
10609d9ba2b7SBjoern A. Zeeb 
10616b4cac81SBjoern A. Zeeb 	/*
10626b4cac81SBjoern A. Zeeb 	 * Wakeup all queues now that sta is there so we have as much time to
10636b4cac81SBjoern A. Zeeb 	 * possibly prepare the queue in the driver to be ready for the 1st
10646b4cac81SBjoern A. Zeeb 	 * packet;  lkpi_80211_txq_tx_one() still has a workaround as there
10656b4cac81SBjoern A. Zeeb 	 * is no guarantee or way to check.
1066d9f59799SBjoern A. Zeeb 	 * XXX-BZ and by now we know that this does not work on all drivers
1067d9f59799SBjoern A. Zeeb 	 * for all queues.
10686b4cac81SBjoern A. Zeeb 	 */
10696b4cac81SBjoern A. Zeeb 	lkpi_wake_tx_queues(hw, sta, false, false);
10706b4cac81SBjoern A. Zeeb 
10716b4cac81SBjoern A. Zeeb 	/* Start mgd_prepare_tx. */
10726b4cac81SBjoern A. Zeeb 	memset(&prep_tx_info, 0, sizeof(prep_tx_info));
10736b4cac81SBjoern A. Zeeb 	prep_tx_info.duration = PREP_TX_INFO_DURATION;
10746b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_mgd_prepare_tx(hw, vif, &prep_tx_info);
10756b4cac81SBjoern A. Zeeb 	lsta->in_mgd = true;
10766b4cac81SBjoern A. Zeeb 
10776b4cac81SBjoern A. Zeeb 	/*
10786b4cac81SBjoern A. Zeeb 	 * What is going to happen next:
10796b4cac81SBjoern A. Zeeb 	 * - <twiddle> .. we should end up in "auth_to_assoc"
10806b4cac81SBjoern A. Zeeb 	 * - event_callback
10816b4cac81SBjoern A. Zeeb 	 * - update sta_state (NONE to AUTH)
10826b4cac81SBjoern A. Zeeb 	 * - mgd_complete_tx
10836b4cac81SBjoern A. Zeeb 	 * (ideally we'd do that on a callback for something else ...)
10846b4cac81SBjoern A. Zeeb 	 */
10856b4cac81SBjoern A. Zeeb 
10866b4cac81SBjoern A. Zeeb out:
10876b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
10886b4cac81SBjoern A. Zeeb 	if (ni != NULL)
10896b4cac81SBjoern A. Zeeb 		ieee80211_free_node(ni);
10906b4cac81SBjoern A. Zeeb 	return (error);
10916b4cac81SBjoern A. Zeeb }
10926b4cac81SBjoern A. Zeeb 
10936b4cac81SBjoern A. Zeeb static int
10946b4cac81SBjoern A. Zeeb lkpi_sta_auth_to_scan(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
10956b4cac81SBjoern A. Zeeb {
10966b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
10976b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
10986b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
10996b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
11006b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
11016b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
11026b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
11036b4cac81SBjoern A. Zeeb 	struct ieee80211_prep_tx_info prep_tx_info;
11046b4cac81SBjoern A. Zeeb 	int error;
11056b4cac81SBjoern A. Zeeb 
11066b4cac81SBjoern A. Zeeb 	lhw = vap->iv_ic->ic_softc;
11076b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
11086b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
11096b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
11106b4cac81SBjoern A. Zeeb 
11116b4cac81SBjoern A. Zeeb 	/* Keep ni around. */
11126b4cac81SBjoern A. Zeeb 	ni = ieee80211_ref_node(vap->iv_bss);
11136b4cac81SBjoern A. Zeeb 	lsta = ni->ni_drv_data;
11146b4cac81SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
11156b4cac81SBjoern A. Zeeb 
111667674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
11176b4cac81SBjoern A. Zeeb 
11186b4cac81SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
11196b4cac81SBjoern A. Zeeb 
1120d9f59799SBjoern A. Zeeb 	/* flush, drop. */
1121d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_flush(hw, vif,  nitems(sta->txq), true);
1122d9f59799SBjoern A. Zeeb 
11236b4cac81SBjoern A. Zeeb 	/* Wake tx queues to get packet(s) out. */
11246b4cac81SBjoern A. Zeeb 	lkpi_wake_tx_queues(hw, sta, true, true);
11256b4cac81SBjoern A. Zeeb 
11266b4cac81SBjoern A. Zeeb 	/* flush, no drop */
11276b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_flush(hw, vif,  nitems(sta->txq), false);
11286b4cac81SBjoern A. Zeeb 
11296b4cac81SBjoern A. Zeeb 	/* End mgd_complete_tx. */
11306b4cac81SBjoern A. Zeeb 	if (lsta->in_mgd) {
11316b4cac81SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
11326b4cac81SBjoern A. Zeeb 		prep_tx_info.success = false;
11336b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info);
11346b4cac81SBjoern A. Zeeb 		lsta->in_mgd = false;
11356b4cac81SBjoern A. Zeeb 	}
11366b4cac81SBjoern A. Zeeb 
11376b4cac81SBjoern A. Zeeb 	/* sync_rx_queues */
11386b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_sync_rx_queues(hw);
11396b4cac81SBjoern A. Zeeb 
11406b4cac81SBjoern A. Zeeb 	/* sta_pre_rcu_remove */
11416b4cac81SBjoern A. Zeeb         lkpi_80211_mo_sta_pre_rcu_remove(hw, vif, sta);
1142d9f59799SBjoern A. Zeeb 
1143d9f59799SBjoern A. Zeeb 	/* Take the station down. */
11446b4cac81SBjoern A. Zeeb 
11456b4cac81SBjoern A. Zeeb 	/* Adjust sta and change state (from NONE) to NOTEXIST. */
11466b4cac81SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
11476b4cac81SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_NONE, ("%s: lsta %p state not "
1148d9f59799SBjoern A. Zeeb 	    "NONE: %#x, nstate %d arg %d\n", __func__, lsta, lsta->state, nstate, arg));
11496b4cac81SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, sta, IEEE80211_STA_NOTEXIST);
11506b4cac81SBjoern A. Zeeb 	if (error != 0) {
11516b4cac81SBjoern A. Zeeb 		IMPROVE("do we need to undo the chan ctx?");
11526b4cac81SBjoern A. Zeeb 		goto out;
11536b4cac81SBjoern A. Zeeb 	}
11546b4cac81SBjoern A. Zeeb #if 0
11556b4cac81SBjoern A. Zeeb 	lsta->added_to_drv = false;	/* mo manages. */
11566b4cac81SBjoern A. Zeeb #endif
11576b4cac81SBjoern A. Zeeb 
115867674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
11596b4cac81SBjoern A. Zeeb 
1160d9f59799SBjoern A. Zeeb 	lkpi_lsta_remove(lsta, lvif);
1161d9f59799SBjoern A. Zeeb 
1162d9f59799SBjoern A. Zeeb 	/* conf_tx */
1163d9f59799SBjoern A. Zeeb 
1164d9f59799SBjoern A. Zeeb 	/* Take the chan ctx down. */
11656b4cac81SBjoern A. Zeeb 	if (vif->chanctx_conf != NULL) {
11666b4cac81SBjoern A. Zeeb 		struct ieee80211_chanctx_conf *conf;
11676b4cac81SBjoern A. Zeeb 
11686b4cac81SBjoern A. Zeeb 		conf = vif->chanctx_conf;
11696b4cac81SBjoern A. Zeeb 		/* Remove vif context. */
11706b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_unassign_vif_chanctx(hw, vif, &vif->chanctx_conf);
11716b4cac81SBjoern A. Zeeb 		/* NB: vif->chanctx_conf is NULL now. */
11726b4cac81SBjoern A. Zeeb 
11736b4cac81SBjoern A. Zeeb 		/* Remove chan ctx. */
11746b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_remove_chanctx(hw, conf);
11756b4cac81SBjoern A. Zeeb 		free(conf, M_LKPI80211);
11766b4cac81SBjoern A. Zeeb 	}
11776b4cac81SBjoern A. Zeeb 
11786b4cac81SBjoern A. Zeeb out:
11796b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
11806b4cac81SBjoern A. Zeeb 	if (ni != NULL)
11816b4cac81SBjoern A. Zeeb 		ieee80211_free_node(ni);
11826b4cac81SBjoern A. Zeeb 	return (error);
11836b4cac81SBjoern A. Zeeb }
11846b4cac81SBjoern A. Zeeb 
11856b4cac81SBjoern A. Zeeb static int
11866b4cac81SBjoern A. Zeeb lkpi_sta_auth_to_init(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
11876b4cac81SBjoern A. Zeeb {
11886b4cac81SBjoern A. Zeeb 	int error;
11896b4cac81SBjoern A. Zeeb 
11906b4cac81SBjoern A. Zeeb 	error = lkpi_sta_auth_to_scan(vap, nstate, arg);
11916b4cac81SBjoern A. Zeeb 	if (error == 0)
11926b4cac81SBjoern A. Zeeb 		error = lkpi_sta_scan_to_init(vap, nstate, arg);
11936b4cac81SBjoern A. Zeeb 	return (error);
11946b4cac81SBjoern A. Zeeb }
11956b4cac81SBjoern A. Zeeb 
11966b4cac81SBjoern A. Zeeb static int
11976b4cac81SBjoern A. Zeeb lkpi_sta_auth_to_assoc(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
11986b4cac81SBjoern A. Zeeb {
11996b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
12006b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
12016b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
12026b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
12036b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
12046b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
12056b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
12066b4cac81SBjoern A. Zeeb 	struct ieee80211_prep_tx_info prep_tx_info;
12076b4cac81SBjoern A. Zeeb 	int error;
12086b4cac81SBjoern A. Zeeb 
12096b4cac81SBjoern A. Zeeb 	lhw = vap->iv_ic->ic_softc;
12106b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
12116b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
12126b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
12136b4cac81SBjoern A. Zeeb 
12146b4cac81SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
12156b4cac81SBjoern A. Zeeb 	ni = NULL;
12166b4cac81SBjoern A. Zeeb 
12176b4cac81SBjoern A. Zeeb 	/* Finish auth. */
12186b4cac81SBjoern A. Zeeb 	IMPROVE("event callback");
12196b4cac81SBjoern A. Zeeb 
12206b4cac81SBjoern A. Zeeb 	/* Update sta_state (NONE to AUTH). */
12216b4cac81SBjoern A. Zeeb 	ni = ieee80211_ref_node(vap->iv_bss);
12226b4cac81SBjoern A. Zeeb 	lsta = ni->ni_drv_data;
12236b4cac81SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
12246b4cac81SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_NONE, ("%s: lsta %p state not "
12256b4cac81SBjoern A. Zeeb 	    "NONE: %#x\n", __func__, lsta, lsta->state));
12266b4cac81SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
12276b4cac81SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, sta, IEEE80211_STA_AUTH);
12286b4cac81SBjoern A. Zeeb 	if (error != 0)
12296b4cac81SBjoern A. Zeeb 		goto out;
12306b4cac81SBjoern A. Zeeb 
12316b4cac81SBjoern A. Zeeb 	/* End mgd_complete_tx. */
12326b4cac81SBjoern A. Zeeb 	if (lsta->in_mgd) {
12336b4cac81SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
12346b4cac81SBjoern A. Zeeb 		prep_tx_info.success = true;
12356b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info);
12366b4cac81SBjoern A. Zeeb 		lsta->in_mgd = false;
12376b4cac81SBjoern A. Zeeb 	}
12386b4cac81SBjoern A. Zeeb 
12396b4cac81SBjoern A. Zeeb 	/* Now start assoc. */
12406b4cac81SBjoern A. Zeeb 
12416b4cac81SBjoern A. Zeeb 	/* Start mgd_prepare_tx. */
12426b4cac81SBjoern A. Zeeb 	if (!lsta->in_mgd) {
12436b4cac81SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
12446b4cac81SBjoern A. Zeeb 		prep_tx_info.duration = PREP_TX_INFO_DURATION;
12456b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_mgd_prepare_tx(hw, vif, &prep_tx_info);
12466b4cac81SBjoern A. Zeeb 		lsta->in_mgd = true;
12476b4cac81SBjoern A. Zeeb 	}
12486b4cac81SBjoern A. Zeeb 
12496b4cac81SBjoern A. Zeeb 	/* Wake tx queue to get packet out. */
12506b4cac81SBjoern A. Zeeb 	lkpi_wake_tx_queues(hw, sta, true, true);
12516b4cac81SBjoern A. Zeeb 
12526b4cac81SBjoern A. Zeeb 	/*
12536b4cac81SBjoern A. Zeeb 	 * <twiddle> .. we end up in "assoc_to_run"
12546b4cac81SBjoern A. Zeeb 	 * - update sta_state (AUTH to ASSOC)
12556b4cac81SBjoern A. Zeeb 	 * - conf_tx [all]
12566b4cac81SBjoern A. Zeeb 	 * - bss_info_changed (assoc, aid, ssid, ..)
12576b4cac81SBjoern A. Zeeb 	 * - change_chanctx (if needed)
12586b4cac81SBjoern A. Zeeb 	 * - event_callback
12596b4cac81SBjoern A. Zeeb 	 * - mgd_complete_tx
12606b4cac81SBjoern A. Zeeb 	 */
12616b4cac81SBjoern A. Zeeb 
12626b4cac81SBjoern A. Zeeb out:
12636b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
12646b4cac81SBjoern A. Zeeb 	if (ni != NULL)
12656b4cac81SBjoern A. Zeeb 		ieee80211_free_node(ni);
12666b4cac81SBjoern A. Zeeb 	return (error);
12676b4cac81SBjoern A. Zeeb }
12686b4cac81SBjoern A. Zeeb 
12696b4cac81SBjoern A. Zeeb /* auth_to_auth, assoc_to_assoc. */
12706b4cac81SBjoern A. Zeeb static int
12716b4cac81SBjoern A. Zeeb lkpi_sta_a_to_a(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
12726b4cac81SBjoern A. Zeeb {
12736b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
12746b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
12756b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
12766b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
12776b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
12786b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
12796b4cac81SBjoern A. Zeeb 	struct ieee80211_prep_tx_info prep_tx_info;
12806b4cac81SBjoern A. Zeeb 
12816b4cac81SBjoern A. Zeeb 	lhw = vap->iv_ic->ic_softc;
12826b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
12836b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
12846b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
12856b4cac81SBjoern A. Zeeb 
12866b4cac81SBjoern A. Zeeb 	ni = ieee80211_ref_node(vap->iv_bss);
12876b4cac81SBjoern A. Zeeb 
12886b4cac81SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
12896b4cac81SBjoern A. Zeeb 	lsta = ni->ni_drv_data;
12906b4cac81SBjoern A. Zeeb 
12916b4cac81SBjoern A. Zeeb 	IMPROVE("event callback?");
12926b4cac81SBjoern A. Zeeb 
12936b4cac81SBjoern A. Zeeb 	/* End mgd_complete_tx. */
12946b4cac81SBjoern A. Zeeb 	if (lsta->in_mgd) {
12956b4cac81SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
12966b4cac81SBjoern A. Zeeb 		prep_tx_info.success = false;
12976b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info);
12986b4cac81SBjoern A. Zeeb 		lsta->in_mgd = false;
12996b4cac81SBjoern A. Zeeb 	}
13006b4cac81SBjoern A. Zeeb 
13016b4cac81SBjoern A. Zeeb 	/* Now start assoc. */
13026b4cac81SBjoern A. Zeeb 
13036b4cac81SBjoern A. Zeeb 	/* Start mgd_prepare_tx. */
13046b4cac81SBjoern A. Zeeb 	if (!lsta->in_mgd) {
13056b4cac81SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
13066b4cac81SBjoern A. Zeeb 		prep_tx_info.duration = PREP_TX_INFO_DURATION;
13076b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_mgd_prepare_tx(hw, vif, &prep_tx_info);
13086b4cac81SBjoern A. Zeeb 		lsta->in_mgd = true;
13096b4cac81SBjoern A. Zeeb 	}
13106b4cac81SBjoern A. Zeeb 
13116b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
13126b4cac81SBjoern A. Zeeb 	if (ni != NULL)
13136b4cac81SBjoern A. Zeeb 		ieee80211_free_node(ni);
13146b4cac81SBjoern A. Zeeb 
13156b4cac81SBjoern A. Zeeb 	return (0);
13166b4cac81SBjoern A. Zeeb }
13176b4cac81SBjoern A. Zeeb 
13186b4cac81SBjoern A. Zeeb static int
1319d9f59799SBjoern A. Zeeb _lkpi_sta_assoc_to_down(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
13206b4cac81SBjoern A. Zeeb {
13216b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
13226b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
13236b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
13246b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
13256b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
13266b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
13276b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
13286b4cac81SBjoern A. Zeeb 	struct ieee80211_prep_tx_info prep_tx_info;
1329d9f59799SBjoern A. Zeeb 	enum ieee80211_bss_changed bss_changed;
13306b4cac81SBjoern A. Zeeb 	int error;
13316b4cac81SBjoern A. Zeeb 
13326b4cac81SBjoern A. Zeeb 	lhw = vap->iv_ic->ic_softc;
13336b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
13346b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
13356b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
13366b4cac81SBjoern A. Zeeb 
13376b4cac81SBjoern A. Zeeb 	/* Keep ni around. */
13386b4cac81SBjoern A. Zeeb 	ni = ieee80211_ref_node(vap->iv_bss);
13396b4cac81SBjoern A. Zeeb 	lsta = ni->ni_drv_data;
13406b4cac81SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
13416b4cac81SBjoern A. Zeeb 
134267674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
1343d9f59799SBjoern A. Zeeb 
1344d9f59799SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
1345d9f59799SBjoern A. Zeeb 
1346d9f59799SBjoern A. Zeeb 	/* flush, drop. */
1347d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_flush(hw, vif,  nitems(sta->txq), true);
1348d9f59799SBjoern A. Zeeb 
1349d9f59799SBjoern A. Zeeb 	IMPROVE("What are the proper conditions for DEAUTH_NEED_MGD_TX_PREP?");
1350d9f59799SBjoern A. Zeeb 	if (ieee80211_hw_check(hw, DEAUTH_NEED_MGD_TX_PREP) &&
1351d9f59799SBjoern A. Zeeb 	    !lsta->in_mgd) {
1352d9f59799SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
1353d9f59799SBjoern A. Zeeb 		prep_tx_info.duration = PREP_TX_INFO_DURATION;
1354d9f59799SBjoern A. Zeeb 		lkpi_80211_mo_mgd_prepare_tx(hw, vif, &prep_tx_info);
1355d9f59799SBjoern A. Zeeb 		lsta->in_mgd = true;
1356d9f59799SBjoern A. Zeeb 	}
1357d9f59799SBjoern A. Zeeb 
1358d9f59799SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
1359d9f59799SBjoern A. Zeeb 
1360d9f59799SBjoern A. Zeeb 	/* Call iv_newstate first so we get potential DISASSOC packet out. */
1361d9f59799SBjoern A. Zeeb 	error = lvif->iv_newstate(vap, nstate, arg);
1362d9f59799SBjoern A. Zeeb 	if (error != 0)
1363d9f59799SBjoern A. Zeeb 		goto outni;
1364d9f59799SBjoern A. Zeeb 
1365d9f59799SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
1366d9f59799SBjoern A. Zeeb 
136767674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
1368d9f59799SBjoern A. Zeeb 
1369d9f59799SBjoern A. Zeeb 	/* Wake tx queues to get packet(s) out. */
1370d9f59799SBjoern A. Zeeb 	lkpi_wake_tx_queues(hw, sta, true, true);
1371d9f59799SBjoern A. Zeeb 
1372d9f59799SBjoern A. Zeeb 	/* flush, no drop */
1373d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_flush(hw, vif,  nitems(sta->txq), false);
1374d9f59799SBjoern A. Zeeb 
13756b4cac81SBjoern A. Zeeb 	/* End mgd_complete_tx. */
13766b4cac81SBjoern A. Zeeb 	if (lsta->in_mgd) {
13776b4cac81SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
13786b4cac81SBjoern A. Zeeb 		prep_tx_info.success = false;
13796b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info);
13806b4cac81SBjoern A. Zeeb 		lsta->in_mgd = false;
13816b4cac81SBjoern A. Zeeb 	}
13826b4cac81SBjoern A. Zeeb 
1383d9f59799SBjoern A. Zeeb 	/* sync_rx_queues */
1384d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_sync_rx_queues(hw);
1385d9f59799SBjoern A. Zeeb 
1386d9f59799SBjoern A. Zeeb 	/* sta_pre_rcu_remove */
1387d9f59799SBjoern A. Zeeb         lkpi_80211_mo_sta_pre_rcu_remove(hw, vif, sta);
1388d9f59799SBjoern A. Zeeb 
1389d9f59799SBjoern A. Zeeb 	/* Take the station down. */
1390d9f59799SBjoern A. Zeeb 
13916b4cac81SBjoern A. Zeeb 	/* Update sta and change state (from AUTH) to NONE. */
13926b4cac81SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
13936b4cac81SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_AUTH, ("%s: lsta %p state not "
13946b4cac81SBjoern A. Zeeb 	    "AUTH: %#x\n", __func__, lsta, lsta->state));
13956b4cac81SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, sta, IEEE80211_STA_NONE);
13966b4cac81SBjoern A. Zeeb 	if (error != 0)
13976b4cac81SBjoern A. Zeeb 		goto out;
13986b4cac81SBjoern A. Zeeb 
139967674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
14006b4cac81SBjoern A. Zeeb 
1401d9f59799SBjoern A. Zeeb 	/* Adjust sta and change state (from NONE) to NOTEXIST. */
1402d9f59799SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
1403d9f59799SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_NONE, ("%s: lsta %p state not "
1404d9f59799SBjoern A. Zeeb 	    "NONE: %#x, nstate %d arg %d\n", __func__, lsta, lsta->state, nstate, arg));
1405d9f59799SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, sta, IEEE80211_STA_NOTEXIST);
1406d9f59799SBjoern A. Zeeb 	if (error != 0) {
1407d9f59799SBjoern A. Zeeb 		IMPROVE("do we need to undo the chan ctx?");
1408d9f59799SBjoern A. Zeeb 		goto out;
1409d9f59799SBjoern A. Zeeb 	}
1410d9f59799SBjoern A. Zeeb #if 0
1411d9f59799SBjoern A. Zeeb 	lsta->added_to_drv = false;	/* mo manages. */
1412d9f59799SBjoern A. Zeeb #endif
1413d9f59799SBjoern A. Zeeb 
141467674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
1415d9f59799SBjoern A. Zeeb 
1416d9f59799SBjoern A. Zeeb 	/* Update bss info (bss_info_changed) (assoc, aid, ..). */
1417d9f59799SBjoern A. Zeeb 	/* We need to do this now, can only do after sta is IEEE80211_STA_NOTEXIST. */
1418d9f59799SBjoern A. Zeeb 	lkpi_disassoc(sta, vif, lhw);
1419d9f59799SBjoern A. Zeeb 
1420d9f59799SBjoern A. Zeeb 	IMPROVE("Any bss_info changes to announce?");
1421d9f59799SBjoern A. Zeeb 	bss_changed = 0;
1422d9f59799SBjoern A. Zeeb 	vif->bss_conf.qos = 0;
1423d9f59799SBjoern A. Zeeb 	bss_changed |= BSS_CHANGED_QOS;
1424d9f59799SBjoern A. Zeeb 	vif->bss_conf.ssid_len = 0;
1425d9f59799SBjoern A. Zeeb 	memset(vif->bss_conf.ssid, '\0', sizeof(vif->bss_conf.ssid));
1426d9f59799SBjoern A. Zeeb 	bss_changed |= BSS_CHANGED_BSSID;
1427d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, bss_changed);
1428d9f59799SBjoern A. Zeeb 
1429d9f59799SBjoern A. Zeeb 	lkpi_lsta_remove(lsta, lvif);
1430d9f59799SBjoern A. Zeeb 
1431d9f59799SBjoern A. Zeeb 	/* conf_tx */
1432d9f59799SBjoern A. Zeeb 
1433d9f59799SBjoern A. Zeeb 	/* Take the chan ctx down. */
1434d9f59799SBjoern A. Zeeb 	if (vif->chanctx_conf != NULL) {
1435d9f59799SBjoern A. Zeeb 		struct ieee80211_chanctx_conf *conf;
1436d9f59799SBjoern A. Zeeb 
1437d9f59799SBjoern A. Zeeb 		conf = vif->chanctx_conf;
1438d9f59799SBjoern A. Zeeb 		/* Remove vif context. */
1439d9f59799SBjoern A. Zeeb 		lkpi_80211_mo_unassign_vif_chanctx(hw, vif, &vif->chanctx_conf);
1440d9f59799SBjoern A. Zeeb 		/* NB: vif->chanctx_conf is NULL now. */
1441d9f59799SBjoern A. Zeeb 
1442d9f59799SBjoern A. Zeeb 		/* Remove chan ctx. */
1443d9f59799SBjoern A. Zeeb 		lkpi_80211_mo_remove_chanctx(hw, conf);
1444d9f59799SBjoern A. Zeeb 		free(conf, M_LKPI80211);
1445d9f59799SBjoern A. Zeeb 	}
1446d9f59799SBjoern A. Zeeb 
1447d9f59799SBjoern A. Zeeb 	error = EALREADY;
14486b4cac81SBjoern A. Zeeb out:
14496b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
1450d9f59799SBjoern A. Zeeb outni:
14516b4cac81SBjoern A. Zeeb 	if (ni != NULL)
14526b4cac81SBjoern A. Zeeb 		ieee80211_free_node(ni);
14536b4cac81SBjoern A. Zeeb 	return (error);
14546b4cac81SBjoern A. Zeeb }
14556b4cac81SBjoern A. Zeeb 
14566b4cac81SBjoern A. Zeeb static int
1457d9f59799SBjoern A. Zeeb lkpi_sta_assoc_to_auth(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
1458d9f59799SBjoern A. Zeeb {
1459d9f59799SBjoern A. Zeeb 	int error;
1460d9f59799SBjoern A. Zeeb 
1461d9f59799SBjoern A. Zeeb 	error = _lkpi_sta_assoc_to_down(vap, nstate, arg);
1462d9f59799SBjoern A. Zeeb 	if (error != 0 && error != EALREADY)
1463d9f59799SBjoern A. Zeeb 		return (error);
1464d9f59799SBjoern A. Zeeb 
1465d9f59799SBjoern A. Zeeb 	/* At this point iv_bss is long a new node! */
1466d9f59799SBjoern A. Zeeb 
1467d9f59799SBjoern A. Zeeb 	error |= lkpi_sta_scan_to_auth(vap, nstate, 0);
1468d9f59799SBjoern A. Zeeb 	return (error);
1469d9f59799SBjoern A. Zeeb }
1470d9f59799SBjoern A. Zeeb 
1471d9f59799SBjoern A. Zeeb static int
14726b4cac81SBjoern A. Zeeb lkpi_sta_assoc_to_scan(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
14736b4cac81SBjoern A. Zeeb {
14746b4cac81SBjoern A. Zeeb 	int error;
14756b4cac81SBjoern A. Zeeb 
1476d9f59799SBjoern A. Zeeb 	error = _lkpi_sta_assoc_to_down(vap, nstate, arg);
14776b4cac81SBjoern A. Zeeb 	return (error);
14786b4cac81SBjoern A. Zeeb }
14796b4cac81SBjoern A. Zeeb 
14806b4cac81SBjoern A. Zeeb static int
14816b4cac81SBjoern A. Zeeb lkpi_sta_assoc_to_init(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
14826b4cac81SBjoern A. Zeeb {
14836b4cac81SBjoern A. Zeeb 	int error;
14846b4cac81SBjoern A. Zeeb 
1485d9f59799SBjoern A. Zeeb 	error = _lkpi_sta_assoc_to_down(vap, nstate, arg);
14866b4cac81SBjoern A. Zeeb 	return (error);
14876b4cac81SBjoern A. Zeeb }
14886b4cac81SBjoern A. Zeeb 
14896b4cac81SBjoern A. Zeeb static int
14906b4cac81SBjoern A. Zeeb lkpi_sta_assoc_to_run(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
14916b4cac81SBjoern A. Zeeb {
14926b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
14936b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
14946b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
14956b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
14966b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
14976b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
14986b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
14996b4cac81SBjoern A. Zeeb 	struct ieee80211_prep_tx_info prep_tx_info;
15006b4cac81SBjoern A. Zeeb 	enum ieee80211_bss_changed bss_changed;
15016b4cac81SBjoern A. Zeeb 	int error;
15026b4cac81SBjoern A. Zeeb 
15036b4cac81SBjoern A. Zeeb 	lhw = vap->iv_ic->ic_softc;
15046b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
15056b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
15066b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
15076b4cac81SBjoern A. Zeeb 
15086b4cac81SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
15099597f7cbSBjoern A. Zeeb 	ni = NULL;
15106b4cac81SBjoern A. Zeeb 
15116b4cac81SBjoern A. Zeeb 	IMPROVE("ponder some of this moved to ic_newassoc, scan_assoc_success, "
15126b4cac81SBjoern A. Zeeb 	    "and to lesser extend ieee80211_notify_node_join");
15136b4cac81SBjoern A. Zeeb 
15149597f7cbSBjoern A. Zeeb 	/* Finish assoc. */
15159597f7cbSBjoern A. Zeeb 	/* Update sta_state (AUTH to ASSOC) and set aid. */
15166b4cac81SBjoern A. Zeeb 	ni = ieee80211_ref_node(vap->iv_bss);
15176b4cac81SBjoern A. Zeeb 	lsta = ni->ni_drv_data;
15186b4cac81SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
15199597f7cbSBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_AUTH, ("%s: lsta %p state not "
15209597f7cbSBjoern A. Zeeb 	    "AUTH: %#x\n", __func__, lsta, lsta->state));
15216b4cac81SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
15229597f7cbSBjoern A. Zeeb 	sta->aid = IEEE80211_NODE_AID(ni);
15239597f7cbSBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, sta, IEEE80211_STA_ASSOC);
15249597f7cbSBjoern A. Zeeb 	if (error != 0)
15259597f7cbSBjoern A. Zeeb 		goto out;
15266b4cac81SBjoern A. Zeeb 
15276b4cac81SBjoern A. Zeeb 	IMPROVE("wme / conf_tx [all]");
15286b4cac81SBjoern A. Zeeb 
15296b4cac81SBjoern A. Zeeb 	/* Update bss info (bss_info_changed) (assoc, aid, ..). */
15306b4cac81SBjoern A. Zeeb 	bss_changed = 0;
15316b4cac81SBjoern A. Zeeb 	if (!vif->bss_conf.assoc || vif->bss_conf.aid != IEEE80211_NODE_AID(ni)) {
15326b4cac81SBjoern A. Zeeb 		vif->bss_conf.assoc = true;
15336b4cac81SBjoern A. Zeeb 		vif->bss_conf.aid = IEEE80211_NODE_AID(ni);
15346b4cac81SBjoern A. Zeeb 		bss_changed |= BSS_CHANGED_ASSOC;
15356b4cac81SBjoern A. Zeeb 	}
15366b4cac81SBjoern A. Zeeb 	/* We set SSID but this is not BSSID! */
15376b4cac81SBjoern A. Zeeb 	vif->bss_conf.ssid_len = ni->ni_esslen;
15386b4cac81SBjoern A. Zeeb 	memcpy(vif->bss_conf.ssid, ni->ni_essid, ni->ni_esslen);
15396b4cac81SBjoern A. Zeeb 	if ((vap->iv_flags & IEEE80211_F_SHPREAMBLE) !=
15406b4cac81SBjoern A. Zeeb 	    vif->bss_conf.use_short_preamble) {
15416b4cac81SBjoern A. Zeeb 		vif->bss_conf.use_short_preamble ^= 1;
15426b4cac81SBjoern A. Zeeb 		/* bss_changed |= BSS_CHANGED_??? */
15436b4cac81SBjoern A. Zeeb 	}
15446b4cac81SBjoern A. Zeeb 	if ((vap->iv_flags & IEEE80211_F_SHSLOT) !=
15456b4cac81SBjoern A. Zeeb 	    vif->bss_conf.use_short_slot) {
15466b4cac81SBjoern A. Zeeb 		vif->bss_conf.use_short_slot ^= 1;
15476b4cac81SBjoern A. Zeeb 		/* bss_changed |= BSS_CHANGED_??? */
15486b4cac81SBjoern A. Zeeb 	}
15496b4cac81SBjoern A. Zeeb 	if ((ni->ni_flags & IEEE80211_NODE_QOS) !=
15506b4cac81SBjoern A. Zeeb 	    vif->bss_conf.qos) {
15516b4cac81SBjoern A. Zeeb 		vif->bss_conf.qos ^= 1;
15526b4cac81SBjoern A. Zeeb 		bss_changed |= BSS_CHANGED_QOS;
15536b4cac81SBjoern A. Zeeb 	}
1554fa8f007dSBjoern A. Zeeb 
1555fa8f007dSBjoern A. Zeeb 	bss_changed |= lkpi_update_dtim_tsf(vif, ni, vap, __func__, __LINE__);
1556fa8f007dSBjoern A. Zeeb 
15576b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, bss_changed);
15586b4cac81SBjoern A. Zeeb 
15596b4cac81SBjoern A. Zeeb 	/* - change_chanctx (if needed)
15606b4cac81SBjoern A. Zeeb 	 * - event_callback
15616b4cac81SBjoern A. Zeeb 	 */
15626b4cac81SBjoern A. Zeeb 
15636b4cac81SBjoern A. Zeeb 	/* End mgd_complete_tx. */
15646b4cac81SBjoern A. Zeeb 	if (lsta->in_mgd) {
15656b4cac81SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
15666b4cac81SBjoern A. Zeeb 		prep_tx_info.success = true;
15676b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info);
15686b4cac81SBjoern A. Zeeb 		lsta->in_mgd = false;
15696b4cac81SBjoern A. Zeeb 	}
15706b4cac81SBjoern A. Zeeb 
1571086be6a8SBjoern A. Zeeb 	lkpi_hw_conf_idle(hw, false);
1572086be6a8SBjoern A. Zeeb 
15736b4cac81SBjoern A. Zeeb 	/*
15746b4cac81SBjoern A. Zeeb 	 * And then:
15756b4cac81SBjoern A. Zeeb 	 * - (more packets)?
15766b4cac81SBjoern A. Zeeb 	 * - set_key
15776b4cac81SBjoern A. Zeeb 	 * - set_default_unicast_key
15786b4cac81SBjoern A. Zeeb 	 * - set_key (?)
15796b4cac81SBjoern A. Zeeb 	 * - ipv6_addr_change (?)
15806b4cac81SBjoern A. Zeeb 	 */
15816b4cac81SBjoern A. Zeeb 	/* Prepare_multicast && configure_filter. */
15826b4cac81SBjoern A. Zeeb 	lhw->update_mc = true;
15836b4cac81SBjoern A. Zeeb 	lkpi_update_mcast_filter(vap->iv_ic, true);
15846b4cac81SBjoern A. Zeeb 
15856b4cac81SBjoern A. Zeeb 	if (!ieee80211_node_is_authorized(ni)) {
15866b4cac81SBjoern A. Zeeb 		IMPROVE("net80211 does not consider node authorized");
15876b4cac81SBjoern A. Zeeb 	}
15886b4cac81SBjoern A. Zeeb 
15896b4cac81SBjoern A. Zeeb 	/* Update sta_state (ASSOC to AUTHORIZED). */
15906b4cac81SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
15916b4cac81SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_ASSOC, ("%s: lsta %p state not "
15926b4cac81SBjoern A. Zeeb 	    "ASSOC: %#x\n", __func__, lsta, lsta->state));
15936b4cac81SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, sta, IEEE80211_STA_AUTHORIZED);
15946b4cac81SBjoern A. Zeeb 	if (error != 0) {
15956b4cac81SBjoern A. Zeeb 		IMPROVE("undo some changes?");
15966b4cac81SBjoern A. Zeeb 		goto out;
15976b4cac81SBjoern A. Zeeb 	}
15986b4cac81SBjoern A. Zeeb 
15996b4cac81SBjoern A. Zeeb 	/* - drv_config (?)
16006b4cac81SBjoern A. Zeeb 	 * - bss_info_changed
16016b4cac81SBjoern A. Zeeb 	 * - set_rekey_data (?)
16026b4cac81SBjoern A. Zeeb 	 *
16036b4cac81SBjoern A. Zeeb 	 * And now we should be passing packets.
16046b4cac81SBjoern A. Zeeb 	 */
16056b4cac81SBjoern A. Zeeb 	IMPROVE("Need that bssid setting, and the keys");
16066b4cac81SBjoern A. Zeeb 
1607fa8f007dSBjoern A. Zeeb 	bss_changed = 0;
1608fa8f007dSBjoern A. Zeeb 	bss_changed |= lkpi_update_dtim_tsf(vif, ni, vap, __func__, __LINE__);
1609fa8f007dSBjoern A. Zeeb 	lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, bss_changed);
1610fa8f007dSBjoern A. Zeeb 
16116b4cac81SBjoern A. Zeeb out:
16126b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
16136b4cac81SBjoern A. Zeeb 	if (ni != NULL)
16146b4cac81SBjoern A. Zeeb 		ieee80211_free_node(ni);
16156b4cac81SBjoern A. Zeeb 	return (error);
16166b4cac81SBjoern A. Zeeb }
16176b4cac81SBjoern A. Zeeb 
16186b4cac81SBjoern A. Zeeb static int
16196b4cac81SBjoern A. Zeeb lkpi_sta_auth_to_run(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
16206b4cac81SBjoern A. Zeeb {
16216b4cac81SBjoern A. Zeeb 	int error;
16226b4cac81SBjoern A. Zeeb 
16236b4cac81SBjoern A. Zeeb 	error = lkpi_sta_auth_to_assoc(vap, nstate, arg);
16246b4cac81SBjoern A. Zeeb 	if (error == 0)
16256b4cac81SBjoern A. Zeeb 		error = lkpi_sta_assoc_to_run(vap, nstate, arg);
16266b4cac81SBjoern A. Zeeb 	return (error);
16276b4cac81SBjoern A. Zeeb }
16286b4cac81SBjoern A. Zeeb 
16296b4cac81SBjoern A. Zeeb static int
16306b4cac81SBjoern A. Zeeb lkpi_sta_run_to_assoc(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
16316b4cac81SBjoern A. Zeeb {
16326b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
16336b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
16346b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
16356b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
16366b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
16376b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
16386b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
1639d9f59799SBjoern A. Zeeb 	struct ieee80211_prep_tx_info prep_tx_info;
1640d9f59799SBjoern A. Zeeb #if 0
1641d9f59799SBjoern A. Zeeb 	enum ieee80211_bss_changed bss_changed;
1642d9f59799SBjoern A. Zeeb #endif
16436b4cac81SBjoern A. Zeeb 	int error;
16446b4cac81SBjoern A. Zeeb 
16456b4cac81SBjoern A. Zeeb 	lhw = vap->iv_ic->ic_softc;
16466b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
16476b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
16486b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
16496b4cac81SBjoern A. Zeeb 
16506b4cac81SBjoern A. Zeeb 	/* Keep ni around. */
16516b4cac81SBjoern A. Zeeb 	ni = ieee80211_ref_node(vap->iv_bss);
16526b4cac81SBjoern A. Zeeb 	lsta = ni->ni_drv_data;
16536b4cac81SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
16546b4cac81SBjoern A. Zeeb 
165567674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
1656d9f59799SBjoern A. Zeeb 
1657d9f59799SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
1658d9f59799SBjoern A. Zeeb 
1659d9f59799SBjoern A. Zeeb 	/* flush, drop. */
1660d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_flush(hw, vif,  nitems(sta->txq), true);
1661d9f59799SBjoern A. Zeeb 
1662d9f59799SBjoern A. Zeeb 	IMPROVE("What are the proper conditions for DEAUTH_NEED_MGD_TX_PREP?");
1663d9f59799SBjoern A. Zeeb 	if (ieee80211_hw_check(hw, DEAUTH_NEED_MGD_TX_PREP) &&
1664d9f59799SBjoern A. Zeeb 	    !lsta->in_mgd) {
1665d9f59799SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
1666d9f59799SBjoern A. Zeeb 		prep_tx_info.duration = PREP_TX_INFO_DURATION;
1667d9f59799SBjoern A. Zeeb 		lkpi_80211_mo_mgd_prepare_tx(hw, vif, &prep_tx_info);
1668d9f59799SBjoern A. Zeeb 		lsta->in_mgd = true;
1669d9f59799SBjoern A. Zeeb 	}
1670d9f59799SBjoern A. Zeeb 
1671d9f59799SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
1672d9f59799SBjoern A. Zeeb 
1673d9f59799SBjoern A. Zeeb 	/* Call iv_newstate first so we get potential DISASSOC packet out. */
1674d9f59799SBjoern A. Zeeb 	error = lvif->iv_newstate(vap, nstate, arg);
1675d9f59799SBjoern A. Zeeb 	if (error != 0)
1676d9f59799SBjoern A. Zeeb 		goto outni;
1677d9f59799SBjoern A. Zeeb 
1678d9f59799SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
1679d9f59799SBjoern A. Zeeb 
168067674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
1681d9f59799SBjoern A. Zeeb 
1682d9f59799SBjoern A. Zeeb 	/* Wake tx queues to get packet(s) out. */
1683d9f59799SBjoern A. Zeeb 	lkpi_wake_tx_queues(hw, sta, true, true);
1684d9f59799SBjoern A. Zeeb 
1685d9f59799SBjoern A. Zeeb 	/* flush, no drop */
1686d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_flush(hw, vif,  nitems(sta->txq), false);
1687d9f59799SBjoern A. Zeeb 
1688d9f59799SBjoern A. Zeeb 	/* End mgd_complete_tx. */
1689d9f59799SBjoern A. Zeeb 	if (lsta->in_mgd) {
1690d9f59799SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
1691d9f59799SBjoern A. Zeeb 		prep_tx_info.success = false;
1692d9f59799SBjoern A. Zeeb 		lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info);
1693d9f59799SBjoern A. Zeeb 		lsta->in_mgd = false;
1694d9f59799SBjoern A. Zeeb 	}
1695d9f59799SBjoern A. Zeeb 
1696d9f59799SBjoern A. Zeeb #if 0
1697d9f59799SBjoern A. Zeeb 	/* sync_rx_queues */
1698d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_sync_rx_queues(hw);
1699d9f59799SBjoern A. Zeeb 
1700d9f59799SBjoern A. Zeeb 	/* sta_pre_rcu_remove */
1701d9f59799SBjoern A. Zeeb         lkpi_80211_mo_sta_pre_rcu_remove(hw, vif, sta);
1702d9f59799SBjoern A. Zeeb #endif
1703d9f59799SBjoern A. Zeeb 
1704d9f59799SBjoern A. Zeeb 	/* Take the station down. */
1705d9f59799SBjoern A. Zeeb 
17066b4cac81SBjoern A. Zeeb 	/* Adjust sta and change state (from AUTHORIZED) to ASSOC. */
17076b4cac81SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
17086b4cac81SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_AUTHORIZED, ("%s: lsta %p state not "
17096b4cac81SBjoern A. Zeeb 	    "AUTHORIZED: %#x\n", __func__, lsta, lsta->state));
17106b4cac81SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, sta, IEEE80211_STA_ASSOC);
17116b4cac81SBjoern A. Zeeb 	if (error != 0)
17126b4cac81SBjoern A. Zeeb 		goto out;
17136b4cac81SBjoern A. Zeeb 
171467674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
17156b4cac81SBjoern A. Zeeb 
17166b4cac81SBjoern A. Zeeb 	/* Update sta_state (ASSOC to AUTH). */
17176b4cac81SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
17186b4cac81SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_ASSOC, ("%s: lsta %p state not "
17196b4cac81SBjoern A. Zeeb 	    "ASSOC: %#x\n", __func__, lsta, lsta->state));
17206b4cac81SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, sta, IEEE80211_STA_AUTH);
17216b4cac81SBjoern A. Zeeb 	if (error != 0)
17226b4cac81SBjoern A. Zeeb 		goto out;
17236b4cac81SBjoern A. Zeeb 
172467674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
17256b4cac81SBjoern A. Zeeb 
1726d9f59799SBjoern A. Zeeb #if 0
1727d9f59799SBjoern A. Zeeb 	/* Update bss info (bss_info_changed) (assoc, aid, ..). */
1728d9f59799SBjoern A. Zeeb 	lkpi_disassoc(sta, vif, lhw);
1729d9f59799SBjoern A. Zeeb #endif
1730d9f59799SBjoern A. Zeeb 
1731d9f59799SBjoern A. Zeeb 	error = EALREADY;
17326b4cac81SBjoern A. Zeeb out:
17336b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
1734d9f59799SBjoern A. Zeeb outni:
17356b4cac81SBjoern A. Zeeb 	if (ni != NULL)
17366b4cac81SBjoern A. Zeeb 		ieee80211_free_node(ni);
17376b4cac81SBjoern A. Zeeb 	return (error);
17386b4cac81SBjoern A. Zeeb }
17396b4cac81SBjoern A. Zeeb 
17406b4cac81SBjoern A. Zeeb static int
1741d9f59799SBjoern A. Zeeb lkpi_sta_run_to_init(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
1742d9f59799SBjoern A. Zeeb {
1743d9f59799SBjoern A. Zeeb 	struct lkpi_hw *lhw;
1744d9f59799SBjoern A. Zeeb 	struct ieee80211_hw *hw;
1745d9f59799SBjoern A. Zeeb 	struct lkpi_vif *lvif;
1746d9f59799SBjoern A. Zeeb 	struct ieee80211_vif *vif;
1747d9f59799SBjoern A. Zeeb 	struct ieee80211_node *ni;
1748d9f59799SBjoern A. Zeeb 	struct lkpi_sta *lsta;
1749d9f59799SBjoern A. Zeeb 	struct ieee80211_sta *sta;
1750d9f59799SBjoern A. Zeeb 	struct ieee80211_prep_tx_info prep_tx_info;
1751d9f59799SBjoern A. Zeeb 	enum ieee80211_bss_changed bss_changed;
1752d9f59799SBjoern A. Zeeb 	int error;
1753d9f59799SBjoern A. Zeeb 
1754d9f59799SBjoern A. Zeeb 	lhw = vap->iv_ic->ic_softc;
1755d9f59799SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
1756d9f59799SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
1757d9f59799SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
1758d9f59799SBjoern A. Zeeb 
1759d9f59799SBjoern A. Zeeb 	/* Keep ni around. */
1760d9f59799SBjoern A. Zeeb 	ni = ieee80211_ref_node(vap->iv_bss);
1761d9f59799SBjoern A. Zeeb 	lsta = ni->ni_drv_data;
1762d9f59799SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
1763d9f59799SBjoern A. Zeeb 
176467674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
1765d9f59799SBjoern A. Zeeb 
1766d9f59799SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
1767d9f59799SBjoern A. Zeeb 
1768d9f59799SBjoern A. Zeeb 	/* flush, drop. */
1769d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_flush(hw, vif,  nitems(sta->txq), true);
1770d9f59799SBjoern A. Zeeb 
1771d9f59799SBjoern A. Zeeb 	IMPROVE("What are the proper conditions for DEAUTH_NEED_MGD_TX_PREP?");
1772d9f59799SBjoern A. Zeeb 	if (ieee80211_hw_check(hw, DEAUTH_NEED_MGD_TX_PREP) &&
1773d9f59799SBjoern A. Zeeb 	    !lsta->in_mgd) {
1774d9f59799SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
1775d9f59799SBjoern A. Zeeb 		prep_tx_info.duration = PREP_TX_INFO_DURATION;
1776d9f59799SBjoern A. Zeeb 		lkpi_80211_mo_mgd_prepare_tx(hw, vif, &prep_tx_info);
1777d9f59799SBjoern A. Zeeb 		lsta->in_mgd = true;
1778d9f59799SBjoern A. Zeeb 	}
1779d9f59799SBjoern A. Zeeb 
1780d9f59799SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
1781d9f59799SBjoern A. Zeeb 
1782d9f59799SBjoern A. Zeeb 	/* Call iv_newstate first so we get potential DISASSOC packet out. */
1783d9f59799SBjoern A. Zeeb 	error = lvif->iv_newstate(vap, nstate, arg);
1784d9f59799SBjoern A. Zeeb 	if (error != 0)
1785d9f59799SBjoern A. Zeeb 		goto outni;
1786d9f59799SBjoern A. Zeeb 
1787d9f59799SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
1788d9f59799SBjoern A. Zeeb 
178967674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
1790d9f59799SBjoern A. Zeeb 
1791d9f59799SBjoern A. Zeeb 	/* Wake tx queues to get packet(s) out. */
1792d9f59799SBjoern A. Zeeb 	lkpi_wake_tx_queues(hw, sta, true, true);
1793d9f59799SBjoern A. Zeeb 
1794d9f59799SBjoern A. Zeeb 	/* flush, no drop */
1795d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_flush(hw, vif,  nitems(sta->txq), false);
1796d9f59799SBjoern A. Zeeb 
1797d9f59799SBjoern A. Zeeb 	/* End mgd_complete_tx. */
1798d9f59799SBjoern A. Zeeb 	if (lsta->in_mgd) {
1799d9f59799SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
1800d9f59799SBjoern A. Zeeb 		prep_tx_info.success = false;
1801d9f59799SBjoern A. Zeeb 		lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info);
1802d9f59799SBjoern A. Zeeb 		lsta->in_mgd = false;
1803d9f59799SBjoern A. Zeeb 	}
1804d9f59799SBjoern A. Zeeb 
1805d9f59799SBjoern A. Zeeb 	/* sync_rx_queues */
1806d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_sync_rx_queues(hw);
1807d9f59799SBjoern A. Zeeb 
1808d9f59799SBjoern A. Zeeb 	/* sta_pre_rcu_remove */
1809d9f59799SBjoern A. Zeeb         lkpi_80211_mo_sta_pre_rcu_remove(hw, vif, sta);
1810d9f59799SBjoern A. Zeeb 
1811d9f59799SBjoern A. Zeeb 	/* Take the station down. */
1812d9f59799SBjoern A. Zeeb 
1813d9f59799SBjoern A. Zeeb 	/* Adjust sta and change state (from AUTHORIZED) to ASSOC. */
1814d9f59799SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
1815d9f59799SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_AUTHORIZED, ("%s: lsta %p state not "
1816d9f59799SBjoern A. Zeeb 	    "AUTHORIZED: %#x\n", __func__, lsta, lsta->state));
1817d9f59799SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, sta, IEEE80211_STA_ASSOC);
1818d9f59799SBjoern A. Zeeb 	if (error != 0)
1819d9f59799SBjoern A. Zeeb 		goto out;
1820d9f59799SBjoern A. Zeeb 
182167674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
1822d9f59799SBjoern A. Zeeb 
1823d9f59799SBjoern A. Zeeb 	/* Update sta_state (ASSOC to AUTH). */
1824d9f59799SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
1825d9f59799SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_ASSOC, ("%s: lsta %p state not "
1826d9f59799SBjoern A. Zeeb 	    "ASSOC: %#x\n", __func__, lsta, lsta->state));
1827d9f59799SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, sta, IEEE80211_STA_AUTH);
1828d9f59799SBjoern A. Zeeb 	if (error != 0)
1829d9f59799SBjoern A. Zeeb 		goto out;
1830d9f59799SBjoern A. Zeeb 
183167674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
1832d9f59799SBjoern A. Zeeb 
1833d9f59799SBjoern A. Zeeb 	/* Update sta and change state (from AUTH) to NONE. */
1834d9f59799SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
1835d9f59799SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_AUTH, ("%s: lsta %p state not "
1836d9f59799SBjoern A. Zeeb 	    "AUTH: %#x\n", __func__, lsta, lsta->state));
1837d9f59799SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, sta, IEEE80211_STA_NONE);
1838d9f59799SBjoern A. Zeeb 	if (error != 0)
1839d9f59799SBjoern A. Zeeb 		goto out;
1840d9f59799SBjoern A. Zeeb 
184167674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
1842d9f59799SBjoern A. Zeeb 
1843d9f59799SBjoern A. Zeeb 	/* Adjust sta and change state (from NONE) to NOTEXIST. */
1844d9f59799SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
1845d9f59799SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_NONE, ("%s: lsta %p state not "
1846d9f59799SBjoern A. Zeeb 	    "NONE: %#x, nstate %d arg %d\n", __func__, lsta, lsta->state, nstate, arg));
1847d9f59799SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, sta, IEEE80211_STA_NOTEXIST);
1848d9f59799SBjoern A. Zeeb 	if (error != 0) {
1849d9f59799SBjoern A. Zeeb 		IMPROVE("do we need to undo the chan ctx?");
1850d9f59799SBjoern A. Zeeb 		goto out;
1851d9f59799SBjoern A. Zeeb 	}
1852d9f59799SBjoern A. Zeeb #if 0
1853d9f59799SBjoern A. Zeeb 	lsta->added_to_drv = false;	/* mo manages. */
1854d9f59799SBjoern A. Zeeb #endif
1855d9f59799SBjoern A. Zeeb 
185667674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
1857d9f59799SBjoern A. Zeeb 
1858d9f59799SBjoern A. Zeeb 	/* Update bss info (bss_info_changed) (assoc, aid, ..). */
1859d9f59799SBjoern A. Zeeb 	/*
1860d9f59799SBjoern A. Zeeb 	 * One would expect this to happen when going off AUTHORIZED.
1861d9f59799SBjoern A. Zeeb 	 * See comment there; removes the sta from fw.
1862d9f59799SBjoern A. Zeeb 	 */
1863d9f59799SBjoern A. Zeeb 	lkpi_disassoc(sta, vif, lhw);
1864d9f59799SBjoern A. Zeeb 
1865d9f59799SBjoern A. Zeeb 	IMPROVE("Any bss_info changes to announce?");
1866d9f59799SBjoern A. Zeeb 	bss_changed = 0;
1867d9f59799SBjoern A. Zeeb 	vif->bss_conf.qos = 0;
1868d9f59799SBjoern A. Zeeb 	bss_changed |= BSS_CHANGED_QOS;
1869d9f59799SBjoern A. Zeeb 	vif->bss_conf.ssid_len = 0;
1870d9f59799SBjoern A. Zeeb 	memset(vif->bss_conf.ssid, '\0', sizeof(vif->bss_conf.ssid));
1871d9f59799SBjoern A. Zeeb 	bss_changed |= BSS_CHANGED_BSSID;
1872d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, bss_changed);
1873d9f59799SBjoern A. Zeeb 
1874d9f59799SBjoern A. Zeeb 	lkpi_lsta_remove(lsta, lvif);
1875d9f59799SBjoern A. Zeeb 
1876d9f59799SBjoern A. Zeeb 	/* conf_tx */
1877d9f59799SBjoern A. Zeeb 
1878d9f59799SBjoern A. Zeeb 	/* Take the chan ctx down. */
1879d9f59799SBjoern A. Zeeb 	if (vif->chanctx_conf != NULL) {
1880d9f59799SBjoern A. Zeeb 		struct ieee80211_chanctx_conf *conf;
1881d9f59799SBjoern A. Zeeb 
1882d9f59799SBjoern A. Zeeb 		conf = vif->chanctx_conf;
1883d9f59799SBjoern A. Zeeb 		/* Remove vif context. */
1884d9f59799SBjoern A. Zeeb 		lkpi_80211_mo_unassign_vif_chanctx(hw, vif, &vif->chanctx_conf);
1885d9f59799SBjoern A. Zeeb 		/* NB: vif->chanctx_conf is NULL now. */
1886d9f59799SBjoern A. Zeeb 
1887d9f59799SBjoern A. Zeeb 		/* Remove chan ctx. */
1888d9f59799SBjoern A. Zeeb 		lkpi_80211_mo_remove_chanctx(hw, conf);
1889d9f59799SBjoern A. Zeeb 		free(conf, M_LKPI80211);
1890d9f59799SBjoern A. Zeeb 	}
1891d9f59799SBjoern A. Zeeb 
1892d9f59799SBjoern A. Zeeb 	error = EALREADY;
1893d9f59799SBjoern A. Zeeb out:
1894d9f59799SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
1895d9f59799SBjoern A. Zeeb outni:
1896d9f59799SBjoern A. Zeeb 	if (ni != NULL)
1897d9f59799SBjoern A. Zeeb 		ieee80211_free_node(ni);
1898d9f59799SBjoern A. Zeeb 	return (error);
1899d9f59799SBjoern A. Zeeb }
1900d9f59799SBjoern A. Zeeb 
1901d9f59799SBjoern A. Zeeb static int
1902d9f59799SBjoern A. Zeeb lkpi_sta_run_to_scan(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
1903d9f59799SBjoern A. Zeeb {
1904d9f59799SBjoern A. Zeeb 
1905d9f59799SBjoern A. Zeeb 	return (lkpi_sta_run_to_init(vap, nstate, arg));
1906d9f59799SBjoern A. Zeeb }
1907d9f59799SBjoern A. Zeeb 
1908d9f59799SBjoern A. Zeeb static int
19096b4cac81SBjoern A. Zeeb lkpi_sta_run_to_auth(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
19106b4cac81SBjoern A. Zeeb {
19116b4cac81SBjoern A. Zeeb 	int error;
19126b4cac81SBjoern A. Zeeb 
1913d9f59799SBjoern A. Zeeb 	error = lkpi_sta_run_to_init(vap, nstate, arg);
1914d9f59799SBjoern A. Zeeb 	if (error != 0 && error != EALREADY)
1915d9f59799SBjoern A. Zeeb 		return (error);
1916d9f59799SBjoern A. Zeeb 
1917d9f59799SBjoern A. Zeeb 	/* At this point iv_bss is long a new node! */
1918d9f59799SBjoern A. Zeeb 
1919d9f59799SBjoern A. Zeeb 	error |= lkpi_sta_scan_to_auth(vap, nstate, 0);
19206b4cac81SBjoern A. Zeeb 	return (error);
19216b4cac81SBjoern A. Zeeb }
19226b4cac81SBjoern A. Zeeb 
1923d9f59799SBjoern A. Zeeb /* -------------------------------------------------------------------------- */
19246b4cac81SBjoern A. Zeeb 
19256b4cac81SBjoern A. Zeeb /*
19266b4cac81SBjoern A. Zeeb  * The matches the documented state changes in net80211::sta_newstate().
19276b4cac81SBjoern A. Zeeb  * XXX (1) without CSA and SLEEP yet, * XXX (2) not all unhandled cases
19286b4cac81SBjoern A. Zeeb  * there are "invalid" (so there is a room for failure here).
19296b4cac81SBjoern A. Zeeb  */
19306b4cac81SBjoern A. Zeeb struct fsm_state {
19316b4cac81SBjoern A. Zeeb 	/* INIT, SCAN, AUTH, ASSOC, CAC, RUN, CSA, SLEEP */
19326b4cac81SBjoern A. Zeeb 	enum ieee80211_state ostate;
19336b4cac81SBjoern A. Zeeb 	enum ieee80211_state nstate;
19346b4cac81SBjoern A. Zeeb 	int (*handler)(struct ieee80211vap *, enum ieee80211_state, int);
19356b4cac81SBjoern A. Zeeb } sta_state_fsm[] = {
19366b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_INIT,	IEEE80211_S_INIT, lkpi_sta_state_do_nada },
19376b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_SCAN,	IEEE80211_S_INIT, lkpi_sta_state_do_nada },	/* scan_to_init */
19386b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_AUTH,	IEEE80211_S_INIT, lkpi_sta_auth_to_init },	/* not explicitly in sta_newstate() */
1939d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_ASSOC,	IEEE80211_S_INIT, lkpi_sta_assoc_to_init },	/* Send DEAUTH. */
1940d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_RUN,	IEEE80211_S_INIT, lkpi_sta_run_to_init },	/* Send DISASSOC. */
19416b4cac81SBjoern A. Zeeb 
19426b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_INIT,	IEEE80211_S_SCAN, lkpi_sta_state_do_nada },
19436b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_SCAN,	IEEE80211_S_SCAN, lkpi_sta_state_do_nada },
19446b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_AUTH,	IEEE80211_S_SCAN, lkpi_sta_auth_to_scan },
19456b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_ASSOC,	IEEE80211_S_SCAN, lkpi_sta_assoc_to_scan },
1946d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_RUN,	IEEE80211_S_SCAN, lkpi_sta_run_to_scan },	/* Beacon miss. */
19476b4cac81SBjoern A. Zeeb 
1948d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_INIT,	IEEE80211_S_AUTH, lkpi_sta_scan_to_auth },	/* Send AUTH. */
1949d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_SCAN,	IEEE80211_S_AUTH, lkpi_sta_scan_to_auth },	/* Send AUTH. */
1950d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_AUTH,	IEEE80211_S_AUTH, lkpi_sta_a_to_a },		/* Send ?AUTH. */
1951d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_ASSOC,	IEEE80211_S_AUTH, lkpi_sta_assoc_to_auth },	/* Send ?AUTH. */
1952d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_RUN,	IEEE80211_S_AUTH, lkpi_sta_run_to_auth },	/* Send ?AUTH. */
19536b4cac81SBjoern A. Zeeb 
1954d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_AUTH,	IEEE80211_S_ASSOC, lkpi_sta_auth_to_assoc },	/* Send ASSOCREQ. */
1955d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_ASSOC,	IEEE80211_S_ASSOC, lkpi_sta_a_to_a },		/* Send ASSOCREQ. */
1956d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_RUN,	IEEE80211_S_ASSOC, lkpi_sta_run_to_assoc },	/* Send ASSOCREQ/REASSOCREQ. */
19576b4cac81SBjoern A. Zeeb 
19586b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_AUTH,	IEEE80211_S_RUN, lkpi_sta_auth_to_run },
19596b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_ASSOC,	IEEE80211_S_RUN, lkpi_sta_assoc_to_run },
19606b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_RUN,	IEEE80211_S_RUN, lkpi_sta_state_do_nada },
19616b4cac81SBjoern A. Zeeb 
19626b4cac81SBjoern A. Zeeb 	/* Dummy at the end without handler. */
19636b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_INIT,	IEEE80211_S_INIT, NULL },
19646b4cac81SBjoern A. Zeeb };
19656b4cac81SBjoern A. Zeeb 
19666b4cac81SBjoern A. Zeeb static int
19676b4cac81SBjoern A. Zeeb lkpi_iv_newstate(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
19686b4cac81SBjoern A. Zeeb {
19696b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
19706b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
19716b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
19726b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
19736b4cac81SBjoern A. Zeeb 	struct fsm_state *s;
19746b4cac81SBjoern A. Zeeb 	enum ieee80211_state ostate;
19756b4cac81SBjoern A. Zeeb 	int error;
19766b4cac81SBjoern A. Zeeb 
19776b4cac81SBjoern A. Zeeb 	ic = vap->iv_ic;
19786b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK_ASSERT(ic);
19796b4cac81SBjoern A. Zeeb 	ostate = vap->iv_state;
19806b4cac81SBjoern A. Zeeb 
19819d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
19829d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE)
19836b4cac81SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: vap %p nstate %#x arg %#x\n",
19846b4cac81SBjoern A. Zeeb 		    __func__, __LINE__, vap, nstate, arg);
19859d9ba2b7SBjoern A. Zeeb #endif
19866b4cac81SBjoern A. Zeeb 
19876b4cac81SBjoern A. Zeeb 	if (vap->iv_opmode == IEEE80211_M_STA) {
19886b4cac81SBjoern A. Zeeb 
19896b4cac81SBjoern A. Zeeb 		lhw = ic->ic_softc;
19906b4cac81SBjoern A. Zeeb 		lvif = VAP_TO_LVIF(vap);
19916b4cac81SBjoern A. Zeeb 		vif = LVIF_TO_VIF(lvif);
19926b4cac81SBjoern A. Zeeb 
19936b4cac81SBjoern A. Zeeb 		/* No need to replicate this in most state handlers. */
19946b4cac81SBjoern A. Zeeb 		if (ostate == IEEE80211_S_SCAN && nstate != IEEE80211_S_SCAN)
19956b4cac81SBjoern A. Zeeb 			lkpi_stop_hw_scan(lhw, vif);
19966b4cac81SBjoern A. Zeeb 
19976b4cac81SBjoern A. Zeeb 		s = sta_state_fsm;
19986b4cac81SBjoern A. Zeeb 
19996b4cac81SBjoern A. Zeeb 	} else {
20006b4cac81SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s: only station mode currently supported: "
20016b4cac81SBjoern A. Zeeb 		    "cap %p iv_opmode %d\n", __func__, vap, vap->iv_opmode);
20026b4cac81SBjoern A. Zeeb 		return (ENOSYS);
20036b4cac81SBjoern A. Zeeb 	}
20046b4cac81SBjoern A. Zeeb 
20056b4cac81SBjoern A. Zeeb 	error = 0;
20066b4cac81SBjoern A. Zeeb 	for (; s->handler != NULL; s++) {
20076b4cac81SBjoern A. Zeeb 		if (ostate == s->ostate && nstate == s->nstate) {
20089d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
20099d9ba2b7SBjoern A. Zeeb 			if (linuxkpi_debug_80211 & D80211_TRACE)
2010d9f59799SBjoern A. Zeeb 				ic_printf(vap->iv_ic, "%s: new state %d (%s) ->"
2011d9f59799SBjoern A. Zeeb 				    " %d (%s): arg %d.\n", __func__,
2012d9f59799SBjoern A. Zeeb 				    ostate, ieee80211_state_name[ostate],
2013d9f59799SBjoern A. Zeeb 				    nstate, ieee80211_state_name[nstate], arg);
20149d9ba2b7SBjoern A. Zeeb #endif
20156b4cac81SBjoern A. Zeeb 			error = s->handler(vap, nstate, arg);
20166b4cac81SBjoern A. Zeeb 			break;
20176b4cac81SBjoern A. Zeeb 		}
20186b4cac81SBjoern A. Zeeb 	}
20196b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK_ASSERT(vap->iv_ic);
20206b4cac81SBjoern A. Zeeb 
20216b4cac81SBjoern A. Zeeb 	if (s->handler == NULL) {
2022d9f59799SBjoern A. Zeeb 		IMPROVE("turn this into a KASSERT\n");
20236b4cac81SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s: unsupported state transition "
20246b4cac81SBjoern A. Zeeb 		    "%d (%s) -> %d (%s)\n", __func__,
20256b4cac81SBjoern A. Zeeb 		    ostate, ieee80211_state_name[ostate],
20266b4cac81SBjoern A. Zeeb 		    nstate, ieee80211_state_name[nstate]);
20276b4cac81SBjoern A. Zeeb 		return (ENOSYS);
20286b4cac81SBjoern A. Zeeb 	}
20296b4cac81SBjoern A. Zeeb 
20306b4cac81SBjoern A. Zeeb 	if (error == EALREADY) {
20319d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
20329d9ba2b7SBjoern A. Zeeb 		if (linuxkpi_debug_80211 & D80211_TRACE)
2033d9f59799SBjoern A. Zeeb 			ic_printf(vap->iv_ic, "%s: state transition %d (%s) -> "
2034d9f59799SBjoern A. Zeeb 			    "%d (%s): iv_newstate already handled: %d.\n",
2035d9f59799SBjoern A. Zeeb 			    __func__, ostate, ieee80211_state_name[ostate],
2036d9f59799SBjoern A. Zeeb 			    nstate, ieee80211_state_name[nstate], error);
20379d9ba2b7SBjoern A. Zeeb #endif
20386b4cac81SBjoern A. Zeeb 		return (0);
20396b4cac81SBjoern A. Zeeb 	}
20406b4cac81SBjoern A. Zeeb 
20416b4cac81SBjoern A. Zeeb 	if (error != 0) {
20426b4cac81SBjoern A. Zeeb 		/* XXX-BZ currently expected so ignore. */
20436b4cac81SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s: error %d during state transition "
20446b4cac81SBjoern A. Zeeb 		    "%d (%s) -> %d (%s)\n", __func__, error,
20456b4cac81SBjoern A. Zeeb 		    ostate, ieee80211_state_name[ostate],
20466b4cac81SBjoern A. Zeeb 		    nstate, ieee80211_state_name[nstate]);
20476b4cac81SBjoern A. Zeeb 		/* return (error); */
20486b4cac81SBjoern A. Zeeb 	}
20496b4cac81SBjoern A. Zeeb 
20509d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
20519d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE)
2052d9f59799SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: vap %p nstate %#x arg %#x "
2053d9f59799SBjoern A. Zeeb 		    "calling net80211 parent\n",
20546b4cac81SBjoern A. Zeeb 		    __func__, __LINE__, vap, nstate, arg);
20559d9ba2b7SBjoern A. Zeeb #endif
20566b4cac81SBjoern A. Zeeb 
20576b4cac81SBjoern A. Zeeb 	return (lvif->iv_newstate(vap, nstate, arg));
20586b4cac81SBjoern A. Zeeb }
20596b4cac81SBjoern A. Zeeb 
20606b4cac81SBjoern A. Zeeb /* -------------------------------------------------------------------------- */
20616b4cac81SBjoern A. Zeeb 
2062d9f59799SBjoern A. Zeeb /*
2063d9f59799SBjoern A. Zeeb  * We overload (*iv_update_bss) as otherwise we have cases in, e.g.,
2064d9f59799SBjoern A. Zeeb  * net80211::ieee80211_sta_join1() where vap->iv_bss gets replaced by a
2065d9f59799SBjoern A. Zeeb  * new node without us knowing and thus our ni/lsta are out of sync.
2066d9f59799SBjoern A. Zeeb  */
2067d9f59799SBjoern A. Zeeb static struct ieee80211_node *
2068d9f59799SBjoern A. Zeeb lkpi_iv_update_bss(struct ieee80211vap *vap, struct ieee80211_node *ni)
2069d9f59799SBjoern A. Zeeb {
2070d9f59799SBjoern A. Zeeb 	struct lkpi_vif *lvif;
2071d9f59799SBjoern A. Zeeb 	struct ieee80211_node *obss;
2072d9f59799SBjoern A. Zeeb 	struct lkpi_sta *lsta;
2073ed3ef56bSBjoern A. Zeeb 	struct ieee80211_sta *sta;
2074d9f59799SBjoern A. Zeeb 
2075d9f59799SBjoern A. Zeeb 	obss = vap->iv_bss;
2076d9f59799SBjoern A. Zeeb 
20779d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
20789d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE)
20799d9ba2b7SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s: obss %p ni_drv_data %p "
20809d9ba2b7SBjoern A. Zeeb 		    "ni %p ni_drv_data %p\n", __func__,
20819d9ba2b7SBjoern A. Zeeb 		    obss, (obss != NULL) ? obss->ni_drv_data : NULL,
20829d9ba2b7SBjoern A. Zeeb 		    ni, (ni != NULL) ? ni->ni_drv_data : NULL);
20839d9ba2b7SBjoern A. Zeeb #endif
20849d9ba2b7SBjoern A. Zeeb 
2085d9f59799SBjoern A. Zeeb 	/* Nothing to copy from.  Just return. */
2086d9f59799SBjoern A. Zeeb 	if (obss == NULL || obss->ni_drv_data == NULL)
2087d9f59799SBjoern A. Zeeb 		goto out;
2088d9f59799SBjoern A. Zeeb 
2089d9f59799SBjoern A. Zeeb 	/* Nothing to copy to.  Just return. */
2090d9f59799SBjoern A. Zeeb 	IMPROVE("clearing the obss might still be needed?");
2091d9f59799SBjoern A. Zeeb 	if (ni == NULL)
2092d9f59799SBjoern A. Zeeb 		goto out;
2093d9f59799SBjoern A. Zeeb 
2094d9f59799SBjoern A. Zeeb 	/* Nothing changed? panic? */
2095d9f59799SBjoern A. Zeeb 	if (obss == ni)
2096d9f59799SBjoern A. Zeeb 		goto out;
2097d9f59799SBjoern A. Zeeb 
2098d9f59799SBjoern A. Zeeb 	lsta = obss->ni_drv_data;
2099d9f59799SBjoern A. Zeeb 	obss->ni_drv_data = ni->ni_drv_data;
2100d9f59799SBjoern A. Zeeb 	ni->ni_drv_data = lsta;
2101ed3ef56bSBjoern A. Zeeb 	if (lsta != NULL) {
2102d9f59799SBjoern A. Zeeb 		lsta->ni = ni;
2103ed3ef56bSBjoern A. Zeeb 		sta = LSTA_TO_STA(lsta);
2104ed3ef56bSBjoern A. Zeeb 		IEEE80211_ADDR_COPY(sta->addr, lsta->ni->ni_macaddr);
2105ed3ef56bSBjoern A. Zeeb 	}
2106d9f59799SBjoern A. Zeeb 	lsta = obss->ni_drv_data;
2107ed3ef56bSBjoern A. Zeeb 	if (lsta != NULL) {
2108d9f59799SBjoern A. Zeeb 		lsta->ni = obss;
2109ed3ef56bSBjoern A. Zeeb 		sta = LSTA_TO_STA(lsta);
2110ed3ef56bSBjoern A. Zeeb 		IEEE80211_ADDR_COPY(sta->addr, lsta->ni->ni_macaddr);
2111ed3ef56bSBjoern A. Zeeb 	}
2112d9f59799SBjoern A. Zeeb 
2113d9f59799SBjoern A. Zeeb out:
2114ed3ef56bSBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
2115d9f59799SBjoern A. Zeeb 	return (lvif->iv_update_bss(vap, ni));
2116d9f59799SBjoern A. Zeeb }
2117d9f59799SBjoern A. Zeeb 
21186b4cac81SBjoern A. Zeeb static int
21196b4cac81SBjoern A. Zeeb lkpi_ic_wme_update(struct ieee80211com *ic)
21206b4cac81SBjoern A. Zeeb {
21216b4cac81SBjoern A. Zeeb 	/* This needs queuing and go at the right moment. */
21226b4cac81SBjoern A. Zeeb #ifdef WITH_WME_UPDATE
21236b4cac81SBjoern A. Zeeb 	struct ieee80211vap *vap;
21246b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
21256b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
21266b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
21276b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
21286b4cac81SBjoern A. Zeeb 	struct chanAccParams chp;
21296b4cac81SBjoern A. Zeeb 	struct wmeParams wmeparr[WME_NUM_AC];
21306b4cac81SBjoern A. Zeeb 	struct ieee80211_tx_queue_params txqp;
21316b4cac81SBjoern A. Zeeb 	enum ieee80211_bss_changed changed;
21326b4cac81SBjoern A. Zeeb 	int error;
21336b4cac81SBjoern A. Zeeb 	uint16_t ac;
21346b4cac81SBjoern A. Zeeb #endif
21356b4cac81SBjoern A. Zeeb 
21366b4cac81SBjoern A. Zeeb 	IMPROVE();
21376b4cac81SBjoern A. Zeeb 	KASSERT(WME_NUM_AC == IEEE80211_NUM_ACS, ("%s: WME_NUM_AC %d != "
21386b4cac81SBjoern A. Zeeb 	    "IEEE80211_NUM_ACS %d\n", __func__, WME_NUM_AC, IEEE80211_NUM_ACS));
21396b4cac81SBjoern A. Zeeb 
21406b4cac81SBjoern A. Zeeb #ifdef WITH_WME_UPDATE
21416b4cac81SBjoern A. Zeeb 	vap = TAILQ_FIRST(&ic->ic_vaps);
21426b4cac81SBjoern A. Zeeb 	if (vap == NULL)
21436b4cac81SBjoern A. Zeeb 		return (0);
21446b4cac81SBjoern A. Zeeb 
21456b4cac81SBjoern A. Zeeb 	/* We should factor this out into per-vap (*wme_update). */
21466b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
21476b4cac81SBjoern A. Zeeb 	if (lhw->ops->conf_tx == NULL)
21486b4cac81SBjoern A. Zeeb 		return (0);
21496b4cac81SBjoern A. Zeeb 
21506b4cac81SBjoern A. Zeeb 	/* XXX-BZ check amount of hw queues */
21516b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
21526b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
21536b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
21546b4cac81SBjoern A. Zeeb 
21556b4cac81SBjoern A. Zeeb 	ieee80211_wme_ic_getparams(ic, &chp);
21566b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK(ic);
21576b4cac81SBjoern A. Zeeb 	for (ac = 0; ac < WME_NUM_AC; ac++)
21586b4cac81SBjoern A. Zeeb 		wmeparr[ac] = chp.cap_wmeParams[ac];
21596b4cac81SBjoern A. Zeeb 	IEEE80211_UNLOCK(ic);
21606b4cac81SBjoern A. Zeeb 
21616b4cac81SBjoern A. Zeeb 	/* Configure tx queues (conf_tx) & send BSS_CHANGED_QOS. */
21626b4cac81SBjoern A. Zeeb 	LKPI_80211_LHW_LOCK(lhw);
21636b4cac81SBjoern A. Zeeb 	for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
21646b4cac81SBjoern A. Zeeb 		struct wmeParams *wmep;
21656b4cac81SBjoern A. Zeeb 
21666b4cac81SBjoern A. Zeeb 		/* XXX-BZ should keep this in lvif? */
21676b4cac81SBjoern A. Zeeb 		wmep = &wmeparr[ac];
21686b4cac81SBjoern A. Zeeb 		bzero(&txqp, sizeof(txqp));
21696b4cac81SBjoern A. Zeeb 		txqp.cw_min = wmep->wmep_logcwmin;
21706b4cac81SBjoern A. Zeeb 		txqp.cw_max = wmep->wmep_logcwmax;
21716b4cac81SBjoern A. Zeeb 		txqp.txop = wmep->wmep_txopLimit;
21726b4cac81SBjoern A. Zeeb 		txqp.aifs = wmep->wmep_aifsn;
21736b4cac81SBjoern A. Zeeb 		error = lkpi_80211_mo_conf_tx(hw, vif, ac, &txqp);
21746b4cac81SBjoern A. Zeeb 		if (error != 0)
21756b4cac81SBjoern A. Zeeb 			printf("%s: conf_tx ac %u failed %d\n",
21766b4cac81SBjoern A. Zeeb 			    __func__, ac, error);
21776b4cac81SBjoern A. Zeeb 	}
21786b4cac81SBjoern A. Zeeb 	LKPI_80211_LHW_UNLOCK(lhw);
21796b4cac81SBjoern A. Zeeb 	changed = BSS_CHANGED_QOS;
21806b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, changed);
21816b4cac81SBjoern A. Zeeb #endif
21826b4cac81SBjoern A. Zeeb 
21836b4cac81SBjoern A. Zeeb 	return (0);
21846b4cac81SBjoern A. Zeeb }
21856b4cac81SBjoern A. Zeeb 
21866b4cac81SBjoern A. Zeeb static struct ieee80211vap *
21876b4cac81SBjoern A. Zeeb lkpi_ic_vap_create(struct ieee80211com *ic, const char name[IFNAMSIZ],
21886b4cac81SBjoern A. Zeeb     int unit, enum ieee80211_opmode opmode, int flags,
21896b4cac81SBjoern A. Zeeb     const uint8_t bssid[IEEE80211_ADDR_LEN],
21906b4cac81SBjoern A. Zeeb     const uint8_t mac[IEEE80211_ADDR_LEN])
21916b4cac81SBjoern A. Zeeb {
21926b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
21936b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
21946b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
21956b4cac81SBjoern A. Zeeb 	struct ieee80211vap *vap;
21966b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
21976b4cac81SBjoern A. Zeeb 	enum ieee80211_bss_changed changed;
21986b4cac81SBjoern A. Zeeb 	size_t len;
21996b4cac81SBjoern A. Zeeb 	int error;
22006b4cac81SBjoern A. Zeeb 
22016b4cac81SBjoern A. Zeeb 	if (!TAILQ_EMPTY(&ic->ic_vaps))	/* 1 so far. Add <n> once this works. */
22026b4cac81SBjoern A. Zeeb 		return (NULL);
22036b4cac81SBjoern A. Zeeb 
22046b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
22056b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
22066b4cac81SBjoern A. Zeeb 
22076b4cac81SBjoern A. Zeeb 	len = sizeof(*lvif);
22086b4cac81SBjoern A. Zeeb 	len += hw->vif_data_size;	/* vif->drv_priv */
22096b4cac81SBjoern A. Zeeb 
22106b4cac81SBjoern A. Zeeb 	lvif = malloc(len, M_80211_VAP, M_WAITOK | M_ZERO);
22116b4cac81SBjoern A. Zeeb 	mtx_init(&lvif->mtx, "lvif", NULL, MTX_DEF);
22126b4cac81SBjoern A. Zeeb 	TAILQ_INIT(&lvif->lsta_head);
22136b4cac81SBjoern A. Zeeb 	vap = LVIF_TO_VAP(lvif);
22146b4cac81SBjoern A. Zeeb 
22156b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
22166b4cac81SBjoern A. Zeeb 	memcpy(vif->addr, mac, IEEE80211_ADDR_LEN);
22176b4cac81SBjoern A. Zeeb 	vif->p2p = false;
22186b4cac81SBjoern A. Zeeb 	vif->probe_req_reg = false;
22196b4cac81SBjoern A. Zeeb 	vif->type = lkpi_opmode_to_vif_type(opmode);
22206b4cac81SBjoern A. Zeeb 	lvif->wdev.iftype = vif->type;
22216b4cac81SBjoern A. Zeeb 	/* Need to fill in other fields as well. */
22226b4cac81SBjoern A. Zeeb 	IMPROVE();
22236b4cac81SBjoern A. Zeeb 
22246b4cac81SBjoern A. Zeeb 	/* XXX-BZ hardcoded for now! */
22256b4cac81SBjoern A. Zeeb #if 1
22266b4cac81SBjoern A. Zeeb 	vif->chanctx_conf = NULL;
22276b4cac81SBjoern A. Zeeb 	vif->bss_conf.idle = true;
22286b4cac81SBjoern A. Zeeb 	vif->bss_conf.ps = false;
22296b4cac81SBjoern A. Zeeb 	vif->bss_conf.chandef.width = NL80211_CHAN_WIDTH_20_NOHT;
22306b4cac81SBjoern A. Zeeb 	vif->bss_conf.use_short_preamble = false;	/* vap->iv_flags IEEE80211_F_SHPREAMBLE */
22316b4cac81SBjoern A. Zeeb 	vif->bss_conf.use_short_slot = false;		/* vap->iv_flags IEEE80211_F_SHSLOT */
22326b4cac81SBjoern A. Zeeb 	vif->bss_conf.qos = false;
22336b4cac81SBjoern A. Zeeb 	vif->bss_conf.use_cts_prot = false;		/* vap->iv_protmode */
22346b4cac81SBjoern A. Zeeb 	vif->bss_conf.ht_operation_mode = IEEE80211_HT_OP_MODE_PROTECTION_NONE;
22356b4cac81SBjoern A. Zeeb 	vif->bss_conf.assoc = false;
22366b4cac81SBjoern A. Zeeb 	vif->bss_conf.aid = 0;
2237caaa79c3SBjoern A. Zeeb 	/*
2238caaa79c3SBjoern A. Zeeb 	 * We need to initialize it to something as the bss_info_changed call
2239caaa79c3SBjoern A. Zeeb 	 * will try to copy from it in iwlwifi and NULL is a panic.
2240caaa79c3SBjoern A. Zeeb 	 * We will set the proper one in scan_to_auth() before being assoc.
2241caaa79c3SBjoern A. Zeeb 	 * NB: the logic there with using an array as bssid_override and checking
2242caaa79c3SBjoern A. Zeeb 	 * for non-NULL later is flawed but in their workflow does not seem to
2243caaa79c3SBjoern A. Zeeb 	 * matter.
2244caaa79c3SBjoern A. Zeeb 	 */
2245caaa79c3SBjoern A. Zeeb 	vif->bss_conf.bssid = zerobssid;
22466b4cac81SBjoern A. Zeeb #endif
22476b4cac81SBjoern A. Zeeb #if 0
22486b4cac81SBjoern A. Zeeb 	vif->bss_conf.dtim_period = 0; /* IEEE80211_DTIM_DEFAULT ; must stay 0. */
22496b4cac81SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(vif->bss_conf.bssid, bssid);
22506b4cac81SBjoern A. Zeeb 	vif->bss_conf.beacon_int = ic->ic_bintval;
22516b4cac81SBjoern A. Zeeb 	/* iwlwifi bug. */
22526b4cac81SBjoern A. Zeeb 	if (vif->bss_conf.beacon_int < 16)
22536b4cac81SBjoern A. Zeeb 		vif->bss_conf.beacon_int = 16;
22546b4cac81SBjoern A. Zeeb #endif
22556b4cac81SBjoern A. Zeeb 	IMPROVE();
22566b4cac81SBjoern A. Zeeb 
22576b4cac81SBjoern A. Zeeb 	error = lkpi_80211_mo_start(hw);
22586b4cac81SBjoern A. Zeeb 	if (error != 0) {
22596b4cac81SBjoern A. Zeeb 		printf("%s: failed to start hw: %d\n", __func__, error);
22606b4cac81SBjoern A. Zeeb 		mtx_destroy(&lvif->mtx);
22616b4cac81SBjoern A. Zeeb 		free(lvif, M_80211_VAP);
22626b4cac81SBjoern A. Zeeb 		return (NULL);
22636b4cac81SBjoern A. Zeeb 	}
22646b4cac81SBjoern A. Zeeb 
22656b4cac81SBjoern A. Zeeb 	error = lkpi_80211_mo_add_interface(hw, vif);
22666b4cac81SBjoern A. Zeeb 	if (error != 0) {
22676b4cac81SBjoern A. Zeeb 		IMPROVE();	/* XXX-BZ mo_stop()? */
22686b4cac81SBjoern A. Zeeb 		printf("%s: failed to add interface: %d\n", __func__, error);
22696b4cac81SBjoern A. Zeeb 		mtx_destroy(&lvif->mtx);
22706b4cac81SBjoern A. Zeeb 		free(lvif, M_80211_VAP);
22716b4cac81SBjoern A. Zeeb 		return (NULL);
22726b4cac81SBjoern A. Zeeb 	}
22736b4cac81SBjoern A. Zeeb 
22748891c455SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_LOCK(lhw);
22756b4cac81SBjoern A. Zeeb 	TAILQ_INSERT_TAIL(&lhw->lvif_head, lvif, lvif_entry);
22768891c455SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_UNLOCK(lhw);
22776b4cac81SBjoern A. Zeeb 
22786b4cac81SBjoern A. Zeeb 	/* Set bss_info. */
22796b4cac81SBjoern A. Zeeb 	changed = 0;
22806b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, changed);
22816b4cac81SBjoern A. Zeeb 
22826b4cac81SBjoern A. Zeeb 	/* conf_tx setup; default WME? */
22836b4cac81SBjoern A. Zeeb 
22846b4cac81SBjoern A. Zeeb 	/* Force MC init. */
22856b4cac81SBjoern A. Zeeb 	lkpi_update_mcast_filter(ic, true);
22866b4cac81SBjoern A. Zeeb 
22876b4cac81SBjoern A. Zeeb 	IMPROVE();
22886b4cac81SBjoern A. Zeeb 
22896b4cac81SBjoern A. Zeeb 	ieee80211_vap_setup(ic, vap, name, unit, opmode, flags, bssid);
22906b4cac81SBjoern A. Zeeb 
22916b4cac81SBjoern A. Zeeb 	/* Override with LinuxKPI method so we can drive mac80211/cfg80211. */
22926b4cac81SBjoern A. Zeeb 	lvif->iv_newstate = vap->iv_newstate;
22936b4cac81SBjoern A. Zeeb 	vap->iv_newstate = lkpi_iv_newstate;
2294d9f59799SBjoern A. Zeeb 	lvif->iv_update_bss = vap->iv_update_bss;
2295d9f59799SBjoern A. Zeeb 	vap->iv_update_bss = lkpi_iv_update_bss;
22966b4cac81SBjoern A. Zeeb 
22976b4cac81SBjoern A. Zeeb 	/* Key management. */
22986b4cac81SBjoern A. Zeeb 	if (lhw->ops->set_key != NULL) {
2299b35f6cd0SBjoern A. Zeeb #ifdef LKPI_80211_HW_CRYPTO
23006b4cac81SBjoern A. Zeeb 		vap->iv_key_set = lkpi_iv_key_set;
23016b4cac81SBjoern A. Zeeb 		vap->iv_key_delete = lkpi_iv_key_delete;
23026b4cac81SBjoern A. Zeeb #endif
23036b4cac81SBjoern A. Zeeb 	}
23046b4cac81SBjoern A. Zeeb 
23056b4cac81SBjoern A. Zeeb 	ieee80211_ratectl_init(vap);
23066b4cac81SBjoern A. Zeeb 
23076b4cac81SBjoern A. Zeeb 	/* Complete setup. */
23086b4cac81SBjoern A. Zeeb 	ieee80211_vap_attach(vap, ieee80211_media_change,
23096b4cac81SBjoern A. Zeeb 	    ieee80211_media_status, mac);
23106b4cac81SBjoern A. Zeeb 
23116b4cac81SBjoern A. Zeeb 	if (hw->max_listen_interval == 0)
23126b4cac81SBjoern A. Zeeb 		hw->max_listen_interval = 7 * (ic->ic_lintval / ic->ic_bintval);
23136b4cac81SBjoern A. Zeeb 	hw->conf.listen_interval = hw->max_listen_interval;
23146b4cac81SBjoern A. Zeeb 	ic->ic_set_channel(ic);
23156b4cac81SBjoern A. Zeeb 
23166b4cac81SBjoern A. Zeeb 	/* XXX-BZ do we need to be able to update these? */
23176b4cac81SBjoern A. Zeeb 	hw->wiphy->frag_threshold =  vap->iv_fragthreshold;
23186b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_set_frag_threshold(hw, vap->iv_fragthreshold);
23196b4cac81SBjoern A. Zeeb 	hw->wiphy->rts_threshold =  vap->iv_rtsthreshold;
23206b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_set_rts_threshold(hw, vap->iv_rtsthreshold);
23216b4cac81SBjoern A. Zeeb 	/* any others? */
23226b4cac81SBjoern A. Zeeb 	IMPROVE();
23236b4cac81SBjoern A. Zeeb 
23246b4cac81SBjoern A. Zeeb 	return (vap);
23256b4cac81SBjoern A. Zeeb }
23266b4cac81SBjoern A. Zeeb 
23276b4cac81SBjoern A. Zeeb static void
23286b4cac81SBjoern A. Zeeb lkpi_ic_vap_delete(struct ieee80211vap *vap)
23296b4cac81SBjoern A. Zeeb {
23306b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
23316b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
23326b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
23336b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
23346b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
23356b4cac81SBjoern A. Zeeb 
23366b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
23376b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
23386b4cac81SBjoern A. Zeeb 	ic = vap->iv_ic;
23396b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
23406b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
23416b4cac81SBjoern A. Zeeb 
23428891c455SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_LOCK(lhw);
23436b4cac81SBjoern A. Zeeb 	TAILQ_REMOVE(&lhw->lvif_head, lvif, lvif_entry);
23448891c455SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_UNLOCK(lhw);
23456b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_remove_interface(hw, vif);
23466b4cac81SBjoern A. Zeeb 
23476b4cac81SBjoern A. Zeeb 	ieee80211_ratectl_deinit(vap);
23486b4cac81SBjoern A. Zeeb 	ieee80211_vap_detach(vap);
23496b4cac81SBjoern A. Zeeb 	mtx_destroy(&lvif->mtx);
23506b4cac81SBjoern A. Zeeb 	free(lvif, M_80211_VAP);
23516b4cac81SBjoern A. Zeeb }
23526b4cac81SBjoern A. Zeeb 
23536b4cac81SBjoern A. Zeeb static void
23546b4cac81SBjoern A. Zeeb lkpi_ic_update_mcast(struct ieee80211com *ic)
23556b4cac81SBjoern A. Zeeb {
23566b4cac81SBjoern A. Zeeb 
23576b4cac81SBjoern A. Zeeb 	lkpi_update_mcast_filter(ic, false);
23586b4cac81SBjoern A. Zeeb 	TRACEOK();
23596b4cac81SBjoern A. Zeeb }
23606b4cac81SBjoern A. Zeeb 
23616b4cac81SBjoern A. Zeeb static void
23626b4cac81SBjoern A. Zeeb lkpi_ic_update_promisc(struct ieee80211com *ic)
23636b4cac81SBjoern A. Zeeb {
23646b4cac81SBjoern A. Zeeb 
23656b4cac81SBjoern A. Zeeb 	UNIMPLEMENTED;
23666b4cac81SBjoern A. Zeeb }
23676b4cac81SBjoern A. Zeeb 
23686b4cac81SBjoern A. Zeeb static void
23696b4cac81SBjoern A. Zeeb lkpi_ic_update_chw(struct ieee80211com *ic)
23706b4cac81SBjoern A. Zeeb {
23716b4cac81SBjoern A. Zeeb 
23726b4cac81SBjoern A. Zeeb 	UNIMPLEMENTED;
23736b4cac81SBjoern A. Zeeb }
23746b4cac81SBjoern A. Zeeb 
23756b4cac81SBjoern A. Zeeb /* Start / stop device. */
23766b4cac81SBjoern A. Zeeb static void
23776b4cac81SBjoern A. Zeeb lkpi_ic_parent(struct ieee80211com *ic)
23786b4cac81SBjoern A. Zeeb {
23796b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
23806b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
23816b4cac81SBjoern A. Zeeb 	int error;
23826b4cac81SBjoern A. Zeeb 	bool start_all;
23836b4cac81SBjoern A. Zeeb 
23846b4cac81SBjoern A. Zeeb 	IMPROVE();
23856b4cac81SBjoern A. Zeeb 
23866b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
23876b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
23886b4cac81SBjoern A. Zeeb 	start_all = false;
23896b4cac81SBjoern A. Zeeb 
23906b4cac81SBjoern A. Zeeb 	if (ic->ic_nrunning > 0) {
23916b4cac81SBjoern A. Zeeb 		error = lkpi_80211_mo_start(hw);
23926b4cac81SBjoern A. Zeeb 		if (error == 0)
23936b4cac81SBjoern A. Zeeb 			start_all = true;
23946b4cac81SBjoern A. Zeeb 	} else {
23956b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_stop(hw);
23966b4cac81SBjoern A. Zeeb 	}
23976b4cac81SBjoern A. Zeeb 
23986b4cac81SBjoern A. Zeeb 	if (start_all)
23996b4cac81SBjoern A. Zeeb 		ieee80211_start_all(ic);
24006b4cac81SBjoern A. Zeeb }
24016b4cac81SBjoern A. Zeeb 
24026b4cac81SBjoern A. Zeeb bool
24036b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_is_ie_id_in_ie_buf(const u8 ie, const u8 *ie_ids,
24046b4cac81SBjoern A. Zeeb     size_t ie_ids_len)
24056b4cac81SBjoern A. Zeeb {
24066b4cac81SBjoern A. Zeeb 	int i;
24076b4cac81SBjoern A. Zeeb 
24086b4cac81SBjoern A. Zeeb 	for (i = 0; i < ie_ids_len; i++) {
24096b4cac81SBjoern A. Zeeb 		if (ie == *ie_ids)
24106b4cac81SBjoern A. Zeeb 			return (true);
24116b4cac81SBjoern A. Zeeb 	}
24126b4cac81SBjoern A. Zeeb 
24136b4cac81SBjoern A. Zeeb 	return (false);
24146b4cac81SBjoern A. Zeeb }
24156b4cac81SBjoern A. Zeeb 
24166b4cac81SBjoern A. Zeeb /* Return true if skipped; false if error. */
24176b4cac81SBjoern A. Zeeb bool
24186b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_ie_advance(size_t *xp, const u8 *ies, size_t ies_len)
24196b4cac81SBjoern A. Zeeb {
24206b4cac81SBjoern A. Zeeb 	size_t x;
24216b4cac81SBjoern A. Zeeb 	uint8_t l;
24226b4cac81SBjoern A. Zeeb 
24236b4cac81SBjoern A. Zeeb 	x = *xp;
24246b4cac81SBjoern A. Zeeb 
24256b4cac81SBjoern A. Zeeb 	KASSERT(x < ies_len, ("%s: x %zu ies_len %zu ies %p\n",
24266b4cac81SBjoern A. Zeeb 	    __func__, x, ies_len, ies));
24276b4cac81SBjoern A. Zeeb 	l = ies[x + 1];
24286b4cac81SBjoern A. Zeeb 	x += 2 + l;
24296b4cac81SBjoern A. Zeeb 
24306b4cac81SBjoern A. Zeeb 	if (x > ies_len)
24316b4cac81SBjoern A. Zeeb 		return (false);
24326b4cac81SBjoern A. Zeeb 
24336b4cac81SBjoern A. Zeeb 	*xp = x;
24346b4cac81SBjoern A. Zeeb 	return (true);
24356b4cac81SBjoern A. Zeeb }
24366b4cac81SBjoern A. Zeeb 
2437d9945d78SBjoern A. Zeeb static uint8_t *
2438d9945d78SBjoern A. Zeeb lkpi_scan_ies_add(uint8_t *p, struct ieee80211_scan_ies *scan_ies,
2439d9945d78SBjoern A. Zeeb     uint32_t band_mask, struct ieee80211vap *vap, struct ieee80211_hw *hw)
24406b4cac81SBjoern A. Zeeb {
2441d9945d78SBjoern A. Zeeb 	struct ieee80211_supported_band *supband;
2442d9945d78SBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel *channels;
2443d9945d78SBjoern A. Zeeb 	const struct ieee80211_channel *chan;
2444d9945d78SBjoern A. Zeeb 	const struct ieee80211_rateset *rs;
2445d9945d78SBjoern A. Zeeb 	uint8_t *pb;
2446d9945d78SBjoern A. Zeeb 	int band, i;
24476b4cac81SBjoern A. Zeeb 
2448d9945d78SBjoern A. Zeeb 	for (band = 0; band < NUM_NL80211_BANDS; band++) {
2449d9945d78SBjoern A. Zeeb 		if ((band_mask & (1 << band)) == 0)
2450d9945d78SBjoern A. Zeeb 			continue;
2451d9945d78SBjoern A. Zeeb 
2452d9945d78SBjoern A. Zeeb 		supband = hw->wiphy->bands[band];
2453d9945d78SBjoern A. Zeeb 		/*
2454d9945d78SBjoern A. Zeeb 		 * This should not happen;
2455d9945d78SBjoern A. Zeeb 		 * band_mask is a bitmask of valid bands to scan on.
2456d9945d78SBjoern A. Zeeb 		 */
2457d9945d78SBjoern A. Zeeb 		if (supband == NULL || supband->n_channels == 0)
2458d9945d78SBjoern A. Zeeb 			continue;
2459d9945d78SBjoern A. Zeeb 
2460d9945d78SBjoern A. Zeeb 		/* Find a first channel to get the mode and rates from. */
2461d9945d78SBjoern A. Zeeb 		channels = supband->channels;
2462d9945d78SBjoern A. Zeeb 		chan = NULL;
2463d9945d78SBjoern A. Zeeb 		for (i = 0; i < supband->n_channels; i++) {
2464d9945d78SBjoern A. Zeeb 
2465d9945d78SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_DISABLED)
2466d9945d78SBjoern A. Zeeb 				continue;
2467d9945d78SBjoern A. Zeeb 
2468d9945d78SBjoern A. Zeeb 			chan = ieee80211_find_channel(vap->iv_ic,
2469d9945d78SBjoern A. Zeeb 			    channels[i].center_freq, 0);
2470d9945d78SBjoern A. Zeeb 			if (chan != NULL)
2471d9945d78SBjoern A. Zeeb 				break;
2472d9945d78SBjoern A. Zeeb 		}
2473d9945d78SBjoern A. Zeeb 
2474d9945d78SBjoern A. Zeeb 		/* This really should not happen. */
2475d9945d78SBjoern A. Zeeb 		if (chan == NULL)
2476d9945d78SBjoern A. Zeeb 			continue;
2477d9945d78SBjoern A. Zeeb 
2478d9945d78SBjoern A. Zeeb 		pb = p;
2479d9945d78SBjoern A. Zeeb 		rs = ieee80211_get_suprates(vap->iv_ic, chan);	/* calls chan2mode */
2480d9945d78SBjoern A. Zeeb 		p = ieee80211_add_rates(p, rs);
2481d9945d78SBjoern A. Zeeb 		p = ieee80211_add_xrates(p, rs);
2482d9945d78SBjoern A. Zeeb 
2483d9945d78SBjoern A. Zeeb 		scan_ies->ies[band] = pb;
2484d9945d78SBjoern A. Zeeb 		scan_ies->len[band] = p - pb;
2485d9945d78SBjoern A. Zeeb 	}
2486d9945d78SBjoern A. Zeeb 
2487d9945d78SBjoern A. Zeeb 	/* Add common_ies */
2488d9945d78SBjoern A. Zeeb 	pb = p;
2489d9945d78SBjoern A. Zeeb 	if ((vap->iv_flags & IEEE80211_F_WPA1) != 0 &&
2490d9945d78SBjoern A. Zeeb 	    vap->iv_wpa_ie != NULL) {
2491d9945d78SBjoern A. Zeeb 		memcpy(p, vap->iv_wpa_ie, 2 + vap->iv_wpa_ie[1]);
2492d9945d78SBjoern A. Zeeb 		p += 2 + vap->iv_wpa_ie[1];
2493d9945d78SBjoern A. Zeeb 	}
2494d9945d78SBjoern A. Zeeb 	if (vap->iv_appie_probereq != NULL) {
2495d9945d78SBjoern A. Zeeb 		memcpy(p, vap->iv_appie_probereq->ie_data,
2496d9945d78SBjoern A. Zeeb 		    vap->iv_appie_probereq->ie_len);
2497d9945d78SBjoern A. Zeeb 		p += vap->iv_appie_probereq->ie_len;
2498d9945d78SBjoern A. Zeeb 	}
2499d9945d78SBjoern A. Zeeb 	scan_ies->common_ies = pb;
2500d9945d78SBjoern A. Zeeb 	scan_ies->common_ie_len = p - pb;
2501d9945d78SBjoern A. Zeeb 
2502d9945d78SBjoern A. Zeeb 	return (p);
25036b4cac81SBjoern A. Zeeb }
25046b4cac81SBjoern A. Zeeb 
25056b4cac81SBjoern A. Zeeb static void
25066b4cac81SBjoern A. Zeeb lkpi_ic_scan_start(struct ieee80211com *ic)
25076b4cac81SBjoern A. Zeeb {
25086b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
25096b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
25106b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
25116b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
25126b4cac81SBjoern A. Zeeb 	struct ieee80211_scan_state *ss;
25136b4cac81SBjoern A. Zeeb 	struct ieee80211vap *vap;
25146b4cac81SBjoern A. Zeeb 	int error;
25156b4cac81SBjoern A. Zeeb 
25166b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
2517*a486fbbdSBjoern A. Zeeb 	if ((lhw->scan_flags & LKPI_LHW_SCAN_RUNNING) != 0) {
25186b4cac81SBjoern A. Zeeb 		/* A scan is still running. */
25196b4cac81SBjoern A. Zeeb 		return;
25206b4cac81SBjoern A. Zeeb 	}
25216b4cac81SBjoern A. Zeeb 
25226b4cac81SBjoern A. Zeeb 	ss = ic->ic_scan;
25236b4cac81SBjoern A. Zeeb 	vap = ss->ss_vap;
25246b4cac81SBjoern A. Zeeb 	if (vap->iv_state != IEEE80211_S_SCAN) {
2525d3ef7fb4SBjoern A. Zeeb 		IMPROVE("We need to be able to scan if not in S_SCAN");
25266b4cac81SBjoern A. Zeeb 		return;
25276b4cac81SBjoern A. Zeeb 	}
25286b4cac81SBjoern A. Zeeb 
25296b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
2530*a486fbbdSBjoern A. Zeeb 	if ((lhw->scan_flags & LKPI_LHW_SCAN_HW) == 0) {
2531*a486fbbdSBjoern A. Zeeb 		/* If hw_scan is cleared clear FEXT_SCAN_OFFLOAD too. */
2532*a486fbbdSBjoern A. Zeeb 		vap->iv_flags_ext &= ~IEEE80211_FEXT_SCAN_OFFLOAD;
2533d3ef7fb4SBjoern A. Zeeb sw_scan:
25346b4cac81SBjoern A. Zeeb 		lvif = VAP_TO_LVIF(vap);
25356b4cac81SBjoern A. Zeeb 		vif = LVIF_TO_VIF(lvif);
2536086be6a8SBjoern A. Zeeb 
2537086be6a8SBjoern A. Zeeb 		if (vap->iv_state == IEEE80211_S_SCAN)
2538086be6a8SBjoern A. Zeeb 			lkpi_hw_conf_idle(hw, false);
2539086be6a8SBjoern A. Zeeb 
25406b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_sw_scan_start(hw, vif, vif->addr);
25416b4cac81SBjoern A. Zeeb 		/* net80211::scan_start() handled PS for us. */
25426b4cac81SBjoern A. Zeeb 		IMPROVE();
25436b4cac81SBjoern A. Zeeb 		/* XXX Also means it is too late to flush queues?
25446b4cac81SBjoern A. Zeeb 		 * need to check iv_sta_ps or overload? */
25456b4cac81SBjoern A. Zeeb 		/* XXX want to adjust ss end time/ maxdwell? */
25466b4cac81SBjoern A. Zeeb 
25476b4cac81SBjoern A. Zeeb 	} else {
25486b4cac81SBjoern A. Zeeb 		struct ieee80211_channel *c;
25496b4cac81SBjoern A. Zeeb 		struct ieee80211_scan_request *hw_req;
25506b4cac81SBjoern A. Zeeb 		struct linuxkpi_ieee80211_channel *lc, **cpp;
25516b4cac81SBjoern A. Zeeb 		struct cfg80211_ssid *ssids;
25526b4cac81SBjoern A. Zeeb 		struct cfg80211_scan_6ghz_params *s6gp;
25536b4cac81SBjoern A. Zeeb 		size_t chan_len, nchan, ssids_len, s6ghzlen;
2554d9945d78SBjoern A. Zeeb 		int band, i, ssid_count, common_ie_len;
2555d9945d78SBjoern A. Zeeb 		uint32_t band_mask;
2556d9945d78SBjoern A. Zeeb 		uint8_t *ie, *ieend;
25576b4cac81SBjoern A. Zeeb 
2558d9945d78SBjoern A. Zeeb 		if (!ieee80211_hw_check(hw, SINGLE_SCAN_ON_ALL_BANDS)) {
2559d9945d78SBjoern A. Zeeb 			IMPROVE("individual band scans not yet supported");
2560d9945d78SBjoern A. Zeeb 			/* In theory net80211 would have to drive this. */
2561d9945d78SBjoern A. Zeeb 			return;
2562d9945d78SBjoern A. Zeeb 		}
2563d9945d78SBjoern A. Zeeb 
2564d9945d78SBjoern A. Zeeb 		ssid_count = min(ss->ss_nssid, hw->wiphy->max_scan_ssids);
2565d9945d78SBjoern A. Zeeb 		ssids_len = ssid_count * sizeof(*ssids);
25666b4cac81SBjoern A. Zeeb 		s6ghzlen = 0 * (sizeof(*s6gp));			/* XXX-BZ */
25676b4cac81SBjoern A. Zeeb 
2568d9945d78SBjoern A. Zeeb 		band_mask = 0;
25696b4cac81SBjoern A. Zeeb 		nchan = 0;
2570d9945d78SBjoern A. Zeeb 		for (i = ss->ss_next; i < ss->ss_last; i++) {
25716b4cac81SBjoern A. Zeeb 			nchan++;
2572d9945d78SBjoern A. Zeeb 			band = lkpi_net80211_chan_to_nl80211_band(
2573d9945d78SBjoern A. Zeeb 			    ss->ss_chans[ss->ss_next + i]);
2574d9945d78SBjoern A. Zeeb 			band_mask |= (1 << band);
2575d9945d78SBjoern A. Zeeb 		}
25766b4cac81SBjoern A. Zeeb 		chan_len = nchan * (sizeof(lc) + sizeof(*lc));
25776b4cac81SBjoern A. Zeeb 
2578d9945d78SBjoern A. Zeeb 		common_ie_len = 0;
2579d9945d78SBjoern A. Zeeb 		if ((vap->iv_flags & IEEE80211_F_WPA1) != 0 &&
2580d9945d78SBjoern A. Zeeb 		    vap->iv_wpa_ie != NULL)
2581d9945d78SBjoern A. Zeeb 			common_ie_len += vap->iv_wpa_ie[1];
2582d9945d78SBjoern A. Zeeb 		if (vap->iv_appie_probereq != NULL)
2583d9945d78SBjoern A. Zeeb 			common_ie_len += vap->iv_appie_probereq->ie_len;
2584d9945d78SBjoern A. Zeeb 
2585d9945d78SBjoern A. Zeeb 		/* We would love to check this at an earlier stage... */
2586d9945d78SBjoern A. Zeeb 		if (common_ie_len >  hw->wiphy->max_scan_ie_len) {
2587d9945d78SBjoern A. Zeeb 			ic_printf(ic, "WARNING: %s: common_ie_len %d > "
2588d9945d78SBjoern A. Zeeb 			    "wiphy->max_scan_ie_len %d\n", __func__,
2589d9945d78SBjoern A. Zeeb 			    common_ie_len, hw->wiphy->max_scan_ie_len);
2590d9945d78SBjoern A. Zeeb 		}
2591d9945d78SBjoern A. Zeeb 
25926b4cac81SBjoern A. Zeeb 		KASSERT(lhw->hw_req == NULL, ("%s: ic %p lhw %p hw_req %p "
25936b4cac81SBjoern A. Zeeb 		    "!= NULL\n", __func__, ic, lhw, lhw->hw_req));
25946b4cac81SBjoern A. Zeeb 
2595d9945d78SBjoern A. Zeeb 		lhw->hw_req = hw_req = malloc(sizeof(*hw_req) + ssids_len +
2596d9945d78SBjoern A. Zeeb 		    s6ghzlen + chan_len + lhw->supbands * lhw->scan_ie_len +
2597d9945d78SBjoern A. Zeeb 		    common_ie_len, M_LKPI80211, M_WAITOK | M_ZERO);
25986b4cac81SBjoern A. Zeeb 
25996b4cac81SBjoern A. Zeeb 		hw_req->req.flags = 0;			/* XXX ??? */
26006b4cac81SBjoern A. Zeeb 		/* hw_req->req.wdev */
26016b4cac81SBjoern A. Zeeb 		hw_req->req.wiphy = hw->wiphy;
26026b4cac81SBjoern A. Zeeb 		hw_req->req.no_cck = false;		/* XXX */
26036b4cac81SBjoern A. Zeeb #if 0
26046b4cac81SBjoern A. Zeeb 		/* This seems to pessimise default scanning behaviour. */
26056b4cac81SBjoern A. Zeeb 		hw_req->req.duration_mandatory = TICKS_2_USEC(ss->ss_mindwell);
26066b4cac81SBjoern A. Zeeb 		hw_req->req.duration = TICKS_2_USEC(ss->ss_maxdwell);
26076b4cac81SBjoern A. Zeeb #endif
26086b4cac81SBjoern A. Zeeb #ifdef __notyet__
26096b4cac81SBjoern A. Zeeb 		hw_req->req.flags |= NL80211_SCAN_FLAG_RANDOM_ADDR;
26106b4cac81SBjoern A. Zeeb 		memcpy(hw_req->req.mac_addr, xxx, IEEE80211_ADDR_LEN);
26116b4cac81SBjoern A. Zeeb 		memset(hw_req->req.mac_addr_mask, 0xxx, IEEE80211_ADDR_LEN);
26126b4cac81SBjoern A. Zeeb #endif
26136b4cac81SBjoern A. Zeeb 
26146b4cac81SBjoern A. Zeeb 		hw_req->req.n_channels = nchan;
26156b4cac81SBjoern A. Zeeb 		cpp = (struct linuxkpi_ieee80211_channel **)(hw_req + 1);
26166b4cac81SBjoern A. Zeeb 		lc = (struct linuxkpi_ieee80211_channel *)(cpp + nchan);
26176b4cac81SBjoern A. Zeeb 		for (i = 0; i < nchan; i++) {
26186b4cac81SBjoern A. Zeeb 			*(cpp + i) =
26196b4cac81SBjoern A. Zeeb 			    (struct linuxkpi_ieee80211_channel *)(lc + i);
26206b4cac81SBjoern A. Zeeb 		}
26216b4cac81SBjoern A. Zeeb 		for (i = 0; i < nchan; i++) {
26226b4cac81SBjoern A. Zeeb 			c = ss->ss_chans[ss->ss_next + i];
26236b4cac81SBjoern A. Zeeb 
26246b4cac81SBjoern A. Zeeb 			lc->hw_value = c->ic_ieee;
26256b4cac81SBjoern A. Zeeb 			lc->center_freq = c->ic_freq;
26266b4cac81SBjoern A. Zeeb 			/* lc->flags */
26276b4cac81SBjoern A. Zeeb 			lc->band = lkpi_net80211_chan_to_nl80211_band(c);
26286b4cac81SBjoern A. Zeeb 			lc->max_power = c->ic_maxpower;
26296b4cac81SBjoern A. Zeeb 			/* lc-> ... */
26306b4cac81SBjoern A. Zeeb 			lc++;
26316b4cac81SBjoern A. Zeeb 		}
26326b4cac81SBjoern A. Zeeb 
2633d9945d78SBjoern A. Zeeb 		hw_req->req.n_ssids = ssid_count;
26346b4cac81SBjoern A. Zeeb 		if (hw_req->req.n_ssids > 0) {
26356b4cac81SBjoern A. Zeeb 			ssids = (struct cfg80211_ssid *)lc;
26366b4cac81SBjoern A. Zeeb 			hw_req->req.ssids = ssids;
2637d9945d78SBjoern A. Zeeb 			for (i = 0; i < ssid_count; i++) {
26386b4cac81SBjoern A. Zeeb 				ssids->ssid_len = ss->ss_ssid[i].len;
26396b4cac81SBjoern A. Zeeb 				memcpy(ssids->ssid, ss->ss_ssid[i].ssid,
26406b4cac81SBjoern A. Zeeb 				    ss->ss_ssid[i].len);
26416b4cac81SBjoern A. Zeeb 				ssids++;
26426b4cac81SBjoern A. Zeeb 			}
26436b4cac81SBjoern A. Zeeb 			s6gp = (struct cfg80211_scan_6ghz_params *)ssids;
26446b4cac81SBjoern A. Zeeb 		} else {
26456b4cac81SBjoern A. Zeeb 			s6gp = (struct cfg80211_scan_6ghz_params *)lc;
26466b4cac81SBjoern A. Zeeb 		}
26476b4cac81SBjoern A. Zeeb 
26486b4cac81SBjoern A. Zeeb 		/* 6GHz one day. */
26496b4cac81SBjoern A. Zeeb 		hw_req->req.n_6ghz_params = 0;
26506b4cac81SBjoern A. Zeeb 		hw_req->req.scan_6ghz_params = NULL;
26516b4cac81SBjoern A. Zeeb 		hw_req->req.scan_6ghz = false;	/* Weird boolean; not what you think. */
26526b4cac81SBjoern A. Zeeb 		/* s6gp->... */
26536b4cac81SBjoern A. Zeeb 
2654d9945d78SBjoern A. Zeeb 		ie = ieend = (uint8_t *)s6gp;
2655d9945d78SBjoern A. Zeeb 		/* Copy per-band IEs, copy common IEs */
2656d9945d78SBjoern A. Zeeb 		ieend = lkpi_scan_ies_add(ie, &hw_req->ies, band_mask, vap, hw);
2657d9945d78SBjoern A. Zeeb 		hw_req->req.ie = ie;
2658d9945d78SBjoern A. Zeeb 		hw_req->req.ie_len = ieend - ie;
2659d9945d78SBjoern A. Zeeb 
26606b4cac81SBjoern A. Zeeb 		lvif = VAP_TO_LVIF(vap);
26616b4cac81SBjoern A. Zeeb 		vif = LVIF_TO_VIF(lvif);
26626b4cac81SBjoern A. Zeeb 		error = lkpi_80211_mo_hw_scan(hw, vif, hw_req);
26636b4cac81SBjoern A. Zeeb 		if (error != 0) {
2664d9945d78SBjoern A. Zeeb 			ieee80211_cancel_scan(vap);
2665d9945d78SBjoern A. Zeeb 
26666b4cac81SBjoern A. Zeeb 			free(hw_req, M_LKPI80211);
26676b4cac81SBjoern A. Zeeb 			lhw->hw_req = NULL;
2668d3ef7fb4SBjoern A. Zeeb 
2669d3ef7fb4SBjoern A. Zeeb 			/*
2670d3ef7fb4SBjoern A. Zeeb 			 * XXX-SIGH magic number.
2671d3ef7fb4SBjoern A. Zeeb 			 * rtw88 has a magic "return 1" if offloading scan is
2672d3ef7fb4SBjoern A. Zeeb 			 * not possible.  Fall back to sw scan in that case.
2673d3ef7fb4SBjoern A. Zeeb 			 */
2674196cfd0bSBjoern A. Zeeb 			if (error == 1) {
2675*a486fbbdSBjoern A. Zeeb 				lhw->scan_flags &= ~LKPI_LHW_SCAN_HW;
2676196cfd0bSBjoern A. Zeeb 				ieee80211_start_scan(vap,
2677196cfd0bSBjoern A. Zeeb 				    IEEE80211_SCAN_ACTIVE |
2678196cfd0bSBjoern A. Zeeb 				    IEEE80211_SCAN_NOPICK |
2679196cfd0bSBjoern A. Zeeb 				    IEEE80211_SCAN_ONCE,
2680196cfd0bSBjoern A. Zeeb 				    IEEE80211_SCAN_FOREVER,
2681196cfd0bSBjoern A. Zeeb 				    ss->ss_mindwell ? ss->ss_mindwell : msecs_to_ticks(20),
2682196cfd0bSBjoern A. Zeeb 				    ss->ss_maxdwell ? ss->ss_maxdwell : msecs_to_ticks(200),
2683196cfd0bSBjoern A. Zeeb 				    vap->iv_des_nssid, vap->iv_des_ssid);
2684d3ef7fb4SBjoern A. Zeeb 				goto sw_scan;
2685196cfd0bSBjoern A. Zeeb 			}
2686d3ef7fb4SBjoern A. Zeeb 
2687d3ef7fb4SBjoern A. Zeeb 			ic_printf(ic, "ERROR: %s: hw_scan returned %d\n",
2688d3ef7fb4SBjoern A. Zeeb 			    __func__, error);
26896b4cac81SBjoern A. Zeeb 		}
26906b4cac81SBjoern A. Zeeb 	}
26916b4cac81SBjoern A. Zeeb }
26926b4cac81SBjoern A. Zeeb 
26936b4cac81SBjoern A. Zeeb static void
26946b4cac81SBjoern A. Zeeb lkpi_ic_scan_end(struct ieee80211com *ic)
26956b4cac81SBjoern A. Zeeb {
26966b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
26976b4cac81SBjoern A. Zeeb 
26986b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
2699*a486fbbdSBjoern A. Zeeb 	if ((lhw->scan_flags & LKPI_LHW_SCAN_RUNNING) == 0) {
27006b4cac81SBjoern A. Zeeb 		return;
27016b4cac81SBjoern A. Zeeb 	}
27026b4cac81SBjoern A. Zeeb 
2703*a486fbbdSBjoern A. Zeeb 	if ((lhw->scan_flags & LKPI_LHW_SCAN_HW) == 0) {
2704*a486fbbdSBjoern A. Zeeb 		struct ieee80211_scan_state *ss;
2705*a486fbbdSBjoern A. Zeeb 		struct ieee80211vap *vap;
27066b4cac81SBjoern A. Zeeb 		struct ieee80211_hw *hw;
27076b4cac81SBjoern A. Zeeb 		struct lkpi_vif *lvif;
27086b4cac81SBjoern A. Zeeb 		struct ieee80211_vif *vif;
27096b4cac81SBjoern A. Zeeb 
2710*a486fbbdSBjoern A. Zeeb 		ss = ic->ic_scan;
2711*a486fbbdSBjoern A. Zeeb 		vap = ss->ss_vap;
27126b4cac81SBjoern A. Zeeb 		hw = LHW_TO_HW(lhw);
27136b4cac81SBjoern A. Zeeb 		lvif = VAP_TO_LVIF(vap);
27146b4cac81SBjoern A. Zeeb 		vif = LVIF_TO_VIF(lvif);
2715*a486fbbdSBjoern A. Zeeb 
27166b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_sw_scan_complete(hw, vif);
27176b4cac81SBjoern A. Zeeb 
27186b4cac81SBjoern A. Zeeb 		/* Send PS to stop buffering if n80211 does not for us? */
2719086be6a8SBjoern A. Zeeb 
2720086be6a8SBjoern A. Zeeb 		if (vap->iv_state == IEEE80211_S_SCAN)
2721086be6a8SBjoern A. Zeeb 			lkpi_hw_conf_idle(hw, true);
27226b4cac81SBjoern A. Zeeb 	}
27236b4cac81SBjoern A. Zeeb }
27246b4cac81SBjoern A. Zeeb 
27256b4cac81SBjoern A. Zeeb static void
2726*a486fbbdSBjoern A. Zeeb lkpi_ic_scan_curchan(struct ieee80211_scan_state *ss,
2727*a486fbbdSBjoern A. Zeeb     unsigned long maxdwell)
2728*a486fbbdSBjoern A. Zeeb {
2729*a486fbbdSBjoern A. Zeeb 	struct lkpi_hw *lhw;
2730*a486fbbdSBjoern A. Zeeb 
2731*a486fbbdSBjoern A. Zeeb 	lhw = ss->ss_ic->ic_softc;
2732*a486fbbdSBjoern A. Zeeb 	if ((lhw->scan_flags & LKPI_LHW_SCAN_HW) == 0)
2733*a486fbbdSBjoern A. Zeeb 		lhw->ic_scan_curchan(ss, maxdwell);
2734*a486fbbdSBjoern A. Zeeb }
2735*a486fbbdSBjoern A. Zeeb 
2736*a486fbbdSBjoern A. Zeeb static void
2737*a486fbbdSBjoern A. Zeeb lkpi_ic_scan_mindwell(struct ieee80211_scan_state *ss)
2738*a486fbbdSBjoern A. Zeeb {
2739*a486fbbdSBjoern A. Zeeb 	struct lkpi_hw *lhw;
2740*a486fbbdSBjoern A. Zeeb 
2741*a486fbbdSBjoern A. Zeeb 	lhw = ss->ss_ic->ic_softc;
2742*a486fbbdSBjoern A. Zeeb 	if ((lhw->scan_flags & LKPI_LHW_SCAN_HW) == 0)
2743*a486fbbdSBjoern A. Zeeb 		lhw->ic_scan_mindwell(ss);
2744*a486fbbdSBjoern A. Zeeb }
2745*a486fbbdSBjoern A. Zeeb 
2746*a486fbbdSBjoern A. Zeeb static void
27476b4cac81SBjoern A. Zeeb lkpi_ic_set_channel(struct ieee80211com *ic)
27486b4cac81SBjoern A. Zeeb {
27496b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
27506b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
2751b2cf3c21SBjoern A. Zeeb 	struct ieee80211_channel *c;
2752b2cf3c21SBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel *chan;
27536b4cac81SBjoern A. Zeeb 	int error;
27546b4cac81SBjoern A. Zeeb 
27556b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
2756b2cf3c21SBjoern A. Zeeb 
2757b2cf3c21SBjoern A. Zeeb 	/* If we do not support (*config)() save us the work. */
2758b2cf3c21SBjoern A. Zeeb 	if (lhw->ops->config == NULL)
27596b4cac81SBjoern A. Zeeb 		return;
27606b4cac81SBjoern A. Zeeb 
2761*a486fbbdSBjoern A. Zeeb 	/* If we have a hw_scan running do not switch channels. */
2762*a486fbbdSBjoern A. Zeeb 	if ((lhw->scan_flags & (LKPI_LHW_SCAN_RUNNING|LKPI_LHW_SCAN_HW)) ==
2763*a486fbbdSBjoern A. Zeeb 	    (LKPI_LHW_SCAN_RUNNING|LKPI_LHW_SCAN_HW))
2764*a486fbbdSBjoern A. Zeeb 		return;
2765*a486fbbdSBjoern A. Zeeb 
2766b2cf3c21SBjoern A. Zeeb 	c = ic->ic_curchan;
2767b2cf3c21SBjoern A. Zeeb 	if (c == NULL || c == IEEE80211_CHAN_ANYC) {
27686b4cac81SBjoern A. Zeeb 		ic_printf(ic, "%s: c %p ops->config %p\n", __func__,
27696b4cac81SBjoern A. Zeeb 		    c, lhw->ops->config);
27706b4cac81SBjoern A. Zeeb 		return;
27716b4cac81SBjoern A. Zeeb 	}
27726b4cac81SBjoern A. Zeeb 
27736b4cac81SBjoern A. Zeeb 	chan = lkpi_find_lkpi80211_chan(lhw, c);
27746b4cac81SBjoern A. Zeeb 	if (chan == NULL) {
27756b4cac81SBjoern A. Zeeb 		ic_printf(ic, "%s: c %p chan %p\n", __func__,
27766b4cac81SBjoern A. Zeeb 		    c, chan);
27776b4cac81SBjoern A. Zeeb 		return;
27786b4cac81SBjoern A. Zeeb 	}
27796b4cac81SBjoern A. Zeeb 
27806b4cac81SBjoern A. Zeeb 	/* XXX max power for scanning? */
27816b4cac81SBjoern A. Zeeb 	IMPROVE();
27826b4cac81SBjoern A. Zeeb 
27836b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
27844a07abdeSBjoern A. Zeeb 	cfg80211_chandef_create(&hw->conf.chandef, chan,
27854a07abdeSBjoern A. Zeeb 	    NL80211_CHAN_NO_HT);
27866b4cac81SBjoern A. Zeeb 
27876b4cac81SBjoern A. Zeeb 	error = lkpi_80211_mo_config(hw, IEEE80211_CONF_CHANGE_CHANNEL);
27886b4cac81SBjoern A. Zeeb 	if (error != 0 && error != EOPNOTSUPP) {
27896b4cac81SBjoern A. Zeeb 		ic_printf(ic, "ERROR: %s: config %#0x returned %d\n",
27906b4cac81SBjoern A. Zeeb 		    __func__, IEEE80211_CONF_CHANGE_CHANNEL, error);
27916b4cac81SBjoern A. Zeeb 		/* XXX should we unroll to the previous chandef? */
27926b4cac81SBjoern A. Zeeb 		IMPROVE();
27936b4cac81SBjoern A. Zeeb 	} else {
27946b4cac81SBjoern A. Zeeb 		/* Update radiotap channels as well. */
27956b4cac81SBjoern A. Zeeb 		lhw->rtap_tx.wt_chan_freq = htole16(c->ic_freq);
27966b4cac81SBjoern A. Zeeb 		lhw->rtap_tx.wt_chan_flags = htole16(c->ic_flags);
27976b4cac81SBjoern A. Zeeb 		lhw->rtap_rx.wr_chan_freq = htole16(c->ic_freq);
27986b4cac81SBjoern A. Zeeb 		lhw->rtap_rx.wr_chan_flags = htole16(c->ic_flags);
27996b4cac81SBjoern A. Zeeb 	}
28006b4cac81SBjoern A. Zeeb 
28016b4cac81SBjoern A. Zeeb 	/* Currently PS is hard coded off! Not sure it belongs here. */
28026b4cac81SBjoern A. Zeeb 	IMPROVE();
28036b4cac81SBjoern A. Zeeb 	if (ieee80211_hw_check(hw, SUPPORTS_PS) &&
28046b4cac81SBjoern A. Zeeb 	    (hw->conf.flags & IEEE80211_CONF_PS) != 0) {
28056b4cac81SBjoern A. Zeeb 		hw->conf.flags &= ~IEEE80211_CONF_PS;
28066b4cac81SBjoern A. Zeeb 		error = lkpi_80211_mo_config(hw, IEEE80211_CONF_CHANGE_PS);
28076b4cac81SBjoern A. Zeeb 		if (error != 0 && error != EOPNOTSUPP)
28086b4cac81SBjoern A. Zeeb 			ic_printf(ic, "ERROR: %s: config %#0x returned "
28096b4cac81SBjoern A. Zeeb 			    "%d\n", __func__, IEEE80211_CONF_CHANGE_PS,
28106b4cac81SBjoern A. Zeeb 			    error);
28116b4cac81SBjoern A. Zeeb 	}
28126b4cac81SBjoern A. Zeeb }
28136b4cac81SBjoern A. Zeeb 
28146b4cac81SBjoern A. Zeeb static struct ieee80211_node *
28156b4cac81SBjoern A. Zeeb lkpi_ic_node_alloc(struct ieee80211vap *vap,
28166b4cac81SBjoern A. Zeeb     const uint8_t mac[IEEE80211_ADDR_LEN])
28176b4cac81SBjoern A. Zeeb {
28186b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
28196b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
28204f61ef8bSBjoern A. Zeeb 	struct ieee80211_node *ni;
28216b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
28226b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
28236b4cac81SBjoern A. Zeeb 
28246b4cac81SBjoern A. Zeeb 	ic = vap->iv_ic;
28256b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
28266b4cac81SBjoern A. Zeeb 
28276b4cac81SBjoern A. Zeeb 	/* We keep allocations de-coupled so we can deal with the two worlds. */
28284f61ef8bSBjoern A. Zeeb 	if (lhw->ic_node_alloc == NULL)
28294f61ef8bSBjoern A. Zeeb 		return (NULL);
28304f61ef8bSBjoern A. Zeeb 
28316b4cac81SBjoern A. Zeeb 	ni = lhw->ic_node_alloc(vap, mac);
28326b4cac81SBjoern A. Zeeb 	if (ni == NULL)
28336b4cac81SBjoern A. Zeeb 		return (NULL);
28346b4cac81SBjoern A. Zeeb 
28356b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
28364f61ef8bSBjoern A. Zeeb 	lsta = lkpi_lsta_alloc(vap, mac, hw, ni);
28376b4cac81SBjoern A. Zeeb 	if (lsta == NULL) {
28386b4cac81SBjoern A. Zeeb 		if (lhw->ic_node_free != NULL)
28396b4cac81SBjoern A. Zeeb 			lhw->ic_node_free(ni);
28406b4cac81SBjoern A. Zeeb 		return (NULL);
28416b4cac81SBjoern A. Zeeb 	}
28426b4cac81SBjoern A. Zeeb 
28436b4cac81SBjoern A. Zeeb 	return (ni);
28446b4cac81SBjoern A. Zeeb }
28456b4cac81SBjoern A. Zeeb 
28466b4cac81SBjoern A. Zeeb static int
28476b4cac81SBjoern A. Zeeb lkpi_ic_node_init(struct ieee80211_node *ni)
28486b4cac81SBjoern A. Zeeb {
28496b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
28506b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
28516b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
28526b4cac81SBjoern A. Zeeb 	int error;
28536b4cac81SBjoern A. Zeeb 
28546b4cac81SBjoern A. Zeeb 	ic = ni->ni_ic;
28556b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
28566b4cac81SBjoern A. Zeeb 
28576b4cac81SBjoern A. Zeeb 	if (lhw->ic_node_init != NULL) {
28586b4cac81SBjoern A. Zeeb 		error = lhw->ic_node_init(ni);
28596b4cac81SBjoern A. Zeeb 		if (error != 0)
28606b4cac81SBjoern A. Zeeb 			return (error);
28616b4cac81SBjoern A. Zeeb 	}
28626b4cac81SBjoern A. Zeeb 
28636b4cac81SBjoern A. Zeeb 	lsta = ni->ni_drv_data;
28646b4cac81SBjoern A. Zeeb 
28656b4cac81SBjoern A. Zeeb 	/* Now take the reference before linking it to the table. */
28666b4cac81SBjoern A. Zeeb 	lsta->ni = ieee80211_ref_node(ni);
28676b4cac81SBjoern A. Zeeb 
28686b4cac81SBjoern A. Zeeb 	/* XXX-BZ Sync other state over. */
28696b4cac81SBjoern A. Zeeb 	IMPROVE();
28706b4cac81SBjoern A. Zeeb 
28716b4cac81SBjoern A. Zeeb 	return (0);
28726b4cac81SBjoern A. Zeeb }
28736b4cac81SBjoern A. Zeeb 
28746b4cac81SBjoern A. Zeeb static void
28756b4cac81SBjoern A. Zeeb lkpi_ic_node_cleanup(struct ieee80211_node *ni)
28766b4cac81SBjoern A. Zeeb {
28776b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
28786b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
28796b4cac81SBjoern A. Zeeb 
28806b4cac81SBjoern A. Zeeb 	ic = ni->ni_ic;
28816b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
28826b4cac81SBjoern A. Zeeb 
28836b4cac81SBjoern A. Zeeb 	/* XXX-BZ remove from driver, ... */
28846b4cac81SBjoern A. Zeeb 	IMPROVE();
28856b4cac81SBjoern A. Zeeb 
28866b4cac81SBjoern A. Zeeb 	if (lhw->ic_node_cleanup != NULL)
28876b4cac81SBjoern A. Zeeb 		lhw->ic_node_cleanup(ni);
28886b4cac81SBjoern A. Zeeb }
28896b4cac81SBjoern A. Zeeb 
28906b4cac81SBjoern A. Zeeb static void
28916b4cac81SBjoern A. Zeeb lkpi_ic_node_free(struct ieee80211_node *ni)
28926b4cac81SBjoern A. Zeeb {
28936b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
28946b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
28956b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
28966b4cac81SBjoern A. Zeeb 
28976b4cac81SBjoern A. Zeeb 	ic = ni->ni_ic;
28986b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
28996b4cac81SBjoern A. Zeeb 	lsta = ni->ni_drv_data;
2900d9f59799SBjoern A. Zeeb 	if (lsta == NULL)
2901d9f59799SBjoern A. Zeeb 		goto out;
29026b4cac81SBjoern A. Zeeb 
29036b4cac81SBjoern A. Zeeb 	/* XXX-BZ free resources, ... */
29046b4cac81SBjoern A. Zeeb 	IMPROVE();
29056b4cac81SBjoern A. Zeeb 
29066b4cac81SBjoern A. Zeeb 	/* Flush mbufq (make sure to release ni refs!). */
29076b4cac81SBjoern A. Zeeb #ifdef __notyet__
29086b4cac81SBjoern A. Zeeb 	KASSERT(mbufq_len(&lsta->txq) == 0, ("%s: lsta %p has txq len %d != 0\n",
29096b4cac81SBjoern A. Zeeb 	    __func__, lsta, mbufq_len(&lsta->txq)));
29106b4cac81SBjoern A. Zeeb #endif
29116b4cac81SBjoern A. Zeeb 	/* Drain taskq. */
29126b4cac81SBjoern A. Zeeb 
29136b4cac81SBjoern A. Zeeb 	/* Drain sta->txq[] */
29146b4cac81SBjoern A. Zeeb 	mtx_destroy(&lsta->txq_mtx);
29156b4cac81SBjoern A. Zeeb 
29166b4cac81SBjoern A. Zeeb 	/* Remove lsta if added_to_drv. */
2917e24e8103SBjoern A. Zeeb 
29186b4cac81SBjoern A. Zeeb 	/* Remove lsta from vif */
2919e24e8103SBjoern A. Zeeb 	/* Remove ref from lsta node... */
2920d9f59799SBjoern A. Zeeb 	/* Free lsta. */
2921e24e8103SBjoern A. Zeeb 	lkpi_lsta_remove(lsta, VAP_TO_LVIF(ni->ni_vap));
2922d9f59799SBjoern A. Zeeb 
2923d9f59799SBjoern A. Zeeb out:
29246b4cac81SBjoern A. Zeeb 	if (lhw->ic_node_free != NULL)
29256b4cac81SBjoern A. Zeeb 		lhw->ic_node_free(ni);
29266b4cac81SBjoern A. Zeeb }
29276b4cac81SBjoern A. Zeeb 
29286b4cac81SBjoern A. Zeeb static int
29296b4cac81SBjoern A. Zeeb lkpi_ic_raw_xmit(struct ieee80211_node *ni, struct mbuf *m,
29306b4cac81SBjoern A. Zeeb         const struct ieee80211_bpf_params *params __unused)
29316b4cac81SBjoern A. Zeeb {
29326b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
29336b4cac81SBjoern A. Zeeb 
29346b4cac81SBjoern A. Zeeb 	lsta = ni->ni_drv_data;
29356b4cac81SBjoern A. Zeeb 
29366b4cac81SBjoern A. Zeeb 	/* Queue the packet and enqueue the task to handle it. */
29376b4cac81SBjoern A. Zeeb 	LKPI_80211_LSTA_LOCK(lsta);
29386b4cac81SBjoern A. Zeeb 	mbufq_enqueue(&lsta->txq, m);
29396b4cac81SBjoern A. Zeeb 	LKPI_80211_LSTA_UNLOCK(lsta);
29406b4cac81SBjoern A. Zeeb 
29419d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
29429d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_TX)
29436b4cac81SBjoern A. Zeeb 		printf("%s:%d lsta %p ni %p %6D mbuf_qlen %d\n",
29446b4cac81SBjoern A. Zeeb 		    __func__, __LINE__, lsta, ni, ni->ni_macaddr, ":",
29456b4cac81SBjoern A. Zeeb 		    mbufq_len(&lsta->txq));
29469d9ba2b7SBjoern A. Zeeb #endif
29476b4cac81SBjoern A. Zeeb 
29486b4cac81SBjoern A. Zeeb 	taskqueue_enqueue(taskqueue_thread, &lsta->txq_task);
29496b4cac81SBjoern A. Zeeb 	return (0);
29506b4cac81SBjoern A. Zeeb }
29516b4cac81SBjoern A. Zeeb 
29526b4cac81SBjoern A. Zeeb static void
29536b4cac81SBjoern A. Zeeb lkpi_80211_txq_tx_one(struct lkpi_sta *lsta, struct mbuf *m)
29546b4cac81SBjoern A. Zeeb {
29556b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
2956b35f6cd0SBjoern A. Zeeb #ifndef LKPI_80211_HW_CRYPTO
29576b4cac81SBjoern A. Zeeb 	struct ieee80211_frame *wh;
2958b35f6cd0SBjoern A. Zeeb #endif
29596b4cac81SBjoern A. Zeeb 	struct ieee80211_key *k;
29606b4cac81SBjoern A. Zeeb 	struct sk_buff *skb;
29616b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
29626b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
29636b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
29646b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
29656b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
29666b4cac81SBjoern A. Zeeb 	struct ieee80211_channel *c;
29676b4cac81SBjoern A. Zeeb 	struct ieee80211_tx_control control;
29686b4cac81SBjoern A. Zeeb 	struct ieee80211_tx_info *info;
29696b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
29706b4cac81SBjoern A. Zeeb 	void *buf;
29716b4cac81SBjoern A. Zeeb 	int ac;
29726b4cac81SBjoern A. Zeeb 
29736b4cac81SBjoern A. Zeeb 	M_ASSERTPKTHDR(m);
29746b4cac81SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
29759d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_TX_DUMP)
29766b4cac81SBjoern A. Zeeb 		hexdump(mtod(m, const void *), m->m_len, "RAW TX (plain) ", 0);
29776b4cac81SBjoern A. Zeeb #endif
29786b4cac81SBjoern A. Zeeb 
29796b4cac81SBjoern A. Zeeb 	ni = lsta->ni;
2980b35f6cd0SBjoern A. Zeeb 	k = NULL;
2981b35f6cd0SBjoern A. Zeeb #ifndef LKPI_80211_HW_CRYPTO
29826b4cac81SBjoern A. Zeeb 	/* Encrypt the frame if need be; XXX-BZ info->control.hw_key. */
29836b4cac81SBjoern A. Zeeb 	wh = mtod(m, struct ieee80211_frame *);
29846b4cac81SBjoern A. Zeeb 	if (wh->i_fc[1] & IEEE80211_FC1_PROTECTED) {
29856b4cac81SBjoern A. Zeeb 		/* Retrieve key for TX && do software encryption. */
29866b4cac81SBjoern A. Zeeb 		k = ieee80211_crypto_encap(ni, m);
29876b4cac81SBjoern A. Zeeb 		if (k == NULL) {
29886b4cac81SBjoern A. Zeeb 			ieee80211_free_node(ni);
29896b4cac81SBjoern A. Zeeb 			m_freem(m);
29906b4cac81SBjoern A. Zeeb 			return;
29916b4cac81SBjoern A. Zeeb 		}
29926b4cac81SBjoern A. Zeeb 	}
29936b4cac81SBjoern A. Zeeb #endif
29946b4cac81SBjoern A. Zeeb 
29956b4cac81SBjoern A. Zeeb 	ic = ni->ni_ic;
29966b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
29976b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
29986b4cac81SBjoern A. Zeeb 	c = ni->ni_chan;
29996b4cac81SBjoern A. Zeeb 
30006b4cac81SBjoern A. Zeeb 	if (ieee80211_radiotap_active_vap(ni->ni_vap)) {
30016b4cac81SBjoern A. Zeeb 		struct lkpi_radiotap_tx_hdr *rtap;
30026b4cac81SBjoern A. Zeeb 
30036b4cac81SBjoern A. Zeeb 		rtap = &lhw->rtap_tx;
30046b4cac81SBjoern A. Zeeb 		rtap->wt_flags = 0;
30056b4cac81SBjoern A. Zeeb 		if (k != NULL)
30066b4cac81SBjoern A. Zeeb 			rtap->wt_flags |= IEEE80211_RADIOTAP_F_WEP;
30076b4cac81SBjoern A. Zeeb 		if (m->m_flags & M_FRAG)
30086b4cac81SBjoern A. Zeeb 			rtap->wt_flags |= IEEE80211_RADIOTAP_F_FRAG;
30096b4cac81SBjoern A. Zeeb 		IMPROVE();
30106b4cac81SBjoern A. Zeeb 		rtap->wt_rate = 0;
30116b4cac81SBjoern A. Zeeb 		if (c != NULL && c != IEEE80211_CHAN_ANYC) {
30126b4cac81SBjoern A. Zeeb 			rtap->wt_chan_freq = htole16(c->ic_freq);
30136b4cac81SBjoern A. Zeeb 			rtap->wt_chan_flags = htole16(c->ic_flags);
30146b4cac81SBjoern A. Zeeb 		}
30156b4cac81SBjoern A. Zeeb 
30166b4cac81SBjoern A. Zeeb 		ieee80211_radiotap_tx(ni->ni_vap, m);
30176b4cac81SBjoern A. Zeeb 	}
30186b4cac81SBjoern A. Zeeb 
30196b4cac81SBjoern A. Zeeb 	/*
30206b4cac81SBjoern A. Zeeb 	 * net80211 should handle hw->extra_tx_headroom.
30216b4cac81SBjoern A. Zeeb 	 * Though for as long as we are copying we don't mind.
30223d09d310SBjoern A. Zeeb 	 * XXX-BZ rtw88 asks for too much headroom for ipv6+tcp:
30233d09d310SBjoern A. Zeeb 	 * https://lists.freebsd.org/archives/freebsd-transport/2022-February/000012.html
30246b4cac81SBjoern A. Zeeb 	 */
30256b4cac81SBjoern A. Zeeb 	skb = dev_alloc_skb(hw->extra_tx_headroom + m->m_pkthdr.len);
30266b4cac81SBjoern A. Zeeb 	if (skb == NULL) {
30276b4cac81SBjoern A. Zeeb 		printf("XXX ERROR %s: skb alloc failed\n", __func__);
30286b4cac81SBjoern A. Zeeb 		ieee80211_free_node(ni);
30296b4cac81SBjoern A. Zeeb 		m_freem(m);
30306b4cac81SBjoern A. Zeeb 		return;
30316b4cac81SBjoern A. Zeeb 	}
30326b4cac81SBjoern A. Zeeb 	skb_reserve(skb, hw->extra_tx_headroom);
30336b4cac81SBjoern A. Zeeb 
30346b4cac81SBjoern A. Zeeb 	/* XXX-BZ we need a SKB version understanding mbuf. */
30356b4cac81SBjoern A. Zeeb 	/* Save the mbuf for ieee80211_tx_complete(). */
30366b4cac81SBjoern A. Zeeb 	skb->m_free_func = lkpi_ieee80211_free_skb_mbuf;
30376b4cac81SBjoern A. Zeeb 	skb->m = m;
30386b4cac81SBjoern A. Zeeb #if 0
30396b4cac81SBjoern A. Zeeb 	skb_put_data(skb, m->m_data, m->m_pkthdr.len);
30406b4cac81SBjoern A. Zeeb #else
30416b4cac81SBjoern A. Zeeb 	buf = skb_put(skb, m->m_pkthdr.len);
30426b4cac81SBjoern A. Zeeb 	m_copydata(m, 0, m->m_pkthdr.len, buf);
30436b4cac81SBjoern A. Zeeb #endif
30446b4cac81SBjoern A. Zeeb 	/* Save the ni. */
30456b4cac81SBjoern A. Zeeb 	m->m_pkthdr.PH_loc.ptr = ni;
30466b4cac81SBjoern A. Zeeb 
30476b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(ni->ni_vap);
30486b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
30496b4cac81SBjoern A. Zeeb 
30506b4cac81SBjoern A. Zeeb 	/* XXX-BZ review this at some point [4] vs. [8] vs. [16](TID). */
30516b4cac81SBjoern A. Zeeb 	ac = M_WME_GETAC(m);
30526b4cac81SBjoern A. Zeeb 	skb->priority = WME_AC_TO_TID(ac);
30536b4cac81SBjoern A. Zeeb 	ac = lkpi_ac_net_to_l80211(ac);
30546b4cac81SBjoern A. Zeeb 	skb_set_queue_mapping(skb, ac);
30556b4cac81SBjoern A. Zeeb 
30566b4cac81SBjoern A. Zeeb 	info = IEEE80211_SKB_CB(skb);
30576b4cac81SBjoern A. Zeeb 	info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
30586b4cac81SBjoern A. Zeeb 	/* Slight delay; probably only happens on scanning so fine? */
30596b4cac81SBjoern A. Zeeb 	if (c == NULL || c == IEEE80211_CHAN_ANYC)
30606b4cac81SBjoern A. Zeeb 		c = ic->ic_curchan;
30616b4cac81SBjoern A. Zeeb 	info->band = lkpi_net80211_chan_to_nl80211_band(c);
30626b4cac81SBjoern A. Zeeb 	info->hw_queue = ac;		/* XXX-BZ is this correct? */
30636b4cac81SBjoern A. Zeeb 	if (m->m_flags & M_EAPOL)
30646b4cac81SBjoern A. Zeeb 		info->control.flags |= IEEE80211_TX_CTRL_PORT_CTRL_PROTO;
30656b4cac81SBjoern A. Zeeb 	info->control.vif = vif;
30666b4cac81SBjoern A. Zeeb 	/* XXX-BZ info->control.rates */
30676b4cac81SBjoern A. Zeeb 
30686b4cac81SBjoern A. Zeeb 	lsta = lkpi_find_lsta_by_ni(lvif, ni);
30696b4cac81SBjoern A. Zeeb 	if (lsta != NULL) {
30706b4cac81SBjoern A. Zeeb 		sta = LSTA_TO_STA(lsta);
3071b35f6cd0SBjoern A. Zeeb #ifdef LKPI_80211_HW_CRYPTO
30726b4cac81SBjoern A. Zeeb 		info->control.hw_key = lsta->kc;
30736b4cac81SBjoern A. Zeeb #endif
30746b4cac81SBjoern A. Zeeb 	} else {
30756b4cac81SBjoern A. Zeeb 		sta = NULL;
30766b4cac81SBjoern A. Zeeb 	}
30776b4cac81SBjoern A. Zeeb 
30786b4cac81SBjoern A. Zeeb 	IMPROVE();
30796b4cac81SBjoern A. Zeeb 
30806b4cac81SBjoern A. Zeeb 	if (sta != NULL) {
30816b4cac81SBjoern A. Zeeb 		struct lkpi_txq *ltxq;
3082d0d29110SBjoern A. Zeeb 		struct ieee80211_hdr *hdr;
30836b4cac81SBjoern A. Zeeb 
3084d0d29110SBjoern A. Zeeb 		hdr = (void *)skb->data;
3085d0d29110SBjoern A. Zeeb 		if (lsta->added_to_drv &&
3086d0d29110SBjoern A. Zeeb 		    !ieee80211_is_data_present(hdr->frame_control)) {
3087d0d29110SBjoern A. Zeeb 			if (sta->txq[IEEE80211_NUM_TIDS] != NULL)
3088d0d29110SBjoern A. Zeeb 				ltxq = TXQ_TO_LTXQ(sta->txq[IEEE80211_NUM_TIDS]);
3089d0d29110SBjoern A. Zeeb 			else
3090d0d29110SBjoern A. Zeeb 				goto ops_tx;
3091d0d29110SBjoern A. Zeeb 		} else if (lsta->added_to_drv) {
30926b4cac81SBjoern A. Zeeb 			ltxq = TXQ_TO_LTXQ(sta->txq[ac]);	/* XXX-BZ re-check */
3093d0d29110SBjoern A. Zeeb 		} else
3094d0d29110SBjoern A. Zeeb 			goto ops_tx;
3095d0d29110SBjoern A. Zeeb 		KASSERT(ltxq != NULL, ("%s: lsta %p sta %p m %p skb %p "
3096d0d29110SBjoern A. Zeeb 		    "ltxq %p != NULL\n", __func__, lsta, sta, m, skb, ltxq));
3097d0d29110SBjoern A. Zeeb 
30986b4cac81SBjoern A. Zeeb 		/*
30996b4cac81SBjoern A. Zeeb 		 * We currently do not use queues but do direct TX.
31006b4cac81SBjoern A. Zeeb 		 * The exception to the rule is initial packets, as we cannot
31016b4cac81SBjoern A. Zeeb 		 * TX until queues are allocated (at least for iwlwifi).
31026b4cac81SBjoern A. Zeeb 		 * So we wake_tx_queue in newstate and register any dequeue
31036b4cac81SBjoern A. Zeeb 		 * calls.  In the time until then we queue packets and
31046b4cac81SBjoern A. Zeeb 		 * let the driver deal with them.
31056b4cac81SBjoern A. Zeeb 		 */
3106d0d29110SBjoern A. Zeeb #if 0
31076b4cac81SBjoern A. Zeeb 		if (!ltxq->seen_dequeue) {
31086b4cac81SBjoern A. Zeeb 
31096b4cac81SBjoern A. Zeeb 			/* Prevent an ordering problem, likely other issues. */
31106b4cac81SBjoern A. Zeeb 			while (!skb_queue_empty(&ltxq->skbq)) {
31116b4cac81SBjoern A. Zeeb 				struct sk_buff *skb2;
31126b4cac81SBjoern A. Zeeb 
31136b4cac81SBjoern A. Zeeb 				skb2 = skb_dequeue(&ltxq->skbq);
31146b4cac81SBjoern A. Zeeb 				if (skb2 != NULL) {
31156b4cac81SBjoern A. Zeeb 					memset(&control, 0, sizeof(control));
31166b4cac81SBjoern A. Zeeb 					control.sta = sta;
31176b4cac81SBjoern A. Zeeb 					lkpi_80211_mo_tx(hw, &control, skb2);
31186b4cac81SBjoern A. Zeeb 				}
31196b4cac81SBjoern A. Zeeb 			}
31206b4cac81SBjoern A. Zeeb 			goto ops_tx;
31216b4cac81SBjoern A. Zeeb 		}
31226b4cac81SBjoern A. Zeeb 		if (0 && ltxq->seen_dequeue && skb_queue_empty(&ltxq->skbq))
31236b4cac81SBjoern A. Zeeb 			goto ops_tx;
3124d0d29110SBjoern A. Zeeb #endif
31256b4cac81SBjoern A. Zeeb 
31266b4cac81SBjoern A. Zeeb 		skb_queue_tail(&ltxq->skbq, skb);
31279d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
31289d9ba2b7SBjoern A. Zeeb 		if (linuxkpi_debug_80211 & D80211_TRACE_TX)
3129d0d29110SBjoern A. Zeeb 			printf("%s:%d mo_wake_tx_queue :: %d %u lsta %p sta %p "
3130d0d29110SBjoern A. Zeeb 			    "ni %p %6D skb %p lxtq %p { qlen %u, ac %d tid %u } "
3131d0d29110SBjoern A. Zeeb 			    "WAKE_TX_Q ac %d prio %u qmap %u\n",
3132fb6eaf74SBjoern A. Zeeb 			    __func__, __LINE__,
3133d0d29110SBjoern A. Zeeb 			    curthread->td_tid, (unsigned int)ticks,
3134d0d29110SBjoern A. Zeeb 			    lsta, sta, ni, ni->ni_macaddr, ":", skb, ltxq,
3135d0d29110SBjoern A. Zeeb 			    skb_queue_len(&ltxq->skbq), ltxq->txq.ac,
3136d0d29110SBjoern A. Zeeb 			    ltxq->txq.tid, ac, skb->priority, skb->qmap);
31379d9ba2b7SBjoern A. Zeeb #endif
3138d0d29110SBjoern A. Zeeb 		lkpi_80211_mo_wake_tx_queue(hw, &ltxq->txq);
31396b4cac81SBjoern A. Zeeb 		return;
31406b4cac81SBjoern A. Zeeb 	}
31416b4cac81SBjoern A. Zeeb 
31426b4cac81SBjoern A. Zeeb ops_tx:
31439d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
31449d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_TX)
3145d0d29110SBjoern A. Zeeb 		printf("%s:%d mo_tx :: lsta %p sta %p ni %p %6D skb %p "
3146d0d29110SBjoern A. Zeeb 		    "TX ac %d prio %u qmap %u\n",
31476b4cac81SBjoern A. Zeeb 		    __func__, __LINE__, lsta, sta, ni, ni->ni_macaddr, ":",
31486b4cac81SBjoern A. Zeeb 		    skb, ac, skb->priority, skb->qmap);
31499d9ba2b7SBjoern A. Zeeb #endif
31506b4cac81SBjoern A. Zeeb 	memset(&control, 0, sizeof(control));
31516b4cac81SBjoern A. Zeeb 	control.sta = sta;
31526b4cac81SBjoern A. Zeeb 
31536b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_tx(hw, &control, skb);
31546b4cac81SBjoern A. Zeeb 	return;
31556b4cac81SBjoern A. Zeeb }
31566b4cac81SBjoern A. Zeeb 
31576b4cac81SBjoern A. Zeeb static void
31586b4cac81SBjoern A. Zeeb lkpi_80211_txq_task(void *ctx, int pending)
31596b4cac81SBjoern A. Zeeb {
31606b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
31616b4cac81SBjoern A. Zeeb 	struct mbufq mq;
31626b4cac81SBjoern A. Zeeb 	struct mbuf *m;
31636b4cac81SBjoern A. Zeeb 
31646b4cac81SBjoern A. Zeeb 	lsta = ctx;
31656b4cac81SBjoern A. Zeeb 
31669d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
31679d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_TX)
31686b4cac81SBjoern A. Zeeb 		printf("%s:%d lsta %p ni %p %6D pending %d mbuf_qlen %d\n",
31699d9ba2b7SBjoern A. Zeeb 		    __func__, __LINE__, lsta, lsta->ni, lsta->ni->ni_macaddr, ":",
31706b4cac81SBjoern A. Zeeb 		    pending, mbufq_len(&lsta->txq));
31719d9ba2b7SBjoern A. Zeeb #endif
31726b4cac81SBjoern A. Zeeb 
31736b4cac81SBjoern A. Zeeb 	mbufq_init(&mq, IFQ_MAXLEN);
31746b4cac81SBjoern A. Zeeb 
31756b4cac81SBjoern A. Zeeb 	LKPI_80211_LSTA_LOCK(lsta);
31766b4cac81SBjoern A. Zeeb 	mbufq_concat(&mq, &lsta->txq);
31776b4cac81SBjoern A. Zeeb 	LKPI_80211_LSTA_UNLOCK(lsta);
31786b4cac81SBjoern A. Zeeb 
31796b4cac81SBjoern A. Zeeb 	m = mbufq_dequeue(&mq);
31806b4cac81SBjoern A. Zeeb 	while (m != NULL) {
31816b4cac81SBjoern A. Zeeb 		lkpi_80211_txq_tx_one(lsta, m);
31826b4cac81SBjoern A. Zeeb 		m = mbufq_dequeue(&mq);
31836b4cac81SBjoern A. Zeeb 	}
31846b4cac81SBjoern A. Zeeb }
31856b4cac81SBjoern A. Zeeb 
31866b4cac81SBjoern A. Zeeb static int
31876b4cac81SBjoern A. Zeeb lkpi_ic_transmit(struct ieee80211com *ic, struct mbuf *m)
31886b4cac81SBjoern A. Zeeb {
31896b4cac81SBjoern A. Zeeb 
31906b4cac81SBjoern A. Zeeb 	/* XXX TODO */
31916b4cac81SBjoern A. Zeeb 	IMPROVE();
31926b4cac81SBjoern A. Zeeb 
31936b4cac81SBjoern A. Zeeb 	/* Quick and dirty cheating hack. */
31946b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
31956b4cac81SBjoern A. Zeeb 
31966b4cac81SBjoern A. Zeeb 	ni = (struct ieee80211_node *)m->m_pkthdr.rcvif;
31976b4cac81SBjoern A. Zeeb 	return (lkpi_ic_raw_xmit(ni, m, NULL));
31986b4cac81SBjoern A. Zeeb }
31996b4cac81SBjoern A. Zeeb 
32006b4cac81SBjoern A. Zeeb static void
32016b4cac81SBjoern A. Zeeb lkpi_ic_getradiocaps(struct ieee80211com *ic, int maxchan,
32026b4cac81SBjoern A. Zeeb     int *n, struct ieee80211_channel *c)
32036b4cac81SBjoern A. Zeeb {
32046b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
32056b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
32066b4cac81SBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel *channels;
32076b4cac81SBjoern A. Zeeb 	uint8_t bands[IEEE80211_MODE_BYTES];
32086b4cac81SBjoern A. Zeeb 	int chan_flags, error, i, nchans;
32096b4cac81SBjoern A. Zeeb 
32106b4cac81SBjoern A. Zeeb 	/* Channels */
32116b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
32126b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
32136b4cac81SBjoern A. Zeeb 
32146b4cac81SBjoern A. Zeeb 	/* NL80211_BAND_2GHZ */
32156b4cac81SBjoern A. Zeeb 	nchans = 0;
32166b4cac81SBjoern A. Zeeb 	if (hw->wiphy->bands[NL80211_BAND_2GHZ] != NULL)
32176b4cac81SBjoern A. Zeeb 		nchans = hw->wiphy->bands[NL80211_BAND_2GHZ]->n_channels;
32186b4cac81SBjoern A. Zeeb 	if (nchans > 0) {
32196b4cac81SBjoern A. Zeeb 		memset(bands, 0, sizeof(bands));
32206b4cac81SBjoern A. Zeeb 		chan_flags = 0;
32216b4cac81SBjoern A. Zeeb 		setbit(bands, IEEE80211_MODE_11B);
32226b4cac81SBjoern A. Zeeb 		/* XXX-BZ unclear how to check for 11g. */
32236b4cac81SBjoern A. Zeeb 		setbit(bands, IEEE80211_MODE_11G);
32246b4cac81SBjoern A. Zeeb #ifdef __notyet__
32256b4cac81SBjoern A. Zeeb 		if (hw->wiphy->bands[NL80211_BAND_2GHZ]->ht_cap.ht_supported) {
32266b4cac81SBjoern A. Zeeb 			setbit(bands, IEEE80211_MODE_11NG);
32276b4cac81SBjoern A. Zeeb 			chan_flags |= NET80211_CBW_FLAG_HT40;
32286b4cac81SBjoern A. Zeeb 		}
32296b4cac81SBjoern A. Zeeb #endif
32306b4cac81SBjoern A. Zeeb 
32316b4cac81SBjoern A. Zeeb 		channels = hw->wiphy->bands[NL80211_BAND_2GHZ]->channels;
3232cee56e77SBjoern A. Zeeb 		for (i = 0; i < nchans && *n < maxchan; i++) {
32336b4cac81SBjoern A. Zeeb 			uint32_t nflags = 0;
32346b4cac81SBjoern A. Zeeb 			int cflags = chan_flags;
32356b4cac81SBjoern A. Zeeb 
32366b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_DISABLED) {
32376b4cac81SBjoern A. Zeeb 				printf("%s: %s: Skipping disabled chan "
32386b4cac81SBjoern A. Zeeb 				    "[%u/%u/%#x]\n", ic->ic_name, __func__,
32396b4cac81SBjoern A. Zeeb 				    channels[i].hw_value,
32406b4cac81SBjoern A. Zeeb 				    channels[i].center_freq, channels[i].flags);
32416b4cac81SBjoern A. Zeeb 				continue;
32426b4cac81SBjoern A. Zeeb 			}
32436b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_NO_IR)
32446b4cac81SBjoern A. Zeeb 				nflags |= (IEEE80211_CHAN_NOADHOC|IEEE80211_CHAN_PASSIVE);
32456b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_RADAR)
32466b4cac81SBjoern A. Zeeb 				nflags |= IEEE80211_CHAN_DFS;
32476b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_NO_160MHZ)
32486b4cac81SBjoern A. Zeeb 				cflags &= ~(NET80211_CBW_FLAG_VHT160|NET80211_CBW_FLAG_VHT80P80);
32496b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_NO_80MHZ)
32506b4cac81SBjoern A. Zeeb 				cflags &= ~NET80211_CBW_FLAG_VHT80;
32516b4cac81SBjoern A. Zeeb 			/* XXX how to map the remaining enum ieee80211_channel_flags? */
32526b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_NO_HT40)
32536b4cac81SBjoern A. Zeeb 				cflags &= ~NET80211_CBW_FLAG_HT40;
32546b4cac81SBjoern A. Zeeb 
32556b4cac81SBjoern A. Zeeb 			error = ieee80211_add_channel_cbw(c, maxchan, n,
32566b4cac81SBjoern A. Zeeb 			    channels[i].hw_value, channels[i].center_freq,
32576b4cac81SBjoern A. Zeeb 			    channels[i].max_power,
32586b4cac81SBjoern A. Zeeb 			    nflags, bands, chan_flags);
3259cee56e77SBjoern A. Zeeb 			/* net80211::ENOBUFS: *n >= maxchans */
3260cee56e77SBjoern A. Zeeb 			if (error != 0 && error != ENOBUFS)
32616b4cac81SBjoern A. Zeeb 				printf("%s: %s: Adding chan %u/%u/%#x/%#x/%#x/%#x "
32626b4cac81SBjoern A. Zeeb 				    "returned error %d\n", ic->ic_name,
32636b4cac81SBjoern A. Zeeb 				    __func__, channels[i].hw_value,
32646b4cac81SBjoern A. Zeeb 				    channels[i].center_freq, channels[i].flags,
32656b4cac81SBjoern A. Zeeb 				    nflags, chan_flags, cflags, error);
3266cee56e77SBjoern A. Zeeb 			if (error != 0)
32676b4cac81SBjoern A. Zeeb 				break;
32686b4cac81SBjoern A. Zeeb 		}
32696b4cac81SBjoern A. Zeeb 	}
32706b4cac81SBjoern A. Zeeb 
32716b4cac81SBjoern A. Zeeb 	/* NL80211_BAND_5GHZ */
32726b4cac81SBjoern A. Zeeb 	nchans = 0;
32736b4cac81SBjoern A. Zeeb 	if (hw->wiphy->bands[NL80211_BAND_5GHZ] != NULL)
32746b4cac81SBjoern A. Zeeb 		nchans = hw->wiphy->bands[NL80211_BAND_5GHZ]->n_channels;
32756b4cac81SBjoern A. Zeeb 	if (nchans > 0) {
32766b4cac81SBjoern A. Zeeb 		memset(bands, 0, sizeof(bands));
32776b4cac81SBjoern A. Zeeb 		chan_flags = 0;
32786b4cac81SBjoern A. Zeeb 		setbit(bands, IEEE80211_MODE_11A);
32796b4cac81SBjoern A. Zeeb #ifdef __not_yet__
32806b4cac81SBjoern A. Zeeb 		if (hw->wiphy->bands[NL80211_BAND_5GHZ]->ht_cap.ht_supported) {
32816b4cac81SBjoern A. Zeeb 			setbit(bands, IEEE80211_MODE_11NA);
32826b4cac81SBjoern A. Zeeb 			chan_flags |= NET80211_CBW_FLAG_HT40;
32836b4cac81SBjoern A. Zeeb 		}
32846b4cac81SBjoern A. Zeeb 		if (hw->wiphy->bands[NL80211_BAND_5GHZ]->vht_cap.vht_supported){
32856b4cac81SBjoern A. Zeeb 
32866b4cac81SBjoern A. Zeeb 			ic->ic_flags_ext |= IEEE80211_FEXT_VHT;
32876b4cac81SBjoern A. Zeeb 			ic->ic_vhtcaps =
32886b4cac81SBjoern A. Zeeb 			    hw->wiphy->bands[NL80211_BAND_5GHZ]->vht_cap.cap;
32896b4cac81SBjoern A. Zeeb 
32906b4cac81SBjoern A. Zeeb 			setbit(bands, IEEE80211_MODE_VHT_5GHZ);
32916b4cac81SBjoern A. Zeeb 			chan_flags |= NET80211_CBW_FLAG_VHT80;
32926b4cac81SBjoern A. Zeeb 			if (IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_IS_160MHZ(
32936b4cac81SBjoern A. Zeeb 			    ic->ic_vhtcaps))
32946b4cac81SBjoern A. Zeeb 				chan_flags |= NET80211_CBW_FLAG_VHT160;
32956b4cac81SBjoern A. Zeeb 			if (IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_IS_160_80P80MHZ(
32966b4cac81SBjoern A. Zeeb 			    ic->ic_vhtcaps))
32976b4cac81SBjoern A. Zeeb 				chan_flags |= NET80211_CBW_FLAG_VHT80P80;
32986b4cac81SBjoern A. Zeeb 		}
32996b4cac81SBjoern A. Zeeb #endif
33006b4cac81SBjoern A. Zeeb 
33016b4cac81SBjoern A. Zeeb 		channels = hw->wiphy->bands[NL80211_BAND_5GHZ]->channels;
3302cee56e77SBjoern A. Zeeb 		for (i = 0; i < nchans && *n < maxchan; i++) {
33036b4cac81SBjoern A. Zeeb 			uint32_t nflags = 0;
33046b4cac81SBjoern A. Zeeb 			int cflags = chan_flags;
33056b4cac81SBjoern A. Zeeb 
33066b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_DISABLED) {
33076b4cac81SBjoern A. Zeeb 				printf("%s: %s: Skipping disabled chan "
33086b4cac81SBjoern A. Zeeb 				    "[%u/%u/%#x]\n", ic->ic_name, __func__,
33096b4cac81SBjoern A. Zeeb 				    channels[i].hw_value,
33106b4cac81SBjoern A. Zeeb 				    channels[i].center_freq, channels[i].flags);
33116b4cac81SBjoern A. Zeeb 				continue;
33126b4cac81SBjoern A. Zeeb 			}
33136b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_NO_IR)
33146b4cac81SBjoern A. Zeeb 				nflags |= (IEEE80211_CHAN_NOADHOC|IEEE80211_CHAN_PASSIVE);
33156b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_RADAR)
33166b4cac81SBjoern A. Zeeb 				nflags |= IEEE80211_CHAN_DFS;
33176b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_NO_160MHZ)
33186b4cac81SBjoern A. Zeeb 				cflags &= ~(NET80211_CBW_FLAG_VHT160|NET80211_CBW_FLAG_VHT80P80);
33196b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_NO_80MHZ)
33206b4cac81SBjoern A. Zeeb 				cflags &= ~NET80211_CBW_FLAG_VHT80;
33216b4cac81SBjoern A. Zeeb 			/* XXX hwo to map the remaining enum ieee80211_channel_flags? */
33226b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_NO_HT40)
33236b4cac81SBjoern A. Zeeb 				cflags &= ~NET80211_CBW_FLAG_HT40;
33246b4cac81SBjoern A. Zeeb 
33256b4cac81SBjoern A. Zeeb 			error = ieee80211_add_channel_cbw(c, maxchan, n,
33266b4cac81SBjoern A. Zeeb 			    channels[i].hw_value, channels[i].center_freq,
33276b4cac81SBjoern A. Zeeb 			    channels[i].max_power,
33286b4cac81SBjoern A. Zeeb 			    nflags, bands, chan_flags);
3329cee56e77SBjoern A. Zeeb 			/* net80211::ENOBUFS: *n >= maxchans */
3330cee56e77SBjoern A. Zeeb 			if (error != 0 && error != ENOBUFS)
33316b4cac81SBjoern A. Zeeb 				printf("%s: %s: Adding chan %u/%u/%#x/%#x/%#x/%#x "
33326b4cac81SBjoern A. Zeeb 				    "returned error %d\n", ic->ic_name,
33336b4cac81SBjoern A. Zeeb 				    __func__, channels[i].hw_value,
33346b4cac81SBjoern A. Zeeb 				    channels[i].center_freq, channels[i].flags,
33356b4cac81SBjoern A. Zeeb 				    nflags, chan_flags, cflags, error);
3336cee56e77SBjoern A. Zeeb 			if (error != 0)
33376b4cac81SBjoern A. Zeeb 				break;
33386b4cac81SBjoern A. Zeeb 		}
33396b4cac81SBjoern A. Zeeb 	}
33406b4cac81SBjoern A. Zeeb }
33416b4cac81SBjoern A. Zeeb 
33426b4cac81SBjoern A. Zeeb static void *
33436b4cac81SBjoern A. Zeeb lkpi_ieee80211_ifalloc(void)
33446b4cac81SBjoern A. Zeeb {
33456b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
33466b4cac81SBjoern A. Zeeb 
33476b4cac81SBjoern A. Zeeb 	ic = malloc(sizeof(*ic), M_LKPI80211, M_WAITOK | M_ZERO);
33486b4cac81SBjoern A. Zeeb 	if (ic == NULL)
33496b4cac81SBjoern A. Zeeb 		return (NULL);
33506b4cac81SBjoern A. Zeeb 
33516b4cac81SBjoern A. Zeeb 	/* Setting these happens later when we have device information. */
33526b4cac81SBjoern A. Zeeb 	ic->ic_softc = NULL;
33536b4cac81SBjoern A. Zeeb 	ic->ic_name = "linuxkpi";
33546b4cac81SBjoern A. Zeeb 
33556b4cac81SBjoern A. Zeeb 	return (ic);
33566b4cac81SBjoern A. Zeeb }
33576b4cac81SBjoern A. Zeeb 
33586b4cac81SBjoern A. Zeeb struct ieee80211_hw *
33596b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_alloc_hw(size_t priv_len, const struct ieee80211_ops *ops)
33606b4cac81SBjoern A. Zeeb {
33616b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
33626b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
33636b4cac81SBjoern A. Zeeb 	struct wiphy *wiphy;
33646b4cac81SBjoern A. Zeeb 
33656b4cac81SBjoern A. Zeeb 	/* Get us and the driver data also allocated. */
33666b4cac81SBjoern A. Zeeb 	wiphy = wiphy_new(&linuxkpi_mac80211cfgops, sizeof(*lhw) + priv_len);
33676b4cac81SBjoern A. Zeeb 	if (wiphy == NULL)
33686b4cac81SBjoern A. Zeeb 		return (NULL);
33696b4cac81SBjoern A. Zeeb 
33706b4cac81SBjoern A. Zeeb 	lhw = wiphy_priv(wiphy);
33716b4cac81SBjoern A. Zeeb 	lhw->ops = ops;
3372652e22d3SBjoern A. Zeeb 
33736b4cac81SBjoern A. Zeeb 	mtx_init(&lhw->mtx, "lhw", NULL, MTX_DEF | MTX_RECURSE);
33748891c455SBjoern A. Zeeb 	sx_init_flags(&lhw->lvif_sx, "lhw-lvif", SX_RECURSE | SX_DUPOK);
33756b4cac81SBjoern A. Zeeb 	TAILQ_INIT(&lhw->lvif_head);
33766b4cac81SBjoern A. Zeeb 
33776b4cac81SBjoern A. Zeeb 	/*
33786b4cac81SBjoern A. Zeeb 	 * XXX-BZ TODO make sure there is a "_null" function to all ops
33796b4cac81SBjoern A. Zeeb 	 * not initialized.
33806b4cac81SBjoern A. Zeeb 	 */
33816b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
33826b4cac81SBjoern A. Zeeb 	hw->wiphy = wiphy;
3383086be6a8SBjoern A. Zeeb 	hw->conf.flags |= IEEE80211_CONF_IDLE;
33846b4cac81SBjoern A. Zeeb 	hw->priv = (void *)(lhw + 1);
33856b4cac81SBjoern A. Zeeb 
33866b4cac81SBjoern A. Zeeb 	/* BSD Specific. */
33876b4cac81SBjoern A. Zeeb 	lhw->ic = lkpi_ieee80211_ifalloc();
33886b4cac81SBjoern A. Zeeb 	if (lhw->ic == NULL) {
33896b4cac81SBjoern A. Zeeb 		ieee80211_free_hw(hw);
33906b4cac81SBjoern A. Zeeb 		return (NULL);
33916b4cac81SBjoern A. Zeeb 	}
33926b4cac81SBjoern A. Zeeb 
33936b4cac81SBjoern A. Zeeb 	IMPROVE();
33946b4cac81SBjoern A. Zeeb 
33956b4cac81SBjoern A. Zeeb 	return (hw);
33966b4cac81SBjoern A. Zeeb }
33976b4cac81SBjoern A. Zeeb 
33986b4cac81SBjoern A. Zeeb void
33996b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_iffree(struct ieee80211_hw *hw)
34006b4cac81SBjoern A. Zeeb {
34016b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
34026b4cac81SBjoern A. Zeeb 
34036b4cac81SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
34046b4cac81SBjoern A. Zeeb 	free(lhw->ic, M_LKPI80211);
34056b4cac81SBjoern A. Zeeb 	lhw->ic = NULL;
34066b4cac81SBjoern A. Zeeb 
34076b4cac81SBjoern A. Zeeb 	/* Cleanup more of lhw here or in wiphy_free()? */
34088891c455SBjoern A. Zeeb 	sx_destroy(&lhw->lvif_sx);
34096b4cac81SBjoern A. Zeeb 	mtx_destroy(&lhw->mtx);
34106b4cac81SBjoern A. Zeeb 	IMPROVE();
34116b4cac81SBjoern A. Zeeb }
34126b4cac81SBjoern A. Zeeb 
34136b4cac81SBjoern A. Zeeb void
34146b4cac81SBjoern A. Zeeb linuxkpi_set_ieee80211_dev(struct ieee80211_hw *hw, char *name)
34156b4cac81SBjoern A. Zeeb {
34166b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
34176b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
34186b4cac81SBjoern A. Zeeb 
34196b4cac81SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
34206b4cac81SBjoern A. Zeeb 	ic = lhw->ic;
34216b4cac81SBjoern A. Zeeb 
34226b4cac81SBjoern A. Zeeb 	/* Now set a proper name before ieee80211_ifattach(). */
34236b4cac81SBjoern A. Zeeb 	ic->ic_softc = lhw;
34246b4cac81SBjoern A. Zeeb 	ic->ic_name = name;
34256b4cac81SBjoern A. Zeeb 
34266b4cac81SBjoern A. Zeeb 	/* XXX-BZ do we also need to set wiphy name? */
34276b4cac81SBjoern A. Zeeb }
34286b4cac81SBjoern A. Zeeb 
34296b4cac81SBjoern A. Zeeb struct ieee80211_hw *
34306b4cac81SBjoern A. Zeeb linuxkpi_wiphy_to_ieee80211_hw(struct wiphy *wiphy)
34316b4cac81SBjoern A. Zeeb {
34326b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
34336b4cac81SBjoern A. Zeeb 
34346b4cac81SBjoern A. Zeeb 	lhw = wiphy_priv(wiphy);
34356b4cac81SBjoern A. Zeeb 	return (LHW_TO_HW(lhw));
34366b4cac81SBjoern A. Zeeb }
34376b4cac81SBjoern A. Zeeb 
34386b4cac81SBjoern A. Zeeb static void
34396b4cac81SBjoern A. Zeeb lkpi_radiotap_attach(struct lkpi_hw *lhw)
34406b4cac81SBjoern A. Zeeb {
34416b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
34426b4cac81SBjoern A. Zeeb 
34436b4cac81SBjoern A. Zeeb 	ic = lhw->ic;
34446b4cac81SBjoern A. Zeeb 	ieee80211_radiotap_attach(ic,
34456b4cac81SBjoern A. Zeeb 	    &lhw->rtap_tx.wt_ihdr, sizeof(lhw->rtap_tx),
34466b4cac81SBjoern A. Zeeb 	    LKPI_RTAP_TX_FLAGS_PRESENT,
34476b4cac81SBjoern A. Zeeb 	    &lhw->rtap_rx.wr_ihdr, sizeof(lhw->rtap_rx),
34486b4cac81SBjoern A. Zeeb 	    LKPI_RTAP_RX_FLAGS_PRESENT);
34496b4cac81SBjoern A. Zeeb }
34506b4cac81SBjoern A. Zeeb 
34512e183d99SBjoern A. Zeeb int
34526b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_ifattach(struct ieee80211_hw *hw)
34536b4cac81SBjoern A. Zeeb {
34546b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
34556b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
3456c5b96b3eSBjoern A. Zeeb 	int band, i;
34576b4cac81SBjoern A. Zeeb 
34586b4cac81SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
34596b4cac81SBjoern A. Zeeb 	ic = lhw->ic;
34606b4cac81SBjoern A. Zeeb 
3461652e22d3SBjoern A. Zeeb 	/* We do it this late as wiphy->dev should be set for the name. */
3462652e22d3SBjoern A. Zeeb 	lhw->workq = alloc_ordered_workqueue(wiphy_name(hw->wiphy), 0);
3463652e22d3SBjoern A. Zeeb 	if (lhw->workq == NULL)
3464652e22d3SBjoern A. Zeeb 		return (-EAGAIN);
3465652e22d3SBjoern A. Zeeb 
34666b4cac81SBjoern A. Zeeb 	/* XXX-BZ figure this out how they count his... */
34676b4cac81SBjoern A. Zeeb 	if (!is_zero_ether_addr(hw->wiphy->perm_addr)) {
34686b4cac81SBjoern A. Zeeb 		IEEE80211_ADDR_COPY(ic->ic_macaddr,
34696b4cac81SBjoern A. Zeeb 		    hw->wiphy->perm_addr);
34706b4cac81SBjoern A. Zeeb 	} else if (hw->wiphy->n_addresses > 0) {
34716b4cac81SBjoern A. Zeeb 		/* We take the first one. */
34726b4cac81SBjoern A. Zeeb 		IEEE80211_ADDR_COPY(ic->ic_macaddr,
34736b4cac81SBjoern A. Zeeb 		    hw->wiphy->addresses[0].addr);
34746b4cac81SBjoern A. Zeeb 	} else {
34756b4cac81SBjoern A. Zeeb 		ic_printf(ic, "%s: warning, no hardware address!\n", __func__);
34766b4cac81SBjoern A. Zeeb 	}
34776b4cac81SBjoern A. Zeeb 
34783d09d310SBjoern A. Zeeb #ifdef __not_yet__
34793d09d310SBjoern A. Zeeb 	/* See comment in lkpi_80211_txq_tx_one(). */
34806b4cac81SBjoern A. Zeeb 	ic->ic_headroom = hw->extra_tx_headroom;
34813d09d310SBjoern A. Zeeb #endif
34826b4cac81SBjoern A. Zeeb 
34836b4cac81SBjoern A. Zeeb 	ic->ic_phytype = IEEE80211_T_OFDM;	/* not only, but not used */
34846b4cac81SBjoern A. Zeeb 	ic->ic_opmode = IEEE80211_M_STA;
34856b4cac81SBjoern A. Zeeb 
34866b4cac81SBjoern A. Zeeb 	/* Set device capabilities. */
34876b4cac81SBjoern A. Zeeb 	/* XXX-BZ we need to get these from linux80211/drivers and convert. */
34886b4cac81SBjoern A. Zeeb 	ic->ic_caps =
34896b4cac81SBjoern A. Zeeb 	    IEEE80211_C_STA |
34906b4cac81SBjoern A. Zeeb 	    IEEE80211_C_MONITOR |
34916b4cac81SBjoern A. Zeeb 	    IEEE80211_C_WPA |		/* WPA/RSN */
34926b4cac81SBjoern A. Zeeb 	    IEEE80211_C_WME |
34936b4cac81SBjoern A. Zeeb #if 0
34946b4cac81SBjoern A. Zeeb 	    IEEE80211_C_PMGT |
34956b4cac81SBjoern A. Zeeb #endif
34966b4cac81SBjoern A. Zeeb 	    IEEE80211_C_SHSLOT |	/* short slot time supported */
34976b4cac81SBjoern A. Zeeb 	    IEEE80211_C_SHPREAMBLE	/* short preamble supported */
34986b4cac81SBjoern A. Zeeb 	    ;
34996b4cac81SBjoern A. Zeeb #if 0
35006b4cac81SBjoern A. Zeeb 	/* Scanning is a different kind of beast to re-work. */
35016b4cac81SBjoern A. Zeeb 	ic->ic_caps |= IEEE80211_C_BGSCAN;
35026b4cac81SBjoern A. Zeeb #endif
3503cc4e78d5SBjoern A. Zeeb 	if (lhw->ops->hw_scan) {
3504cc4e78d5SBjoern A. Zeeb 		/*
3505cc4e78d5SBjoern A. Zeeb 		 * Advertise full-offload scanning.
3506cc4e78d5SBjoern A. Zeeb 		 *
3507cc4e78d5SBjoern A. Zeeb 		 * Not limiting to SINGLE_SCAN_ON_ALL_BANDS here as otherwise
3508cc4e78d5SBjoern A. Zeeb 		 * we essentially disable hw_scan for all drivers not setting
3509cc4e78d5SBjoern A. Zeeb 		 * the flag.
3510cc4e78d5SBjoern A. Zeeb 		 */
35116b4cac81SBjoern A. Zeeb 		ic->ic_flags_ext |= IEEE80211_FEXT_SCAN_OFFLOAD;
3512*a486fbbdSBjoern A. Zeeb 		lhw->scan_flags |= LKPI_LHW_SCAN_HW;
35136b4cac81SBjoern A. Zeeb 	}
35146b4cac81SBjoern A. Zeeb 
35156b4cac81SBjoern A. Zeeb #ifdef __notyet__
35166b4cac81SBjoern A. Zeeb 	ic->ic_htcaps = IEEE80211_HTC_HT        /* HT operation */
35176b4cac81SBjoern A. Zeeb 		    | IEEE80211_HTC_AMPDU       /* A-MPDU tx/rx */
35186b4cac81SBjoern A. Zeeb 		    | IEEE80211_HTC_AMSDU       /* A-MSDU tx/rx */
35196b4cac81SBjoern A. Zeeb 		    | IEEE80211_HTCAP_MAXAMSDU_3839
35206b4cac81SBjoern A. Zeeb 						/* max A-MSDU length */
35216b4cac81SBjoern A. Zeeb 		    | IEEE80211_HTCAP_SMPS_OFF; /* SM power save off */
35226b4cac81SBjoern A. Zeeb 	ic->ic_htcaps |= IEEE80211_HTCAP_SHORTGI20;
35236b4cac81SBjoern A. Zeeb 	ic->ic_htcaps |= IEEE80211_HTCAP_CHWIDTH40 | IEEE80211_HTCAP_SHORTGI40;
35246b4cac81SBjoern A. Zeeb 	ic->ic_htcaps |= IEEE80211_HTCAP_TXSTBC;
35256b4cac81SBjoern A. Zeeb #endif
35266b4cac81SBjoern A. Zeeb 
3527527687a9SBjoern A. Zeeb 	/*
3528527687a9SBjoern A. Zeeb 	 * The wiphy variables report bitmasks of avail antennas.
3529527687a9SBjoern A. Zeeb 	 * (*get_antenna) get the current bitmask sets which can be
3530527687a9SBjoern A. Zeeb 	 * altered by (*set_antenna) for some drivers.
3531527687a9SBjoern A. Zeeb 	 * XXX-BZ will the count alone do us much good long-term in net80211?
3532527687a9SBjoern A. Zeeb 	 */
3533527687a9SBjoern A. Zeeb 	if (hw->wiphy->available_antennas_rx ||
3534527687a9SBjoern A. Zeeb 	    hw->wiphy->available_antennas_tx) {
3535527687a9SBjoern A. Zeeb 		uint32_t rxs, txs;
3536527687a9SBjoern A. Zeeb 
3537527687a9SBjoern A. Zeeb 		if (lkpi_80211_mo_get_antenna(hw, &txs, &rxs) == 0) {
3538527687a9SBjoern A. Zeeb 			ic->ic_rxstream = bitcount32(rxs);
3539527687a9SBjoern A. Zeeb 			ic->ic_txstream = bitcount32(txs);
3540527687a9SBjoern A. Zeeb 		}
3541527687a9SBjoern A. Zeeb 	}
3542527687a9SBjoern A. Zeeb 
35436b4cac81SBjoern A. Zeeb 	ic->ic_cryptocaps = 0;
3544b35f6cd0SBjoern A. Zeeb #ifdef LKPI_80211_HW_CRYPTO
35456b4cac81SBjoern A. Zeeb 	if (hw->wiphy->n_cipher_suites > 0) {
35466b4cac81SBjoern A. Zeeb 		for (i = 0; i < hw->wiphy->n_cipher_suites; i++)
35476b4cac81SBjoern A. Zeeb 			ic->ic_cryptocaps |= lkpi_l80211_to_net80211_cyphers(
35486b4cac81SBjoern A. Zeeb 			    hw->wiphy->cipher_suites[i]);
35496b4cac81SBjoern A. Zeeb 	}
35506b4cac81SBjoern A. Zeeb #endif
35516b4cac81SBjoern A. Zeeb 
35526b4cac81SBjoern A. Zeeb 	lkpi_ic_getradiocaps(ic, IEEE80211_CHAN_MAX, &ic->ic_nchans,
35536b4cac81SBjoern A. Zeeb 	    ic->ic_channels);
35546b4cac81SBjoern A. Zeeb 
35556b4cac81SBjoern A. Zeeb 	ieee80211_ifattach(ic);
35566b4cac81SBjoern A. Zeeb 
35576b4cac81SBjoern A. Zeeb 	ic->ic_update_mcast = lkpi_ic_update_mcast;
35586b4cac81SBjoern A. Zeeb 	ic->ic_update_promisc = lkpi_ic_update_promisc;
35596b4cac81SBjoern A. Zeeb 	ic->ic_update_chw = lkpi_ic_update_chw;
35606b4cac81SBjoern A. Zeeb 	ic->ic_parent = lkpi_ic_parent;
35616b4cac81SBjoern A. Zeeb 	ic->ic_scan_start = lkpi_ic_scan_start;
35626b4cac81SBjoern A. Zeeb 	ic->ic_scan_end = lkpi_ic_scan_end;
35636b4cac81SBjoern A. Zeeb 	ic->ic_set_channel = lkpi_ic_set_channel;
35646b4cac81SBjoern A. Zeeb 	ic->ic_transmit = lkpi_ic_transmit;
35656b4cac81SBjoern A. Zeeb 	ic->ic_raw_xmit = lkpi_ic_raw_xmit;
35666b4cac81SBjoern A. Zeeb 	ic->ic_vap_create = lkpi_ic_vap_create;
35676b4cac81SBjoern A. Zeeb 	ic->ic_vap_delete = lkpi_ic_vap_delete;
35686b4cac81SBjoern A. Zeeb 	ic->ic_getradiocaps = lkpi_ic_getradiocaps;
35696b4cac81SBjoern A. Zeeb 	ic->ic_wme.wme_update = lkpi_ic_wme_update;
35706b4cac81SBjoern A. Zeeb 
3571*a486fbbdSBjoern A. Zeeb 	lhw->ic_scan_curchan = ic->ic_scan_curchan;
3572*a486fbbdSBjoern A. Zeeb 	ic->ic_scan_curchan = lkpi_ic_scan_curchan;
3573*a486fbbdSBjoern A. Zeeb 	lhw->ic_scan_mindwell = ic->ic_scan_mindwell;
3574*a486fbbdSBjoern A. Zeeb 	ic->ic_scan_mindwell = lkpi_ic_scan_mindwell;
3575*a486fbbdSBjoern A. Zeeb 
35766b4cac81SBjoern A. Zeeb 	lhw->ic_node_alloc = ic->ic_node_alloc;
35776b4cac81SBjoern A. Zeeb 	ic->ic_node_alloc = lkpi_ic_node_alloc;
35786b4cac81SBjoern A. Zeeb 	lhw->ic_node_init = ic->ic_node_init;
35796b4cac81SBjoern A. Zeeb 	ic->ic_node_init = lkpi_ic_node_init;
35806b4cac81SBjoern A. Zeeb 	lhw->ic_node_cleanup = ic->ic_node_cleanup;
35816b4cac81SBjoern A. Zeeb 	ic->ic_node_cleanup = lkpi_ic_node_cleanup;
35826b4cac81SBjoern A. Zeeb 	lhw->ic_node_free = ic->ic_node_free;
35836b4cac81SBjoern A. Zeeb 	ic->ic_node_free = lkpi_ic_node_free;
35846b4cac81SBjoern A. Zeeb 
35856b4cac81SBjoern A. Zeeb 	lkpi_radiotap_attach(lhw);
35866b4cac81SBjoern A. Zeeb 
3587c5b96b3eSBjoern A. Zeeb 	/*
3588c5b96b3eSBjoern A. Zeeb 	 * Assign the first possible channel for now;  seems Realtek drivers
3589c5b96b3eSBjoern A. Zeeb 	 * expect one.
3590d9945d78SBjoern A. Zeeb 	 * Also remember the amount of bands we support and the most rates
3591d9945d78SBjoern A. Zeeb 	 * in any band so we can scale [(ext) sup rates] IE(s) accordingly.
3592c5b96b3eSBjoern A. Zeeb 	 */
3593d9945d78SBjoern A. Zeeb 	lhw->supbands = lhw->max_rates = 0;
3594c5b96b3eSBjoern A. Zeeb 	for (band = 0; band < NUM_NL80211_BANDS &&
3595c5b96b3eSBjoern A. Zeeb 	    hw->conf.chandef.chan == NULL; band++) {
3596c5b96b3eSBjoern A. Zeeb 		struct ieee80211_supported_band *supband;
3597c5b96b3eSBjoern A. Zeeb 		struct linuxkpi_ieee80211_channel *channels;
3598c5b96b3eSBjoern A. Zeeb 
3599c5b96b3eSBjoern A. Zeeb 		supband = hw->wiphy->bands[band];
3600c5b96b3eSBjoern A. Zeeb 		if (supband == NULL || supband->n_channels == 0)
3601c5b96b3eSBjoern A. Zeeb 			continue;
3602c5b96b3eSBjoern A. Zeeb 
3603d9945d78SBjoern A. Zeeb 		lhw->supbands++;
3604d9945d78SBjoern A. Zeeb 		lhw->max_rates = max(lhw->max_rates, supband->n_bitrates);
3605d9945d78SBjoern A. Zeeb 
3606c5b96b3eSBjoern A. Zeeb 		channels = supband->channels;
3607c5b96b3eSBjoern A. Zeeb 		for (i = 0; i < supband->n_channels; i++) {
3608c5b96b3eSBjoern A. Zeeb 
3609c5b96b3eSBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_DISABLED)
3610c5b96b3eSBjoern A. Zeeb 				continue;
3611c5b96b3eSBjoern A. Zeeb 
36124a07abdeSBjoern A. Zeeb 			cfg80211_chandef_create(&hw->conf.chandef, &channels[i],
3613c5b96b3eSBjoern A. Zeeb 			    NL80211_CHAN_NO_HT);
3614c5b96b3eSBjoern A. Zeeb 			break;
3615c5b96b3eSBjoern A. Zeeb 		}
3616c5b96b3eSBjoern A. Zeeb 	}
3617c5b96b3eSBjoern A. Zeeb 
3618d9945d78SBjoern A. Zeeb 	IMPROVE("see net80211::ieee80211_chan_init vs. wiphy->bands[].bitrates possibly in lkpi_ic_getradiocaps?");
3619d9945d78SBjoern A. Zeeb 
3620d9945d78SBjoern A. Zeeb 	/* Make sure we do not support more than net80211 is willing to take. */
3621d9945d78SBjoern A. Zeeb 	if (lhw->max_rates > IEEE80211_RATE_MAXSIZE) {
3622d9945d78SBjoern A. Zeeb 		ic_printf(ic, "%s: limiting max_rates %d to %d!\n", __func__,
3623d9945d78SBjoern A. Zeeb 		    lhw->max_rates, IEEE80211_RATE_MAXSIZE);
3624d9945d78SBjoern A. Zeeb 		lhw->max_rates = IEEE80211_RATE_MAXSIZE;
3625d9945d78SBjoern A. Zeeb 	}
3626d9945d78SBjoern A. Zeeb 
3627d9945d78SBjoern A. Zeeb 	/*
3628d9945d78SBjoern A. Zeeb 	 * The maximum supported bitrates on any band + size for
3629d9945d78SBjoern A. Zeeb 	 * DSSS Parameter Set give our per-band IE size.
3630d9945d78SBjoern A. Zeeb 	 * XXX-BZ FIXME add HT VHT ... later
3631d9945d78SBjoern A. Zeeb 	 * SSID is the responsibility of the driver and goes on the side.
3632d9945d78SBjoern A. Zeeb 	 * The user specified bits coming from the vap go into the
3633d9945d78SBjoern A. Zeeb 	 * "common ies" fields.
3634d9945d78SBjoern A. Zeeb 	 */
3635d9945d78SBjoern A. Zeeb 	lhw->scan_ie_len = 2 + IEEE80211_RATE_SIZE;
3636d9945d78SBjoern A. Zeeb 	if (lhw->max_rates > IEEE80211_RATE_SIZE)
3637d9945d78SBjoern A. Zeeb 		lhw->scan_ie_len += 2 + (lhw->max_rates - IEEE80211_RATE_SIZE);
3638d9945d78SBjoern A. Zeeb 	/*
3639d9945d78SBjoern A. Zeeb 	 * net80211 does not seem to support the DSSS Parameter Set but some of
3640d9945d78SBjoern A. Zeeb 	 * the drivers insert it so calculate the extra fixed space in.
3641d9945d78SBjoern A. Zeeb 	 */
3642d9945d78SBjoern A. Zeeb 	lhw->scan_ie_len += 2 + 1;
3643d9945d78SBjoern A. Zeeb 
3644d9945d78SBjoern A. Zeeb 	/* Reduce the max_scan_ie_len "left" by the amount we consume already. */
3645d9945d78SBjoern A. Zeeb 	if (hw->wiphy->max_scan_ie_len > 0)
3646d9945d78SBjoern A. Zeeb 		hw->wiphy->max_scan_ie_len -= lhw->scan_ie_len;
3647d9945d78SBjoern A. Zeeb 
36486b4cac81SBjoern A. Zeeb 	if (bootverbose)
36496b4cac81SBjoern A. Zeeb 		ieee80211_announce(ic);
36502e183d99SBjoern A. Zeeb 
36512e183d99SBjoern A. Zeeb 	return (0);
36526b4cac81SBjoern A. Zeeb }
36536b4cac81SBjoern A. Zeeb 
36546b4cac81SBjoern A. Zeeb void
36556b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_ifdetach(struct ieee80211_hw *hw)
36566b4cac81SBjoern A. Zeeb {
36576b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
36586b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
36596b4cac81SBjoern A. Zeeb 
36606b4cac81SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
36616b4cac81SBjoern A. Zeeb 	ic = lhw->ic;
36626b4cac81SBjoern A. Zeeb 	ieee80211_ifdetach(ic);
36636b4cac81SBjoern A. Zeeb }
36646b4cac81SBjoern A. Zeeb 
36656b4cac81SBjoern A. Zeeb void
36666b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_iterate_interfaces(struct ieee80211_hw *hw,
36676b4cac81SBjoern A. Zeeb     enum ieee80211_iface_iter flags,
36686b4cac81SBjoern A. Zeeb     void(*iterfunc)(void *, uint8_t *, struct ieee80211_vif *),
36696b4cac81SBjoern A. Zeeb     void *arg)
36706b4cac81SBjoern A. Zeeb {
36716b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
36726b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
36736b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
367461a68e50SBjoern A. Zeeb 	bool active, atomic, nin_drv;
36756b4cac81SBjoern A. Zeeb 
36766b4cac81SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
36776b4cac81SBjoern A. Zeeb 
36786b4cac81SBjoern A. Zeeb 	if (flags & ~(IEEE80211_IFACE_ITER_NORMAL|
36796b4cac81SBjoern A. Zeeb 	    IEEE80211_IFACE_ITER_RESUME_ALL|
368061a68e50SBjoern A. Zeeb 	    IEEE80211_IFACE_SKIP_SDATA_NOT_IN_DRIVER|
36816b4cac81SBjoern A. Zeeb 	    IEEE80211_IFACE_ITER__ACTIVE|IEEE80211_IFACE_ITER__ATOMIC)) {
36826b4cac81SBjoern A. Zeeb 		ic_printf(lhw->ic, "XXX TODO %s flags(%#x) not yet supported.\n",
36836b4cac81SBjoern A. Zeeb 		    __func__, flags);
36846b4cac81SBjoern A. Zeeb 	}
36856b4cac81SBjoern A. Zeeb 
36866b4cac81SBjoern A. Zeeb 	active = (flags & IEEE80211_IFACE_ITER__ACTIVE) != 0;
36876b4cac81SBjoern A. Zeeb 	atomic = (flags & IEEE80211_IFACE_ITER__ATOMIC) != 0;
368861a68e50SBjoern A. Zeeb 	nin_drv = (flags & IEEE80211_IFACE_SKIP_SDATA_NOT_IN_DRIVER) != 0;
36896b4cac81SBjoern A. Zeeb 
36906b4cac81SBjoern A. Zeeb 	if (atomic)
36918891c455SBjoern A. Zeeb 		LKPI_80211_LHW_LVIF_LOCK(lhw);
36926b4cac81SBjoern A. Zeeb 	TAILQ_FOREACH(lvif, &lhw->lvif_head, lvif_entry) {
36936b4cac81SBjoern A. Zeeb 		struct ieee80211vap *vap;
36946b4cac81SBjoern A. Zeeb 
36956b4cac81SBjoern A. Zeeb 		vif = LVIF_TO_VIF(lvif);
36966b4cac81SBjoern A. Zeeb 
36976b4cac81SBjoern A. Zeeb 		/*
36986b4cac81SBjoern A. Zeeb 		 * If we want "active" interfaces, we need to distinguish on
36996b4cac81SBjoern A. Zeeb 		 * whether the driver knows about them or not to be able to
37006b4cac81SBjoern A. Zeeb 		 * handle the "resume" case correctly.  Skip the ones the
37016b4cac81SBjoern A. Zeeb 		 * driver does not know about.
37026b4cac81SBjoern A. Zeeb 		 */
37036b4cac81SBjoern A. Zeeb 		if (active && !lvif->added_to_drv &&
37046b4cac81SBjoern A. Zeeb 		    (flags & IEEE80211_IFACE_ITER_RESUME_ALL) != 0)
37056b4cac81SBjoern A. Zeeb 			continue;
37066b4cac81SBjoern A. Zeeb 
37076b4cac81SBjoern A. Zeeb 		/*
370861a68e50SBjoern A. Zeeb 		 * If we shall skip interfaces not added to the driver do so
370961a68e50SBjoern A. Zeeb 		 * if we haven't yet.
371061a68e50SBjoern A. Zeeb 		 */
371161a68e50SBjoern A. Zeeb 		if (nin_drv && !lvif->added_to_drv)
371261a68e50SBjoern A. Zeeb 			continue;
371361a68e50SBjoern A. Zeeb 
371461a68e50SBjoern A. Zeeb 		/*
37156b4cac81SBjoern A. Zeeb 		 * Run the iterator function if we are either not asking
37166b4cac81SBjoern A. Zeeb 		 * asking for active only or if the VAP is "running".
37176b4cac81SBjoern A. Zeeb 		 */
37186b4cac81SBjoern A. Zeeb 		/* XXX-BZ probably should have state in the lvif as well. */
37196b4cac81SBjoern A. Zeeb 		vap = LVIF_TO_VAP(lvif);
37206b4cac81SBjoern A. Zeeb 		if (!active || (vap->iv_state != IEEE80211_S_INIT))
37216b4cac81SBjoern A. Zeeb 			iterfunc(arg, vif->addr, vif);
37226b4cac81SBjoern A. Zeeb 	}
37236b4cac81SBjoern A. Zeeb 	if (atomic)
37248891c455SBjoern A. Zeeb 		LKPI_80211_LHW_LVIF_UNLOCK(lhw);
37256b4cac81SBjoern A. Zeeb }
37266b4cac81SBjoern A. Zeeb 
37276b4cac81SBjoern A. Zeeb void
37286b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_iterate_keys(struct ieee80211_hw *hw,
37296b4cac81SBjoern A. Zeeb     struct ieee80211_vif *vif,
37306b4cac81SBjoern A. Zeeb     void(*iterfunc)(struct ieee80211_hw *, struct ieee80211_vif *,
37316b4cac81SBjoern A. Zeeb         struct ieee80211_sta *, struct ieee80211_key_conf *, void *),
37326b4cac81SBjoern A. Zeeb     void *arg)
37336b4cac81SBjoern A. Zeeb {
37346b4cac81SBjoern A. Zeeb 
37356b4cac81SBjoern A. Zeeb 	UNIMPLEMENTED;
37366b4cac81SBjoern A. Zeeb }
37376b4cac81SBjoern A. Zeeb 
37386b4cac81SBjoern A. Zeeb void
37396b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_iterate_chan_contexts(struct ieee80211_hw *hw,
37406b4cac81SBjoern A. Zeeb     void(*iterfunc)(struct ieee80211_hw *, struct ieee80211_chanctx_conf *,
37416b4cac81SBjoern A. Zeeb 	void *),
37426b4cac81SBjoern A. Zeeb     void *arg)
37436b4cac81SBjoern A. Zeeb {
37446b4cac81SBjoern A. Zeeb 
37456b4cac81SBjoern A. Zeeb 	UNIMPLEMENTED;
37466b4cac81SBjoern A. Zeeb }
37476b4cac81SBjoern A. Zeeb 
37486b4cac81SBjoern A. Zeeb void
37496b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_iterate_stations_atomic(struct ieee80211_hw *hw,
37506b4cac81SBjoern A. Zeeb    void (*iterfunc)(void *, struct ieee80211_sta *), void *arg)
37516b4cac81SBjoern A. Zeeb {
37526b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
37536b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
37546b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
37556b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
37566b4cac81SBjoern A. Zeeb 
37576b4cac81SBjoern A. Zeeb 	KASSERT(hw != NULL && iterfunc != NULL,
37586b4cac81SBjoern A. Zeeb 	    ("%s: hw %p iterfunc %p arg %p\n", __func__, hw, iterfunc, arg));
37596b4cac81SBjoern A. Zeeb 
37606b4cac81SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
37616b4cac81SBjoern A. Zeeb 
37628891c455SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_LOCK(lhw);
37636b4cac81SBjoern A. Zeeb 	TAILQ_FOREACH(lvif, &lhw->lvif_head, lvif_entry) {
37646b4cac81SBjoern A. Zeeb 
37656b4cac81SBjoern A. Zeeb 		LKPI_80211_LVIF_LOCK(lvif);
37666b4cac81SBjoern A. Zeeb 		TAILQ_FOREACH(lsta, &lvif->lsta_head, lsta_entry) {
37676b4cac81SBjoern A. Zeeb 			if (!lsta->added_to_drv)
37686b4cac81SBjoern A. Zeeb 				continue;
37696b4cac81SBjoern A. Zeeb 			sta = LSTA_TO_STA(lsta);
37706b4cac81SBjoern A. Zeeb 			iterfunc(arg, sta);
37716b4cac81SBjoern A. Zeeb 		}
37726b4cac81SBjoern A. Zeeb 		LKPI_80211_LVIF_UNLOCK(lvif);
37736b4cac81SBjoern A. Zeeb 	}
37748891c455SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_UNLOCK(lhw);
37756b4cac81SBjoern A. Zeeb }
37766b4cac81SBjoern A. Zeeb 
37776b4cac81SBjoern A. Zeeb int
37786b4cac81SBjoern A. Zeeb linuxkpi_regulatory_set_wiphy_regd_sync(struct wiphy *wiphy,
37796b4cac81SBjoern A. Zeeb     struct linuxkpi_ieee80211_regdomain *regd)
37806b4cac81SBjoern A. Zeeb {
37816b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
37826b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
37836b4cac81SBjoern A. Zeeb 	struct ieee80211_regdomain *rd;
37846b4cac81SBjoern A. Zeeb 
37856b4cac81SBjoern A. Zeeb 	lhw = wiphy_priv(wiphy);
37866b4cac81SBjoern A. Zeeb 	ic = lhw->ic;
37876b4cac81SBjoern A. Zeeb 
37886b4cac81SBjoern A. Zeeb 	rd = &ic->ic_regdomain;
37896b4cac81SBjoern A. Zeeb 	if (rd->isocc[0] == '\0') {
37906b4cac81SBjoern A. Zeeb 		rd->isocc[0] = regd->alpha2[0];
37916b4cac81SBjoern A. Zeeb 		rd->isocc[1] = regd->alpha2[1];
37926b4cac81SBjoern A. Zeeb 	}
37936b4cac81SBjoern A. Zeeb 
37946b4cac81SBjoern A. Zeeb 	TODO();
37956b4cac81SBjoern A. Zeeb 	/* XXX-BZ finish the rest. */
37966b4cac81SBjoern A. Zeeb 
37976b4cac81SBjoern A. Zeeb 	return (0);
37986b4cac81SBjoern A. Zeeb }
37996b4cac81SBjoern A. Zeeb 
38006b4cac81SBjoern A. Zeeb void
38016b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_scan_completed(struct ieee80211_hw *hw,
38026b4cac81SBjoern A. Zeeb     struct cfg80211_scan_info *info)
38036b4cac81SBjoern A. Zeeb {
38046b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
38056b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
38066b4cac81SBjoern A. Zeeb 	struct ieee80211_scan_state *ss;
38076b4cac81SBjoern A. Zeeb 
38086b4cac81SBjoern A. Zeeb 	lhw = wiphy_priv(hw->wiphy);
38096b4cac81SBjoern A. Zeeb 	ic = lhw->ic;
38106b4cac81SBjoern A. Zeeb 	ss = ic->ic_scan;
38116b4cac81SBjoern A. Zeeb 
38126b4cac81SBjoern A. Zeeb 	ieee80211_scan_done(ss->ss_vap);
38136b4cac81SBjoern A. Zeeb 
38146b4cac81SBjoern A. Zeeb 	LKPI_80211_LHW_LOCK(lhw);
38156b4cac81SBjoern A. Zeeb 	free(lhw->hw_req, M_LKPI80211);
38166b4cac81SBjoern A. Zeeb 	lhw->hw_req = NULL;
3817*a486fbbdSBjoern A. Zeeb 	lhw->scan_flags &= ~LKPI_LHW_SCAN_RUNNING;
38186b4cac81SBjoern A. Zeeb 	wakeup(lhw);
38196b4cac81SBjoern A. Zeeb 	LKPI_80211_LHW_UNLOCK(lhw);
38206b4cac81SBjoern A. Zeeb 
38216b4cac81SBjoern A. Zeeb 	return;
38226b4cac81SBjoern A. Zeeb }
38236b4cac81SBjoern A. Zeeb 
38246b4cac81SBjoern A. Zeeb void
38256b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb,
38266b4cac81SBjoern A. Zeeb     struct ieee80211_sta *sta, struct napi_struct *napi __unused)
38276b4cac81SBjoern A. Zeeb {
38286b4cac81SBjoern A. Zeeb 	struct epoch_tracker et;
38296b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
38306b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
38316b4cac81SBjoern A. Zeeb 	struct mbuf *m;
38326b4cac81SBjoern A. Zeeb 	struct skb_shared_info *shinfo;
38336b4cac81SBjoern A. Zeeb 	struct ieee80211_rx_status *rx_status;
38346b4cac81SBjoern A. Zeeb 	struct ieee80211_rx_stats rx_stats;
38356b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
38366b4cac81SBjoern A. Zeeb 	struct ieee80211vap *vap;
38376b4cac81SBjoern A. Zeeb 	struct ieee80211_hdr *hdr;
38386b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
38399d9ba2b7SBjoern A. Zeeb 	int i, offset, ok;
3840170acccfSBjoern A. Zeeb 	int8_t rssi;
3841c0cadd99SBjoern A. Zeeb 	bool is_beacon;
38426b4cac81SBjoern A. Zeeb 
38436b4cac81SBjoern A. Zeeb 	if (skb->len < 2) {
38446b4cac81SBjoern A. Zeeb 		/* Need 80211 stats here. */
38456b4cac81SBjoern A. Zeeb 		IMPROVE();
38466b4cac81SBjoern A. Zeeb 		goto err;
38476b4cac81SBjoern A. Zeeb 	}
38486b4cac81SBjoern A. Zeeb 
38496b4cac81SBjoern A. Zeeb 	/*
38506b4cac81SBjoern A. Zeeb 	 * For now do the data copy; we can later improve things. Might even
38516b4cac81SBjoern A. Zeeb 	 * have an mbuf backing the skb data then?
38526b4cac81SBjoern A. Zeeb 	 */
38536b4cac81SBjoern A. Zeeb 	m = m_get2(skb->len, M_NOWAIT, MT_DATA, M_PKTHDR);
38546b4cac81SBjoern A. Zeeb 	if (m == NULL)
38556b4cac81SBjoern A. Zeeb 		goto err;
38566b4cac81SBjoern A. Zeeb 	m_copyback(m, 0, skb->tail - skb->data, skb->data);
38576b4cac81SBjoern A. Zeeb 
38586b4cac81SBjoern A. Zeeb 	shinfo = skb_shinfo(skb);
38596b4cac81SBjoern A. Zeeb 	offset = m->m_len;
38606b4cac81SBjoern A. Zeeb 	for (i = 0; i < shinfo->nr_frags; i++) {
38616b4cac81SBjoern A. Zeeb 		m_copyback(m, offset, shinfo->frags[i].size,
38626b4cac81SBjoern A. Zeeb 		    (uint8_t *)linux_page_address(shinfo->frags[i].page) +
38636b4cac81SBjoern A. Zeeb 		    shinfo->frags[i].offset);
38646b4cac81SBjoern A. Zeeb 		offset += shinfo->frags[i].size;
38656b4cac81SBjoern A. Zeeb 	}
38666b4cac81SBjoern A. Zeeb 
38676b4cac81SBjoern A. Zeeb 	rx_status = IEEE80211_SKB_RXCB(skb);
38686b4cac81SBjoern A. Zeeb 
38696b4cac81SBjoern A. Zeeb 	hdr = (void *)skb->data;
3870c0cadd99SBjoern A. Zeeb 	is_beacon = ieee80211_is_beacon(hdr->frame_control);
3871c0cadd99SBjoern A. Zeeb 
3872c0cadd99SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
38739d9ba2b7SBjoern A. Zeeb 	if (is_beacon && (linuxkpi_debug_80211 & D80211_TRACE_RX_BEACONS) == 0)
38746b4cac81SBjoern A. Zeeb 		goto no_trace_beacons;
38756b4cac81SBjoern A. Zeeb 
38769d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_RX)
38776b4cac81SBjoern A. Zeeb 		printf("TRACE-RX: %s: skb %p a/l/d/t-len (%u/%u/%u/%u) "
3878c0cadd99SBjoern A. Zeeb 		    "h %p d %p t %p e %p sh %p (%u) m %p plen %u len %u%s\n",
38796b4cac81SBjoern A. Zeeb 		    __func__, skb, skb->_alloc_len, skb->len, skb->data_len,
38806b4cac81SBjoern A. Zeeb 		    skb->truesize, skb->head, skb->data, skb->tail, skb->end,
38816b4cac81SBjoern A. Zeeb 		    shinfo, shinfo->nr_frags,
3882c0cadd99SBjoern A. Zeeb 		    m, m->m_pkthdr.len, m->m_len, is_beacon ? " beacon" : "");
38836b4cac81SBjoern A. Zeeb 
38849d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_RX_DUMP)
38856b4cac81SBjoern A. Zeeb 		hexdump(mtod(m, const void *), m->m_len, "RX (raw) ", 0);
38866b4cac81SBjoern A. Zeeb 
38876b4cac81SBjoern A. Zeeb 	/* Implement a dump_rxcb() !!! */
38889d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_RX)
3889c8dafefaSBjoern A. Zeeb 		printf("TRACE %s: RXCB: %ju %ju %u, %#0x, %u, %#0x, %#0x, "
389060970a32SBjoern A. Zeeb 		    "%u band %u, %u { %d %d %d %d }, %d, %#x %#x %#x %#x %u %u %u\n",
38916b4cac81SBjoern A. Zeeb 			__func__,
3892c8dafefaSBjoern A. Zeeb 			(uintmax_t)rx_status->boottime_ns,
3893c8dafefaSBjoern A. Zeeb 			(uintmax_t)rx_status->mactime,
38946b4cac81SBjoern A. Zeeb 			rx_status->device_timestamp,
38956b4cac81SBjoern A. Zeeb 			rx_status->flag,
38966b4cac81SBjoern A. Zeeb 			rx_status->freq,
38976b4cac81SBjoern A. Zeeb 			rx_status->bw,
38986b4cac81SBjoern A. Zeeb 			rx_status->encoding,
38996b4cac81SBjoern A. Zeeb 			rx_status->ampdu_reference,
39006b4cac81SBjoern A. Zeeb 			rx_status->band,
39016b4cac81SBjoern A. Zeeb 			rx_status->chains,
39026b4cac81SBjoern A. Zeeb 			rx_status->chain_signal[0],
39036b4cac81SBjoern A. Zeeb 			rx_status->chain_signal[1],
39046b4cac81SBjoern A. Zeeb 			rx_status->chain_signal[2],
390560970a32SBjoern A. Zeeb 			rx_status->chain_signal[3],
39066b4cac81SBjoern A. Zeeb 			rx_status->signal,
39076b4cac81SBjoern A. Zeeb 			rx_status->enc_flags,
39086b4cac81SBjoern A. Zeeb 			rx_status->he_dcm,
39096b4cac81SBjoern A. Zeeb 			rx_status->he_gi,
39106b4cac81SBjoern A. Zeeb 			rx_status->he_ru,
39116b4cac81SBjoern A. Zeeb 			rx_status->zero_length_psdu_type,
39126b4cac81SBjoern A. Zeeb 			rx_status->nss,
39136b4cac81SBjoern A. Zeeb 			rx_status->rate_idx);
39146b4cac81SBjoern A. Zeeb no_trace_beacons:
39156b4cac81SBjoern A. Zeeb #endif
39166b4cac81SBjoern A. Zeeb 
39176b4cac81SBjoern A. Zeeb 	memset(&rx_stats, 0, sizeof(rx_stats));
39186b4cac81SBjoern A. Zeeb 	rx_stats.r_flags = IEEE80211_R_NF | IEEE80211_R_RSSI;
391960970a32SBjoern A. Zeeb 	/* XXX-BZ correct hardcoded rssi and noise floor, how? survey? */
392060970a32SBjoern A. Zeeb 	rx_stats.c_nf = -96;
39216b4cac81SBjoern A. Zeeb 	if (ieee80211_hw_check(hw, SIGNAL_DBM) &&
39226b4cac81SBjoern A. Zeeb 	    !(rx_status->flag & RX_FLAG_NO_SIGNAL_VAL))
3923170acccfSBjoern A. Zeeb 		rssi = rx_status->signal;
39246b4cac81SBjoern A. Zeeb 	else
3925170acccfSBjoern A. Zeeb 		rssi = rx_stats.c_nf;
3926170acccfSBjoern A. Zeeb 	/*
3927170acccfSBjoern A. Zeeb 	 * net80211 signal strength data are in .5 dBm units relative to
3928170acccfSBjoern A. Zeeb 	 * the current noise floor (see comment in ieee80211_node.h).
3929170acccfSBjoern A. Zeeb 	 */
3930170acccfSBjoern A. Zeeb 	rssi -= rx_stats.c_nf;
3931170acccfSBjoern A. Zeeb 	rx_stats.c_rssi = rssi * 2;
39326b4cac81SBjoern A. Zeeb 	rx_stats.r_flags |= IEEE80211_R_BAND;
39336b4cac81SBjoern A. Zeeb 	rx_stats.c_band =
39346b4cac81SBjoern A. Zeeb 	    lkpi_nl80211_band_to_net80211_band(rx_status->band);
39356b4cac81SBjoern A. Zeeb 	rx_stats.r_flags |= IEEE80211_R_FREQ | IEEE80211_R_IEEE;
39366b4cac81SBjoern A. Zeeb 	rx_stats.c_freq = rx_status->freq;
39376b4cac81SBjoern A. Zeeb 	rx_stats.c_ieee = ieee80211_mhz2ieee(rx_stats.c_freq, rx_stats.c_band);
39386b4cac81SBjoern A. Zeeb 
39396b4cac81SBjoern A. Zeeb 	/* XXX (*sta_statistics)() to get to some of that? */
39406b4cac81SBjoern A. Zeeb 	/* XXX-BZ dump the FreeBSD version of rx_stats as well! */
39416b4cac81SBjoern A. Zeeb 
39426b4cac81SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
39436b4cac81SBjoern A. Zeeb 	ic = lhw->ic;
39446b4cac81SBjoern A. Zeeb 
39456b4cac81SBjoern A. Zeeb 	ok = ieee80211_add_rx_params(m, &rx_stats);
39466b4cac81SBjoern A. Zeeb 	if (ok == 0) {
3947dbc06dd9SBjoern A. Zeeb 		m_freem(m);
39486b4cac81SBjoern A. Zeeb 		counter_u64_add(ic->ic_ierrors, 1);
39496b4cac81SBjoern A. Zeeb 		goto err;
39506b4cac81SBjoern A. Zeeb 	}
39516b4cac81SBjoern A. Zeeb 
39526b4cac81SBjoern A. Zeeb 	if (sta != NULL) {
39536b4cac81SBjoern A. Zeeb 		lsta = STA_TO_LSTA(sta);
39546b4cac81SBjoern A. Zeeb 		ni = ieee80211_ref_node(lsta->ni);
39556b4cac81SBjoern A. Zeeb 	} else {
3956c8dafefaSBjoern A. Zeeb 		struct ieee80211_frame_min *wh;
3957c8dafefaSBjoern A. Zeeb 
39586b4cac81SBjoern A. Zeeb 		wh = mtod(m, struct ieee80211_frame_min *);
39596b4cac81SBjoern A. Zeeb 		ni = ieee80211_find_rxnode(ic, wh);
39606b4cac81SBjoern A. Zeeb 		if (ni != NULL)
39616b4cac81SBjoern A. Zeeb 			lsta = ni->ni_drv_data;
39626b4cac81SBjoern A. Zeeb 	}
39636b4cac81SBjoern A. Zeeb 
39646b4cac81SBjoern A. Zeeb 	if (ni != NULL)
39656b4cac81SBjoern A. Zeeb 		vap = ni->ni_vap;
39666b4cac81SBjoern A. Zeeb 	else
39676b4cac81SBjoern A. Zeeb 		/*
39686b4cac81SBjoern A. Zeeb 		 * XXX-BZ can we improve this by looking at the frame hdr
39696b4cac81SBjoern A. Zeeb 		 * or other meta-data passed up?
39706b4cac81SBjoern A. Zeeb 		 */
39716b4cac81SBjoern A. Zeeb 		vap = TAILQ_FIRST(&ic->ic_vaps);
39726b4cac81SBjoern A. Zeeb 
39739d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
39749d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_RX)
3975c0cadd99SBjoern A. Zeeb 		printf("TRACE %s: sta %p lsta %p state %d ni %p vap %p%s\n",
3976c0cadd99SBjoern A. Zeeb 		    __func__, sta, lsta, (lsta != NULL) ? lsta->state : -1,
3977c0cadd99SBjoern A. Zeeb 		    ni, vap, is_beacon ? " beacon" : "");
39789d9ba2b7SBjoern A. Zeeb #endif
39796b4cac81SBjoern A. Zeeb 
3980c0cadd99SBjoern A. Zeeb 	if (ni != NULL && vap != NULL && is_beacon &&
3981c8dafefaSBjoern A. Zeeb 	    rx_status->device_timestamp > 0 &&
3982c8dafefaSBjoern A. Zeeb 	    m->m_pkthdr.len >= sizeof(struct ieee80211_frame)) {
3983c8dafefaSBjoern A. Zeeb 		struct lkpi_vif *lvif;
3984c8dafefaSBjoern A. Zeeb 		struct ieee80211_vif *vif;
3985c8dafefaSBjoern A. Zeeb 		struct ieee80211_frame *wh;
3986c8dafefaSBjoern A. Zeeb 
3987c8dafefaSBjoern A. Zeeb 		wh = mtod(m, struct ieee80211_frame *);
3988c8dafefaSBjoern A. Zeeb 		if (!IEEE80211_ADDR_EQ(wh->i_addr2, ni->ni_bssid))
3989c8dafefaSBjoern A. Zeeb 			goto skip_device_ts;
3990c8dafefaSBjoern A. Zeeb 
3991c8dafefaSBjoern A. Zeeb 		lvif = VAP_TO_LVIF(vap);
3992c8dafefaSBjoern A. Zeeb 		vif = LVIF_TO_VIF(lvif);
3993c8dafefaSBjoern A. Zeeb 
3994c8dafefaSBjoern A. Zeeb 		IMPROVE("TIMING_BEACON_ONLY?");
3995c8dafefaSBjoern A. Zeeb 		/* mac80211 specific (not net80211) so keep it here. */
3996c8dafefaSBjoern A. Zeeb 		vif->bss_conf.sync_device_ts = rx_status->device_timestamp;
3997c8dafefaSBjoern A. Zeeb 		/*
3998c8dafefaSBjoern A. Zeeb 		 * net80211 should take care of the other information (sync_tsf,
3999c8dafefaSBjoern A. Zeeb 		 * sync_dtim_count) as otherwise we need to parse the beacon.
4000c8dafefaSBjoern A. Zeeb 		 */
4001c8dafefaSBjoern A. Zeeb 	}
4002c8dafefaSBjoern A. Zeeb skip_device_ts:
4003c8dafefaSBjoern A. Zeeb 
40046b4cac81SBjoern A. Zeeb 	if (vap != NULL && vap->iv_state > IEEE80211_S_INIT &&
40056b4cac81SBjoern A. Zeeb 	    ieee80211_radiotap_active_vap(vap)) {
40066b4cac81SBjoern A. Zeeb 		struct lkpi_radiotap_rx_hdr *rtap;
40076b4cac81SBjoern A. Zeeb 
40086b4cac81SBjoern A. Zeeb 		rtap = &lhw->rtap_rx;
40096b4cac81SBjoern A. Zeeb 		rtap->wr_tsft = rx_status->device_timestamp;
40106b4cac81SBjoern A. Zeeb 		rtap->wr_flags = 0;
40116b4cac81SBjoern A. Zeeb 		if (rx_status->enc_flags & RX_ENC_FLAG_SHORTPRE)
40126b4cac81SBjoern A. Zeeb 			rtap->wr_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
40136b4cac81SBjoern A. Zeeb 		if (rx_status->enc_flags & RX_ENC_FLAG_SHORT_GI)
40146b4cac81SBjoern A. Zeeb 			rtap->wr_flags |= IEEE80211_RADIOTAP_F_SHORTGI;
40156b4cac81SBjoern A. Zeeb #if 0	/* .. or it does not given we strip it below. */
40166b4cac81SBjoern A. Zeeb 		if (ieee80211_hw_check(hw, RX_INCLUDES_FCS))
40176b4cac81SBjoern A. Zeeb 			rtap->wr_flags |= IEEE80211_RADIOTAP_F_FCS;
40186b4cac81SBjoern A. Zeeb #endif
40196b4cac81SBjoern A. Zeeb 		if (rx_status->flag & RX_FLAG_FAILED_FCS_CRC)
40206b4cac81SBjoern A. Zeeb 			rtap->wr_flags |= IEEE80211_RADIOTAP_F_BADFCS;
40216b4cac81SBjoern A. Zeeb 		rtap->wr_rate = 0;
40226b4cac81SBjoern A. Zeeb 		IMPROVE();
40236b4cac81SBjoern A. Zeeb 		/* XXX TODO status->encoding / rate_index / bw */
40246b4cac81SBjoern A. Zeeb 		rtap->wr_chan_freq = htole16(rx_stats.c_freq);
40256b4cac81SBjoern A. Zeeb 		if (ic->ic_curchan->ic_ieee == rx_stats.c_ieee)
40266b4cac81SBjoern A. Zeeb 			rtap->wr_chan_flags = htole16(ic->ic_curchan->ic_flags);
4027170acccfSBjoern A. Zeeb 		rtap->wr_dbm_antsignal = rssi;
40286b4cac81SBjoern A. Zeeb 		rtap->wr_dbm_antnoise = rx_stats.c_nf;
40296b4cac81SBjoern A. Zeeb 	}
40306b4cac81SBjoern A. Zeeb 
40316b4cac81SBjoern A. Zeeb 	if (ieee80211_hw_check(hw, RX_INCLUDES_FCS))
40326b4cac81SBjoern A. Zeeb 		m_adj(m, -IEEE80211_CRC_LEN);
40336b4cac81SBjoern A. Zeeb 
40346b4cac81SBjoern A. Zeeb 	NET_EPOCH_ENTER(et);
40356b4cac81SBjoern A. Zeeb 	if (ni != NULL) {
40369d9ba2b7SBjoern A. Zeeb 		ok = ieee80211_input_mimo(ni, m);
40376b4cac81SBjoern A. Zeeb 		ieee80211_free_node(ni);
4038dbc06dd9SBjoern A. Zeeb 		if (ok < 0)
4039dbc06dd9SBjoern A. Zeeb 			m_freem(m);
40406b4cac81SBjoern A. Zeeb 	} else {
40419d9ba2b7SBjoern A. Zeeb 		ok = ieee80211_input_mimo_all(ic, m);
4042dbc06dd9SBjoern A. Zeeb 		/* mbuf got consumed. */
40436b4cac81SBjoern A. Zeeb 	}
40446b4cac81SBjoern A. Zeeb 	NET_EPOCH_EXIT(et);
40456b4cac81SBjoern A. Zeeb 
40469d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
40479d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_RX)
40489d9ba2b7SBjoern A. Zeeb 		printf("TRACE %s: handled frame type %#0x\n", __func__, ok);
40499d9ba2b7SBjoern A. Zeeb #endif
40506b4cac81SBjoern A. Zeeb 
40516b4cac81SBjoern A. Zeeb 	IMPROVE();
40526b4cac81SBjoern A. Zeeb 
40536b4cac81SBjoern A. Zeeb err:
40546b4cac81SBjoern A. Zeeb 	/* The skb is ours so we can free it :-) */
40556b4cac81SBjoern A. Zeeb 	kfree_skb(skb);
40566b4cac81SBjoern A. Zeeb }
40576b4cac81SBjoern A. Zeeb 
40586b4cac81SBjoern A. Zeeb uint8_t
40596b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_get_tid(struct ieee80211_hdr *hdr)
40606b4cac81SBjoern A. Zeeb {
40616b4cac81SBjoern A. Zeeb 	const struct ieee80211_frame *wh;
40626b4cac81SBjoern A. Zeeb 
40636b4cac81SBjoern A. Zeeb 	wh = (const struct ieee80211_frame *)hdr;
40646b4cac81SBjoern A. Zeeb 	return (ieee80211_gettid(wh));
40656b4cac81SBjoern A. Zeeb }
40666b4cac81SBjoern A. Zeeb 
40676b4cac81SBjoern A. Zeeb struct wiphy *
40686b4cac81SBjoern A. Zeeb linuxkpi_wiphy_new(const struct cfg80211_ops *ops, size_t priv_len)
40696b4cac81SBjoern A. Zeeb {
40706b4cac81SBjoern A. Zeeb 	struct lkpi_wiphy *lwiphy;
40716b4cac81SBjoern A. Zeeb 
40726b4cac81SBjoern A. Zeeb 	lwiphy = kzalloc(sizeof(*lwiphy) + priv_len, GFP_KERNEL);
40736b4cac81SBjoern A. Zeeb 	if (lwiphy == NULL)
40746b4cac81SBjoern A. Zeeb 		return (NULL);
40756b4cac81SBjoern A. Zeeb 	lwiphy->ops = ops;
40766b4cac81SBjoern A. Zeeb 
40776b4cac81SBjoern A. Zeeb 	/* XXX TODO */
40786b4cac81SBjoern A. Zeeb 	return (LWIPHY_TO_WIPHY(lwiphy));
40796b4cac81SBjoern A. Zeeb }
40806b4cac81SBjoern A. Zeeb 
40816b4cac81SBjoern A. Zeeb void
40826b4cac81SBjoern A. Zeeb linuxkpi_wiphy_free(struct wiphy *wiphy)
40836b4cac81SBjoern A. Zeeb {
40846b4cac81SBjoern A. Zeeb 	struct lkpi_wiphy *lwiphy;
40856b4cac81SBjoern A. Zeeb 
40866b4cac81SBjoern A. Zeeb 	if (wiphy == NULL)
40876b4cac81SBjoern A. Zeeb 		return;
40886b4cac81SBjoern A. Zeeb 
40896b4cac81SBjoern A. Zeeb 	lwiphy = WIPHY_TO_LWIPHY(wiphy);
40906b4cac81SBjoern A. Zeeb 	kfree(lwiphy);
40916b4cac81SBjoern A. Zeeb }
40926b4cac81SBjoern A. Zeeb 
40936b4cac81SBjoern A. Zeeb uint32_t
40946b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_channel_to_frequency(uint32_t channel,
40956b4cac81SBjoern A. Zeeb     enum nl80211_band band)
40966b4cac81SBjoern A. Zeeb {
40976b4cac81SBjoern A. Zeeb 
40986b4cac81SBjoern A. Zeeb 	switch (band) {
40996b4cac81SBjoern A. Zeeb 	case NL80211_BAND_2GHZ:
41006b4cac81SBjoern A. Zeeb 		return (ieee80211_ieee2mhz(channel, IEEE80211_CHAN_2GHZ));
41016b4cac81SBjoern A. Zeeb 		break;
41026b4cac81SBjoern A. Zeeb 	case NL80211_BAND_5GHZ:
41036b4cac81SBjoern A. Zeeb 		return (ieee80211_ieee2mhz(channel, IEEE80211_CHAN_5GHZ));
41046b4cac81SBjoern A. Zeeb 		break;
41056b4cac81SBjoern A. Zeeb 	default:
41066b4cac81SBjoern A. Zeeb 		/* XXX abort, retry, error, panic? */
41076b4cac81SBjoern A. Zeeb 		break;
41086b4cac81SBjoern A. Zeeb 	}
41096b4cac81SBjoern A. Zeeb 
41106b4cac81SBjoern A. Zeeb 	return (0);
41116b4cac81SBjoern A. Zeeb }
41126b4cac81SBjoern A. Zeeb 
41136b4cac81SBjoern A. Zeeb uint32_t
41146b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_frequency_to_channel(uint32_t freq, uint32_t flags __unused)
41156b4cac81SBjoern A. Zeeb {
41166b4cac81SBjoern A. Zeeb 
41176b4cac81SBjoern A. Zeeb 	return (ieee80211_mhz2ieee(freq, 0));
41186b4cac81SBjoern A. Zeeb }
41196b4cac81SBjoern A. Zeeb 
41206b4cac81SBjoern A. Zeeb static struct lkpi_sta *
41216b4cac81SBjoern A. Zeeb lkpi_find_lsta_by_ni(struct lkpi_vif *lvif, struct ieee80211_node *ni)
41226b4cac81SBjoern A. Zeeb {
41236b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta, *temp;
41246b4cac81SBjoern A. Zeeb 
41256b4cac81SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
41266b4cac81SBjoern A. Zeeb 	TAILQ_FOREACH_SAFE(lsta, &lvif->lsta_head, lsta_entry, temp) {
41276b4cac81SBjoern A. Zeeb 		if (lsta->ni == ni) {
41286b4cac81SBjoern A. Zeeb 			LKPI_80211_LVIF_UNLOCK(lvif);
41296b4cac81SBjoern A. Zeeb 			return (lsta);
41306b4cac81SBjoern A. Zeeb 		}
41316b4cac81SBjoern A. Zeeb 	}
41326b4cac81SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
41336b4cac81SBjoern A. Zeeb 
41346b4cac81SBjoern A. Zeeb 	return (NULL);
41356b4cac81SBjoern A. Zeeb }
41366b4cac81SBjoern A. Zeeb 
41376b4cac81SBjoern A. Zeeb struct ieee80211_sta *
41386b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_find_sta(struct ieee80211_vif *vif, const u8 *peer)
41396b4cac81SBjoern A. Zeeb {
41406b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
41416b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta, *temp;
41426b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
41436b4cac81SBjoern A. Zeeb 
41446b4cac81SBjoern A. Zeeb 	lvif = VIF_TO_LVIF(vif);
41456b4cac81SBjoern A. Zeeb 
41466b4cac81SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
41476b4cac81SBjoern A. Zeeb 	TAILQ_FOREACH_SAFE(lsta, &lvif->lsta_head, lsta_entry, temp) {
41486b4cac81SBjoern A. Zeeb 		sta = LSTA_TO_STA(lsta);
41496b4cac81SBjoern A. Zeeb 		if (IEEE80211_ADDR_EQ(sta->addr, peer)) {
41506b4cac81SBjoern A. Zeeb 			LKPI_80211_LVIF_UNLOCK(lvif);
41516b4cac81SBjoern A. Zeeb 			return (sta);
41526b4cac81SBjoern A. Zeeb 		}
41536b4cac81SBjoern A. Zeeb 	}
41546b4cac81SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
41556b4cac81SBjoern A. Zeeb 	return (NULL);
41566b4cac81SBjoern A. Zeeb }
41576b4cac81SBjoern A. Zeeb 
41586b4cac81SBjoern A. Zeeb struct ieee80211_sta *
41592e183d99SBjoern A. Zeeb linuxkpi_ieee80211_find_sta_by_ifaddr(struct ieee80211_hw *hw,
41602e183d99SBjoern A. Zeeb     const uint8_t *addr, const uint8_t *ourvifaddr)
41616b4cac81SBjoern A. Zeeb {
41626b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
41636b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
41646b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
41656b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
41666b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
41676b4cac81SBjoern A. Zeeb 
41686b4cac81SBjoern A. Zeeb 	lhw = wiphy_priv(hw->wiphy);
41696b4cac81SBjoern A. Zeeb 	sta = NULL;
41706b4cac81SBjoern A. Zeeb 
41718891c455SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_LOCK(lhw);
41726b4cac81SBjoern A. Zeeb 	TAILQ_FOREACH(lvif, &lhw->lvif_head, lvif_entry) {
41736b4cac81SBjoern A. Zeeb 
41746b4cac81SBjoern A. Zeeb 		/* XXX-BZ check our address from the vif. */
41756b4cac81SBjoern A. Zeeb 
41766b4cac81SBjoern A. Zeeb 		vif = LVIF_TO_VIF(lvif);
41776b4cac81SBjoern A. Zeeb 		if (ourvifaddr != NULL &&
41786b4cac81SBjoern A. Zeeb 		    !IEEE80211_ADDR_EQ(vif->addr, ourvifaddr))
41796b4cac81SBjoern A. Zeeb 			continue;
41806b4cac81SBjoern A. Zeeb 		sta = linuxkpi_ieee80211_find_sta(vif, addr);
41816b4cac81SBjoern A. Zeeb 		if (sta != NULL)
41826b4cac81SBjoern A. Zeeb 			break;
41836b4cac81SBjoern A. Zeeb 	}
41848891c455SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_UNLOCK(lhw);
41856b4cac81SBjoern A. Zeeb 
41866b4cac81SBjoern A. Zeeb 	if (sta != NULL) {
41876b4cac81SBjoern A. Zeeb 		lsta = STA_TO_LSTA(sta);
41886b4cac81SBjoern A. Zeeb 		if (!lsta->added_to_drv)
41896b4cac81SBjoern A. Zeeb 			return (NULL);
41906b4cac81SBjoern A. Zeeb 	}
41916b4cac81SBjoern A. Zeeb 
41926b4cac81SBjoern A. Zeeb 	return (sta);
41936b4cac81SBjoern A. Zeeb }
41946b4cac81SBjoern A. Zeeb 
41956b4cac81SBjoern A. Zeeb struct sk_buff *
41966b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_tx_dequeue(struct ieee80211_hw *hw,
41976b4cac81SBjoern A. Zeeb     struct ieee80211_txq *txq)
41986b4cac81SBjoern A. Zeeb {
41996b4cac81SBjoern A. Zeeb 	struct lkpi_txq *ltxq;
42006b4cac81SBjoern A. Zeeb 	struct sk_buff *skb;
42016b4cac81SBjoern A. Zeeb 
42026b4cac81SBjoern A. Zeeb 	ltxq = TXQ_TO_LTXQ(txq);
42036b4cac81SBjoern A. Zeeb 	ltxq->seen_dequeue = true;
42046b4cac81SBjoern A. Zeeb 
42056b4cac81SBjoern A. Zeeb 	skb = skb_dequeue(&ltxq->skbq);
42066b4cac81SBjoern A. Zeeb 
42076b4cac81SBjoern A. Zeeb 	return (skb);
42086b4cac81SBjoern A. Zeeb }
42096b4cac81SBjoern A. Zeeb 
42106b4cac81SBjoern A. Zeeb void
42116b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_txq_get_depth(struct ieee80211_txq *txq,
421286220d3cSBjoern A. Zeeb     unsigned long *frame_cnt, unsigned long *byte_cnt)
42136b4cac81SBjoern A. Zeeb {
42146b4cac81SBjoern A. Zeeb 	struct lkpi_txq *ltxq;
42156b4cac81SBjoern A. Zeeb 	struct sk_buff *skb;
421686220d3cSBjoern A. Zeeb 	unsigned long fc, bc;
42176b4cac81SBjoern A. Zeeb 
42186b4cac81SBjoern A. Zeeb 	ltxq = TXQ_TO_LTXQ(txq);
42196b4cac81SBjoern A. Zeeb 
42206b4cac81SBjoern A. Zeeb 	fc = bc = 0;
42216b4cac81SBjoern A. Zeeb 	skb_queue_walk(&ltxq->skbq, skb) {
42226b4cac81SBjoern A. Zeeb 		fc++;
42236b4cac81SBjoern A. Zeeb 		bc += skb->len;
42246b4cac81SBjoern A. Zeeb 	}
42256b4cac81SBjoern A. Zeeb 	if (frame_cnt)
42266b4cac81SBjoern A. Zeeb 		*frame_cnt = fc;
42276b4cac81SBjoern A. Zeeb 	if (byte_cnt)
42286b4cac81SBjoern A. Zeeb 		*byte_cnt = bc;
42296b4cac81SBjoern A. Zeeb 
42306b4cac81SBjoern A. Zeeb 	/* Validate that this is doing the correct thing. */
42316b4cac81SBjoern A. Zeeb 	/* Should we keep track on en/dequeue? */
42326b4cac81SBjoern A. Zeeb 	IMPROVE();
42336b4cac81SBjoern A. Zeeb }
42346b4cac81SBjoern A. Zeeb 
42356b4cac81SBjoern A. Zeeb /*
42366b4cac81SBjoern A. Zeeb  * We are called from ieee80211_free_txskb() or ieee80211_tx_status().
42376b4cac81SBjoern A. Zeeb  * The latter tries to derive the success status from the info flags
42386b4cac81SBjoern A. Zeeb  * passed back from the driver.  rawx_mit() saves the ni on the m and the
42396b4cac81SBjoern A. Zeeb  * m on the skb for us to be able to give feedback to net80211.
42406b4cac81SBjoern A. Zeeb  */
42416b4cac81SBjoern A. Zeeb void
42426b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_free_txskb(struct ieee80211_hw *hw, struct sk_buff *skb,
42436b4cac81SBjoern A. Zeeb     int status)
42446b4cac81SBjoern A. Zeeb {
42456b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
42466b4cac81SBjoern A. Zeeb 	struct mbuf *m;
42476b4cac81SBjoern A. Zeeb 
42486b4cac81SBjoern A. Zeeb 	m = skb->m;
42496b4cac81SBjoern A. Zeeb 	skb->m = NULL;
42506b4cac81SBjoern A. Zeeb 
42516b4cac81SBjoern A. Zeeb 	if (m != NULL) {
42526b4cac81SBjoern A. Zeeb 		ni = m->m_pkthdr.PH_loc.ptr;
42536b4cac81SBjoern A. Zeeb 		/* Status: 0 is ok, != 0 is error. */
42546b4cac81SBjoern A. Zeeb 		ieee80211_tx_complete(ni, m, status);
42556b4cac81SBjoern A. Zeeb 		/* ni & mbuf were consumed. */
42566b4cac81SBjoern A. Zeeb 	}
42576b4cac81SBjoern A. Zeeb 
42586b4cac81SBjoern A. Zeeb 	kfree_skb(skb);
42596b4cac81SBjoern A. Zeeb }
42606b4cac81SBjoern A. Zeeb 
4261383b3e8fSBjoern A. Zeeb void
4262383b3e8fSBjoern A. Zeeb linuxkpi_ieee80211_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb)
4263383b3e8fSBjoern A. Zeeb {
4264383b3e8fSBjoern A. Zeeb 	struct ieee80211_tx_info *info;
4265383b3e8fSBjoern A. Zeeb 	struct ieee80211_ratectl_tx_status txs;
4266383b3e8fSBjoern A. Zeeb 	struct ieee80211_node *ni;
4267383b3e8fSBjoern A. Zeeb 	int status;
4268383b3e8fSBjoern A. Zeeb 
4269383b3e8fSBjoern A. Zeeb 	info = IEEE80211_SKB_CB(skb);
4270383b3e8fSBjoern A. Zeeb 
4271383b3e8fSBjoern A. Zeeb 	if (skb->m != NULL) {
4272383b3e8fSBjoern A. Zeeb 		struct mbuf *m;
4273383b3e8fSBjoern A. Zeeb 
4274383b3e8fSBjoern A. Zeeb 		m = skb->m;
4275383b3e8fSBjoern A. Zeeb 		ni = m->m_pkthdr.PH_loc.ptr;
4276383b3e8fSBjoern A. Zeeb 		memset(&txs, 0, sizeof(txs));
4277383b3e8fSBjoern A. Zeeb 	} else {
4278383b3e8fSBjoern A. Zeeb 		ni = NULL;
4279383b3e8fSBjoern A. Zeeb 	}
4280383b3e8fSBjoern A. Zeeb 
4281383b3e8fSBjoern A. Zeeb 	if (info->flags & IEEE80211_TX_STAT_ACK) {
4282383b3e8fSBjoern A. Zeeb 		status = 0;	/* No error. */
4283383b3e8fSBjoern A. Zeeb 		txs.status = IEEE80211_RATECTL_TX_SUCCESS;
4284383b3e8fSBjoern A. Zeeb 	} else {
4285383b3e8fSBjoern A. Zeeb 		status = 1;
4286383b3e8fSBjoern A. Zeeb 		txs.status = IEEE80211_RATECTL_TX_FAIL_UNSPECIFIED;
4287383b3e8fSBjoern A. Zeeb 	}
4288383b3e8fSBjoern A. Zeeb 
4289383b3e8fSBjoern A. Zeeb 	if (ni != NULL) {
4290e2c5ab09SJohn Baldwin 		int ridx __unused;
4291383b3e8fSBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
4292383b3e8fSBjoern A. Zeeb 		int old_rate;
4293383b3e8fSBjoern A. Zeeb 
4294383b3e8fSBjoern A. Zeeb 		old_rate = ni->ni_vap->iv_bss->ni_txrate;
4295383b3e8fSBjoern A. Zeeb #endif
4296383b3e8fSBjoern A. Zeeb 		txs.pktlen = skb->len;
4297383b3e8fSBjoern A. Zeeb 		txs.flags |= IEEE80211_RATECTL_STATUS_PKTLEN;
4298383b3e8fSBjoern A. Zeeb 		if (info->status.rates[0].count > 1) {
4299383b3e8fSBjoern A. Zeeb 			txs.long_retries = info->status.rates[0].count - 1;	/* 1 + retries in drivers. */
4300383b3e8fSBjoern A. Zeeb 			txs.flags |= IEEE80211_RATECTL_STATUS_LONG_RETRY;
4301383b3e8fSBjoern A. Zeeb 		}
4302383b3e8fSBjoern A. Zeeb #if 0		/* Unused in net80211 currently. */
4303383b3e8fSBjoern A. Zeeb 		/* XXX-BZ conver;t check .flags for MCS/VHT/.. */
4304383b3e8fSBjoern A. Zeeb 		txs.final_rate = info->status.rates[0].idx;
4305383b3e8fSBjoern A. Zeeb 		txs.flags |= IEEE80211_RATECTL_STATUS_FINAL_RATE;
4306383b3e8fSBjoern A. Zeeb #endif
4307383b3e8fSBjoern A. Zeeb 		if (info->status.is_valid_ack_signal) {
4308383b3e8fSBjoern A. Zeeb 			txs.rssi = info->status.ack_signal;		/* XXX-BZ CONVERT? */
4309383b3e8fSBjoern A. Zeeb 			txs.flags |= IEEE80211_RATECTL_STATUS_RSSI;
4310383b3e8fSBjoern A. Zeeb 		}
4311383b3e8fSBjoern A. Zeeb 
4312383b3e8fSBjoern A. Zeeb 		IMPROVE("only update of rate matches but that requires us to get a proper rate");
4313383b3e8fSBjoern A. Zeeb 		ieee80211_ratectl_tx_complete(ni, &txs);
4314383b3e8fSBjoern A. Zeeb 		ridx = ieee80211_ratectl_rate(ni->ni_vap->iv_bss, NULL, 0);
4315383b3e8fSBjoern A. Zeeb 
4316383b3e8fSBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
4317383b3e8fSBjoern A. Zeeb 		if (linuxkpi_debug_80211 & D80211_TRACE_TX) {
4318383b3e8fSBjoern A. Zeeb 			printf("TX-RATE: %s: old %d new %d ridx %d, "
4319383b3e8fSBjoern A. Zeeb 			    "long_retries %d\n", __func__,
4320383b3e8fSBjoern A. Zeeb 			    old_rate, ni->ni_vap->iv_bss->ni_txrate,
4321383b3e8fSBjoern A. Zeeb 			    ridx, txs.long_retries);
4322383b3e8fSBjoern A. Zeeb 		}
4323383b3e8fSBjoern A. Zeeb #endif
4324383b3e8fSBjoern A. Zeeb 	}
4325383b3e8fSBjoern A. Zeeb 
4326383b3e8fSBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
4327383b3e8fSBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_TX)
4328383b3e8fSBjoern A. Zeeb 		printf("TX-STATUS: %s: hw %p skb %p status %d : flags %#x "
4329383b3e8fSBjoern A. Zeeb 		    "band %u hw_queue %u tx_time_est %d : "
4330383b3e8fSBjoern A. Zeeb 		    "rates [ %u %u %#x, %u %u %#x, %u %u %#x, %u %u %#x ] "
4331383b3e8fSBjoern A. Zeeb 		    "ack_signal %u ampdu_ack_len %u ampdu_len %u antenna %u "
4332383b3e8fSBjoern A. Zeeb 		    "tx_time %u is_valid_ack_signal %u "
4333383b3e8fSBjoern A. Zeeb 		    "status_driver_data [ %p %p ]\n",
4334383b3e8fSBjoern A. Zeeb 		    __func__, hw, skb, status, info->flags,
4335383b3e8fSBjoern A. Zeeb 		    info->band, info->hw_queue, info->tx_time_est,
4336383b3e8fSBjoern A. Zeeb 		    info->status.rates[0].idx, info->status.rates[0].count,
4337383b3e8fSBjoern A. Zeeb 		    info->status.rates[0].flags,
4338383b3e8fSBjoern A. Zeeb 		    info->status.rates[1].idx, info->status.rates[1].count,
4339383b3e8fSBjoern A. Zeeb 		    info->status.rates[1].flags,
4340383b3e8fSBjoern A. Zeeb 		    info->status.rates[2].idx, info->status.rates[2].count,
4341383b3e8fSBjoern A. Zeeb 		    info->status.rates[2].flags,
4342383b3e8fSBjoern A. Zeeb 		    info->status.rates[3].idx, info->status.rates[3].count,
4343383b3e8fSBjoern A. Zeeb 		    info->status.rates[3].flags,
4344383b3e8fSBjoern A. Zeeb 		    info->status.ack_signal, info->status.ampdu_ack_len,
4345383b3e8fSBjoern A. Zeeb 		    info->status.ampdu_len, info->status.antenna,
4346383b3e8fSBjoern A. Zeeb 		    info->status.tx_time, info->status.is_valid_ack_signal,
4347383b3e8fSBjoern A. Zeeb 		    info->status.status_driver_data[0],
4348383b3e8fSBjoern A. Zeeb 		    info->status.status_driver_data[1]);
4349383b3e8fSBjoern A. Zeeb #endif
4350383b3e8fSBjoern A. Zeeb 
4351383b3e8fSBjoern A. Zeeb 	linuxkpi_ieee80211_free_txskb(hw, skb, status);
4352383b3e8fSBjoern A. Zeeb }
4353383b3e8fSBjoern A. Zeeb 
43546b4cac81SBjoern A. Zeeb /*
43556b4cac81SBjoern A. Zeeb  * This is an internal bandaid for the moment for the way we glue
43566b4cac81SBjoern A. Zeeb  * skbs and mbufs together for TX.  Once we have skbs backed by
43576b4cac81SBjoern A. Zeeb  * mbufs this should go away.
43586b4cac81SBjoern A. Zeeb  * This is a public function but kept on the private KPI (lkpi_)
43596b4cac81SBjoern A. Zeeb  * and is not exposed by a header file.
43606b4cac81SBjoern A. Zeeb  */
43616b4cac81SBjoern A. Zeeb static void
43626b4cac81SBjoern A. Zeeb lkpi_ieee80211_free_skb_mbuf(void *p)
43636b4cac81SBjoern A. Zeeb {
43646b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
43656b4cac81SBjoern A. Zeeb 	struct mbuf *m;
43666b4cac81SBjoern A. Zeeb 
43676b4cac81SBjoern A. Zeeb 	if (p == NULL)
43686b4cac81SBjoern A. Zeeb 		return;
43696b4cac81SBjoern A. Zeeb 
43706b4cac81SBjoern A. Zeeb 	m = (struct mbuf *)p;
43716b4cac81SBjoern A. Zeeb 	M_ASSERTPKTHDR(m);
43726b4cac81SBjoern A. Zeeb 
43736b4cac81SBjoern A. Zeeb 	ni = m->m_pkthdr.PH_loc.ptr;
43746b4cac81SBjoern A. Zeeb 	m->m_pkthdr.PH_loc.ptr = NULL;
43756b4cac81SBjoern A. Zeeb 	if (ni != NULL)
43766b4cac81SBjoern A. Zeeb 		ieee80211_free_node(ni);
43776b4cac81SBjoern A. Zeeb 	m_freem(m);
43786b4cac81SBjoern A. Zeeb }
43796b4cac81SBjoern A. Zeeb 
43806b4cac81SBjoern A. Zeeb void
43816b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_queue_delayed_work(struct ieee80211_hw *hw,
43826b4cac81SBjoern A. Zeeb     struct delayed_work *w, int delay)
43836b4cac81SBjoern A. Zeeb {
43846b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
43856b4cac81SBjoern A. Zeeb 
43866b4cac81SBjoern A. Zeeb 	/* Need to make sure hw is in a stable (non-suspended) state. */
43876b4cac81SBjoern A. Zeeb 	IMPROVE();
43886b4cac81SBjoern A. Zeeb 
43896b4cac81SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
43906b4cac81SBjoern A. Zeeb 	queue_delayed_work(lhw->workq, w, delay);
43916b4cac81SBjoern A. Zeeb }
43926b4cac81SBjoern A. Zeeb 
43936b4cac81SBjoern A. Zeeb void
43946b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_queue_work(struct ieee80211_hw *hw,
43956b4cac81SBjoern A. Zeeb     struct work_struct *w)
43966b4cac81SBjoern A. Zeeb {
43976b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
43986b4cac81SBjoern A. Zeeb 
43996b4cac81SBjoern A. Zeeb 	/* Need to make sure hw is in a stable (non-suspended) state. */
44006b4cac81SBjoern A. Zeeb 	IMPROVE();
44016b4cac81SBjoern A. Zeeb 
44026b4cac81SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
44036b4cac81SBjoern A. Zeeb 	queue_work(lhw->workq, w);
44046b4cac81SBjoern A. Zeeb }
44056b4cac81SBjoern A. Zeeb 
44066b4cac81SBjoern A. Zeeb struct sk_buff *
4407ade774b1SBjoern A. Zeeb linuxkpi_ieee80211_probereq_get(struct ieee80211_hw *hw, uint8_t *addr,
4408ade774b1SBjoern A. Zeeb     uint8_t *ssid, size_t ssid_len, size_t tailroom)
4409ade774b1SBjoern A. Zeeb {
4410ade774b1SBjoern A. Zeeb 	struct sk_buff *skb;
4411ade774b1SBjoern A. Zeeb 	struct ieee80211_frame *wh;
4412ade774b1SBjoern A. Zeeb 	uint8_t *p;
4413ade774b1SBjoern A. Zeeb 	size_t len;
4414ade774b1SBjoern A. Zeeb 
4415ade774b1SBjoern A. Zeeb 	len = sizeof(*wh);
4416ade774b1SBjoern A. Zeeb 	len += 2 + ssid_len;
4417ade774b1SBjoern A. Zeeb 
4418ade774b1SBjoern A. Zeeb 	skb = dev_alloc_skb(hw->extra_tx_headroom + len + tailroom);
4419ade774b1SBjoern A. Zeeb 	if (skb == NULL)
4420ade774b1SBjoern A. Zeeb 		return (NULL);
4421ade774b1SBjoern A. Zeeb 
4422ade774b1SBjoern A. Zeeb 	skb_reserve(skb, hw->extra_tx_headroom);
4423ade774b1SBjoern A. Zeeb 
4424ade774b1SBjoern A. Zeeb 	wh = skb_put_zero(skb, sizeof(*wh));
4425ade774b1SBjoern A. Zeeb 	wh->i_fc[0] = IEEE80211_FC0_VERSION_0;
4426ade774b1SBjoern A. Zeeb 	wh->i_fc[0] |= IEEE80211_FC0_SUBTYPE_PROBE_REQ | IEEE80211_FC0_TYPE_MGT;
4427ade774b1SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(wh->i_addr1, ieee80211broadcastaddr);
4428ade774b1SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(wh->i_addr2, addr);
4429ade774b1SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(wh->i_addr3, ieee80211broadcastaddr);
4430ade774b1SBjoern A. Zeeb 
4431ade774b1SBjoern A. Zeeb 	p = skb_put(skb, 2 + ssid_len);
4432ade774b1SBjoern A. Zeeb 	*p++ = IEEE80211_ELEMID_SSID;
4433ade774b1SBjoern A. Zeeb 	*p++ = ssid_len;
4434ade774b1SBjoern A. Zeeb 	if (ssid_len > 0)
4435ade774b1SBjoern A. Zeeb 		memcpy(p, ssid, ssid_len);
4436ade774b1SBjoern A. Zeeb 
4437ade774b1SBjoern A. Zeeb 	return (skb);
4438ade774b1SBjoern A. Zeeb }
4439ade774b1SBjoern A. Zeeb 
4440ade774b1SBjoern A. Zeeb struct sk_buff *
44416b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_pspoll_get(struct ieee80211_hw *hw,
44426b4cac81SBjoern A. Zeeb     struct ieee80211_vif *vif)
44436b4cac81SBjoern A. Zeeb {
44446b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
44456b4cac81SBjoern A. Zeeb 	struct ieee80211vap *vap;
44466b4cac81SBjoern A. Zeeb 	struct sk_buff *skb;
44476b4cac81SBjoern A. Zeeb 	struct ieee80211_frame_pspoll *psp;
44486b4cac81SBjoern A. Zeeb 	uint16_t v;
44496b4cac81SBjoern A. Zeeb 
44506b4cac81SBjoern A. Zeeb 	skb = dev_alloc_skb(hw->extra_tx_headroom + sizeof(*psp));
44516b4cac81SBjoern A. Zeeb 	if (skb == NULL)
44526b4cac81SBjoern A. Zeeb 		return (NULL);
44536b4cac81SBjoern A. Zeeb 
44546b4cac81SBjoern A. Zeeb 	skb_reserve(skb, hw->extra_tx_headroom);
44556b4cac81SBjoern A. Zeeb 
44566b4cac81SBjoern A. Zeeb 	lvif = VIF_TO_LVIF(vif);
44576b4cac81SBjoern A. Zeeb 	vap = LVIF_TO_VAP(lvif);
44586b4cac81SBjoern A. Zeeb 
44596b4cac81SBjoern A. Zeeb 	psp = skb_put_zero(skb, sizeof(*psp));
44606b4cac81SBjoern A. Zeeb 	psp->i_fc[0] = IEEE80211_FC0_VERSION_0;
44616b4cac81SBjoern A. Zeeb 	psp->i_fc[0] |= IEEE80211_FC0_SUBTYPE_PS_POLL | IEEE80211_FC0_TYPE_CTL;
44626b4cac81SBjoern A. Zeeb 	v = htole16(vif->bss_conf.aid | 1<<15 | 1<<16);
44636b4cac81SBjoern A. Zeeb 	memcpy(&psp->i_aid, &v, sizeof(v));
44646b4cac81SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(psp->i_bssid, vap->iv_bss->ni_macaddr);
44656b4cac81SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(psp->i_ta, vif->addr);
44666b4cac81SBjoern A. Zeeb 
44676b4cac81SBjoern A. Zeeb 	return (skb);
44686b4cac81SBjoern A. Zeeb }
44696b4cac81SBjoern A. Zeeb 
44706b4cac81SBjoern A. Zeeb struct sk_buff *
44716b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_nullfunc_get(struct ieee80211_hw *hw,
44726b4cac81SBjoern A. Zeeb     struct ieee80211_vif *vif, bool qos)
44736b4cac81SBjoern A. Zeeb {
44746b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
44756b4cac81SBjoern A. Zeeb 	struct ieee80211vap *vap;
44766b4cac81SBjoern A. Zeeb 	struct sk_buff *skb;
44776b4cac81SBjoern A. Zeeb 	struct ieee80211_frame *nullf;
44786b4cac81SBjoern A. Zeeb 
44796b4cac81SBjoern A. Zeeb 	skb = dev_alloc_skb(hw->extra_tx_headroom + sizeof(*nullf));
44806b4cac81SBjoern A. Zeeb 	if (skb == NULL)
44816b4cac81SBjoern A. Zeeb 		return (NULL);
44826b4cac81SBjoern A. Zeeb 
44836b4cac81SBjoern A. Zeeb 	skb_reserve(skb, hw->extra_tx_headroom);
44846b4cac81SBjoern A. Zeeb 
44856b4cac81SBjoern A. Zeeb 	lvif = VIF_TO_LVIF(vif);
44866b4cac81SBjoern A. Zeeb 	vap = LVIF_TO_VAP(lvif);
44876b4cac81SBjoern A. Zeeb 
44886b4cac81SBjoern A. Zeeb 	nullf = skb_put_zero(skb, sizeof(*nullf));
44896b4cac81SBjoern A. Zeeb 	nullf->i_fc[0] = IEEE80211_FC0_VERSION_0;
44906b4cac81SBjoern A. Zeeb 	nullf->i_fc[0] |= IEEE80211_FC0_SUBTYPE_NODATA | IEEE80211_FC0_TYPE_DATA;
44916b4cac81SBjoern A. Zeeb 	nullf->i_fc[1] = IEEE80211_FC1_DIR_TODS;
44926b4cac81SBjoern A. Zeeb 
44936b4cac81SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(nullf->i_addr1, vap->iv_bss->ni_bssid);
44946b4cac81SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(nullf->i_addr2, vif->addr);
44956b4cac81SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(nullf->i_addr3, vap->iv_bss->ni_macaddr);
44966b4cac81SBjoern A. Zeeb 
44976b4cac81SBjoern A. Zeeb 	return (skb);
44986b4cac81SBjoern A. Zeeb }
44996b4cac81SBjoern A. Zeeb 
45006b4cac81SBjoern A. Zeeb struct wireless_dev *
45016b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_vif_to_wdev(struct ieee80211_vif *vif)
45026b4cac81SBjoern A. Zeeb {
45036b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
45046b4cac81SBjoern A. Zeeb 
45056b4cac81SBjoern A. Zeeb 	lvif = VIF_TO_LVIF(vif);
45066b4cac81SBjoern A. Zeeb 	return (&lvif->wdev);
45076b4cac81SBjoern A. Zeeb }
45086b4cac81SBjoern A. Zeeb 
45096b4cac81SBjoern A. Zeeb void
45106b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_connection_loss(struct ieee80211_vif *vif)
45116b4cac81SBjoern A. Zeeb {
45126b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
45136b4cac81SBjoern A. Zeeb 	struct ieee80211vap *vap;
45146b4cac81SBjoern A. Zeeb 	enum ieee80211_state nstate;
45156b4cac81SBjoern A. Zeeb 	int arg;
45166b4cac81SBjoern A. Zeeb 
45176b4cac81SBjoern A. Zeeb 	lvif = VIF_TO_LVIF(vif);
45186b4cac81SBjoern A. Zeeb 	vap = LVIF_TO_VAP(lvif);
45196b4cac81SBjoern A. Zeeb 
45206b4cac81SBjoern A. Zeeb 	/*
4521f3229b62SBjoern A. Zeeb 	 * Go to init; otherwise we need to elaborately check state and
45226b4cac81SBjoern A. Zeeb 	 * handle accordingly, e.g., if in RUN we could call iv_bmiss.
45236b4cac81SBjoern A. Zeeb 	 * Let the statemachine handle all neccessary changes.
45246b4cac81SBjoern A. Zeeb 	 */
4525f3229b62SBjoern A. Zeeb 	nstate = IEEE80211_S_INIT;
4526bb81db90SBjoern A. Zeeb 	arg = 0;	/* Not a valid reason. */
45276b4cac81SBjoern A. Zeeb 
45289d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
45299d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE)
45306b4cac81SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s: vif %p\n", __func__, vif);
45319d9ba2b7SBjoern A. Zeeb #endif
45326b4cac81SBjoern A. Zeeb 	ieee80211_new_state(vap, nstate, arg);
45336b4cac81SBjoern A. Zeeb }
45346b4cac81SBjoern A. Zeeb 
4535bb81db90SBjoern A. Zeeb void
4536bb81db90SBjoern A. Zeeb linuxkpi_ieee80211_beacon_loss(struct ieee80211_vif *vif)
4537bb81db90SBjoern A. Zeeb {
4538bb81db90SBjoern A. Zeeb 	struct lkpi_vif *lvif;
4539bb81db90SBjoern A. Zeeb 	struct ieee80211vap *vap;
4540bb81db90SBjoern A. Zeeb 
4541bb81db90SBjoern A. Zeeb 	lvif = VIF_TO_LVIF(vif);
4542bb81db90SBjoern A. Zeeb 	vap = LVIF_TO_VAP(lvif);
4543bb81db90SBjoern A. Zeeb 
45449d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
45459d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE || vap->iv_state != IEEE80211_S_RUN)
4546bb81db90SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s: vif %p vap %p state %s\n", __func__,
4547bb81db90SBjoern A. Zeeb 		    vif, vap, ieee80211_state_name[vap->iv_state]);
45489d9ba2b7SBjoern A. Zeeb #endif
45493540911bSBjoern A. Zeeb 	ieee80211_beacon_miss(vap->iv_ic);
4550bb81db90SBjoern A. Zeeb }
4551bb81db90SBjoern A. Zeeb 
45526b4cac81SBjoern A. Zeeb MODULE_VERSION(linuxkpi_wlan, 1);
45536b4cac81SBjoern A. Zeeb MODULE_DEPEND(linuxkpi_wlan, linuxkpi, 1, 1, 1);
45546b4cac81SBjoern A. Zeeb MODULE_DEPEND(linuxkpi_wlan, wlan, 1, 1, 1);
4555