xref: /freebsd/sys/compat/linuxkpi/common/src/linux_80211.c (revision 582469016aed4fac3a7ead24dc31000edbb7e823)
16b4cac81SBjoern A. Zeeb /*-
28ac540d3SBjoern A. Zeeb  * Copyright (c) 2020-2023 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/param.h>
436b4cac81SBjoern A. Zeeb #include <sys/types.h>
446b4cac81SBjoern A. Zeeb #include <sys/kernel.h>
456b4cac81SBjoern A. Zeeb #include <sys/errno.h>
466b4cac81SBjoern A. Zeeb #include <sys/malloc.h>
476b4cac81SBjoern A. Zeeb #include <sys/module.h>
486b4cac81SBjoern A. Zeeb #include <sys/mutex.h>
496b4cac81SBjoern A. Zeeb #include <sys/socket.h>
506b4cac81SBjoern A. Zeeb #include <sys/sysctl.h>
516b4cac81SBjoern A. Zeeb #include <sys/queue.h>
526b4cac81SBjoern A. Zeeb #include <sys/taskqueue.h>
53527687a9SBjoern A. Zeeb #include <sys/libkern.h>
546b4cac81SBjoern A. Zeeb 
556b4cac81SBjoern A. Zeeb #include <net/if.h>
566b4cac81SBjoern A. Zeeb #include <net/if_var.h>
576b4cac81SBjoern A. Zeeb #include <net/if_media.h>
586b4cac81SBjoern A. Zeeb #include <net/ethernet.h>
596b4cac81SBjoern A. Zeeb 
606b4cac81SBjoern A. Zeeb #include <net80211/ieee80211_var.h>
616b4cac81SBjoern A. Zeeb #include <net80211/ieee80211_proto.h>
626b4cac81SBjoern A. Zeeb #include <net80211/ieee80211_ratectl.h>
636b4cac81SBjoern A. Zeeb #include <net80211/ieee80211_radiotap.h>
649fb91463SBjoern A. Zeeb #include <net80211/ieee80211_vht.h>
656b4cac81SBjoern A. Zeeb 
666b4cac81SBjoern A. Zeeb #define	LINUXKPI_NET80211
676b4cac81SBjoern A. Zeeb #include <net/mac80211.h>
686b4cac81SBjoern A. Zeeb 
696b4cac81SBjoern A. Zeeb #include <linux/workqueue.h>
706b4cac81SBjoern A. Zeeb #include "linux_80211.h"
716b4cac81SBjoern A. Zeeb 
724a67f1dfSBjoern A. Zeeb #define	LKPI_80211_WME
73b35f6cd0SBjoern A. Zeeb /* #define	LKPI_80211_HW_CRYPTO */
749fb91463SBjoern A. Zeeb /* #define	LKPI_80211_VHT */
759fb91463SBjoern A. Zeeb /* #define	LKPI_80211_HT */
769fb91463SBjoern A. Zeeb #if defined(LKPI_80211_VHT) && !defined(LKPI_80211_HT)
779fb91463SBjoern A. Zeeb #define	LKPI_80211_HT
789fb91463SBjoern A. Zeeb #endif
79b35f6cd0SBjoern A. Zeeb 
806b4cac81SBjoern A. Zeeb static MALLOC_DEFINE(M_LKPI80211, "lkpi80211", "LinuxKPI 80211 compat");
816b4cac81SBjoern A. Zeeb 
825a9a0d78SBjoern A. Zeeb /* XXX-BZ really want this and others in queue.h */
835a9a0d78SBjoern A. Zeeb #define	TAILQ_ELEM_INIT(elm, field) do {				\
845a9a0d78SBjoern A. Zeeb 	(elm)->field.tqe_next = NULL;					\
855a9a0d78SBjoern A. Zeeb 	(elm)->field.tqe_prev = NULL;					\
865a9a0d78SBjoern A. Zeeb } while (0)
875a9a0d78SBjoern A. Zeeb 
886b4cac81SBjoern A. Zeeb /* -------------------------------------------------------------------------- */
896b4cac81SBjoern A. Zeeb 
909d9ba2b7SBjoern A. Zeeb /* Keep public for as long as header files are using it too. */
919d9ba2b7SBjoern A. Zeeb int linuxkpi_debug_80211;
926b4cac81SBjoern A. Zeeb 
936b4cac81SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
949d9ba2b7SBjoern A. Zeeb SYSCTL_DECL(_compat_linuxkpi);
959d9ba2b7SBjoern A. Zeeb SYSCTL_NODE(_compat_linuxkpi, OID_AUTO, 80211, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
969d9ba2b7SBjoern A. Zeeb     "LinuxKPI 802.11 compatibility layer");
979d9ba2b7SBjoern A. Zeeb 
989d9ba2b7SBjoern A. Zeeb SYSCTL_INT(_compat_linuxkpi_80211, OID_AUTO, debug, CTLFLAG_RWTUN,
999d9ba2b7SBjoern A. Zeeb     &linuxkpi_debug_80211, 0, "LinuxKPI 802.11 debug level");
1009d9ba2b7SBjoern A. Zeeb 
1019d9ba2b7SBjoern A. Zeeb #define	UNIMPLEMENTED		if (linuxkpi_debug_80211 & D80211_TODO)		\
1026b4cac81SBjoern A. Zeeb     printf("XXX-TODO %s:%d: UNIMPLEMENTED\n", __func__, __LINE__)
1039d9ba2b7SBjoern A. Zeeb #define	TRACEOK()		if (linuxkpi_debug_80211 & D80211_TRACEOK)	\
1046b4cac81SBjoern A. Zeeb     printf("XXX-TODO %s:%d: TRACEPOINT\n", __func__, __LINE__)
1056b4cac81SBjoern A. Zeeb #else
1066b4cac81SBjoern A. Zeeb #define	UNIMPLEMENTED		do { } while (0)
1076b4cac81SBjoern A. Zeeb #define	TRACEOK()		do { } while (0)
1086b4cac81SBjoern A. Zeeb #endif
1096b4cac81SBjoern A. Zeeb 
1106b4cac81SBjoern A. Zeeb /* #define	PREP_TX_INFO_DURATION	(IEEE80211_TRANS_WAIT * 1000) */
1116b4cac81SBjoern A. Zeeb #ifndef PREP_TX_INFO_DURATION
1126b4cac81SBjoern A. Zeeb #define	PREP_TX_INFO_DURATION	0 /* Let the driver do its thing. */
1136b4cac81SBjoern A. Zeeb #endif
1146b4cac81SBjoern A. Zeeb 
1156b4cac81SBjoern A. Zeeb /* This is DSAP | SSAP | CTRL | ProtoID/OrgCode{3}. */
1166b4cac81SBjoern A. Zeeb const uint8_t rfc1042_header[6] = { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
1176b4cac81SBjoern A. Zeeb 
118b0f73768SBjoern A. Zeeb /* IEEE 802.11-05/0257r1 */
119b0f73768SBjoern A. Zeeb const uint8_t bridge_tunnel_header[6] = { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0xf8 };
120b0f73768SBjoern A. Zeeb 
121fb3c249eSBjoern A. Zeeb /* IEEE 802.11e Table 20i-UP-to-AC mappings. */
122fb3c249eSBjoern A. Zeeb static const uint8_t ieee80211e_up_to_ac[] = {
1234f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_BE,
1244f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_BK,
1254f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_BK,
1264f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_BE,
1274f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_VI,
1284f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_VI,
1294f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_VO,
1304f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_VO,
1314f61ef8bSBjoern A. Zeeb #if 0
1324f61ef8bSBjoern A. Zeeb 	IEEE80211_AC_VO, /* We treat MGMT as TID 8, which is set as AC_VO */
1334f61ef8bSBjoern A. Zeeb #endif
1344f61ef8bSBjoern A. Zeeb };
1354f61ef8bSBjoern A. Zeeb 
1366b4cac81SBjoern A. Zeeb const struct cfg80211_ops linuxkpi_mac80211cfgops = {
1376b4cac81SBjoern A. Zeeb 	/*
1386b4cac81SBjoern A. Zeeb 	 * XXX TODO need a "glue layer" to link cfg80211 ops to
1396b4cac81SBjoern A. Zeeb 	 * mac80211 and to the driver or net80211.
1406b4cac81SBjoern A. Zeeb 	 * Can we pass some on 1:1? Need to compare the (*f)().
1416b4cac81SBjoern A. Zeeb 	 */
1426b4cac81SBjoern A. Zeeb };
1436b4cac81SBjoern A. Zeeb 
144ac867c20SBjoern A. Zeeb #if 0
1456b4cac81SBjoern A. Zeeb static struct lkpi_sta *lkpi_find_lsta_by_ni(struct lkpi_vif *,
1466b4cac81SBjoern A. Zeeb     struct ieee80211_node *);
147ac867c20SBjoern A. Zeeb #endif
1486b4cac81SBjoern A. Zeeb static void lkpi_80211_txq_task(void *, int);
149759a996dSBjoern A. Zeeb static void lkpi_80211_lhw_rxq_task(void *, int);
1506b4cac81SBjoern A. Zeeb static void lkpi_ieee80211_free_skb_mbuf(void *);
1514a67f1dfSBjoern A. Zeeb #ifdef LKPI_80211_WME
1524a67f1dfSBjoern A. Zeeb static int lkpi_wme_update(struct lkpi_hw *, struct ieee80211vap *, bool);
1534a67f1dfSBjoern A. Zeeb #endif
1546b4cac81SBjoern A. Zeeb 
1559fb91463SBjoern A. Zeeb #if defined(LKPI_80211_HT)
1569fb91463SBjoern A. Zeeb static void
1579fb91463SBjoern A. Zeeb lkpi_sta_sync_ht_from_ni(struct ieee80211_sta *sta, struct ieee80211_node *ni, int *ht_rx_nss)
1589fb91463SBjoern A. Zeeb {
1599fb91463SBjoern A. Zeeb 	struct ieee80211vap *vap;
1609fb91463SBjoern A. Zeeb 	uint8_t *ie;
1619fb91463SBjoern A. Zeeb 	struct ieee80211_ht_cap *htcap;
1629fb91463SBjoern A. Zeeb 	int i, rx_nss;
1639fb91463SBjoern A. Zeeb 
1649fb91463SBjoern A. Zeeb 	if ((ni->ni_flags & IEEE80211_NODE_HT) == 0)
1659fb91463SBjoern A. Zeeb 		return;
1669fb91463SBjoern A. Zeeb 
1679fb91463SBjoern A. Zeeb 	if (IEEE80211_IS_CHAN_HT(ni->ni_chan) &&
1689fb91463SBjoern A. Zeeb 	    IEEE80211_IS_CHAN_HT40(ni->ni_chan))
1699fb91463SBjoern A. Zeeb 		sta->deflink.bandwidth = IEEE80211_STA_RX_BW_40;
1709fb91463SBjoern A. Zeeb 
1719fb91463SBjoern A. Zeeb 	sta->deflink.ht_cap.ht_supported = true;
1729fb91463SBjoern A. Zeeb 
1739fb91463SBjoern A. Zeeb 	/* htcap->ampdu_params_info */
1749fb91463SBjoern A. Zeeb 	vap = ni->ni_vap;
1759fb91463SBjoern A. Zeeb 	sta->deflink.ht_cap.ampdu_density = _IEEE80211_MASKSHIFT(ni->ni_htparam, IEEE80211_HTCAP_MPDUDENSITY);
1769fb91463SBjoern A. Zeeb 	if (sta->deflink.ht_cap.ampdu_density > vap->iv_ampdu_density)
1779fb91463SBjoern A. Zeeb 		sta->deflink.ht_cap.ampdu_density = vap->iv_ampdu_density;
1789fb91463SBjoern A. Zeeb 	sta->deflink.ht_cap.ampdu_factor = _IEEE80211_MASKSHIFT(ni->ni_htparam, IEEE80211_HTCAP_MAXRXAMPDU);
1799fb91463SBjoern A. Zeeb 	if (sta->deflink.ht_cap.ampdu_factor > vap->iv_ampdu_rxmax)
1809fb91463SBjoern A. Zeeb 		sta->deflink.ht_cap.ampdu_factor = vap->iv_ampdu_rxmax;
1819fb91463SBjoern A. Zeeb 
1829fb91463SBjoern A. Zeeb 	ie = ni->ni_ies.htcap_ie;
1839fb91463SBjoern A. Zeeb 	KASSERT(ie != NULL, ("%s: HT but no htcap_ie on ni %p\n", __func__, ni));
1849fb91463SBjoern A. Zeeb 	if (ie[0] == IEEE80211_ELEMID_VENDOR)
1859fb91463SBjoern A. Zeeb 		ie += 4;
1869fb91463SBjoern A. Zeeb 	ie += 2;
1879fb91463SBjoern A. Zeeb 	htcap = (struct ieee80211_ht_cap *)ie;
1889fb91463SBjoern A. Zeeb 	sta->deflink.ht_cap.cap = htcap->cap_info;
1899fb91463SBjoern A. Zeeb 	sta->deflink.ht_cap.mcs = htcap->mcs;
1909fb91463SBjoern A. Zeeb 
1919fb91463SBjoern A. Zeeb 	rx_nss = 0;
1929fb91463SBjoern A. Zeeb 	for (i = 0; i < nitems(htcap->mcs.rx_mask); i++) {
1939fb91463SBjoern A. Zeeb 		if (htcap->mcs.rx_mask[i])
1949fb91463SBjoern A. Zeeb 			rx_nss++;
1959fb91463SBjoern A. Zeeb 	}
1969fb91463SBjoern A. Zeeb 	if (ht_rx_nss != NULL)
1979fb91463SBjoern A. Zeeb 		*ht_rx_nss = rx_nss;
1989fb91463SBjoern A. Zeeb 
1999fb91463SBjoern A. Zeeb 	IMPROVE("sta->wme, sta->deflink.agg.max*");
2009fb91463SBjoern A. Zeeb }
2019fb91463SBjoern A. Zeeb #endif
2029fb91463SBjoern A. Zeeb 
2039fb91463SBjoern A. Zeeb #if defined(LKPI_80211_VHT)
2049fb91463SBjoern A. Zeeb static void
2059fb91463SBjoern A. Zeeb lkpi_sta_sync_vht_from_ni(struct ieee80211_sta *sta, struct ieee80211_node *ni, int *vht_rx_nss)
2069fb91463SBjoern A. Zeeb {
2079fb91463SBjoern A. Zeeb 
2089fb91463SBjoern A. Zeeb 	if ((ni->ni_flags & IEEE80211_NODE_VHT) == 0)
2099fb91463SBjoern A. Zeeb 		return;
2109fb91463SBjoern A. Zeeb 
2119fb91463SBjoern A. Zeeb 	if (IEEE80211_IS_CHAN_VHT(ni->ni_chan)) {
2129fb91463SBjoern A. Zeeb #ifdef __notyet__
2139fb91463SBjoern A. Zeeb 		if (IEEE80211_IS_CHAN_VHT80P80(ni->ni_chan)) {
2149fb91463SBjoern A. Zeeb 			sta->deflink.bandwidth = IEEE80211_STA_RX_BW_160; /* XXX? */
2159fb91463SBjoern A. Zeeb 		} else
2169fb91463SBjoern A. Zeeb #endif
2179fb91463SBjoern A. Zeeb 		if (IEEE80211_IS_CHAN_VHT160(ni->ni_chan))
2189fb91463SBjoern A. Zeeb 			sta->deflink.bandwidth = IEEE80211_STA_RX_BW_160;
2199fb91463SBjoern A. Zeeb 		else if (IEEE80211_IS_CHAN_VHT80(ni->ni_chan))
2209fb91463SBjoern A. Zeeb 			sta->deflink.bandwidth = IEEE80211_STA_RX_BW_80;
2219fb91463SBjoern A. Zeeb 	}
2229fb91463SBjoern A. Zeeb 
2239fb91463SBjoern A. Zeeb 	IMPROVE("VHT sync ni to sta");
2249fb91463SBjoern A. Zeeb 	return;
2259fb91463SBjoern A. Zeeb }
2269fb91463SBjoern A. Zeeb #endif
2279fb91463SBjoern A. Zeeb 
228d9f59799SBjoern A. Zeeb static void
22967674c1cSBjoern A. Zeeb lkpi_lsta_dump(struct lkpi_sta *lsta, struct ieee80211_node *ni,
23067674c1cSBjoern A. Zeeb     const char *_f, int _l)
231d9f59799SBjoern A. Zeeb {
232d9f59799SBjoern A. Zeeb 
2339d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
2349d9ba2b7SBjoern A. Zeeb 	if ((linuxkpi_debug_80211 & D80211_TRACE_STA) == 0)
235d9f59799SBjoern A. Zeeb 		return;
236d9f59799SBjoern A. Zeeb 	if (lsta == NULL)
237d9f59799SBjoern A. Zeeb 		return;
238d9f59799SBjoern A. Zeeb 
239d9f59799SBjoern A. Zeeb 	printf("%s:%d lsta %p ni %p sta %p\n",
24067674c1cSBjoern A. Zeeb 	    _f, _l, lsta, ni, &lsta->sta);
24167674c1cSBjoern A. Zeeb 	if (ni != NULL)
24267674c1cSBjoern A. Zeeb 		ieee80211_dump_node(NULL, ni);
243d9f59799SBjoern A. Zeeb 	printf("\ttxq_task txq len %d mtx\n", mbufq_len(&lsta->txq));
244d9f59799SBjoern A. Zeeb 	printf("\tkc %p state %d added_to_drv %d in_mgd %d\n",
245d9f59799SBjoern A. Zeeb 		lsta->kc, lsta->state, lsta->added_to_drv, lsta->in_mgd);
2469d9ba2b7SBjoern A. Zeeb #endif
247d9f59799SBjoern A. Zeeb }
248d9f59799SBjoern A. Zeeb 
249d9f59799SBjoern A. Zeeb static void
250d9f59799SBjoern A. Zeeb lkpi_lsta_remove(struct lkpi_sta *lsta, struct lkpi_vif *lvif)
251d9f59799SBjoern A. Zeeb {
252d9f59799SBjoern A. Zeeb 
253d9f59799SBjoern A. Zeeb 
254d9f59799SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
2550936c648SBjoern A. Zeeb 	KASSERT(lsta->lsta_entry.tqe_prev != NULL,
2560936c648SBjoern A. Zeeb 	    ("%s: lsta %p lsta_entry.tqe_prev %p ni %p\n", __func__,
2570936c648SBjoern A. Zeeb 	    lsta, lsta->lsta_entry.tqe_prev, lsta->ni));
258d9f59799SBjoern A. Zeeb 	TAILQ_REMOVE(&lvif->lsta_head, lsta, lsta_entry);
259d9f59799SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
260d9f59799SBjoern A. Zeeb }
261d9f59799SBjoern A. Zeeb 
2624f61ef8bSBjoern A. Zeeb static struct lkpi_sta *
2634f61ef8bSBjoern A. Zeeb lkpi_lsta_alloc(struct ieee80211vap *vap, const uint8_t mac[IEEE80211_ADDR_LEN],
2644f61ef8bSBjoern A. Zeeb     struct ieee80211_hw *hw, struct ieee80211_node *ni)
2654f61ef8bSBjoern A. Zeeb {
2664f61ef8bSBjoern A. Zeeb 	struct lkpi_sta *lsta;
2674f61ef8bSBjoern A. Zeeb 	struct lkpi_vif *lvif;
2684f61ef8bSBjoern A. Zeeb 	struct ieee80211_vif *vif;
2694f61ef8bSBjoern A. Zeeb 	struct ieee80211_sta *sta;
270b6b352e4SBjoern A. Zeeb 	int band, i, tid;
2719fb91463SBjoern A. Zeeb 	int ht_rx_nss;
2729fb91463SBjoern A. Zeeb 	int vht_rx_nss;
2734f61ef8bSBjoern A. Zeeb 
2744f61ef8bSBjoern A. Zeeb 	lsta = malloc(sizeof(*lsta) + hw->sta_data_size, M_LKPI80211,
2754f61ef8bSBjoern A. Zeeb 	    M_NOWAIT | M_ZERO);
2764f61ef8bSBjoern A. Zeeb 	if (lsta == NULL)
2774f61ef8bSBjoern A. Zeeb 		return (NULL);
2784f61ef8bSBjoern A. Zeeb 
2794f61ef8bSBjoern A. Zeeb 	lsta->added_to_drv = false;
2804f61ef8bSBjoern A. Zeeb 	lsta->state = IEEE80211_STA_NOTEXIST;
2814f61ef8bSBjoern A. Zeeb 	/*
2820936c648SBjoern A. Zeeb 	 * Link the ni to the lsta here without taking a reference.
2830936c648SBjoern A. Zeeb 	 * For one we would have to take the reference in node_init()
2840936c648SBjoern A. Zeeb 	 * as ieee80211_alloc_node() will initialise the refcount after us.
2850936c648SBjoern A. Zeeb 	 * For the other a ni and an lsta are 1:1 mapped and always together
2860936c648SBjoern A. Zeeb 	 * from [ic_]node_alloc() to [ic_]node_free() so we are essentally
2870936c648SBjoern A. Zeeb 	 * using the ni references for the lsta as well despite it being
2880936c648SBjoern A. Zeeb 	 * two separate allocations.
2894f61ef8bSBjoern A. Zeeb 	 */
2900936c648SBjoern A. Zeeb 	lsta->ni = ni;
2914f61ef8bSBjoern A. Zeeb 	/* The back-pointer "drv_data" to net80211_node let's us get lsta. */
2924f61ef8bSBjoern A. Zeeb 	ni->ni_drv_data = lsta;
2934f61ef8bSBjoern A. Zeeb 
2944f61ef8bSBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
2954f61ef8bSBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
2964f61ef8bSBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
2974f61ef8bSBjoern A. Zeeb 
2984f61ef8bSBjoern A. Zeeb 	IEEE80211_ADDR_COPY(sta->addr, mac);
299b6b352e4SBjoern A. Zeeb 
300b6b352e4SBjoern A. Zeeb 	/* TXQ */
3014f61ef8bSBjoern A. Zeeb 	for (tid = 0; tid < nitems(sta->txq); tid++) {
3024f61ef8bSBjoern A. Zeeb 		struct lkpi_txq *ltxq;
3034f61ef8bSBjoern A. Zeeb 
304d0d29110SBjoern A. Zeeb 		/* We are not limiting ourselves to hw.queues here. */
3054f61ef8bSBjoern A. Zeeb 		ltxq = malloc(sizeof(*ltxq) + hw->txq_data_size,
3064f61ef8bSBjoern A. Zeeb 		    M_LKPI80211, M_NOWAIT | M_ZERO);
3074f61ef8bSBjoern A. Zeeb 		if (ltxq == NULL)
3084f61ef8bSBjoern A. Zeeb 			goto cleanup;
3094f61ef8bSBjoern A. Zeeb 		/* iwlwifi//mvm/sta.c::tid_to_mac80211_ac[] */
3104f61ef8bSBjoern A. Zeeb 		if (tid == IEEE80211_NUM_TIDS) {
311d0d29110SBjoern A. Zeeb 			if (!ieee80211_hw_check(hw, STA_MMPDU_TXQ)) {
312d0d29110SBjoern A. Zeeb 				free(ltxq, M_LKPI80211);
313d0d29110SBjoern A. Zeeb 				continue;
314d0d29110SBjoern A. Zeeb 			}
315d0d29110SBjoern A. Zeeb 			IMPROVE("AP/if we support non-STA here too");
3164f61ef8bSBjoern A. Zeeb 			ltxq->txq.ac = IEEE80211_AC_VO;
3174f61ef8bSBjoern A. Zeeb 		} else {
318fb3c249eSBjoern A. Zeeb 			ltxq->txq.ac = ieee80211e_up_to_ac[tid & 7];
3194f61ef8bSBjoern A. Zeeb 		}
320d0d29110SBjoern A. Zeeb 		ltxq->seen_dequeue = false;
3210cbcfa19SBjoern A. Zeeb 		ltxq->stopped = false;
322d0d29110SBjoern A. Zeeb 		ltxq->txq.vif = vif;
3234f61ef8bSBjoern A. Zeeb 		ltxq->txq.tid = tid;
3244f61ef8bSBjoern A. Zeeb 		ltxq->txq.sta = sta;
3250cbcfa19SBjoern A. Zeeb 		TAILQ_ELEM_INIT(ltxq, txq_entry);
326d0d29110SBjoern A. Zeeb 		skb_queue_head_init(&ltxq->skbq);
327eac3646fSBjoern A. Zeeb 		LKPI_80211_LTXQ_LOCK_INIT(ltxq);
3284f61ef8bSBjoern A. Zeeb 		sta->txq[tid] = &ltxq->txq;
3294f61ef8bSBjoern A. Zeeb 	}
3304f61ef8bSBjoern A. Zeeb 
331b6b352e4SBjoern A. Zeeb 	/* Deflink information. */
332b6b352e4SBjoern A. Zeeb 	for (band = 0; band < NUM_NL80211_BANDS; band++) {
333b6b352e4SBjoern A. Zeeb 		struct ieee80211_supported_band *supband;
334b6b352e4SBjoern A. Zeeb 
335b6b352e4SBjoern A. Zeeb 		supband = hw->wiphy->bands[band];
336b6b352e4SBjoern A. Zeeb 		if (supband == NULL)
337b6b352e4SBjoern A. Zeeb 			continue;
338b6b352e4SBjoern A. Zeeb 
339b6b352e4SBjoern A. Zeeb 		for (i = 0; i < supband->n_bitrates; i++) {
340b6b352e4SBjoern A. Zeeb 
341b6b352e4SBjoern A. Zeeb 			IMPROVE("Further supband->bitrates[i]* checks?");
342b6b352e4SBjoern A. Zeeb 			/* or should we get them from the ni? */
343b6b352e4SBjoern A. Zeeb 			sta->deflink.supp_rates[band] |= BIT(i);
344b6b352e4SBjoern A. Zeeb 		}
345b6b352e4SBjoern A. Zeeb 	}
3469fb91463SBjoern A. Zeeb 
3476ffb7bd4SBjoern A. Zeeb 	sta->deflink.smps_mode = IEEE80211_SMPS_OFF;
3489fb91463SBjoern A. Zeeb 	sta->deflink.bandwidth = IEEE80211_STA_RX_BW_20;
3499fb91463SBjoern A. Zeeb 	sta->deflink.rx_nss = 0;
3509fb91463SBjoern A. Zeeb 
3519fb91463SBjoern A. Zeeb 	ht_rx_nss = 0;
3529fb91463SBjoern A. Zeeb #if defined(LKPI_80211_HT)
3539fb91463SBjoern A. Zeeb 	lkpi_sta_sync_ht_from_ni(sta, ni, &ht_rx_nss);
3549fb91463SBjoern A. Zeeb #endif
3559fb91463SBjoern A. Zeeb 	vht_rx_nss = 0;
3569fb91463SBjoern A. Zeeb #if defined(LKPI_80211_VHT)
3579fb91463SBjoern A. Zeeb 	lkpi_sta_sync_vht_from_ni(sta, ni, &vht_rx_nss);
3589fb91463SBjoern A. Zeeb #endif
3599fb91463SBjoern A. Zeeb 
3609fb91463SBjoern A. Zeeb 	sta->deflink.rx_nss = MAX(ht_rx_nss, sta->deflink.rx_nss);
3619fb91463SBjoern A. Zeeb 	sta->deflink.rx_nss = MAX(vht_rx_nss, sta->deflink.rx_nss);
3629fb91463SBjoern A. Zeeb 	IMPROVE("he, ... smps_mode, ..");
363b6b352e4SBjoern A. Zeeb 
3646ffb7bd4SBjoern A. Zeeb 	/* Link configuration. */
3656ffb7bd4SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(sta->deflink.addr, sta->addr);
3666ffb7bd4SBjoern A. Zeeb 	sta->link[0] = &sta->deflink;
3676ffb7bd4SBjoern A. Zeeb 	for (i = 1; i < nitems(sta->link); i++) {
3686ffb7bd4SBjoern A. Zeeb 		IMPROVE("more links; only link[0] = deflink currently.");
3696ffb7bd4SBjoern A. Zeeb 	}
3706ffb7bd4SBjoern A. Zeeb 
3714f61ef8bSBjoern A. Zeeb 	/* Deferred TX path. */
372fa4e4257SBjoern A. Zeeb 	LKPI_80211_LSTA_TXQ_LOCK_INIT(lsta);
3734f61ef8bSBjoern A. Zeeb 	TASK_INIT(&lsta->txq_task, 0, lkpi_80211_txq_task, lsta);
3744f61ef8bSBjoern A. Zeeb 	mbufq_init(&lsta->txq, IFQ_MAXLEN);
3750936c648SBjoern A. Zeeb 	lsta->txq_ready = true;
3764f61ef8bSBjoern A. Zeeb 
3774f61ef8bSBjoern A. Zeeb 	return (lsta);
3784f61ef8bSBjoern A. Zeeb 
3794f61ef8bSBjoern A. Zeeb cleanup:
380eac3646fSBjoern A. Zeeb 	for (; tid >= 0; tid--) {
381eac3646fSBjoern A. Zeeb 		struct lkpi_txq *ltxq;
382eac3646fSBjoern A. Zeeb 
383eac3646fSBjoern A. Zeeb 		ltxq = TXQ_TO_LTXQ(sta->txq[tid]);
384eac3646fSBjoern A. Zeeb 		LKPI_80211_LTXQ_LOCK_DESTROY(ltxq);
3854f61ef8bSBjoern A. Zeeb 		free(sta->txq[tid], M_LKPI80211);
386eac3646fSBjoern A. Zeeb 	}
3874f61ef8bSBjoern A. Zeeb 	free(lsta, M_LKPI80211);
3884f61ef8bSBjoern A. Zeeb 	return (NULL);
3894f61ef8bSBjoern A. Zeeb }
3904f61ef8bSBjoern A. Zeeb 
3910936c648SBjoern A. Zeeb static void
3920936c648SBjoern A. Zeeb lkpi_lsta_free(struct lkpi_sta *lsta, struct ieee80211_node *ni)
3930936c648SBjoern A. Zeeb {
3940936c648SBjoern A. Zeeb 	struct mbuf *m;
3950936c648SBjoern A. Zeeb 
3960936c648SBjoern A. Zeeb 	if (lsta->added_to_drv)
3970936c648SBjoern A. Zeeb 		panic("%s: Trying to free an lsta still known to firmware: "
3980936c648SBjoern A. Zeeb 		    "lsta %p ni %p added_to_drv %d\n",
3990936c648SBjoern A. Zeeb 		    __func__, lsta, ni, lsta->added_to_drv);
4000936c648SBjoern A. Zeeb 
4010936c648SBjoern A. Zeeb 	/* XXX-BZ free resources, ... */
4020936c648SBjoern A. Zeeb 	IMPROVE();
4030936c648SBjoern A. Zeeb 
404fa4e4257SBjoern A. Zeeb 	/* Drain sta->txq[] */
405fa4e4257SBjoern A. Zeeb 
406fa4e4257SBjoern A. Zeeb 	LKPI_80211_LSTA_TXQ_LOCK(lsta);
4070936c648SBjoern A. Zeeb 	lsta->txq_ready = false;
408fa4e4257SBjoern A. Zeeb 	LKPI_80211_LSTA_TXQ_UNLOCK(lsta);
4090936c648SBjoern A. Zeeb 
4100936c648SBjoern A. Zeeb 	/* Drain taskq, won't be restarted until added_to_drv is set again. */
4110936c648SBjoern A. Zeeb 	while (taskqueue_cancel(taskqueue_thread, &lsta->txq_task, NULL) != 0)
4120936c648SBjoern A. Zeeb 		taskqueue_drain(taskqueue_thread, &lsta->txq_task);
4130936c648SBjoern A. Zeeb 
4140936c648SBjoern A. Zeeb 	/* Flush mbufq (make sure to release ni refs!). */
4150936c648SBjoern A. Zeeb 	m = mbufq_dequeue(&lsta->txq);
4160936c648SBjoern A. Zeeb 	while (m != NULL) {
4170936c648SBjoern A. Zeeb 		struct ieee80211_node *nim;
4180936c648SBjoern A. Zeeb 
4190936c648SBjoern A. Zeeb 		nim = (struct ieee80211_node *)m->m_pkthdr.rcvif;
4200936c648SBjoern A. Zeeb 		if (nim != NULL)
4210936c648SBjoern A. Zeeb 			ieee80211_free_node(nim);
4220936c648SBjoern A. Zeeb 		m_freem(m);
4230936c648SBjoern A. Zeeb 		m = mbufq_dequeue(&lsta->txq);
4240936c648SBjoern A. Zeeb 	}
4250936c648SBjoern A. Zeeb 	KASSERT(mbufq_empty(&lsta->txq), ("%s: lsta %p has txq len %d != 0\n",
4260936c648SBjoern A. Zeeb 	    __func__, lsta, mbufq_len(&lsta->txq)));
427fa4e4257SBjoern A. Zeeb 	LKPI_80211_LSTA_TXQ_LOCK_DESTROY(lsta);
4280936c648SBjoern A. Zeeb 
4290936c648SBjoern A. Zeeb 	/* Remove lsta from vif; that is done by the state machine.  Should assert it? */
4300936c648SBjoern A. Zeeb 
4310936c648SBjoern A. Zeeb 	IMPROVE("Make sure everything is cleaned up.");
4320936c648SBjoern A. Zeeb 
4330936c648SBjoern A. Zeeb 	/* Free lsta. */
4340936c648SBjoern A. Zeeb 	lsta->ni = NULL;
4350936c648SBjoern A. Zeeb 	ni->ni_drv_data = NULL;
4360936c648SBjoern A. Zeeb 	free(lsta, M_LKPI80211);
4370936c648SBjoern A. Zeeb }
4380936c648SBjoern A. Zeeb 
4390936c648SBjoern A. Zeeb 
4406b4cac81SBjoern A. Zeeb static enum nl80211_band
4416b4cac81SBjoern A. Zeeb lkpi_net80211_chan_to_nl80211_band(struct ieee80211_channel *c)
4426b4cac81SBjoern A. Zeeb {
4436b4cac81SBjoern A. Zeeb 
4446b4cac81SBjoern A. Zeeb 	if (IEEE80211_IS_CHAN_2GHZ(c))
4456b4cac81SBjoern A. Zeeb 		return (NL80211_BAND_2GHZ);
4466b4cac81SBjoern A. Zeeb 	else if (IEEE80211_IS_CHAN_5GHZ(c))
4476b4cac81SBjoern A. Zeeb 		return (NL80211_BAND_5GHZ);
4486b4cac81SBjoern A. Zeeb #ifdef __notyet__
4496b4cac81SBjoern A. Zeeb 	else if ()
4506b4cac81SBjoern A. Zeeb 		return (NL80211_BAND_6GHZ);
4516b4cac81SBjoern A. Zeeb 	else if ()
4526b4cac81SBjoern A. Zeeb 		return (NL80211_BAND_60GHZ);
4536b4cac81SBjoern A. Zeeb 	else if (IEEE80211_IS_CHAN_GSM(c))
4546b4cac81SBjoern A. Zeeb 		return (NL80211_BAND_XXX);
4556b4cac81SBjoern A. Zeeb #endif
4566b4cac81SBjoern A. Zeeb 	else
4576b4cac81SBjoern A. Zeeb 		panic("%s: unsupported band. c %p flags %#x\n",
4586b4cac81SBjoern A. Zeeb 		    __func__, c, c->ic_flags);
4596b4cac81SBjoern A. Zeeb }
4606b4cac81SBjoern A. Zeeb 
4616b4cac81SBjoern A. Zeeb static uint32_t
4626b4cac81SBjoern A. Zeeb lkpi_nl80211_band_to_net80211_band(enum nl80211_band band)
4636b4cac81SBjoern A. Zeeb {
4646b4cac81SBjoern A. Zeeb 
4656b4cac81SBjoern A. Zeeb 	/* XXX-BZ this is just silly; net80211 is too convoluted. */
4666b4cac81SBjoern A. Zeeb 	/* IEEE80211_CHAN_A / _G / .. doesn't really work either. */
4676b4cac81SBjoern A. Zeeb 	switch (band) {
4686b4cac81SBjoern A. Zeeb 	case NL80211_BAND_2GHZ:
4696b4cac81SBjoern A. Zeeb 		return (IEEE80211_CHAN_2GHZ);
4706b4cac81SBjoern A. Zeeb 		break;
4716b4cac81SBjoern A. Zeeb 	case NL80211_BAND_5GHZ:
4726b4cac81SBjoern A. Zeeb 		return (IEEE80211_CHAN_5GHZ);
4736b4cac81SBjoern A. Zeeb 		break;
4746b4cac81SBjoern A. Zeeb 	case NL80211_BAND_60GHZ:
4756b4cac81SBjoern A. Zeeb 		break;
4766b4cac81SBjoern A. Zeeb 	case NL80211_BAND_6GHZ:
4776b4cac81SBjoern A. Zeeb 		break;
4786b4cac81SBjoern A. Zeeb 	default:
4796b4cac81SBjoern A. Zeeb 		panic("%s: unsupported band %u\n", __func__, band);
4806b4cac81SBjoern A. Zeeb 		break;
4816b4cac81SBjoern A. Zeeb 	}
4826b4cac81SBjoern A. Zeeb 
4836b4cac81SBjoern A. Zeeb 	IMPROVE();
4846b4cac81SBjoern A. Zeeb 	return (0x00);
4856b4cac81SBjoern A. Zeeb }
4866b4cac81SBjoern A. Zeeb 
487e3a0b120SBjoern A. Zeeb #if 0
4886b4cac81SBjoern A. Zeeb static enum ieee80211_ac_numbers
4896b4cac81SBjoern A. Zeeb lkpi_ac_net_to_l80211(int ac)
4906b4cac81SBjoern A. Zeeb {
4916b4cac81SBjoern A. Zeeb 
4926b4cac81SBjoern A. Zeeb 	switch (ac) {
4936b4cac81SBjoern A. Zeeb 	case WME_AC_VO:
4946b4cac81SBjoern A. Zeeb 		return (IEEE80211_AC_VO);
4956b4cac81SBjoern A. Zeeb 	case WME_AC_VI:
4966b4cac81SBjoern A. Zeeb 		return (IEEE80211_AC_VI);
4976b4cac81SBjoern A. Zeeb 	case WME_AC_BE:
4986b4cac81SBjoern A. Zeeb 		return (IEEE80211_AC_BE);
4996b4cac81SBjoern A. Zeeb 	case WME_AC_BK:
5006b4cac81SBjoern A. Zeeb 		return (IEEE80211_AC_BK);
5016b4cac81SBjoern A. Zeeb 	default:
5026b4cac81SBjoern A. Zeeb 		printf("%s: invalid WME_AC_* input: ac = %d\n", __func__, ac);
5036b4cac81SBjoern A. Zeeb 		return (IEEE80211_AC_BE);
5046b4cac81SBjoern A. Zeeb 	}
5056b4cac81SBjoern A. Zeeb }
506e3a0b120SBjoern A. Zeeb #endif
5076b4cac81SBjoern A. Zeeb 
5086b4cac81SBjoern A. Zeeb static enum nl80211_iftype
5096b4cac81SBjoern A. Zeeb lkpi_opmode_to_vif_type(enum ieee80211_opmode opmode)
5106b4cac81SBjoern A. Zeeb {
5116b4cac81SBjoern A. Zeeb 
5126b4cac81SBjoern A. Zeeb 	switch (opmode) {
5136b4cac81SBjoern A. Zeeb 	case IEEE80211_M_IBSS:
5146b4cac81SBjoern A. Zeeb 		return (NL80211_IFTYPE_ADHOC);
5156b4cac81SBjoern A. Zeeb 		break;
5166b4cac81SBjoern A. Zeeb 	case IEEE80211_M_STA:
5176b4cac81SBjoern A. Zeeb 		return (NL80211_IFTYPE_STATION);
5186b4cac81SBjoern A. Zeeb 		break;
5196b4cac81SBjoern A. Zeeb 	case IEEE80211_M_WDS:
5206b4cac81SBjoern A. Zeeb 		return (NL80211_IFTYPE_WDS);
5216b4cac81SBjoern A. Zeeb 		break;
5226b4cac81SBjoern A. Zeeb 	case IEEE80211_M_HOSTAP:
5236b4cac81SBjoern A. Zeeb 		return (NL80211_IFTYPE_AP);
5246b4cac81SBjoern A. Zeeb 		break;
5256b4cac81SBjoern A. Zeeb 	case IEEE80211_M_MONITOR:
5266b4cac81SBjoern A. Zeeb 		return (NL80211_IFTYPE_MONITOR);
5276b4cac81SBjoern A. Zeeb 		break;
5286b4cac81SBjoern A. Zeeb 	case IEEE80211_M_MBSS:
5296b4cac81SBjoern A. Zeeb 		return (NL80211_IFTYPE_MESH_POINT);
5306b4cac81SBjoern A. Zeeb 		break;
5316b4cac81SBjoern A. Zeeb 	case IEEE80211_M_AHDEMO:
5326b4cac81SBjoern A. Zeeb 		/* FALLTHROUGH */
5336b4cac81SBjoern A. Zeeb 	default:
5346b4cac81SBjoern A. Zeeb 		printf("ERROR: %s: unsupported opmode %d\n", __func__, opmode);
5356b4cac81SBjoern A. Zeeb 		/* FALLTHROUGH */
5366b4cac81SBjoern A. Zeeb 	}
5376b4cac81SBjoern A. Zeeb 	return (NL80211_IFTYPE_UNSPECIFIED);
5386b4cac81SBjoern A. Zeeb }
5396b4cac81SBjoern A. Zeeb 
540b35f6cd0SBjoern A. Zeeb #ifdef LKPI_80211_HW_CRYPTO
5416b4cac81SBjoern A. Zeeb static uint32_t
5426b4cac81SBjoern A. Zeeb lkpi_l80211_to_net80211_cyphers(uint32_t wlan_cipher_suite)
5436b4cac81SBjoern A. Zeeb {
5446b4cac81SBjoern A. Zeeb 
5456b4cac81SBjoern A. Zeeb 	switch (wlan_cipher_suite) {
5466b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_WEP40:
5476b4cac81SBjoern A. Zeeb 		return (IEEE80211_CRYPTO_WEP);
5486b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_TKIP:
5496b4cac81SBjoern A. Zeeb 		return (IEEE80211_CRYPTO_TKIP);
5506b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_CCMP:
551906521f8SBjoern A. Zeeb 		return (IEEE80211_CRYPTO_AES_CCM);
5526b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_WEP104:
5536b4cac81SBjoern A. Zeeb 		return (IEEE80211_CRYPTO_WEP);
5546b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_AES_CMAC:
5556b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_GCMP:
5566b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_GCMP_256:
5576b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_CCMP_256:
5586b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_BIP_GMAC_128:
5596b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_BIP_GMAC_256:
5606b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_BIP_CMAC_256:
5616b4cac81SBjoern A. Zeeb 		printf("%s: unsupported WLAN Cipher Suite %#08x | %u\n", __func__,
5626b4cac81SBjoern A. Zeeb 		    wlan_cipher_suite >> 8, wlan_cipher_suite & 0xff);
5636b4cac81SBjoern A. Zeeb 		break;
5646b4cac81SBjoern A. Zeeb 	default:
5656b4cac81SBjoern A. Zeeb 		printf("%s: unknown WLAN Cipher Suite %#08x | %u\n", __func__,
5666b4cac81SBjoern A. Zeeb 		    wlan_cipher_suite >> 8, wlan_cipher_suite & 0xff);
5676b4cac81SBjoern A. Zeeb 	}
5686b4cac81SBjoern A. Zeeb 
5696b4cac81SBjoern A. Zeeb 	return (0);
5706b4cac81SBjoern A. Zeeb }
5716b4cac81SBjoern A. Zeeb 
5726b4cac81SBjoern A. Zeeb static uint32_t
5736b4cac81SBjoern A. Zeeb lkpi_net80211_to_l80211_cipher_suite(uint32_t cipher, uint8_t keylen)
5746b4cac81SBjoern A. Zeeb {
5756b4cac81SBjoern A. Zeeb 
5766b4cac81SBjoern A. Zeeb 	switch (cipher) {
5776b4cac81SBjoern A. Zeeb 	case IEEE80211_CIPHER_TKIP:
5786b4cac81SBjoern A. Zeeb 		return (WLAN_CIPHER_SUITE_TKIP);
5796b4cac81SBjoern A. Zeeb 	case IEEE80211_CIPHER_AES_CCM:
5806b4cac81SBjoern A. Zeeb 		return (WLAN_CIPHER_SUITE_CCMP);
5816b4cac81SBjoern A. Zeeb 	case IEEE80211_CIPHER_WEP:
5826b4cac81SBjoern A. Zeeb 		if (keylen < 8)
5836b4cac81SBjoern A. Zeeb 			return (WLAN_CIPHER_SUITE_WEP40);
5846b4cac81SBjoern A. Zeeb 		else
5856b4cac81SBjoern A. Zeeb 			return (WLAN_CIPHER_SUITE_WEP104);
5866b4cac81SBjoern A. Zeeb 		break;
5876b4cac81SBjoern A. Zeeb 	case IEEE80211_CIPHER_AES_OCB:
5886b4cac81SBjoern A. Zeeb 	case IEEE80211_CIPHER_TKIPMIC:
5896b4cac81SBjoern A. Zeeb 	case IEEE80211_CIPHER_CKIP:
5906b4cac81SBjoern A. Zeeb 	case IEEE80211_CIPHER_NONE:
5916b4cac81SBjoern A. Zeeb 		printf("%s: unsupported cipher %#010x\n", __func__, cipher);
5926b4cac81SBjoern A. Zeeb 		break;
5936b4cac81SBjoern A. Zeeb 	default:
5946b4cac81SBjoern A. Zeeb 		printf("%s: unknown cipher %#010x\n", __func__, cipher);
5956b4cac81SBjoern A. Zeeb 	};
5966b4cac81SBjoern A. Zeeb 	return (0);
5976b4cac81SBjoern A. Zeeb }
5986b4cac81SBjoern A. Zeeb #endif
5996b4cac81SBjoern A. Zeeb 
6006b4cac81SBjoern A. Zeeb #ifdef __notyet__
6016b4cac81SBjoern A. Zeeb static enum ieee80211_sta_state
6026b4cac81SBjoern A. Zeeb lkpi_net80211_state_to_sta_state(enum ieee80211_state state)
6036b4cac81SBjoern A. Zeeb {
6046b4cac81SBjoern A. Zeeb 
6056b4cac81SBjoern A. Zeeb 	/*
6066b4cac81SBjoern A. Zeeb 	 * XXX-BZ The net80211 states are "try to ..", the lkpi8011 states are
6076b4cac81SBjoern A. Zeeb 	 * "done".  Also ASSOC/AUTHORIZED are both "RUN" then?
6086b4cac81SBjoern A. Zeeb 	 */
6096b4cac81SBjoern A. Zeeb 	switch (state) {
6106b4cac81SBjoern A. Zeeb 	case IEEE80211_S_INIT:
6116b4cac81SBjoern A. Zeeb 		return (IEEE80211_STA_NOTEXIST);
6126b4cac81SBjoern A. Zeeb 	case IEEE80211_S_SCAN:
6136b4cac81SBjoern A. Zeeb 		return (IEEE80211_STA_NONE);
6146b4cac81SBjoern A. Zeeb 	case IEEE80211_S_AUTH:
6156b4cac81SBjoern A. Zeeb 		return (IEEE80211_STA_AUTH);
6166b4cac81SBjoern A. Zeeb 	case IEEE80211_S_ASSOC:
6176b4cac81SBjoern A. Zeeb 		return (IEEE80211_STA_ASSOC);
6186b4cac81SBjoern A. Zeeb 	case IEEE80211_S_RUN:
6196b4cac81SBjoern A. Zeeb 		return (IEEE80211_STA_AUTHORIZED);
6206b4cac81SBjoern A. Zeeb 	case IEEE80211_S_CAC:
6216b4cac81SBjoern A. Zeeb 	case IEEE80211_S_CSA:
6226b4cac81SBjoern A. Zeeb 	case IEEE80211_S_SLEEP:
6236b4cac81SBjoern A. Zeeb 	default:
6246b4cac81SBjoern A. Zeeb 		UNIMPLEMENTED;
6256b4cac81SBjoern A. Zeeb 	};
6266b4cac81SBjoern A. Zeeb 
6276b4cac81SBjoern A. Zeeb 	return (IEEE80211_STA_NOTEXIST);
6286b4cac81SBjoern A. Zeeb }
6296b4cac81SBjoern A. Zeeb #endif
6306b4cac81SBjoern A. Zeeb 
6316b4cac81SBjoern A. Zeeb static struct linuxkpi_ieee80211_channel *
6326b4cac81SBjoern A. Zeeb lkpi_find_lkpi80211_chan(struct lkpi_hw *lhw,
6336b4cac81SBjoern A. Zeeb     struct ieee80211_channel *c)
6346b4cac81SBjoern A. Zeeb {
6356b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
6366b4cac81SBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel *channels;
6376b4cac81SBjoern A. Zeeb 	enum nl80211_band band;
6386b4cac81SBjoern A. Zeeb 	int i, nchans;
6396b4cac81SBjoern A. Zeeb 
6406b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
6416b4cac81SBjoern A. Zeeb 	band = lkpi_net80211_chan_to_nl80211_band(c);
6426b4cac81SBjoern A. Zeeb 	if (hw->wiphy->bands[band] == NULL)
6436b4cac81SBjoern A. Zeeb 		return (NULL);
6446b4cac81SBjoern A. Zeeb 
6456b4cac81SBjoern A. Zeeb 	nchans = hw->wiphy->bands[band]->n_channels;
6466b4cac81SBjoern A. Zeeb 	if (nchans <= 0)
6476b4cac81SBjoern A. Zeeb 		return (NULL);
6486b4cac81SBjoern A. Zeeb 
6496b4cac81SBjoern A. Zeeb 	channels = hw->wiphy->bands[band]->channels;
6506b4cac81SBjoern A. Zeeb 	for (i = 0; i < nchans; i++) {
6516b4cac81SBjoern A. Zeeb 		if (channels[i].hw_value == c->ic_ieee)
6526b4cac81SBjoern A. Zeeb 			return (&channels[i]);
6536b4cac81SBjoern A. Zeeb 	}
6546b4cac81SBjoern A. Zeeb 
6556b4cac81SBjoern A. Zeeb 	return (NULL);
6566b4cac81SBjoern A. Zeeb }
6576b4cac81SBjoern A. Zeeb 
6582ac8a218SBjoern A. Zeeb #if 0
6596b4cac81SBjoern A. Zeeb static struct linuxkpi_ieee80211_channel *
6606b4cac81SBjoern A. Zeeb lkpi_get_lkpi80211_chan(struct ieee80211com *ic, struct ieee80211_node *ni)
6616b4cac81SBjoern A. Zeeb {
6626b4cac81SBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel *chan;
6636b4cac81SBjoern A. Zeeb 	struct ieee80211_channel *c;
6646b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
6656b4cac81SBjoern A. Zeeb 
6666b4cac81SBjoern A. Zeeb 	chan = NULL;
6676b4cac81SBjoern A. Zeeb 	if (ni != NULL && ni->ni_chan != IEEE80211_CHAN_ANYC)
6686b4cac81SBjoern A. Zeeb 		c = ni->ni_chan;
6696b4cac81SBjoern A. Zeeb 	else if (ic->ic_bsschan != IEEE80211_CHAN_ANYC)
6706b4cac81SBjoern A. Zeeb 		c = ic->ic_bsschan;
6716b4cac81SBjoern A. Zeeb 	else if (ic->ic_curchan != IEEE80211_CHAN_ANYC)
6726b4cac81SBjoern A. Zeeb 		c = ic->ic_curchan;
6736b4cac81SBjoern A. Zeeb 	else
6746b4cac81SBjoern A. Zeeb 		c = NULL;
6756b4cac81SBjoern A. Zeeb 
6766b4cac81SBjoern A. Zeeb 	if (c != NULL && c != IEEE80211_CHAN_ANYC) {
6776b4cac81SBjoern A. Zeeb 		lhw = ic->ic_softc;
6786b4cac81SBjoern A. Zeeb 		chan = lkpi_find_lkpi80211_chan(lhw, c);
6796b4cac81SBjoern A. Zeeb 	}
6806b4cac81SBjoern A. Zeeb 
6816b4cac81SBjoern A. Zeeb 	return (chan);
6826b4cac81SBjoern A. Zeeb }
6832ac8a218SBjoern A. Zeeb #endif
6846b4cac81SBjoern A. Zeeb 
6852e183d99SBjoern A. Zeeb struct linuxkpi_ieee80211_channel *
6862e183d99SBjoern A. Zeeb linuxkpi_ieee80211_get_channel(struct wiphy *wiphy, uint32_t freq)
6872e183d99SBjoern A. Zeeb {
6882e183d99SBjoern A. Zeeb 	enum nl80211_band band;
6892e183d99SBjoern A. Zeeb 
6902e183d99SBjoern A. Zeeb 	for (band = 0; band < NUM_NL80211_BANDS; band++) {
6912e183d99SBjoern A. Zeeb 		struct ieee80211_supported_band *supband;
6922e183d99SBjoern A. Zeeb 		struct linuxkpi_ieee80211_channel *channels;
6932e183d99SBjoern A. Zeeb 		int i;
6942e183d99SBjoern A. Zeeb 
6952e183d99SBjoern A. Zeeb 		supband = wiphy->bands[band];
6962e183d99SBjoern A. Zeeb 		if (supband == NULL || supband->n_channels == 0)
6972e183d99SBjoern A. Zeeb 			continue;
6982e183d99SBjoern A. Zeeb 
6992e183d99SBjoern A. Zeeb 		channels = supband->channels;
7002e183d99SBjoern A. Zeeb 		for (i = 0; i < supband->n_channels; i++) {
7012e183d99SBjoern A. Zeeb 			if (channels[i].center_freq == freq)
7022e183d99SBjoern A. Zeeb 				return (&channels[i]);
7032e183d99SBjoern A. Zeeb 		}
7042e183d99SBjoern A. Zeeb 	}
7052e183d99SBjoern A. Zeeb 
7062e183d99SBjoern A. Zeeb 	return (NULL);
7072e183d99SBjoern A. Zeeb }
7082e183d99SBjoern A. Zeeb 
709b35f6cd0SBjoern A. Zeeb #ifdef LKPI_80211_HW_CRYPTO
7106b4cac81SBjoern A. Zeeb static int
7116b4cac81SBjoern A. Zeeb _lkpi_iv_key_set_delete(struct ieee80211vap *vap, const struct ieee80211_key *k,
7126b4cac81SBjoern A. Zeeb     enum set_key_cmd cmd)
7136b4cac81SBjoern A. Zeeb {
7146b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
7156b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
7166b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
7176b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
7186b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
7196b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
7206b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
7216b4cac81SBjoern A. Zeeb 	struct ieee80211_key_conf *kc;
7226b4cac81SBjoern A. Zeeb 	int error;
7236b4cac81SBjoern A. Zeeb 
7246b4cac81SBjoern A. Zeeb 	/* XXX TODO Check (k->wk_flags & IEEE80211_KEY_SWENCRYPT) and don't upload to driver/hw? */
7256b4cac81SBjoern A. Zeeb 
7266b4cac81SBjoern A. Zeeb 	ic = vap->iv_ic;
7276b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
7286b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
7296b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
7306b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
7316b4cac81SBjoern A. Zeeb 
7326b4cac81SBjoern A. Zeeb 	memset(&kc, 0, sizeof(kc));
7336b4cac81SBjoern A. Zeeb 	kc = malloc(sizeof(*kc) + k->wk_keylen, M_LKPI80211, M_WAITOK | M_ZERO);
7346b4cac81SBjoern A. Zeeb 	kc->cipher = lkpi_net80211_to_l80211_cipher_suite(
7356b4cac81SBjoern A. Zeeb 	    k->wk_cipher->ic_cipher, k->wk_keylen);
7366b4cac81SBjoern A. Zeeb 	kc->keyidx = k->wk_keyix;
7376b4cac81SBjoern A. Zeeb #if 0
7386b4cac81SBjoern A. Zeeb 	kc->hw_key_idx = /* set by hw and needs to be passed for TX */;
7396b4cac81SBjoern A. Zeeb #endif
7406b4cac81SBjoern A. Zeeb 	atomic64_set(&kc->tx_pn, k->wk_keytsc);
7416b4cac81SBjoern A. Zeeb 	kc->keylen = k->wk_keylen;
7426b4cac81SBjoern A. Zeeb 	memcpy(kc->key, k->wk_key, k->wk_keylen);
7436b4cac81SBjoern A. Zeeb 
7446b4cac81SBjoern A. Zeeb 	switch (kc->cipher) {
7456b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_CCMP:
7466b4cac81SBjoern A. Zeeb 		kc->iv_len = k->wk_cipher->ic_header;
7476b4cac81SBjoern A. Zeeb 		kc->icv_len = k->wk_cipher->ic_trailer;
7486b4cac81SBjoern A. Zeeb 		break;
7496b4cac81SBjoern A. Zeeb 	case WLAN_CIPHER_SUITE_TKIP:
7506b4cac81SBjoern A. Zeeb 	default:
7516b4cac81SBjoern A. Zeeb 		IMPROVE();
7526b4cac81SBjoern A. Zeeb 		return (0);
7536b4cac81SBjoern A. Zeeb 	};
7546b4cac81SBjoern A. Zeeb 
7556b4cac81SBjoern A. Zeeb 	ni = vap->iv_bss;
7566b4cac81SBjoern A. Zeeb 	sta = ieee80211_find_sta(vif, ni->ni_bssid);
7576b4cac81SBjoern A. Zeeb 	if (sta != NULL) {
7586b4cac81SBjoern A. Zeeb 		struct lkpi_sta *lsta;
7596b4cac81SBjoern A. Zeeb 
7606b4cac81SBjoern A. Zeeb 		lsta = STA_TO_LSTA(sta);
7616b4cac81SBjoern A. Zeeb 		lsta->kc = kc;
7626b4cac81SBjoern A. Zeeb 	}
7636b4cac81SBjoern A. Zeeb 
7646b4cac81SBjoern A. Zeeb 	error = lkpi_80211_mo_set_key(hw, cmd, vif, sta, kc);
7656b4cac81SBjoern A. Zeeb 	if (error != 0) {
7666b4cac81SBjoern A. Zeeb 		/* XXX-BZ leaking kc currently */
7676b4cac81SBjoern A. Zeeb 		ic_printf(ic, "%s: set_key failed: %d\n", __func__, error);
7686b4cac81SBjoern A. Zeeb 		return (0);
7696b4cac81SBjoern A. Zeeb 	} else {
7706b4cac81SBjoern A. Zeeb 		ic_printf(ic, "%s: set_key succeeded: keyidx %u hw_key_idx %u "
7716b4cac81SBjoern A. Zeeb 		    "flags %#10x\n", __func__,
7726b4cac81SBjoern A. Zeeb 		    kc->keyidx, kc->hw_key_idx, kc->flags);
7736b4cac81SBjoern A. Zeeb 		return (1);
7746b4cac81SBjoern A. Zeeb 	}
7756b4cac81SBjoern A. Zeeb }
7766b4cac81SBjoern A. Zeeb 
7776b4cac81SBjoern A. Zeeb static int
7786b4cac81SBjoern A. Zeeb lkpi_iv_key_delete(struct ieee80211vap *vap, const struct ieee80211_key *k)
7796b4cac81SBjoern A. Zeeb {
7806b4cac81SBjoern A. Zeeb 
7816b4cac81SBjoern A. Zeeb 	/* XXX-BZ one day we should replace this iterating over VIFs, or node list? */
7826b4cac81SBjoern A. Zeeb 	return (_lkpi_iv_key_set_delete(vap, k, DISABLE_KEY));
7836b4cac81SBjoern A. Zeeb }
7846b4cac81SBjoern A. Zeeb static  int
7856b4cac81SBjoern A. Zeeb lkpi_iv_key_set(struct ieee80211vap *vap, const struct ieee80211_key *k)
7866b4cac81SBjoern A. Zeeb {
7876b4cac81SBjoern A. Zeeb 
7886b4cac81SBjoern A. Zeeb 	return (_lkpi_iv_key_set_delete(vap, k, SET_KEY));
7896b4cac81SBjoern A. Zeeb }
7906b4cac81SBjoern A. Zeeb #endif
7916b4cac81SBjoern A. Zeeb 
7926b4cac81SBjoern A. Zeeb static u_int
7936b4cac81SBjoern A. Zeeb lkpi_ic_update_mcast_copy(void *arg, struct sockaddr_dl *sdl, u_int cnt)
7946b4cac81SBjoern A. Zeeb {
7956b4cac81SBjoern A. Zeeb 	struct netdev_hw_addr_list *mc_list;
7966b4cac81SBjoern A. Zeeb 	struct netdev_hw_addr *addr;
7976b4cac81SBjoern A. Zeeb 
7986b4cac81SBjoern A. Zeeb 	KASSERT(arg != NULL && sdl != NULL, ("%s: arg %p sdl %p cnt %u\n",
7996b4cac81SBjoern A. Zeeb 	    __func__, arg, sdl, cnt));
8006b4cac81SBjoern A. Zeeb 
8016b4cac81SBjoern A. Zeeb 	mc_list = arg;
8026b4cac81SBjoern A. Zeeb 	/* If it is on the list already skip it. */
8036b4cac81SBjoern A. Zeeb 	netdev_hw_addr_list_for_each(addr, mc_list) {
8046b4cac81SBjoern A. Zeeb 		if (!memcmp(addr->addr, LLADDR(sdl), sdl->sdl_alen))
8056b4cac81SBjoern A. Zeeb 			return (0);
8066b4cac81SBjoern A. Zeeb 	}
8076b4cac81SBjoern A. Zeeb 
8086b4cac81SBjoern A. Zeeb 	addr = malloc(sizeof(*addr), M_LKPI80211, M_NOWAIT | M_ZERO);
8096b4cac81SBjoern A. Zeeb 	if (addr == NULL)
8106b4cac81SBjoern A. Zeeb 		return (0);
8116b4cac81SBjoern A. Zeeb 
8126b4cac81SBjoern A. Zeeb 	INIT_LIST_HEAD(&addr->addr_list);
8136b4cac81SBjoern A. Zeeb 	memcpy(addr->addr, LLADDR(sdl), sdl->sdl_alen);
8146b4cac81SBjoern A. Zeeb 	/* XXX this should be a netdev function? */
8156b4cac81SBjoern A. Zeeb 	list_add(&addr->addr_list, &mc_list->addr_list);
8166b4cac81SBjoern A. Zeeb 	mc_list->count++;
8176b4cac81SBjoern A. Zeeb 
8189d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
8199d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE)
8206b4cac81SBjoern A. Zeeb 		printf("%s:%d: mc_list count %d: added %6D\n",
8216b4cac81SBjoern A. Zeeb 		    __func__, __LINE__, mc_list->count, addr->addr, ":");
8229d9ba2b7SBjoern A. Zeeb #endif
8236b4cac81SBjoern A. Zeeb 
8246b4cac81SBjoern A. Zeeb 	return (1);
8256b4cac81SBjoern A. Zeeb }
8266b4cac81SBjoern A. Zeeb 
8276b4cac81SBjoern A. Zeeb static void
8286b4cac81SBjoern A. Zeeb lkpi_update_mcast_filter(struct ieee80211com *ic, bool force)
8296b4cac81SBjoern A. Zeeb {
8306b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
8316b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
8326b4cac81SBjoern A. Zeeb 	struct netdev_hw_addr_list mc_list;
8336b4cac81SBjoern A. Zeeb 	struct list_head *le, *next;
8346b4cac81SBjoern A. Zeeb 	struct netdev_hw_addr *addr;
8356b4cac81SBjoern A. Zeeb 	struct ieee80211vap *vap;
8366b4cac81SBjoern A. Zeeb 	u64 mc;
8376b4cac81SBjoern A. Zeeb 	unsigned int changed_flags, total_flags;
8386b4cac81SBjoern A. Zeeb 
8396b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
8406b4cac81SBjoern A. Zeeb 
8416b4cac81SBjoern A. Zeeb 	if (lhw->ops->prepare_multicast == NULL ||
8426b4cac81SBjoern A. Zeeb 	    lhw->ops->configure_filter == NULL)
8436b4cac81SBjoern A. Zeeb 		return;
8446b4cac81SBjoern A. Zeeb 
8456b4cac81SBjoern A. Zeeb 	if (!lhw->update_mc && !force)
8466b4cac81SBjoern A. Zeeb 		return;
8476b4cac81SBjoern A. Zeeb 
8486b4cac81SBjoern A. Zeeb 	changed_flags = total_flags = 0;
8496b4cac81SBjoern A. Zeeb 	mc_list.count = 0;
8506b4cac81SBjoern A. Zeeb 	INIT_LIST_HEAD(&mc_list.addr_list);
8516b4cac81SBjoern A. Zeeb 	if (ic->ic_allmulti == 0) {
8526b4cac81SBjoern A. Zeeb 		TAILQ_FOREACH(vap, &ic->ic_vaps, iv_next)
8536b4cac81SBjoern A. Zeeb 			if_foreach_llmaddr(vap->iv_ifp,
8546b4cac81SBjoern A. Zeeb 			    lkpi_ic_update_mcast_copy, &mc_list);
8556b4cac81SBjoern A. Zeeb 	} else {
8566b4cac81SBjoern A. Zeeb 		changed_flags |= FIF_ALLMULTI;
8576b4cac81SBjoern A. Zeeb 	}
8586b4cac81SBjoern A. Zeeb 
8596b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
8606b4cac81SBjoern A. Zeeb 	mc = lkpi_80211_mo_prepare_multicast(hw, &mc_list);
8616b4cac81SBjoern A. Zeeb 	/*
8626b4cac81SBjoern A. Zeeb 	 * XXX-BZ make sure to get this sorted what is a change,
8636b4cac81SBjoern A. Zeeb 	 * what gets all set; what was already set?
8646b4cac81SBjoern A. Zeeb 	 */
8656b4cac81SBjoern A. Zeeb 	total_flags = changed_flags;
8666b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_configure_filter(hw, changed_flags, &total_flags, mc);
8676b4cac81SBjoern A. Zeeb 
8689d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
8699d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE)
8706b4cac81SBjoern A. Zeeb 		printf("%s: changed_flags %#06x count %d total_flags %#010x\n",
8716b4cac81SBjoern A. Zeeb 		    __func__, changed_flags, mc_list.count, total_flags);
8729d9ba2b7SBjoern A. Zeeb #endif
8736b4cac81SBjoern A. Zeeb 
8746b4cac81SBjoern A. Zeeb 	if (mc_list.count != 0) {
8756b4cac81SBjoern A. Zeeb 		list_for_each_safe(le, next, &mc_list.addr_list) {
8766b4cac81SBjoern A. Zeeb 			addr = list_entry(le, struct netdev_hw_addr, addr_list);
8776b4cac81SBjoern A. Zeeb 			free(addr, M_LKPI80211);
8786b4cac81SBjoern A. Zeeb 			mc_list.count--;
8796b4cac81SBjoern A. Zeeb 		}
8806b4cac81SBjoern A. Zeeb 	}
8816b4cac81SBjoern A. Zeeb 	KASSERT(mc_list.count == 0, ("%s: mc_list %p count %d != 0\n",
8826b4cac81SBjoern A. Zeeb 	    __func__, &mc_list, mc_list.count));
8836b4cac81SBjoern A. Zeeb }
8846b4cac81SBjoern A. Zeeb 
885fa8f007dSBjoern A. Zeeb static enum ieee80211_bss_changed
886fa8f007dSBjoern A. Zeeb lkpi_update_dtim_tsf(struct ieee80211_vif *vif, struct ieee80211_node *ni,
887fa8f007dSBjoern A. Zeeb     struct ieee80211vap *vap, const char *_f, int _l)
888fa8f007dSBjoern A. Zeeb {
889fa8f007dSBjoern A. Zeeb 	enum ieee80211_bss_changed bss_changed;
890fa8f007dSBjoern A. Zeeb 
891fa8f007dSBjoern A. Zeeb 	bss_changed = 0;
892fa8f007dSBjoern A. Zeeb 
8939d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
8949d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE)
895fa8f007dSBjoern A. Zeeb 		printf("%s:%d [%s:%d] assoc %d aid %d beacon_int %u "
896fa8f007dSBjoern A. Zeeb 		    "dtim_period %u sync_dtim_count %u sync_tsf %ju "
897fa8f007dSBjoern A. Zeeb 		    "sync_device_ts %u bss_changed %#08x\n",
898fa8f007dSBjoern A. Zeeb 			__func__, __LINE__, _f, _l,
899616e1330SBjoern A. Zeeb 			vif->cfg.assoc, vif->cfg.aid,
900fa8f007dSBjoern A. Zeeb 			vif->bss_conf.beacon_int, vif->bss_conf.dtim_period,
901fa8f007dSBjoern A. Zeeb 			vif->bss_conf.sync_dtim_count,
902fa8f007dSBjoern A. Zeeb 			(uintmax_t)vif->bss_conf.sync_tsf,
903fa8f007dSBjoern A. Zeeb 			vif->bss_conf.sync_device_ts,
904fa8f007dSBjoern A. Zeeb 			bss_changed);
9059d9ba2b7SBjoern A. Zeeb #endif
906fa8f007dSBjoern A. Zeeb 
907fa8f007dSBjoern A. Zeeb 	if (vif->bss_conf.beacon_int != ni->ni_intval) {
908fa8f007dSBjoern A. Zeeb 		vif->bss_conf.beacon_int = ni->ni_intval;
909fa8f007dSBjoern A. Zeeb 		/* iwlwifi FW bug workaround; iwl_mvm_mac_sta_state. */
910fa8f007dSBjoern A. Zeeb 		if (vif->bss_conf.beacon_int < 16)
911fa8f007dSBjoern A. Zeeb 			vif->bss_conf.beacon_int = 16;
912fa8f007dSBjoern A. Zeeb 		bss_changed |= BSS_CHANGED_BEACON_INT;
913fa8f007dSBjoern A. Zeeb 	}
914fa8f007dSBjoern A. Zeeb 	if (vif->bss_conf.dtim_period != vap->iv_dtim_period &&
915fa8f007dSBjoern A. Zeeb 	    vap->iv_dtim_period > 0) {
916fa8f007dSBjoern A. Zeeb 		vif->bss_conf.dtim_period = vap->iv_dtim_period;
917fa8f007dSBjoern A. Zeeb 		bss_changed |= BSS_CHANGED_BEACON_INFO;
918fa8f007dSBjoern A. Zeeb 	}
919fa8f007dSBjoern A. Zeeb 
920fa8f007dSBjoern A. Zeeb 	vif->bss_conf.sync_dtim_count = vap->iv_dtim_count;
921fa8f007dSBjoern A. Zeeb 	vif->bss_conf.sync_tsf = le64toh(ni->ni_tstamp.tsf);
922fa8f007dSBjoern A. Zeeb 	/* vif->bss_conf.sync_device_ts = set in linuxkpi_ieee80211_rx. */
923fa8f007dSBjoern A. Zeeb 
9249d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
9259d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE)
926fa8f007dSBjoern A. Zeeb 		printf("%s:%d [%s:%d] assoc %d aid %d beacon_int %u "
927fa8f007dSBjoern A. Zeeb 		    "dtim_period %u sync_dtim_count %u sync_tsf %ju "
928fa8f007dSBjoern A. Zeeb 		    "sync_device_ts %u bss_changed %#08x\n",
929fa8f007dSBjoern A. Zeeb 			__func__, __LINE__, _f, _l,
930616e1330SBjoern A. Zeeb 			vif->cfg.assoc, vif->cfg.aid,
931fa8f007dSBjoern A. Zeeb 			vif->bss_conf.beacon_int, vif->bss_conf.dtim_period,
932fa8f007dSBjoern A. Zeeb 			vif->bss_conf.sync_dtim_count,
933fa8f007dSBjoern A. Zeeb 			(uintmax_t)vif->bss_conf.sync_tsf,
934fa8f007dSBjoern A. Zeeb 			vif->bss_conf.sync_device_ts,
935fa8f007dSBjoern A. Zeeb 			bss_changed);
9369d9ba2b7SBjoern A. Zeeb #endif
937fa8f007dSBjoern A. Zeeb 
938fa8f007dSBjoern A. Zeeb 	return (bss_changed);
939fa8f007dSBjoern A. Zeeb }
940fa8f007dSBjoern A. Zeeb 
9416b4cac81SBjoern A. Zeeb static void
9426b4cac81SBjoern A. Zeeb lkpi_stop_hw_scan(struct lkpi_hw *lhw, struct ieee80211_vif *vif)
9436b4cac81SBjoern A. Zeeb {
9446b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
9456b4cac81SBjoern A. Zeeb 	int error;
9468ac540d3SBjoern A. Zeeb 	bool cancel;
9476b4cac81SBjoern A. Zeeb 
9488ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_LOCK(lhw);
9498ac540d3SBjoern A. Zeeb 	cancel = (lhw->scan_flags & LKPI_LHW_SCAN_RUNNING) != 0;
9508ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_UNLOCK(lhw);
9518ac540d3SBjoern A. Zeeb 	if (!cancel)
9526b4cac81SBjoern A. Zeeb 		return;
9536b4cac81SBjoern A. Zeeb 
9546b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
9556b4cac81SBjoern A. Zeeb 
956bec76628SBjoern A. Zeeb 	IEEE80211_UNLOCK(lhw->ic);
957bec76628SBjoern A. Zeeb 	LKPI_80211_LHW_LOCK(lhw);
9586b4cac81SBjoern A. Zeeb 	/* Need to cancel the scan. */
9596b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_cancel_hw_scan(hw, vif);
9608ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_UNLOCK(lhw);
9616b4cac81SBjoern A. Zeeb 
9626b4cac81SBjoern A. Zeeb 	/* Need to make sure we see ieee80211_scan_completed. */
9638ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_LOCK(lhw);
9648ac540d3SBjoern A. Zeeb 	if ((lhw->scan_flags & LKPI_LHW_SCAN_RUNNING) != 0)
9658ac540d3SBjoern A. Zeeb 		error = msleep(lhw, &lhw->scan_mtx, 0, "lhwscanstop", hz/2);
9668ac540d3SBjoern A. Zeeb 	cancel = (lhw->scan_flags & LKPI_LHW_SCAN_RUNNING) != 0;
9678ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_UNLOCK(lhw);
9688ac540d3SBjoern A. Zeeb 
969bec76628SBjoern A. Zeeb 	IEEE80211_LOCK(lhw->ic);
9706b4cac81SBjoern A. Zeeb 
9718ac540d3SBjoern A. Zeeb 	if (cancel)
9726b4cac81SBjoern A. Zeeb 		ic_printf(lhw->ic, "%s: failed to cancel scan: %d (%p, %p)\n",
9736b4cac81SBjoern A. Zeeb 		    __func__, error, lhw, vif);
9746b4cac81SBjoern A. Zeeb }
9756b4cac81SBjoern A. Zeeb 
9766b4cac81SBjoern A. Zeeb static void
977086be6a8SBjoern A. Zeeb lkpi_hw_conf_idle(struct ieee80211_hw *hw, bool new)
978086be6a8SBjoern A. Zeeb {
979086be6a8SBjoern A. Zeeb 	struct lkpi_hw *lhw;
980086be6a8SBjoern A. Zeeb 	int error;
981086be6a8SBjoern A. Zeeb 	bool old;
982086be6a8SBjoern A. Zeeb 
983086be6a8SBjoern A. Zeeb 	old = hw->conf.flags & IEEE80211_CONF_IDLE;
984086be6a8SBjoern A. Zeeb 	if (old == new)
985086be6a8SBjoern A. Zeeb 		return;
986086be6a8SBjoern A. Zeeb 
987086be6a8SBjoern A. Zeeb 	hw->conf.flags ^= IEEE80211_CONF_IDLE;
988086be6a8SBjoern A. Zeeb 	error = lkpi_80211_mo_config(hw, IEEE80211_CONF_CHANGE_IDLE);
989086be6a8SBjoern A. Zeeb 	if (error != 0 && error != EOPNOTSUPP) {
990086be6a8SBjoern A. Zeeb 		lhw = HW_TO_LHW(hw);
991086be6a8SBjoern A. Zeeb 		ic_printf(lhw->ic, "ERROR: %s: config %#0x returned %d\n",
992086be6a8SBjoern A. Zeeb 		    __func__, IEEE80211_CONF_CHANGE_IDLE, error);
993086be6a8SBjoern A. Zeeb 	}
994086be6a8SBjoern A. Zeeb }
995086be6a8SBjoern A. Zeeb 
9965a4d2461SBjoern A. Zeeb static enum ieee80211_bss_changed
9976b4cac81SBjoern A. Zeeb lkpi_disassoc(struct ieee80211_sta *sta, struct ieee80211_vif *vif,
9986b4cac81SBjoern A. Zeeb     struct lkpi_hw *lhw)
9996b4cac81SBjoern A. Zeeb {
10005a4d2461SBjoern A. Zeeb 	enum ieee80211_bss_changed changed;
10015a4d2461SBjoern A. Zeeb 
10025a4d2461SBjoern A. Zeeb 	changed = 0;
10036b4cac81SBjoern A. Zeeb 	sta->aid = 0;
1004616e1330SBjoern A. Zeeb 	if (vif->cfg.assoc) {
10056b4cac81SBjoern A. Zeeb 
10066b4cac81SBjoern A. Zeeb 		lhw->update_mc = true;
10076b4cac81SBjoern A. Zeeb 		lkpi_update_mcast_filter(lhw->ic, true);
10086b4cac81SBjoern A. Zeeb 
1009616e1330SBjoern A. Zeeb 		vif->cfg.assoc = false;
1010616e1330SBjoern A. Zeeb 		vif->cfg.aid = 0;
10116b4cac81SBjoern A. Zeeb 		changed |= BSS_CHANGED_ASSOC;
10126b4cac81SBjoern A. Zeeb 		IMPROVE();
1013086be6a8SBjoern A. Zeeb 
10145a4d2461SBjoern A. Zeeb 		/*
10155a4d2461SBjoern A. Zeeb 		 * Executing the bss_info_changed(BSS_CHANGED_ASSOC) with
10165a4d2461SBjoern A. Zeeb 		 * assoc = false right away here will remove the sta from
10175a4d2461SBjoern A. Zeeb 		 * firmware for iwlwifi.
10185a4d2461SBjoern A. Zeeb 		 * We no longer do this but only return the BSS_CHNAGED value.
10195a4d2461SBjoern A. Zeeb 		 * The caller is responsible for removing the sta gong to
10205a4d2461SBjoern A. Zeeb 		 * IEEE80211_STA_NOTEXIST and then executing the
10215a4d2461SBjoern A. Zeeb 		 * bss_info_changed() update.
10225a4d2461SBjoern A. Zeeb 		 * See lkpi_sta_run_to_init() for more detailed comment.
10235a4d2461SBjoern A. Zeeb 		 */
10246b4cac81SBjoern A. Zeeb 	}
10255a4d2461SBjoern A. Zeeb 
10265a4d2461SBjoern A. Zeeb 	return (changed);
10276b4cac81SBjoern A. Zeeb }
10286b4cac81SBjoern A. Zeeb 
10296b4cac81SBjoern A. Zeeb static void
10306b4cac81SBjoern A. Zeeb lkpi_wake_tx_queues(struct ieee80211_hw *hw, struct ieee80211_sta *sta,
10316b4cac81SBjoern A. Zeeb     bool dequeue_seen, bool no_emptyq)
10326b4cac81SBjoern A. Zeeb {
10336b4cac81SBjoern A. Zeeb 	struct lkpi_txq *ltxq;
10346b4cac81SBjoern A. Zeeb 	int tid;
1035eac3646fSBjoern A. Zeeb 	bool ltxq_empty;
10366b4cac81SBjoern A. Zeeb 
10376b4cac81SBjoern A. Zeeb 	/* Wake up all queues to know they are allocated in the driver. */
10386b4cac81SBjoern A. Zeeb 	for (tid = 0; tid < nitems(sta->txq); tid++) {
10396b4cac81SBjoern A. Zeeb 
10406b4cac81SBjoern A. Zeeb 		if (tid == IEEE80211_NUM_TIDS) {
10416b4cac81SBjoern A. Zeeb 			IMPROVE("station specific?");
10426b4cac81SBjoern A. Zeeb 			if (!ieee80211_hw_check(hw, STA_MMPDU_TXQ))
10436b4cac81SBjoern A. Zeeb 				continue;
10446b4cac81SBjoern A. Zeeb 		} else if (tid >= hw->queues)
10456b4cac81SBjoern A. Zeeb 			continue;
10466b4cac81SBjoern A. Zeeb 
10476b4cac81SBjoern A. Zeeb 		if (sta->txq[tid] == NULL)
10486b4cac81SBjoern A. Zeeb 			continue;
10496b4cac81SBjoern A. Zeeb 
10506b4cac81SBjoern A. Zeeb 		ltxq = TXQ_TO_LTXQ(sta->txq[tid]);
10516b4cac81SBjoern A. Zeeb 		if (dequeue_seen && !ltxq->seen_dequeue)
10526b4cac81SBjoern A. Zeeb 			continue;
10536b4cac81SBjoern A. Zeeb 
1054eac3646fSBjoern A. Zeeb 		LKPI_80211_LTXQ_LOCK(ltxq);
1055eac3646fSBjoern A. Zeeb 		ltxq_empty = skb_queue_empty(&ltxq->skbq);
1056eac3646fSBjoern A. Zeeb 		LKPI_80211_LTXQ_UNLOCK(ltxq);
1057eac3646fSBjoern A. Zeeb 		if (no_emptyq && ltxq_empty)
10586b4cac81SBjoern A. Zeeb 			continue;
10596b4cac81SBjoern A. Zeeb 
10606b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_wake_tx_queue(hw, sta->txq[tid]);
10616b4cac81SBjoern A. Zeeb 	}
10626b4cac81SBjoern A. Zeeb }
10636b4cac81SBjoern A. Zeeb 
10646b4cac81SBjoern A. Zeeb /* -------------------------------------------------------------------------- */
10656b4cac81SBjoern A. Zeeb 
10666b4cac81SBjoern A. Zeeb static int
10676b4cac81SBjoern A. Zeeb lkpi_sta_state_do_nada(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
10686b4cac81SBjoern A. Zeeb {
10696b4cac81SBjoern A. Zeeb 
10706b4cac81SBjoern A. Zeeb 	return (0);
10716b4cac81SBjoern A. Zeeb }
10726b4cac81SBjoern A. Zeeb 
10736b4cac81SBjoern A. Zeeb /* lkpi_iv_newstate() handles the stop scan case generally. */
10746b4cac81SBjoern A. Zeeb #define	lkpi_sta_scan_to_init(_v, _n, _a)	lkpi_sta_state_do_nada(_v, _n, _a)
10756b4cac81SBjoern A. Zeeb 
10766b4cac81SBjoern A. Zeeb static int
10776b4cac81SBjoern A. Zeeb lkpi_sta_scan_to_auth(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
10786b4cac81SBjoern A. Zeeb {
10796b4cac81SBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel *chan;
1080c5e25798SBjoern A. Zeeb 	struct lkpi_chanctx *lchanctx;
1081d1af434dSBjoern A. Zeeb 	struct ieee80211_chanctx_conf *chanctx_conf;
10826b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
10836b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
10846b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
10856b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
10866b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
10876b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
10886b4cac81SBjoern A. Zeeb 	enum ieee80211_bss_changed bss_changed;
10896b4cac81SBjoern A. Zeeb 	struct ieee80211_prep_tx_info prep_tx_info;
10906b4cac81SBjoern A. Zeeb 	uint32_t changed;
10916b4cac81SBjoern A. Zeeb 	int error;
10926b4cac81SBjoern A. Zeeb 
10932ac8a218SBjoern A. Zeeb 	/*
10942ac8a218SBjoern A. Zeeb 	 * In here we use vap->iv_bss until lvif->lvif_bss is set.
10952ac8a218SBjoern A. Zeeb 	 * For all later (STATE >= AUTH) functions we need to use the lvif
10962ac8a218SBjoern A. Zeeb 	 * cache which will be tracked even through (*iv_update_bss)().
10972ac8a218SBjoern A. Zeeb 	 */
10982ac8a218SBjoern A. Zeeb 
10992ac8a218SBjoern A. Zeeb 	if (vap->iv_bss == NULL) {
11002ac8a218SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s: no iv_bss for vap %p\n", __func__, vap);
11012ac8a218SBjoern A. Zeeb 		return (EINVAL);
11022ac8a218SBjoern A. Zeeb 	}
11030936c648SBjoern A. Zeeb 	/*
11040936c648SBjoern A. Zeeb 	 * Keep the ni alive locally.  In theory (and practice) iv_bss can change
11050936c648SBjoern A. Zeeb 	 * once we unlock here.  This is due to net80211 allowing state changes
11060936c648SBjoern A. Zeeb 	 * and new join1() despite having an active node as well as due to
11070936c648SBjoern A. Zeeb 	 * the fact that the iv_bss can be swapped under the hood in (*iv_update_bss).
11080936c648SBjoern A. Zeeb 	 */
11092ac8a218SBjoern A. Zeeb 	ni = ieee80211_ref_node(vap->iv_bss);
11102ac8a218SBjoern A. Zeeb 	if (ni->ni_chan == NULL || ni->ni_chan == IEEE80211_CHAN_ANYC) {
11112ac8a218SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s: no channel set for iv_bss ni %p "
11122ac8a218SBjoern A. Zeeb 		    "on vap %p\n", __func__, ni, vap);
11130936c648SBjoern A. Zeeb 		ieee80211_free_node(ni);	/* Error handling for the local ni. */
11142ac8a218SBjoern A. Zeeb 		return (EINVAL);
11156b4cac81SBjoern A. Zeeb 	}
11166b4cac81SBjoern A. Zeeb 
11176b4cac81SBjoern A. Zeeb 	lhw = vap->iv_ic->ic_softc;
11182ac8a218SBjoern A. Zeeb 	chan = lkpi_find_lkpi80211_chan(lhw, ni->ni_chan);
11192ac8a218SBjoern A. Zeeb 	if (chan == NULL) {
11202ac8a218SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s: failed to get LKPI channel from "
11212ac8a218SBjoern A. Zeeb 		    "iv_bss ni %p on vap %p\n", __func__, ni, vap);
11220936c648SBjoern A. Zeeb 		ieee80211_free_node(ni);	/* Error handling for the local ni. */
11232ac8a218SBjoern A. Zeeb 		return (ESRCH);
11242ac8a218SBjoern A. Zeeb 	}
11252ac8a218SBjoern A. Zeeb 
11266b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
11276b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
11286b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
11296b4cac81SBjoern A. Zeeb 
11300936c648SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
11310936c648SBjoern A. Zeeb 	/* XXX-BZ KASSERT later? */
11320936c648SBjoern A. Zeeb 	if (lvif->lvif_bss_synched || lvif->lvif_bss != NULL) {
11330936c648SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: lvif %p vap %p iv_bss %p lvif_bss %p "
11340936c648SBjoern A. Zeeb 		    "lvif_bss->ni %p synched %d\n", __func__, __LINE__,
11350936c648SBjoern A. Zeeb 		    lvif, vap, vap->iv_bss, lvif->lvif_bss,
11360936c648SBjoern A. Zeeb 		    (lvif->lvif_bss != NULL) ? lvif->lvif_bss->ni : NULL,
11370936c648SBjoern A. Zeeb 		    lvif->lvif_bss_synched);
11380936c648SBjoern A. Zeeb 		return (EBUSY);
11390936c648SBjoern A. Zeeb 	}
11400936c648SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
11410936c648SBjoern A. Zeeb 
11426b4cac81SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
11438ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_LOCK(lhw);
11446b4cac81SBjoern A. Zeeb 
11456b4cac81SBjoern A. Zeeb 	/* Add chanctx (or if exists, change it). */
11466b4cac81SBjoern A. Zeeb 	if (vif->chanctx_conf != NULL) {
1147d1af434dSBjoern A. Zeeb 		chanctx_conf = vif->chanctx_conf;
1148d1af434dSBjoern A. Zeeb 		lchanctx = CHANCTX_CONF_TO_LCHANCTX(chanctx_conf);
11496b4cac81SBjoern A. Zeeb 		IMPROVE("diff changes for changed, working on live copy, rcu");
11506b4cac81SBjoern A. Zeeb 	} else {
11516b4cac81SBjoern A. Zeeb 		/* Keep separate alloc as in Linux this is rcu managed? */
1152c5e25798SBjoern A. Zeeb 		lchanctx = malloc(sizeof(*lchanctx) + hw->chanctx_data_size,
11536b4cac81SBjoern A. Zeeb 		    M_LKPI80211, M_WAITOK | M_ZERO);
1154d1af434dSBjoern A. Zeeb 		chanctx_conf = &lchanctx->chanctx_conf;
11556b4cac81SBjoern A. Zeeb 	}
11566b4cac81SBjoern A. Zeeb 
1157d1af434dSBjoern A. Zeeb 	chanctx_conf->rx_chains_dynamic = 1;
1158d1af434dSBjoern A. Zeeb 	chanctx_conf->rx_chains_static = 1;
1159d1af434dSBjoern A. Zeeb 	chanctx_conf->radar_enabled =
11606b4cac81SBjoern A. Zeeb 	    (chan->flags & IEEE80211_CHAN_RADAR) ? true : false;
1161d1af434dSBjoern A. Zeeb 	chanctx_conf->def.chan = chan;
1162d1af434dSBjoern A. Zeeb 	chanctx_conf->def.width = NL80211_CHAN_WIDTH_20_NOHT;
1163d1af434dSBjoern A. Zeeb 	chanctx_conf->def.center_freq1 = chan->center_freq;
1164d1af434dSBjoern A. Zeeb 	chanctx_conf->def.center_freq2 = 0;
11659fb91463SBjoern A. Zeeb 	IMPROVE("Check vht_cap from band not just chan?");
11662ac8a218SBjoern A. Zeeb 	KASSERT(ni->ni_chan != NULL && ni->ni_chan != IEEE80211_CHAN_ANYC,
11672ac8a218SBjoern A. Zeeb 	   ("%s:%d: ni %p ni_chan %p\n", __func__, __LINE__, ni, ni->ni_chan));
11689fb91463SBjoern A. Zeeb #ifdef LKPI_80211_HT
11699fb91463SBjoern A. Zeeb 	if (IEEE80211_IS_CHAN_HT(ni->ni_chan)) {
11709fb91463SBjoern A. Zeeb 		if (IEEE80211_IS_CHAN_HT40(ni->ni_chan)) {
1171d1af434dSBjoern A. Zeeb 			chanctx_conf->def.width = NL80211_CHAN_WIDTH_40;
11729fb91463SBjoern A. Zeeb 		} else
1173d1af434dSBjoern A. Zeeb 			chanctx_conf->def.width = NL80211_CHAN_WIDTH_20;
11749fb91463SBjoern A. Zeeb 	}
11759fb91463SBjoern A. Zeeb #endif
11769fb91463SBjoern A. Zeeb #ifdef LKPI_80211_VHT
11779fb91463SBjoern A. Zeeb 	if (IEEE80211_IS_CHAN_VHT(ni->ni_chan)) {
11789fb91463SBjoern A. Zeeb #ifdef __notyet__
11799fb91463SBjoern A. Zeeb 		if (IEEE80211_IS_CHAN_VHT80P80(ni->ni_chan)) {
1180d1af434dSBjoern A. Zeeb 			chanctx_conf->def.width = NL80211_CHAN_WIDTH_80P80;
1181d1af434dSBjoern A. Zeeb 			chanctx_conf->def.center_freq2 = 0;	/* XXX */
11829fb91463SBjoern A. Zeeb 		} else
11839fb91463SBjoern A. Zeeb #endif
11849fb91463SBjoern A. Zeeb 		if (IEEE80211_IS_CHAN_VHT160(ni->ni_chan))
1185d1af434dSBjoern A. Zeeb 			chanctx_conf->def.width = NL80211_CHAN_WIDTH_160;
11869fb91463SBjoern A. Zeeb 		else if (IEEE80211_IS_CHAN_VHT80(ni->ni_chan))
1187d1af434dSBjoern A. Zeeb 			chanctx_conf->def.width = NL80211_CHAN_WIDTH_80;
11889fb91463SBjoern A. Zeeb 	}
11899fb91463SBjoern A. Zeeb #endif
11906b4cac81SBjoern A. Zeeb 	/* Responder ... */
1191d1af434dSBjoern A. Zeeb 	chanctx_conf->min_def.chan = chan;
1192d1af434dSBjoern A. Zeeb 	chanctx_conf->min_def.width = NL80211_CHAN_WIDTH_20_NOHT;
1193d1af434dSBjoern A. Zeeb 	chanctx_conf->min_def.center_freq1 = chan->center_freq;
1194d1af434dSBjoern A. Zeeb 	chanctx_conf->min_def.center_freq2 = 0;
11959fb91463SBjoern A. Zeeb 	IMPROVE("currently 20_NOHT min_def only");
11966b4cac81SBjoern A. Zeeb 
11976ffb7bd4SBjoern A. Zeeb 	/* Set bss info (bss_info_changed). */
11986ffb7bd4SBjoern A. Zeeb 	bss_changed = 0;
11996ffb7bd4SBjoern A. Zeeb 	vif->bss_conf.bssid = ni->ni_bssid;
12006ffb7bd4SBjoern A. Zeeb 	bss_changed |= BSS_CHANGED_BSSID;
12016ffb7bd4SBjoern A. Zeeb 	vif->bss_conf.txpower = ni->ni_txpower;
12026ffb7bd4SBjoern A. Zeeb 	bss_changed |= BSS_CHANGED_TXPOWER;
12036ffb7bd4SBjoern A. Zeeb 	vif->cfg.idle = false;
12046ffb7bd4SBjoern A. Zeeb 	bss_changed |= BSS_CHANGED_IDLE;
12056ffb7bd4SBjoern A. Zeeb 
12066ffb7bd4SBjoern A. Zeeb 	/* vif->bss_conf.basic_rates ? Where exactly? */
12076ffb7bd4SBjoern A. Zeeb 
12086ffb7bd4SBjoern A. Zeeb 	/* Should almost assert it is this. */
12096ffb7bd4SBjoern A. Zeeb 	vif->cfg.assoc = false;
12106ffb7bd4SBjoern A. Zeeb 	vif->cfg.aid = 0;
12116ffb7bd4SBjoern A. Zeeb 
12126ffb7bd4SBjoern A. Zeeb 	bss_changed |= lkpi_update_dtim_tsf(vif, ni, vap, __func__, __LINE__);
12136ffb7bd4SBjoern A. Zeeb 
12146b4cac81SBjoern A. Zeeb 	error = 0;
12156b4cac81SBjoern A. Zeeb 	if (vif->chanctx_conf != NULL) {
12166b4cac81SBjoern A. Zeeb 		changed = IEEE80211_CHANCTX_CHANGE_MIN_WIDTH;
12176b4cac81SBjoern A. Zeeb 		changed |= IEEE80211_CHANCTX_CHANGE_RADAR;
12186b4cac81SBjoern A. Zeeb 		changed |= IEEE80211_CHANCTX_CHANGE_RX_CHAINS;
12196b4cac81SBjoern A. Zeeb 		changed |= IEEE80211_CHANCTX_CHANGE_WIDTH;
1220d1af434dSBjoern A. Zeeb 		lkpi_80211_mo_change_chanctx(hw, chanctx_conf, changed);
12216b4cac81SBjoern A. Zeeb 	} else {
1222d1af434dSBjoern A. Zeeb 		error = lkpi_80211_mo_add_chanctx(hw, chanctx_conf);
12236b4cac81SBjoern A. Zeeb 		if (error == 0 || error == EOPNOTSUPP) {
1224d1af434dSBjoern A. Zeeb 			vif->bss_conf.chandef.chan = chanctx_conf->def.chan;
1225d1af434dSBjoern A. Zeeb 			vif->bss_conf.chandef.width = chanctx_conf->def.width;
12266b4cac81SBjoern A. Zeeb 			vif->bss_conf.chandef.center_freq1 =
1227d1af434dSBjoern A. Zeeb 			    chanctx_conf->def.center_freq1;
12289fb91463SBjoern A. Zeeb #ifdef LKPI_80211_HT
12299fb91463SBjoern A. Zeeb 			if (vif->bss_conf.chandef.width == NL80211_CHAN_WIDTH_40) {
12309fb91463SBjoern A. Zeeb 				/* Note: it is 10 not 20. */
12319fb91463SBjoern A. Zeeb 				if (IEEE80211_IS_CHAN_HT40U(ni->ni_chan))
12329fb91463SBjoern A. Zeeb 					vif->bss_conf.chandef.center_freq1 += 10;
12339fb91463SBjoern A. Zeeb 				else if (IEEE80211_IS_CHAN_HT40D(ni->ni_chan))
12349fb91463SBjoern A. Zeeb 					vif->bss_conf.chandef.center_freq1 -= 10;
12359fb91463SBjoern A. Zeeb 			}
12369fb91463SBjoern A. Zeeb #endif
12376b4cac81SBjoern A. Zeeb 			vif->bss_conf.chandef.center_freq2 =
1238d1af434dSBjoern A. Zeeb 			    chanctx_conf->def.center_freq2;
12396b4cac81SBjoern A. Zeeb 		} else {
1240018d93ecSBjoern A. Zeeb 			ic_printf(vap->iv_ic, "%s:%d: mo_add_chanctx "
1241018d93ecSBjoern A. Zeeb 			    "failed: %d\n", __func__, __LINE__, error);
12426b4cac81SBjoern A. Zeeb 			goto out;
12436b4cac81SBjoern A. Zeeb 		}
12446ffb7bd4SBjoern A. Zeeb 
1245d1af434dSBjoern A. Zeeb 		vif->bss_conf.chanctx_conf = chanctx_conf;
12466ffb7bd4SBjoern A. Zeeb 
12476b4cac81SBjoern A. Zeeb 		/* Assign vif chanctx. */
12486b4cac81SBjoern A. Zeeb 		if (error == 0)
124968541546SBjoern A. Zeeb 			error = lkpi_80211_mo_assign_vif_chanctx(hw, vif,
1250d1af434dSBjoern A. Zeeb 			    &vif->bss_conf, chanctx_conf);
12516b4cac81SBjoern A. Zeeb 		if (error == EOPNOTSUPP)
12526b4cac81SBjoern A. Zeeb 			error = 0;
12536b4cac81SBjoern A. Zeeb 		if (error != 0) {
1254018d93ecSBjoern A. Zeeb 			ic_printf(vap->iv_ic, "%s:%d: mo_assign_vif_chanctx "
1255018d93ecSBjoern A. Zeeb 			    "failed: %d\n", __func__, __LINE__, error);
1256d1af434dSBjoern A. Zeeb 			lkpi_80211_mo_remove_chanctx(hw, chanctx_conf);
1257d1af434dSBjoern A. Zeeb 			lchanctx = CHANCTX_CONF_TO_LCHANCTX(chanctx_conf);
1258c5e25798SBjoern A. Zeeb 			free(lchanctx, M_LKPI80211);
12596b4cac81SBjoern A. Zeeb 			goto out;
12606b4cac81SBjoern A. Zeeb 		}
12616b4cac81SBjoern A. Zeeb 	}
12626b4cac81SBjoern A. Zeeb 	IMPROVE("update radiotap chan fields too");
12636b4cac81SBjoern A. Zeeb 
12646b4cac81SBjoern A. Zeeb 	/* RATES */
12656b4cac81SBjoern A. Zeeb 	IMPROVE("bss info: not all needs to come now and rates are missing");
12666b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, bss_changed);
12676b4cac81SBjoern A. Zeeb 
1268d9f59799SBjoern A. Zeeb 	/*
12690936c648SBjoern A. Zeeb 	 * Given ni and lsta are 1:1 from alloc to free we can assert that
12700936c648SBjoern A. Zeeb 	 * ni always has lsta data attach despite net80211 node swapping
12710936c648SBjoern A. Zeeb 	 * under the hoods.
1272d9f59799SBjoern A. Zeeb 	 */
12730936c648SBjoern A. Zeeb 	KASSERT(ni->ni_drv_data != NULL, ("%s: ni %p ni_drv_data %p\n",
12740936c648SBjoern A. Zeeb 	    __func__, ni, ni->ni_drv_data));
12756b4cac81SBjoern A. Zeeb 	lsta = ni->ni_drv_data;
1276e24e8103SBjoern A. Zeeb 
1277e24e8103SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
12780936c648SBjoern A. Zeeb 	/* Re-check given (*iv_update_bss) could have happened. */
12790936c648SBjoern A. Zeeb 	/* XXX-BZ KASSERT later? or deal as error? */
12802ac8a218SBjoern A. Zeeb 	if (lvif->lvif_bss_synched || lvif->lvif_bss != NULL)
12812ac8a218SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: lvif %p vap %p iv_bss %p lvif_bss %p "
12822ac8a218SBjoern A. Zeeb 		    "lvif_bss->ni %p synched %d, ni %p lsta %p\n", __func__, __LINE__,
12832ac8a218SBjoern A. Zeeb 		    lvif, vap, vap->iv_bss, lvif->lvif_bss,
12842ac8a218SBjoern A. Zeeb 		    (lvif->lvif_bss != NULL) ? lvif->lvif_bss->ni : NULL,
12852ac8a218SBjoern A. Zeeb 		    lvif->lvif_bss_synched, ni, lsta);
12862ac8a218SBjoern A. Zeeb 
12870936c648SBjoern A. Zeeb 	/*
12880936c648SBjoern A. Zeeb 	 * Reference the ni for this cache of lsta/ni on lvif->lvif_bss
12890936c648SBjoern A. Zeeb 	 * essentially out lsta version of the iv_bss.
12900936c648SBjoern A. Zeeb 	 * Do NOT use iv_bss here anymore as that may have diverged from our
12910936c648SBjoern A. Zeeb 	 * function local ni already and would lead to inconsistencies.
12920936c648SBjoern A. Zeeb 	 */
12930936c648SBjoern A. Zeeb 	ieee80211_ref_node(ni);
12942ac8a218SBjoern A. Zeeb 	lvif->lvif_bss = lsta;
12952ac8a218SBjoern A. Zeeb 	lvif->lvif_bss_synched = true;
12962ac8a218SBjoern A. Zeeb 
12972ac8a218SBjoern A. Zeeb 	/* Insert the [l]sta into the list of known stations. */
1298e24e8103SBjoern A. Zeeb 	TAILQ_INSERT_TAIL(&lvif->lsta_head, lsta, lsta_entry);
1299e24e8103SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
1300e24e8103SBjoern A. Zeeb 
1301d9f59799SBjoern A. Zeeb 	/* Add (or adjust) sta and change state (from NOTEXIST) to NONE. */
13026b4cac81SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
13036b4cac81SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_NOTEXIST, ("%s: lsta %p state not "
13046b4cac81SBjoern A. Zeeb 	    "NOTEXIST: %#x\n", __func__, lsta, lsta->state));
1305e7fe0373SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_NONE);
13066b4cac81SBjoern A. Zeeb 	if (error != 0) {
13076b4cac81SBjoern A. Zeeb 		IMPROVE("do we need to undo the chan ctx?");
1308018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: mo_sta_state(NONE) "
1309018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, error);
13106b4cac81SBjoern A. Zeeb 		goto out;
13116b4cac81SBjoern A. Zeeb 	}
13126b4cac81SBjoern A. Zeeb #if 0
13136b4cac81SBjoern A. Zeeb 	lsta->added_to_drv = true;	/* mo manages. */
13146b4cac81SBjoern A. Zeeb #endif
13156b4cac81SBjoern A. Zeeb 
13169d9ba2b7SBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
13179d9ba2b7SBjoern A. Zeeb 
13181665ef97SBjoern A. Zeeb #if 0
13196b4cac81SBjoern A. Zeeb 	/*
13206b4cac81SBjoern A. Zeeb 	 * Wakeup all queues now that sta is there so we have as much time to
13216b4cac81SBjoern A. Zeeb 	 * possibly prepare the queue in the driver to be ready for the 1st
13226b4cac81SBjoern A. Zeeb 	 * packet;  lkpi_80211_txq_tx_one() still has a workaround as there
13236b4cac81SBjoern A. Zeeb 	 * is no guarantee or way to check.
1324d9f59799SBjoern A. Zeeb 	 * XXX-BZ and by now we know that this does not work on all drivers
1325d9f59799SBjoern A. Zeeb 	 * for all queues.
13266b4cac81SBjoern A. Zeeb 	 */
1327e7fe0373SBjoern A. Zeeb 	lkpi_wake_tx_queues(hw, LSTA_TO_STA(lsta), false, false);
13281665ef97SBjoern A. Zeeb #endif
13296b4cac81SBjoern A. Zeeb 
13306b4cac81SBjoern A. Zeeb 	/* Start mgd_prepare_tx. */
13316b4cac81SBjoern A. Zeeb 	memset(&prep_tx_info, 0, sizeof(prep_tx_info));
13326b4cac81SBjoern A. Zeeb 	prep_tx_info.duration = PREP_TX_INFO_DURATION;
13336b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_mgd_prepare_tx(hw, vif, &prep_tx_info);
13346b4cac81SBjoern A. Zeeb 	lsta->in_mgd = true;
13356b4cac81SBjoern A. Zeeb 
13366b4cac81SBjoern A. Zeeb 	/*
13376b4cac81SBjoern A. Zeeb 	 * What is going to happen next:
13386b4cac81SBjoern A. Zeeb 	 * - <twiddle> .. we should end up in "auth_to_assoc"
13396b4cac81SBjoern A. Zeeb 	 * - event_callback
13406b4cac81SBjoern A. Zeeb 	 * - update sta_state (NONE to AUTH)
13416b4cac81SBjoern A. Zeeb 	 * - mgd_complete_tx
13426b4cac81SBjoern A. Zeeb 	 * (ideally we'd do that on a callback for something else ...)
13436b4cac81SBjoern A. Zeeb 	 */
13446b4cac81SBjoern A. Zeeb 
13456b4cac81SBjoern A. Zeeb out:
13468ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_UNLOCK(lhw);
13476b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
13480936c648SBjoern A. Zeeb 	/*
13490936c648SBjoern A. Zeeb 	 * Release the reference that keop the ni stable locally
13500936c648SBjoern A. Zeeb 	 * during the work of this function.
13510936c648SBjoern A. Zeeb 	 */
13526b4cac81SBjoern A. Zeeb 	if (ni != NULL)
13536b4cac81SBjoern A. Zeeb 		ieee80211_free_node(ni);
13546b4cac81SBjoern A. Zeeb 	return (error);
13556b4cac81SBjoern A. Zeeb }
13566b4cac81SBjoern A. Zeeb 
13576b4cac81SBjoern A. Zeeb static int
13586b4cac81SBjoern A. Zeeb lkpi_sta_auth_to_scan(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
13596b4cac81SBjoern A. Zeeb {
13606b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
13616b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
13626b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
13636b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
13646b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
13656b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
13666b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
13676b4cac81SBjoern A. Zeeb 	struct ieee80211_prep_tx_info prep_tx_info;
13686b4cac81SBjoern A. Zeeb 	int error;
13696b4cac81SBjoern A. Zeeb 
13706b4cac81SBjoern A. Zeeb 	lhw = vap->iv_ic->ic_softc;
13716b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
13726b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
13736b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
13746b4cac81SBjoern A. Zeeb 
13752ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
13762ac8a218SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
13772ac8a218SBjoern A. Zeeb 	/* XXX-BZ KASSERT later; state going down so no action. */
13782ac8a218SBjoern A. Zeeb 	if (lvif->lvif_bss == NULL)
13792ac8a218SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: lvif %p vap %p iv_bss %p lvif_bss %p "
13802ac8a218SBjoern A. Zeeb 		    "lvif_bss->ni %p synched %d\n", __func__, __LINE__,
13812ac8a218SBjoern A. Zeeb 		    lvif, vap, vap->iv_bss, lvif->lvif_bss,
13822ac8a218SBjoern A. Zeeb 		    (lvif->lvif_bss != NULL) ? lvif->lvif_bss->ni : NULL,
13832ac8a218SBjoern A. Zeeb 		    lvif->lvif_bss_synched);
13842ac8a218SBjoern A. Zeeb #endif
13852ac8a218SBjoern A. Zeeb 
13862ac8a218SBjoern A. Zeeb 	lsta = lvif->lvif_bss;
13872ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
13882ac8a218SBjoern A. Zeeb 	KASSERT(lsta != NULL && lsta->ni != NULL, ("%s: lsta %p ni %p "
13892ac8a218SBjoern A. Zeeb 	    "lvif %p vap %p\n", __func__,
13902ac8a218SBjoern A. Zeeb 	    lsta, (lsta != NULL) ? lsta->ni : NULL, lvif, vap));
13912ac8a218SBjoern A. Zeeb 	ni = lsta->ni;			/* Reference held for lvif_bss. */
13926b4cac81SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
13936b4cac81SBjoern A. Zeeb 
139467674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
13956b4cac81SBjoern A. Zeeb 
13966b4cac81SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
13978ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_LOCK(lhw);
13986b4cac81SBjoern A. Zeeb 
1399d9f59799SBjoern A. Zeeb 	/* flush, drop. */
1400d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_flush(hw, vif,  nitems(sta->txq), true);
1401d9f59799SBjoern A. Zeeb 
14026b4cac81SBjoern A. Zeeb 	/* Wake tx queues to get packet(s) out. */
14036b4cac81SBjoern A. Zeeb 	lkpi_wake_tx_queues(hw, sta, true, true);
14046b4cac81SBjoern A. Zeeb 
14056b4cac81SBjoern A. Zeeb 	/* flush, no drop */
14066b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_flush(hw, vif,  nitems(sta->txq), false);
14076b4cac81SBjoern A. Zeeb 
14086b4cac81SBjoern A. Zeeb 	/* End mgd_complete_tx. */
14096b4cac81SBjoern A. Zeeb 	if (lsta->in_mgd) {
14106b4cac81SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
14116b4cac81SBjoern A. Zeeb 		prep_tx_info.success = false;
14126b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info);
14136b4cac81SBjoern A. Zeeb 		lsta->in_mgd = false;
14146b4cac81SBjoern A. Zeeb 	}
14156b4cac81SBjoern A. Zeeb 
14166b4cac81SBjoern A. Zeeb 	/* sync_rx_queues */
14176b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_sync_rx_queues(hw);
14186b4cac81SBjoern A. Zeeb 
14196b4cac81SBjoern A. Zeeb 	/* sta_pre_rcu_remove */
14206b4cac81SBjoern A. Zeeb         lkpi_80211_mo_sta_pre_rcu_remove(hw, vif, sta);
1421d9f59799SBjoern A. Zeeb 
1422d9f59799SBjoern A. Zeeb 	/* Take the station down. */
14236b4cac81SBjoern A. Zeeb 
14246b4cac81SBjoern A. Zeeb 	/* Adjust sta and change state (from NONE) to NOTEXIST. */
14256b4cac81SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
14266b4cac81SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_NONE, ("%s: lsta %p state not "
1427d9f59799SBjoern A. Zeeb 	    "NONE: %#x, nstate %d arg %d\n", __func__, lsta, lsta->state, nstate, arg));
1428e7fe0373SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_NOTEXIST);
14296b4cac81SBjoern A. Zeeb 	if (error != 0) {
14306b4cac81SBjoern A. Zeeb 		IMPROVE("do we need to undo the chan ctx?");
1431018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: mo_sta_state(NOTEXIST) "
1432018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, error);
14336b4cac81SBjoern A. Zeeb 		goto out;
14346b4cac81SBjoern A. Zeeb 	}
14356b4cac81SBjoern A. Zeeb #if 0
14366b4cac81SBjoern A. Zeeb 	lsta->added_to_drv = false;	/* mo manages. */
14376b4cac81SBjoern A. Zeeb #endif
14386b4cac81SBjoern A. Zeeb 
143967674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
14406b4cac81SBjoern A. Zeeb 
14412ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
14422ac8a218SBjoern A. Zeeb 	/* Remove ni reference for this cache of lsta. */
14432ac8a218SBjoern A. Zeeb 	lvif->lvif_bss = NULL;
14442ac8a218SBjoern A. Zeeb 	lvif->lvif_bss_synched = false;
14452ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
1446d9f59799SBjoern A. Zeeb 	lkpi_lsta_remove(lsta, lvif);
14470936c648SBjoern A. Zeeb 	/*
14480936c648SBjoern A. Zeeb 	 * The very last release the reference on the ni for the ni/lsta on
14490936c648SBjoern A. Zeeb 	 * lvif->lvif_bss.  Upon return from this both ni and lsta are invalid
14500936c648SBjoern A. Zeeb 	 * and potentially freed.
14510936c648SBjoern A. Zeeb 	 */
14520936c648SBjoern A. Zeeb 	ieee80211_free_node(ni);
1453d9f59799SBjoern A. Zeeb 
1454d9f59799SBjoern A. Zeeb 	/* conf_tx */
1455d9f59799SBjoern A. Zeeb 
1456d9f59799SBjoern A. Zeeb 	/* Take the chan ctx down. */
14576b4cac81SBjoern A. Zeeb 	if (vif->chanctx_conf != NULL) {
1458c5e25798SBjoern A. Zeeb 		struct lkpi_chanctx *lchanctx;
1459d1af434dSBjoern A. Zeeb 		struct ieee80211_chanctx_conf *chanctx_conf;
14606b4cac81SBjoern A. Zeeb 
1461d1af434dSBjoern A. Zeeb 		chanctx_conf = vif->chanctx_conf;
14626b4cac81SBjoern A. Zeeb 		/* Remove vif context. */
146368541546SBjoern A. Zeeb 		lkpi_80211_mo_unassign_vif_chanctx(hw, vif, &vif->bss_conf, &vif->chanctx_conf);
14646b4cac81SBjoern A. Zeeb 		/* NB: vif->chanctx_conf is NULL now. */
14656b4cac81SBjoern A. Zeeb 
14665a4d2461SBjoern A. Zeeb 		lkpi_hw_conf_idle(hw, true);
14675a4d2461SBjoern A. Zeeb 
14686b4cac81SBjoern A. Zeeb 		/* Remove chan ctx. */
1469d1af434dSBjoern A. Zeeb 		lkpi_80211_mo_remove_chanctx(hw, chanctx_conf);
1470d1af434dSBjoern A. Zeeb 		lchanctx = CHANCTX_CONF_TO_LCHANCTX(chanctx_conf);
1471c5e25798SBjoern A. Zeeb 		free(lchanctx, M_LKPI80211);
14726b4cac81SBjoern A. Zeeb 	}
14736b4cac81SBjoern A. Zeeb 
14746b4cac81SBjoern A. Zeeb out:
14758ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_UNLOCK(lhw);
14766b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
14776b4cac81SBjoern A. Zeeb 	return (error);
14786b4cac81SBjoern A. Zeeb }
14796b4cac81SBjoern A. Zeeb 
14806b4cac81SBjoern A. Zeeb static int
14816b4cac81SBjoern A. Zeeb lkpi_sta_auth_to_init(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
14826b4cac81SBjoern A. Zeeb {
14836b4cac81SBjoern A. Zeeb 	int error;
14846b4cac81SBjoern A. Zeeb 
14856b4cac81SBjoern A. Zeeb 	error = lkpi_sta_auth_to_scan(vap, nstate, arg);
14866b4cac81SBjoern A. Zeeb 	if (error == 0)
14876b4cac81SBjoern A. Zeeb 		error = lkpi_sta_scan_to_init(vap, nstate, arg);
14886b4cac81SBjoern A. Zeeb 	return (error);
14896b4cac81SBjoern A. Zeeb }
14906b4cac81SBjoern A. Zeeb 
14916b4cac81SBjoern A. Zeeb static int
14926b4cac81SBjoern A. Zeeb lkpi_sta_auth_to_assoc(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
14936b4cac81SBjoern A. Zeeb {
14946b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
14956b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
14966b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
14976b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
14986b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
14996b4cac81SBjoern A. Zeeb 	struct ieee80211_prep_tx_info prep_tx_info;
15006b4cac81SBjoern A. Zeeb 	int error;
15016b4cac81SBjoern A. Zeeb 
15026b4cac81SBjoern A. Zeeb 	lhw = vap->iv_ic->ic_softc;
15036b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
15046b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
15056b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
15066b4cac81SBjoern A. Zeeb 
15076b4cac81SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
15088ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_LOCK(lhw);
15092ac8a218SBjoern A. Zeeb 
15102ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
15112ac8a218SBjoern A. Zeeb 	/* XXX-BZ KASSERT later? */
15122ac8a218SBjoern A. Zeeb 	if (!lvif->lvif_bss_synched || lvif->lvif_bss == NULL) {
15132ac8a218SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
15142ac8a218SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: lvif %p vap %p iv_bss %p lvif_bss %p "
15152ac8a218SBjoern A. Zeeb 		    "lvif_bss->ni %p synched %d\n", __func__, __LINE__,
15162ac8a218SBjoern A. Zeeb 		    lvif, vap, vap->iv_bss, lvif->lvif_bss,
15172ac8a218SBjoern A. Zeeb 		    (lvif->lvif_bss != NULL) ? lvif->lvif_bss->ni : NULL,
15182ac8a218SBjoern A. Zeeb 		    lvif->lvif_bss_synched);
15192ac8a218SBjoern A. Zeeb #endif
15202ac8a218SBjoern A. Zeeb 		error = ENOTRECOVERABLE;
15212ac8a218SBjoern A. Zeeb 		LKPI_80211_LVIF_UNLOCK(lvif);
15222ac8a218SBjoern A. Zeeb 		goto out;
15232ac8a218SBjoern A. Zeeb 	}
15242ac8a218SBjoern A. Zeeb 	lsta = lvif->lvif_bss;
15252ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
15262ac8a218SBjoern A. Zeeb 
15272ac8a218SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: lsta %p\n", __func__, lsta));
15286b4cac81SBjoern A. Zeeb 
15296b4cac81SBjoern A. Zeeb 	/* Finish auth. */
15306b4cac81SBjoern A. Zeeb 	IMPROVE("event callback");
15316b4cac81SBjoern A. Zeeb 
15326b4cac81SBjoern A. Zeeb 	/* Update sta_state (NONE to AUTH). */
15336b4cac81SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_NONE, ("%s: lsta %p state not "
15346b4cac81SBjoern A. Zeeb 	    "NONE: %#x\n", __func__, lsta, lsta->state));
1535e7fe0373SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_AUTH);
1536018d93ecSBjoern A. Zeeb 	if (error != 0) {
1537018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: mo_sta_state(AUTH) "
1538018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, error);
15396b4cac81SBjoern A. Zeeb 		goto out;
1540018d93ecSBjoern A. Zeeb 	}
15416b4cac81SBjoern A. Zeeb 
15426b4cac81SBjoern A. Zeeb 	/* End mgd_complete_tx. */
15436b4cac81SBjoern A. Zeeb 	if (lsta->in_mgd) {
15446b4cac81SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
15456b4cac81SBjoern A. Zeeb 		prep_tx_info.success = true;
15466b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info);
15476b4cac81SBjoern A. Zeeb 		lsta->in_mgd = false;
15486b4cac81SBjoern A. Zeeb 	}
15496b4cac81SBjoern A. Zeeb 
15506b4cac81SBjoern A. Zeeb 	/* Now start assoc. */
15516b4cac81SBjoern A. Zeeb 
15526b4cac81SBjoern A. Zeeb 	/* Start mgd_prepare_tx. */
15536b4cac81SBjoern A. Zeeb 	if (!lsta->in_mgd) {
15546b4cac81SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
15556b4cac81SBjoern A. Zeeb 		prep_tx_info.duration = PREP_TX_INFO_DURATION;
15566b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_mgd_prepare_tx(hw, vif, &prep_tx_info);
15576b4cac81SBjoern A. Zeeb 		lsta->in_mgd = true;
15586b4cac81SBjoern A. Zeeb 	}
15596b4cac81SBjoern A. Zeeb 
15606b4cac81SBjoern A. Zeeb 	/* Wake tx queue to get packet out. */
1561e7fe0373SBjoern A. Zeeb 	lkpi_wake_tx_queues(hw, LSTA_TO_STA(lsta), true, true);
15626b4cac81SBjoern A. Zeeb 
15636b4cac81SBjoern A. Zeeb 	/*
15646b4cac81SBjoern A. Zeeb 	 * <twiddle> .. we end up in "assoc_to_run"
15656b4cac81SBjoern A. Zeeb 	 * - update sta_state (AUTH to ASSOC)
15666b4cac81SBjoern A. Zeeb 	 * - conf_tx [all]
15676b4cac81SBjoern A. Zeeb 	 * - bss_info_changed (assoc, aid, ssid, ..)
15686b4cac81SBjoern A. Zeeb 	 * - change_chanctx (if needed)
15696b4cac81SBjoern A. Zeeb 	 * - event_callback
15706b4cac81SBjoern A. Zeeb 	 * - mgd_complete_tx
15716b4cac81SBjoern A. Zeeb 	 */
15726b4cac81SBjoern A. Zeeb 
15736b4cac81SBjoern A. Zeeb out:
15748ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_UNLOCK(lhw);
15756b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
15766b4cac81SBjoern A. Zeeb 	return (error);
15776b4cac81SBjoern A. Zeeb }
15786b4cac81SBjoern A. Zeeb 
15796b4cac81SBjoern A. Zeeb /* auth_to_auth, assoc_to_assoc. */
15806b4cac81SBjoern A. Zeeb static int
15816b4cac81SBjoern A. Zeeb lkpi_sta_a_to_a(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
15826b4cac81SBjoern A. Zeeb {
15836b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
15846b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
15856b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
15866b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
15876b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
15886b4cac81SBjoern A. Zeeb 	struct ieee80211_prep_tx_info prep_tx_info;
15892ac8a218SBjoern A. Zeeb 	int error;
15906b4cac81SBjoern A. Zeeb 
15916b4cac81SBjoern A. Zeeb 	lhw = vap->iv_ic->ic_softc;
15926b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
15936b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
15946b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
15956b4cac81SBjoern A. Zeeb 
15966b4cac81SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
15978ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_LOCK(lhw);
15982ac8a218SBjoern A. Zeeb 
15992ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
16002ac8a218SBjoern A. Zeeb 	/* XXX-BZ KASSERT later? */
16012ac8a218SBjoern A. Zeeb 	if (!lvif->lvif_bss_synched || lvif->lvif_bss == NULL) {
16022ac8a218SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
16032ac8a218SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: lvif %p vap %p iv_bss %p lvif_bss %p "
16042ac8a218SBjoern A. Zeeb 		    "lvif_bss->ni %p synched %d\n", __func__, __LINE__,
16052ac8a218SBjoern A. Zeeb 		    lvif, vap, vap->iv_bss, lvif->lvif_bss,
16062ac8a218SBjoern A. Zeeb 		    (lvif->lvif_bss != NULL) ? lvif->lvif_bss->ni : NULL,
16072ac8a218SBjoern A. Zeeb 		    lvif->lvif_bss_synched);
16082ac8a218SBjoern A. Zeeb #endif
16092ac8a218SBjoern A. Zeeb 		LKPI_80211_LVIF_UNLOCK(lvif);
16102ac8a218SBjoern A. Zeeb 		error = ENOTRECOVERABLE;
16112ac8a218SBjoern A. Zeeb 		goto out;
16122ac8a218SBjoern A. Zeeb 	}
16132ac8a218SBjoern A. Zeeb 	lsta = lvif->lvif_bss;
16142ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
16152ac8a218SBjoern A. Zeeb 
16162ac8a218SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: lsta %p! lvif %p vap %p\n", __func__,
16172ac8a218SBjoern A. Zeeb 	    lsta, lvif, vap));
16186b4cac81SBjoern A. Zeeb 
16196b4cac81SBjoern A. Zeeb 	IMPROVE("event callback?");
16206b4cac81SBjoern A. Zeeb 
16216b4cac81SBjoern A. Zeeb 	/* End mgd_complete_tx. */
16226b4cac81SBjoern A. Zeeb 	if (lsta->in_mgd) {
16236b4cac81SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
16246b4cac81SBjoern A. Zeeb 		prep_tx_info.success = false;
16256b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info);
16266b4cac81SBjoern A. Zeeb 		lsta->in_mgd = false;
16276b4cac81SBjoern A. Zeeb 	}
16286b4cac81SBjoern A. Zeeb 
16296b4cac81SBjoern A. Zeeb 	/* Now start assoc. */
16306b4cac81SBjoern A. Zeeb 
16316b4cac81SBjoern A. Zeeb 	/* Start mgd_prepare_tx. */
16326b4cac81SBjoern A. Zeeb 	if (!lsta->in_mgd) {
16336b4cac81SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
16346b4cac81SBjoern A. Zeeb 		prep_tx_info.duration = PREP_TX_INFO_DURATION;
16356b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_mgd_prepare_tx(hw, vif, &prep_tx_info);
16366b4cac81SBjoern A. Zeeb 		lsta->in_mgd = true;
16376b4cac81SBjoern A. Zeeb 	}
16386b4cac81SBjoern A. Zeeb 
16392ac8a218SBjoern A. Zeeb 	error = 0;
16402ac8a218SBjoern A. Zeeb out:
16418ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_UNLOCK(lhw);
16426b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
16436b4cac81SBjoern A. Zeeb 
16442ac8a218SBjoern A. Zeeb 	return (error);
16456b4cac81SBjoern A. Zeeb }
16466b4cac81SBjoern A. Zeeb 
16476b4cac81SBjoern A. Zeeb static int
1648d9f59799SBjoern A. Zeeb _lkpi_sta_assoc_to_down(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
16496b4cac81SBjoern A. Zeeb {
16506b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
16516b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
16526b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
16536b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
16546b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
16556b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
16566b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
16576b4cac81SBjoern A. Zeeb 	struct ieee80211_prep_tx_info prep_tx_info;
1658d9f59799SBjoern A. Zeeb 	enum ieee80211_bss_changed bss_changed;
16596b4cac81SBjoern A. Zeeb 	int error;
16606b4cac81SBjoern A. Zeeb 
16616b4cac81SBjoern A. Zeeb 	lhw = vap->iv_ic->ic_softc;
16626b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
16636b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
16646b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
16656b4cac81SBjoern A. Zeeb 
16662ac8a218SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
16672ac8a218SBjoern A. Zeeb 	LKPI_80211_LHW_LOCK(lhw);
16682ac8a218SBjoern A. Zeeb 
16692ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
16702ac8a218SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
16712ac8a218SBjoern A. Zeeb 	/* XXX-BZ KASSERT later; state going down so no action. */
16722ac8a218SBjoern A. Zeeb 	if (lvif->lvif_bss == NULL)
16732ac8a218SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: lvif %p vap %p iv_bss %p lvif_bss %p "
16742ac8a218SBjoern A. Zeeb 		    "lvif_bss->ni %p synched %d\n", __func__, __LINE__,
16752ac8a218SBjoern A. Zeeb 		    lvif, vap, vap->iv_bss, lvif->lvif_bss,
16762ac8a218SBjoern A. Zeeb 		    (lvif->lvif_bss != NULL) ? lvif->lvif_bss->ni : NULL,
16772ac8a218SBjoern A. Zeeb 		    lvif->lvif_bss_synched);
16782ac8a218SBjoern A. Zeeb #endif
16792ac8a218SBjoern A. Zeeb 	lsta = lvif->lvif_bss;
16802ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
16812ac8a218SBjoern A. Zeeb 	KASSERT(lsta != NULL && lsta->ni != NULL, ("%s: lsta %p ni %p "
16822ac8a218SBjoern A. Zeeb 	    "lvif %p vap %p\n", __func__,
16832ac8a218SBjoern A. Zeeb 	    lsta, (lsta != NULL) ? lsta->ni : NULL, lvif, vap));
16842ac8a218SBjoern A. Zeeb 
16852ac8a218SBjoern A. Zeeb 	ni = lsta->ni;		/* Reference held for lvif_bss. */
16866b4cac81SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
16876b4cac81SBjoern A. Zeeb 
168867674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
1689d9f59799SBjoern A. Zeeb 
1690d9f59799SBjoern A. Zeeb 	/* flush, drop. */
1691d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_flush(hw, vif,  nitems(sta->txq), true);
1692d9f59799SBjoern A. Zeeb 
1693d9f59799SBjoern A. Zeeb 	IMPROVE("What are the proper conditions for DEAUTH_NEED_MGD_TX_PREP?");
1694d9f59799SBjoern A. Zeeb 	if (ieee80211_hw_check(hw, DEAUTH_NEED_MGD_TX_PREP) &&
1695d9f59799SBjoern A. Zeeb 	    !lsta->in_mgd) {
1696d9f59799SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
1697d9f59799SBjoern A. Zeeb 		prep_tx_info.duration = PREP_TX_INFO_DURATION;
1698d9f59799SBjoern A. Zeeb 		lkpi_80211_mo_mgd_prepare_tx(hw, vif, &prep_tx_info);
1699d9f59799SBjoern A. Zeeb 		lsta->in_mgd = true;
1700d9f59799SBjoern A. Zeeb 	}
1701d9f59799SBjoern A. Zeeb 
17028ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_UNLOCK(lhw);
1703d9f59799SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
1704d9f59799SBjoern A. Zeeb 
1705d9f59799SBjoern A. Zeeb 	/* Call iv_newstate first so we get potential DISASSOC packet out. */
1706d9f59799SBjoern A. Zeeb 	error = lvif->iv_newstate(vap, nstate, arg);
1707018d93ecSBjoern A. Zeeb 	if (error != 0) {
1708018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: iv_newstate(%p, %d, %d) "
1709018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, vap, nstate, arg, error);
1710d9f59799SBjoern A. Zeeb 		goto outni;
1711018d93ecSBjoern A. Zeeb 	}
1712d9f59799SBjoern A. Zeeb 
1713d9f59799SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
17148ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_LOCK(lhw);
1715d9f59799SBjoern A. Zeeb 
171667674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
1717d9f59799SBjoern A. Zeeb 
1718d9f59799SBjoern A. Zeeb 	/* Wake tx queues to get packet(s) out. */
1719d9f59799SBjoern A. Zeeb 	lkpi_wake_tx_queues(hw, sta, true, true);
1720d9f59799SBjoern A. Zeeb 
1721d9f59799SBjoern A. Zeeb 	/* flush, no drop */
1722d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_flush(hw, vif,  nitems(sta->txq), false);
1723d9f59799SBjoern A. Zeeb 
17246b4cac81SBjoern A. Zeeb 	/* End mgd_complete_tx. */
17256b4cac81SBjoern A. Zeeb 	if (lsta->in_mgd) {
17266b4cac81SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
17276b4cac81SBjoern A. Zeeb 		prep_tx_info.success = false;
17286b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info);
17296b4cac81SBjoern A. Zeeb 		lsta->in_mgd = false;
17306b4cac81SBjoern A. Zeeb 	}
17316b4cac81SBjoern A. Zeeb 
1732d9f59799SBjoern A. Zeeb 	/* sync_rx_queues */
1733d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_sync_rx_queues(hw);
1734d9f59799SBjoern A. Zeeb 
1735d9f59799SBjoern A. Zeeb 	/* sta_pre_rcu_remove */
1736d9f59799SBjoern A. Zeeb         lkpi_80211_mo_sta_pre_rcu_remove(hw, vif, sta);
1737d9f59799SBjoern A. Zeeb 
1738d9f59799SBjoern A. Zeeb 	/* Take the station down. */
1739d9f59799SBjoern A. Zeeb 
17406b4cac81SBjoern A. Zeeb 	/* Update sta and change state (from AUTH) to NONE. */
17416b4cac81SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
17426b4cac81SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_AUTH, ("%s: lsta %p state not "
17436b4cac81SBjoern A. Zeeb 	    "AUTH: %#x\n", __func__, lsta, lsta->state));
1744e7fe0373SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_NONE);
1745018d93ecSBjoern A. Zeeb 	if (error != 0) {
1746018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: mo_sta_state(NONE) "
1747018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, error);
17486b4cac81SBjoern A. Zeeb 		goto out;
1749018d93ecSBjoern A. Zeeb 	}
17506b4cac81SBjoern A. Zeeb 
17515a4d2461SBjoern A. Zeeb 	/* See comment in lkpi_sta_run_to_init(). */
17525a4d2461SBjoern A. Zeeb 	bss_changed = 0;
17535a4d2461SBjoern A. Zeeb 	bss_changed |= lkpi_disassoc(sta, vif, lhw);
17546b4cac81SBjoern A. Zeeb 
17555a4d2461SBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
175616e688b2SBjoern A. Zeeb 
1757d9f59799SBjoern A. Zeeb 	/* Adjust sta and change state (from NONE) to NOTEXIST. */
1758d9f59799SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
1759d9f59799SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_NONE, ("%s: lsta %p state not "
1760d9f59799SBjoern A. Zeeb 	    "NONE: %#x, nstate %d arg %d\n", __func__, lsta, lsta->state, nstate, arg));
1761e7fe0373SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_NOTEXIST);
1762d9f59799SBjoern A. Zeeb 	if (error != 0) {
1763d9f59799SBjoern A. Zeeb 		IMPROVE("do we need to undo the chan ctx?");
1764018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: mo_sta_state(NOTEXIST) "
1765018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, error);
1766d9f59799SBjoern A. Zeeb 		goto out;
1767d9f59799SBjoern A. Zeeb 	}
1768d9f59799SBjoern A. Zeeb 
176916e688b2SBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);	/* sta no longer save to use. */
1770d9f59799SBjoern A. Zeeb 
1771d9f59799SBjoern A. Zeeb 	IMPROVE("Any bss_info changes to announce?");
1772d9f59799SBjoern A. Zeeb 	vif->bss_conf.qos = 0;
1773d9f59799SBjoern A. Zeeb 	bss_changed |= BSS_CHANGED_QOS;
1774616e1330SBjoern A. Zeeb 	vif->cfg.ssid_len = 0;
1775616e1330SBjoern A. Zeeb 	memset(vif->cfg.ssid, '\0', sizeof(vif->cfg.ssid));
1776d9f59799SBjoern A. Zeeb 	bss_changed |= BSS_CHANGED_BSSID;
1777d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, bss_changed);
1778d9f59799SBjoern A. Zeeb 
17792ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
17802ac8a218SBjoern A. Zeeb 	/* Remove ni reference for this cache of lsta. */
17812ac8a218SBjoern A. Zeeb 	lvif->lvif_bss = NULL;
17822ac8a218SBjoern A. Zeeb 	lvif->lvif_bss_synched = false;
17832ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
1784d9f59799SBjoern A. Zeeb 	lkpi_lsta_remove(lsta, lvif);
17850936c648SBjoern A. Zeeb 	/*
17860936c648SBjoern A. Zeeb 	 * The very last release the reference on the ni for the ni/lsta on
17870936c648SBjoern A. Zeeb 	 * lvif->lvif_bss.  Upon return from this both ni and lsta are invalid
17880936c648SBjoern A. Zeeb 	 * and potentially freed.
17890936c648SBjoern A. Zeeb 	 */
17900936c648SBjoern A. Zeeb 	ieee80211_free_node(ni);
1791d9f59799SBjoern A. Zeeb 
1792d9f59799SBjoern A. Zeeb 	/* conf_tx */
1793d9f59799SBjoern A. Zeeb 
1794d9f59799SBjoern A. Zeeb 	/* Take the chan ctx down. */
1795d9f59799SBjoern A. Zeeb 	if (vif->chanctx_conf != NULL) {
1796c5e25798SBjoern A. Zeeb 		struct lkpi_chanctx *lchanctx;
1797d1af434dSBjoern A. Zeeb 		struct ieee80211_chanctx_conf *chanctx_conf;
1798d9f59799SBjoern A. Zeeb 
1799d1af434dSBjoern A. Zeeb 		chanctx_conf = vif->chanctx_conf;
1800d9f59799SBjoern A. Zeeb 		/* Remove vif context. */
180168541546SBjoern A. Zeeb 		lkpi_80211_mo_unassign_vif_chanctx(hw, vif, &vif->bss_conf, &vif->chanctx_conf);
1802d9f59799SBjoern A. Zeeb 		/* NB: vif->chanctx_conf is NULL now. */
1803d9f59799SBjoern A. Zeeb 
18045a4d2461SBjoern A. Zeeb 		lkpi_hw_conf_idle(hw, true);
18055a4d2461SBjoern A. Zeeb 
1806d9f59799SBjoern A. Zeeb 		/* Remove chan ctx. */
1807d1af434dSBjoern A. Zeeb 		lkpi_80211_mo_remove_chanctx(hw, chanctx_conf);
1808d1af434dSBjoern A. Zeeb 		lchanctx = CHANCTX_CONF_TO_LCHANCTX(chanctx_conf);
1809c5e25798SBjoern A. Zeeb 		free(lchanctx, M_LKPI80211);
1810d9f59799SBjoern A. Zeeb 	}
1811d9f59799SBjoern A. Zeeb 
1812d9f59799SBjoern A. Zeeb 	error = EALREADY;
18136b4cac81SBjoern A. Zeeb out:
18148ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_UNLOCK(lhw);
18156b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
1816d9f59799SBjoern A. Zeeb outni:
18176b4cac81SBjoern A. Zeeb 	return (error);
18186b4cac81SBjoern A. Zeeb }
18196b4cac81SBjoern A. Zeeb 
18206b4cac81SBjoern A. Zeeb static int
1821d9f59799SBjoern A. Zeeb lkpi_sta_assoc_to_auth(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
1822d9f59799SBjoern A. Zeeb {
1823d9f59799SBjoern A. Zeeb 	int error;
1824d9f59799SBjoern A. Zeeb 
1825d9f59799SBjoern A. Zeeb 	error = _lkpi_sta_assoc_to_down(vap, nstate, arg);
1826d9f59799SBjoern A. Zeeb 	if (error != 0 && error != EALREADY)
1827d9f59799SBjoern A. Zeeb 		return (error);
1828d9f59799SBjoern A. Zeeb 
1829d9f59799SBjoern A. Zeeb 	/* At this point iv_bss is long a new node! */
1830d9f59799SBjoern A. Zeeb 
1831d9f59799SBjoern A. Zeeb 	error |= lkpi_sta_scan_to_auth(vap, nstate, 0);
1832d9f59799SBjoern A. Zeeb 	return (error);
1833d9f59799SBjoern A. Zeeb }
1834d9f59799SBjoern A. Zeeb 
1835d9f59799SBjoern A. Zeeb static int
18366b4cac81SBjoern A. Zeeb lkpi_sta_assoc_to_scan(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
18376b4cac81SBjoern A. Zeeb {
18386b4cac81SBjoern A. Zeeb 	int error;
18396b4cac81SBjoern A. Zeeb 
1840d9f59799SBjoern A. Zeeb 	error = _lkpi_sta_assoc_to_down(vap, nstate, arg);
18416b4cac81SBjoern A. Zeeb 	return (error);
18426b4cac81SBjoern A. Zeeb }
18436b4cac81SBjoern A. Zeeb 
18446b4cac81SBjoern A. Zeeb static int
18456b4cac81SBjoern A. Zeeb lkpi_sta_assoc_to_init(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
18466b4cac81SBjoern A. Zeeb {
18476b4cac81SBjoern A. Zeeb 	int error;
18486b4cac81SBjoern A. Zeeb 
1849d9f59799SBjoern A. Zeeb 	error = _lkpi_sta_assoc_to_down(vap, nstate, arg);
18506b4cac81SBjoern A. Zeeb 	return (error);
18516b4cac81SBjoern A. Zeeb }
18526b4cac81SBjoern A. Zeeb 
18536b4cac81SBjoern A. Zeeb static int
18546b4cac81SBjoern A. Zeeb lkpi_sta_assoc_to_run(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
18556b4cac81SBjoern A. Zeeb {
18566b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
18576b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
18586b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
18596b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
18606b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
18616b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
18626b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
18636b4cac81SBjoern A. Zeeb 	struct ieee80211_prep_tx_info prep_tx_info;
18646b4cac81SBjoern A. Zeeb 	enum ieee80211_bss_changed bss_changed;
18656b4cac81SBjoern A. Zeeb 	int error;
18666b4cac81SBjoern A. Zeeb 
18676b4cac81SBjoern A. Zeeb 	lhw = vap->iv_ic->ic_softc;
18686b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
18696b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
18706b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
18716b4cac81SBjoern A. Zeeb 
18726b4cac81SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
18738ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_LOCK(lhw);
18742ac8a218SBjoern A. Zeeb 
18752ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
18762ac8a218SBjoern A. Zeeb 	/* XXX-BZ KASSERT later? */
18772ac8a218SBjoern A. Zeeb 	if (!lvif->lvif_bss_synched || lvif->lvif_bss == NULL) {
18782ac8a218SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
18792ac8a218SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: lvif %p vap %p iv_bss %p lvif_bss %p "
18802ac8a218SBjoern A. Zeeb 		    "lvif_bss->ni %p synched %d\n", __func__, __LINE__,
18812ac8a218SBjoern A. Zeeb 		    lvif, vap, vap->iv_bss, lvif->lvif_bss,
18822ac8a218SBjoern A. Zeeb 		    (lvif->lvif_bss != NULL) ? lvif->lvif_bss->ni : NULL,
18832ac8a218SBjoern A. Zeeb 		    lvif->lvif_bss_synched);
18842ac8a218SBjoern A. Zeeb #endif
18852ac8a218SBjoern A. Zeeb 		LKPI_80211_LVIF_UNLOCK(lvif);
18862ac8a218SBjoern A. Zeeb 		error = ENOTRECOVERABLE;
18872ac8a218SBjoern A. Zeeb 		goto out;
18882ac8a218SBjoern A. Zeeb 	}
18892ac8a218SBjoern A. Zeeb 	lsta = lvif->lvif_bss;
18902ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
18912ac8a218SBjoern A. Zeeb 	KASSERT(lsta != NULL && lsta->ni != NULL, ("%s: lsta %p ni %p "
18922ac8a218SBjoern A. Zeeb 	    "lvif %p vap %p\n", __func__,
18932ac8a218SBjoern A. Zeeb 	    lsta, (lsta != NULL) ? lsta->ni : NULL, lvif, vap));
18942ac8a218SBjoern A. Zeeb 
18952ac8a218SBjoern A. Zeeb 	ni = lsta->ni;		/* Reference held for lvif_bss. */
18966b4cac81SBjoern A. Zeeb 
18976b4cac81SBjoern A. Zeeb 	IMPROVE("ponder some of this moved to ic_newassoc, scan_assoc_success, "
18986b4cac81SBjoern A. Zeeb 	    "and to lesser extend ieee80211_notify_node_join");
18996b4cac81SBjoern A. Zeeb 
19009597f7cbSBjoern A. Zeeb 	/* Finish assoc. */
19019597f7cbSBjoern A. Zeeb 	/* Update sta_state (AUTH to ASSOC) and set aid. */
19029597f7cbSBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_AUTH, ("%s: lsta %p state not "
19039597f7cbSBjoern A. Zeeb 	    "AUTH: %#x\n", __func__, lsta, lsta->state));
19046b4cac81SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
19059597f7cbSBjoern A. Zeeb 	sta->aid = IEEE80211_NODE_AID(ni);
19064a67f1dfSBjoern A. Zeeb #ifdef LKPI_80211_WME
19074a67f1dfSBjoern A. Zeeb 	if (vap->iv_flags & IEEE80211_F_WME)
19084a67f1dfSBjoern A. Zeeb 		sta->wme = true;
19094a67f1dfSBjoern A. Zeeb #endif
1910e7fe0373SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_ASSOC);
1911018d93ecSBjoern A. Zeeb 	if (error != 0) {
1912018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: mo_sta_state(ASSOC) "
1913018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, error);
19149597f7cbSBjoern A. Zeeb 		goto out;
1915018d93ecSBjoern A. Zeeb 	}
19166b4cac81SBjoern A. Zeeb 
19176b4cac81SBjoern A. Zeeb 	IMPROVE("wme / conf_tx [all]");
19186b4cac81SBjoern A. Zeeb 
19196b4cac81SBjoern A. Zeeb 	/* Update bss info (bss_info_changed) (assoc, aid, ..). */
19206b4cac81SBjoern A. Zeeb 	bss_changed = 0;
19214a67f1dfSBjoern A. Zeeb #ifdef LKPI_80211_WME
19224a67f1dfSBjoern A. Zeeb 	bss_changed |= lkpi_wme_update(lhw, vap, true);
19234a67f1dfSBjoern A. Zeeb #endif
1924616e1330SBjoern A. Zeeb 	if (!vif->cfg.assoc || vif->cfg.aid != IEEE80211_NODE_AID(ni)) {
1925616e1330SBjoern A. Zeeb 		vif->cfg.assoc = true;
1926616e1330SBjoern A. Zeeb 		vif->cfg.aid = IEEE80211_NODE_AID(ni);
19276b4cac81SBjoern A. Zeeb 		bss_changed |= BSS_CHANGED_ASSOC;
19286b4cac81SBjoern A. Zeeb 	}
19296b4cac81SBjoern A. Zeeb 	/* We set SSID but this is not BSSID! */
1930616e1330SBjoern A. Zeeb 	vif->cfg.ssid_len = ni->ni_esslen;
1931616e1330SBjoern A. Zeeb 	memcpy(vif->cfg.ssid, ni->ni_essid, ni->ni_esslen);
19326b4cac81SBjoern A. Zeeb 	if ((vap->iv_flags & IEEE80211_F_SHPREAMBLE) !=
19336b4cac81SBjoern A. Zeeb 	    vif->bss_conf.use_short_preamble) {
19346b4cac81SBjoern A. Zeeb 		vif->bss_conf.use_short_preamble ^= 1;
19356b4cac81SBjoern A. Zeeb 		/* bss_changed |= BSS_CHANGED_??? */
19366b4cac81SBjoern A. Zeeb 	}
19376b4cac81SBjoern A. Zeeb 	if ((vap->iv_flags & IEEE80211_F_SHSLOT) !=
19386b4cac81SBjoern A. Zeeb 	    vif->bss_conf.use_short_slot) {
19396b4cac81SBjoern A. Zeeb 		vif->bss_conf.use_short_slot ^= 1;
19406b4cac81SBjoern A. Zeeb 		/* bss_changed |= BSS_CHANGED_??? */
19416b4cac81SBjoern A. Zeeb 	}
19426b4cac81SBjoern A. Zeeb 	if ((ni->ni_flags & IEEE80211_NODE_QOS) !=
19436b4cac81SBjoern A. Zeeb 	    vif->bss_conf.qos) {
19446b4cac81SBjoern A. Zeeb 		vif->bss_conf.qos ^= 1;
19456b4cac81SBjoern A. Zeeb 		bss_changed |= BSS_CHANGED_QOS;
19466b4cac81SBjoern A. Zeeb 	}
1947fa8f007dSBjoern A. Zeeb 
1948fa8f007dSBjoern A. Zeeb 	bss_changed |= lkpi_update_dtim_tsf(vif, ni, vap, __func__, __LINE__);
1949fa8f007dSBjoern A. Zeeb 
19506b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, bss_changed);
19516b4cac81SBjoern A. Zeeb 
19526b4cac81SBjoern A. Zeeb 	/* - change_chanctx (if needed)
19536b4cac81SBjoern A. Zeeb 	 * - event_callback
19546b4cac81SBjoern A. Zeeb 	 */
19556b4cac81SBjoern A. Zeeb 
19566b4cac81SBjoern A. Zeeb 	/* End mgd_complete_tx. */
19576b4cac81SBjoern A. Zeeb 	if (lsta->in_mgd) {
19586b4cac81SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
19596b4cac81SBjoern A. Zeeb 		prep_tx_info.success = true;
19606b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info);
19616b4cac81SBjoern A. Zeeb 		lsta->in_mgd = false;
19626b4cac81SBjoern A. Zeeb 	}
19636b4cac81SBjoern A. Zeeb 
1964086be6a8SBjoern A. Zeeb 	lkpi_hw_conf_idle(hw, false);
1965086be6a8SBjoern A. Zeeb 
19666b4cac81SBjoern A. Zeeb 	/*
19676b4cac81SBjoern A. Zeeb 	 * And then:
19686b4cac81SBjoern A. Zeeb 	 * - (more packets)?
19696b4cac81SBjoern A. Zeeb 	 * - set_key
19706b4cac81SBjoern A. Zeeb 	 * - set_default_unicast_key
19716b4cac81SBjoern A. Zeeb 	 * - set_key (?)
19726b4cac81SBjoern A. Zeeb 	 * - ipv6_addr_change (?)
19736b4cac81SBjoern A. Zeeb 	 */
19746b4cac81SBjoern A. Zeeb 	/* Prepare_multicast && configure_filter. */
19756b4cac81SBjoern A. Zeeb 	lhw->update_mc = true;
19766b4cac81SBjoern A. Zeeb 	lkpi_update_mcast_filter(vap->iv_ic, true);
19776b4cac81SBjoern A. Zeeb 
19786b4cac81SBjoern A. Zeeb 	if (!ieee80211_node_is_authorized(ni)) {
19796b4cac81SBjoern A. Zeeb 		IMPROVE("net80211 does not consider node authorized");
19806b4cac81SBjoern A. Zeeb 	}
19816b4cac81SBjoern A. Zeeb 
19829fb91463SBjoern A. Zeeb #if defined(LKPI_80211_HT)
19839fb91463SBjoern A. Zeeb 	IMPROVE("Is this the right spot, has net80211 done all updates already?");
19849fb91463SBjoern A. Zeeb 	lkpi_sta_sync_ht_from_ni(sta, ni, NULL);
19859fb91463SBjoern A. Zeeb #endif
19869fb91463SBjoern A. Zeeb 
19876b4cac81SBjoern A. Zeeb 	/* Update sta_state (ASSOC to AUTHORIZED). */
19886b4cac81SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
19896b4cac81SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_ASSOC, ("%s: lsta %p state not "
19906b4cac81SBjoern A. Zeeb 	    "ASSOC: %#x\n", __func__, lsta, lsta->state));
1991e7fe0373SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_AUTHORIZED);
19926b4cac81SBjoern A. Zeeb 	if (error != 0) {
19936b4cac81SBjoern A. Zeeb 		IMPROVE("undo some changes?");
1994018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: mo_sta_state(AUTHORIZED) "
1995018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, error);
19966b4cac81SBjoern A. Zeeb 		goto out;
19976b4cac81SBjoern A. Zeeb 	}
19986b4cac81SBjoern A. Zeeb 
19996b4cac81SBjoern A. Zeeb 	/* - drv_config (?)
20006b4cac81SBjoern A. Zeeb 	 * - bss_info_changed
20016b4cac81SBjoern A. Zeeb 	 * - set_rekey_data (?)
20026b4cac81SBjoern A. Zeeb 	 *
20036b4cac81SBjoern A. Zeeb 	 * And now we should be passing packets.
20046b4cac81SBjoern A. Zeeb 	 */
20056b4cac81SBjoern A. Zeeb 	IMPROVE("Need that bssid setting, and the keys");
20066b4cac81SBjoern A. Zeeb 
2007fa8f007dSBjoern A. Zeeb 	bss_changed = 0;
2008fa8f007dSBjoern A. Zeeb 	bss_changed |= lkpi_update_dtim_tsf(vif, ni, vap, __func__, __LINE__);
2009fa8f007dSBjoern A. Zeeb 	lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, bss_changed);
2010fa8f007dSBjoern A. Zeeb 
20116b4cac81SBjoern A. Zeeb out:
20128ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_UNLOCK(lhw);
20136b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
20146b4cac81SBjoern A. Zeeb 	return (error);
20156b4cac81SBjoern A. Zeeb }
20166b4cac81SBjoern A. Zeeb 
20176b4cac81SBjoern A. Zeeb static int
20186b4cac81SBjoern A. Zeeb lkpi_sta_auth_to_run(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
20196b4cac81SBjoern A. Zeeb {
20206b4cac81SBjoern A. Zeeb 	int error;
20216b4cac81SBjoern A. Zeeb 
20226b4cac81SBjoern A. Zeeb 	error = lkpi_sta_auth_to_assoc(vap, nstate, arg);
20236b4cac81SBjoern A. Zeeb 	if (error == 0)
20246b4cac81SBjoern A. Zeeb 		error = lkpi_sta_assoc_to_run(vap, nstate, arg);
20256b4cac81SBjoern A. Zeeb 	return (error);
20266b4cac81SBjoern A. Zeeb }
20276b4cac81SBjoern A. Zeeb 
20286b4cac81SBjoern A. Zeeb static int
20296b4cac81SBjoern A. Zeeb lkpi_sta_run_to_assoc(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
20306b4cac81SBjoern A. Zeeb {
20316b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
20326b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
20336b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
20346b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
20356b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
20366b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
20376b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
2038d9f59799SBjoern A. Zeeb 	struct ieee80211_prep_tx_info prep_tx_info;
2039d9f59799SBjoern A. Zeeb #if 0
2040d9f59799SBjoern A. Zeeb 	enum ieee80211_bss_changed bss_changed;
2041d9f59799SBjoern A. Zeeb #endif
20426b4cac81SBjoern A. Zeeb 	int error;
20436b4cac81SBjoern A. Zeeb 
20446b4cac81SBjoern A. Zeeb 	lhw = vap->iv_ic->ic_softc;
20456b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
20466b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
20476b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
20486b4cac81SBjoern A. Zeeb 
20492ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
20502ac8a218SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
20512ac8a218SBjoern A. Zeeb 	/* XXX-BZ KASSERT later; state going down so no action. */
20522ac8a218SBjoern A. Zeeb 	if (lvif->lvif_bss == NULL)
20532ac8a218SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: lvif %p vap %p iv_bss %p lvif_bss %p "
20542ac8a218SBjoern A. Zeeb 		    "lvif_bss->ni %p synched %d\n", __func__, __LINE__,
20552ac8a218SBjoern A. Zeeb 		    lvif, vap, vap->iv_bss, lvif->lvif_bss,
20562ac8a218SBjoern A. Zeeb 		    (lvif->lvif_bss != NULL) ? lvif->lvif_bss->ni : NULL,
20572ac8a218SBjoern A. Zeeb 		    lvif->lvif_bss_synched);
20582ac8a218SBjoern A. Zeeb #endif
20592ac8a218SBjoern A. Zeeb 	lsta = lvif->lvif_bss;
20602ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
20612ac8a218SBjoern A. Zeeb 	KASSERT(lsta != NULL && lsta->ni != NULL, ("%s: lsta %p ni %p "
20622ac8a218SBjoern A. Zeeb 	    "lvif %p vap %p\n", __func__,
20632ac8a218SBjoern A. Zeeb 	    lsta, (lsta != NULL) ? lsta->ni : NULL, lvif, vap));
20642ac8a218SBjoern A. Zeeb 
20652ac8a218SBjoern A. Zeeb 	ni = lsta->ni;		/* Reference held for lvif_bss. */
20666b4cac81SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
20676b4cac81SBjoern A. Zeeb 
206867674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
2069d9f59799SBjoern A. Zeeb 
2070d9f59799SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
20718ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_LOCK(lhw);
2072d9f59799SBjoern A. Zeeb 
2073d9f59799SBjoern A. Zeeb 	/* flush, drop. */
2074d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_flush(hw, vif,  nitems(sta->txq), true);
2075d9f59799SBjoern A. Zeeb 
2076d9f59799SBjoern A. Zeeb 	IMPROVE("What are the proper conditions for DEAUTH_NEED_MGD_TX_PREP?");
2077d9f59799SBjoern A. Zeeb 	if (ieee80211_hw_check(hw, DEAUTH_NEED_MGD_TX_PREP) &&
2078d9f59799SBjoern A. Zeeb 	    !lsta->in_mgd) {
2079d9f59799SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
2080d9f59799SBjoern A. Zeeb 		prep_tx_info.duration = PREP_TX_INFO_DURATION;
2081d9f59799SBjoern A. Zeeb 		lkpi_80211_mo_mgd_prepare_tx(hw, vif, &prep_tx_info);
2082d9f59799SBjoern A. Zeeb 		lsta->in_mgd = true;
2083d9f59799SBjoern A. Zeeb 	}
2084d9f59799SBjoern A. Zeeb 
20858ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_UNLOCK(lhw);
2086d9f59799SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
2087d9f59799SBjoern A. Zeeb 
2088d9f59799SBjoern A. Zeeb 	/* Call iv_newstate first so we get potential DISASSOC packet out. */
2089d9f59799SBjoern A. Zeeb 	error = lvif->iv_newstate(vap, nstate, arg);
2090018d93ecSBjoern A. Zeeb 	if (error != 0) {
2091018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: iv_newstate(%p, %d, %d) "
2092018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, vap, nstate, arg, error);
2093d9f59799SBjoern A. Zeeb 		goto outni;
2094018d93ecSBjoern A. Zeeb 	}
2095d9f59799SBjoern A. Zeeb 
2096d9f59799SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
20978ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_LOCK(lhw);
2098d9f59799SBjoern A. Zeeb 
209967674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
2100d9f59799SBjoern A. Zeeb 
2101d9f59799SBjoern A. Zeeb 	/* Wake tx queues to get packet(s) out. */
2102d9f59799SBjoern A. Zeeb 	lkpi_wake_tx_queues(hw, sta, true, true);
2103d9f59799SBjoern A. Zeeb 
2104d9f59799SBjoern A. Zeeb 	/* flush, no drop */
2105d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_flush(hw, vif,  nitems(sta->txq), false);
2106d9f59799SBjoern A. Zeeb 
2107d9f59799SBjoern A. Zeeb 	/* End mgd_complete_tx. */
2108d9f59799SBjoern A. Zeeb 	if (lsta->in_mgd) {
2109d9f59799SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
2110d9f59799SBjoern A. Zeeb 		prep_tx_info.success = false;
2111d9f59799SBjoern A. Zeeb 		lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info);
2112d9f59799SBjoern A. Zeeb 		lsta->in_mgd = false;
2113d9f59799SBjoern A. Zeeb 	}
2114d9f59799SBjoern A. Zeeb 
2115d9f59799SBjoern A. Zeeb #if 0
2116d9f59799SBjoern A. Zeeb 	/* sync_rx_queues */
2117d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_sync_rx_queues(hw);
2118d9f59799SBjoern A. Zeeb 
2119d9f59799SBjoern A. Zeeb 	/* sta_pre_rcu_remove */
2120d9f59799SBjoern A. Zeeb         lkpi_80211_mo_sta_pre_rcu_remove(hw, vif, sta);
2121d9f59799SBjoern A. Zeeb #endif
2122d9f59799SBjoern A. Zeeb 
2123d9f59799SBjoern A. Zeeb 	/* Take the station down. */
2124d9f59799SBjoern A. Zeeb 
21256b4cac81SBjoern A. Zeeb 	/* Adjust sta and change state (from AUTHORIZED) to ASSOC. */
21266b4cac81SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
21276b4cac81SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_AUTHORIZED, ("%s: lsta %p state not "
21286b4cac81SBjoern A. Zeeb 	    "AUTHORIZED: %#x\n", __func__, lsta, lsta->state));
2129e7fe0373SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_ASSOC);
2130018d93ecSBjoern A. Zeeb 	if (error != 0) {
2131018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: mo_sta_state(ASSOC) "
2132018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, error);
21336b4cac81SBjoern A. Zeeb 		goto out;
2134018d93ecSBjoern A. Zeeb 	}
21356b4cac81SBjoern A. Zeeb 
213667674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
21376b4cac81SBjoern A. Zeeb 
21386b4cac81SBjoern A. Zeeb 	/* Update sta_state (ASSOC to AUTH). */
21396b4cac81SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
21406b4cac81SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_ASSOC, ("%s: lsta %p state not "
21416b4cac81SBjoern A. Zeeb 	    "ASSOC: %#x\n", __func__, lsta, lsta->state));
2142e7fe0373SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_AUTH);
2143018d93ecSBjoern A. Zeeb 	if (error != 0) {
2144018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: mo_sta_state(AUTH) "
2145018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, error);
21466b4cac81SBjoern A. Zeeb 		goto out;
2147018d93ecSBjoern A. Zeeb 	}
21486b4cac81SBjoern A. Zeeb 
214967674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
21506b4cac81SBjoern A. Zeeb 
2151d9f59799SBjoern A. Zeeb #if 0
2152d9f59799SBjoern A. Zeeb 	/* Update bss info (bss_info_changed) (assoc, aid, ..). */
2153d9f59799SBjoern A. Zeeb 	lkpi_disassoc(sta, vif, lhw);
2154d9f59799SBjoern A. Zeeb #endif
2155d9f59799SBjoern A. Zeeb 
2156d9f59799SBjoern A. Zeeb 	error = EALREADY;
21576b4cac81SBjoern A. Zeeb out:
21588ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_UNLOCK(lhw);
21596b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
2160d9f59799SBjoern A. Zeeb outni:
21616b4cac81SBjoern A. Zeeb 	return (error);
21626b4cac81SBjoern A. Zeeb }
21636b4cac81SBjoern A. Zeeb 
21646b4cac81SBjoern A. Zeeb static int
2165d9f59799SBjoern A. Zeeb lkpi_sta_run_to_init(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
2166d9f59799SBjoern A. Zeeb {
2167d9f59799SBjoern A. Zeeb 	struct lkpi_hw *lhw;
2168d9f59799SBjoern A. Zeeb 	struct ieee80211_hw *hw;
2169d9f59799SBjoern A. Zeeb 	struct lkpi_vif *lvif;
2170d9f59799SBjoern A. Zeeb 	struct ieee80211_vif *vif;
2171d9f59799SBjoern A. Zeeb 	struct ieee80211_node *ni;
2172d9f59799SBjoern A. Zeeb 	struct lkpi_sta *lsta;
2173d9f59799SBjoern A. Zeeb 	struct ieee80211_sta *sta;
2174d9f59799SBjoern A. Zeeb 	struct ieee80211_prep_tx_info prep_tx_info;
2175d9f59799SBjoern A. Zeeb 	enum ieee80211_bss_changed bss_changed;
2176d9f59799SBjoern A. Zeeb 	int error;
2177d9f59799SBjoern A. Zeeb 
2178d9f59799SBjoern A. Zeeb 	lhw = vap->iv_ic->ic_softc;
2179d9f59799SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
2180d9f59799SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
2181d9f59799SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
2182d9f59799SBjoern A. Zeeb 
21832ac8a218SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
21842ac8a218SBjoern A. Zeeb 	LKPI_80211_LHW_LOCK(lhw);
21852ac8a218SBjoern A. Zeeb 
21862ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
21872ac8a218SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
21882ac8a218SBjoern A. Zeeb 	/* XXX-BZ KASSERT later; state going down so no action. */
21892ac8a218SBjoern A. Zeeb 	if (lvif->lvif_bss == NULL)
21902ac8a218SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: lvif %p vap %p iv_bss %p lvif_bss %p "
21912ac8a218SBjoern A. Zeeb 		    "lvif_bss->ni %p synched %d\n", __func__, __LINE__,
21922ac8a218SBjoern A. Zeeb 		    lvif, vap, vap->iv_bss, lvif->lvif_bss,
21932ac8a218SBjoern A. Zeeb 		    (lvif->lvif_bss != NULL) ? lvif->lvif_bss->ni : NULL,
21942ac8a218SBjoern A. Zeeb 		    lvif->lvif_bss_synched);
21952ac8a218SBjoern A. Zeeb #endif
21962ac8a218SBjoern A. Zeeb 	lsta = lvif->lvif_bss;
21972ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
21982ac8a218SBjoern A. Zeeb 	KASSERT(lsta != NULL && lsta->ni != NULL, ("%s: lsta %p ni %p "
21992ac8a218SBjoern A. Zeeb 	    "lvif %p vap %p\n", __func__,
22002ac8a218SBjoern A. Zeeb 	    lsta, (lsta != NULL) ? lsta->ni : NULL, lvif, vap));
22012ac8a218SBjoern A. Zeeb 
22022ac8a218SBjoern A. Zeeb 	ni = lsta->ni;		/* Reference held for lvif_bss. */
2203d9f59799SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
2204d9f59799SBjoern A. Zeeb 
220567674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
2206d9f59799SBjoern A. Zeeb 
2207d9f59799SBjoern A. Zeeb 	/* flush, drop. */
2208d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_flush(hw, vif,  nitems(sta->txq), true);
2209d9f59799SBjoern A. Zeeb 
2210d9f59799SBjoern A. Zeeb 	IMPROVE("What are the proper conditions for DEAUTH_NEED_MGD_TX_PREP?");
2211d9f59799SBjoern A. Zeeb 	if (ieee80211_hw_check(hw, DEAUTH_NEED_MGD_TX_PREP) &&
2212d9f59799SBjoern A. Zeeb 	    !lsta->in_mgd) {
2213d9f59799SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
2214d9f59799SBjoern A. Zeeb 		prep_tx_info.duration = PREP_TX_INFO_DURATION;
2215d9f59799SBjoern A. Zeeb 		lkpi_80211_mo_mgd_prepare_tx(hw, vif, &prep_tx_info);
2216d9f59799SBjoern A. Zeeb 		lsta->in_mgd = true;
2217d9f59799SBjoern A. Zeeb 	}
2218d9f59799SBjoern A. Zeeb 
22198ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_UNLOCK(lhw);
2220d9f59799SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
2221d9f59799SBjoern A. Zeeb 
2222d9f59799SBjoern A. Zeeb 	/* Call iv_newstate first so we get potential DISASSOC packet out. */
2223d9f59799SBjoern A. Zeeb 	error = lvif->iv_newstate(vap, nstate, arg);
2224018d93ecSBjoern A. Zeeb 	if (error != 0) {
2225018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: iv_newstate(%p, %d, %d) "
2226018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, vap, nstate, arg, error);
2227d9f59799SBjoern A. Zeeb 		goto outni;
2228018d93ecSBjoern A. Zeeb 	}
2229d9f59799SBjoern A. Zeeb 
2230d9f59799SBjoern A. Zeeb 	IEEE80211_UNLOCK(vap->iv_ic);
22318ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_LOCK(lhw);
2232d9f59799SBjoern A. Zeeb 
223367674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
2234d9f59799SBjoern A. Zeeb 
2235d9f59799SBjoern A. Zeeb 	/* Wake tx queues to get packet(s) out. */
2236d9f59799SBjoern A. Zeeb 	lkpi_wake_tx_queues(hw, sta, true, true);
2237d9f59799SBjoern A. Zeeb 
2238d9f59799SBjoern A. Zeeb 	/* flush, no drop */
2239d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_flush(hw, vif,  nitems(sta->txq), false);
2240d9f59799SBjoern A. Zeeb 
2241d9f59799SBjoern A. Zeeb 	/* End mgd_complete_tx. */
2242d9f59799SBjoern A. Zeeb 	if (lsta->in_mgd) {
2243d9f59799SBjoern A. Zeeb 		memset(&prep_tx_info, 0, sizeof(prep_tx_info));
2244d9f59799SBjoern A. Zeeb 		prep_tx_info.success = false;
2245d9f59799SBjoern A. Zeeb 		lkpi_80211_mo_mgd_complete_tx(hw, vif, &prep_tx_info);
2246d9f59799SBjoern A. Zeeb 		lsta->in_mgd = false;
2247d9f59799SBjoern A. Zeeb 	}
2248d9f59799SBjoern A. Zeeb 
2249d9f59799SBjoern A. Zeeb 	/* sync_rx_queues */
2250d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_sync_rx_queues(hw);
2251d9f59799SBjoern A. Zeeb 
2252d9f59799SBjoern A. Zeeb 	/* sta_pre_rcu_remove */
2253d9f59799SBjoern A. Zeeb         lkpi_80211_mo_sta_pre_rcu_remove(hw, vif, sta);
2254d9f59799SBjoern A. Zeeb 
2255d9f59799SBjoern A. Zeeb 	/* Take the station down. */
2256d9f59799SBjoern A. Zeeb 
2257d9f59799SBjoern A. Zeeb 	/* Adjust sta and change state (from AUTHORIZED) to ASSOC. */
2258d9f59799SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
2259d9f59799SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_AUTHORIZED, ("%s: lsta %p state not "
2260d9f59799SBjoern A. Zeeb 	    "AUTHORIZED: %#x\n", __func__, lsta, lsta->state));
2261e7fe0373SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_ASSOC);
2262018d93ecSBjoern A. Zeeb 	if (error != 0) {
2263018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: mo_sta_state(ASSOC) "
2264018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, error);
2265d9f59799SBjoern A. Zeeb 		goto out;
2266018d93ecSBjoern A. Zeeb 	}
2267d9f59799SBjoern A. Zeeb 
226867674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
2269d9f59799SBjoern A. Zeeb 
2270d9f59799SBjoern A. Zeeb 	/* Update sta_state (ASSOC to AUTH). */
2271d9f59799SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
2272d9f59799SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_ASSOC, ("%s: lsta %p state not "
2273d9f59799SBjoern A. Zeeb 	    "ASSOC: %#x\n", __func__, lsta, lsta->state));
2274e7fe0373SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_AUTH);
2275018d93ecSBjoern A. Zeeb 	if (error != 0) {
2276018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: mo_sta_state(AUTH) "
2277018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, error);
2278d9f59799SBjoern A. Zeeb 		goto out;
2279018d93ecSBjoern A. Zeeb 	}
2280d9f59799SBjoern A. Zeeb 
228167674c1cSBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
2282d9f59799SBjoern A. Zeeb 
2283d9f59799SBjoern A. Zeeb 	/* Update sta and change state (from AUTH) to NONE. */
2284d9f59799SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
2285d9f59799SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_AUTH, ("%s: lsta %p state not "
2286d9f59799SBjoern A. Zeeb 	    "AUTH: %#x\n", __func__, lsta, lsta->state));
2287e7fe0373SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_NONE);
2288018d93ecSBjoern A. Zeeb 	if (error != 0) {
2289018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: mo_sta_state(NONE) "
2290018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, error);
2291d9f59799SBjoern A. Zeeb 		goto out;
2292018d93ecSBjoern A. Zeeb 	}
2293d9f59799SBjoern A. Zeeb 
22945a4d2461SBjoern A. Zeeb 	bss_changed = 0;
229516e688b2SBjoern A. Zeeb 	/*
22965a4d2461SBjoern A. Zeeb 	 * Start updating bss info (bss_info_changed) (assoc, aid, ..).
22975a4d2461SBjoern A. Zeeb 	 *
229816e688b2SBjoern A. Zeeb 	 * One would expect this to happen when going off AUTHORIZED.
22995a4d2461SBjoern A. Zeeb 	 * See comment there; removes the sta from fw if not careful
23005a4d2461SBjoern A. Zeeb 	 * (bss_info_changed() change is executed right away).
23015a4d2461SBjoern A. Zeeb 	 *
23025a4d2461SBjoern A. Zeeb 	 * We need to do this now, before sta changes to IEEE80211_STA_NOTEXIST
23035a4d2461SBjoern A. Zeeb 	 * as otherwise drivers (iwlwifi at least) will silently not remove
23045a4d2461SBjoern A. Zeeb 	 * the sta from the firmware and when we will add a new one trigger
23055a4d2461SBjoern A. Zeeb 	 * a fw assert.
23065a4d2461SBjoern A. Zeeb 	 *
23075a4d2461SBjoern A. Zeeb 	 * The order which works best so far avoiding early removal or silent
23085a4d2461SBjoern A. Zeeb 	 * non-removal seems to be (for iwlwifi::mld-mac80211.c cases;
23095a4d2461SBjoern A. Zeeb 	 * the iwlwifi:mac80211.c case still to be tested):
23105a4d2461SBjoern A. Zeeb 	 * 1) lkpi_disassoc(): set vif->cfg.assoc = false (aid=0 side effect here)
23115a4d2461SBjoern A. Zeeb 	 * 2) call the last sta_state update -> IEEE80211_STA_NOTEXIST
23125a4d2461SBjoern A. Zeeb 	 *    (removes the sta given assoc is false)
23135a4d2461SBjoern A. Zeeb 	 * 3) add the remaining BSS_CHANGED changes and call bss_info_changed()
23145a4d2461SBjoern A. Zeeb 	 * 4) call unassign_vif_chanctx
23155a4d2461SBjoern A. Zeeb 	 * 5) call lkpi_hw_conf_idle
23165a4d2461SBjoern A. Zeeb 	 * 6) call remove_chanctx
231716e688b2SBjoern A. Zeeb 	 */
23185a4d2461SBjoern A. Zeeb 	bss_changed |= lkpi_disassoc(sta, vif, lhw);
23195a4d2461SBjoern A. Zeeb 
23205a4d2461SBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);
232116e688b2SBjoern A. Zeeb 
2322d9f59799SBjoern A. Zeeb 	/* Adjust sta and change state (from NONE) to NOTEXIST. */
2323d9f59799SBjoern A. Zeeb 	KASSERT(lsta != NULL, ("%s: ni %p lsta is NULL\n", __func__, ni));
2324d9f59799SBjoern A. Zeeb 	KASSERT(lsta->state == IEEE80211_STA_NONE, ("%s: lsta %p state not "
2325d9f59799SBjoern A. Zeeb 	    "NONE: %#x, nstate %d arg %d\n", __func__, lsta, lsta->state, nstate, arg));
2326e7fe0373SBjoern A. Zeeb 	error = lkpi_80211_mo_sta_state(hw, vif, lsta, IEEE80211_STA_NOTEXIST);
2327d9f59799SBjoern A. Zeeb 	if (error != 0) {
2328d9f59799SBjoern A. Zeeb 		IMPROVE("do we need to undo the chan ctx?");
2329018d93ecSBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: mo_sta_state(NOTEXIST) "
2330018d93ecSBjoern A. Zeeb 		    "failed: %d\n", __func__, __LINE__, error);
2331d9f59799SBjoern A. Zeeb 		goto out;
2332d9f59799SBjoern A. Zeeb 	}
2333d9f59799SBjoern A. Zeeb 
23345a4d2461SBjoern A. Zeeb 	lkpi_lsta_remove(lsta, lvif);
23355a4d2461SBjoern A. Zeeb 
233616e688b2SBjoern A. Zeeb 	lkpi_lsta_dump(lsta, ni, __func__, __LINE__);	/* sta no longer save to use. */
2337d9f59799SBjoern A. Zeeb 
2338d9f59799SBjoern A. Zeeb 	IMPROVE("Any bss_info changes to announce?");
2339d9f59799SBjoern A. Zeeb 	vif->bss_conf.qos = 0;
2340d9f59799SBjoern A. Zeeb 	bss_changed |= BSS_CHANGED_QOS;
2341616e1330SBjoern A. Zeeb 	vif->cfg.ssid_len = 0;
2342616e1330SBjoern A. Zeeb 	memset(vif->cfg.ssid, '\0', sizeof(vif->cfg.ssid));
2343d9f59799SBjoern A. Zeeb 	bss_changed |= BSS_CHANGED_BSSID;
23445a4d2461SBjoern A. Zeeb 	vif->bss_conf.use_short_preamble = false;
23455a4d2461SBjoern A. Zeeb 	vif->bss_conf.qos = false;
23465a4d2461SBjoern A. Zeeb 	/* XXX BSS_CHANGED_???? */
2347d9f59799SBjoern A. Zeeb 	lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, bss_changed);
2348d9f59799SBjoern A. Zeeb 
23492ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
23502ac8a218SBjoern A. Zeeb 	/* Remove ni reference for this cache of lsta. */
23512ac8a218SBjoern A. Zeeb 	lvif->lvif_bss = NULL;
23522ac8a218SBjoern A. Zeeb 	lvif->lvif_bss_synched = false;
23532ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
23540936c648SBjoern A. Zeeb 	/*
23550936c648SBjoern A. Zeeb 	 * The very last release the reference on the ni for the ni/lsta on
23560936c648SBjoern A. Zeeb 	 * lvif->lvif_bss.  Upon return from this both ni and lsta are invalid
23570936c648SBjoern A. Zeeb 	 * and potentially freed.
23580936c648SBjoern A. Zeeb 	 */
23590936c648SBjoern A. Zeeb 	ieee80211_free_node(ni);
2360d9f59799SBjoern A. Zeeb 
2361d9f59799SBjoern A. Zeeb 	/* conf_tx */
2362d9f59799SBjoern A. Zeeb 
2363d9f59799SBjoern A. Zeeb 	/* Take the chan ctx down. */
2364d9f59799SBjoern A. Zeeb 	if (vif->chanctx_conf != NULL) {
2365c5e25798SBjoern A. Zeeb 		struct lkpi_chanctx *lchanctx;
2366d1af434dSBjoern A. Zeeb 		struct ieee80211_chanctx_conf *chanctx_conf;
2367d9f59799SBjoern A. Zeeb 
2368d1af434dSBjoern A. Zeeb 		chanctx_conf = vif->chanctx_conf;
2369d9f59799SBjoern A. Zeeb 		/* Remove vif context. */
237068541546SBjoern A. Zeeb 		lkpi_80211_mo_unassign_vif_chanctx(hw, vif, &vif->bss_conf, &vif->chanctx_conf);
2371d9f59799SBjoern A. Zeeb 		/* NB: vif->chanctx_conf is NULL now. */
2372d9f59799SBjoern A. Zeeb 
23735a4d2461SBjoern A. Zeeb 		lkpi_hw_conf_idle(hw, true);
23745a4d2461SBjoern A. Zeeb 
2375d9f59799SBjoern A. Zeeb 		/* Remove chan ctx. */
2376d1af434dSBjoern A. Zeeb 		lkpi_80211_mo_remove_chanctx(hw, chanctx_conf);
2377d1af434dSBjoern A. Zeeb 		lchanctx = CHANCTX_CONF_TO_LCHANCTX(chanctx_conf);
2378c5e25798SBjoern A. Zeeb 		free(lchanctx, M_LKPI80211);
2379d9f59799SBjoern A. Zeeb 	}
2380d9f59799SBjoern A. Zeeb 
2381d9f59799SBjoern A. Zeeb 	error = EALREADY;
2382d9f59799SBjoern A. Zeeb out:
23838ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_UNLOCK(lhw);
2384d9f59799SBjoern A. Zeeb 	IEEE80211_LOCK(vap->iv_ic);
2385d9f59799SBjoern A. Zeeb outni:
2386d9f59799SBjoern A. Zeeb 	return (error);
2387d9f59799SBjoern A. Zeeb }
2388d9f59799SBjoern A. Zeeb 
2389d9f59799SBjoern A. Zeeb static int
2390d9f59799SBjoern A. Zeeb lkpi_sta_run_to_scan(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
2391d9f59799SBjoern A. Zeeb {
2392d9f59799SBjoern A. Zeeb 
2393d9f59799SBjoern A. Zeeb 	return (lkpi_sta_run_to_init(vap, nstate, arg));
2394d9f59799SBjoern A. Zeeb }
2395d9f59799SBjoern A. Zeeb 
2396d9f59799SBjoern A. Zeeb static int
23976b4cac81SBjoern A. Zeeb lkpi_sta_run_to_auth(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
23986b4cac81SBjoern A. Zeeb {
23996b4cac81SBjoern A. Zeeb 	int error;
24006b4cac81SBjoern A. Zeeb 
2401d9f59799SBjoern A. Zeeb 	error = lkpi_sta_run_to_init(vap, nstate, arg);
2402d9f59799SBjoern A. Zeeb 	if (error != 0 && error != EALREADY)
2403d9f59799SBjoern A. Zeeb 		return (error);
2404d9f59799SBjoern A. Zeeb 
2405d9f59799SBjoern A. Zeeb 	/* At this point iv_bss is long a new node! */
2406d9f59799SBjoern A. Zeeb 
2407d9f59799SBjoern A. Zeeb 	error |= lkpi_sta_scan_to_auth(vap, nstate, 0);
24086b4cac81SBjoern A. Zeeb 	return (error);
24096b4cac81SBjoern A. Zeeb }
24106b4cac81SBjoern A. Zeeb 
2411d9f59799SBjoern A. Zeeb /* -------------------------------------------------------------------------- */
24126b4cac81SBjoern A. Zeeb 
24136b4cac81SBjoern A. Zeeb /*
24146b4cac81SBjoern A. Zeeb  * The matches the documented state changes in net80211::sta_newstate().
24156b4cac81SBjoern A. Zeeb  * XXX (1) without CSA and SLEEP yet, * XXX (2) not all unhandled cases
24166b4cac81SBjoern A. Zeeb  * there are "invalid" (so there is a room for failure here).
24176b4cac81SBjoern A. Zeeb  */
24186b4cac81SBjoern A. Zeeb struct fsm_state {
24196b4cac81SBjoern A. Zeeb 	/* INIT, SCAN, AUTH, ASSOC, CAC, RUN, CSA, SLEEP */
24206b4cac81SBjoern A. Zeeb 	enum ieee80211_state ostate;
24216b4cac81SBjoern A. Zeeb 	enum ieee80211_state nstate;
24226b4cac81SBjoern A. Zeeb 	int (*handler)(struct ieee80211vap *, enum ieee80211_state, int);
24236b4cac81SBjoern A. Zeeb } sta_state_fsm[] = {
24246b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_INIT,	IEEE80211_S_INIT, lkpi_sta_state_do_nada },
24256b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_SCAN,	IEEE80211_S_INIT, lkpi_sta_state_do_nada },	/* scan_to_init */
24266b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_AUTH,	IEEE80211_S_INIT, lkpi_sta_auth_to_init },	/* not explicitly in sta_newstate() */
2427d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_ASSOC,	IEEE80211_S_INIT, lkpi_sta_assoc_to_init },	/* Send DEAUTH. */
2428d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_RUN,	IEEE80211_S_INIT, lkpi_sta_run_to_init },	/* Send DISASSOC. */
24296b4cac81SBjoern A. Zeeb 
24306b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_INIT,	IEEE80211_S_SCAN, lkpi_sta_state_do_nada },
24316b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_SCAN,	IEEE80211_S_SCAN, lkpi_sta_state_do_nada },
24326b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_AUTH,	IEEE80211_S_SCAN, lkpi_sta_auth_to_scan },
24336b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_ASSOC,	IEEE80211_S_SCAN, lkpi_sta_assoc_to_scan },
2434d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_RUN,	IEEE80211_S_SCAN, lkpi_sta_run_to_scan },	/* Beacon miss. */
24356b4cac81SBjoern A. Zeeb 
2436d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_INIT,	IEEE80211_S_AUTH, lkpi_sta_scan_to_auth },	/* Send AUTH. */
2437d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_SCAN,	IEEE80211_S_AUTH, lkpi_sta_scan_to_auth },	/* Send AUTH. */
2438d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_AUTH,	IEEE80211_S_AUTH, lkpi_sta_a_to_a },		/* Send ?AUTH. */
2439d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_ASSOC,	IEEE80211_S_AUTH, lkpi_sta_assoc_to_auth },	/* Send ?AUTH. */
2440d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_RUN,	IEEE80211_S_AUTH, lkpi_sta_run_to_auth },	/* Send ?AUTH. */
24416b4cac81SBjoern A. Zeeb 
2442d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_AUTH,	IEEE80211_S_ASSOC, lkpi_sta_auth_to_assoc },	/* Send ASSOCREQ. */
2443d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_ASSOC,	IEEE80211_S_ASSOC, lkpi_sta_a_to_a },		/* Send ASSOCREQ. */
2444d9f59799SBjoern A. Zeeb 	{ IEEE80211_S_RUN,	IEEE80211_S_ASSOC, lkpi_sta_run_to_assoc },	/* Send ASSOCREQ/REASSOCREQ. */
24456b4cac81SBjoern A. Zeeb 
24466b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_AUTH,	IEEE80211_S_RUN, lkpi_sta_auth_to_run },
24476b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_ASSOC,	IEEE80211_S_RUN, lkpi_sta_assoc_to_run },
24486b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_RUN,	IEEE80211_S_RUN, lkpi_sta_state_do_nada },
24496b4cac81SBjoern A. Zeeb 
24506b4cac81SBjoern A. Zeeb 	/* Dummy at the end without handler. */
24516b4cac81SBjoern A. Zeeb 	{ IEEE80211_S_INIT,	IEEE80211_S_INIT, NULL },
24526b4cac81SBjoern A. Zeeb };
24536b4cac81SBjoern A. Zeeb 
24546b4cac81SBjoern A. Zeeb static int
24556b4cac81SBjoern A. Zeeb lkpi_iv_newstate(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
24566b4cac81SBjoern A. Zeeb {
24576b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
24586b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
24596b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
24606b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
24616b4cac81SBjoern A. Zeeb 	struct fsm_state *s;
24626b4cac81SBjoern A. Zeeb 	enum ieee80211_state ostate;
24636b4cac81SBjoern A. Zeeb 	int error;
24646b4cac81SBjoern A. Zeeb 
24656b4cac81SBjoern A. Zeeb 	ic = vap->iv_ic;
24666b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK_ASSERT(ic);
24676b4cac81SBjoern A. Zeeb 	ostate = vap->iv_state;
24686b4cac81SBjoern A. Zeeb 
24699d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
24709d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE)
24716b4cac81SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: vap %p nstate %#x arg %#x\n",
24726b4cac81SBjoern A. Zeeb 		    __func__, __LINE__, vap, nstate, arg);
24739d9ba2b7SBjoern A. Zeeb #endif
24746b4cac81SBjoern A. Zeeb 
24756b4cac81SBjoern A. Zeeb 	if (vap->iv_opmode == IEEE80211_M_STA) {
24766b4cac81SBjoern A. Zeeb 
24776b4cac81SBjoern A. Zeeb 		lhw = ic->ic_softc;
24786b4cac81SBjoern A. Zeeb 		lvif = VAP_TO_LVIF(vap);
24796b4cac81SBjoern A. Zeeb 		vif = LVIF_TO_VIF(lvif);
24806b4cac81SBjoern A. Zeeb 
24816b4cac81SBjoern A. Zeeb 		/* No need to replicate this in most state handlers. */
24826b4cac81SBjoern A. Zeeb 		if (ostate == IEEE80211_S_SCAN && nstate != IEEE80211_S_SCAN)
24836b4cac81SBjoern A. Zeeb 			lkpi_stop_hw_scan(lhw, vif);
24846b4cac81SBjoern A. Zeeb 
24856b4cac81SBjoern A. Zeeb 		s = sta_state_fsm;
24866b4cac81SBjoern A. Zeeb 
24876b4cac81SBjoern A. Zeeb 	} else {
24886b4cac81SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s: only station mode currently supported: "
24896b4cac81SBjoern A. Zeeb 		    "cap %p iv_opmode %d\n", __func__, vap, vap->iv_opmode);
24906b4cac81SBjoern A. Zeeb 		return (ENOSYS);
24916b4cac81SBjoern A. Zeeb 	}
24926b4cac81SBjoern A. Zeeb 
24936b4cac81SBjoern A. Zeeb 	error = 0;
24946b4cac81SBjoern A. Zeeb 	for (; s->handler != NULL; s++) {
24956b4cac81SBjoern A. Zeeb 		if (ostate == s->ostate && nstate == s->nstate) {
24969d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
24979d9ba2b7SBjoern A. Zeeb 			if (linuxkpi_debug_80211 & D80211_TRACE)
2498d9f59799SBjoern A. Zeeb 				ic_printf(vap->iv_ic, "%s: new state %d (%s) ->"
2499d9f59799SBjoern A. Zeeb 				    " %d (%s): arg %d.\n", __func__,
2500d9f59799SBjoern A. Zeeb 				    ostate, ieee80211_state_name[ostate],
2501d9f59799SBjoern A. Zeeb 				    nstate, ieee80211_state_name[nstate], arg);
25029d9ba2b7SBjoern A. Zeeb #endif
25036b4cac81SBjoern A. Zeeb 			error = s->handler(vap, nstate, arg);
25046b4cac81SBjoern A. Zeeb 			break;
25056b4cac81SBjoern A. Zeeb 		}
25066b4cac81SBjoern A. Zeeb 	}
25076b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK_ASSERT(vap->iv_ic);
25086b4cac81SBjoern A. Zeeb 
25096b4cac81SBjoern A. Zeeb 	if (s->handler == NULL) {
2510d9f59799SBjoern A. Zeeb 		IMPROVE("turn this into a KASSERT\n");
25116b4cac81SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s: unsupported state transition "
25126b4cac81SBjoern A. Zeeb 		    "%d (%s) -> %d (%s)\n", __func__,
25136b4cac81SBjoern A. Zeeb 		    ostate, ieee80211_state_name[ostate],
25146b4cac81SBjoern A. Zeeb 		    nstate, ieee80211_state_name[nstate]);
25156b4cac81SBjoern A. Zeeb 		return (ENOSYS);
25166b4cac81SBjoern A. Zeeb 	}
25176b4cac81SBjoern A. Zeeb 
25186b4cac81SBjoern A. Zeeb 	if (error == EALREADY) {
25199d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
25209d9ba2b7SBjoern A. Zeeb 		if (linuxkpi_debug_80211 & D80211_TRACE)
2521d9f59799SBjoern A. Zeeb 			ic_printf(vap->iv_ic, "%s: state transition %d (%s) -> "
2522d9f59799SBjoern A. Zeeb 			    "%d (%s): iv_newstate already handled: %d.\n",
2523d9f59799SBjoern A. Zeeb 			    __func__, ostate, ieee80211_state_name[ostate],
2524d9f59799SBjoern A. Zeeb 			    nstate, ieee80211_state_name[nstate], error);
25259d9ba2b7SBjoern A. Zeeb #endif
25266b4cac81SBjoern A. Zeeb 		return (0);
25276b4cac81SBjoern A. Zeeb 	}
25286b4cac81SBjoern A. Zeeb 
25296b4cac81SBjoern A. Zeeb 	if (error != 0) {
25306b4cac81SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s: error %d during state transition "
25316b4cac81SBjoern A. Zeeb 		    "%d (%s) -> %d (%s)\n", __func__, error,
25326b4cac81SBjoern A. Zeeb 		    ostate, ieee80211_state_name[ostate],
25336b4cac81SBjoern A. Zeeb 		    nstate, ieee80211_state_name[nstate]);
253445c27ad5SBjoern A. Zeeb 		return (error);
25356b4cac81SBjoern A. Zeeb 	}
25366b4cac81SBjoern A. Zeeb 
25379d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
25389d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE)
2539d9f59799SBjoern A. Zeeb 		ic_printf(vap->iv_ic, "%s:%d: vap %p nstate %#x arg %#x "
2540d9f59799SBjoern A. Zeeb 		    "calling net80211 parent\n",
25416b4cac81SBjoern A. Zeeb 		    __func__, __LINE__, vap, nstate, arg);
25429d9ba2b7SBjoern A. Zeeb #endif
25436b4cac81SBjoern A. Zeeb 
25446b4cac81SBjoern A. Zeeb 	return (lvif->iv_newstate(vap, nstate, arg));
25456b4cac81SBjoern A. Zeeb }
25466b4cac81SBjoern A. Zeeb 
25476b4cac81SBjoern A. Zeeb /* -------------------------------------------------------------------------- */
25486b4cac81SBjoern A. Zeeb 
2549d9f59799SBjoern A. Zeeb /*
2550d9f59799SBjoern A. Zeeb  * We overload (*iv_update_bss) as otherwise we have cases in, e.g.,
2551d9f59799SBjoern A. Zeeb  * net80211::ieee80211_sta_join1() where vap->iv_bss gets replaced by a
2552d9f59799SBjoern A. Zeeb  * new node without us knowing and thus our ni/lsta are out of sync.
2553d9f59799SBjoern A. Zeeb  */
2554d9f59799SBjoern A. Zeeb static struct ieee80211_node *
2555d9f59799SBjoern A. Zeeb lkpi_iv_update_bss(struct ieee80211vap *vap, struct ieee80211_node *ni)
2556d9f59799SBjoern A. Zeeb {
2557d9f59799SBjoern A. Zeeb 	struct lkpi_vif *lvif;
25582ac8a218SBjoern A. Zeeb 	struct ieee80211_node *rni;
2559d9f59799SBjoern A. Zeeb 
25602ac8a218SBjoern A. Zeeb 	IEEE80211_LOCK_ASSERT(vap->iv_ic);
2561d9f59799SBjoern A. Zeeb 
2562ed3ef56bSBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
25632ac8a218SBjoern A. Zeeb 
25642ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
25652ac8a218SBjoern A. Zeeb 	lvif->lvif_bss_synched = false;
25662ac8a218SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
25672ac8a218SBjoern A. Zeeb 
25682ac8a218SBjoern A. Zeeb 	rni = lvif->iv_update_bss(vap, ni);
25692ac8a218SBjoern A. Zeeb 	return (rni);
2570d9f59799SBjoern A. Zeeb }
2571d9f59799SBjoern A. Zeeb 
25724a67f1dfSBjoern A. Zeeb #ifdef LKPI_80211_WME
25736b4cac81SBjoern A. Zeeb static int
25744a67f1dfSBjoern A. Zeeb lkpi_wme_update(struct lkpi_hw *lhw, struct ieee80211vap *vap, bool planned)
25756b4cac81SBjoern A. Zeeb {
25764a67f1dfSBjoern A. Zeeb 	struct ieee80211com *ic;
25776b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
25786b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
25796b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
25806b4cac81SBjoern A. Zeeb 	struct chanAccParams chp;
25816b4cac81SBjoern A. Zeeb 	struct wmeParams wmeparr[WME_NUM_AC];
25826b4cac81SBjoern A. Zeeb 	struct ieee80211_tx_queue_params txqp;
25836b4cac81SBjoern A. Zeeb 	enum ieee80211_bss_changed changed;
25846b4cac81SBjoern A. Zeeb 	int error;
25856b4cac81SBjoern A. Zeeb 	uint16_t ac;
25866b4cac81SBjoern A. Zeeb 
25876b4cac81SBjoern A. Zeeb 	IMPROVE();
25886b4cac81SBjoern A. Zeeb 	KASSERT(WME_NUM_AC == IEEE80211_NUM_ACS, ("%s: WME_NUM_AC %d != "
25896b4cac81SBjoern A. Zeeb 	    "IEEE80211_NUM_ACS %d\n", __func__, WME_NUM_AC, IEEE80211_NUM_ACS));
25906b4cac81SBjoern A. Zeeb 
25916b4cac81SBjoern A. Zeeb 	if (vap == NULL)
25926b4cac81SBjoern A. Zeeb 		return (0);
25936b4cac81SBjoern A. Zeeb 
25944a67f1dfSBjoern A. Zeeb 	if ((vap->iv_flags & IEEE80211_F_WME) == 0)
25954a67f1dfSBjoern A. Zeeb 		return (0);
25964a67f1dfSBjoern A. Zeeb 
25976b4cac81SBjoern A. Zeeb 	if (lhw->ops->conf_tx == NULL)
25986b4cac81SBjoern A. Zeeb 		return (0);
25996b4cac81SBjoern A. Zeeb 
26004a67f1dfSBjoern A. Zeeb 	if (!planned && (vap->iv_state != IEEE80211_S_RUN)) {
26014a67f1dfSBjoern A. Zeeb 		lhw->update_wme = true;
26024a67f1dfSBjoern A. Zeeb 		return (0);
26034a67f1dfSBjoern A. Zeeb 	}
26044a67f1dfSBjoern A. Zeeb 	lhw->update_wme = false;
26056b4cac81SBjoern A. Zeeb 
26064a67f1dfSBjoern A. Zeeb 	ic = lhw->ic;
26076b4cac81SBjoern A. Zeeb 	ieee80211_wme_ic_getparams(ic, &chp);
26086b4cac81SBjoern A. Zeeb 	IEEE80211_LOCK(ic);
26096b4cac81SBjoern A. Zeeb 	for (ac = 0; ac < WME_NUM_AC; ac++)
26106b4cac81SBjoern A. Zeeb 		wmeparr[ac] = chp.cap_wmeParams[ac];
26116b4cac81SBjoern A. Zeeb 	IEEE80211_UNLOCK(ic);
26126b4cac81SBjoern A. Zeeb 
26134a67f1dfSBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
26144a67f1dfSBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
26154a67f1dfSBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
26164a67f1dfSBjoern A. Zeeb 
26176b4cac81SBjoern A. Zeeb 	/* Configure tx queues (conf_tx) & send BSS_CHANGED_QOS. */
26186b4cac81SBjoern A. Zeeb 	LKPI_80211_LHW_LOCK(lhw);
26196b4cac81SBjoern A. Zeeb 	for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
26206b4cac81SBjoern A. Zeeb 		struct wmeParams *wmep;
26216b4cac81SBjoern A. Zeeb 
26226b4cac81SBjoern A. Zeeb 		wmep = &wmeparr[ac];
26236b4cac81SBjoern A. Zeeb 		bzero(&txqp, sizeof(txqp));
26246b4cac81SBjoern A. Zeeb 		txqp.cw_min = wmep->wmep_logcwmin;
26256b4cac81SBjoern A. Zeeb 		txqp.cw_max = wmep->wmep_logcwmax;
26266b4cac81SBjoern A. Zeeb 		txqp.txop = wmep->wmep_txopLimit;
26276b4cac81SBjoern A. Zeeb 		txqp.aifs = wmep->wmep_aifsn;
262868541546SBjoern A. Zeeb 		error = lkpi_80211_mo_conf_tx(hw, vif, /* link_id */0, ac, &txqp);
26296b4cac81SBjoern A. Zeeb 		if (error != 0)
26303f0083c4SBjoern A. Zeeb 			ic_printf(ic, "%s: conf_tx ac %u failed %d\n",
26316b4cac81SBjoern A. Zeeb 			    __func__, ac, error);
26326b4cac81SBjoern A. Zeeb 	}
26336b4cac81SBjoern A. Zeeb 	LKPI_80211_LHW_UNLOCK(lhw);
26346b4cac81SBjoern A. Zeeb 	changed = BSS_CHANGED_QOS;
26354a67f1dfSBjoern A. Zeeb 	if (!planned)
26366b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, changed);
26374a67f1dfSBjoern A. Zeeb 
26384a67f1dfSBjoern A. Zeeb 	return (changed);
26394a67f1dfSBjoern A. Zeeb }
26406b4cac81SBjoern A. Zeeb #endif
26416b4cac81SBjoern A. Zeeb 
26424a67f1dfSBjoern A. Zeeb static int
26434a67f1dfSBjoern A. Zeeb lkpi_ic_wme_update(struct ieee80211com *ic)
26444a67f1dfSBjoern A. Zeeb {
26454a67f1dfSBjoern A. Zeeb #ifdef LKPI_80211_WME
26464a67f1dfSBjoern A. Zeeb 	struct ieee80211vap *vap;
26474a67f1dfSBjoern A. Zeeb 	struct lkpi_hw *lhw;
26484a67f1dfSBjoern A. Zeeb 
26494a67f1dfSBjoern A. Zeeb 	IMPROVE("Use the per-VAP callback in net80211.");
26504a67f1dfSBjoern A. Zeeb 	vap = TAILQ_FIRST(&ic->ic_vaps);
26514a67f1dfSBjoern A. Zeeb 	if (vap == NULL)
26526b4cac81SBjoern A. Zeeb 		return (0);
26534a67f1dfSBjoern A. Zeeb 
26544a67f1dfSBjoern A. Zeeb 	lhw = ic->ic_softc;
26554a67f1dfSBjoern A. Zeeb 
26564a67f1dfSBjoern A. Zeeb 	lkpi_wme_update(lhw, vap, false);
26574a67f1dfSBjoern A. Zeeb #endif
26584a67f1dfSBjoern A. Zeeb 	return (0);	/* unused */
26596b4cac81SBjoern A. Zeeb }
26606b4cac81SBjoern A. Zeeb 
26616b4cac81SBjoern A. Zeeb static struct ieee80211vap *
26626b4cac81SBjoern A. Zeeb lkpi_ic_vap_create(struct ieee80211com *ic, const char name[IFNAMSIZ],
26636b4cac81SBjoern A. Zeeb     int unit, enum ieee80211_opmode opmode, int flags,
26646b4cac81SBjoern A. Zeeb     const uint8_t bssid[IEEE80211_ADDR_LEN],
26656b4cac81SBjoern A. Zeeb     const uint8_t mac[IEEE80211_ADDR_LEN])
26666b4cac81SBjoern A. Zeeb {
26676b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
26686b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
26696b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
26706b4cac81SBjoern A. Zeeb 	struct ieee80211vap *vap;
26716b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
2672a6042e17SBjoern A. Zeeb 	struct ieee80211_tx_queue_params txqp;
26736b4cac81SBjoern A. Zeeb 	enum ieee80211_bss_changed changed;
26746b4cac81SBjoern A. Zeeb 	size_t len;
2675e3a0b120SBjoern A. Zeeb 	int error, i;
2676a6042e17SBjoern A. Zeeb 	uint16_t ac;
26776b4cac81SBjoern A. Zeeb 
26786b4cac81SBjoern A. Zeeb 	if (!TAILQ_EMPTY(&ic->ic_vaps))	/* 1 so far. Add <n> once this works. */
26796b4cac81SBjoern A. Zeeb 		return (NULL);
26806b4cac81SBjoern A. Zeeb 
26816b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
26826b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
26836b4cac81SBjoern A. Zeeb 
26846b4cac81SBjoern A. Zeeb 	len = sizeof(*lvif);
26856b4cac81SBjoern A. Zeeb 	len += hw->vif_data_size;	/* vif->drv_priv */
26866b4cac81SBjoern A. Zeeb 
26876b4cac81SBjoern A. Zeeb 	lvif = malloc(len, M_80211_VAP, M_WAITOK | M_ZERO);
26886b4cac81SBjoern A. Zeeb 	mtx_init(&lvif->mtx, "lvif", NULL, MTX_DEF);
26896b4cac81SBjoern A. Zeeb 	TAILQ_INIT(&lvif->lsta_head);
26902ac8a218SBjoern A. Zeeb 	lvif->lvif_bss = NULL;
26912ac8a218SBjoern A. Zeeb 	lvif->lvif_bss_synched = false;
26926b4cac81SBjoern A. Zeeb 	vap = LVIF_TO_VAP(lvif);
26936b4cac81SBjoern A. Zeeb 
26946b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
26956b4cac81SBjoern A. Zeeb 	memcpy(vif->addr, mac, IEEE80211_ADDR_LEN);
26966b4cac81SBjoern A. Zeeb 	vif->p2p = false;
26976b4cac81SBjoern A. Zeeb 	vif->probe_req_reg = false;
26986b4cac81SBjoern A. Zeeb 	vif->type = lkpi_opmode_to_vif_type(opmode);
26996b4cac81SBjoern A. Zeeb 	lvif->wdev.iftype = vif->type;
27006b4cac81SBjoern A. Zeeb 	/* Need to fill in other fields as well. */
27016b4cac81SBjoern A. Zeeb 	IMPROVE();
27026b4cac81SBjoern A. Zeeb 
27036b4cac81SBjoern A. Zeeb 	/* XXX-BZ hardcoded for now! */
27046b4cac81SBjoern A. Zeeb #if 1
27056b4cac81SBjoern A. Zeeb 	vif->chanctx_conf = NULL;
2706adff403fSBjoern A. Zeeb 	vif->bss_conf.vif = vif;
27076ffb7bd4SBjoern A. Zeeb 	/* vap->iv_myaddr is not set until net80211::vap_setup or vap_attach. */
27086ffb7bd4SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(vif->bss_conf.addr, mac);
27096ffb7bd4SBjoern A. Zeeb 	vif->bss_conf.link_id = 0;	/* Non-MLO operation. */
27106b4cac81SBjoern A. Zeeb 	vif->bss_conf.chandef.width = NL80211_CHAN_WIDTH_20_NOHT;
27116b4cac81SBjoern A. Zeeb 	vif->bss_conf.use_short_preamble = false;	/* vap->iv_flags IEEE80211_F_SHPREAMBLE */
27126b4cac81SBjoern A. Zeeb 	vif->bss_conf.use_short_slot = false;		/* vap->iv_flags IEEE80211_F_SHSLOT */
27136b4cac81SBjoern A. Zeeb 	vif->bss_conf.qos = false;
27146b4cac81SBjoern A. Zeeb 	vif->bss_conf.use_cts_prot = false;		/* vap->iv_protmode */
27156b4cac81SBjoern A. Zeeb 	vif->bss_conf.ht_operation_mode = IEEE80211_HT_OP_MODE_PROTECTION_NONE;
2716616e1330SBjoern A. Zeeb 	vif->cfg.aid = 0;
2717616e1330SBjoern A. Zeeb 	vif->cfg.assoc = false;
2718616e1330SBjoern A. Zeeb 	vif->cfg.idle = true;
2719616e1330SBjoern A. Zeeb 	vif->cfg.ps = false;
27206ffb7bd4SBjoern A. Zeeb 	IMPROVE("Check other fields and then figure out whats is left elsewhere of them");
2721caaa79c3SBjoern A. Zeeb 	/*
2722caaa79c3SBjoern A. Zeeb 	 * We need to initialize it to something as the bss_info_changed call
2723caaa79c3SBjoern A. Zeeb 	 * will try to copy from it in iwlwifi and NULL is a panic.
2724caaa79c3SBjoern A. Zeeb 	 * We will set the proper one in scan_to_auth() before being assoc.
2725caaa79c3SBjoern A. Zeeb 	 */
27266ffb7bd4SBjoern A. Zeeb 	vif->bss_conf.bssid = ieee80211broadcastaddr;
27276b4cac81SBjoern A. Zeeb #endif
27286b4cac81SBjoern A. Zeeb #if 0
27296b4cac81SBjoern A. Zeeb 	vif->bss_conf.dtim_period = 0; /* IEEE80211_DTIM_DEFAULT ; must stay 0. */
27306b4cac81SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(vif->bss_conf.bssid, bssid);
27316b4cac81SBjoern A. Zeeb 	vif->bss_conf.beacon_int = ic->ic_bintval;
27326b4cac81SBjoern A. Zeeb 	/* iwlwifi bug. */
27336b4cac81SBjoern A. Zeeb 	if (vif->bss_conf.beacon_int < 16)
27346b4cac81SBjoern A. Zeeb 		vif->bss_conf.beacon_int = 16;
27356b4cac81SBjoern A. Zeeb #endif
2736e3a0b120SBjoern A. Zeeb 
27376ffb7bd4SBjoern A. Zeeb 	/* Link Config */
27386ffb7bd4SBjoern A. Zeeb 	vif->link_conf[0] = &vif->bss_conf;
27396ffb7bd4SBjoern A. Zeeb 	for (i = 0; i < nitems(vif->link_conf); i++) {
27406ffb7bd4SBjoern A. Zeeb 		IMPROVE("more than 1 link one day");
27416ffb7bd4SBjoern A. Zeeb 	}
27426ffb7bd4SBjoern A. Zeeb 
2743e3a0b120SBjoern A. Zeeb 	/* Setup queue defaults; driver may override in (*add_interface). */
2744e3a0b120SBjoern A. Zeeb 	for (i = 0; i < IEEE80211_NUM_ACS; i++) {
2745e3a0b120SBjoern A. Zeeb 		if (ieee80211_hw_check(hw, QUEUE_CONTROL))
2746e3a0b120SBjoern A. Zeeb 			vif->hw_queue[i] = IEEE80211_INVAL_HW_QUEUE;
2747e3a0b120SBjoern A. Zeeb 		else if (hw->queues >= IEEE80211_NUM_ACS)
2748e3a0b120SBjoern A. Zeeb 			vif->hw_queue[i] = i;
2749e3a0b120SBjoern A. Zeeb 		else
2750e3a0b120SBjoern A. Zeeb 			vif->hw_queue[i] = 0;
27510cbcfa19SBjoern A. Zeeb 
27520cbcfa19SBjoern A. Zeeb 		/* Initialize the queue to running. Stopped? */
27530cbcfa19SBjoern A. Zeeb 		lvif->hw_queue_stopped[i] = false;
2754e3a0b120SBjoern A. Zeeb 	}
2755e3a0b120SBjoern A. Zeeb 	vif->cab_queue = IEEE80211_INVAL_HW_QUEUE;
2756e3a0b120SBjoern A. Zeeb 
27576b4cac81SBjoern A. Zeeb 	IMPROVE();
27586b4cac81SBjoern A. Zeeb 
27596b4cac81SBjoern A. Zeeb 	error = lkpi_80211_mo_start(hw);
27606b4cac81SBjoern A. Zeeb 	if (error != 0) {
27613f0083c4SBjoern A. Zeeb 		ic_printf(ic, "%s: failed to start hw: %d\n", __func__, error);
27626b4cac81SBjoern A. Zeeb 		mtx_destroy(&lvif->mtx);
27636b4cac81SBjoern A. Zeeb 		free(lvif, M_80211_VAP);
27646b4cac81SBjoern A. Zeeb 		return (NULL);
27656b4cac81SBjoern A. Zeeb 	}
27666b4cac81SBjoern A. Zeeb 
27676b4cac81SBjoern A. Zeeb 	error = lkpi_80211_mo_add_interface(hw, vif);
27686b4cac81SBjoern A. Zeeb 	if (error != 0) {
27696b4cac81SBjoern A. Zeeb 		IMPROVE();	/* XXX-BZ mo_stop()? */
27703f0083c4SBjoern A. Zeeb 		ic_printf(ic, "%s: failed to add interface: %d\n", __func__, error);
27716b4cac81SBjoern A. Zeeb 		mtx_destroy(&lvif->mtx);
27726b4cac81SBjoern A. Zeeb 		free(lvif, M_80211_VAP);
27736b4cac81SBjoern A. Zeeb 		return (NULL);
27746b4cac81SBjoern A. Zeeb 	}
27756b4cac81SBjoern A. Zeeb 
27768891c455SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_LOCK(lhw);
27776b4cac81SBjoern A. Zeeb 	TAILQ_INSERT_TAIL(&lhw->lvif_head, lvif, lvif_entry);
27788891c455SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_UNLOCK(lhw);
27796b4cac81SBjoern A. Zeeb 
27806b4cac81SBjoern A. Zeeb 	/* Set bss_info. */
27816b4cac81SBjoern A. Zeeb 	changed = 0;
27826b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, changed);
27836b4cac81SBjoern A. Zeeb 
2784a6042e17SBjoern A. Zeeb 	/* Configure tx queues (conf_tx), default WME & send BSS_CHANGED_QOS. */
2785a6042e17SBjoern A. Zeeb 	IMPROVE("Hardcoded values; to fix see 802.11-2016, 9.4.2.29 EDCA Parameter Set element");
2786a6042e17SBjoern A. Zeeb 	LKPI_80211_LHW_LOCK(lhw);
2787a6042e17SBjoern A. Zeeb 	for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
2788a6042e17SBjoern A. Zeeb 
2789a6042e17SBjoern A. Zeeb 		bzero(&txqp, sizeof(txqp));
2790a6042e17SBjoern A. Zeeb 		txqp.cw_min = 15;
2791a6042e17SBjoern A. Zeeb 		txqp.cw_max = 1023;
2792a6042e17SBjoern A. Zeeb 		txqp.txop = 0;
2793a6042e17SBjoern A. Zeeb 		txqp.aifs = 2;
2794a6042e17SBjoern A. Zeeb 		error = lkpi_80211_mo_conf_tx(hw, vif, /* link_id */0, ac, &txqp);
2795a6042e17SBjoern A. Zeeb 		if (error != 0)
2796a6042e17SBjoern A. Zeeb 			ic_printf(ic, "%s: conf_tx ac %u failed %d\n",
2797a6042e17SBjoern A. Zeeb 			    __func__, ac, error);
2798a6042e17SBjoern A. Zeeb 	}
2799a6042e17SBjoern A. Zeeb 	LKPI_80211_LHW_UNLOCK(lhw);
2800a6042e17SBjoern A. Zeeb 	changed = BSS_CHANGED_QOS;
2801a6042e17SBjoern A. Zeeb 	lkpi_80211_mo_bss_info_changed(hw, vif, &vif->bss_conf, changed);
28026b4cac81SBjoern A. Zeeb 
28036b4cac81SBjoern A. Zeeb 	/* Force MC init. */
28046b4cac81SBjoern A. Zeeb 	lkpi_update_mcast_filter(ic, true);
28056b4cac81SBjoern A. Zeeb 
28066b4cac81SBjoern A. Zeeb 	IMPROVE();
28076b4cac81SBjoern A. Zeeb 
28086b4cac81SBjoern A. Zeeb 	ieee80211_vap_setup(ic, vap, name, unit, opmode, flags, bssid);
28096b4cac81SBjoern A. Zeeb 
28106b4cac81SBjoern A. Zeeb 	/* Override with LinuxKPI method so we can drive mac80211/cfg80211. */
28116b4cac81SBjoern A. Zeeb 	lvif->iv_newstate = vap->iv_newstate;
28126b4cac81SBjoern A. Zeeb 	vap->iv_newstate = lkpi_iv_newstate;
2813d9f59799SBjoern A. Zeeb 	lvif->iv_update_bss = vap->iv_update_bss;
2814d9f59799SBjoern A. Zeeb 	vap->iv_update_bss = lkpi_iv_update_bss;
28156b4cac81SBjoern A. Zeeb 
28166b4cac81SBjoern A. Zeeb 	/* Key management. */
28176b4cac81SBjoern A. Zeeb 	if (lhw->ops->set_key != NULL) {
2818b35f6cd0SBjoern A. Zeeb #ifdef LKPI_80211_HW_CRYPTO
28196b4cac81SBjoern A. Zeeb 		vap->iv_key_set = lkpi_iv_key_set;
28206b4cac81SBjoern A. Zeeb 		vap->iv_key_delete = lkpi_iv_key_delete;
28216b4cac81SBjoern A. Zeeb #endif
28226b4cac81SBjoern A. Zeeb 	}
28236b4cac81SBjoern A. Zeeb 
28249fb91463SBjoern A. Zeeb #ifdef LKPI_80211_HT
28259fb91463SBjoern A. Zeeb 	/* Stay with the iv_ampdu_rxmax,limit / iv_ampdu_density defaults until later. */
28269fb91463SBjoern A. Zeeb #endif
28279fb91463SBjoern A. Zeeb 
28286b4cac81SBjoern A. Zeeb 	ieee80211_ratectl_init(vap);
28296b4cac81SBjoern A. Zeeb 
28306b4cac81SBjoern A. Zeeb 	/* Complete setup. */
28316b4cac81SBjoern A. Zeeb 	ieee80211_vap_attach(vap, ieee80211_media_change,
28326b4cac81SBjoern A. Zeeb 	    ieee80211_media_status, mac);
28336b4cac81SBjoern A. Zeeb 
28346b4cac81SBjoern A. Zeeb 	if (hw->max_listen_interval == 0)
28356b4cac81SBjoern A. Zeeb 		hw->max_listen_interval = 7 * (ic->ic_lintval / ic->ic_bintval);
28366b4cac81SBjoern A. Zeeb 	hw->conf.listen_interval = hw->max_listen_interval;
28376b4cac81SBjoern A. Zeeb 	ic->ic_set_channel(ic);
28386b4cac81SBjoern A. Zeeb 
28396b4cac81SBjoern A. Zeeb 	/* XXX-BZ do we need to be able to update these? */
28406b4cac81SBjoern A. Zeeb 	hw->wiphy->frag_threshold = vap->iv_fragthreshold;
28416b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_set_frag_threshold(hw, vap->iv_fragthreshold);
28426b4cac81SBjoern A. Zeeb 	hw->wiphy->rts_threshold = vap->iv_rtsthreshold;
28436b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_set_rts_threshold(hw, vap->iv_rtsthreshold);
28446b4cac81SBjoern A. Zeeb 	/* any others? */
28456b4cac81SBjoern A. Zeeb 	IMPROVE();
28466b4cac81SBjoern A. Zeeb 
28476b4cac81SBjoern A. Zeeb 	return (vap);
28486b4cac81SBjoern A. Zeeb }
28496b4cac81SBjoern A. Zeeb 
28504b0af114SBjoern A. Zeeb void
28514b0af114SBjoern A. Zeeb linuxkpi_ieee80211_unregister_hw(struct ieee80211_hw *hw)
28524b0af114SBjoern A. Zeeb {
28534b0af114SBjoern A. Zeeb 
28544b0af114SBjoern A. Zeeb 	wiphy_unregister(hw->wiphy);
28554b0af114SBjoern A. Zeeb 	linuxkpi_ieee80211_ifdetach(hw);
28564b0af114SBjoern A. Zeeb 
28574b0af114SBjoern A. Zeeb 	IMPROVE();
28584b0af114SBjoern A. Zeeb }
28594b0af114SBjoern A. Zeeb 
28604b0af114SBjoern A. Zeeb void
28614b0af114SBjoern A. Zeeb linuxkpi_ieee80211_restart_hw(struct ieee80211_hw *hw)
28624b0af114SBjoern A. Zeeb {
28634b0af114SBjoern A. Zeeb 
28644b0af114SBjoern A. Zeeb 	TODO();
28654b0af114SBjoern A. Zeeb }
28664b0af114SBjoern A. Zeeb 
28676b4cac81SBjoern A. Zeeb static void
28686b4cac81SBjoern A. Zeeb lkpi_ic_vap_delete(struct ieee80211vap *vap)
28696b4cac81SBjoern A. Zeeb {
28706b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
28716b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
28726b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
28736b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
28746b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
28756b4cac81SBjoern A. Zeeb 
28766b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
28776b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
28786b4cac81SBjoern A. Zeeb 	ic = vap->iv_ic;
28796b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
28806b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
28816b4cac81SBjoern A. Zeeb 
28828891c455SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_LOCK(lhw);
28836b4cac81SBjoern A. Zeeb 	TAILQ_REMOVE(&lhw->lvif_head, lvif, lvif_entry);
28848891c455SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_UNLOCK(lhw);
28856b4cac81SBjoern A. Zeeb 
28866b4cac81SBjoern A. Zeeb 	ieee80211_ratectl_deinit(vap);
28876b4cac81SBjoern A. Zeeb 	ieee80211_vap_detach(vap);
2888dbf76919SBjoern A. Zeeb 
2889dbf76919SBjoern A. Zeeb 	IMPROVE("clear up other bits in this state");
2890dbf76919SBjoern A. Zeeb 
2891dbf76919SBjoern A. Zeeb 	lkpi_80211_mo_remove_interface(hw, vif);
2892dbf76919SBjoern A. Zeeb 
28936c38c6b1SBjoern A. Zeeb 	/* Single VAP, so we can do this here. */
28946c38c6b1SBjoern A. Zeeb 	lkpi_80211_mo_stop(hw);
28956c38c6b1SBjoern A. Zeeb 
28966b4cac81SBjoern A. Zeeb 	mtx_destroy(&lvif->mtx);
28976b4cac81SBjoern A. Zeeb 	free(lvif, M_80211_VAP);
28986b4cac81SBjoern A. Zeeb }
28996b4cac81SBjoern A. Zeeb 
29006b4cac81SBjoern A. Zeeb static void
29016b4cac81SBjoern A. Zeeb lkpi_ic_update_mcast(struct ieee80211com *ic)
29026b4cac81SBjoern A. Zeeb {
29036b4cac81SBjoern A. Zeeb 
29046b4cac81SBjoern A. Zeeb 	lkpi_update_mcast_filter(ic, false);
29056b4cac81SBjoern A. Zeeb 	TRACEOK();
29066b4cac81SBjoern A. Zeeb }
29076b4cac81SBjoern A. Zeeb 
29086b4cac81SBjoern A. Zeeb static void
29096b4cac81SBjoern A. Zeeb lkpi_ic_update_promisc(struct ieee80211com *ic)
29106b4cac81SBjoern A. Zeeb {
29116b4cac81SBjoern A. Zeeb 
29126b4cac81SBjoern A. Zeeb 	UNIMPLEMENTED;
29136b4cac81SBjoern A. Zeeb }
29146b4cac81SBjoern A. Zeeb 
29156b4cac81SBjoern A. Zeeb static void
29166b4cac81SBjoern A. Zeeb lkpi_ic_update_chw(struct ieee80211com *ic)
29176b4cac81SBjoern A. Zeeb {
29186b4cac81SBjoern A. Zeeb 
29196b4cac81SBjoern A. Zeeb 	UNIMPLEMENTED;
29206b4cac81SBjoern A. Zeeb }
29216b4cac81SBjoern A. Zeeb 
29226b4cac81SBjoern A. Zeeb /* Start / stop device. */
29236b4cac81SBjoern A. Zeeb static void
29246b4cac81SBjoern A. Zeeb lkpi_ic_parent(struct ieee80211com *ic)
29256b4cac81SBjoern A. Zeeb {
29266b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
29278d58a057SBjoern A. Zeeb #ifdef HW_START_STOP
29286b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
29296b4cac81SBjoern A. Zeeb 	int error;
29308d58a057SBjoern A. Zeeb #endif
29316b4cac81SBjoern A. Zeeb 	bool start_all;
29326b4cac81SBjoern A. Zeeb 
29336b4cac81SBjoern A. Zeeb 	IMPROVE();
29346b4cac81SBjoern A. Zeeb 
29356b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
29368d58a057SBjoern A. Zeeb #ifdef HW_START_STOP
29376b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
29388d58a057SBjoern A. Zeeb #endif
29396b4cac81SBjoern A. Zeeb 	start_all = false;
29406b4cac81SBjoern A. Zeeb 
29418ac540d3SBjoern A. Zeeb 	/* IEEE80211_UNLOCK(ic); */
29428ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_LOCK(lhw);
29436b4cac81SBjoern A. Zeeb 	if (ic->ic_nrunning > 0) {
29448d58a057SBjoern A. Zeeb #ifdef HW_START_STOP
29456b4cac81SBjoern A. Zeeb 		error = lkpi_80211_mo_start(hw);
29466b4cac81SBjoern A. Zeeb 		if (error == 0)
29478d58a057SBjoern A. Zeeb #endif
29486b4cac81SBjoern A. Zeeb 			start_all = true;
29496b4cac81SBjoern A. Zeeb 	} else {
29508d58a057SBjoern A. Zeeb #ifdef HW_START_STOP
29516b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_stop(hw);
29528d58a057SBjoern A. Zeeb #endif
29536b4cac81SBjoern A. Zeeb 	}
29548ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_UNLOCK(lhw);
29558ac540d3SBjoern A. Zeeb 	/* IEEE80211_LOCK(ic); */
29566b4cac81SBjoern A. Zeeb 
29576b4cac81SBjoern A. Zeeb 	if (start_all)
29586b4cac81SBjoern A. Zeeb 		ieee80211_start_all(ic);
29596b4cac81SBjoern A. Zeeb }
29606b4cac81SBjoern A. Zeeb 
29616b4cac81SBjoern A. Zeeb bool
29626b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_is_ie_id_in_ie_buf(const u8 ie, const u8 *ie_ids,
29636b4cac81SBjoern A. Zeeb     size_t ie_ids_len)
29646b4cac81SBjoern A. Zeeb {
29656b4cac81SBjoern A. Zeeb 	int i;
29666b4cac81SBjoern A. Zeeb 
29676b4cac81SBjoern A. Zeeb 	for (i = 0; i < ie_ids_len; i++) {
29686b4cac81SBjoern A. Zeeb 		if (ie == *ie_ids)
29696b4cac81SBjoern A. Zeeb 			return (true);
29706b4cac81SBjoern A. Zeeb 	}
29716b4cac81SBjoern A. Zeeb 
29726b4cac81SBjoern A. Zeeb 	return (false);
29736b4cac81SBjoern A. Zeeb }
29746b4cac81SBjoern A. Zeeb 
29756b4cac81SBjoern A. Zeeb /* Return true if skipped; false if error. */
29766b4cac81SBjoern A. Zeeb bool
29776b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_ie_advance(size_t *xp, const u8 *ies, size_t ies_len)
29786b4cac81SBjoern A. Zeeb {
29796b4cac81SBjoern A. Zeeb 	size_t x;
29806b4cac81SBjoern A. Zeeb 	uint8_t l;
29816b4cac81SBjoern A. Zeeb 
29826b4cac81SBjoern A. Zeeb 	x = *xp;
29836b4cac81SBjoern A. Zeeb 
29846b4cac81SBjoern A. Zeeb 	KASSERT(x < ies_len, ("%s: x %zu ies_len %zu ies %p\n",
29856b4cac81SBjoern A. Zeeb 	    __func__, x, ies_len, ies));
29866b4cac81SBjoern A. Zeeb 	l = ies[x + 1];
29876b4cac81SBjoern A. Zeeb 	x += 2 + l;
29886b4cac81SBjoern A. Zeeb 
29896b4cac81SBjoern A. Zeeb 	if (x > ies_len)
29906b4cac81SBjoern A. Zeeb 		return (false);
29916b4cac81SBjoern A. Zeeb 
29926b4cac81SBjoern A. Zeeb 	*xp = x;
29936b4cac81SBjoern A. Zeeb 	return (true);
29946b4cac81SBjoern A. Zeeb }
29956b4cac81SBjoern A. Zeeb 
2996d9945d78SBjoern A. Zeeb static uint8_t *
2997d9945d78SBjoern A. Zeeb lkpi_scan_ies_add(uint8_t *p, struct ieee80211_scan_ies *scan_ies,
2998d9945d78SBjoern A. Zeeb     uint32_t band_mask, struct ieee80211vap *vap, struct ieee80211_hw *hw)
29996b4cac81SBjoern A. Zeeb {
3000d9945d78SBjoern A. Zeeb 	struct ieee80211_supported_band *supband;
3001d9945d78SBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel *channels;
30023dd98026SBjoern A. Zeeb 	struct ieee80211com *ic;
3003d9945d78SBjoern A. Zeeb 	const struct ieee80211_channel *chan;
3004d9945d78SBjoern A. Zeeb 	const struct ieee80211_rateset *rs;
3005d9945d78SBjoern A. Zeeb 	uint8_t *pb;
3006d9945d78SBjoern A. Zeeb 	int band, i;
30076b4cac81SBjoern A. Zeeb 
30083dd98026SBjoern A. Zeeb 	ic = vap->iv_ic;
3009d9945d78SBjoern A. Zeeb 	for (band = 0; band < NUM_NL80211_BANDS; band++) {
3010d9945d78SBjoern A. Zeeb 		if ((band_mask & (1 << band)) == 0)
3011d9945d78SBjoern A. Zeeb 			continue;
3012d9945d78SBjoern A. Zeeb 
3013d9945d78SBjoern A. Zeeb 		supband = hw->wiphy->bands[band];
3014d9945d78SBjoern A. Zeeb 		/*
3015d9945d78SBjoern A. Zeeb 		 * This should not happen;
3016d9945d78SBjoern A. Zeeb 		 * band_mask is a bitmask of valid bands to scan on.
3017d9945d78SBjoern A. Zeeb 		 */
3018d9945d78SBjoern A. Zeeb 		if (supband == NULL || supband->n_channels == 0)
3019d9945d78SBjoern A. Zeeb 			continue;
3020d9945d78SBjoern A. Zeeb 
3021d9945d78SBjoern A. Zeeb 		/* Find a first channel to get the mode and rates from. */
3022d9945d78SBjoern A. Zeeb 		channels = supband->channels;
3023d9945d78SBjoern A. Zeeb 		chan = NULL;
3024d9945d78SBjoern A. Zeeb 		for (i = 0; i < supband->n_channels; i++) {
3025d9945d78SBjoern A. Zeeb 
3026d9945d78SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_DISABLED)
3027d9945d78SBjoern A. Zeeb 				continue;
3028d9945d78SBjoern A. Zeeb 
30293dd98026SBjoern A. Zeeb 			chan = ieee80211_find_channel(ic,
3030d9945d78SBjoern A. Zeeb 			    channels[i].center_freq, 0);
3031d9945d78SBjoern A. Zeeb 			if (chan != NULL)
3032d9945d78SBjoern A. Zeeb 				break;
3033d9945d78SBjoern A. Zeeb 		}
3034d9945d78SBjoern A. Zeeb 
3035d9945d78SBjoern A. Zeeb 		/* This really should not happen. */
3036d9945d78SBjoern A. Zeeb 		if (chan == NULL)
3037d9945d78SBjoern A. Zeeb 			continue;
3038d9945d78SBjoern A. Zeeb 
3039d9945d78SBjoern A. Zeeb 		pb = p;
30403dd98026SBjoern A. Zeeb 		rs = ieee80211_get_suprates(ic, chan);	/* calls chan2mode */
3041d9945d78SBjoern A. Zeeb 		p = ieee80211_add_rates(p, rs);
3042d9945d78SBjoern A. Zeeb 		p = ieee80211_add_xrates(p, rs);
3043d9945d78SBjoern A. Zeeb 
30443dd98026SBjoern A. Zeeb #if defined(LKPI_80211_HT)
30453dd98026SBjoern A. Zeeb 		if ((vap->iv_flags_ht & IEEE80211_FHT_HT) != 0) {
30463dd98026SBjoern A. Zeeb 			struct ieee80211_channel *c;
30473dd98026SBjoern A. Zeeb 
30483dd98026SBjoern A. Zeeb 			c = ieee80211_ht_adjust_channel(ic, ic->ic_curchan,
30493dd98026SBjoern A. Zeeb 			    vap->iv_flags_ht);
30503dd98026SBjoern A. Zeeb 			p = ieee80211_add_htcap_ch(p, vap, c);
30513dd98026SBjoern A. Zeeb 		}
30523dd98026SBjoern A. Zeeb #endif
30533dd98026SBjoern A. Zeeb #if defined(LKPI_80211_VHT)
30543dd98026SBjoern A. Zeeb 		if ((vap->iv_vht_flags & IEEE80211_FVHT_VHT) != 0) {
30553dd98026SBjoern A. Zeeb 			struct ieee80211_channel *c;
30563dd98026SBjoern A. Zeeb 
30573dd98026SBjoern A. Zeeb 			c = ieee80211_ht_adjust_channel(ic, ic->ic_curchan,
30583dd98026SBjoern A. Zeeb 			    vap->iv_flags_ht);
30593dd98026SBjoern A. Zeeb 			c = ieee80211_vht_adjust_channel(ic, c,
30603dd98026SBjoern A. Zeeb 			    vap->iv_vht_flags);
30613dd98026SBjoern A. Zeeb 			p = ieee80211_add_vhtcap_ch(p, vap, c);
30623dd98026SBjoern A. Zeeb 		}
30633dd98026SBjoern A. Zeeb #endif
30643dd98026SBjoern A. Zeeb 
3065d9945d78SBjoern A. Zeeb 		scan_ies->ies[band] = pb;
3066d9945d78SBjoern A. Zeeb 		scan_ies->len[band] = p - pb;
3067d9945d78SBjoern A. Zeeb 	}
3068d9945d78SBjoern A. Zeeb 
3069d9945d78SBjoern A. Zeeb 	/* Add common_ies */
3070d9945d78SBjoern A. Zeeb 	pb = p;
3071d9945d78SBjoern A. Zeeb 	if ((vap->iv_flags & IEEE80211_F_WPA1) != 0 &&
3072d9945d78SBjoern A. Zeeb 	    vap->iv_wpa_ie != NULL) {
3073d9945d78SBjoern A. Zeeb 		memcpy(p, vap->iv_wpa_ie, 2 + vap->iv_wpa_ie[1]);
3074d9945d78SBjoern A. Zeeb 		p += 2 + vap->iv_wpa_ie[1];
3075d9945d78SBjoern A. Zeeb 	}
3076d9945d78SBjoern A. Zeeb 	if (vap->iv_appie_probereq != NULL) {
3077d9945d78SBjoern A. Zeeb 		memcpy(p, vap->iv_appie_probereq->ie_data,
3078d9945d78SBjoern A. Zeeb 		    vap->iv_appie_probereq->ie_len);
3079d9945d78SBjoern A. Zeeb 		p += vap->iv_appie_probereq->ie_len;
3080d9945d78SBjoern A. Zeeb 	}
3081d9945d78SBjoern A. Zeeb 	scan_ies->common_ies = pb;
3082d9945d78SBjoern A. Zeeb 	scan_ies->common_ie_len = p - pb;
3083d9945d78SBjoern A. Zeeb 
3084d9945d78SBjoern A. Zeeb 	return (p);
30856b4cac81SBjoern A. Zeeb }
30866b4cac81SBjoern A. Zeeb 
30876b4cac81SBjoern A. Zeeb static void
30886b4cac81SBjoern A. Zeeb lkpi_ic_scan_start(struct ieee80211com *ic)
30896b4cac81SBjoern A. Zeeb {
30906b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
30916b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
30926b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
30936b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
30946b4cac81SBjoern A. Zeeb 	struct ieee80211_scan_state *ss;
30956b4cac81SBjoern A. Zeeb 	struct ieee80211vap *vap;
30966b4cac81SBjoern A. Zeeb 	int error;
30978ac540d3SBjoern A. Zeeb 	bool is_hw_scan;
30986b4cac81SBjoern A. Zeeb 
30996b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
31008ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_LOCK(lhw);
3101a486fbbdSBjoern A. Zeeb 	if ((lhw->scan_flags & LKPI_LHW_SCAN_RUNNING) != 0) {
31026b4cac81SBjoern A. Zeeb 		/* A scan is still running. */
31038ac540d3SBjoern A. Zeeb 		LKPI_80211_LHW_SCAN_UNLOCK(lhw);
31046b4cac81SBjoern A. Zeeb 		return;
31056b4cac81SBjoern A. Zeeb 	}
31068ac540d3SBjoern A. Zeeb 	is_hw_scan = (lhw->scan_flags & LKPI_LHW_SCAN_HW) != 0;
31078ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_UNLOCK(lhw);
31086b4cac81SBjoern A. Zeeb 
31096b4cac81SBjoern A. Zeeb 	ss = ic->ic_scan;
31106b4cac81SBjoern A. Zeeb 	vap = ss->ss_vap;
31116b4cac81SBjoern A. Zeeb 	if (vap->iv_state != IEEE80211_S_SCAN) {
3112d3ef7fb4SBjoern A. Zeeb 		IMPROVE("We need to be able to scan if not in S_SCAN");
31136b4cac81SBjoern A. Zeeb 		return;
31146b4cac81SBjoern A. Zeeb 	}
31156b4cac81SBjoern A. Zeeb 
31166b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
31178ac540d3SBjoern A. Zeeb 	if (!is_hw_scan) {
3118a486fbbdSBjoern A. Zeeb 		/* If hw_scan is cleared clear FEXT_SCAN_OFFLOAD too. */
3119a486fbbdSBjoern A. Zeeb 		vap->iv_flags_ext &= ~IEEE80211_FEXT_SCAN_OFFLOAD;
3120d3ef7fb4SBjoern A. Zeeb sw_scan:
31216b4cac81SBjoern A. Zeeb 		lvif = VAP_TO_LVIF(vap);
31226b4cac81SBjoern A. Zeeb 		vif = LVIF_TO_VIF(lvif);
3123086be6a8SBjoern A. Zeeb 
3124086be6a8SBjoern A. Zeeb 		if (vap->iv_state == IEEE80211_S_SCAN)
3125086be6a8SBjoern A. Zeeb 			lkpi_hw_conf_idle(hw, false);
3126086be6a8SBjoern A. Zeeb 
31276b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_sw_scan_start(hw, vif, vif->addr);
31286b4cac81SBjoern A. Zeeb 		/* net80211::scan_start() handled PS for us. */
31296b4cac81SBjoern A. Zeeb 		IMPROVE();
31306b4cac81SBjoern A. Zeeb 		/* XXX Also means it is too late to flush queues?
31316b4cac81SBjoern A. Zeeb 		 * need to check iv_sta_ps or overload? */
31326b4cac81SBjoern A. Zeeb 		/* XXX want to adjust ss end time/ maxdwell? */
31336b4cac81SBjoern A. Zeeb 
31346b4cac81SBjoern A. Zeeb 	} else {
31356b4cac81SBjoern A. Zeeb 		struct ieee80211_channel *c;
31366b4cac81SBjoern A. Zeeb 		struct ieee80211_scan_request *hw_req;
31376b4cac81SBjoern A. Zeeb 		struct linuxkpi_ieee80211_channel *lc, **cpp;
31386b4cac81SBjoern A. Zeeb 		struct cfg80211_ssid *ssids;
31396b4cac81SBjoern A. Zeeb 		struct cfg80211_scan_6ghz_params *s6gp;
31406b4cac81SBjoern A. Zeeb 		size_t chan_len, nchan, ssids_len, s6ghzlen;
3141d9945d78SBjoern A. Zeeb 		int band, i, ssid_count, common_ie_len;
3142d9945d78SBjoern A. Zeeb 		uint32_t band_mask;
3143d9945d78SBjoern A. Zeeb 		uint8_t *ie, *ieend;
31443206587aSBjoern A. Zeeb 		bool running;
3145d9945d78SBjoern A. Zeeb 
3146d9945d78SBjoern A. Zeeb 		ssid_count = min(ss->ss_nssid, hw->wiphy->max_scan_ssids);
3147d9945d78SBjoern A. Zeeb 		ssids_len = ssid_count * sizeof(*ssids);
31486b4cac81SBjoern A. Zeeb 		s6ghzlen = 0 * (sizeof(*s6gp));			/* XXX-BZ */
31496b4cac81SBjoern A. Zeeb 
3150d9945d78SBjoern A. Zeeb 		band_mask = 0;
31516b4cac81SBjoern A. Zeeb 		nchan = 0;
3152d9945d78SBjoern A. Zeeb 		for (i = ss->ss_next; i < ss->ss_last; i++) {
31536b4cac81SBjoern A. Zeeb 			nchan++;
3154d9945d78SBjoern A. Zeeb 			band = lkpi_net80211_chan_to_nl80211_band(
3155d9945d78SBjoern A. Zeeb 			    ss->ss_chans[ss->ss_next + i]);
3156d9945d78SBjoern A. Zeeb 			band_mask |= (1 << band);
3157d9945d78SBjoern A. Zeeb 		}
31583206587aSBjoern A. Zeeb 
31593206587aSBjoern A. Zeeb 		if (!ieee80211_hw_check(hw, SINGLE_SCAN_ON_ALL_BANDS)) {
31603206587aSBjoern A. Zeeb 			IMPROVE("individual band scans not yet supported, only scanning first band");
31613206587aSBjoern A. Zeeb 			/* In theory net80211 should drive this. */
31623206587aSBjoern A. Zeeb 			/* Probably we need to add local logic for now;
31633206587aSBjoern A. Zeeb 			 * need to deal with scan_complete
31643206587aSBjoern A. Zeeb 			 * and cancel_scan and keep local state.
31653206587aSBjoern A. Zeeb 			 * Also cut the nchan down above.
31663206587aSBjoern A. Zeeb 			 */
31673206587aSBjoern A. Zeeb 			/* XXX-BZ ath10k does not set this but still does it? &$%^ */
31683206587aSBjoern A. Zeeb 		}
31693206587aSBjoern A. Zeeb 
31706b4cac81SBjoern A. Zeeb 		chan_len = nchan * (sizeof(lc) + sizeof(*lc));
31716b4cac81SBjoern A. Zeeb 
3172d9945d78SBjoern A. Zeeb 		common_ie_len = 0;
3173d9945d78SBjoern A. Zeeb 		if ((vap->iv_flags & IEEE80211_F_WPA1) != 0 &&
3174d9945d78SBjoern A. Zeeb 		    vap->iv_wpa_ie != NULL)
3175d9945d78SBjoern A. Zeeb 			common_ie_len += vap->iv_wpa_ie[1];
3176d9945d78SBjoern A. Zeeb 		if (vap->iv_appie_probereq != NULL)
3177d9945d78SBjoern A. Zeeb 			common_ie_len += vap->iv_appie_probereq->ie_len;
3178d9945d78SBjoern A. Zeeb 
3179d9945d78SBjoern A. Zeeb 		/* We would love to check this at an earlier stage... */
3180d9945d78SBjoern A. Zeeb 		if (common_ie_len >  hw->wiphy->max_scan_ie_len) {
3181d9945d78SBjoern A. Zeeb 			ic_printf(ic, "WARNING: %s: common_ie_len %d > "
3182d9945d78SBjoern A. Zeeb 			    "wiphy->max_scan_ie_len %d\n", __func__,
3183d9945d78SBjoern A. Zeeb 			    common_ie_len, hw->wiphy->max_scan_ie_len);
3184d9945d78SBjoern A. Zeeb 		}
3185d9945d78SBjoern A. Zeeb 
31863206587aSBjoern A. Zeeb 		hw_req = malloc(sizeof(*hw_req) + ssids_len +
3187d9945d78SBjoern A. Zeeb 		    s6ghzlen + chan_len + lhw->supbands * lhw->scan_ie_len +
3188d9945d78SBjoern A. Zeeb 		    common_ie_len, M_LKPI80211, M_WAITOK | M_ZERO);
31896b4cac81SBjoern A. Zeeb 
31906b4cac81SBjoern A. Zeeb 		hw_req->req.flags = 0;			/* XXX ??? */
31916b4cac81SBjoern A. Zeeb 		/* hw_req->req.wdev */
31926b4cac81SBjoern A. Zeeb 		hw_req->req.wiphy = hw->wiphy;
31936b4cac81SBjoern A. Zeeb 		hw_req->req.no_cck = false;		/* XXX */
31946b4cac81SBjoern A. Zeeb #if 0
31956b4cac81SBjoern A. Zeeb 		/* This seems to pessimise default scanning behaviour. */
31966b4cac81SBjoern A. Zeeb 		hw_req->req.duration_mandatory = TICKS_2_USEC(ss->ss_mindwell);
31976b4cac81SBjoern A. Zeeb 		hw_req->req.duration = TICKS_2_USEC(ss->ss_maxdwell);
31986b4cac81SBjoern A. Zeeb #endif
31996b4cac81SBjoern A. Zeeb #ifdef __notyet__
32006b4cac81SBjoern A. Zeeb 		hw_req->req.flags |= NL80211_SCAN_FLAG_RANDOM_ADDR;
32016b4cac81SBjoern A. Zeeb 		memcpy(hw_req->req.mac_addr, xxx, IEEE80211_ADDR_LEN);
32026b4cac81SBjoern A. Zeeb 		memset(hw_req->req.mac_addr_mask, 0xxx, IEEE80211_ADDR_LEN);
32036b4cac81SBjoern A. Zeeb #endif
3204e1e90be0SBjoern A. Zeeb 		eth_broadcast_addr(hw_req->req.bssid);
32056b4cac81SBjoern A. Zeeb 
32066b4cac81SBjoern A. Zeeb 		hw_req->req.n_channels = nchan;
32076b4cac81SBjoern A. Zeeb 		cpp = (struct linuxkpi_ieee80211_channel **)(hw_req + 1);
32086b4cac81SBjoern A. Zeeb 		lc = (struct linuxkpi_ieee80211_channel *)(cpp + nchan);
32096b4cac81SBjoern A. Zeeb 		for (i = 0; i < nchan; i++) {
32106b4cac81SBjoern A. Zeeb 			*(cpp + i) =
32116b4cac81SBjoern A. Zeeb 			    (struct linuxkpi_ieee80211_channel *)(lc + i);
32126b4cac81SBjoern A. Zeeb 		}
32136b4cac81SBjoern A. Zeeb 		for (i = 0; i < nchan; i++) {
32146b4cac81SBjoern A. Zeeb 			c = ss->ss_chans[ss->ss_next + i];
32156b4cac81SBjoern A. Zeeb 
32166b4cac81SBjoern A. Zeeb 			lc->hw_value = c->ic_ieee;
32173206587aSBjoern A. Zeeb 			lc->center_freq = c->ic_freq;	/* XXX */
32186b4cac81SBjoern A. Zeeb 			/* lc->flags */
32196b4cac81SBjoern A. Zeeb 			lc->band = lkpi_net80211_chan_to_nl80211_band(c);
32206b4cac81SBjoern A. Zeeb 			lc->max_power = c->ic_maxpower;
32216b4cac81SBjoern A. Zeeb 			/* lc-> ... */
32226b4cac81SBjoern A. Zeeb 			lc++;
32236b4cac81SBjoern A. Zeeb 		}
32246b4cac81SBjoern A. Zeeb 
3225d9945d78SBjoern A. Zeeb 		hw_req->req.n_ssids = ssid_count;
32266b4cac81SBjoern A. Zeeb 		if (hw_req->req.n_ssids > 0) {
32276b4cac81SBjoern A. Zeeb 			ssids = (struct cfg80211_ssid *)lc;
32286b4cac81SBjoern A. Zeeb 			hw_req->req.ssids = ssids;
3229d9945d78SBjoern A. Zeeb 			for (i = 0; i < ssid_count; i++) {
32306b4cac81SBjoern A. Zeeb 				ssids->ssid_len = ss->ss_ssid[i].len;
32316b4cac81SBjoern A. Zeeb 				memcpy(ssids->ssid, ss->ss_ssid[i].ssid,
32326b4cac81SBjoern A. Zeeb 				    ss->ss_ssid[i].len);
32336b4cac81SBjoern A. Zeeb 				ssids++;
32346b4cac81SBjoern A. Zeeb 			}
32356b4cac81SBjoern A. Zeeb 			s6gp = (struct cfg80211_scan_6ghz_params *)ssids;
32366b4cac81SBjoern A. Zeeb 		} else {
32376b4cac81SBjoern A. Zeeb 			s6gp = (struct cfg80211_scan_6ghz_params *)lc;
32386b4cac81SBjoern A. Zeeb 		}
32396b4cac81SBjoern A. Zeeb 
32406b4cac81SBjoern A. Zeeb 		/* 6GHz one day. */
32416b4cac81SBjoern A. Zeeb 		hw_req->req.n_6ghz_params = 0;
32426b4cac81SBjoern A. Zeeb 		hw_req->req.scan_6ghz_params = NULL;
32436b4cac81SBjoern A. Zeeb 		hw_req->req.scan_6ghz = false;	/* Weird boolean; not what you think. */
32446b4cac81SBjoern A. Zeeb 		/* s6gp->... */
32456b4cac81SBjoern A. Zeeb 
3246d9945d78SBjoern A. Zeeb 		ie = ieend = (uint8_t *)s6gp;
3247d9945d78SBjoern A. Zeeb 		/* Copy per-band IEs, copy common IEs */
3248d9945d78SBjoern A. Zeeb 		ieend = lkpi_scan_ies_add(ie, &hw_req->ies, band_mask, vap, hw);
3249d9945d78SBjoern A. Zeeb 		hw_req->req.ie = ie;
3250d9945d78SBjoern A. Zeeb 		hw_req->req.ie_len = ieend - ie;
3251d9945d78SBjoern A. Zeeb 
32526b4cac81SBjoern A. Zeeb 		lvif = VAP_TO_LVIF(vap);
32536b4cac81SBjoern A. Zeeb 		vif = LVIF_TO_VIF(lvif);
32543206587aSBjoern A. Zeeb 
32553206587aSBjoern A. Zeeb 		LKPI_80211_LHW_SCAN_LOCK(lhw);
32563206587aSBjoern A. Zeeb 		/* Re-check under lock. */
32573206587aSBjoern A. Zeeb 		running = (lhw->scan_flags & LKPI_LHW_SCAN_RUNNING) != 0;
32583206587aSBjoern A. Zeeb 		if (!running) {
32593206587aSBjoern A. Zeeb 			KASSERT(lhw->hw_req == NULL, ("%s: ic %p lhw %p hw_req %p "
32603206587aSBjoern A. Zeeb 			    "!= NULL\n", __func__, ic, lhw, lhw->hw_req));
32613206587aSBjoern A. Zeeb 
32623206587aSBjoern A. Zeeb 			lhw->scan_flags |= LKPI_LHW_SCAN_RUNNING;
32633206587aSBjoern A. Zeeb 			lhw->hw_req = hw_req;
32643206587aSBjoern A. Zeeb 		}
32653206587aSBjoern A. Zeeb 		LKPI_80211_LHW_SCAN_UNLOCK(lhw);
32663206587aSBjoern A. Zeeb 		if (running) {
32673206587aSBjoern A. Zeeb 			free(hw_req, M_LKPI80211);
32683206587aSBjoern A. Zeeb 			return;
32693206587aSBjoern A. Zeeb 		}
32703206587aSBjoern A. Zeeb 
32716b4cac81SBjoern A. Zeeb 		error = lkpi_80211_mo_hw_scan(hw, vif, hw_req);
32726b4cac81SBjoern A. Zeeb 		if (error != 0) {
3273d9945d78SBjoern A. Zeeb 			ieee80211_cancel_scan(vap);
3274d9945d78SBjoern A. Zeeb 
32753206587aSBjoern A. Zeeb 			/*
32763206587aSBjoern A. Zeeb 			 * ieee80211_scan_completed must be called in either
32773206587aSBjoern A. Zeeb 			 * case of error or none.  So let the free happen there
32783206587aSBjoern A. Zeeb 			 * and only there.
32793206587aSBjoern A. Zeeb 			 * That would be fine in theory but in practice drivers
32803206587aSBjoern A. Zeeb 			 * behave differently:
32813206587aSBjoern A. Zeeb 			 * ath10k does not return hw_scan until after scan_complete
32823206587aSBjoern A. Zeeb 			 *        and can then still return an error.
32833206587aSBjoern A. Zeeb 			 * rtw88 can return 1 or -EBUSY without scan_complete
32843206587aSBjoern A. Zeeb 			 * iwlwifi can return various errors before scan starts
32853206587aSBjoern A. Zeeb 			 * ...
32863206587aSBjoern A. Zeeb 			 * So we cannot rely on that behaviour and have to check
32873206587aSBjoern A. Zeeb 			 * and balance between both code paths.
32883206587aSBjoern A. Zeeb 			 */
32893206587aSBjoern A. Zeeb 			LKPI_80211_LHW_SCAN_LOCK(lhw);
32903206587aSBjoern A. Zeeb 			if ((lhw->scan_flags & LKPI_LHW_SCAN_RUNNING) != 0) {
32913206587aSBjoern A. Zeeb 				free(lhw->hw_req, M_LKPI80211);
32926b4cac81SBjoern A. Zeeb 				lhw->hw_req = NULL;
32933206587aSBjoern A. Zeeb 				lhw->scan_flags &= ~LKPI_LHW_SCAN_RUNNING;
32943206587aSBjoern A. Zeeb 			}
32953206587aSBjoern A. Zeeb 			LKPI_80211_LHW_SCAN_UNLOCK(lhw);
3296d3ef7fb4SBjoern A. Zeeb 
3297d3ef7fb4SBjoern A. Zeeb 			/*
3298d3ef7fb4SBjoern A. Zeeb 			 * XXX-SIGH magic number.
3299d3ef7fb4SBjoern A. Zeeb 			 * rtw88 has a magic "return 1" if offloading scan is
3300d3ef7fb4SBjoern A. Zeeb 			 * not possible.  Fall back to sw scan in that case.
3301d3ef7fb4SBjoern A. Zeeb 			 */
3302196cfd0bSBjoern A. Zeeb 			if (error == 1) {
33038ac540d3SBjoern A. Zeeb 				LKPI_80211_LHW_SCAN_LOCK(lhw);
3304a486fbbdSBjoern A. Zeeb 				lhw->scan_flags &= ~LKPI_LHW_SCAN_HW;
33058ac540d3SBjoern A. Zeeb 				LKPI_80211_LHW_SCAN_UNLOCK(lhw);
33063206587aSBjoern A. Zeeb 				/*
33073206587aSBjoern A. Zeeb 				 * XXX If we clear this now and later a driver
33083206587aSBjoern A. Zeeb 				 * thinks it * can do a hw_scan again, we will
33093206587aSBjoern A. Zeeb 				 * currently not re-enable it?
33103206587aSBjoern A. Zeeb 				 */
33113206587aSBjoern A. Zeeb 				vap->iv_flags_ext &= ~IEEE80211_FEXT_SCAN_OFFLOAD;
3312196cfd0bSBjoern A. Zeeb 				ieee80211_start_scan(vap,
3313196cfd0bSBjoern A. Zeeb 				    IEEE80211_SCAN_ACTIVE |
3314196cfd0bSBjoern A. Zeeb 				    IEEE80211_SCAN_NOPICK |
3315196cfd0bSBjoern A. Zeeb 				    IEEE80211_SCAN_ONCE,
3316196cfd0bSBjoern A. Zeeb 				    IEEE80211_SCAN_FOREVER,
3317196cfd0bSBjoern A. Zeeb 				    ss->ss_mindwell ? ss->ss_mindwell : msecs_to_ticks(20),
3318196cfd0bSBjoern A. Zeeb 				    ss->ss_maxdwell ? ss->ss_maxdwell : msecs_to_ticks(200),
3319196cfd0bSBjoern A. Zeeb 				    vap->iv_des_nssid, vap->iv_des_ssid);
3320d3ef7fb4SBjoern A. Zeeb 				goto sw_scan;
3321196cfd0bSBjoern A. Zeeb 			}
3322d3ef7fb4SBjoern A. Zeeb 
3323d3ef7fb4SBjoern A. Zeeb 			ic_printf(ic, "ERROR: %s: hw_scan returned %d\n",
3324d3ef7fb4SBjoern A. Zeeb 			    __func__, error);
33256b4cac81SBjoern A. Zeeb 		}
33266b4cac81SBjoern A. Zeeb 	}
33276b4cac81SBjoern A. Zeeb }
33286b4cac81SBjoern A. Zeeb 
33296b4cac81SBjoern A. Zeeb static void
33306b4cac81SBjoern A. Zeeb lkpi_ic_scan_end(struct ieee80211com *ic)
33316b4cac81SBjoern A. Zeeb {
33326b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
33338ac540d3SBjoern A. Zeeb 	bool is_hw_scan;
33346b4cac81SBjoern A. Zeeb 
33356b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
33368ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_LOCK(lhw);
3337a486fbbdSBjoern A. Zeeb 	if ((lhw->scan_flags & LKPI_LHW_SCAN_RUNNING) == 0) {
33388ac540d3SBjoern A. Zeeb 		LKPI_80211_LHW_SCAN_UNLOCK(lhw);
33396b4cac81SBjoern A. Zeeb 		return;
33406b4cac81SBjoern A. Zeeb 	}
33418ac540d3SBjoern A. Zeeb 	is_hw_scan = (lhw->scan_flags & LKPI_LHW_SCAN_HW) != 0;
33428ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_UNLOCK(lhw);
33436b4cac81SBjoern A. Zeeb 
33448ac540d3SBjoern A. Zeeb 	if (!is_hw_scan) {
3345a486fbbdSBjoern A. Zeeb 		struct ieee80211_scan_state *ss;
3346a486fbbdSBjoern A. Zeeb 		struct ieee80211vap *vap;
33476b4cac81SBjoern A. Zeeb 		struct ieee80211_hw *hw;
33486b4cac81SBjoern A. Zeeb 		struct lkpi_vif *lvif;
33496b4cac81SBjoern A. Zeeb 		struct ieee80211_vif *vif;
33506b4cac81SBjoern A. Zeeb 
3351a486fbbdSBjoern A. Zeeb 		ss = ic->ic_scan;
3352a486fbbdSBjoern A. Zeeb 		vap = ss->ss_vap;
33536b4cac81SBjoern A. Zeeb 		hw = LHW_TO_HW(lhw);
33546b4cac81SBjoern A. Zeeb 		lvif = VAP_TO_LVIF(vap);
33556b4cac81SBjoern A. Zeeb 		vif = LVIF_TO_VIF(lvif);
3356a486fbbdSBjoern A. Zeeb 
33576b4cac81SBjoern A. Zeeb 		lkpi_80211_mo_sw_scan_complete(hw, vif);
33586b4cac81SBjoern A. Zeeb 
33596b4cac81SBjoern A. Zeeb 		/* Send PS to stop buffering if n80211 does not for us? */
3360086be6a8SBjoern A. Zeeb 
3361086be6a8SBjoern A. Zeeb 		if (vap->iv_state == IEEE80211_S_SCAN)
3362086be6a8SBjoern A. Zeeb 			lkpi_hw_conf_idle(hw, true);
33636b4cac81SBjoern A. Zeeb 	}
33646b4cac81SBjoern A. Zeeb }
33656b4cac81SBjoern A. Zeeb 
33666b4cac81SBjoern A. Zeeb static void
3367a486fbbdSBjoern A. Zeeb lkpi_ic_scan_curchan(struct ieee80211_scan_state *ss,
3368a486fbbdSBjoern A. Zeeb     unsigned long maxdwell)
3369a486fbbdSBjoern A. Zeeb {
3370a486fbbdSBjoern A. Zeeb 	struct lkpi_hw *lhw;
33718ac540d3SBjoern A. Zeeb 	bool is_hw_scan;
3372a486fbbdSBjoern A. Zeeb 
3373a486fbbdSBjoern A. Zeeb 	lhw = ss->ss_ic->ic_softc;
33748ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_LOCK(lhw);
33758ac540d3SBjoern A. Zeeb 	is_hw_scan = (lhw->scan_flags & LKPI_LHW_SCAN_HW) != 0;
33768ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_UNLOCK(lhw);
33778ac540d3SBjoern A. Zeeb 	if (!is_hw_scan)
3378a486fbbdSBjoern A. Zeeb 		lhw->ic_scan_curchan(ss, maxdwell);
3379a486fbbdSBjoern A. Zeeb }
3380a486fbbdSBjoern A. Zeeb 
3381a486fbbdSBjoern A. Zeeb static void
3382a486fbbdSBjoern A. Zeeb lkpi_ic_scan_mindwell(struct ieee80211_scan_state *ss)
3383a486fbbdSBjoern A. Zeeb {
3384a486fbbdSBjoern A. Zeeb 	struct lkpi_hw *lhw;
33858ac540d3SBjoern A. Zeeb 	bool is_hw_scan;
3386a486fbbdSBjoern A. Zeeb 
3387a486fbbdSBjoern A. Zeeb 	lhw = ss->ss_ic->ic_softc;
33888ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_LOCK(lhw);
33898ac540d3SBjoern A. Zeeb 	is_hw_scan = (lhw->scan_flags & LKPI_LHW_SCAN_HW) != 0;
33908ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_UNLOCK(lhw);
33918ac540d3SBjoern A. Zeeb 	if (!is_hw_scan)
3392a486fbbdSBjoern A. Zeeb 		lhw->ic_scan_mindwell(ss);
3393a486fbbdSBjoern A. Zeeb }
3394a486fbbdSBjoern A. Zeeb 
3395a486fbbdSBjoern A. Zeeb static void
33966b4cac81SBjoern A. Zeeb lkpi_ic_set_channel(struct ieee80211com *ic)
33976b4cac81SBjoern A. Zeeb {
33986b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
33996b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
3400b2cf3c21SBjoern A. Zeeb 	struct ieee80211_channel *c;
3401b2cf3c21SBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel *chan;
34026b4cac81SBjoern A. Zeeb 	int error;
34038ac540d3SBjoern A. Zeeb 	bool hw_scan_running;
34046b4cac81SBjoern A. Zeeb 
34056b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
3406b2cf3c21SBjoern A. Zeeb 
3407b2cf3c21SBjoern A. Zeeb 	/* If we do not support (*config)() save us the work. */
3408b2cf3c21SBjoern A. Zeeb 	if (lhw->ops->config == NULL)
34096b4cac81SBjoern A. Zeeb 		return;
34106b4cac81SBjoern A. Zeeb 
3411a486fbbdSBjoern A. Zeeb 	/* If we have a hw_scan running do not switch channels. */
34128ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_LOCK(lhw);
34138ac540d3SBjoern A. Zeeb 	hw_scan_running =
34148ac540d3SBjoern A. Zeeb 	    (lhw->scan_flags & (LKPI_LHW_SCAN_RUNNING|LKPI_LHW_SCAN_HW)) ==
34158ac540d3SBjoern A. Zeeb 		(LKPI_LHW_SCAN_RUNNING|LKPI_LHW_SCAN_HW);
34168ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_UNLOCK(lhw);
34178ac540d3SBjoern A. Zeeb 	if (hw_scan_running)
3418a486fbbdSBjoern A. Zeeb 		return;
3419a486fbbdSBjoern A. Zeeb 
3420b2cf3c21SBjoern A. Zeeb 	c = ic->ic_curchan;
3421b2cf3c21SBjoern A. Zeeb 	if (c == NULL || c == IEEE80211_CHAN_ANYC) {
34226b4cac81SBjoern A. Zeeb 		ic_printf(ic, "%s: c %p ops->config %p\n", __func__,
34236b4cac81SBjoern A. Zeeb 		    c, lhw->ops->config);
34246b4cac81SBjoern A. Zeeb 		return;
34256b4cac81SBjoern A. Zeeb 	}
34266b4cac81SBjoern A. Zeeb 
34276b4cac81SBjoern A. Zeeb 	chan = lkpi_find_lkpi80211_chan(lhw, c);
34286b4cac81SBjoern A. Zeeb 	if (chan == NULL) {
34296b4cac81SBjoern A. Zeeb 		ic_printf(ic, "%s: c %p chan %p\n", __func__,
34306b4cac81SBjoern A. Zeeb 		    c, chan);
34316b4cac81SBjoern A. Zeeb 		return;
34326b4cac81SBjoern A. Zeeb 	}
34336b4cac81SBjoern A. Zeeb 
34346b4cac81SBjoern A. Zeeb 	/* XXX max power for scanning? */
34356b4cac81SBjoern A. Zeeb 	IMPROVE();
34366b4cac81SBjoern A. Zeeb 
34376b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
34384a07abdeSBjoern A. Zeeb 	cfg80211_chandef_create(&hw->conf.chandef, chan,
34399fb91463SBjoern A. Zeeb #ifdef LKPI_80211_HT
34409fb91463SBjoern A. Zeeb 	    (ic->ic_htcaps & IEEE80211_HTC_HT) ? 0 :
34419fb91463SBjoern A. Zeeb #endif
34424a07abdeSBjoern A. Zeeb 	    NL80211_CHAN_NO_HT);
34436b4cac81SBjoern A. Zeeb 
34446b4cac81SBjoern A. Zeeb 	error = lkpi_80211_mo_config(hw, IEEE80211_CONF_CHANGE_CHANNEL);
34456b4cac81SBjoern A. Zeeb 	if (error != 0 && error != EOPNOTSUPP) {
34466b4cac81SBjoern A. Zeeb 		ic_printf(ic, "ERROR: %s: config %#0x returned %d\n",
34476b4cac81SBjoern A. Zeeb 		    __func__, IEEE80211_CONF_CHANGE_CHANNEL, error);
34486b4cac81SBjoern A. Zeeb 		/* XXX should we unroll to the previous chandef? */
34496b4cac81SBjoern A. Zeeb 		IMPROVE();
34506b4cac81SBjoern A. Zeeb 	} else {
34516b4cac81SBjoern A. Zeeb 		/* Update radiotap channels as well. */
34526b4cac81SBjoern A. Zeeb 		lhw->rtap_tx.wt_chan_freq = htole16(c->ic_freq);
34536b4cac81SBjoern A. Zeeb 		lhw->rtap_tx.wt_chan_flags = htole16(c->ic_flags);
34546b4cac81SBjoern A. Zeeb 		lhw->rtap_rx.wr_chan_freq = htole16(c->ic_freq);
34556b4cac81SBjoern A. Zeeb 		lhw->rtap_rx.wr_chan_flags = htole16(c->ic_flags);
34566b4cac81SBjoern A. Zeeb 	}
34576b4cac81SBjoern A. Zeeb 
34586b4cac81SBjoern A. Zeeb 	/* Currently PS is hard coded off! Not sure it belongs here. */
34596b4cac81SBjoern A. Zeeb 	IMPROVE();
34606b4cac81SBjoern A. Zeeb 	if (ieee80211_hw_check(hw, SUPPORTS_PS) &&
34616b4cac81SBjoern A. Zeeb 	    (hw->conf.flags & IEEE80211_CONF_PS) != 0) {
34626b4cac81SBjoern A. Zeeb 		hw->conf.flags &= ~IEEE80211_CONF_PS;
34636b4cac81SBjoern A. Zeeb 		error = lkpi_80211_mo_config(hw, IEEE80211_CONF_CHANGE_PS);
34646b4cac81SBjoern A. Zeeb 		if (error != 0 && error != EOPNOTSUPP)
34656b4cac81SBjoern A. Zeeb 			ic_printf(ic, "ERROR: %s: config %#0x returned "
34666b4cac81SBjoern A. Zeeb 			    "%d\n", __func__, IEEE80211_CONF_CHANGE_PS,
34676b4cac81SBjoern A. Zeeb 			    error);
34686b4cac81SBjoern A. Zeeb 	}
34696b4cac81SBjoern A. Zeeb }
34706b4cac81SBjoern A. Zeeb 
34716b4cac81SBjoern A. Zeeb static struct ieee80211_node *
34726b4cac81SBjoern A. Zeeb lkpi_ic_node_alloc(struct ieee80211vap *vap,
34736b4cac81SBjoern A. Zeeb     const uint8_t mac[IEEE80211_ADDR_LEN])
34746b4cac81SBjoern A. Zeeb {
34756b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
34766b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
34774f61ef8bSBjoern A. Zeeb 	struct ieee80211_node *ni;
34786b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
34796b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
34806b4cac81SBjoern A. Zeeb 
34816b4cac81SBjoern A. Zeeb 	ic = vap->iv_ic;
34826b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
34836b4cac81SBjoern A. Zeeb 
34846b4cac81SBjoern A. Zeeb 	/* We keep allocations de-coupled so we can deal with the two worlds. */
34854f61ef8bSBjoern A. Zeeb 	if (lhw->ic_node_alloc == NULL)
34864f61ef8bSBjoern A. Zeeb 		return (NULL);
34874f61ef8bSBjoern A. Zeeb 
34886b4cac81SBjoern A. Zeeb 	ni = lhw->ic_node_alloc(vap, mac);
34896b4cac81SBjoern A. Zeeb 	if (ni == NULL)
34906b4cac81SBjoern A. Zeeb 		return (NULL);
34916b4cac81SBjoern A. Zeeb 
34926b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
34934f61ef8bSBjoern A. Zeeb 	lsta = lkpi_lsta_alloc(vap, mac, hw, ni);
34946b4cac81SBjoern A. Zeeb 	if (lsta == NULL) {
34956b4cac81SBjoern A. Zeeb 		if (lhw->ic_node_free != NULL)
34966b4cac81SBjoern A. Zeeb 			lhw->ic_node_free(ni);
34976b4cac81SBjoern A. Zeeb 		return (NULL);
34986b4cac81SBjoern A. Zeeb 	}
34996b4cac81SBjoern A. Zeeb 
35006b4cac81SBjoern A. Zeeb 	return (ni);
35016b4cac81SBjoern A. Zeeb }
35026b4cac81SBjoern A. Zeeb 
35036b4cac81SBjoern A. Zeeb static int
35046b4cac81SBjoern A. Zeeb lkpi_ic_node_init(struct ieee80211_node *ni)
35056b4cac81SBjoern A. Zeeb {
35066b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
35076b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
35086b4cac81SBjoern A. Zeeb 	int error;
35096b4cac81SBjoern A. Zeeb 
35106b4cac81SBjoern A. Zeeb 	ic = ni->ni_ic;
35116b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
35126b4cac81SBjoern A. Zeeb 
35136b4cac81SBjoern A. Zeeb 	if (lhw->ic_node_init != NULL) {
35146b4cac81SBjoern A. Zeeb 		error = lhw->ic_node_init(ni);
35156b4cac81SBjoern A. Zeeb 		if (error != 0)
35166b4cac81SBjoern A. Zeeb 			return (error);
35176b4cac81SBjoern A. Zeeb 	}
35186b4cac81SBjoern A. Zeeb 
35196b4cac81SBjoern A. Zeeb 	/* XXX-BZ Sync other state over. */
35206b4cac81SBjoern A. Zeeb 	IMPROVE();
35216b4cac81SBjoern A. Zeeb 
35226b4cac81SBjoern A. Zeeb 	return (0);
35236b4cac81SBjoern A. Zeeb }
35246b4cac81SBjoern A. Zeeb 
35256b4cac81SBjoern A. Zeeb static void
35266b4cac81SBjoern A. Zeeb lkpi_ic_node_cleanup(struct ieee80211_node *ni)
35276b4cac81SBjoern A. Zeeb {
35286b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
35296b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
35306b4cac81SBjoern A. Zeeb 
35316b4cac81SBjoern A. Zeeb 	ic = ni->ni_ic;
35326b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
35336b4cac81SBjoern A. Zeeb 
35346b4cac81SBjoern A. Zeeb 	/* XXX-BZ remove from driver, ... */
35356b4cac81SBjoern A. Zeeb 	IMPROVE();
35366b4cac81SBjoern A. Zeeb 
35376b4cac81SBjoern A. Zeeb 	if (lhw->ic_node_cleanup != NULL)
35386b4cac81SBjoern A. Zeeb 		lhw->ic_node_cleanup(ni);
35396b4cac81SBjoern A. Zeeb }
35406b4cac81SBjoern A. Zeeb 
35416b4cac81SBjoern A. Zeeb static void
35426b4cac81SBjoern A. Zeeb lkpi_ic_node_free(struct ieee80211_node *ni)
35436b4cac81SBjoern A. Zeeb {
35446b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
35456b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
35466b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
35476b4cac81SBjoern A. Zeeb 
35486b4cac81SBjoern A. Zeeb 	ic = ni->ni_ic;
35496b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
35506b4cac81SBjoern A. Zeeb 	lsta = ni->ni_drv_data;
35516b4cac81SBjoern A. Zeeb 
35520936c648SBjoern A. Zeeb 	/* KASSERT lsta is not NULL here. Print ni/ni__refcnt. */
35536b4cac81SBjoern A. Zeeb 
35540936c648SBjoern A. Zeeb 	/*
35550936c648SBjoern A. Zeeb 	 * Pass in the original ni just in case of error we could check that
35560936c648SBjoern A. Zeeb 	 * it is the same as lsta->ni.
35570936c648SBjoern A. Zeeb 	 */
35580936c648SBjoern A. Zeeb 	lkpi_lsta_free(lsta, ni);
35596b4cac81SBjoern A. Zeeb 
35606b4cac81SBjoern A. Zeeb 	if (lhw->ic_node_free != NULL)
35616b4cac81SBjoern A. Zeeb 		lhw->ic_node_free(ni);
35626b4cac81SBjoern A. Zeeb }
35636b4cac81SBjoern A. Zeeb 
35646b4cac81SBjoern A. Zeeb static int
35656b4cac81SBjoern A. Zeeb lkpi_ic_raw_xmit(struct ieee80211_node *ni, struct mbuf *m,
35666b4cac81SBjoern A. Zeeb         const struct ieee80211_bpf_params *params __unused)
35676b4cac81SBjoern A. Zeeb {
35686b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
35696b4cac81SBjoern A. Zeeb 
35706b4cac81SBjoern A. Zeeb 	lsta = ni->ni_drv_data;
3571fa4e4257SBjoern A. Zeeb 	LKPI_80211_LSTA_TXQ_LOCK(lsta);
35720936c648SBjoern A. Zeeb 	if (!lsta->txq_ready) {
3573fa4e4257SBjoern A. Zeeb 		LKPI_80211_LSTA_TXQ_UNLOCK(lsta);
3574fa4e4257SBjoern A. Zeeb 		/*
3575fa4e4257SBjoern A. Zeeb 		 * Free the mbuf (do NOT release ni ref for the m_pkthdr.rcvif!
3576fa4e4257SBjoern A. Zeeb 		 * ieee80211_raw_output() does that in case of error).
3577fa4e4257SBjoern A. Zeeb 		 */
35780936c648SBjoern A. Zeeb 		m_free(m);
35790936c648SBjoern A. Zeeb 		return (ENETDOWN);
35800936c648SBjoern A. Zeeb 	}
35816b4cac81SBjoern A. Zeeb 
35826b4cac81SBjoern A. Zeeb 	/* Queue the packet and enqueue the task to handle it. */
35836b4cac81SBjoern A. Zeeb 	mbufq_enqueue(&lsta->txq, m);
3584fa4e4257SBjoern A. Zeeb 	taskqueue_enqueue(taskqueue_thread, &lsta->txq_task);
3585fa4e4257SBjoern A. Zeeb 	LKPI_80211_LSTA_TXQ_UNLOCK(lsta);
35866b4cac81SBjoern A. Zeeb 
35879d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
35889d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_TX)
35896b4cac81SBjoern A. Zeeb 		printf("%s:%d lsta %p ni %p %6D mbuf_qlen %d\n",
35906b4cac81SBjoern A. Zeeb 		    __func__, __LINE__, lsta, ni, ni->ni_macaddr, ":",
35916b4cac81SBjoern A. Zeeb 		    mbufq_len(&lsta->txq));
35929d9ba2b7SBjoern A. Zeeb #endif
35936b4cac81SBjoern A. Zeeb 
35946b4cac81SBjoern A. Zeeb 	return (0);
35956b4cac81SBjoern A. Zeeb }
35966b4cac81SBjoern A. Zeeb 
35976b4cac81SBjoern A. Zeeb static void
35986b4cac81SBjoern A. Zeeb lkpi_80211_txq_tx_one(struct lkpi_sta *lsta, struct mbuf *m)
35996b4cac81SBjoern A. Zeeb {
36006b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
3601b35f6cd0SBjoern A. Zeeb #ifndef LKPI_80211_HW_CRYPTO
36026b4cac81SBjoern A. Zeeb 	struct ieee80211_frame *wh;
3603b35f6cd0SBjoern A. Zeeb #endif
36046b4cac81SBjoern A. Zeeb 	struct ieee80211_key *k;
36056b4cac81SBjoern A. Zeeb 	struct sk_buff *skb;
36066b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
36076b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
36086b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
36096b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
36106b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
36116b4cac81SBjoern A. Zeeb 	struct ieee80211_channel *c;
36126b4cac81SBjoern A. Zeeb 	struct ieee80211_tx_control control;
36136b4cac81SBjoern A. Zeeb 	struct ieee80211_tx_info *info;
36146b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
3615e3a0b120SBjoern A. Zeeb 	struct ieee80211_hdr *hdr;
3616ac867c20SBjoern A. Zeeb 	struct lkpi_txq *ltxq;
36176b4cac81SBjoern A. Zeeb 	void *buf;
3618e3a0b120SBjoern A. Zeeb 	uint8_t ac, tid;
36196b4cac81SBjoern A. Zeeb 
36206b4cac81SBjoern A. Zeeb 	M_ASSERTPKTHDR(m);
36216b4cac81SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
36229d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_TX_DUMP)
36236b4cac81SBjoern A. Zeeb 		hexdump(mtod(m, const void *), m->m_len, "RAW TX (plain) ", 0);
36246b4cac81SBjoern A. Zeeb #endif
36256b4cac81SBjoern A. Zeeb 
36266b4cac81SBjoern A. Zeeb 	ni = lsta->ni;
3627b35f6cd0SBjoern A. Zeeb 	k = NULL;
3628b35f6cd0SBjoern A. Zeeb #ifndef LKPI_80211_HW_CRYPTO
36296b4cac81SBjoern A. Zeeb 	/* Encrypt the frame if need be; XXX-BZ info->control.hw_key. */
36306b4cac81SBjoern A. Zeeb 	wh = mtod(m, struct ieee80211_frame *);
36316b4cac81SBjoern A. Zeeb 	if (wh->i_fc[1] & IEEE80211_FC1_PROTECTED) {
36326b4cac81SBjoern A. Zeeb 		/* Retrieve key for TX && do software encryption. */
36336b4cac81SBjoern A. Zeeb 		k = ieee80211_crypto_encap(ni, m);
36346b4cac81SBjoern A. Zeeb 		if (k == NULL) {
36356b4cac81SBjoern A. Zeeb 			ieee80211_free_node(ni);
36366b4cac81SBjoern A. Zeeb 			m_freem(m);
36376b4cac81SBjoern A. Zeeb 			return;
36386b4cac81SBjoern A. Zeeb 		}
36396b4cac81SBjoern A. Zeeb 	}
36406b4cac81SBjoern A. Zeeb #endif
36416b4cac81SBjoern A. Zeeb 
36426b4cac81SBjoern A. Zeeb 	ic = ni->ni_ic;
36436b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
36446b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
36456b4cac81SBjoern A. Zeeb 	c = ni->ni_chan;
36466b4cac81SBjoern A. Zeeb 
36476b4cac81SBjoern A. Zeeb 	if (ieee80211_radiotap_active_vap(ni->ni_vap)) {
36486b4cac81SBjoern A. Zeeb 		struct lkpi_radiotap_tx_hdr *rtap;
36496b4cac81SBjoern A. Zeeb 
36506b4cac81SBjoern A. Zeeb 		rtap = &lhw->rtap_tx;
36516b4cac81SBjoern A. Zeeb 		rtap->wt_flags = 0;
36526b4cac81SBjoern A. Zeeb 		if (k != NULL)
36536b4cac81SBjoern A. Zeeb 			rtap->wt_flags |= IEEE80211_RADIOTAP_F_WEP;
36546b4cac81SBjoern A. Zeeb 		if (m->m_flags & M_FRAG)
36556b4cac81SBjoern A. Zeeb 			rtap->wt_flags |= IEEE80211_RADIOTAP_F_FRAG;
36566b4cac81SBjoern A. Zeeb 		IMPROVE();
36576b4cac81SBjoern A. Zeeb 		rtap->wt_rate = 0;
36586b4cac81SBjoern A. Zeeb 		if (c != NULL && c != IEEE80211_CHAN_ANYC) {
36596b4cac81SBjoern A. Zeeb 			rtap->wt_chan_freq = htole16(c->ic_freq);
36606b4cac81SBjoern A. Zeeb 			rtap->wt_chan_flags = htole16(c->ic_flags);
36616b4cac81SBjoern A. Zeeb 		}
36626b4cac81SBjoern A. Zeeb 
36636b4cac81SBjoern A. Zeeb 		ieee80211_radiotap_tx(ni->ni_vap, m);
36646b4cac81SBjoern A. Zeeb 	}
36656b4cac81SBjoern A. Zeeb 
36666b4cac81SBjoern A. Zeeb 	/*
36676b4cac81SBjoern A. Zeeb 	 * net80211 should handle hw->extra_tx_headroom.
36686b4cac81SBjoern A. Zeeb 	 * Though for as long as we are copying we don't mind.
36693d09d310SBjoern A. Zeeb 	 * XXX-BZ rtw88 asks for too much headroom for ipv6+tcp:
36703d09d310SBjoern A. Zeeb 	 * https://lists.freebsd.org/archives/freebsd-transport/2022-February/000012.html
36716b4cac81SBjoern A. Zeeb 	 */
36726b4cac81SBjoern A. Zeeb 	skb = dev_alloc_skb(hw->extra_tx_headroom + m->m_pkthdr.len);
36736b4cac81SBjoern A. Zeeb 	if (skb == NULL) {
36743f0083c4SBjoern A. Zeeb 		ic_printf(ic, "ERROR %s: skb alloc failed\n", __func__);
36756b4cac81SBjoern A. Zeeb 		ieee80211_free_node(ni);
36766b4cac81SBjoern A. Zeeb 		m_freem(m);
36776b4cac81SBjoern A. Zeeb 		return;
36786b4cac81SBjoern A. Zeeb 	}
36796b4cac81SBjoern A. Zeeb 	skb_reserve(skb, hw->extra_tx_headroom);
36806b4cac81SBjoern A. Zeeb 
36816b4cac81SBjoern A. Zeeb 	/* XXX-BZ we need a SKB version understanding mbuf. */
36826b4cac81SBjoern A. Zeeb 	/* Save the mbuf for ieee80211_tx_complete(). */
36836b4cac81SBjoern A. Zeeb 	skb->m_free_func = lkpi_ieee80211_free_skb_mbuf;
36846b4cac81SBjoern A. Zeeb 	skb->m = m;
36856b4cac81SBjoern A. Zeeb #if 0
36866b4cac81SBjoern A. Zeeb 	skb_put_data(skb, m->m_data, m->m_pkthdr.len);
36876b4cac81SBjoern A. Zeeb #else
36886b4cac81SBjoern A. Zeeb 	buf = skb_put(skb, m->m_pkthdr.len);
36896b4cac81SBjoern A. Zeeb 	m_copydata(m, 0, m->m_pkthdr.len, buf);
36906b4cac81SBjoern A. Zeeb #endif
36916b4cac81SBjoern A. Zeeb 	/* Save the ni. */
36926b4cac81SBjoern A. Zeeb 	m->m_pkthdr.PH_loc.ptr = ni;
36936b4cac81SBjoern A. Zeeb 
36946b4cac81SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(ni->ni_vap);
36956b4cac81SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
36966b4cac81SBjoern A. Zeeb 
3697e3a0b120SBjoern A. Zeeb 	hdr = (void *)skb->data;
3698e3a0b120SBjoern A. Zeeb 	tid = linuxkpi_ieee80211_get_tid(hdr, true);
3699e3a0b120SBjoern A. Zeeb 	if (tid == IEEE80211_NONQOS_TID) { /* == IEEE80211_NUM_TIDS */
37001665ef97SBjoern A. Zeeb 		if (!ieee80211_is_data(hdr->frame_control)) {
37011665ef97SBjoern A. Zeeb 			/* MGMT and CTRL frames go on TID 7/VO. */
37021665ef97SBjoern A. Zeeb 			skb->priority = 7;
37031665ef97SBjoern A. Zeeb 			ac = IEEE80211_AC_VO;
37041665ef97SBjoern A. Zeeb 		} else {
37051665ef97SBjoern A. Zeeb 			/* Other non-QOS traffic goes to BE. */
37061665ef97SBjoern A. Zeeb 			/* Contrary to net80211 we MUST NOT promote M_EAPOL. */
3707e3a0b120SBjoern A. Zeeb 			skb->priority = 0;
3708e3a0b120SBjoern A. Zeeb 			ac = IEEE80211_AC_BE;
37091665ef97SBjoern A. Zeeb 		}
3710e3a0b120SBjoern A. Zeeb 	} else {
3711e3a0b120SBjoern A. Zeeb 		skb->priority = tid & IEEE80211_QOS_CTL_TID_MASK;
3712fb3c249eSBjoern A. Zeeb 		ac = ieee80211e_up_to_ac[tid & 7];
3713e3a0b120SBjoern A. Zeeb 	}
37146b4cac81SBjoern A. Zeeb 	skb_set_queue_mapping(skb, ac);
37156b4cac81SBjoern A. Zeeb 
37166b4cac81SBjoern A. Zeeb 	info = IEEE80211_SKB_CB(skb);
37176b4cac81SBjoern A. Zeeb 	info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
37186b4cac81SBjoern A. Zeeb 	/* Slight delay; probably only happens on scanning so fine? */
37196b4cac81SBjoern A. Zeeb 	if (c == NULL || c == IEEE80211_CHAN_ANYC)
37206b4cac81SBjoern A. Zeeb 		c = ic->ic_curchan;
37216b4cac81SBjoern A. Zeeb 	info->band = lkpi_net80211_chan_to_nl80211_band(c);
3722e3a0b120SBjoern A. Zeeb 	info->hw_queue = vif->hw_queue[ac];
37236b4cac81SBjoern A. Zeeb 	if (m->m_flags & M_EAPOL)
37246b4cac81SBjoern A. Zeeb 		info->control.flags |= IEEE80211_TX_CTRL_PORT_CTRL_PROTO;
37256b4cac81SBjoern A. Zeeb 	info->control.vif = vif;
37266b4cac81SBjoern A. Zeeb 	/* XXX-BZ info->control.rates */
37279fb91463SBjoern A. Zeeb #ifdef __notyet__
37289fb91463SBjoern A. Zeeb #ifdef LKPI_80211_HT
37299fb91463SBjoern A. Zeeb 	info->control.rts_cts_rate_idx=
37309fb91463SBjoern A. Zeeb 	info->control.use_rts= /* RTS */
37319fb91463SBjoern A. Zeeb 	info->control.use_cts_prot= /* RTS/CTS*/
37329fb91463SBjoern A. Zeeb #endif
37339fb91463SBjoern A. Zeeb #endif
37346b4cac81SBjoern A. Zeeb 
37356b4cac81SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
3736b35f6cd0SBjoern A. Zeeb #ifdef LKPI_80211_HW_CRYPTO
37376b4cac81SBjoern A. Zeeb 	info->control.hw_key = lsta->kc;
37386b4cac81SBjoern A. Zeeb #endif
37396b4cac81SBjoern A. Zeeb 
37406b4cac81SBjoern A. Zeeb 	IMPROVE();
37416b4cac81SBjoern A. Zeeb 
3742e3a0b120SBjoern A. Zeeb 	ltxq = NULL;
3743e3a0b120SBjoern A. Zeeb 	if (!ieee80211_is_data_present(hdr->frame_control)) {
3744e3a0b120SBjoern A. Zeeb 		if (vif->type == NL80211_IFTYPE_STATION &&
3745e3a0b120SBjoern A. Zeeb 		    lsta->added_to_drv &&
3746e3a0b120SBjoern A. Zeeb 		    sta->txq[IEEE80211_NUM_TIDS] != NULL)
3747d0d29110SBjoern A. Zeeb 			ltxq = TXQ_TO_LTXQ(sta->txq[IEEE80211_NUM_TIDS]);
3748e3a0b120SBjoern A. Zeeb 	} else if (lsta->added_to_drv &&
3749e3a0b120SBjoern A. Zeeb 	    sta->txq[skb->priority] != NULL) {
3750e3a0b120SBjoern A. Zeeb 		ltxq = TXQ_TO_LTXQ(sta->txq[skb->priority]);
3751e3a0b120SBjoern A. Zeeb 	}
3752e3a0b120SBjoern A. Zeeb 	if (ltxq == NULL)
3753d0d29110SBjoern A. Zeeb 		goto ops_tx;
3754e3a0b120SBjoern A. Zeeb 
3755d0d29110SBjoern A. Zeeb 	KASSERT(ltxq != NULL, ("%s: lsta %p sta %p m %p skb %p "
3756d0d29110SBjoern A. Zeeb 	    "ltxq %p != NULL\n", __func__, lsta, sta, m, skb, ltxq));
3757d0d29110SBjoern A. Zeeb 
3758eac3646fSBjoern A. Zeeb 	LKPI_80211_LTXQ_LOCK(ltxq);
37596b4cac81SBjoern A. Zeeb 	skb_queue_tail(&ltxq->skbq, skb);
37609d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
37619d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_TX)
3762d0d29110SBjoern A. Zeeb 		printf("%s:%d mo_wake_tx_queue :: %d %u lsta %p sta %p "
3763d0d29110SBjoern A. Zeeb 		    "ni %p %6D skb %p lxtq %p { qlen %u, ac %d tid %u } "
3764d0d29110SBjoern A. Zeeb 		    "WAKE_TX_Q ac %d prio %u qmap %u\n",
3765fb6eaf74SBjoern A. Zeeb 		    __func__, __LINE__,
3766d0d29110SBjoern A. Zeeb 		    curthread->td_tid, (unsigned int)ticks,
3767d0d29110SBjoern A. Zeeb 		    lsta, sta, ni, ni->ni_macaddr, ":", skb, ltxq,
3768d0d29110SBjoern A. Zeeb 		    skb_queue_len(&ltxq->skbq), ltxq->txq.ac,
3769d0d29110SBjoern A. Zeeb 		    ltxq->txq.tid, ac, skb->priority, skb->qmap);
37709d9ba2b7SBjoern A. Zeeb #endif
3771eac3646fSBjoern A. Zeeb 	LKPI_80211_LTXQ_UNLOCK(ltxq);
377245bce6faSBjoern A. Zeeb 	LKPI_80211_LHW_LOCK(lhw);
3773d0d29110SBjoern A. Zeeb 	lkpi_80211_mo_wake_tx_queue(hw, &ltxq->txq);
377445bce6faSBjoern A. Zeeb 	LKPI_80211_LHW_UNLOCK(lhw);
37756b4cac81SBjoern A. Zeeb 	return;
37766b4cac81SBjoern A. Zeeb 
37776b4cac81SBjoern A. Zeeb ops_tx:
37789d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
37799d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_TX)
3780d0d29110SBjoern A. Zeeb 		printf("%s:%d mo_tx :: lsta %p sta %p ni %p %6D skb %p "
3781d0d29110SBjoern A. Zeeb 		    "TX ac %d prio %u qmap %u\n",
37826b4cac81SBjoern A. Zeeb 		    __func__, __LINE__, lsta, sta, ni, ni->ni_macaddr, ":",
37836b4cac81SBjoern A. Zeeb 		    skb, ac, skb->priority, skb->qmap);
37849d9ba2b7SBjoern A. Zeeb #endif
37856b4cac81SBjoern A. Zeeb 	memset(&control, 0, sizeof(control));
37866b4cac81SBjoern A. Zeeb 	control.sta = sta;
378745bce6faSBjoern A. Zeeb 	LKPI_80211_LHW_LOCK(lhw);
37886b4cac81SBjoern A. Zeeb 	lkpi_80211_mo_tx(hw, &control, skb);
378945bce6faSBjoern A. Zeeb 	LKPI_80211_LHW_UNLOCK(lhw);
37906b4cac81SBjoern A. Zeeb }
37916b4cac81SBjoern A. Zeeb 
37926b4cac81SBjoern A. Zeeb static void
37936b4cac81SBjoern A. Zeeb lkpi_80211_txq_task(void *ctx, int pending)
37946b4cac81SBjoern A. Zeeb {
37956b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
37966b4cac81SBjoern A. Zeeb 	struct mbufq mq;
37976b4cac81SBjoern A. Zeeb 	struct mbuf *m;
37986b4cac81SBjoern A. Zeeb 
37996b4cac81SBjoern A. Zeeb 	lsta = ctx;
38006b4cac81SBjoern A. Zeeb 
38019d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
38029d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_TX)
38036b4cac81SBjoern A. Zeeb 		printf("%s:%d lsta %p ni %p %6D pending %d mbuf_qlen %d\n",
38049d9ba2b7SBjoern A. Zeeb 		    __func__, __LINE__, lsta, lsta->ni, lsta->ni->ni_macaddr, ":",
38056b4cac81SBjoern A. Zeeb 		    pending, mbufq_len(&lsta->txq));
38069d9ba2b7SBjoern A. Zeeb #endif
38076b4cac81SBjoern A. Zeeb 
38086b4cac81SBjoern A. Zeeb 	mbufq_init(&mq, IFQ_MAXLEN);
38096b4cac81SBjoern A. Zeeb 
3810fa4e4257SBjoern A. Zeeb 	LKPI_80211_LSTA_TXQ_LOCK(lsta);
3811fa4e4257SBjoern A. Zeeb 	/*
3812fa4e4257SBjoern A. Zeeb 	 * Do not re-check lsta->txq_ready here; we may have a pending
3813fa4e4257SBjoern A. Zeeb 	 * disassoc frame still.
3814fa4e4257SBjoern A. Zeeb 	 */
38156b4cac81SBjoern A. Zeeb 	mbufq_concat(&mq, &lsta->txq);
3816fa4e4257SBjoern A. Zeeb 	LKPI_80211_LSTA_TXQ_UNLOCK(lsta);
38176b4cac81SBjoern A. Zeeb 
38186b4cac81SBjoern A. Zeeb 	m = mbufq_dequeue(&mq);
38196b4cac81SBjoern A. Zeeb 	while (m != NULL) {
38206b4cac81SBjoern A. Zeeb 		lkpi_80211_txq_tx_one(lsta, m);
38216b4cac81SBjoern A. Zeeb 		m = mbufq_dequeue(&mq);
38226b4cac81SBjoern A. Zeeb 	}
38236b4cac81SBjoern A. Zeeb }
38246b4cac81SBjoern A. Zeeb 
38256b4cac81SBjoern A. Zeeb static int
38266b4cac81SBjoern A. Zeeb lkpi_ic_transmit(struct ieee80211com *ic, struct mbuf *m)
38276b4cac81SBjoern A. Zeeb {
38286b4cac81SBjoern A. Zeeb 
38296b4cac81SBjoern A. Zeeb 	/* XXX TODO */
38306b4cac81SBjoern A. Zeeb 	IMPROVE();
38316b4cac81SBjoern A. Zeeb 
38326b4cac81SBjoern A. Zeeb 	/* Quick and dirty cheating hack. */
38336b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
38346b4cac81SBjoern A. Zeeb 
38356b4cac81SBjoern A. Zeeb 	ni = (struct ieee80211_node *)m->m_pkthdr.rcvif;
38366b4cac81SBjoern A. Zeeb 	return (lkpi_ic_raw_xmit(ni, m, NULL));
38376b4cac81SBjoern A. Zeeb }
38386b4cac81SBjoern A. Zeeb 
38399fb91463SBjoern A. Zeeb #ifdef LKPI_80211_HT
38409fb91463SBjoern A. Zeeb static int
38419fb91463SBjoern A. Zeeb lkpi_ic_recv_action(struct ieee80211_node *ni, const struct ieee80211_frame *wh,
38429fb91463SBjoern A. Zeeb     const uint8_t *frm, const uint8_t *efrm)
38439fb91463SBjoern A. Zeeb {
38449fb91463SBjoern A. Zeeb 	struct ieee80211com *ic;
38459fb91463SBjoern A. Zeeb 	struct lkpi_hw *lhw;
38469fb91463SBjoern A. Zeeb 
38479fb91463SBjoern A. Zeeb 	ic = ni->ni_ic;
38489fb91463SBjoern A. Zeeb 	lhw = ic->ic_softc;
38499fb91463SBjoern A. Zeeb 
38509fb91463SBjoern A. Zeeb 	IMPROVE_HT();
38519fb91463SBjoern A. Zeeb 
38529fb91463SBjoern A. Zeeb 	return (lhw->ic_recv_action(ni, wh, frm, efrm));
38539fb91463SBjoern A. Zeeb }
38549fb91463SBjoern A. Zeeb 
38559fb91463SBjoern A. Zeeb static int
38569fb91463SBjoern A. Zeeb lkpi_ic_send_action(struct ieee80211_node *ni, int category, int action, void *sa)
38579fb91463SBjoern A. Zeeb {
38589fb91463SBjoern A. Zeeb 	struct ieee80211com *ic;
38599fb91463SBjoern A. Zeeb 	struct lkpi_hw *lhw;
38609fb91463SBjoern A. Zeeb 
38619fb91463SBjoern A. Zeeb 	ic = ni->ni_ic;
38629fb91463SBjoern A. Zeeb 	lhw = ic->ic_softc;
38639fb91463SBjoern A. Zeeb 
38649fb91463SBjoern A. Zeeb 	IMPROVE_HT();
38659fb91463SBjoern A. Zeeb 
38669fb91463SBjoern A. Zeeb 	return (lhw->ic_send_action(ni, category, action, sa));
38679fb91463SBjoern A. Zeeb }
38689fb91463SBjoern A. Zeeb 
38699fb91463SBjoern A. Zeeb 
38709fb91463SBjoern A. Zeeb static int
38719fb91463SBjoern A. Zeeb lkpi_ic_ampdu_enable(struct ieee80211_node *ni, struct ieee80211_tx_ampdu *tap)
38729fb91463SBjoern A. Zeeb {
38739fb91463SBjoern A. Zeeb 	struct ieee80211com *ic;
38749fb91463SBjoern A. Zeeb 	struct lkpi_hw *lhw;
38759fb91463SBjoern A. Zeeb 
38769fb91463SBjoern A. Zeeb 	ic = ni->ni_ic;
38779fb91463SBjoern A. Zeeb 	lhw = ic->ic_softc;
38789fb91463SBjoern A. Zeeb 
38799fb91463SBjoern A. Zeeb 	IMPROVE_HT();
38809fb91463SBjoern A. Zeeb 
38819fb91463SBjoern A. Zeeb 	return (lhw->ic_ampdu_enable(ni, tap));
38829fb91463SBjoern A. Zeeb }
38839fb91463SBjoern A. Zeeb 
38849fb91463SBjoern A. Zeeb static int
38859fb91463SBjoern A. Zeeb lkpi_ic_addba_request(struct ieee80211_node *ni, struct ieee80211_tx_ampdu *tap,
38869fb91463SBjoern A. Zeeb     int dialogtoken, int baparamset, int batimeout)
38879fb91463SBjoern A. Zeeb {
38889fb91463SBjoern A. Zeeb 	struct ieee80211com *ic;
38899fb91463SBjoern A. Zeeb 	struct lkpi_hw *lhw;
38909fb91463SBjoern A. Zeeb 
38919fb91463SBjoern A. Zeeb 	ic = ni->ni_ic;
38929fb91463SBjoern A. Zeeb 	lhw = ic->ic_softc;
38939fb91463SBjoern A. Zeeb 
38949fb91463SBjoern A. Zeeb 	IMPROVE_HT();
38959fb91463SBjoern A. Zeeb 
38969fb91463SBjoern A. Zeeb 	return (lhw->ic_addba_request(ni, tap, dialogtoken, baparamset, batimeout));
38979fb91463SBjoern A. Zeeb }
38989fb91463SBjoern A. Zeeb 
38999fb91463SBjoern A. Zeeb static int
39009fb91463SBjoern A. Zeeb lkpi_ic_addba_response(struct ieee80211_node *ni, struct ieee80211_tx_ampdu *tap,
39019fb91463SBjoern A. Zeeb     int status, int baparamset, int batimeout)
39029fb91463SBjoern A. Zeeb {
39039fb91463SBjoern A. Zeeb 	struct ieee80211com *ic;
39049fb91463SBjoern A. Zeeb 	struct lkpi_hw *lhw;
39059fb91463SBjoern A. Zeeb 
39069fb91463SBjoern A. Zeeb 	ic = ni->ni_ic;
39079fb91463SBjoern A. Zeeb 	lhw = ic->ic_softc;
39089fb91463SBjoern A. Zeeb 
39099fb91463SBjoern A. Zeeb 	IMPROVE_HT();
39109fb91463SBjoern A. Zeeb 
39119fb91463SBjoern A. Zeeb 	return (lhw->ic_addba_response(ni, tap, status, baparamset, batimeout));
39129fb91463SBjoern A. Zeeb }
39139fb91463SBjoern A. Zeeb 
39149fb91463SBjoern A. Zeeb static void
39159fb91463SBjoern A. Zeeb lkpi_ic_addba_stop(struct ieee80211_node *ni, struct ieee80211_tx_ampdu *tap)
39169fb91463SBjoern A. Zeeb {
39179fb91463SBjoern A. Zeeb 	struct ieee80211com *ic;
39189fb91463SBjoern A. Zeeb 	struct lkpi_hw *lhw;
39199fb91463SBjoern A. Zeeb 
39209fb91463SBjoern A. Zeeb 	ic = ni->ni_ic;
39219fb91463SBjoern A. Zeeb 	lhw = ic->ic_softc;
39229fb91463SBjoern A. Zeeb 
39239fb91463SBjoern A. Zeeb 	IMPROVE_HT();
39249fb91463SBjoern A. Zeeb 
39259fb91463SBjoern A. Zeeb 	lhw->ic_addba_stop(ni, tap);
39269fb91463SBjoern A. Zeeb }
39279fb91463SBjoern A. Zeeb 
39289fb91463SBjoern A. Zeeb static void
39299fb91463SBjoern A. Zeeb lkpi_ic_addba_response_timeout(struct ieee80211_node *ni, struct ieee80211_tx_ampdu *tap)
39309fb91463SBjoern A. Zeeb {
39319fb91463SBjoern A. Zeeb 	struct ieee80211com *ic;
39329fb91463SBjoern A. Zeeb 	struct lkpi_hw *lhw;
39339fb91463SBjoern A. Zeeb 
39349fb91463SBjoern A. Zeeb 	ic = ni->ni_ic;
39359fb91463SBjoern A. Zeeb 	lhw = ic->ic_softc;
39369fb91463SBjoern A. Zeeb 
39379fb91463SBjoern A. Zeeb 	IMPROVE_HT();
39389fb91463SBjoern A. Zeeb 
39399fb91463SBjoern A. Zeeb 	lhw->ic_addba_response_timeout(ni, tap);
39409fb91463SBjoern A. Zeeb }
39419fb91463SBjoern A. Zeeb 
39429fb91463SBjoern A. Zeeb static void
39439fb91463SBjoern A. Zeeb lkpi_ic_bar_response(struct ieee80211_node *ni, struct ieee80211_tx_ampdu *tap,
39449fb91463SBjoern A. Zeeb     int status)
39459fb91463SBjoern A. Zeeb {
39469fb91463SBjoern A. Zeeb 	struct ieee80211com *ic;
39479fb91463SBjoern A. Zeeb 	struct lkpi_hw *lhw;
39489fb91463SBjoern A. Zeeb 
39499fb91463SBjoern A. Zeeb 	ic = ni->ni_ic;
39509fb91463SBjoern A. Zeeb 	lhw = ic->ic_softc;
39519fb91463SBjoern A. Zeeb 
39529fb91463SBjoern A. Zeeb 	IMPROVE_HT();
39539fb91463SBjoern A. Zeeb 
39549fb91463SBjoern A. Zeeb 	lhw->ic_bar_response(ni, tap, status);
39559fb91463SBjoern A. Zeeb }
39569fb91463SBjoern A. Zeeb 
39579fb91463SBjoern A. Zeeb static int
39589fb91463SBjoern A. Zeeb lkpi_ic_ampdu_rx_start(struct ieee80211_node *ni, struct ieee80211_rx_ampdu *rap,
39599fb91463SBjoern A. Zeeb     int baparamset, int batimeout, int baseqctl)
39609fb91463SBjoern A. Zeeb {
39619fb91463SBjoern A. Zeeb 	struct ieee80211com *ic;
39629fb91463SBjoern A. Zeeb 	struct lkpi_hw *lhw;
39639fb91463SBjoern A. Zeeb 	struct ieee80211_hw *hw;
39649fb91463SBjoern A. Zeeb 	struct ieee80211vap *vap;
39659fb91463SBjoern A. Zeeb 	struct lkpi_vif *lvif;
39669fb91463SBjoern A. Zeeb 	struct ieee80211_vif *vif;
39679fb91463SBjoern A. Zeeb 	struct lkpi_sta *lsta;
39689fb91463SBjoern A. Zeeb         struct ieee80211_sta *sta;
39699fb91463SBjoern A. Zeeb 	struct ieee80211_ampdu_params params;
39709fb91463SBjoern A. Zeeb 	int error;
39719fb91463SBjoern A. Zeeb 
39729fb91463SBjoern A. Zeeb 	ic = ni->ni_ic;
39739fb91463SBjoern A. Zeeb 	lhw = ic->ic_softc;
39749fb91463SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
39759fb91463SBjoern A. Zeeb 	vap = ni->ni_vap;
39769fb91463SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
39779fb91463SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
39789fb91463SBjoern A. Zeeb 	lsta = ni->ni_drv_data;
39799fb91463SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
39809fb91463SBjoern A. Zeeb 
39819fb91463SBjoern A. Zeeb 	params.sta = sta;
39829fb91463SBjoern A. Zeeb 	params.action = IEEE80211_AMPDU_RX_START;
39839fb91463SBjoern A. Zeeb 	params.buf_size = _IEEE80211_MASKSHIFT(le16toh(baparamset), IEEE80211_BAPS_BUFSIZ);
39849fb91463SBjoern A. Zeeb 	if (params.buf_size == 0)
39859fb91463SBjoern A. Zeeb 		params.buf_size = IEEE80211_MAX_AMPDU_BUF_HT;
39869fb91463SBjoern A. Zeeb 	else
39879fb91463SBjoern A. Zeeb 		params.buf_size = min(params.buf_size, IEEE80211_MAX_AMPDU_BUF_HT);
39889fb91463SBjoern A. Zeeb 	if (params.buf_size > hw->max_rx_aggregation_subframes)
39899fb91463SBjoern A. Zeeb 		params.buf_size = hw->max_rx_aggregation_subframes;
39909fb91463SBjoern A. Zeeb 	params.timeout = le16toh(batimeout);
39919fb91463SBjoern A. Zeeb 	params.ssn = _IEEE80211_MASKSHIFT(le16toh(baseqctl), IEEE80211_BASEQ_START);
39929fb91463SBjoern A. Zeeb 	params.tid = _IEEE80211_MASKSHIFT(le16toh(baparamset), IEEE80211_BAPS_TID);
39939fb91463SBjoern A. Zeeb 	params.amsdu = false;
39949fb91463SBjoern A. Zeeb 
39959fb91463SBjoern A. Zeeb 	IMPROVE_HT("Do we need to distinguish based on SUPPORTS_REORDERING_BUFFER?");
39969fb91463SBjoern A. Zeeb 
39979fb91463SBjoern A. Zeeb 	/* This may call kalloc.  Make sure we can sleep. */
39989fb91463SBjoern A. Zeeb 	error = lkpi_80211_mo_ampdu_action(hw, vif, &params);
39999fb91463SBjoern A. Zeeb 	if (error != 0) {
40009fb91463SBjoern A. Zeeb 		ic_printf(ic, "%s: mo_ampdu_action returned %d. ni %p rap %p\n",
40019fb91463SBjoern A. Zeeb 		    __func__, error, ni, rap);
40029fb91463SBjoern A. Zeeb 		return (error);
40039fb91463SBjoern A. Zeeb 	}
40049fb91463SBjoern A. Zeeb 	IMPROVE_HT("net80211 is missing the error check on return and assumes success");
40059fb91463SBjoern A. Zeeb 
40069fb91463SBjoern A. Zeeb 	error = lhw->ic_ampdu_rx_start(ni, rap, baparamset, batimeout, baseqctl);
40079fb91463SBjoern A. Zeeb 	return (error);
40089fb91463SBjoern A. Zeeb }
40099fb91463SBjoern A. Zeeb 
40109fb91463SBjoern A. Zeeb static void
40119fb91463SBjoern A. Zeeb lkpi_ic_ampdu_rx_stop(struct ieee80211_node *ni, struct ieee80211_rx_ampdu *rap)
40129fb91463SBjoern A. Zeeb {
40139fb91463SBjoern A. Zeeb 	struct ieee80211com *ic;
40149fb91463SBjoern A. Zeeb 	struct lkpi_hw *lhw;
40159fb91463SBjoern A. Zeeb 	struct ieee80211_hw *hw;
40169fb91463SBjoern A. Zeeb 	struct ieee80211vap *vap;
40179fb91463SBjoern A. Zeeb 	struct lkpi_vif *lvif;
40189fb91463SBjoern A. Zeeb 	struct ieee80211_vif *vif;
40199fb91463SBjoern A. Zeeb 	struct lkpi_sta *lsta;
40209fb91463SBjoern A. Zeeb         struct ieee80211_sta *sta;
40219fb91463SBjoern A. Zeeb 	struct ieee80211_ampdu_params params;
40229fb91463SBjoern A. Zeeb 	int error;
40239fb91463SBjoern A. Zeeb 	uint8_t tid;
40249fb91463SBjoern A. Zeeb 
40259fb91463SBjoern A. Zeeb 	ic = ni->ni_ic;
40269fb91463SBjoern A. Zeeb 	lhw = ic->ic_softc;
40279fb91463SBjoern A. Zeeb 
40289fb91463SBjoern A. Zeeb 	/*
40299fb91463SBjoern A. Zeeb 	 * We should not (cannot) call into mac80211 ops with AMPDU_RX_STOP if
40309fb91463SBjoern A. Zeeb 	 * we did not START.  Some drivers pass it down to firmware which will
40319fb91463SBjoern A. Zeeb 	 * simply barf and net80211 calls ieee80211_ht_node_cleanup() from
40329fb91463SBjoern A. Zeeb 	 * ieee80211_ht_node_init() amongst others which will iterate over all
40339fb91463SBjoern A. Zeeb 	 * tid and call ic_ampdu_rx_stop() unconditionally.
40349fb91463SBjoern A. Zeeb 	 * XXX net80211 should probably be more "gentle" in these cases and
40359fb91463SBjoern A. Zeeb 	 * track some state itself.
40369fb91463SBjoern A. Zeeb 	 */
40379fb91463SBjoern A. Zeeb 	if ((rap->rxa_flags & IEEE80211_AGGR_RUNNING) == 0)
40389fb91463SBjoern A. Zeeb 		goto net80211_only;
40399fb91463SBjoern A. Zeeb 
40409fb91463SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
40419fb91463SBjoern A. Zeeb 	vap = ni->ni_vap;
40429fb91463SBjoern A. Zeeb 	lvif = VAP_TO_LVIF(vap);
40439fb91463SBjoern A. Zeeb 	vif = LVIF_TO_VIF(lvif);
40449fb91463SBjoern A. Zeeb 	lsta = ni->ni_drv_data;
40459fb91463SBjoern A. Zeeb 	sta = LSTA_TO_STA(lsta);
40469fb91463SBjoern A. Zeeb 
40479fb91463SBjoern A. Zeeb 	IMPROVE_HT("This really should be passed from ht_recv_action_ba_delba.");
40489fb91463SBjoern A. Zeeb 	for (tid = 0; tid < WME_NUM_TID; tid++) {
40499fb91463SBjoern A. Zeeb 		if (&ni->ni_rx_ampdu[tid] == rap)
40509fb91463SBjoern A. Zeeb 			break;
40519fb91463SBjoern A. Zeeb 	}
40529fb91463SBjoern A. Zeeb 
40539fb91463SBjoern A. Zeeb 	params.sta = sta;
40549fb91463SBjoern A. Zeeb 	params.action = IEEE80211_AMPDU_RX_STOP;
40559fb91463SBjoern A. Zeeb 	params.buf_size = 0;
40569fb91463SBjoern A. Zeeb 	params.timeout = 0;
40579fb91463SBjoern A. Zeeb 	params.ssn = 0;
40589fb91463SBjoern A. Zeeb 	params.tid = tid;
40599fb91463SBjoern A. Zeeb 	params.amsdu = false;
40609fb91463SBjoern A. Zeeb 
40619fb91463SBjoern A. Zeeb 	error = lkpi_80211_mo_ampdu_action(hw, vif, &params);
40629fb91463SBjoern A. Zeeb 	if (error != 0)
40639fb91463SBjoern A. Zeeb 		ic_printf(ic, "%s: mo_ampdu_action returned %d. ni %p rap %p\n",
40649fb91463SBjoern A. Zeeb 		    __func__, error, ni, rap);
40659fb91463SBjoern A. Zeeb 
40669fb91463SBjoern A. Zeeb net80211_only:
40679fb91463SBjoern A. Zeeb 	lhw->ic_ampdu_rx_stop(ni, rap);
40689fb91463SBjoern A. Zeeb }
40699fb91463SBjoern A. Zeeb #endif
40709fb91463SBjoern A. Zeeb 
40719fb91463SBjoern A. Zeeb static void
40729fb91463SBjoern A. Zeeb lkpi_ic_getradiocaps_ht(struct ieee80211com *ic, struct ieee80211_hw *hw,
40739fb91463SBjoern A. Zeeb     uint8_t *bands, int *chan_flags, enum nl80211_band band)
40749fb91463SBjoern A. Zeeb {
40759fb91463SBjoern A. Zeeb #ifdef LKPI_80211_HT
40769fb91463SBjoern A. Zeeb 	struct ieee80211_sta_ht_cap *ht_cap;
40779fb91463SBjoern A. Zeeb 
40789fb91463SBjoern A. Zeeb 	ht_cap = &hw->wiphy->bands[band]->ht_cap;
40799fb91463SBjoern A. Zeeb 	if (!ht_cap->ht_supported)
40809fb91463SBjoern A. Zeeb 		return;
40819fb91463SBjoern A. Zeeb 
40829fb91463SBjoern A. Zeeb 	switch (band) {
40839fb91463SBjoern A. Zeeb 	case NL80211_BAND_2GHZ:
40849fb91463SBjoern A. Zeeb 		setbit(bands, IEEE80211_MODE_11NG);
40859fb91463SBjoern A. Zeeb 		break;
40869fb91463SBjoern A. Zeeb 	case NL80211_BAND_5GHZ:
40879fb91463SBjoern A. Zeeb 		setbit(bands, IEEE80211_MODE_11NA);
40889fb91463SBjoern A. Zeeb 		break;
40899fb91463SBjoern A. Zeeb 	default:
40909fb91463SBjoern A. Zeeb 		IMPROVE("Unsupported band %d", band);
40919fb91463SBjoern A. Zeeb 		return;
40929fb91463SBjoern A. Zeeb 	}
40939fb91463SBjoern A. Zeeb 
40949fb91463SBjoern A. Zeeb 	ic->ic_htcaps = IEEE80211_HTC_HT;	/* HT operation */
40959fb91463SBjoern A. Zeeb 
40969fb91463SBjoern A. Zeeb 	/*
40979fb91463SBjoern A. Zeeb 	 * Rather than manually checking each flag and
40989fb91463SBjoern A. Zeeb 	 * translating IEEE80211_HT_CAP_ to IEEE80211_HTCAP_,
40999fb91463SBjoern A. Zeeb 	 * simply copy the 16bits.
41009fb91463SBjoern A. Zeeb 	 */
41019fb91463SBjoern A. Zeeb 	ic->ic_htcaps |= ht_cap->cap;
41029fb91463SBjoern A. Zeeb 
41039fb91463SBjoern A. Zeeb 	/* Then deal with the other flags. */
41049fb91463SBjoern A. Zeeb 	if (ieee80211_hw_check(hw, AMPDU_AGGREGATION))
41059fb91463SBjoern A. Zeeb 		ic->ic_htcaps |= IEEE80211_HTC_AMPDU;
41069fb91463SBjoern A. Zeeb #ifdef __notyet__
41079fb91463SBjoern A. Zeeb 	if (ieee80211_hw_check(hw, TX_AMSDU))
41089fb91463SBjoern A. Zeeb 		ic->ic_htcaps |= IEEE80211_HTC_AMSDU;
41099fb91463SBjoern A. Zeeb 	if (ieee80211_hw_check(hw, SUPPORTS_AMSDU_IN_AMPDU))
41109fb91463SBjoern A. Zeeb 		ic->ic_htcaps |= (IEEE80211_HTC_RX_AMSDU_AMPDU |
41119fb91463SBjoern A. Zeeb 		    IEEE80211_HTC_TX_AMSDU_AMPDU);
41129fb91463SBjoern A. Zeeb #endif
41139fb91463SBjoern A. Zeeb 
41149fb91463SBjoern A. Zeeb 	IMPROVE("PS, ampdu_*, ht_cap.mcs.tx_params, ...");
41159fb91463SBjoern A. Zeeb 	ic->ic_htcaps |= IEEE80211_HTCAP_SMPS_OFF;
41169fb91463SBjoern A. Zeeb 
41179fb91463SBjoern A. Zeeb 	/* Only add HT40 channels if supported. */
41189fb91463SBjoern A. Zeeb 	if ((ic->ic_htcaps & IEEE80211_HTCAP_CHWIDTH40) != 0 &&
41199fb91463SBjoern A. Zeeb 	    chan_flags != NULL)
41209fb91463SBjoern A. Zeeb 		*chan_flags |= NET80211_CBW_FLAG_HT40;
41219fb91463SBjoern A. Zeeb #endif
41229fb91463SBjoern A. Zeeb }
41239fb91463SBjoern A. Zeeb 
41246b4cac81SBjoern A. Zeeb static void
41256b4cac81SBjoern A. Zeeb lkpi_ic_getradiocaps(struct ieee80211com *ic, int maxchan,
41266b4cac81SBjoern A. Zeeb     int *n, struct ieee80211_channel *c)
41276b4cac81SBjoern A. Zeeb {
41286b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
41296b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
41306b4cac81SBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel *channels;
41316b4cac81SBjoern A. Zeeb 	uint8_t bands[IEEE80211_MODE_BYTES];
41326b4cac81SBjoern A. Zeeb 	int chan_flags, error, i, nchans;
41336b4cac81SBjoern A. Zeeb 
41346b4cac81SBjoern A. Zeeb 	/* Channels */
41356b4cac81SBjoern A. Zeeb 	lhw = ic->ic_softc;
41366b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
41376b4cac81SBjoern A. Zeeb 
41386b4cac81SBjoern A. Zeeb 	/* NL80211_BAND_2GHZ */
41396b4cac81SBjoern A. Zeeb 	nchans = 0;
41406b4cac81SBjoern A. Zeeb 	if (hw->wiphy->bands[NL80211_BAND_2GHZ] != NULL)
41416b4cac81SBjoern A. Zeeb 		nchans = hw->wiphy->bands[NL80211_BAND_2GHZ]->n_channels;
41426b4cac81SBjoern A. Zeeb 	if (nchans > 0) {
41436b4cac81SBjoern A. Zeeb 		memset(bands, 0, sizeof(bands));
41446b4cac81SBjoern A. Zeeb 		chan_flags = 0;
41456b4cac81SBjoern A. Zeeb 		setbit(bands, IEEE80211_MODE_11B);
41466b4cac81SBjoern A. Zeeb 		/* XXX-BZ unclear how to check for 11g. */
41479fb91463SBjoern A. Zeeb 
41489fb91463SBjoern A. Zeeb 		IMPROVE("the bitrates may have flags?");
41496b4cac81SBjoern A. Zeeb 		setbit(bands, IEEE80211_MODE_11G);
41509fb91463SBjoern A. Zeeb 
41519fb91463SBjoern A. Zeeb 		lkpi_ic_getradiocaps_ht(ic, hw, bands, &chan_flags,
41529fb91463SBjoern A. Zeeb 		    NL80211_BAND_2GHZ);
41536b4cac81SBjoern A. Zeeb 
41546b4cac81SBjoern A. Zeeb 		channels = hw->wiphy->bands[NL80211_BAND_2GHZ]->channels;
4155cee56e77SBjoern A. Zeeb 		for (i = 0; i < nchans && *n < maxchan; i++) {
41566b4cac81SBjoern A. Zeeb 			uint32_t nflags = 0;
41576b4cac81SBjoern A. Zeeb 			int cflags = chan_flags;
41586b4cac81SBjoern A. Zeeb 
41596b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_DISABLED) {
41603f0083c4SBjoern A. Zeeb 				ic_printf(ic, "%s: Skipping disabled chan "
41613f0083c4SBjoern A. Zeeb 				    "[%u/%u/%#x]\n", __func__,
41626b4cac81SBjoern A. Zeeb 				    channels[i].hw_value,
41636b4cac81SBjoern A. Zeeb 				    channels[i].center_freq, channels[i].flags);
41646b4cac81SBjoern A. Zeeb 				continue;
41656b4cac81SBjoern A. Zeeb 			}
41666b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_NO_IR)
41676b4cac81SBjoern A. Zeeb 				nflags |= (IEEE80211_CHAN_NOADHOC|IEEE80211_CHAN_PASSIVE);
41686b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_RADAR)
41696b4cac81SBjoern A. Zeeb 				nflags |= IEEE80211_CHAN_DFS;
41706b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_NO_160MHZ)
41716b4cac81SBjoern A. Zeeb 				cflags &= ~(NET80211_CBW_FLAG_VHT160|NET80211_CBW_FLAG_VHT80P80);
41726b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_NO_80MHZ)
41736b4cac81SBjoern A. Zeeb 				cflags &= ~NET80211_CBW_FLAG_VHT80;
41746b4cac81SBjoern A. Zeeb 			/* XXX how to map the remaining enum ieee80211_channel_flags? */
41756b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_NO_HT40)
41766b4cac81SBjoern A. Zeeb 				cflags &= ~NET80211_CBW_FLAG_HT40;
41776b4cac81SBjoern A. Zeeb 
41786b4cac81SBjoern A. Zeeb 			error = ieee80211_add_channel_cbw(c, maxchan, n,
41796b4cac81SBjoern A. Zeeb 			    channels[i].hw_value, channels[i].center_freq,
41806b4cac81SBjoern A. Zeeb 			    channels[i].max_power,
41815856761fSBjoern A. Zeeb 			    nflags, bands, cflags);
4182cee56e77SBjoern A. Zeeb 			/* net80211::ENOBUFS: *n >= maxchans */
4183cee56e77SBjoern A. Zeeb 			if (error != 0 && error != ENOBUFS)
41843f0083c4SBjoern A. Zeeb 				ic_printf(ic, "%s: Adding chan %u/%u/%#x/%#x/%#x/%#x "
41853f0083c4SBjoern A. Zeeb 				    "returned error %d\n",
41866b4cac81SBjoern A. Zeeb 				    __func__, channels[i].hw_value,
41876b4cac81SBjoern A. Zeeb 				    channels[i].center_freq, channels[i].flags,
41886b4cac81SBjoern A. Zeeb 				    nflags, chan_flags, cflags, error);
4189cee56e77SBjoern A. Zeeb 			if (error != 0)
41906b4cac81SBjoern A. Zeeb 				break;
41916b4cac81SBjoern A. Zeeb 		}
41926b4cac81SBjoern A. Zeeb 	}
41936b4cac81SBjoern A. Zeeb 
41946b4cac81SBjoern A. Zeeb 	/* NL80211_BAND_5GHZ */
41956b4cac81SBjoern A. Zeeb 	nchans = 0;
41966b4cac81SBjoern A. Zeeb 	if (hw->wiphy->bands[NL80211_BAND_5GHZ] != NULL)
41976b4cac81SBjoern A. Zeeb 		nchans = hw->wiphy->bands[NL80211_BAND_5GHZ]->n_channels;
41986b4cac81SBjoern A. Zeeb 	if (nchans > 0) {
41996b4cac81SBjoern A. Zeeb 		memset(bands, 0, sizeof(bands));
42006b4cac81SBjoern A. Zeeb 		chan_flags = 0;
42016b4cac81SBjoern A. Zeeb 		setbit(bands, IEEE80211_MODE_11A);
42029fb91463SBjoern A. Zeeb 
42039fb91463SBjoern A. Zeeb 		lkpi_ic_getradiocaps_ht(ic, hw, bands, &chan_flags,
42049fb91463SBjoern A. Zeeb 		    NL80211_BAND_5GHZ);
42059fb91463SBjoern A. Zeeb 
42069fb91463SBjoern A. Zeeb #ifdef LKPI_80211_VHT
42076b4cac81SBjoern A. Zeeb 		if (hw->wiphy->bands[NL80211_BAND_5GHZ]->vht_cap.vht_supported){
42086b4cac81SBjoern A. Zeeb 
42096b4cac81SBjoern A. Zeeb 			ic->ic_flags_ext |= IEEE80211_FEXT_VHT;
4210562adbe1SBjoern A. Zeeb 			ic->ic_vht_cap.vht_cap_info =
42116b4cac81SBjoern A. Zeeb 			    hw->wiphy->bands[NL80211_BAND_5GHZ]->vht_cap.cap;
42126b4cac81SBjoern A. Zeeb 
42136b4cac81SBjoern A. Zeeb 			setbit(bands, IEEE80211_MODE_VHT_5GHZ);
42146b4cac81SBjoern A. Zeeb 			chan_flags |= NET80211_CBW_FLAG_VHT80;
42156b4cac81SBjoern A. Zeeb 			if (IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_IS_160MHZ(
4216562adbe1SBjoern A. Zeeb 			    ic->ic_vht_cap.vht_cap_info))
42176b4cac81SBjoern A. Zeeb 				chan_flags |= NET80211_CBW_FLAG_VHT160;
42186b4cac81SBjoern A. Zeeb 			if (IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_IS_160_80P80MHZ(
4219562adbe1SBjoern A. Zeeb 			    ic->ic_vht_cap.vht_cap_info))
42206b4cac81SBjoern A. Zeeb 				chan_flags |= NET80211_CBW_FLAG_VHT80P80;
42216b4cac81SBjoern A. Zeeb 		}
42226b4cac81SBjoern A. Zeeb #endif
42236b4cac81SBjoern A. Zeeb 
42246b4cac81SBjoern A. Zeeb 		channels = hw->wiphy->bands[NL80211_BAND_5GHZ]->channels;
4225cee56e77SBjoern A. Zeeb 		for (i = 0; i < nchans && *n < maxchan; i++) {
42266b4cac81SBjoern A. Zeeb 			uint32_t nflags = 0;
42276b4cac81SBjoern A. Zeeb 			int cflags = chan_flags;
42286b4cac81SBjoern A. Zeeb 
42296b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_DISABLED) {
42303f0083c4SBjoern A. Zeeb 				ic_printf(ic, "%s: Skipping disabled chan "
42313f0083c4SBjoern A. Zeeb 				    "[%u/%u/%#x]\n", __func__,
42326b4cac81SBjoern A. Zeeb 				    channels[i].hw_value,
42336b4cac81SBjoern A. Zeeb 				    channels[i].center_freq, channels[i].flags);
42346b4cac81SBjoern A. Zeeb 				continue;
42356b4cac81SBjoern A. Zeeb 			}
42366b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_NO_IR)
42376b4cac81SBjoern A. Zeeb 				nflags |= (IEEE80211_CHAN_NOADHOC|IEEE80211_CHAN_PASSIVE);
42386b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_RADAR)
42396b4cac81SBjoern A. Zeeb 				nflags |= IEEE80211_CHAN_DFS;
42406b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_NO_160MHZ)
42416b4cac81SBjoern A. Zeeb 				cflags &= ~(NET80211_CBW_FLAG_VHT160|NET80211_CBW_FLAG_VHT80P80);
42426b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_NO_80MHZ)
42436b4cac81SBjoern A. Zeeb 				cflags &= ~NET80211_CBW_FLAG_VHT80;
42446b4cac81SBjoern A. Zeeb 			/* XXX hwo to map the remaining enum ieee80211_channel_flags? */
42456b4cac81SBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_NO_HT40)
42466b4cac81SBjoern A. Zeeb 				cflags &= ~NET80211_CBW_FLAG_HT40;
42476b4cac81SBjoern A. Zeeb 
42486b4cac81SBjoern A. Zeeb 			error = ieee80211_add_channel_cbw(c, maxchan, n,
42496b4cac81SBjoern A. Zeeb 			    channels[i].hw_value, channels[i].center_freq,
42506b4cac81SBjoern A. Zeeb 			    channels[i].max_power,
42515856761fSBjoern A. Zeeb 			    nflags, bands, cflags);
4252cee56e77SBjoern A. Zeeb 			/* net80211::ENOBUFS: *n >= maxchans */
4253cee56e77SBjoern A. Zeeb 			if (error != 0 && error != ENOBUFS)
42543f0083c4SBjoern A. Zeeb 				ic_printf(ic, "%s: Adding chan %u/%u/%#x/%#x/%#x/%#x "
42553f0083c4SBjoern A. Zeeb 				    "returned error %d\n",
42566b4cac81SBjoern A. Zeeb 				    __func__, channels[i].hw_value,
42576b4cac81SBjoern A. Zeeb 				    channels[i].center_freq, channels[i].flags,
42586b4cac81SBjoern A. Zeeb 				    nflags, chan_flags, cflags, error);
4259cee56e77SBjoern A. Zeeb 			if (error != 0)
42606b4cac81SBjoern A. Zeeb 				break;
42616b4cac81SBjoern A. Zeeb 		}
42626b4cac81SBjoern A. Zeeb 	}
42636b4cac81SBjoern A. Zeeb }
42646b4cac81SBjoern A. Zeeb 
42656b4cac81SBjoern A. Zeeb static void *
42666b4cac81SBjoern A. Zeeb lkpi_ieee80211_ifalloc(void)
42676b4cac81SBjoern A. Zeeb {
42686b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
42696b4cac81SBjoern A. Zeeb 
42706b4cac81SBjoern A. Zeeb 	ic = malloc(sizeof(*ic), M_LKPI80211, M_WAITOK | M_ZERO);
42716b4cac81SBjoern A. Zeeb 	if (ic == NULL)
42726b4cac81SBjoern A. Zeeb 		return (NULL);
42736b4cac81SBjoern A. Zeeb 
42746b4cac81SBjoern A. Zeeb 	/* Setting these happens later when we have device information. */
42756b4cac81SBjoern A. Zeeb 	ic->ic_softc = NULL;
42766b4cac81SBjoern A. Zeeb 	ic->ic_name = "linuxkpi";
42776b4cac81SBjoern A. Zeeb 
42786b4cac81SBjoern A. Zeeb 	return (ic);
42796b4cac81SBjoern A. Zeeb }
42806b4cac81SBjoern A. Zeeb 
42816b4cac81SBjoern A. Zeeb struct ieee80211_hw *
42826b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_alloc_hw(size_t priv_len, const struct ieee80211_ops *ops)
42836b4cac81SBjoern A. Zeeb {
42846b4cac81SBjoern A. Zeeb 	struct ieee80211_hw *hw;
42856b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
42866b4cac81SBjoern A. Zeeb 	struct wiphy *wiphy;
4287a5ae63edSBjoern A. Zeeb 	int ac;
42886b4cac81SBjoern A. Zeeb 
42896b4cac81SBjoern A. Zeeb 	/* Get us and the driver data also allocated. */
42906b4cac81SBjoern A. Zeeb 	wiphy = wiphy_new(&linuxkpi_mac80211cfgops, sizeof(*lhw) + priv_len);
42916b4cac81SBjoern A. Zeeb 	if (wiphy == NULL)
42926b4cac81SBjoern A. Zeeb 		return (NULL);
42936b4cac81SBjoern A. Zeeb 
42946b4cac81SBjoern A. Zeeb 	lhw = wiphy_priv(wiphy);
42956b4cac81SBjoern A. Zeeb 	lhw->ops = ops;
4296652e22d3SBjoern A. Zeeb 
42978ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_LOCK_INIT(lhw);
42988ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_LOCK_INIT(lhw);
4299eac3646fSBjoern A. Zeeb 	LKPI_80211_LHW_TXQ_LOCK_INIT(lhw);
43008891c455SBjoern A. Zeeb 	sx_init_flags(&lhw->lvif_sx, "lhw-lvif", SX_RECURSE | SX_DUPOK);
43016b4cac81SBjoern A. Zeeb 	TAILQ_INIT(&lhw->lvif_head);
4302a5ae63edSBjoern A. Zeeb 	for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
4303a5ae63edSBjoern A. Zeeb 		lhw->txq_generation[ac] = 1;
4304a5ae63edSBjoern A. Zeeb 		TAILQ_INIT(&lhw->scheduled_txqs[ac]);
4305a5ae63edSBjoern A. Zeeb 	}
43066b4cac81SBjoern A. Zeeb 
4307759a996dSBjoern A. Zeeb 	/* Deferred RX path. */
4308759a996dSBjoern A. Zeeb 	LKPI_80211_LHW_RXQ_LOCK_INIT(lhw);
4309759a996dSBjoern A. Zeeb 	TASK_INIT(&lhw->rxq_task, 0, lkpi_80211_lhw_rxq_task, lhw);
4310759a996dSBjoern A. Zeeb 	mbufq_init(&lhw->rxq, IFQ_MAXLEN);
4311759a996dSBjoern A. Zeeb 	lhw->rxq_stopped = false;
4312759a996dSBjoern A. Zeeb 
43136b4cac81SBjoern A. Zeeb 	/*
43146b4cac81SBjoern A. Zeeb 	 * XXX-BZ TODO make sure there is a "_null" function to all ops
43156b4cac81SBjoern A. Zeeb 	 * not initialized.
43166b4cac81SBjoern A. Zeeb 	 */
43176b4cac81SBjoern A. Zeeb 	hw = LHW_TO_HW(lhw);
43186b4cac81SBjoern A. Zeeb 	hw->wiphy = wiphy;
4319086be6a8SBjoern A. Zeeb 	hw->conf.flags |= IEEE80211_CONF_IDLE;
43206b4cac81SBjoern A. Zeeb 	hw->priv = (void *)(lhw + 1);
43216b4cac81SBjoern A. Zeeb 
43226b4cac81SBjoern A. Zeeb 	/* BSD Specific. */
43236b4cac81SBjoern A. Zeeb 	lhw->ic = lkpi_ieee80211_ifalloc();
43246b4cac81SBjoern A. Zeeb 	if (lhw->ic == NULL) {
43256b4cac81SBjoern A. Zeeb 		ieee80211_free_hw(hw);
43266b4cac81SBjoern A. Zeeb 		return (NULL);
43276b4cac81SBjoern A. Zeeb 	}
43286b4cac81SBjoern A. Zeeb 
43296b4cac81SBjoern A. Zeeb 	IMPROVE();
43306b4cac81SBjoern A. Zeeb 
43316b4cac81SBjoern A. Zeeb 	return (hw);
43326b4cac81SBjoern A. Zeeb }
43336b4cac81SBjoern A. Zeeb 
43346b4cac81SBjoern A. Zeeb void
43356b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_iffree(struct ieee80211_hw *hw)
43366b4cac81SBjoern A. Zeeb {
43376b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
4338759a996dSBjoern A. Zeeb 	struct mbuf *m;
43396b4cac81SBjoern A. Zeeb 
43406b4cac81SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
43416b4cac81SBjoern A. Zeeb 	free(lhw->ic, M_LKPI80211);
43426b4cac81SBjoern A. Zeeb 	lhw->ic = NULL;
43436b4cac81SBjoern A. Zeeb 
4344759a996dSBjoern A. Zeeb 	/*
4345759a996dSBjoern A. Zeeb 	 * Drain the deferred RX path.
4346759a996dSBjoern A. Zeeb 	 */
4347759a996dSBjoern A. Zeeb 	LKPI_80211_LHW_RXQ_LOCK(lhw);
4348759a996dSBjoern A. Zeeb 	lhw->rxq_stopped = true;
4349759a996dSBjoern A. Zeeb 	LKPI_80211_LHW_RXQ_UNLOCK(lhw);
4350759a996dSBjoern A. Zeeb 
4351759a996dSBjoern A. Zeeb 	/* Drain taskq, won't be restarted due to rxq_stopped being set. */
4352759a996dSBjoern A. Zeeb 	while (taskqueue_cancel(taskqueue_thread, &lhw->rxq_task, NULL) != 0)
4353759a996dSBjoern A. Zeeb 		taskqueue_drain(taskqueue_thread, &lhw->rxq_task);
4354759a996dSBjoern A. Zeeb 
4355759a996dSBjoern A. Zeeb 	/* Flush mbufq (make sure to release ni refs!). */
4356759a996dSBjoern A. Zeeb 	m = mbufq_dequeue(&lhw->rxq);
4357759a996dSBjoern A. Zeeb 	while (m != NULL) {
4358759a996dSBjoern A. Zeeb 		struct m_tag *mtag;
4359759a996dSBjoern A. Zeeb 
4360759a996dSBjoern A. Zeeb 		mtag = m_tag_locate(m, MTAG_ABI_LKPI80211, LKPI80211_TAG_RXNI, NULL);
4361759a996dSBjoern A. Zeeb 		if (mtag != NULL) {
4362759a996dSBjoern A. Zeeb 			struct lkpi_80211_tag_rxni *rxni;
4363759a996dSBjoern A. Zeeb 
4364759a996dSBjoern A. Zeeb 			rxni = (struct lkpi_80211_tag_rxni *)(mtag + 1);
4365759a996dSBjoern A. Zeeb 			ieee80211_free_node(rxni->ni);
4366759a996dSBjoern A. Zeeb 		}
4367759a996dSBjoern A. Zeeb 		m_freem(m);
4368759a996dSBjoern A. Zeeb 		m = mbufq_dequeue(&lhw->rxq);
4369759a996dSBjoern A. Zeeb 	}
4370759a996dSBjoern A. Zeeb 	KASSERT(mbufq_empty(&lhw->rxq), ("%s: lhw %p has rxq len %d != 0\n",
4371759a996dSBjoern A. Zeeb 	    __func__, lhw, mbufq_len(&lhw->rxq)));
4372759a996dSBjoern A. Zeeb 	LKPI_80211_LHW_RXQ_LOCK_DESTROY(lhw);
4373759a996dSBjoern A. Zeeb 
43746b4cac81SBjoern A. Zeeb 	/* Cleanup more of lhw here or in wiphy_free()? */
4375eac3646fSBjoern A. Zeeb 	LKPI_80211_LHW_TXQ_LOCK_DESTROY(lhw);
43768ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_LOCK_DESTROY(lhw);
4377eac3646fSBjoern A. Zeeb 	LKPI_80211_LHW_LOCK_DESTROY(lhw);
4378eac3646fSBjoern A. Zeeb 	sx_destroy(&lhw->lvif_sx);
43796b4cac81SBjoern A. Zeeb 	IMPROVE();
43806b4cac81SBjoern A. Zeeb }
43816b4cac81SBjoern A. Zeeb 
43826b4cac81SBjoern A. Zeeb void
43836b4cac81SBjoern A. Zeeb linuxkpi_set_ieee80211_dev(struct ieee80211_hw *hw, char *name)
43846b4cac81SBjoern A. Zeeb {
43856b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
43866b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
43876b4cac81SBjoern A. Zeeb 
43886b4cac81SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
43896b4cac81SBjoern A. Zeeb 	ic = lhw->ic;
43906b4cac81SBjoern A. Zeeb 
43916b4cac81SBjoern A. Zeeb 	/* Now set a proper name before ieee80211_ifattach(). */
43926b4cac81SBjoern A. Zeeb 	ic->ic_softc = lhw;
43936b4cac81SBjoern A. Zeeb 	ic->ic_name = name;
43946b4cac81SBjoern A. Zeeb 
43956b4cac81SBjoern A. Zeeb 	/* XXX-BZ do we also need to set wiphy name? */
43966b4cac81SBjoern A. Zeeb }
43976b4cac81SBjoern A. Zeeb 
43986b4cac81SBjoern A. Zeeb struct ieee80211_hw *
43996b4cac81SBjoern A. Zeeb linuxkpi_wiphy_to_ieee80211_hw(struct wiphy *wiphy)
44006b4cac81SBjoern A. Zeeb {
44016b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
44026b4cac81SBjoern A. Zeeb 
44036b4cac81SBjoern A. Zeeb 	lhw = wiphy_priv(wiphy);
44046b4cac81SBjoern A. Zeeb 	return (LHW_TO_HW(lhw));
44056b4cac81SBjoern A. Zeeb }
44066b4cac81SBjoern A. Zeeb 
44076b4cac81SBjoern A. Zeeb static void
44086b4cac81SBjoern A. Zeeb lkpi_radiotap_attach(struct lkpi_hw *lhw)
44096b4cac81SBjoern A. Zeeb {
44106b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
44116b4cac81SBjoern A. Zeeb 
44126b4cac81SBjoern A. Zeeb 	ic = lhw->ic;
44136b4cac81SBjoern A. Zeeb 	ieee80211_radiotap_attach(ic,
44146b4cac81SBjoern A. Zeeb 	    &lhw->rtap_tx.wt_ihdr, sizeof(lhw->rtap_tx),
44156b4cac81SBjoern A. Zeeb 	    LKPI_RTAP_TX_FLAGS_PRESENT,
44166b4cac81SBjoern A. Zeeb 	    &lhw->rtap_rx.wr_ihdr, sizeof(lhw->rtap_rx),
44176b4cac81SBjoern A. Zeeb 	    LKPI_RTAP_RX_FLAGS_PRESENT);
44186b4cac81SBjoern A. Zeeb }
44196b4cac81SBjoern A. Zeeb 
44202e183d99SBjoern A. Zeeb int
44216b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_ifattach(struct ieee80211_hw *hw)
44226b4cac81SBjoern A. Zeeb {
44236b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
44246b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
4425c5b96b3eSBjoern A. Zeeb 	int band, i;
44266b4cac81SBjoern A. Zeeb 
44276b4cac81SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
44286b4cac81SBjoern A. Zeeb 	ic = lhw->ic;
44296b4cac81SBjoern A. Zeeb 
4430652e22d3SBjoern A. Zeeb 	/* We do it this late as wiphy->dev should be set for the name. */
4431652e22d3SBjoern A. Zeeb 	lhw->workq = alloc_ordered_workqueue(wiphy_name(hw->wiphy), 0);
4432652e22d3SBjoern A. Zeeb 	if (lhw->workq == NULL)
4433652e22d3SBjoern A. Zeeb 		return (-EAGAIN);
4434652e22d3SBjoern A. Zeeb 
44356b4cac81SBjoern A. Zeeb 	/* XXX-BZ figure this out how they count his... */
44366b4cac81SBjoern A. Zeeb 	if (!is_zero_ether_addr(hw->wiphy->perm_addr)) {
44376b4cac81SBjoern A. Zeeb 		IEEE80211_ADDR_COPY(ic->ic_macaddr,
44386b4cac81SBjoern A. Zeeb 		    hw->wiphy->perm_addr);
44396b4cac81SBjoern A. Zeeb 	} else if (hw->wiphy->n_addresses > 0) {
44406b4cac81SBjoern A. Zeeb 		/* We take the first one. */
44416b4cac81SBjoern A. Zeeb 		IEEE80211_ADDR_COPY(ic->ic_macaddr,
44426b4cac81SBjoern A. Zeeb 		    hw->wiphy->addresses[0].addr);
44436b4cac81SBjoern A. Zeeb 	} else {
44446b4cac81SBjoern A. Zeeb 		ic_printf(ic, "%s: warning, no hardware address!\n", __func__);
44456b4cac81SBjoern A. Zeeb 	}
44466b4cac81SBjoern A. Zeeb 
44473d09d310SBjoern A. Zeeb #ifdef __not_yet__
44483d09d310SBjoern A. Zeeb 	/* See comment in lkpi_80211_txq_tx_one(). */
44496b4cac81SBjoern A. Zeeb 	ic->ic_headroom = hw->extra_tx_headroom;
44503d09d310SBjoern A. Zeeb #endif
44516b4cac81SBjoern A. Zeeb 
44526b4cac81SBjoern A. Zeeb 	ic->ic_phytype = IEEE80211_T_OFDM;	/* not only, but not used */
44536b4cac81SBjoern A. Zeeb 	ic->ic_opmode = IEEE80211_M_STA;
44546b4cac81SBjoern A. Zeeb 
44556b4cac81SBjoern A. Zeeb 	/* Set device capabilities. */
44566b4cac81SBjoern A. Zeeb 	/* XXX-BZ we need to get these from linux80211/drivers and convert. */
44576b4cac81SBjoern A. Zeeb 	ic->ic_caps =
44586b4cac81SBjoern A. Zeeb 	    IEEE80211_C_STA |
44596b4cac81SBjoern A. Zeeb 	    IEEE80211_C_MONITOR |
44606b4cac81SBjoern A. Zeeb 	    IEEE80211_C_WPA |		/* WPA/RSN */
44614a67f1dfSBjoern A. Zeeb #ifdef LKPI_80211_WME
44626b4cac81SBjoern A. Zeeb 	    IEEE80211_C_WME |
44634a67f1dfSBjoern A. Zeeb #endif
44646b4cac81SBjoern A. Zeeb #if 0
44656b4cac81SBjoern A. Zeeb 	    IEEE80211_C_PMGT |
44666b4cac81SBjoern A. Zeeb #endif
44676b4cac81SBjoern A. Zeeb 	    IEEE80211_C_SHSLOT |	/* short slot time supported */
44686b4cac81SBjoern A. Zeeb 	    IEEE80211_C_SHPREAMBLE	/* short preamble supported */
44696b4cac81SBjoern A. Zeeb 	    ;
44706b4cac81SBjoern A. Zeeb #if 0
44716b4cac81SBjoern A. Zeeb 	/* Scanning is a different kind of beast to re-work. */
44726b4cac81SBjoern A. Zeeb 	ic->ic_caps |= IEEE80211_C_BGSCAN;
44736b4cac81SBjoern A. Zeeb #endif
4474cc4e78d5SBjoern A. Zeeb 	if (lhw->ops->hw_scan) {
4475cc4e78d5SBjoern A. Zeeb 		/*
4476cc4e78d5SBjoern A. Zeeb 		 * Advertise full-offload scanning.
4477cc4e78d5SBjoern A. Zeeb 		 *
4478cc4e78d5SBjoern A. Zeeb 		 * Not limiting to SINGLE_SCAN_ON_ALL_BANDS here as otherwise
4479cc4e78d5SBjoern A. Zeeb 		 * we essentially disable hw_scan for all drivers not setting
4480cc4e78d5SBjoern A. Zeeb 		 * the flag.
4481cc4e78d5SBjoern A. Zeeb 		 */
44826b4cac81SBjoern A. Zeeb 		ic->ic_flags_ext |= IEEE80211_FEXT_SCAN_OFFLOAD;
4483a486fbbdSBjoern A. Zeeb 		lhw->scan_flags |= LKPI_LHW_SCAN_HW;
44846b4cac81SBjoern A. Zeeb 	}
44856b4cac81SBjoern A. Zeeb 
4486527687a9SBjoern A. Zeeb 	/*
4487527687a9SBjoern A. Zeeb 	 * The wiphy variables report bitmasks of avail antennas.
4488527687a9SBjoern A. Zeeb 	 * (*get_antenna) get the current bitmask sets which can be
4489527687a9SBjoern A. Zeeb 	 * altered by (*set_antenna) for some drivers.
4490527687a9SBjoern A. Zeeb 	 * XXX-BZ will the count alone do us much good long-term in net80211?
4491527687a9SBjoern A. Zeeb 	 */
4492527687a9SBjoern A. Zeeb 	if (hw->wiphy->available_antennas_rx ||
4493527687a9SBjoern A. Zeeb 	    hw->wiphy->available_antennas_tx) {
4494527687a9SBjoern A. Zeeb 		uint32_t rxs, txs;
4495527687a9SBjoern A. Zeeb 
4496527687a9SBjoern A. Zeeb 		if (lkpi_80211_mo_get_antenna(hw, &txs, &rxs) == 0) {
4497527687a9SBjoern A. Zeeb 			ic->ic_rxstream = bitcount32(rxs);
4498527687a9SBjoern A. Zeeb 			ic->ic_txstream = bitcount32(txs);
4499527687a9SBjoern A. Zeeb 		}
4500527687a9SBjoern A. Zeeb 	}
4501527687a9SBjoern A. Zeeb 
45026b4cac81SBjoern A. Zeeb 	ic->ic_cryptocaps = 0;
4503b35f6cd0SBjoern A. Zeeb #ifdef LKPI_80211_HW_CRYPTO
45046b4cac81SBjoern A. Zeeb 	if (hw->wiphy->n_cipher_suites > 0) {
45056b4cac81SBjoern A. Zeeb 		for (i = 0; i < hw->wiphy->n_cipher_suites; i++)
45066b4cac81SBjoern A. Zeeb 			ic->ic_cryptocaps |= lkpi_l80211_to_net80211_cyphers(
45076b4cac81SBjoern A. Zeeb 			    hw->wiphy->cipher_suites[i]);
45086b4cac81SBjoern A. Zeeb 	}
45096b4cac81SBjoern A. Zeeb #endif
45106b4cac81SBjoern A. Zeeb 
45116b4cac81SBjoern A. Zeeb 	lkpi_ic_getradiocaps(ic, IEEE80211_CHAN_MAX, &ic->ic_nchans,
45126b4cac81SBjoern A. Zeeb 	    ic->ic_channels);
45136b4cac81SBjoern A. Zeeb 
45146b4cac81SBjoern A. Zeeb 	ieee80211_ifattach(ic);
45156b4cac81SBjoern A. Zeeb 
45166b4cac81SBjoern A. Zeeb 	ic->ic_update_mcast = lkpi_ic_update_mcast;
45176b4cac81SBjoern A. Zeeb 	ic->ic_update_promisc = lkpi_ic_update_promisc;
45186b4cac81SBjoern A. Zeeb 	ic->ic_update_chw = lkpi_ic_update_chw;
45196b4cac81SBjoern A. Zeeb 	ic->ic_parent = lkpi_ic_parent;
45206b4cac81SBjoern A. Zeeb 	ic->ic_scan_start = lkpi_ic_scan_start;
45216b4cac81SBjoern A. Zeeb 	ic->ic_scan_end = lkpi_ic_scan_end;
45226b4cac81SBjoern A. Zeeb 	ic->ic_set_channel = lkpi_ic_set_channel;
45236b4cac81SBjoern A. Zeeb 	ic->ic_transmit = lkpi_ic_transmit;
45246b4cac81SBjoern A. Zeeb 	ic->ic_raw_xmit = lkpi_ic_raw_xmit;
45256b4cac81SBjoern A. Zeeb 	ic->ic_vap_create = lkpi_ic_vap_create;
45266b4cac81SBjoern A. Zeeb 	ic->ic_vap_delete = lkpi_ic_vap_delete;
45276b4cac81SBjoern A. Zeeb 	ic->ic_getradiocaps = lkpi_ic_getradiocaps;
45286b4cac81SBjoern A. Zeeb 	ic->ic_wme.wme_update = lkpi_ic_wme_update;
45296b4cac81SBjoern A. Zeeb 
4530a486fbbdSBjoern A. Zeeb 	lhw->ic_scan_curchan = ic->ic_scan_curchan;
4531a486fbbdSBjoern A. Zeeb 	ic->ic_scan_curchan = lkpi_ic_scan_curchan;
4532a486fbbdSBjoern A. Zeeb 	lhw->ic_scan_mindwell = ic->ic_scan_mindwell;
4533a486fbbdSBjoern A. Zeeb 	ic->ic_scan_mindwell = lkpi_ic_scan_mindwell;
4534a486fbbdSBjoern A. Zeeb 
45356b4cac81SBjoern A. Zeeb 	lhw->ic_node_alloc = ic->ic_node_alloc;
45366b4cac81SBjoern A. Zeeb 	ic->ic_node_alloc = lkpi_ic_node_alloc;
45376b4cac81SBjoern A. Zeeb 	lhw->ic_node_init = ic->ic_node_init;
45386b4cac81SBjoern A. Zeeb 	ic->ic_node_init = lkpi_ic_node_init;
45396b4cac81SBjoern A. Zeeb 	lhw->ic_node_cleanup = ic->ic_node_cleanup;
45406b4cac81SBjoern A. Zeeb 	ic->ic_node_cleanup = lkpi_ic_node_cleanup;
45416b4cac81SBjoern A. Zeeb 	lhw->ic_node_free = ic->ic_node_free;
45426b4cac81SBjoern A. Zeeb 	ic->ic_node_free = lkpi_ic_node_free;
45436b4cac81SBjoern A. Zeeb 
45449fb91463SBjoern A. Zeeb #ifdef LKPI_80211_HT
45459fb91463SBjoern A. Zeeb 	lhw->ic_recv_action = ic->ic_recv_action;
45469fb91463SBjoern A. Zeeb 	ic->ic_recv_action = lkpi_ic_recv_action;
45479fb91463SBjoern A. Zeeb 	lhw->ic_send_action = ic->ic_send_action;
45489fb91463SBjoern A. Zeeb 	ic->ic_send_action = lkpi_ic_send_action;
45499fb91463SBjoern A. Zeeb 
45509fb91463SBjoern A. Zeeb 	lhw->ic_ampdu_enable = ic->ic_ampdu_enable;
45519fb91463SBjoern A. Zeeb 	ic->ic_ampdu_enable = lkpi_ic_ampdu_enable;
45529fb91463SBjoern A. Zeeb 
45539fb91463SBjoern A. Zeeb 	lhw->ic_addba_request = ic->ic_addba_request;
45549fb91463SBjoern A. Zeeb 	ic->ic_addba_request = lkpi_ic_addba_request;
45559fb91463SBjoern A. Zeeb 	lhw->ic_addba_response = ic->ic_addba_response;
45569fb91463SBjoern A. Zeeb 	ic->ic_addba_response = lkpi_ic_addba_response;
45579fb91463SBjoern A. Zeeb 	lhw->ic_addba_stop = ic->ic_addba_stop;
45589fb91463SBjoern A. Zeeb 	ic->ic_addba_stop = lkpi_ic_addba_stop;
45599fb91463SBjoern A. Zeeb 	lhw->ic_addba_response_timeout = ic->ic_addba_response_timeout;
45609fb91463SBjoern A. Zeeb 	ic->ic_addba_response_timeout = lkpi_ic_addba_response_timeout;
45619fb91463SBjoern A. Zeeb 
45629fb91463SBjoern A. Zeeb 	lhw->ic_bar_response = ic->ic_bar_response;
45639fb91463SBjoern A. Zeeb 	ic->ic_bar_response = lkpi_ic_bar_response;
45649fb91463SBjoern A. Zeeb 
45659fb91463SBjoern A. Zeeb 	lhw->ic_ampdu_rx_start = ic->ic_ampdu_rx_start;
45669fb91463SBjoern A. Zeeb 	ic->ic_ampdu_rx_start = lkpi_ic_ampdu_rx_start;
45679fb91463SBjoern A. Zeeb 	lhw->ic_ampdu_rx_stop = ic->ic_ampdu_rx_stop;
45689fb91463SBjoern A. Zeeb 	ic->ic_ampdu_rx_stop = lkpi_ic_ampdu_rx_stop;
45699fb91463SBjoern A. Zeeb #endif
45709fb91463SBjoern A. Zeeb 
45716b4cac81SBjoern A. Zeeb 	lkpi_radiotap_attach(lhw);
45726b4cac81SBjoern A. Zeeb 
4573c5b96b3eSBjoern A. Zeeb 	/*
4574c5b96b3eSBjoern A. Zeeb 	 * Assign the first possible channel for now;  seems Realtek drivers
4575c5b96b3eSBjoern A. Zeeb 	 * expect one.
4576d9945d78SBjoern A. Zeeb 	 * Also remember the amount of bands we support and the most rates
4577d9945d78SBjoern A. Zeeb 	 * in any band so we can scale [(ext) sup rates] IE(s) accordingly.
4578c5b96b3eSBjoern A. Zeeb 	 */
4579d9945d78SBjoern A. Zeeb 	lhw->supbands = lhw->max_rates = 0;
4580f454a4a1SBjoern A. Zeeb 	for (band = 0; band < NUM_NL80211_BANDS; band++) {
4581c5b96b3eSBjoern A. Zeeb 		struct ieee80211_supported_band *supband;
4582c5b96b3eSBjoern A. Zeeb 		struct linuxkpi_ieee80211_channel *channels;
4583c5b96b3eSBjoern A. Zeeb 
4584c5b96b3eSBjoern A. Zeeb 		supband = hw->wiphy->bands[band];
4585c5b96b3eSBjoern A. Zeeb 		if (supband == NULL || supband->n_channels == 0)
4586c5b96b3eSBjoern A. Zeeb 			continue;
4587c5b96b3eSBjoern A. Zeeb 
4588d9945d78SBjoern A. Zeeb 		lhw->supbands++;
4589d9945d78SBjoern A. Zeeb 		lhw->max_rates = max(lhw->max_rates, supband->n_bitrates);
4590d9945d78SBjoern A. Zeeb 
4591f454a4a1SBjoern A. Zeeb 		/* If we have a channel, we need to keep counting supbands. */
4592f454a4a1SBjoern A. Zeeb 		if (hw->conf.chandef.chan != NULL)
4593f454a4a1SBjoern A. Zeeb 			continue;
4594f454a4a1SBjoern A. Zeeb 
4595c5b96b3eSBjoern A. Zeeb 		channels = supband->channels;
4596c5b96b3eSBjoern A. Zeeb 		for (i = 0; i < supband->n_channels; i++) {
4597c5b96b3eSBjoern A. Zeeb 
4598c5b96b3eSBjoern A. Zeeb 			if (channels[i].flags & IEEE80211_CHAN_DISABLED)
4599c5b96b3eSBjoern A. Zeeb 				continue;
4600c5b96b3eSBjoern A. Zeeb 
46014a07abdeSBjoern A. Zeeb 			cfg80211_chandef_create(&hw->conf.chandef, &channels[i],
46029fb91463SBjoern A. Zeeb #ifdef LKPI_80211_HT
46039fb91463SBjoern A. Zeeb 			    (ic->ic_htcaps & IEEE80211_HTC_HT) ? 0 :
46049fb91463SBjoern A. Zeeb #endif
4605c5b96b3eSBjoern A. Zeeb 			    NL80211_CHAN_NO_HT);
4606c5b96b3eSBjoern A. Zeeb 			break;
4607c5b96b3eSBjoern A. Zeeb 		}
4608c5b96b3eSBjoern A. Zeeb 	}
4609c5b96b3eSBjoern A. Zeeb 
4610d9945d78SBjoern A. Zeeb 	IMPROVE("see net80211::ieee80211_chan_init vs. wiphy->bands[].bitrates possibly in lkpi_ic_getradiocaps?");
4611d9945d78SBjoern A. Zeeb 
4612d9945d78SBjoern A. Zeeb 	/* Make sure we do not support more than net80211 is willing to take. */
4613d9945d78SBjoern A. Zeeb 	if (lhw->max_rates > IEEE80211_RATE_MAXSIZE) {
4614d9945d78SBjoern A. Zeeb 		ic_printf(ic, "%s: limiting max_rates %d to %d!\n", __func__,
4615d9945d78SBjoern A. Zeeb 		    lhw->max_rates, IEEE80211_RATE_MAXSIZE);
4616d9945d78SBjoern A. Zeeb 		lhw->max_rates = IEEE80211_RATE_MAXSIZE;
4617d9945d78SBjoern A. Zeeb 	}
4618d9945d78SBjoern A. Zeeb 
4619d9945d78SBjoern A. Zeeb 	/*
4620d9945d78SBjoern A. Zeeb 	 * The maximum supported bitrates on any band + size for
4621d9945d78SBjoern A. Zeeb 	 * DSSS Parameter Set give our per-band IE size.
4622d9945d78SBjoern A. Zeeb 	 * SSID is the responsibility of the driver and goes on the side.
4623d9945d78SBjoern A. Zeeb 	 * The user specified bits coming from the vap go into the
4624d9945d78SBjoern A. Zeeb 	 * "common ies" fields.
4625d9945d78SBjoern A. Zeeb 	 */
4626d9945d78SBjoern A. Zeeb 	lhw->scan_ie_len = 2 + IEEE80211_RATE_SIZE;
4627d9945d78SBjoern A. Zeeb 	if (lhw->max_rates > IEEE80211_RATE_SIZE)
4628d9945d78SBjoern A. Zeeb 		lhw->scan_ie_len += 2 + (lhw->max_rates - IEEE80211_RATE_SIZE);
462978ca45dfSBjoern A. Zeeb 
463078ca45dfSBjoern A. Zeeb 	if (hw->wiphy->features & NL80211_FEATURE_DS_PARAM_SET_IE_IN_PROBES) {
4631d9945d78SBjoern A. Zeeb 		/*
463278ca45dfSBjoern A. Zeeb 		 * net80211 does not seem to support the DSSS Parameter Set but
463378ca45dfSBjoern A. Zeeb 		 * some of the drivers insert it so calculate the extra fixed
463478ca45dfSBjoern A. Zeeb 		 * space in.
4635d9945d78SBjoern A. Zeeb 		 */
4636d9945d78SBjoern A. Zeeb 		lhw->scan_ie_len += 2 + 1;
463778ca45dfSBjoern A. Zeeb 	}
4638d9945d78SBjoern A. Zeeb 
46399fb91463SBjoern A. Zeeb #if defined(LKPI_80211_HT)
46409fb91463SBjoern A. Zeeb 	if ((ic->ic_htcaps & IEEE80211_HTC_HT) != 0)
46419fb91463SBjoern A. Zeeb 		lhw->scan_ie_len += sizeof(struct ieee80211_ie_htcap);
46429fb91463SBjoern A. Zeeb #endif
46439fb91463SBjoern A. Zeeb #if defined(LKPI_80211_VHT)
46449fb91463SBjoern A. Zeeb 	if ((ic->ic_flags_ext & IEEE80211_FEXT_VHT) != 0)
46459fb91463SBjoern A. Zeeb 		lhw->scan_ie_len += 2 + sizeof(struct ieee80211_vht_cap);
46469fb91463SBjoern A. Zeeb #endif
46479fb91463SBjoern A. Zeeb 
4648d9945d78SBjoern A. Zeeb 	/* Reduce the max_scan_ie_len "left" by the amount we consume already. */
464978ca45dfSBjoern A. Zeeb 	if (hw->wiphy->max_scan_ie_len > 0) {
465078ca45dfSBjoern A. Zeeb 		if (lhw->scan_ie_len > hw->wiphy->max_scan_ie_len)
465178ca45dfSBjoern A. Zeeb 			goto err;
4652d9945d78SBjoern A. Zeeb 		hw->wiphy->max_scan_ie_len -= lhw->scan_ie_len;
465378ca45dfSBjoern A. Zeeb 	}
4654d9945d78SBjoern A. Zeeb 
46556b4cac81SBjoern A. Zeeb 	if (bootverbose)
46566b4cac81SBjoern A. Zeeb 		ieee80211_announce(ic);
46572e183d99SBjoern A. Zeeb 
46582e183d99SBjoern A. Zeeb 	return (0);
465978ca45dfSBjoern A. Zeeb err:
466078ca45dfSBjoern A. Zeeb 	IMPROVE("TODO FIXME CLEANUP");
466178ca45dfSBjoern A. Zeeb 	return (-EAGAIN);
46626b4cac81SBjoern A. Zeeb }
46636b4cac81SBjoern A. Zeeb 
46646b4cac81SBjoern A. Zeeb void
46656b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_ifdetach(struct ieee80211_hw *hw)
46666b4cac81SBjoern A. Zeeb {
46676b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
46686b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
46696b4cac81SBjoern A. Zeeb 
46706b4cac81SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
46716b4cac81SBjoern A. Zeeb 	ic = lhw->ic;
46726b4cac81SBjoern A. Zeeb 	ieee80211_ifdetach(ic);
46736b4cac81SBjoern A. Zeeb }
46746b4cac81SBjoern A. Zeeb 
46756b4cac81SBjoern A. Zeeb void
46766b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_iterate_interfaces(struct ieee80211_hw *hw,
46776b4cac81SBjoern A. Zeeb     enum ieee80211_iface_iter flags,
46786b4cac81SBjoern A. Zeeb     void(*iterfunc)(void *, uint8_t *, struct ieee80211_vif *),
46796b4cac81SBjoern A. Zeeb     void *arg)
46806b4cac81SBjoern A. Zeeb {
46816b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
46826b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
46836b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
468461a68e50SBjoern A. Zeeb 	bool active, atomic, nin_drv;
46856b4cac81SBjoern A. Zeeb 
46866b4cac81SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
46876b4cac81SBjoern A. Zeeb 
46886b4cac81SBjoern A. Zeeb 	if (flags & ~(IEEE80211_IFACE_ITER_NORMAL|
46896b4cac81SBjoern A. Zeeb 	    IEEE80211_IFACE_ITER_RESUME_ALL|
469061a68e50SBjoern A. Zeeb 	    IEEE80211_IFACE_SKIP_SDATA_NOT_IN_DRIVER|
4691adff403fSBjoern A. Zeeb 	    IEEE80211_IFACE_ITER_ACTIVE|IEEE80211_IFACE_ITER__ATOMIC)) {
46926b4cac81SBjoern A. Zeeb 		ic_printf(lhw->ic, "XXX TODO %s flags(%#x) not yet supported.\n",
46936b4cac81SBjoern A. Zeeb 		    __func__, flags);
46946b4cac81SBjoern A. Zeeb 	}
46956b4cac81SBjoern A. Zeeb 
4696adff403fSBjoern A. Zeeb 	active = (flags & IEEE80211_IFACE_ITER_ACTIVE) != 0;
46976b4cac81SBjoern A. Zeeb 	atomic = (flags & IEEE80211_IFACE_ITER__ATOMIC) != 0;
469861a68e50SBjoern A. Zeeb 	nin_drv = (flags & IEEE80211_IFACE_SKIP_SDATA_NOT_IN_DRIVER) != 0;
46996b4cac81SBjoern A. Zeeb 
47006b4cac81SBjoern A. Zeeb 	if (atomic)
47018891c455SBjoern A. Zeeb 		LKPI_80211_LHW_LVIF_LOCK(lhw);
47026b4cac81SBjoern A. Zeeb 	TAILQ_FOREACH(lvif, &lhw->lvif_head, lvif_entry) {
47036b4cac81SBjoern A. Zeeb 		struct ieee80211vap *vap;
47046b4cac81SBjoern A. Zeeb 
47056b4cac81SBjoern A. Zeeb 		vif = LVIF_TO_VIF(lvif);
47066b4cac81SBjoern A. Zeeb 
47076b4cac81SBjoern A. Zeeb 		/*
47086b4cac81SBjoern A. Zeeb 		 * If we want "active" interfaces, we need to distinguish on
47096b4cac81SBjoern A. Zeeb 		 * whether the driver knows about them or not to be able to
47106b4cac81SBjoern A. Zeeb 		 * handle the "resume" case correctly.  Skip the ones the
47116b4cac81SBjoern A. Zeeb 		 * driver does not know about.
47126b4cac81SBjoern A. Zeeb 		 */
47136b4cac81SBjoern A. Zeeb 		if (active && !lvif->added_to_drv &&
47146b4cac81SBjoern A. Zeeb 		    (flags & IEEE80211_IFACE_ITER_RESUME_ALL) != 0)
47156b4cac81SBjoern A. Zeeb 			continue;
47166b4cac81SBjoern A. Zeeb 
47176b4cac81SBjoern A. Zeeb 		/*
471861a68e50SBjoern A. Zeeb 		 * If we shall skip interfaces not added to the driver do so
471961a68e50SBjoern A. Zeeb 		 * if we haven't yet.
472061a68e50SBjoern A. Zeeb 		 */
472161a68e50SBjoern A. Zeeb 		if (nin_drv && !lvif->added_to_drv)
472261a68e50SBjoern A. Zeeb 			continue;
472361a68e50SBjoern A. Zeeb 
472461a68e50SBjoern A. Zeeb 		/*
47256b4cac81SBjoern A. Zeeb 		 * Run the iterator function if we are either not asking
47266b4cac81SBjoern A. Zeeb 		 * asking for active only or if the VAP is "running".
47276b4cac81SBjoern A. Zeeb 		 */
47286b4cac81SBjoern A. Zeeb 		/* XXX-BZ probably should have state in the lvif as well. */
47296b4cac81SBjoern A. Zeeb 		vap = LVIF_TO_VAP(lvif);
47306b4cac81SBjoern A. Zeeb 		if (!active || (vap->iv_state != IEEE80211_S_INIT))
47316b4cac81SBjoern A. Zeeb 			iterfunc(arg, vif->addr, vif);
47326b4cac81SBjoern A. Zeeb 	}
47336b4cac81SBjoern A. Zeeb 	if (atomic)
47348891c455SBjoern A. Zeeb 		LKPI_80211_LHW_LVIF_UNLOCK(lhw);
47356b4cac81SBjoern A. Zeeb }
47366b4cac81SBjoern A. Zeeb 
47376b4cac81SBjoern A. Zeeb void
47386b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_iterate_keys(struct ieee80211_hw *hw,
47396b4cac81SBjoern A. Zeeb     struct ieee80211_vif *vif,
47406b4cac81SBjoern A. Zeeb     void(*iterfunc)(struct ieee80211_hw *, struct ieee80211_vif *,
47416b4cac81SBjoern A. Zeeb         struct ieee80211_sta *, struct ieee80211_key_conf *, void *),
47426b4cac81SBjoern A. Zeeb     void *arg)
47436b4cac81SBjoern A. Zeeb {
47446b4cac81SBjoern A. Zeeb 
47456b4cac81SBjoern A. Zeeb 	UNIMPLEMENTED;
47466b4cac81SBjoern A. Zeeb }
47476b4cac81SBjoern A. Zeeb 
47486b4cac81SBjoern A. Zeeb void
47496b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_iterate_chan_contexts(struct ieee80211_hw *hw,
47506b4cac81SBjoern A. Zeeb     void(*iterfunc)(struct ieee80211_hw *, struct ieee80211_chanctx_conf *,
47516b4cac81SBjoern A. Zeeb 	void *),
47526b4cac81SBjoern A. Zeeb     void *arg)
47536b4cac81SBjoern A. Zeeb {
4754c5e25798SBjoern A. Zeeb 	struct lkpi_hw *lhw;
4755c5e25798SBjoern A. Zeeb 	struct lkpi_vif *lvif;
4756c5e25798SBjoern A. Zeeb 	struct ieee80211_vif *vif;
4757c5e25798SBjoern A. Zeeb 	struct lkpi_chanctx *lchanctx;
47586b4cac81SBjoern A. Zeeb 
4759c5e25798SBjoern A. Zeeb 	KASSERT(hw != NULL && iterfunc != NULL,
4760c5e25798SBjoern A. Zeeb 	    ("%s: hw %p iterfunc %p arg %p\n", __func__, hw, iterfunc, arg));
4761c5e25798SBjoern A. Zeeb 
4762c5e25798SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
4763c5e25798SBjoern A. Zeeb 
4764c5e25798SBjoern A. Zeeb 	IMPROVE("lchanctx should be its own list somewhere");
4765c5e25798SBjoern A. Zeeb 
4766c5e25798SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_LOCK(lhw);
4767c5e25798SBjoern A. Zeeb 	TAILQ_FOREACH(lvif, &lhw->lvif_head, lvif_entry) {
4768c5e25798SBjoern A. Zeeb 
4769c5e25798SBjoern A. Zeeb 		vif = LVIF_TO_VIF(lvif);
4770c5e25798SBjoern A. Zeeb 		if (vif->chanctx_conf == NULL)
4771c5e25798SBjoern A. Zeeb 			continue;
4772c5e25798SBjoern A. Zeeb 
4773c5e25798SBjoern A. Zeeb 		lchanctx = CHANCTX_CONF_TO_LCHANCTX(vif->chanctx_conf);
4774c5e25798SBjoern A. Zeeb 		if (!lchanctx->added_to_drv)
4775c5e25798SBjoern A. Zeeb 			continue;
4776c5e25798SBjoern A. Zeeb 
4777d1af434dSBjoern A. Zeeb 		iterfunc(hw, &lchanctx->chanctx_conf, arg);
4778c5e25798SBjoern A. Zeeb 	}
4779c5e25798SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_UNLOCK(lhw);
47806b4cac81SBjoern A. Zeeb }
47816b4cac81SBjoern A. Zeeb 
47826b4cac81SBjoern A. Zeeb void
47836b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_iterate_stations_atomic(struct ieee80211_hw *hw,
47846b4cac81SBjoern A. Zeeb    void (*iterfunc)(void *, struct ieee80211_sta *), void *arg)
47856b4cac81SBjoern A. Zeeb {
47866b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
47876b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
47886b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
47896b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
47906b4cac81SBjoern A. Zeeb 
47916b4cac81SBjoern A. Zeeb 	KASSERT(hw != NULL && iterfunc != NULL,
47926b4cac81SBjoern A. Zeeb 	    ("%s: hw %p iterfunc %p arg %p\n", __func__, hw, iterfunc, arg));
47936b4cac81SBjoern A. Zeeb 
47946b4cac81SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
47956b4cac81SBjoern A. Zeeb 
47968891c455SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_LOCK(lhw);
47976b4cac81SBjoern A. Zeeb 	TAILQ_FOREACH(lvif, &lhw->lvif_head, lvif_entry) {
47986b4cac81SBjoern A. Zeeb 
47996b4cac81SBjoern A. Zeeb 		LKPI_80211_LVIF_LOCK(lvif);
48006b4cac81SBjoern A. Zeeb 		TAILQ_FOREACH(lsta, &lvif->lsta_head, lsta_entry) {
48016b4cac81SBjoern A. Zeeb 			if (!lsta->added_to_drv)
48026b4cac81SBjoern A. Zeeb 				continue;
48036b4cac81SBjoern A. Zeeb 			sta = LSTA_TO_STA(lsta);
48046b4cac81SBjoern A. Zeeb 			iterfunc(arg, sta);
48056b4cac81SBjoern A. Zeeb 		}
48066b4cac81SBjoern A. Zeeb 		LKPI_80211_LVIF_UNLOCK(lvif);
48076b4cac81SBjoern A. Zeeb 	}
48088891c455SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_UNLOCK(lhw);
48096b4cac81SBjoern A. Zeeb }
48106b4cac81SBjoern A. Zeeb 
4811673d62fcSBjoern A. Zeeb struct linuxkpi_ieee80211_regdomain *
4812673d62fcSBjoern A. Zeeb lkpi_get_linuxkpi_ieee80211_regdomain(size_t n)
4813673d62fcSBjoern A. Zeeb {
4814673d62fcSBjoern A. Zeeb 	struct linuxkpi_ieee80211_regdomain *regd;
4815673d62fcSBjoern A. Zeeb 
4816673d62fcSBjoern A. Zeeb 	regd = kzalloc(sizeof(*regd) + n * sizeof(struct ieee80211_reg_rule),
4817673d62fcSBjoern A. Zeeb 	    GFP_KERNEL);
4818673d62fcSBjoern A. Zeeb 	return (regd);
4819673d62fcSBjoern A. Zeeb }
4820673d62fcSBjoern A. Zeeb 
48216b4cac81SBjoern A. Zeeb int
48226b4cac81SBjoern A. Zeeb linuxkpi_regulatory_set_wiphy_regd_sync(struct wiphy *wiphy,
48236b4cac81SBjoern A. Zeeb     struct linuxkpi_ieee80211_regdomain *regd)
48246b4cac81SBjoern A. Zeeb {
48256b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
48266b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
48276b4cac81SBjoern A. Zeeb 	struct ieee80211_regdomain *rd;
48286b4cac81SBjoern A. Zeeb 
48296b4cac81SBjoern A. Zeeb 	lhw = wiphy_priv(wiphy);
48306b4cac81SBjoern A. Zeeb 	ic = lhw->ic;
48316b4cac81SBjoern A. Zeeb 
48326b4cac81SBjoern A. Zeeb 	rd = &ic->ic_regdomain;
48336b4cac81SBjoern A. Zeeb 	if (rd->isocc[0] == '\0') {
48346b4cac81SBjoern A. Zeeb 		rd->isocc[0] = regd->alpha2[0];
48356b4cac81SBjoern A. Zeeb 		rd->isocc[1] = regd->alpha2[1];
48366b4cac81SBjoern A. Zeeb 	}
48376b4cac81SBjoern A. Zeeb 
48386b4cac81SBjoern A. Zeeb 	TODO();
48396b4cac81SBjoern A. Zeeb 	/* XXX-BZ finish the rest. */
48406b4cac81SBjoern A. Zeeb 
48416b4cac81SBjoern A. Zeeb 	return (0);
48426b4cac81SBjoern A. Zeeb }
48436b4cac81SBjoern A. Zeeb 
48446b4cac81SBjoern A. Zeeb void
48456b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_scan_completed(struct ieee80211_hw *hw,
48466b4cac81SBjoern A. Zeeb     struct cfg80211_scan_info *info)
48476b4cac81SBjoern A. Zeeb {
48486b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
48496b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
48506b4cac81SBjoern A. Zeeb 	struct ieee80211_scan_state *ss;
48516b4cac81SBjoern A. Zeeb 
48526b4cac81SBjoern A. Zeeb 	lhw = wiphy_priv(hw->wiphy);
48536b4cac81SBjoern A. Zeeb 	ic = lhw->ic;
48546b4cac81SBjoern A. Zeeb 	ss = ic->ic_scan;
48556b4cac81SBjoern A. Zeeb 
48566b4cac81SBjoern A. Zeeb 	ieee80211_scan_done(ss->ss_vap);
48576b4cac81SBjoern A. Zeeb 
48588ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_LOCK(lhw);
48596b4cac81SBjoern A. Zeeb 	free(lhw->hw_req, M_LKPI80211);
48606b4cac81SBjoern A. Zeeb 	lhw->hw_req = NULL;
4861a486fbbdSBjoern A. Zeeb 	lhw->scan_flags &= ~LKPI_LHW_SCAN_RUNNING;
48626b4cac81SBjoern A. Zeeb 	wakeup(lhw);
48638ac540d3SBjoern A. Zeeb 	LKPI_80211_LHW_SCAN_UNLOCK(lhw);
48646b4cac81SBjoern A. Zeeb 
48656b4cac81SBjoern A. Zeeb 	return;
48666b4cac81SBjoern A. Zeeb }
48676b4cac81SBjoern A. Zeeb 
4868759a996dSBjoern A. Zeeb static void
4869759a996dSBjoern A. Zeeb lkpi_80211_lhw_rxq_rx_one(struct lkpi_hw *lhw, struct mbuf *m)
4870759a996dSBjoern A. Zeeb {
4871759a996dSBjoern A. Zeeb 	struct ieee80211_node *ni;
4872759a996dSBjoern A. Zeeb 	struct m_tag *mtag;
4873759a996dSBjoern A. Zeeb 	int ok;
4874759a996dSBjoern A. Zeeb 
4875759a996dSBjoern A. Zeeb 	ni = NULL;
4876759a996dSBjoern A. Zeeb         mtag = m_tag_locate(m, MTAG_ABI_LKPI80211, LKPI80211_TAG_RXNI, NULL);
4877759a996dSBjoern A. Zeeb 	if (mtag != NULL) {
4878759a996dSBjoern A. Zeeb 		struct lkpi_80211_tag_rxni *rxni;
4879759a996dSBjoern A. Zeeb 
4880759a996dSBjoern A. Zeeb 		rxni = (struct lkpi_80211_tag_rxni *)(mtag + 1);
4881759a996dSBjoern A. Zeeb 		ni = rxni->ni;
4882759a996dSBjoern A. Zeeb 	}
4883759a996dSBjoern A. Zeeb 
4884759a996dSBjoern A. Zeeb 	if (ni != NULL) {
4885759a996dSBjoern A. Zeeb 		ok = ieee80211_input_mimo(ni, m);
4886759a996dSBjoern A. Zeeb 		ieee80211_free_node(ni);		/* Release the reference. */
4887759a996dSBjoern A. Zeeb 		if (ok < 0)
4888759a996dSBjoern A. Zeeb 			m_freem(m);
4889759a996dSBjoern A. Zeeb 	} else {
4890759a996dSBjoern A. Zeeb 		ok = ieee80211_input_mimo_all(lhw->ic, m);
4891759a996dSBjoern A. Zeeb 		/* mbuf got consumed. */
4892759a996dSBjoern A. Zeeb 	}
4893759a996dSBjoern A. Zeeb 
4894759a996dSBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
4895759a996dSBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_RX)
4896759a996dSBjoern A. Zeeb 		printf("TRACE %s: handled frame type %#0x\n", __func__, ok);
4897759a996dSBjoern A. Zeeb #endif
4898759a996dSBjoern A. Zeeb }
4899759a996dSBjoern A. Zeeb 
4900759a996dSBjoern A. Zeeb static void
4901759a996dSBjoern A. Zeeb lkpi_80211_lhw_rxq_task(void *ctx, int pending)
4902759a996dSBjoern A. Zeeb {
4903759a996dSBjoern A. Zeeb 	struct lkpi_hw *lhw;
4904759a996dSBjoern A. Zeeb 	struct mbufq mq;
4905759a996dSBjoern A. Zeeb 	struct mbuf *m;
4906759a996dSBjoern A. Zeeb 
4907759a996dSBjoern A. Zeeb 	lhw = ctx;
4908759a996dSBjoern A. Zeeb 
4909759a996dSBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
4910759a996dSBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_RX)
4911759a996dSBjoern A. Zeeb 		printf("%s:%d lhw %p pending %d mbuf_qlen %d\n",
4912759a996dSBjoern A. Zeeb 		    __func__, __LINE__, lhw, pending, mbufq_len(&lhw->rxq));
4913759a996dSBjoern A. Zeeb #endif
4914759a996dSBjoern A. Zeeb 
4915759a996dSBjoern A. Zeeb 	mbufq_init(&mq, IFQ_MAXLEN);
4916759a996dSBjoern A. Zeeb 
4917759a996dSBjoern A. Zeeb 	LKPI_80211_LHW_RXQ_LOCK(lhw);
4918759a996dSBjoern A. Zeeb 	mbufq_concat(&mq, &lhw->rxq);
4919759a996dSBjoern A. Zeeb 	LKPI_80211_LHW_RXQ_UNLOCK(lhw);
4920759a996dSBjoern A. Zeeb 
4921759a996dSBjoern A. Zeeb 	m = mbufq_dequeue(&mq);
4922759a996dSBjoern A. Zeeb 	while (m != NULL) {
4923759a996dSBjoern A. Zeeb 		lkpi_80211_lhw_rxq_rx_one(lhw, m);
4924759a996dSBjoern A. Zeeb 		m = mbufq_dequeue(&mq);
4925759a996dSBjoern A. Zeeb 	}
4926759a996dSBjoern A. Zeeb }
4927759a996dSBjoern A. Zeeb 
4928e30e05d3SBjoern A. Zeeb /* For %list see comment towards the end of the function. */
49296b4cac81SBjoern A. Zeeb void
49306b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb,
4931e30e05d3SBjoern A. Zeeb     struct ieee80211_sta *sta, struct napi_struct *napi __unused,
4932e30e05d3SBjoern A. Zeeb     struct list_head *list __unused)
49336b4cac81SBjoern A. Zeeb {
49346b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
49356b4cac81SBjoern A. Zeeb 	struct ieee80211com *ic;
49366b4cac81SBjoern A. Zeeb 	struct mbuf *m;
49376b4cac81SBjoern A. Zeeb 	struct skb_shared_info *shinfo;
49386b4cac81SBjoern A. Zeeb 	struct ieee80211_rx_status *rx_status;
49396b4cac81SBjoern A. Zeeb 	struct ieee80211_rx_stats rx_stats;
49406b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
49416b4cac81SBjoern A. Zeeb 	struct ieee80211vap *vap;
49426b4cac81SBjoern A. Zeeb 	struct ieee80211_hdr *hdr;
49436b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
49449d9ba2b7SBjoern A. Zeeb 	int i, offset, ok;
4945170acccfSBjoern A. Zeeb 	int8_t rssi;
4946c0cadd99SBjoern A. Zeeb 	bool is_beacon;
49476b4cac81SBjoern A. Zeeb 
49486b4cac81SBjoern A. Zeeb 	if (skb->len < 2) {
49496b4cac81SBjoern A. Zeeb 		/* Need 80211 stats here. */
49506b4cac81SBjoern A. Zeeb 		IMPROVE();
49516b4cac81SBjoern A. Zeeb 		goto err;
49526b4cac81SBjoern A. Zeeb 	}
49536b4cac81SBjoern A. Zeeb 
49546b4cac81SBjoern A. Zeeb 	/*
49556b4cac81SBjoern A. Zeeb 	 * For now do the data copy; we can later improve things. Might even
49566b4cac81SBjoern A. Zeeb 	 * have an mbuf backing the skb data then?
49576b4cac81SBjoern A. Zeeb 	 */
49586b4cac81SBjoern A. Zeeb 	m = m_get2(skb->len, M_NOWAIT, MT_DATA, M_PKTHDR);
49596b4cac81SBjoern A. Zeeb 	if (m == NULL)
49606b4cac81SBjoern A. Zeeb 		goto err;
49616b4cac81SBjoern A. Zeeb 	m_copyback(m, 0, skb->tail - skb->data, skb->data);
49626b4cac81SBjoern A. Zeeb 
49636b4cac81SBjoern A. Zeeb 	shinfo = skb_shinfo(skb);
49646b4cac81SBjoern A. Zeeb 	offset = m->m_len;
49656b4cac81SBjoern A. Zeeb 	for (i = 0; i < shinfo->nr_frags; i++) {
49666b4cac81SBjoern A. Zeeb 		m_copyback(m, offset, shinfo->frags[i].size,
49676b4cac81SBjoern A. Zeeb 		    (uint8_t *)linux_page_address(shinfo->frags[i].page) +
49686b4cac81SBjoern A. Zeeb 		    shinfo->frags[i].offset);
49696b4cac81SBjoern A. Zeeb 		offset += shinfo->frags[i].size;
49706b4cac81SBjoern A. Zeeb 	}
49716b4cac81SBjoern A. Zeeb 
49726b4cac81SBjoern A. Zeeb 	rx_status = IEEE80211_SKB_RXCB(skb);
49736b4cac81SBjoern A. Zeeb 
49746b4cac81SBjoern A. Zeeb 	hdr = (void *)skb->data;
4975c0cadd99SBjoern A. Zeeb 	is_beacon = ieee80211_is_beacon(hdr->frame_control);
4976c0cadd99SBjoern A. Zeeb 
4977c0cadd99SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
49789d9ba2b7SBjoern A. Zeeb 	if (is_beacon && (linuxkpi_debug_80211 & D80211_TRACE_RX_BEACONS) == 0)
49796b4cac81SBjoern A. Zeeb 		goto no_trace_beacons;
49806b4cac81SBjoern A. Zeeb 
49819d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_RX)
49826b4cac81SBjoern A. Zeeb 		printf("TRACE-RX: %s: skb %p a/l/d/t-len (%u/%u/%u/%u) "
4983c0cadd99SBjoern A. Zeeb 		    "h %p d %p t %p e %p sh %p (%u) m %p plen %u len %u%s\n",
49846b4cac81SBjoern A. Zeeb 		    __func__, skb, skb->_alloc_len, skb->len, skb->data_len,
49856b4cac81SBjoern A. Zeeb 		    skb->truesize, skb->head, skb->data, skb->tail, skb->end,
49866b4cac81SBjoern A. Zeeb 		    shinfo, shinfo->nr_frags,
4987c0cadd99SBjoern A. Zeeb 		    m, m->m_pkthdr.len, m->m_len, is_beacon ? " beacon" : "");
49886b4cac81SBjoern A. Zeeb 
49899d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_RX_DUMP)
49906b4cac81SBjoern A. Zeeb 		hexdump(mtod(m, const void *), m->m_len, "RX (raw) ", 0);
49916b4cac81SBjoern A. Zeeb 
49926b4cac81SBjoern A. Zeeb 	/* Implement a dump_rxcb() !!! */
49939d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_RX)
4994c8dafefaSBjoern A. Zeeb 		printf("TRACE %s: RXCB: %ju %ju %u, %#0x, %u, %#0x, %#0x, "
499560970a32SBjoern A. Zeeb 		    "%u band %u, %u { %d %d %d %d }, %d, %#x %#x %#x %#x %u %u %u\n",
49966b4cac81SBjoern A. Zeeb 			__func__,
4997c8dafefaSBjoern A. Zeeb 			(uintmax_t)rx_status->boottime_ns,
4998c8dafefaSBjoern A. Zeeb 			(uintmax_t)rx_status->mactime,
49996b4cac81SBjoern A. Zeeb 			rx_status->device_timestamp,
50006b4cac81SBjoern A. Zeeb 			rx_status->flag,
50016b4cac81SBjoern A. Zeeb 			rx_status->freq,
50026b4cac81SBjoern A. Zeeb 			rx_status->bw,
50036b4cac81SBjoern A. Zeeb 			rx_status->encoding,
50046b4cac81SBjoern A. Zeeb 			rx_status->ampdu_reference,
50056b4cac81SBjoern A. Zeeb 			rx_status->band,
50066b4cac81SBjoern A. Zeeb 			rx_status->chains,
50076b4cac81SBjoern A. Zeeb 			rx_status->chain_signal[0],
50086b4cac81SBjoern A. Zeeb 			rx_status->chain_signal[1],
50096b4cac81SBjoern A. Zeeb 			rx_status->chain_signal[2],
501060970a32SBjoern A. Zeeb 			rx_status->chain_signal[3],
50116b4cac81SBjoern A. Zeeb 			rx_status->signal,
50126b4cac81SBjoern A. Zeeb 			rx_status->enc_flags,
50136b4cac81SBjoern A. Zeeb 			rx_status->he_dcm,
50146b4cac81SBjoern A. Zeeb 			rx_status->he_gi,
50156b4cac81SBjoern A. Zeeb 			rx_status->he_ru,
50166b4cac81SBjoern A. Zeeb 			rx_status->zero_length_psdu_type,
50176b4cac81SBjoern A. Zeeb 			rx_status->nss,
50186b4cac81SBjoern A. Zeeb 			rx_status->rate_idx);
50196b4cac81SBjoern A. Zeeb no_trace_beacons:
50206b4cac81SBjoern A. Zeeb #endif
50216b4cac81SBjoern A. Zeeb 
50226b4cac81SBjoern A. Zeeb 	memset(&rx_stats, 0, sizeof(rx_stats));
50236b4cac81SBjoern A. Zeeb 	rx_stats.r_flags = IEEE80211_R_NF | IEEE80211_R_RSSI;
502460970a32SBjoern A. Zeeb 	/* XXX-BZ correct hardcoded rssi and noise floor, how? survey? */
502560970a32SBjoern A. Zeeb 	rx_stats.c_nf = -96;
50266b4cac81SBjoern A. Zeeb 	if (ieee80211_hw_check(hw, SIGNAL_DBM) &&
50276b4cac81SBjoern A. Zeeb 	    !(rx_status->flag & RX_FLAG_NO_SIGNAL_VAL))
5028170acccfSBjoern A. Zeeb 		rssi = rx_status->signal;
50296b4cac81SBjoern A. Zeeb 	else
5030170acccfSBjoern A. Zeeb 		rssi = rx_stats.c_nf;
5031170acccfSBjoern A. Zeeb 	/*
5032170acccfSBjoern A. Zeeb 	 * net80211 signal strength data are in .5 dBm units relative to
5033170acccfSBjoern A. Zeeb 	 * the current noise floor (see comment in ieee80211_node.h).
5034170acccfSBjoern A. Zeeb 	 */
5035170acccfSBjoern A. Zeeb 	rssi -= rx_stats.c_nf;
5036170acccfSBjoern A. Zeeb 	rx_stats.c_rssi = rssi * 2;
50376b4cac81SBjoern A. Zeeb 	rx_stats.r_flags |= IEEE80211_R_BAND;
50386b4cac81SBjoern A. Zeeb 	rx_stats.c_band =
50396b4cac81SBjoern A. Zeeb 	    lkpi_nl80211_band_to_net80211_band(rx_status->band);
50406b4cac81SBjoern A. Zeeb 	rx_stats.r_flags |= IEEE80211_R_FREQ | IEEE80211_R_IEEE;
50416b4cac81SBjoern A. Zeeb 	rx_stats.c_freq = rx_status->freq;
50426b4cac81SBjoern A. Zeeb 	rx_stats.c_ieee = ieee80211_mhz2ieee(rx_stats.c_freq, rx_stats.c_band);
50436b4cac81SBjoern A. Zeeb 
50446b4cac81SBjoern A. Zeeb 	/* XXX (*sta_statistics)() to get to some of that? */
50456b4cac81SBjoern A. Zeeb 	/* XXX-BZ dump the FreeBSD version of rx_stats as well! */
50466b4cac81SBjoern A. Zeeb 
50476b4cac81SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
50486b4cac81SBjoern A. Zeeb 	ic = lhw->ic;
50496b4cac81SBjoern A. Zeeb 
50506b4cac81SBjoern A. Zeeb 	ok = ieee80211_add_rx_params(m, &rx_stats);
50516b4cac81SBjoern A. Zeeb 	if (ok == 0) {
5052dbc06dd9SBjoern A. Zeeb 		m_freem(m);
50536b4cac81SBjoern A. Zeeb 		counter_u64_add(ic->ic_ierrors, 1);
50546b4cac81SBjoern A. Zeeb 		goto err;
50556b4cac81SBjoern A. Zeeb 	}
50566b4cac81SBjoern A. Zeeb 
5057*58246901SBjoern A. Zeeb 	lsta = NULL;
50586b4cac81SBjoern A. Zeeb 	if (sta != NULL) {
50596b4cac81SBjoern A. Zeeb 		lsta = STA_TO_LSTA(sta);
50606b4cac81SBjoern A. Zeeb 		ni = ieee80211_ref_node(lsta->ni);
50616b4cac81SBjoern A. Zeeb 	} else {
5062c8dafefaSBjoern A. Zeeb 		struct ieee80211_frame_min *wh;
5063c8dafefaSBjoern A. Zeeb 
50646b4cac81SBjoern A. Zeeb 		wh = mtod(m, struct ieee80211_frame_min *);
50656b4cac81SBjoern A. Zeeb 		ni = ieee80211_find_rxnode(ic, wh);
50666b4cac81SBjoern A. Zeeb 		if (ni != NULL)
50676b4cac81SBjoern A. Zeeb 			lsta = ni->ni_drv_data;
50686b4cac81SBjoern A. Zeeb 	}
50696b4cac81SBjoern A. Zeeb 
50706b4cac81SBjoern A. Zeeb 	if (ni != NULL)
50716b4cac81SBjoern A. Zeeb 		vap = ni->ni_vap;
50726b4cac81SBjoern A. Zeeb 	else
50736b4cac81SBjoern A. Zeeb 		/*
50746b4cac81SBjoern A. Zeeb 		 * XXX-BZ can we improve this by looking at the frame hdr
50756b4cac81SBjoern A. Zeeb 		 * or other meta-data passed up?
50766b4cac81SBjoern A. Zeeb 		 */
50776b4cac81SBjoern A. Zeeb 		vap = TAILQ_FIRST(&ic->ic_vaps);
50786b4cac81SBjoern A. Zeeb 
50799d9ba2b7SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
50809d9ba2b7SBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_RX)
5081c0cadd99SBjoern A. Zeeb 		printf("TRACE %s: sta %p lsta %p state %d ni %p vap %p%s\n",
5082c0cadd99SBjoern A. Zeeb 		    __func__, sta, lsta, (lsta != NULL) ? lsta->state : -1,
5083c0cadd99SBjoern A. Zeeb 		    ni, vap, is_beacon ? " beacon" : "");
50849d9ba2b7SBjoern A. Zeeb #endif
50856b4cac81SBjoern A. Zeeb 
5086c0cadd99SBjoern A. Zeeb 	if (ni != NULL && vap != NULL && is_beacon &&
5087c8dafefaSBjoern A. Zeeb 	    rx_status->device_timestamp > 0 &&
5088c8dafefaSBjoern A. Zeeb 	    m->m_pkthdr.len >= sizeof(struct ieee80211_frame)) {
5089c8dafefaSBjoern A. Zeeb 		struct lkpi_vif *lvif;
5090c8dafefaSBjoern A. Zeeb 		struct ieee80211_vif *vif;
5091c8dafefaSBjoern A. Zeeb 		struct ieee80211_frame *wh;
5092c8dafefaSBjoern A. Zeeb 
5093c8dafefaSBjoern A. Zeeb 		wh = mtod(m, struct ieee80211_frame *);
5094c8dafefaSBjoern A. Zeeb 		if (!IEEE80211_ADDR_EQ(wh->i_addr2, ni->ni_bssid))
5095c8dafefaSBjoern A. Zeeb 			goto skip_device_ts;
5096c8dafefaSBjoern A. Zeeb 
5097c8dafefaSBjoern A. Zeeb 		lvif = VAP_TO_LVIF(vap);
5098c8dafefaSBjoern A. Zeeb 		vif = LVIF_TO_VIF(lvif);
5099c8dafefaSBjoern A. Zeeb 
5100c8dafefaSBjoern A. Zeeb 		IMPROVE("TIMING_BEACON_ONLY?");
5101c8dafefaSBjoern A. Zeeb 		/* mac80211 specific (not net80211) so keep it here. */
5102c8dafefaSBjoern A. Zeeb 		vif->bss_conf.sync_device_ts = rx_status->device_timestamp;
5103c8dafefaSBjoern A. Zeeb 		/*
5104c8dafefaSBjoern A. Zeeb 		 * net80211 should take care of the other information (sync_tsf,
5105c8dafefaSBjoern A. Zeeb 		 * sync_dtim_count) as otherwise we need to parse the beacon.
5106c8dafefaSBjoern A. Zeeb 		 */
5107c8dafefaSBjoern A. Zeeb skip_device_ts:
51089fb91463SBjoern A. Zeeb 		;
51099fb91463SBjoern A. Zeeb 	}
5110c8dafefaSBjoern A. Zeeb 
51116b4cac81SBjoern A. Zeeb 	if (vap != NULL && vap->iv_state > IEEE80211_S_INIT &&
51126b4cac81SBjoern A. Zeeb 	    ieee80211_radiotap_active_vap(vap)) {
51136b4cac81SBjoern A. Zeeb 		struct lkpi_radiotap_rx_hdr *rtap;
51146b4cac81SBjoern A. Zeeb 
51156b4cac81SBjoern A. Zeeb 		rtap = &lhw->rtap_rx;
51166b4cac81SBjoern A. Zeeb 		rtap->wr_tsft = rx_status->device_timestamp;
51176b4cac81SBjoern A. Zeeb 		rtap->wr_flags = 0;
51186b4cac81SBjoern A. Zeeb 		if (rx_status->enc_flags & RX_ENC_FLAG_SHORTPRE)
51196b4cac81SBjoern A. Zeeb 			rtap->wr_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
51206b4cac81SBjoern A. Zeeb 		if (rx_status->enc_flags & RX_ENC_FLAG_SHORT_GI)
51216b4cac81SBjoern A. Zeeb 			rtap->wr_flags |= IEEE80211_RADIOTAP_F_SHORTGI;
51226b4cac81SBjoern A. Zeeb #if 0	/* .. or it does not given we strip it below. */
51236b4cac81SBjoern A. Zeeb 		if (ieee80211_hw_check(hw, RX_INCLUDES_FCS))
51246b4cac81SBjoern A. Zeeb 			rtap->wr_flags |= IEEE80211_RADIOTAP_F_FCS;
51256b4cac81SBjoern A. Zeeb #endif
51266b4cac81SBjoern A. Zeeb 		if (rx_status->flag & RX_FLAG_FAILED_FCS_CRC)
51276b4cac81SBjoern A. Zeeb 			rtap->wr_flags |= IEEE80211_RADIOTAP_F_BADFCS;
51286b4cac81SBjoern A. Zeeb 		rtap->wr_rate = 0;
51296b4cac81SBjoern A. Zeeb 		IMPROVE();
51306b4cac81SBjoern A. Zeeb 		/* XXX TODO status->encoding / rate_index / bw */
51316b4cac81SBjoern A. Zeeb 		rtap->wr_chan_freq = htole16(rx_stats.c_freq);
51326b4cac81SBjoern A. Zeeb 		if (ic->ic_curchan->ic_ieee == rx_stats.c_ieee)
51336b4cac81SBjoern A. Zeeb 			rtap->wr_chan_flags = htole16(ic->ic_curchan->ic_flags);
5134170acccfSBjoern A. Zeeb 		rtap->wr_dbm_antsignal = rssi;
51356b4cac81SBjoern A. Zeeb 		rtap->wr_dbm_antnoise = rx_stats.c_nf;
51366b4cac81SBjoern A. Zeeb 	}
51376b4cac81SBjoern A. Zeeb 
51386b4cac81SBjoern A. Zeeb 	if (ieee80211_hw_check(hw, RX_INCLUDES_FCS))
51396b4cac81SBjoern A. Zeeb 		m_adj(m, -IEEE80211_CRC_LEN);
51406b4cac81SBjoern A. Zeeb 
5141e30e05d3SBjoern A. Zeeb #if 0
5142e30e05d3SBjoern A. Zeeb 	if (list != NULL) {
5143e30e05d3SBjoern A. Zeeb 		/*
5144e30e05d3SBjoern A. Zeeb 		* Normally this would be queued up and delivered by
5145e30e05d3SBjoern A. Zeeb 		* netif_receive_skb_list(), napi_gro_receive(), or the like.
5146e30e05d3SBjoern A. Zeeb 		* See mt76::mac80211.c as only current possible consumer.
5147e30e05d3SBjoern A. Zeeb 		*/
5148e30e05d3SBjoern A. Zeeb 		IMPROVE("we simply pass the packet to net80211 to deal with.");
5149e30e05d3SBjoern A. Zeeb 	}
5150e30e05d3SBjoern A. Zeeb #endif
5151e30e05d3SBjoern A. Zeeb 
5152759a996dSBjoern A. Zeeb 	/*
5153759a996dSBjoern A. Zeeb 	 * Attach meta-information to the mbuf for the deferred RX path.
5154759a996dSBjoern A. Zeeb 	 * Currently this is best-effort.  Should we need to be hard,
5155759a996dSBjoern A. Zeeb 	 * drop the frame and goto err;
5156759a996dSBjoern A. Zeeb 	 */
51576b4cac81SBjoern A. Zeeb 	if (ni != NULL) {
5158759a996dSBjoern A. Zeeb 		struct m_tag *mtag;
5159759a996dSBjoern A. Zeeb 		struct lkpi_80211_tag_rxni *rxni;
5160759a996dSBjoern A. Zeeb 
5161759a996dSBjoern A. Zeeb 		mtag = m_tag_alloc(MTAG_ABI_LKPI80211, LKPI80211_TAG_RXNI,
5162759a996dSBjoern A. Zeeb 		    sizeof(*rxni), IEEE80211_M_NOWAIT);
5163759a996dSBjoern A. Zeeb 		if (mtag != NULL) {
5164759a996dSBjoern A. Zeeb 			rxni = (struct lkpi_80211_tag_rxni *)(mtag + 1);
5165759a996dSBjoern A. Zeeb 			rxni->ni = ni;		/* We hold a reference. */
5166759a996dSBjoern A. Zeeb 			m_tag_prepend(m, mtag);
5167759a996dSBjoern A. Zeeb 		}
51686b4cac81SBjoern A. Zeeb 	}
51696b4cac81SBjoern A. Zeeb 
5170759a996dSBjoern A. Zeeb 	LKPI_80211_LHW_RXQ_LOCK(lhw);
5171759a996dSBjoern A. Zeeb 	if (lhw->rxq_stopped) {
5172759a996dSBjoern A. Zeeb 		LKPI_80211_LHW_RXQ_UNLOCK(lhw);
5173759a996dSBjoern A. Zeeb 		m_freem(m);
5174759a996dSBjoern A. Zeeb 		goto err;
5175759a996dSBjoern A. Zeeb 	}
5176759a996dSBjoern A. Zeeb 
5177759a996dSBjoern A. Zeeb 	mbufq_enqueue(&lhw->rxq, m);
5178759a996dSBjoern A. Zeeb 	taskqueue_enqueue(taskqueue_thread, &lhw->rxq_task);
5179759a996dSBjoern A. Zeeb 	LKPI_80211_LHW_RXQ_UNLOCK(lhw);
51806b4cac81SBjoern A. Zeeb 
51816b4cac81SBjoern A. Zeeb 	IMPROVE();
51826b4cac81SBjoern A. Zeeb 
51836b4cac81SBjoern A. Zeeb err:
51846b4cac81SBjoern A. Zeeb 	/* The skb is ours so we can free it :-) */
51856b4cac81SBjoern A. Zeeb 	kfree_skb(skb);
51866b4cac81SBjoern A. Zeeb }
51876b4cac81SBjoern A. Zeeb 
51886b4cac81SBjoern A. Zeeb uint8_t
5189ec190d91SBjoern A. Zeeb linuxkpi_ieee80211_get_tid(struct ieee80211_hdr *hdr, bool nonqos_ok)
51906b4cac81SBjoern A. Zeeb {
51916b4cac81SBjoern A. Zeeb 	const struct ieee80211_frame *wh;
5192ec190d91SBjoern A. Zeeb 	uint8_t tid;
5193ec190d91SBjoern A. Zeeb 
5194ec190d91SBjoern A. Zeeb 	/* Linux seems to assume this is a QOS-Data-Frame */
5195ec190d91SBjoern A. Zeeb 	KASSERT(nonqos_ok || ieee80211_is_data_qos(hdr->frame_control),
5196ec190d91SBjoern A. Zeeb 	   ("%s: hdr %p fc %#06x not qos_data\n", __func__, hdr,
5197ec190d91SBjoern A. Zeeb 	   hdr->frame_control));
51986b4cac81SBjoern A. Zeeb 
51996b4cac81SBjoern A. Zeeb 	wh = (const struct ieee80211_frame *)hdr;
5200ec190d91SBjoern A. Zeeb 	tid = ieee80211_gettid(wh);
5201ec190d91SBjoern A. Zeeb 	KASSERT(nonqos_ok || tid == (tid & IEEE80211_QOS_TID), ("%s: tid %u "
5202ec190d91SBjoern A. Zeeb 	   "not expected (%u?)\n", __func__, tid, IEEE80211_NONQOS_TID));
5203ec190d91SBjoern A. Zeeb 
5204ec190d91SBjoern A. Zeeb 	return (tid);
52056b4cac81SBjoern A. Zeeb }
52066b4cac81SBjoern A. Zeeb 
52076b4cac81SBjoern A. Zeeb struct wiphy *
52086b4cac81SBjoern A. Zeeb linuxkpi_wiphy_new(const struct cfg80211_ops *ops, size_t priv_len)
52096b4cac81SBjoern A. Zeeb {
52106b4cac81SBjoern A. Zeeb 	struct lkpi_wiphy *lwiphy;
52116b4cac81SBjoern A. Zeeb 
52126b4cac81SBjoern A. Zeeb 	lwiphy = kzalloc(sizeof(*lwiphy) + priv_len, GFP_KERNEL);
52136b4cac81SBjoern A. Zeeb 	if (lwiphy == NULL)
52146b4cac81SBjoern A. Zeeb 		return (NULL);
52156b4cac81SBjoern A. Zeeb 	lwiphy->ops = ops;
52166b4cac81SBjoern A. Zeeb 
52176b4cac81SBjoern A. Zeeb 	/* XXX TODO */
52186b4cac81SBjoern A. Zeeb 	return (LWIPHY_TO_WIPHY(lwiphy));
52196b4cac81SBjoern A. Zeeb }
52206b4cac81SBjoern A. Zeeb 
52216b4cac81SBjoern A. Zeeb void
52226b4cac81SBjoern A. Zeeb linuxkpi_wiphy_free(struct wiphy *wiphy)
52236b4cac81SBjoern A. Zeeb {
52246b4cac81SBjoern A. Zeeb 	struct lkpi_wiphy *lwiphy;
52256b4cac81SBjoern A. Zeeb 
52266b4cac81SBjoern A. Zeeb 	if (wiphy == NULL)
52276b4cac81SBjoern A. Zeeb 		return;
52286b4cac81SBjoern A. Zeeb 
52296b4cac81SBjoern A. Zeeb 	lwiphy = WIPHY_TO_LWIPHY(wiphy);
52306b4cac81SBjoern A. Zeeb 	kfree(lwiphy);
52316b4cac81SBjoern A. Zeeb }
52326b4cac81SBjoern A. Zeeb 
52336b4cac81SBjoern A. Zeeb uint32_t
52346b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_channel_to_frequency(uint32_t channel,
52356b4cac81SBjoern A. Zeeb     enum nl80211_band band)
52366b4cac81SBjoern A. Zeeb {
52376b4cac81SBjoern A. Zeeb 
52386b4cac81SBjoern A. Zeeb 	switch (band) {
52396b4cac81SBjoern A. Zeeb 	case NL80211_BAND_2GHZ:
52406b4cac81SBjoern A. Zeeb 		return (ieee80211_ieee2mhz(channel, IEEE80211_CHAN_2GHZ));
52416b4cac81SBjoern A. Zeeb 		break;
52426b4cac81SBjoern A. Zeeb 	case NL80211_BAND_5GHZ:
52436b4cac81SBjoern A. Zeeb 		return (ieee80211_ieee2mhz(channel, IEEE80211_CHAN_5GHZ));
52446b4cac81SBjoern A. Zeeb 		break;
52456b4cac81SBjoern A. Zeeb 	default:
52466b4cac81SBjoern A. Zeeb 		/* XXX abort, retry, error, panic? */
52476b4cac81SBjoern A. Zeeb 		break;
52486b4cac81SBjoern A. Zeeb 	}
52496b4cac81SBjoern A. Zeeb 
52506b4cac81SBjoern A. Zeeb 	return (0);
52516b4cac81SBjoern A. Zeeb }
52526b4cac81SBjoern A. Zeeb 
52536b4cac81SBjoern A. Zeeb uint32_t
52546b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_frequency_to_channel(uint32_t freq, uint32_t flags __unused)
52556b4cac81SBjoern A. Zeeb {
52566b4cac81SBjoern A. Zeeb 
52576b4cac81SBjoern A. Zeeb 	return (ieee80211_mhz2ieee(freq, 0));
52586b4cac81SBjoern A. Zeeb }
52596b4cac81SBjoern A. Zeeb 
5260ac867c20SBjoern A. Zeeb #if 0
52616b4cac81SBjoern A. Zeeb static struct lkpi_sta *
52626b4cac81SBjoern A. Zeeb lkpi_find_lsta_by_ni(struct lkpi_vif *lvif, struct ieee80211_node *ni)
52636b4cac81SBjoern A. Zeeb {
52646b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta, *temp;
52656b4cac81SBjoern A. Zeeb 
52666b4cac81SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
52676b4cac81SBjoern A. Zeeb 	TAILQ_FOREACH_SAFE(lsta, &lvif->lsta_head, lsta_entry, temp) {
52686b4cac81SBjoern A. Zeeb 		if (lsta->ni == ni) {
52696b4cac81SBjoern A. Zeeb 			LKPI_80211_LVIF_UNLOCK(lvif);
52706b4cac81SBjoern A. Zeeb 			return (lsta);
52716b4cac81SBjoern A. Zeeb 		}
52726b4cac81SBjoern A. Zeeb 	}
52736b4cac81SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
52746b4cac81SBjoern A. Zeeb 
52756b4cac81SBjoern A. Zeeb 	return (NULL);
52766b4cac81SBjoern A. Zeeb }
5277ac867c20SBjoern A. Zeeb #endif
52786b4cac81SBjoern A. Zeeb 
52796b4cac81SBjoern A. Zeeb struct ieee80211_sta *
52806b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_find_sta(struct ieee80211_vif *vif, const u8 *peer)
52816b4cac81SBjoern A. Zeeb {
52826b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
52836b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta, *temp;
52846b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
52856b4cac81SBjoern A. Zeeb 
52866b4cac81SBjoern A. Zeeb 	lvif = VIF_TO_LVIF(vif);
52876b4cac81SBjoern A. Zeeb 
52886b4cac81SBjoern A. Zeeb 	LKPI_80211_LVIF_LOCK(lvif);
52896b4cac81SBjoern A. Zeeb 	TAILQ_FOREACH_SAFE(lsta, &lvif->lsta_head, lsta_entry, temp) {
52906b4cac81SBjoern A. Zeeb 		sta = LSTA_TO_STA(lsta);
52916b4cac81SBjoern A. Zeeb 		if (IEEE80211_ADDR_EQ(sta->addr, peer)) {
52926b4cac81SBjoern A. Zeeb 			LKPI_80211_LVIF_UNLOCK(lvif);
52936b4cac81SBjoern A. Zeeb 			return (sta);
52946b4cac81SBjoern A. Zeeb 		}
52956b4cac81SBjoern A. Zeeb 	}
52966b4cac81SBjoern A. Zeeb 	LKPI_80211_LVIF_UNLOCK(lvif);
52976b4cac81SBjoern A. Zeeb 	return (NULL);
52986b4cac81SBjoern A. Zeeb }
52996b4cac81SBjoern A. Zeeb 
53006b4cac81SBjoern A. Zeeb struct ieee80211_sta *
53012e183d99SBjoern A. Zeeb linuxkpi_ieee80211_find_sta_by_ifaddr(struct ieee80211_hw *hw,
53022e183d99SBjoern A. Zeeb     const uint8_t *addr, const uint8_t *ourvifaddr)
53036b4cac81SBjoern A. Zeeb {
53046b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
53056b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
53066b4cac81SBjoern A. Zeeb 	struct lkpi_sta *lsta;
53076b4cac81SBjoern A. Zeeb 	struct ieee80211_vif *vif;
53086b4cac81SBjoern A. Zeeb 	struct ieee80211_sta *sta;
53096b4cac81SBjoern A. Zeeb 
53106b4cac81SBjoern A. Zeeb 	lhw = wiphy_priv(hw->wiphy);
53116b4cac81SBjoern A. Zeeb 	sta = NULL;
53126b4cac81SBjoern A. Zeeb 
53138891c455SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_LOCK(lhw);
53146b4cac81SBjoern A. Zeeb 	TAILQ_FOREACH(lvif, &lhw->lvif_head, lvif_entry) {
53156b4cac81SBjoern A. Zeeb 
53166b4cac81SBjoern A. Zeeb 		/* XXX-BZ check our address from the vif. */
53176b4cac81SBjoern A. Zeeb 
53186b4cac81SBjoern A. Zeeb 		vif = LVIF_TO_VIF(lvif);
53196b4cac81SBjoern A. Zeeb 		if (ourvifaddr != NULL &&
53206b4cac81SBjoern A. Zeeb 		    !IEEE80211_ADDR_EQ(vif->addr, ourvifaddr))
53216b4cac81SBjoern A. Zeeb 			continue;
53226b4cac81SBjoern A. Zeeb 		sta = linuxkpi_ieee80211_find_sta(vif, addr);
53236b4cac81SBjoern A. Zeeb 		if (sta != NULL)
53246b4cac81SBjoern A. Zeeb 			break;
53256b4cac81SBjoern A. Zeeb 	}
53268891c455SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_UNLOCK(lhw);
53276b4cac81SBjoern A. Zeeb 
53286b4cac81SBjoern A. Zeeb 	if (sta != NULL) {
53296b4cac81SBjoern A. Zeeb 		lsta = STA_TO_LSTA(sta);
53306b4cac81SBjoern A. Zeeb 		if (!lsta->added_to_drv)
53316b4cac81SBjoern A. Zeeb 			return (NULL);
53326b4cac81SBjoern A. Zeeb 	}
53336b4cac81SBjoern A. Zeeb 
53346b4cac81SBjoern A. Zeeb 	return (sta);
53356b4cac81SBjoern A. Zeeb }
53366b4cac81SBjoern A. Zeeb 
53376b4cac81SBjoern A. Zeeb struct sk_buff *
53386b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_tx_dequeue(struct ieee80211_hw *hw,
53396b4cac81SBjoern A. Zeeb     struct ieee80211_txq *txq)
53406b4cac81SBjoern A. Zeeb {
53416b4cac81SBjoern A. Zeeb 	struct lkpi_txq *ltxq;
53420cbcfa19SBjoern A. Zeeb 	struct lkpi_vif *lvif;
53436b4cac81SBjoern A. Zeeb 	struct sk_buff *skb;
53446b4cac81SBjoern A. Zeeb 
53450cbcfa19SBjoern A. Zeeb 	skb = NULL;
53466b4cac81SBjoern A. Zeeb 	ltxq = TXQ_TO_LTXQ(txq);
53476b4cac81SBjoern A. Zeeb 	ltxq->seen_dequeue = true;
53486b4cac81SBjoern A. Zeeb 
53490cbcfa19SBjoern A. Zeeb 	if (ltxq->stopped)
53500cbcfa19SBjoern A. Zeeb 		goto stopped;
53510cbcfa19SBjoern A. Zeeb 
53520cbcfa19SBjoern A. Zeeb 	lvif = VIF_TO_LVIF(ltxq->txq.vif);
53530cbcfa19SBjoern A. Zeeb 	if (lvif->hw_queue_stopped[ltxq->txq.ac]) {
53540cbcfa19SBjoern A. Zeeb 		ltxq->stopped = true;
53550cbcfa19SBjoern A. Zeeb 		goto stopped;
53560cbcfa19SBjoern A. Zeeb 	}
53570cbcfa19SBjoern A. Zeeb 
5358eac3646fSBjoern A. Zeeb 	IMPROVE("hw(TX_FRAG_LIST)");
5359eac3646fSBjoern A. Zeeb 
5360eac3646fSBjoern A. Zeeb 	LKPI_80211_LTXQ_LOCK(ltxq);
53616b4cac81SBjoern A. Zeeb 	skb = skb_dequeue(&ltxq->skbq);
5362eac3646fSBjoern A. Zeeb 	LKPI_80211_LTXQ_UNLOCK(ltxq);
53636b4cac81SBjoern A. Zeeb 
53640cbcfa19SBjoern A. Zeeb stopped:
53656b4cac81SBjoern A. Zeeb 	return (skb);
53666b4cac81SBjoern A. Zeeb }
53676b4cac81SBjoern A. Zeeb 
53686b4cac81SBjoern A. Zeeb void
53696b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_txq_get_depth(struct ieee80211_txq *txq,
537086220d3cSBjoern A. Zeeb     unsigned long *frame_cnt, unsigned long *byte_cnt)
53716b4cac81SBjoern A. Zeeb {
53726b4cac81SBjoern A. Zeeb 	struct lkpi_txq *ltxq;
53736b4cac81SBjoern A. Zeeb 	struct sk_buff *skb;
537486220d3cSBjoern A. Zeeb 	unsigned long fc, bc;
53756b4cac81SBjoern A. Zeeb 
53766b4cac81SBjoern A. Zeeb 	ltxq = TXQ_TO_LTXQ(txq);
53776b4cac81SBjoern A. Zeeb 
53786b4cac81SBjoern A. Zeeb 	fc = bc = 0;
5379eac3646fSBjoern A. Zeeb 	LKPI_80211_LTXQ_LOCK(ltxq);
53806b4cac81SBjoern A. Zeeb 	skb_queue_walk(&ltxq->skbq, skb) {
53816b4cac81SBjoern A. Zeeb 		fc++;
53826b4cac81SBjoern A. Zeeb 		bc += skb->len;
53836b4cac81SBjoern A. Zeeb 	}
5384eac3646fSBjoern A. Zeeb 	LKPI_80211_LTXQ_UNLOCK(ltxq);
53856b4cac81SBjoern A. Zeeb 	if (frame_cnt)
53866b4cac81SBjoern A. Zeeb 		*frame_cnt = fc;
53876b4cac81SBjoern A. Zeeb 	if (byte_cnt)
53886b4cac81SBjoern A. Zeeb 		*byte_cnt = bc;
53896b4cac81SBjoern A. Zeeb 
53906b4cac81SBjoern A. Zeeb 	/* Validate that this is doing the correct thing. */
53916b4cac81SBjoern A. Zeeb 	/* Should we keep track on en/dequeue? */
53926b4cac81SBjoern A. Zeeb 	IMPROVE();
53936b4cac81SBjoern A. Zeeb }
53946b4cac81SBjoern A. Zeeb 
53956b4cac81SBjoern A. Zeeb /*
53966b4cac81SBjoern A. Zeeb  * We are called from ieee80211_free_txskb() or ieee80211_tx_status().
53976b4cac81SBjoern A. Zeeb  * The latter tries to derive the success status from the info flags
53986b4cac81SBjoern A. Zeeb  * passed back from the driver.  rawx_mit() saves the ni on the m and the
53996b4cac81SBjoern A. Zeeb  * m on the skb for us to be able to give feedback to net80211.
54006b4cac81SBjoern A. Zeeb  */
5401a8397571SBjoern A. Zeeb static void
5402a8397571SBjoern A. Zeeb _lkpi_ieee80211_free_txskb(struct ieee80211_hw *hw, struct sk_buff *skb,
54036b4cac81SBjoern A. Zeeb     int status)
54046b4cac81SBjoern A. Zeeb {
54056b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
54066b4cac81SBjoern A. Zeeb 	struct mbuf *m;
54076b4cac81SBjoern A. Zeeb 
54086b4cac81SBjoern A. Zeeb 	m = skb->m;
54096b4cac81SBjoern A. Zeeb 	skb->m = NULL;
54106b4cac81SBjoern A. Zeeb 
54116b4cac81SBjoern A. Zeeb 	if (m != NULL) {
54126b4cac81SBjoern A. Zeeb 		ni = m->m_pkthdr.PH_loc.ptr;
54136b4cac81SBjoern A. Zeeb 		/* Status: 0 is ok, != 0 is error. */
54146b4cac81SBjoern A. Zeeb 		ieee80211_tx_complete(ni, m, status);
54156b4cac81SBjoern A. Zeeb 		/* ni & mbuf were consumed. */
54166b4cac81SBjoern A. Zeeb 	}
5417a8397571SBjoern A. Zeeb }
54186b4cac81SBjoern A. Zeeb 
5419a8397571SBjoern A. Zeeb void
5420a8397571SBjoern A. Zeeb linuxkpi_ieee80211_free_txskb(struct ieee80211_hw *hw, struct sk_buff *skb,
5421a8397571SBjoern A. Zeeb     int status)
5422a8397571SBjoern A. Zeeb {
5423a8397571SBjoern A. Zeeb 
5424a8397571SBjoern A. Zeeb 	_lkpi_ieee80211_free_txskb(hw, skb, status);
54256b4cac81SBjoern A. Zeeb 	kfree_skb(skb);
54266b4cac81SBjoern A. Zeeb }
54276b4cac81SBjoern A. Zeeb 
5428383b3e8fSBjoern A. Zeeb void
5429a8397571SBjoern A. Zeeb linuxkpi_ieee80211_tx_status_ext(struct ieee80211_hw *hw,
5430a8397571SBjoern A. Zeeb     struct ieee80211_tx_status *txstat)
5431383b3e8fSBjoern A. Zeeb {
5432a8397571SBjoern A. Zeeb 	struct sk_buff *skb;
5433383b3e8fSBjoern A. Zeeb 	struct ieee80211_tx_info *info;
5434383b3e8fSBjoern A. Zeeb 	struct ieee80211_ratectl_tx_status txs;
5435383b3e8fSBjoern A. Zeeb 	struct ieee80211_node *ni;
5436383b3e8fSBjoern A. Zeeb 	int status;
5437383b3e8fSBjoern A. Zeeb 
5438a8397571SBjoern A. Zeeb 	skb = txstat->skb;
5439383b3e8fSBjoern A. Zeeb 	if (skb->m != NULL) {
5440383b3e8fSBjoern A. Zeeb 		struct mbuf *m;
5441383b3e8fSBjoern A. Zeeb 
5442383b3e8fSBjoern A. Zeeb 		m = skb->m;
5443383b3e8fSBjoern A. Zeeb 		ni = m->m_pkthdr.PH_loc.ptr;
5444383b3e8fSBjoern A. Zeeb 		memset(&txs, 0, sizeof(txs));
5445383b3e8fSBjoern A. Zeeb 	} else {
5446383b3e8fSBjoern A. Zeeb 		ni = NULL;
5447383b3e8fSBjoern A. Zeeb 	}
5448383b3e8fSBjoern A. Zeeb 
5449a8397571SBjoern A. Zeeb 	info = txstat->info;
5450383b3e8fSBjoern A. Zeeb 	if (info->flags & IEEE80211_TX_STAT_ACK) {
5451383b3e8fSBjoern A. Zeeb 		status = 0;	/* No error. */
5452383b3e8fSBjoern A. Zeeb 		txs.status = IEEE80211_RATECTL_TX_SUCCESS;
5453383b3e8fSBjoern A. Zeeb 	} else {
5454383b3e8fSBjoern A. Zeeb 		status = 1;
5455383b3e8fSBjoern A. Zeeb 		txs.status = IEEE80211_RATECTL_TX_FAIL_UNSPECIFIED;
5456383b3e8fSBjoern A. Zeeb 	}
5457383b3e8fSBjoern A. Zeeb 
5458383b3e8fSBjoern A. Zeeb 	if (ni != NULL) {
5459e2c5ab09SJohn Baldwin 		int ridx __unused;
5460383b3e8fSBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
5461383b3e8fSBjoern A. Zeeb 		int old_rate;
5462383b3e8fSBjoern A. Zeeb 
5463383b3e8fSBjoern A. Zeeb 		old_rate = ni->ni_vap->iv_bss->ni_txrate;
5464383b3e8fSBjoern A. Zeeb #endif
5465383b3e8fSBjoern A. Zeeb 		txs.pktlen = skb->len;
5466383b3e8fSBjoern A. Zeeb 		txs.flags |= IEEE80211_RATECTL_STATUS_PKTLEN;
5467383b3e8fSBjoern A. Zeeb 		if (info->status.rates[0].count > 1) {
5468383b3e8fSBjoern A. Zeeb 			txs.long_retries = info->status.rates[0].count - 1;	/* 1 + retries in drivers. */
5469383b3e8fSBjoern A. Zeeb 			txs.flags |= IEEE80211_RATECTL_STATUS_LONG_RETRY;
5470383b3e8fSBjoern A. Zeeb 		}
5471383b3e8fSBjoern A. Zeeb #if 0		/* Unused in net80211 currently. */
5472a8397571SBjoern A. Zeeb 		/* XXX-BZ convert check .flags for MCS/VHT/.. */
5473383b3e8fSBjoern A. Zeeb 		txs.final_rate = info->status.rates[0].idx;
5474383b3e8fSBjoern A. Zeeb 		txs.flags |= IEEE80211_RATECTL_STATUS_FINAL_RATE;
5475383b3e8fSBjoern A. Zeeb #endif
5476adff403fSBjoern A. Zeeb 		if (info->status.flags & IEEE80211_TX_STATUS_ACK_SIGNAL_VALID) {
5477383b3e8fSBjoern A. Zeeb 			txs.rssi = info->status.ack_signal;		/* XXX-BZ CONVERT? */
5478383b3e8fSBjoern A. Zeeb 			txs.flags |= IEEE80211_RATECTL_STATUS_RSSI;
5479383b3e8fSBjoern A. Zeeb 		}
5480383b3e8fSBjoern A. Zeeb 
5481383b3e8fSBjoern A. Zeeb 		IMPROVE("only update of rate matches but that requires us to get a proper rate");
5482383b3e8fSBjoern A. Zeeb 		ieee80211_ratectl_tx_complete(ni, &txs);
5483383b3e8fSBjoern A. Zeeb 		ridx = ieee80211_ratectl_rate(ni->ni_vap->iv_bss, NULL, 0);
5484383b3e8fSBjoern A. Zeeb 
5485383b3e8fSBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
5486383b3e8fSBjoern A. Zeeb 		if (linuxkpi_debug_80211 & D80211_TRACE_TX) {
5487383b3e8fSBjoern A. Zeeb 			printf("TX-RATE: %s: old %d new %d ridx %d, "
5488383b3e8fSBjoern A. Zeeb 			    "long_retries %d\n", __func__,
5489383b3e8fSBjoern A. Zeeb 			    old_rate, ni->ni_vap->iv_bss->ni_txrate,
5490383b3e8fSBjoern A. Zeeb 			    ridx, txs.long_retries);
5491383b3e8fSBjoern A. Zeeb 		}
5492383b3e8fSBjoern A. Zeeb #endif
5493383b3e8fSBjoern A. Zeeb 	}
5494383b3e8fSBjoern A. Zeeb 
5495383b3e8fSBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
5496383b3e8fSBjoern A. Zeeb 	if (linuxkpi_debug_80211 & D80211_TRACE_TX)
5497383b3e8fSBjoern A. Zeeb 		printf("TX-STATUS: %s: hw %p skb %p status %d : flags %#x "
5498383b3e8fSBjoern A. Zeeb 		    "band %u hw_queue %u tx_time_est %d : "
5499383b3e8fSBjoern A. Zeeb 		    "rates [ %u %u %#x, %u %u %#x, %u %u %#x, %u %u %#x ] "
5500383b3e8fSBjoern A. Zeeb 		    "ack_signal %u ampdu_ack_len %u ampdu_len %u antenna %u "
5501adff403fSBjoern A. Zeeb 		    "tx_time %u flags %#x "
5502383b3e8fSBjoern A. Zeeb 		    "status_driver_data [ %p %p ]\n",
5503383b3e8fSBjoern A. Zeeb 		    __func__, hw, skb, status, info->flags,
5504383b3e8fSBjoern A. Zeeb 		    info->band, info->hw_queue, info->tx_time_est,
5505383b3e8fSBjoern A. Zeeb 		    info->status.rates[0].idx, info->status.rates[0].count,
5506383b3e8fSBjoern A. Zeeb 		    info->status.rates[0].flags,
5507383b3e8fSBjoern A. Zeeb 		    info->status.rates[1].idx, info->status.rates[1].count,
5508383b3e8fSBjoern A. Zeeb 		    info->status.rates[1].flags,
5509383b3e8fSBjoern A. Zeeb 		    info->status.rates[2].idx, info->status.rates[2].count,
5510383b3e8fSBjoern A. Zeeb 		    info->status.rates[2].flags,
5511383b3e8fSBjoern A. Zeeb 		    info->status.rates[3].idx, info->status.rates[3].count,
5512383b3e8fSBjoern A. Zeeb 		    info->status.rates[3].flags,
5513383b3e8fSBjoern A. Zeeb 		    info->status.ack_signal, info->status.ampdu_ack_len,
5514383b3e8fSBjoern A. Zeeb 		    info->status.ampdu_len, info->status.antenna,
5515adff403fSBjoern A. Zeeb 		    info->status.tx_time, info->status.flags,
5516383b3e8fSBjoern A. Zeeb 		    info->status.status_driver_data[0],
5517383b3e8fSBjoern A. Zeeb 		    info->status.status_driver_data[1]);
5518383b3e8fSBjoern A. Zeeb #endif
5519383b3e8fSBjoern A. Zeeb 
5520a8397571SBjoern A. Zeeb 	if (txstat->free_list) {
5521a8397571SBjoern A. Zeeb 		_lkpi_ieee80211_free_txskb(hw, skb, status);
5522a8397571SBjoern A. Zeeb 		list_add_tail(&skb->list, txstat->free_list);
5523a8397571SBjoern A. Zeeb 	} else {
5524383b3e8fSBjoern A. Zeeb 		linuxkpi_ieee80211_free_txskb(hw, skb, status);
5525383b3e8fSBjoern A. Zeeb 	}
5526a8397571SBjoern A. Zeeb }
5527a8397571SBjoern A. Zeeb 
5528a8397571SBjoern A. Zeeb void
5529a8397571SBjoern A. Zeeb linuxkpi_ieee80211_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb)
5530a8397571SBjoern A. Zeeb {
5531a8397571SBjoern A. Zeeb 	struct ieee80211_tx_status status;
5532a8397571SBjoern A. Zeeb 
5533a8397571SBjoern A. Zeeb 	memset(&status, 0, sizeof(status));
5534a8397571SBjoern A. Zeeb 	status.info = IEEE80211_SKB_CB(skb);
5535a8397571SBjoern A. Zeeb 	status.skb = skb;
5536a8397571SBjoern A. Zeeb 	/* sta, n_rates, rates, free_list? */
5537a8397571SBjoern A. Zeeb 
5538a8397571SBjoern A. Zeeb 	ieee80211_tx_status_ext(hw, &status);
5539a8397571SBjoern A. Zeeb }
5540383b3e8fSBjoern A. Zeeb 
55416b4cac81SBjoern A. Zeeb /*
55426b4cac81SBjoern A. Zeeb  * This is an internal bandaid for the moment for the way we glue
55436b4cac81SBjoern A. Zeeb  * skbs and mbufs together for TX.  Once we have skbs backed by
55446b4cac81SBjoern A. Zeeb  * mbufs this should go away.
55456b4cac81SBjoern A. Zeeb  * This is a public function but kept on the private KPI (lkpi_)
55466b4cac81SBjoern A. Zeeb  * and is not exposed by a header file.
55476b4cac81SBjoern A. Zeeb  */
55486b4cac81SBjoern A. Zeeb static void
55496b4cac81SBjoern A. Zeeb lkpi_ieee80211_free_skb_mbuf(void *p)
55506b4cac81SBjoern A. Zeeb {
55516b4cac81SBjoern A. Zeeb 	struct ieee80211_node *ni;
55526b4cac81SBjoern A. Zeeb 	struct mbuf *m;
55536b4cac81SBjoern A. Zeeb 
55546b4cac81SBjoern A. Zeeb 	if (p == NULL)
55556b4cac81SBjoern A. Zeeb 		return;
55566b4cac81SBjoern A. Zeeb 
55576b4cac81SBjoern A. Zeeb 	m = (struct mbuf *)p;
55586b4cac81SBjoern A. Zeeb 	M_ASSERTPKTHDR(m);
55596b4cac81SBjoern A. Zeeb 
55606b4cac81SBjoern A. Zeeb 	ni = m->m_pkthdr.PH_loc.ptr;
55616b4cac81SBjoern A. Zeeb 	m->m_pkthdr.PH_loc.ptr = NULL;
55626b4cac81SBjoern A. Zeeb 	if (ni != NULL)
55636b4cac81SBjoern A. Zeeb 		ieee80211_free_node(ni);
55646b4cac81SBjoern A. Zeeb 	m_freem(m);
55656b4cac81SBjoern A. Zeeb }
55666b4cac81SBjoern A. Zeeb 
55676b4cac81SBjoern A. Zeeb void
55686b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_queue_delayed_work(struct ieee80211_hw *hw,
55696b4cac81SBjoern A. Zeeb     struct delayed_work *w, int delay)
55706b4cac81SBjoern A. Zeeb {
55716b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
55726b4cac81SBjoern A. Zeeb 
55736b4cac81SBjoern A. Zeeb 	/* Need to make sure hw is in a stable (non-suspended) state. */
55746b4cac81SBjoern A. Zeeb 	IMPROVE();
55756b4cac81SBjoern A. Zeeb 
55766b4cac81SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
55776b4cac81SBjoern A. Zeeb 	queue_delayed_work(lhw->workq, w, delay);
55786b4cac81SBjoern A. Zeeb }
55796b4cac81SBjoern A. Zeeb 
55806b4cac81SBjoern A. Zeeb void
55816b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_queue_work(struct ieee80211_hw *hw,
55826b4cac81SBjoern A. Zeeb     struct work_struct *w)
55836b4cac81SBjoern A. Zeeb {
55846b4cac81SBjoern A. Zeeb 	struct lkpi_hw *lhw;
55856b4cac81SBjoern A. Zeeb 
55866b4cac81SBjoern A. Zeeb 	/* Need to make sure hw is in a stable (non-suspended) state. */
55876b4cac81SBjoern A. Zeeb 	IMPROVE();
55886b4cac81SBjoern A. Zeeb 
55896b4cac81SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
55906b4cac81SBjoern A. Zeeb 	queue_work(lhw->workq, w);
55916b4cac81SBjoern A. Zeeb }
55926b4cac81SBjoern A. Zeeb 
55936b4cac81SBjoern A. Zeeb struct sk_buff *
5594ade774b1SBjoern A. Zeeb linuxkpi_ieee80211_probereq_get(struct ieee80211_hw *hw, uint8_t *addr,
5595ade774b1SBjoern A. Zeeb     uint8_t *ssid, size_t ssid_len, size_t tailroom)
5596ade774b1SBjoern A. Zeeb {
5597ade774b1SBjoern A. Zeeb 	struct sk_buff *skb;
5598ade774b1SBjoern A. Zeeb 	struct ieee80211_frame *wh;
5599ade774b1SBjoern A. Zeeb 	uint8_t *p;
5600ade774b1SBjoern A. Zeeb 	size_t len;
5601ade774b1SBjoern A. Zeeb 
5602ade774b1SBjoern A. Zeeb 	len = sizeof(*wh);
5603ade774b1SBjoern A. Zeeb 	len += 2 + ssid_len;
5604ade774b1SBjoern A. Zeeb 
5605ade774b1SBjoern A. Zeeb 	skb = dev_alloc_skb(hw->extra_tx_headroom + len + tailroom);
5606ade774b1SBjoern A. Zeeb 	if (skb == NULL)
5607ade774b1SBjoern A. Zeeb 		return (NULL);
5608ade774b1SBjoern A. Zeeb 
5609ade774b1SBjoern A. Zeeb 	skb_reserve(skb, hw->extra_tx_headroom);
5610ade774b1SBjoern A. Zeeb 
5611ade774b1SBjoern A. Zeeb 	wh = skb_put_zero(skb, sizeof(*wh));
5612ade774b1SBjoern A. Zeeb 	wh->i_fc[0] = IEEE80211_FC0_VERSION_0;
5613ade774b1SBjoern A. Zeeb 	wh->i_fc[0] |= IEEE80211_FC0_SUBTYPE_PROBE_REQ | IEEE80211_FC0_TYPE_MGT;
5614ade774b1SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(wh->i_addr1, ieee80211broadcastaddr);
5615ade774b1SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(wh->i_addr2, addr);
5616ade774b1SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(wh->i_addr3, ieee80211broadcastaddr);
5617ade774b1SBjoern A. Zeeb 
5618ade774b1SBjoern A. Zeeb 	p = skb_put(skb, 2 + ssid_len);
5619ade774b1SBjoern A. Zeeb 	*p++ = IEEE80211_ELEMID_SSID;
5620ade774b1SBjoern A. Zeeb 	*p++ = ssid_len;
5621ade774b1SBjoern A. Zeeb 	if (ssid_len > 0)
5622ade774b1SBjoern A. Zeeb 		memcpy(p, ssid, ssid_len);
5623ade774b1SBjoern A. Zeeb 
5624ade774b1SBjoern A. Zeeb 	return (skb);
5625ade774b1SBjoern A. Zeeb }
5626ade774b1SBjoern A. Zeeb 
5627ade774b1SBjoern A. Zeeb struct sk_buff *
56286b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_pspoll_get(struct ieee80211_hw *hw,
56296b4cac81SBjoern A. Zeeb     struct ieee80211_vif *vif)
56306b4cac81SBjoern A. Zeeb {
56316b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
56326b4cac81SBjoern A. Zeeb 	struct ieee80211vap *vap;
56336b4cac81SBjoern A. Zeeb 	struct sk_buff *skb;
56346b4cac81SBjoern A. Zeeb 	struct ieee80211_frame_pspoll *psp;
56356b4cac81SBjoern A. Zeeb 	uint16_t v;
56366b4cac81SBjoern A. Zeeb 
56376b4cac81SBjoern A. Zeeb 	skb = dev_alloc_skb(hw->extra_tx_headroom + sizeof(*psp));
56386b4cac81SBjoern A. Zeeb 	if (skb == NULL)
56396b4cac81SBjoern A. Zeeb 		return (NULL);
56406b4cac81SBjoern A. Zeeb 
56416b4cac81SBjoern A. Zeeb 	skb_reserve(skb, hw->extra_tx_headroom);
56426b4cac81SBjoern A. Zeeb 
56436b4cac81SBjoern A. Zeeb 	lvif = VIF_TO_LVIF(vif);
56446b4cac81SBjoern A. Zeeb 	vap = LVIF_TO_VAP(lvif);
56456b4cac81SBjoern A. Zeeb 
56466b4cac81SBjoern A. Zeeb 	psp = skb_put_zero(skb, sizeof(*psp));
56476b4cac81SBjoern A. Zeeb 	psp->i_fc[0] = IEEE80211_FC0_VERSION_0;
56486b4cac81SBjoern A. Zeeb 	psp->i_fc[0] |= IEEE80211_FC0_SUBTYPE_PS_POLL | IEEE80211_FC0_TYPE_CTL;
5649616e1330SBjoern A. Zeeb 	v = htole16(vif->cfg.aid | 1<<15 | 1<<16);
56506b4cac81SBjoern A. Zeeb 	memcpy(&psp->i_aid, &v, sizeof(v));
56516b4cac81SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(psp->i_bssid, vap->iv_bss->ni_macaddr);
56526b4cac81SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(psp->i_ta, vif->addr);
56536b4cac81SBjoern A. Zeeb 
56546b4cac81SBjoern A. Zeeb 	return (skb);
56556b4cac81SBjoern A. Zeeb }
56566b4cac81SBjoern A. Zeeb 
56576b4cac81SBjoern A. Zeeb struct sk_buff *
56586b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_nullfunc_get(struct ieee80211_hw *hw,
5659adff403fSBjoern A. Zeeb     struct ieee80211_vif *vif, int linkid, bool qos)
56606b4cac81SBjoern A. Zeeb {
56616b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
56626b4cac81SBjoern A. Zeeb 	struct ieee80211vap *vap;
56636b4cac81SBjoern A. Zeeb 	struct sk_buff *skb;
56646b4cac81SBjoern A. Zeeb 	struct ieee80211_frame *nullf;
56656b4cac81SBjoern A. Zeeb 
5666adff403fSBjoern A. Zeeb 	IMPROVE("linkid");
5667adff403fSBjoern A. Zeeb 
56686b4cac81SBjoern A. Zeeb 	skb = dev_alloc_skb(hw->extra_tx_headroom + sizeof(*nullf));
56696b4cac81SBjoern A. Zeeb 	if (skb == NULL)
56706b4cac81SBjoern A. Zeeb 		return (NULL);
56716b4cac81SBjoern A. Zeeb 
56726b4cac81SBjoern A. Zeeb 	skb_reserve(skb, hw->extra_tx_headroom);
56736b4cac81SBjoern A. Zeeb 
56746b4cac81SBjoern A. Zeeb 	lvif = VIF_TO_LVIF(vif);
56756b4cac81SBjoern A. Zeeb 	vap = LVIF_TO_VAP(lvif);
56766b4cac81SBjoern A. Zeeb 
56776b4cac81SBjoern A. Zeeb 	nullf = skb_put_zero(skb, sizeof(*nullf));
56786b4cac81SBjoern A. Zeeb 	nullf->i_fc[0] = IEEE80211_FC0_VERSION_0;
56796b4cac81SBjoern A. Zeeb 	nullf->i_fc[0] |= IEEE80211_FC0_SUBTYPE_NODATA | IEEE80211_FC0_TYPE_DATA;
56806b4cac81SBjoern A. Zeeb 	nullf->i_fc[1] = IEEE80211_FC1_DIR_TODS;
56816b4cac81SBjoern A. Zeeb 
56826b4cac81SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(nullf->i_addr1, vap->iv_bss->ni_bssid);
56836b4cac81SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(nullf->i_addr2, vif->addr);
56846b4cac81SBjoern A. Zeeb 	IEEE80211_ADDR_COPY(nullf->i_addr3, vap->iv_bss->ni_macaddr);
56856b4cac81SBjoern A. Zeeb 
56866b4cac81SBjoern A. Zeeb 	return (skb);
56876b4cac81SBjoern A. Zeeb }
56886b4cac81SBjoern A. Zeeb 
56896b4cac81SBjoern A. Zeeb struct wireless_dev *
56906b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_vif_to_wdev(struct ieee80211_vif *vif)
56916b4cac81SBjoern A. Zeeb {
56926b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
56936b4cac81SBjoern A. Zeeb 
56946b4cac81SBjoern A. Zeeb 	lvif = VIF_TO_LVIF(vif);
56956b4cac81SBjoern A. Zeeb 	return (&lvif->wdev);
56966b4cac81SBjoern A. Zeeb }
56976b4cac81SBjoern A. Zeeb 
56986b4cac81SBjoern A. Zeeb void
56996b4cac81SBjoern A. Zeeb linuxkpi_ieee80211_connection_loss(struct ieee80211_vif *vif)
57006b4cac81SBjoern A. Zeeb {
57016b4cac81SBjoern A. Zeeb 	struct lkpi_vif *lvif;
57026b4cac81SBjoern A. Zeeb 	struct ieee80211vap *vap;
57036b4cac81SBjoern A. Zeeb 	enum ieee80211_state nstate;
57046b4cac81SBjoern A. Zeeb 	int arg;
57056b4cac81SBjoern A. Zeeb 
57066b4cac81SBjoern A. Zeeb 	lvif = VIF_TO_LVIF(vif);
57076b4cac81SBjoern A. Zeeb 	vap = LVIF_TO_VAP(lvif);
57086b4cac81SBjoern A. Zeeb 
57096b4cac81SBjoern A. Zeeb 	/*
5710f3229b62SBjoern A. Zeeb 	 * Go to init; otherwise we need to elaborately check state and
57116b4cac81SBjoern A. Zeeb 	 * handle accordingly, e.g., if in RUN we could call iv_bmiss.
57126b4cac81SBjoern A. Zeeb 	 * Let the statemachine handle all neccessary changes.
57136b4cac81SBjoern A. Zeeb 	 */
5714f3229b62SBjoern A. Zeeb 	nstate = IEEE80211_S_INIT;
5715bb81db90SBjoern A. Zeeb 	arg = 0;	/* Not a valid reason. */
57166b4cac81SBjoern A. Zeeb 
5717018d93ecSBjoern A. Zeeb 	ic_printf(vap->iv_ic, "%s: vif %p vap %p state %s\n", __func__,
5718018d93ecSBjoern A. Zeeb 	    vif, vap, ieee80211_state_name[vap->iv_state]);
57196b4cac81SBjoern A. Zeeb 	ieee80211_new_state(vap, nstate, arg);
57206b4cac81SBjoern A. Zeeb }
57216b4cac81SBjoern A. Zeeb 
5722bb81db90SBjoern A. Zeeb void
5723bb81db90SBjoern A. Zeeb linuxkpi_ieee80211_beacon_loss(struct ieee80211_vif *vif)
5724bb81db90SBjoern A. Zeeb {
5725bb81db90SBjoern A. Zeeb 	struct lkpi_vif *lvif;
5726bb81db90SBjoern A. Zeeb 	struct ieee80211vap *vap;
5727bb81db90SBjoern A. Zeeb 
5728bb81db90SBjoern A. Zeeb 	lvif = VIF_TO_LVIF(vif);
5729bb81db90SBjoern A. Zeeb 	vap = LVIF_TO_VAP(lvif);
5730bb81db90SBjoern A. Zeeb 
5731bb81db90SBjoern A. Zeeb 	ic_printf(vap->iv_ic, "%s: vif %p vap %p state %s\n", __func__,
5732bb81db90SBjoern A. Zeeb 	    vif, vap, ieee80211_state_name[vap->iv_state]);
57333540911bSBjoern A. Zeeb 	ieee80211_beacon_miss(vap->iv_ic);
5734bb81db90SBjoern A. Zeeb }
5735bb81db90SBjoern A. Zeeb 
57365edde07cSBjoern A. Zeeb /* -------------------------------------------------------------------------- */
57375edde07cSBjoern A. Zeeb 
57385a9a0d78SBjoern A. Zeeb void
57395a9a0d78SBjoern A. Zeeb linuxkpi_ieee80211_stop_queue(struct ieee80211_hw *hw, int qnum)
57405a9a0d78SBjoern A. Zeeb {
57415a9a0d78SBjoern A. Zeeb 	struct lkpi_hw *lhw;
57425a9a0d78SBjoern A. Zeeb 	struct lkpi_vif *lvif;
57435a9a0d78SBjoern A. Zeeb 	struct ieee80211_vif *vif;
57445a9a0d78SBjoern A. Zeeb 	int ac_count, ac;
57455a9a0d78SBjoern A. Zeeb 
57465a9a0d78SBjoern A. Zeeb 	KASSERT(qnum < hw->queues, ("%s: qnum %d >= hw->queues %d, hw %p\n",
57475a9a0d78SBjoern A. Zeeb 	    __func__, qnum, hw->queues, hw));
57485a9a0d78SBjoern A. Zeeb 
57495a9a0d78SBjoern A. Zeeb 	lhw = wiphy_priv(hw->wiphy);
57505a9a0d78SBjoern A. Zeeb 
57515a9a0d78SBjoern A. Zeeb 	/* See lkpi_ic_vap_create(). */
57525a9a0d78SBjoern A. Zeeb 	if (hw->queues >= IEEE80211_NUM_ACS)
57535a9a0d78SBjoern A. Zeeb 		ac_count = IEEE80211_NUM_ACS;
57545a9a0d78SBjoern A. Zeeb 	else
57555a9a0d78SBjoern A. Zeeb 		ac_count = 1;
57565a9a0d78SBjoern A. Zeeb 
57575a9a0d78SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_LOCK(lhw);
57585a9a0d78SBjoern A. Zeeb 	TAILQ_FOREACH(lvif, &lhw->lvif_head, lvif_entry) {
57595a9a0d78SBjoern A. Zeeb 
57605a9a0d78SBjoern A. Zeeb 		vif = LVIF_TO_VIF(lvif);
57615a9a0d78SBjoern A. Zeeb 		for (ac = 0; ac < ac_count; ac++) {
57625a9a0d78SBjoern A. Zeeb 			IMPROVE_TXQ("LOCKING");
57635a9a0d78SBjoern A. Zeeb 			if (qnum == vif->hw_queue[ac]) {
57640d2cb6a6SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
57655a9a0d78SBjoern A. Zeeb 				/*
57665a9a0d78SBjoern A. Zeeb 				 * For now log this to better understand
57675a9a0d78SBjoern A. Zeeb 				 * how this is supposed to work.
57685a9a0d78SBjoern A. Zeeb 				 */
57690d2cb6a6SBjoern A. Zeeb 				if (lvif->hw_queue_stopped[ac] &&
57700d2cb6a6SBjoern A. Zeeb 				    (linuxkpi_debug_80211 & D80211_IMPROVE_TXQ) != 0)
57715a9a0d78SBjoern A. Zeeb 					ic_printf(lhw->ic, "%s:%d: lhw %p hw %p "
57725a9a0d78SBjoern A. Zeeb 					    "lvif %p vif %p ac %d qnum %d already "
57735a9a0d78SBjoern A. Zeeb 					    "stopped\n", __func__, __LINE__,
57745a9a0d78SBjoern A. Zeeb 					    lhw, hw, lvif, vif, ac, qnum);
57750d2cb6a6SBjoern A. Zeeb #endif
57765a9a0d78SBjoern A. Zeeb 				lvif->hw_queue_stopped[ac] = true;
57775a9a0d78SBjoern A. Zeeb 			}
57785a9a0d78SBjoern A. Zeeb 		}
57795a9a0d78SBjoern A. Zeeb 	}
57805a9a0d78SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_UNLOCK(lhw);
57815a9a0d78SBjoern A. Zeeb }
57825a9a0d78SBjoern A. Zeeb 
57835a9a0d78SBjoern A. Zeeb void
57845a9a0d78SBjoern A. Zeeb linuxkpi_ieee80211_stop_queues(struct ieee80211_hw *hw)
57855a9a0d78SBjoern A. Zeeb {
57865a9a0d78SBjoern A. Zeeb 	int i;
57875a9a0d78SBjoern A. Zeeb 
57885a9a0d78SBjoern A. Zeeb 	IMPROVE_TXQ("Locking; do we need further info?");
57895a9a0d78SBjoern A. Zeeb 	for (i = 0; i < hw->queues; i++)
57905a9a0d78SBjoern A. Zeeb 		linuxkpi_ieee80211_stop_queue(hw, i);
57915a9a0d78SBjoern A. Zeeb }
57925a9a0d78SBjoern A. Zeeb 
57935a9a0d78SBjoern A. Zeeb 
57945a9a0d78SBjoern A. Zeeb static void
57955a9a0d78SBjoern A. Zeeb lkpi_ieee80211_wake_queues(struct ieee80211_hw *hw, int hwq)
57965a9a0d78SBjoern A. Zeeb {
57975a9a0d78SBjoern A. Zeeb 	struct lkpi_hw *lhw;
57985a9a0d78SBjoern A. Zeeb 	struct lkpi_vif *lvif;
57995a9a0d78SBjoern A. Zeeb 	struct lkpi_sta *lsta;
58005a9a0d78SBjoern A. Zeeb 	int ac_count, ac, tid;
58015a9a0d78SBjoern A. Zeeb 
58025a9a0d78SBjoern A. Zeeb 	/* See lkpi_ic_vap_create(). */
58035a9a0d78SBjoern A. Zeeb 	if (hw->queues >= IEEE80211_NUM_ACS)
58045a9a0d78SBjoern A. Zeeb 		ac_count = IEEE80211_NUM_ACS;
58055a9a0d78SBjoern A. Zeeb 	else
58065a9a0d78SBjoern A. Zeeb 		ac_count = 1;
58075a9a0d78SBjoern A. Zeeb 
58085a9a0d78SBjoern A. Zeeb 	lhw = wiphy_priv(hw->wiphy);
58095a9a0d78SBjoern A. Zeeb 
58105a9a0d78SBjoern A. Zeeb 	IMPROVE_TXQ("Locking");
58115a9a0d78SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_LOCK(lhw);
58125a9a0d78SBjoern A. Zeeb 	TAILQ_FOREACH(lvif, &lhw->lvif_head, lvif_entry) {
58135a9a0d78SBjoern A. Zeeb 		struct ieee80211_vif *vif;
58145a9a0d78SBjoern A. Zeeb 
58155a9a0d78SBjoern A. Zeeb 		vif = LVIF_TO_VIF(lvif);
58165a9a0d78SBjoern A. Zeeb 		for (ac = 0; ac < ac_count; ac++) {
58175a9a0d78SBjoern A. Zeeb 
58185a9a0d78SBjoern A. Zeeb 			if (hwq == vif->hw_queue[ac]) {
58195a9a0d78SBjoern A. Zeeb 
58205a9a0d78SBjoern A. Zeeb 				/* XXX-BZ what about software scan? */
58215a9a0d78SBjoern A. Zeeb 
58220d2cb6a6SBjoern A. Zeeb #ifdef LINUXKPI_DEBUG_80211
58235a9a0d78SBjoern A. Zeeb 				/*
58245a9a0d78SBjoern A. Zeeb 				 * For now log this to better understand
58255a9a0d78SBjoern A. Zeeb 				 * how this is supposed to work.
58265a9a0d78SBjoern A. Zeeb 				 */
58270d2cb6a6SBjoern A. Zeeb 				if (!lvif->hw_queue_stopped[ac] &&
58280d2cb6a6SBjoern A. Zeeb 				    (linuxkpi_debug_80211 & D80211_IMPROVE_TXQ) != 0)
58295a9a0d78SBjoern A. Zeeb 					ic_printf(lhw->ic, "%s:%d: lhw %p hw %p "
58305a9a0d78SBjoern A. Zeeb 					    "lvif %p vif %p ac %d hw_q not stopped\n",
58315a9a0d78SBjoern A. Zeeb 					    __func__, __LINE__,
58325a9a0d78SBjoern A. Zeeb 					    lhw, hw, lvif, vif, ac);
58330d2cb6a6SBjoern A. Zeeb #endif
58345a9a0d78SBjoern A. Zeeb 				lvif->hw_queue_stopped[ac] = false;
58355a9a0d78SBjoern A. Zeeb 
58365a9a0d78SBjoern A. Zeeb 				LKPI_80211_LVIF_LOCK(lvif);
58375a9a0d78SBjoern A. Zeeb 				TAILQ_FOREACH(lsta, &lvif->lsta_head, lsta_entry) {
58385a9a0d78SBjoern A. Zeeb 					struct ieee80211_sta *sta;
58395a9a0d78SBjoern A. Zeeb 
58405a9a0d78SBjoern A. Zeeb 					sta = LSTA_TO_STA(lsta);
58415a9a0d78SBjoern A. Zeeb 					for (tid = 0; tid < nitems(sta->txq); tid++) {
58425a9a0d78SBjoern A. Zeeb 						struct lkpi_txq *ltxq;
58435a9a0d78SBjoern A. Zeeb 
58445a9a0d78SBjoern A. Zeeb 						if (sta->txq[tid] == NULL)
58455a9a0d78SBjoern A. Zeeb 							continue;
58465a9a0d78SBjoern A. Zeeb 
58475a9a0d78SBjoern A. Zeeb 						if (sta->txq[tid]->ac != ac)
58485a9a0d78SBjoern A. Zeeb 							continue;
58495a9a0d78SBjoern A. Zeeb 
58505a9a0d78SBjoern A. Zeeb 						ltxq = TXQ_TO_LTXQ(sta->txq[tid]);
58515a9a0d78SBjoern A. Zeeb 						if (!ltxq->stopped)
58525a9a0d78SBjoern A. Zeeb 							continue;
58535a9a0d78SBjoern A. Zeeb 
58545a9a0d78SBjoern A. Zeeb 						ltxq->stopped = false;
58555a9a0d78SBjoern A. Zeeb 
58565a9a0d78SBjoern A. Zeeb 						/* XXX-BZ see when this explodes with all the locking. taskq? */
58575a9a0d78SBjoern A. Zeeb 						lkpi_80211_mo_wake_tx_queue(hw, sta->txq[tid]);
58585a9a0d78SBjoern A. Zeeb 					}
58595a9a0d78SBjoern A. Zeeb 				}
58605a9a0d78SBjoern A. Zeeb 				LKPI_80211_LVIF_UNLOCK(lvif);
58615a9a0d78SBjoern A. Zeeb 			}
58625a9a0d78SBjoern A. Zeeb 		}
58635a9a0d78SBjoern A. Zeeb 	}
58645a9a0d78SBjoern A. Zeeb 	LKPI_80211_LHW_LVIF_UNLOCK(lhw);
58655a9a0d78SBjoern A. Zeeb }
58665a9a0d78SBjoern A. Zeeb 
58675a9a0d78SBjoern A. Zeeb void
58685a9a0d78SBjoern A. Zeeb linuxkpi_ieee80211_wake_queues(struct ieee80211_hw *hw)
58695a9a0d78SBjoern A. Zeeb {
58705a9a0d78SBjoern A. Zeeb 	int i;
58715a9a0d78SBjoern A. Zeeb 
58725a9a0d78SBjoern A. Zeeb 	IMPROVE_TXQ("Is this all/enough here?");
58735a9a0d78SBjoern A. Zeeb 	for (i = 0; i < hw->queues; i++)
58745a9a0d78SBjoern A. Zeeb 		lkpi_ieee80211_wake_queues(hw, i);
58755a9a0d78SBjoern A. Zeeb }
58765a9a0d78SBjoern A. Zeeb 
58775a9a0d78SBjoern A. Zeeb void
58785a9a0d78SBjoern A. Zeeb linuxkpi_ieee80211_wake_queue(struct ieee80211_hw *hw, int qnum)
58795a9a0d78SBjoern A. Zeeb {
58805a9a0d78SBjoern A. Zeeb 
58815a9a0d78SBjoern A. Zeeb 	KASSERT(qnum < hw->queues, ("%s: qnum %d >= hw->queues %d, hw %p\n",
58825a9a0d78SBjoern A. Zeeb 	    __func__, qnum, hw->queues, hw));
58835a9a0d78SBjoern A. Zeeb 
58845a9a0d78SBjoern A. Zeeb 	lkpi_ieee80211_wake_queues(hw, qnum);
58855a9a0d78SBjoern A. Zeeb }
58865a9a0d78SBjoern A. Zeeb 
58875a9a0d78SBjoern A. Zeeb /* This is just hardware queues. */
58885a9a0d78SBjoern A. Zeeb void
58895a9a0d78SBjoern A. Zeeb linuxkpi_ieee80211_txq_schedule_start(struct ieee80211_hw *hw, uint8_t ac)
58905a9a0d78SBjoern A. Zeeb {
58915a9a0d78SBjoern A. Zeeb 	struct lkpi_hw *lhw;
58925a9a0d78SBjoern A. Zeeb 
58935a9a0d78SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
58945a9a0d78SBjoern A. Zeeb 
58955a9a0d78SBjoern A. Zeeb 	IMPROVE_TXQ("Are there reasons why we wouldn't schedule?");
58965a9a0d78SBjoern A. Zeeb 	IMPROVE_TXQ("LOCKING");
58975a9a0d78SBjoern A. Zeeb 	if (++lhw->txq_generation[ac] == 0)
58985a9a0d78SBjoern A. Zeeb 		lhw->txq_generation[ac]++;
58995a9a0d78SBjoern A. Zeeb }
59005a9a0d78SBjoern A. Zeeb 
59015a9a0d78SBjoern A. Zeeb struct ieee80211_txq *
59025a9a0d78SBjoern A. Zeeb linuxkpi_ieee80211_next_txq(struct ieee80211_hw *hw, uint8_t ac)
59035a9a0d78SBjoern A. Zeeb {
59045a9a0d78SBjoern A. Zeeb 	struct lkpi_hw *lhw;
59055a9a0d78SBjoern A. Zeeb 	struct ieee80211_txq *txq;
59065a9a0d78SBjoern A. Zeeb 	struct lkpi_txq *ltxq;
59075a9a0d78SBjoern A. Zeeb 
59085a9a0d78SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
59095a9a0d78SBjoern A. Zeeb 	txq = NULL;
59105a9a0d78SBjoern A. Zeeb 
59115a9a0d78SBjoern A. Zeeb 	IMPROVE_TXQ("LOCKING");
59125a9a0d78SBjoern A. Zeeb 
59135a9a0d78SBjoern A. Zeeb 	/* Check that we are scheduled. */
59145a9a0d78SBjoern A. Zeeb 	if (lhw->txq_generation[ac] == 0)
59155a9a0d78SBjoern A. Zeeb 		goto out;
59165a9a0d78SBjoern A. Zeeb 
59175a9a0d78SBjoern A. Zeeb 	ltxq = TAILQ_FIRST(&lhw->scheduled_txqs[ac]);
59185a9a0d78SBjoern A. Zeeb 	if (ltxq == NULL)
59195a9a0d78SBjoern A. Zeeb 		goto out;
59205a9a0d78SBjoern A. Zeeb 	if (ltxq->txq_generation == lhw->txq_generation[ac])
59215a9a0d78SBjoern A. Zeeb 		goto out;
59225a9a0d78SBjoern A. Zeeb 
59235a9a0d78SBjoern A. Zeeb 	ltxq->txq_generation = lhw->txq_generation[ac];
59245a9a0d78SBjoern A. Zeeb 	TAILQ_REMOVE(&lhw->scheduled_txqs[ac], ltxq, txq_entry);
59255a9a0d78SBjoern A. Zeeb 	txq = &ltxq->txq;
59265a9a0d78SBjoern A. Zeeb 	TAILQ_ELEM_INIT(ltxq, txq_entry);
59275a9a0d78SBjoern A. Zeeb 
59285a9a0d78SBjoern A. Zeeb out:
59295a9a0d78SBjoern A. Zeeb 	return (txq);
59305a9a0d78SBjoern A. Zeeb }
59315a9a0d78SBjoern A. Zeeb 
59325a9a0d78SBjoern A. Zeeb void linuxkpi_ieee80211_schedule_txq(struct ieee80211_hw *hw,
59335a9a0d78SBjoern A. Zeeb     struct ieee80211_txq *txq, bool withoutpkts)
59345a9a0d78SBjoern A. Zeeb {
59355a9a0d78SBjoern A. Zeeb 	struct lkpi_hw *lhw;
59365a9a0d78SBjoern A. Zeeb 	struct lkpi_txq *ltxq;
5937eac3646fSBjoern A. Zeeb 	bool ltxq_empty;
59385a9a0d78SBjoern A. Zeeb 
59395a9a0d78SBjoern A. Zeeb 	ltxq = TXQ_TO_LTXQ(txq);
59405a9a0d78SBjoern A. Zeeb 
59415a9a0d78SBjoern A. Zeeb 	IMPROVE_TXQ("LOCKING");
59425a9a0d78SBjoern A. Zeeb 
59435a9a0d78SBjoern A. Zeeb 	/* Only schedule if work to do or asked to anyway. */
5944eac3646fSBjoern A. Zeeb 	LKPI_80211_LTXQ_LOCK(ltxq);
5945eac3646fSBjoern A. Zeeb 	ltxq_empty = skb_queue_empty(&ltxq->skbq);
5946eac3646fSBjoern A. Zeeb 	LKPI_80211_LTXQ_UNLOCK(ltxq);
5947eac3646fSBjoern A. Zeeb 	if (!withoutpkts && ltxq_empty)
59485a9a0d78SBjoern A. Zeeb 		goto out;
59495a9a0d78SBjoern A. Zeeb 
59505a9a0d78SBjoern A. Zeeb 	/* Make sure we do not double-schedule. */
59515a9a0d78SBjoern A. Zeeb 	if (ltxq->txq_entry.tqe_next != NULL)
59525a9a0d78SBjoern A. Zeeb 		goto out;
59535a9a0d78SBjoern A. Zeeb 
59545a9a0d78SBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
59555a9a0d78SBjoern A. Zeeb 	TAILQ_INSERT_TAIL(&lhw->scheduled_txqs[txq->ac], ltxq, txq_entry);
59565a9a0d78SBjoern A. Zeeb out:
59575a9a0d78SBjoern A. Zeeb 	return;
59585a9a0d78SBjoern A. Zeeb }
59595a9a0d78SBjoern A. Zeeb 
5960eac3646fSBjoern A. Zeeb void
5961eac3646fSBjoern A. Zeeb linuxkpi_ieee80211_handle_wake_tx_queue(struct ieee80211_hw *hw,
5962eac3646fSBjoern A. Zeeb     struct ieee80211_txq *txq)
5963eac3646fSBjoern A. Zeeb {
5964eac3646fSBjoern A. Zeeb 	struct lkpi_hw *lhw;
5965eac3646fSBjoern A. Zeeb 	struct ieee80211_txq *ntxq;
5966eac3646fSBjoern A. Zeeb 	struct ieee80211_tx_control control;
5967eac3646fSBjoern A. Zeeb         struct sk_buff *skb;
5968eac3646fSBjoern A. Zeeb 
5969eac3646fSBjoern A. Zeeb 	lhw = HW_TO_LHW(hw);
5970eac3646fSBjoern A. Zeeb 
5971eac3646fSBjoern A. Zeeb 	LKPI_80211_LHW_TXQ_LOCK(lhw);
5972eac3646fSBjoern A. Zeeb 	ieee80211_txq_schedule_start(hw, txq->ac);
5973eac3646fSBjoern A. Zeeb 	do {
5974eac3646fSBjoern A. Zeeb 		ntxq = ieee80211_next_txq(hw, txq->ac);
5975eac3646fSBjoern A. Zeeb 		if (ntxq == NULL)
5976eac3646fSBjoern A. Zeeb 			break;
5977eac3646fSBjoern A. Zeeb 
5978eac3646fSBjoern A. Zeeb 		memset(&control, 0, sizeof(control));
5979eac3646fSBjoern A. Zeeb 		control.sta = ntxq->sta;
5980eac3646fSBjoern A. Zeeb 		do {
5981eac3646fSBjoern A. Zeeb 			skb = linuxkpi_ieee80211_tx_dequeue(hw, ntxq);
5982eac3646fSBjoern A. Zeeb 			if (skb == NULL)
5983eac3646fSBjoern A. Zeeb 				break;
5984eac3646fSBjoern A. Zeeb 			lkpi_80211_mo_tx(hw, &control, skb);
5985eac3646fSBjoern A. Zeeb 		} while(1);
5986eac3646fSBjoern A. Zeeb 
5987eac3646fSBjoern A. Zeeb 		ieee80211_return_txq(hw, ntxq, false);
5988eac3646fSBjoern A. Zeeb 	} while (1);
5989eac3646fSBjoern A. Zeeb 	ieee80211_txq_schedule_end(hw, txq->ac);
5990eac3646fSBjoern A. Zeeb 	LKPI_80211_LHW_TXQ_UNLOCK(lhw);
5991eac3646fSBjoern A. Zeeb }
5992eac3646fSBjoern A. Zeeb 
59935a9a0d78SBjoern A. Zeeb /* -------------------------------------------------------------------------- */
59945a9a0d78SBjoern A. Zeeb 
59955edde07cSBjoern A. Zeeb struct lkpi_cfg80211_bss {
59965edde07cSBjoern A. Zeeb 	u_int refcnt;
59975edde07cSBjoern A. Zeeb 	struct cfg80211_bss bss;
59985edde07cSBjoern A. Zeeb };
59995edde07cSBjoern A. Zeeb 
60005edde07cSBjoern A. Zeeb struct lkpi_cfg80211_get_bss_iter_lookup {
60015edde07cSBjoern A. Zeeb 	struct wiphy *wiphy;
60025edde07cSBjoern A. Zeeb 	struct linuxkpi_ieee80211_channel *chan;
60035edde07cSBjoern A. Zeeb 	const uint8_t *bssid;
60045edde07cSBjoern A. Zeeb 	const uint8_t *ssid;
60055edde07cSBjoern A. Zeeb 	size_t ssid_len;
60065edde07cSBjoern A. Zeeb 	enum ieee80211_bss_type bss_type;
60075edde07cSBjoern A. Zeeb 	enum ieee80211_privacy privacy;
60085edde07cSBjoern A. Zeeb 
60095edde07cSBjoern A. Zeeb 	/*
60105edde07cSBjoern A. Zeeb 	 * Something to store a copy of the result as the net80211 scan cache
60115edde07cSBjoern A. Zeeb 	 * is not refoucnted so a scan entry might go away any time.
60125edde07cSBjoern A. Zeeb 	 */
60135edde07cSBjoern A. Zeeb 	bool match;
60145edde07cSBjoern A. Zeeb 	struct cfg80211_bss *bss;
60155edde07cSBjoern A. Zeeb };
60165edde07cSBjoern A. Zeeb 
60175edde07cSBjoern A. Zeeb static void
60185edde07cSBjoern A. Zeeb lkpi_cfg80211_get_bss_iterf(void *arg, const struct ieee80211_scan_entry *se)
60195edde07cSBjoern A. Zeeb {
60205edde07cSBjoern A. Zeeb 	struct lkpi_cfg80211_get_bss_iter_lookup *lookup;
60215edde07cSBjoern A. Zeeb 	size_t ielen;
60225edde07cSBjoern A. Zeeb 
60235edde07cSBjoern A. Zeeb 	lookup = arg;
60245edde07cSBjoern A. Zeeb 
60255edde07cSBjoern A. Zeeb 	/* Do not try to find another match. */
60265edde07cSBjoern A. Zeeb 	if (lookup->match)
60275edde07cSBjoern A. Zeeb 		return;
60285edde07cSBjoern A. Zeeb 
60295edde07cSBjoern A. Zeeb 	/* Nothing to store result. */
60305edde07cSBjoern A. Zeeb 	if (lookup->bss == NULL)
60315edde07cSBjoern A. Zeeb 		return;
60325edde07cSBjoern A. Zeeb 
60335edde07cSBjoern A. Zeeb 	if (lookup->privacy != IEEE80211_PRIVACY_ANY) {
60345edde07cSBjoern A. Zeeb 		/* if (se->se_capinfo & IEEE80211_CAPINFO_PRIVACY) */
60355edde07cSBjoern A. Zeeb 		/* We have no idea what to compare to as the drivers only request ANY */
60365edde07cSBjoern A. Zeeb 		return;
60375edde07cSBjoern A. Zeeb 	}
60385edde07cSBjoern A. Zeeb 
60395edde07cSBjoern A. Zeeb 	if (lookup->bss_type != IEEE80211_BSS_TYPE_ANY) {
60405edde07cSBjoern A. Zeeb 		/* if (se->se_capinfo & (IEEE80211_CAPINFO_IBSS|IEEE80211_CAPINFO_ESS)) */
60415edde07cSBjoern A. Zeeb 		/* We have no idea what to compare to as the drivers only request ANY */
60425edde07cSBjoern A. Zeeb 		return;
60435edde07cSBjoern A. Zeeb 	}
60445edde07cSBjoern A. Zeeb 
60455edde07cSBjoern A. Zeeb 	if (lookup->chan != NULL) {
60465edde07cSBjoern A. Zeeb 		struct linuxkpi_ieee80211_channel *chan;
60475edde07cSBjoern A. Zeeb 
60485edde07cSBjoern A. Zeeb 		chan = linuxkpi_ieee80211_get_channel(lookup->wiphy,
60495edde07cSBjoern A. Zeeb 		    se->se_chan->ic_freq);
60505edde07cSBjoern A. Zeeb 		if (chan == NULL || chan != lookup->chan)
60515edde07cSBjoern A. Zeeb 			return;
60525edde07cSBjoern A. Zeeb 	}
60535edde07cSBjoern A. Zeeb 
60545edde07cSBjoern A. Zeeb 	if (lookup->bssid && !IEEE80211_ADDR_EQ(lookup->bssid, se->se_bssid))
60555edde07cSBjoern A. Zeeb 		return;
60565edde07cSBjoern A. Zeeb 
60575edde07cSBjoern A. Zeeb 	if (lookup->ssid) {
60585edde07cSBjoern A. Zeeb 		if (lookup->ssid_len != se->se_ssid[1] ||
60595edde07cSBjoern A. Zeeb 		    se->se_ssid[1] == 0)
60605edde07cSBjoern A. Zeeb 			return;
60615edde07cSBjoern A. Zeeb 		if (memcmp(lookup->ssid, se->se_ssid+2, lookup->ssid_len) != 0)
60625edde07cSBjoern A. Zeeb 			return;
60635edde07cSBjoern A. Zeeb 	}
60645edde07cSBjoern A. Zeeb 
60655edde07cSBjoern A. Zeeb 	ielen = se->se_ies.len;
60665edde07cSBjoern A. Zeeb 
60675edde07cSBjoern A. Zeeb 	lookup->bss->ies = malloc(sizeof(*lookup->bss->ies) + ielen,
60685edde07cSBjoern A. Zeeb 	    M_LKPI80211, M_NOWAIT | M_ZERO);
60695edde07cSBjoern A. Zeeb 	if (lookup->bss->ies == NULL)
60705edde07cSBjoern A. Zeeb 		return;
60715edde07cSBjoern A. Zeeb 
60725edde07cSBjoern A. Zeeb 	lookup->bss->ies->data = (uint8_t *)lookup->bss->ies + sizeof(*lookup->bss->ies);
60735edde07cSBjoern A. Zeeb 	lookup->bss->ies->len = ielen;
60745edde07cSBjoern A. Zeeb 	if (ielen)
60755edde07cSBjoern A. Zeeb 		memcpy(lookup->bss->ies->data, se->se_ies.data, ielen);
60765edde07cSBjoern A. Zeeb 
60775edde07cSBjoern A. Zeeb 	lookup->match = true;
60785edde07cSBjoern A. Zeeb }
60795edde07cSBjoern A. Zeeb 
60805edde07cSBjoern A. Zeeb struct cfg80211_bss *
60815edde07cSBjoern A. Zeeb linuxkpi_cfg80211_get_bss(struct wiphy *wiphy, struct linuxkpi_ieee80211_channel *chan,
60825edde07cSBjoern A. Zeeb     const uint8_t *bssid, const uint8_t *ssid, size_t ssid_len,
60835edde07cSBjoern A. Zeeb     enum ieee80211_bss_type bss_type, enum ieee80211_privacy privacy)
60845edde07cSBjoern A. Zeeb {
60855edde07cSBjoern A. Zeeb 	struct lkpi_cfg80211_bss *lbss;
60865edde07cSBjoern A. Zeeb 	struct lkpi_cfg80211_get_bss_iter_lookup lookup;
60875edde07cSBjoern A. Zeeb 	struct lkpi_hw *lhw;
60885edde07cSBjoern A. Zeeb 	struct ieee80211vap *vap;
60895edde07cSBjoern A. Zeeb 
60905edde07cSBjoern A. Zeeb 	lhw = wiphy_priv(wiphy);
60915edde07cSBjoern A. Zeeb 
60925edde07cSBjoern A. Zeeb 	/* Let's hope we can alloc. */
60935edde07cSBjoern A. Zeeb 	lbss = malloc(sizeof(*lbss), M_LKPI80211, M_NOWAIT | M_ZERO);
60945edde07cSBjoern A. Zeeb 	if (lbss == NULL) {
60955edde07cSBjoern A. Zeeb 		ic_printf(lhw->ic, "%s: alloc failed.\n", __func__);
60965edde07cSBjoern A. Zeeb 		return (NULL);
60975edde07cSBjoern A. Zeeb 	}
60985edde07cSBjoern A. Zeeb 
60995edde07cSBjoern A. Zeeb 	lookup.wiphy = wiphy;
61005edde07cSBjoern A. Zeeb 	lookup.chan = chan;
61015edde07cSBjoern A. Zeeb 	lookup.bssid = bssid;
61025edde07cSBjoern A. Zeeb 	lookup.ssid = ssid;
61035edde07cSBjoern A. Zeeb 	lookup.ssid_len = ssid_len;
61045edde07cSBjoern A. Zeeb 	lookup.bss_type = bss_type;
61055edde07cSBjoern A. Zeeb 	lookup.privacy = privacy;
61065edde07cSBjoern A. Zeeb 	lookup.match = false;
61075edde07cSBjoern A. Zeeb 	lookup.bss = &lbss->bss;
61085edde07cSBjoern A. Zeeb 
61095edde07cSBjoern A. Zeeb 	IMPROVE("Iterate over all VAPs comparing perm_addr and addresses?");
61105edde07cSBjoern A. Zeeb 	vap = TAILQ_FIRST(&lhw->ic->ic_vaps);
61115edde07cSBjoern A. Zeeb 	ieee80211_scan_iterate(vap, lkpi_cfg80211_get_bss_iterf, &lookup);
61125edde07cSBjoern A. Zeeb 	if (!lookup.match) {
61135edde07cSBjoern A. Zeeb 		free(lbss, M_LKPI80211);
61145edde07cSBjoern A. Zeeb 		return (NULL);
61155edde07cSBjoern A. Zeeb 	}
61165edde07cSBjoern A. Zeeb 
61175edde07cSBjoern A. Zeeb 	refcount_init(&lbss->refcnt, 1);
61185edde07cSBjoern A. Zeeb 	return (&lbss->bss);
61195edde07cSBjoern A. Zeeb }
61205edde07cSBjoern A. Zeeb 
61215edde07cSBjoern A. Zeeb void
61225edde07cSBjoern A. Zeeb linuxkpi_cfg80211_put_bss(struct wiphy *wiphy, struct cfg80211_bss *bss)
61235edde07cSBjoern A. Zeeb {
61245edde07cSBjoern A. Zeeb 	struct lkpi_cfg80211_bss *lbss;
61255edde07cSBjoern A. Zeeb 
61265edde07cSBjoern A. Zeeb 	lbss = container_of(bss, struct lkpi_cfg80211_bss, bss);
61275edde07cSBjoern A. Zeeb 
61285edde07cSBjoern A. Zeeb 	/* Free everything again on refcount ... */
61295edde07cSBjoern A. Zeeb 	if (refcount_release(&lbss->refcnt)) {
61305edde07cSBjoern A. Zeeb 		free(lbss->bss.ies, M_LKPI80211);
61315edde07cSBjoern A. Zeeb 		free(lbss, M_LKPI80211);
61325edde07cSBjoern A. Zeeb 	}
61335edde07cSBjoern A. Zeeb }
61345edde07cSBjoern A. Zeeb 
61355edde07cSBjoern A. Zeeb void
61365edde07cSBjoern A. Zeeb linuxkpi_cfg80211_bss_flush(struct wiphy *wiphy)
61375edde07cSBjoern A. Zeeb {
61385edde07cSBjoern A. Zeeb 	struct lkpi_hw *lhw;
61395edde07cSBjoern A. Zeeb 	struct ieee80211com *ic;
61405edde07cSBjoern A. Zeeb 	struct ieee80211vap *vap;
61415edde07cSBjoern A. Zeeb 
61425edde07cSBjoern A. Zeeb 	lhw = wiphy_priv(wiphy);
61435edde07cSBjoern A. Zeeb 	ic = lhw->ic;
61445edde07cSBjoern A. Zeeb 
61455edde07cSBjoern A. Zeeb 	/*
61465edde07cSBjoern A. Zeeb 	 * If we haven't called ieee80211_ifattach() yet
61475edde07cSBjoern A. Zeeb 	 * or there is no VAP, there are no scans to flush.
61485edde07cSBjoern A. Zeeb 	 */
61495edde07cSBjoern A. Zeeb 	if (ic == NULL ||
61505edde07cSBjoern A. Zeeb 	    (lhw->sc_flags & LKPI_MAC80211_DRV_STARTED) == 0)
61515edde07cSBjoern A. Zeeb 		return;
61525edde07cSBjoern A. Zeeb 
61535edde07cSBjoern A. Zeeb 	/* Should only happen on the current one? Not seen it late enough. */
61545edde07cSBjoern A. Zeeb 	IEEE80211_LOCK(ic);
61555edde07cSBjoern A. Zeeb 	TAILQ_FOREACH(vap, &ic->ic_vaps, iv_next)
61565edde07cSBjoern A. Zeeb 		ieee80211_scan_flush(vap);
61575edde07cSBjoern A. Zeeb 	IEEE80211_UNLOCK(ic);
61585edde07cSBjoern A. Zeeb }
61595edde07cSBjoern A. Zeeb 
61605edde07cSBjoern A. Zeeb /* -------------------------------------------------------------------------- */
61615edde07cSBjoern A. Zeeb 
61626b4cac81SBjoern A. Zeeb MODULE_VERSION(linuxkpi_wlan, 1);
61636b4cac81SBjoern A. Zeeb MODULE_DEPEND(linuxkpi_wlan, linuxkpi, 1, 1, 1);
61646b4cac81SBjoern A. Zeeb MODULE_DEPEND(linuxkpi_wlan, wlan, 1, 1, 1);
6165