xref: /freebsd/sys/dev/usb/wlan/if_rum.c (revision ca48e43ba9ee73a07cdbad8365117793b01273bb)
102ac6454SAndrew Thompson 
202ac6454SAndrew Thompson /*-
302ac6454SAndrew Thompson  * Copyright (c) 2005-2007 Damien Bergamini <damien.bergamini@free.fr>
402ac6454SAndrew Thompson  * Copyright (c) 2006 Niall O'Higgins <niallo@openbsd.org>
55d38a4d4SEd Schouten  * Copyright (c) 2007-2008 Hans Petter Selasky <hselasky@FreeBSD.org>
6ce036b51SAndriy Voskoboinyk  * Copyright (c) 2015 Andriy Voskoboinyk <avos@FreeBSD.org>
702ac6454SAndrew Thompson  *
802ac6454SAndrew Thompson  * Permission to use, copy, modify, and distribute this software for any
902ac6454SAndrew Thompson  * purpose with or without fee is hereby granted, provided that the above
1002ac6454SAndrew Thompson  * copyright notice and this permission notice appear in all copies.
1102ac6454SAndrew Thompson  *
1202ac6454SAndrew Thompson  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1302ac6454SAndrew Thompson  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1402ac6454SAndrew Thompson  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1502ac6454SAndrew Thompson  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1602ac6454SAndrew Thompson  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1702ac6454SAndrew Thompson  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
1802ac6454SAndrew Thompson  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1902ac6454SAndrew Thompson  */
2002ac6454SAndrew Thompson 
2102ac6454SAndrew Thompson /*-
2202ac6454SAndrew Thompson  * Ralink Technology RT2501USB/RT2601USB chipset driver
2302ac6454SAndrew Thompson  * http://www.ralinktech.com.tw/
2402ac6454SAndrew Thompson  */
2502ac6454SAndrew Thompson 
2663a55eabSAndriy Voskoboinyk #include "opt_wlan.h"
2763a55eabSAndriy Voskoboinyk 
285efea30fSAndrew Thompson #include <sys/param.h>
295efea30fSAndrew Thompson #include <sys/sockio.h>
305efea30fSAndrew Thompson #include <sys/sysctl.h>
315efea30fSAndrew Thompson #include <sys/lock.h>
325efea30fSAndrew Thompson #include <sys/mutex.h>
335efea30fSAndrew Thompson #include <sys/mbuf.h>
345efea30fSAndrew Thompson #include <sys/kernel.h>
355efea30fSAndrew Thompson #include <sys/socket.h>
365efea30fSAndrew Thompson #include <sys/systm.h>
375efea30fSAndrew Thompson #include <sys/malloc.h>
385efea30fSAndrew Thompson #include <sys/module.h>
395efea30fSAndrew Thompson #include <sys/bus.h>
405efea30fSAndrew Thompson #include <sys/endian.h>
415efea30fSAndrew Thompson #include <sys/kdb.h>
425efea30fSAndrew Thompson 
435efea30fSAndrew Thompson #include <net/bpf.h>
445efea30fSAndrew Thompson #include <net/if.h>
4576039bc8SGleb Smirnoff #include <net/if_var.h>
4667784314SPoul-Henning Kamp #include <net/if_arp.h>
475efea30fSAndrew Thompson #include <net/ethernet.h>
485efea30fSAndrew Thompson #include <net/if_dl.h>
495efea30fSAndrew Thompson #include <net/if_media.h>
505efea30fSAndrew Thompson #include <net/if_types.h>
515efea30fSAndrew Thompson 
525efea30fSAndrew Thompson #ifdef INET
535efea30fSAndrew Thompson #include <netinet/in.h>
545efea30fSAndrew Thompson #include <netinet/in_systm.h>
555efea30fSAndrew Thompson #include <netinet/in_var.h>
565efea30fSAndrew Thompson #include <netinet/if_ether.h>
575efea30fSAndrew Thompson #include <netinet/ip.h>
585efea30fSAndrew Thompson #endif
595efea30fSAndrew Thompson 
605efea30fSAndrew Thompson #include <net80211/ieee80211_var.h>
615efea30fSAndrew Thompson #include <net80211/ieee80211_regdomain.h>
625efea30fSAndrew Thompson #include <net80211/ieee80211_radiotap.h>
63b6108616SRui Paulo #include <net80211/ieee80211_ratectl.h>
6402ac6454SAndrew Thompson 
655efea30fSAndrew Thompson #include <dev/usb/usb.h>
66ed6d949aSAndrew Thompson #include <dev/usb/usbdi.h>
675efea30fSAndrew Thompson #include "usbdevs.h"
6802ac6454SAndrew Thompson 
69ed6d949aSAndrew Thompson #define	USB_DEBUG_VAR rum_debug
70ed6d949aSAndrew Thompson #include <dev/usb/usb_debug.h>
71ed6d949aSAndrew Thompson 
7202ac6454SAndrew Thompson #include <dev/usb/wlan/if_rumreg.h>
7302ac6454SAndrew Thompson #include <dev/usb/wlan/if_rumvar.h>
7402ac6454SAndrew Thompson #include <dev/usb/wlan/if_rumfw.h>
7502ac6454SAndrew Thompson 
76b850ecc1SAndrew Thompson #ifdef USB_DEBUG
7702ac6454SAndrew Thompson static int rum_debug = 0;
7802ac6454SAndrew Thompson 
79f8d2b1f3SPawel Biernacki static SYSCTL_NODE(_hw_usb, OID_AUTO, rum, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
80f8d2b1f3SPawel Biernacki     "USB rum");
81ece4b0bdSHans Petter Selasky SYSCTL_INT(_hw_usb_rum, OID_AUTO, debug, CTLFLAG_RWTUN, &rum_debug, 0,
8202ac6454SAndrew Thompson     "Debug level");
8302ac6454SAndrew Thompson #endif
8402ac6454SAndrew Thompson 
85f1a16106SHans Petter Selasky static const STRUCT_USB_HOST_ID rum_devs[] = {
869e6b5313SAndrew Thompson #define	RUM_DEV(v,p)  { USB_VP(USB_VENDOR_##v, USB_PRODUCT_##v##_##p) }
879e6b5313SAndrew Thompson     RUM_DEV(ABOCOM, HWU54DM),
889e6b5313SAndrew Thompson     RUM_DEV(ABOCOM, RT2573_2),
899e6b5313SAndrew Thompson     RUM_DEV(ABOCOM, RT2573_3),
909e6b5313SAndrew Thompson     RUM_DEV(ABOCOM, RT2573_4),
919e6b5313SAndrew Thompson     RUM_DEV(ABOCOM, WUG2700),
929e6b5313SAndrew Thompson     RUM_DEV(AMIT, CGWLUSB2GO),
939e6b5313SAndrew Thompson     RUM_DEV(ASUS, RT2573_1),
949e6b5313SAndrew Thompson     RUM_DEV(ASUS, RT2573_2),
959e6b5313SAndrew Thompson     RUM_DEV(BELKIN, F5D7050A),
969e6b5313SAndrew Thompson     RUM_DEV(BELKIN, F5D9050V3),
979e6b5313SAndrew Thompson     RUM_DEV(CISCOLINKSYS, WUSB54GC),
989e6b5313SAndrew Thompson     RUM_DEV(CISCOLINKSYS, WUSB54GR),
999e6b5313SAndrew Thompson     RUM_DEV(CONCEPTRONIC2, C54RU2),
1009e6b5313SAndrew Thompson     RUM_DEV(COREGA, CGWLUSB2GL),
1019e6b5313SAndrew Thompson     RUM_DEV(COREGA, CGWLUSB2GPX),
1029e6b5313SAndrew Thompson     RUM_DEV(DICKSMITH, CWD854F),
1039e6b5313SAndrew Thompson     RUM_DEV(DICKSMITH, RT2573),
104031c7388SAndrew Thompson     RUM_DEV(EDIMAX, EW7318USG),
1059e6b5313SAndrew Thompson     RUM_DEV(DLINK2, DWLG122C1),
1069e6b5313SAndrew Thompson     RUM_DEV(DLINK2, WUA1340),
1079e6b5313SAndrew Thompson     RUM_DEV(DLINK2, DWA111),
1089e6b5313SAndrew Thompson     RUM_DEV(DLINK2, DWA110),
1099e6b5313SAndrew Thompson     RUM_DEV(GIGABYTE, GNWB01GS),
1109e6b5313SAndrew Thompson     RUM_DEV(GIGABYTE, GNWI05GS),
1119e6b5313SAndrew Thompson     RUM_DEV(GIGASET, RT2573),
1129e6b5313SAndrew Thompson     RUM_DEV(GOODWAY, RT2573),
1139e6b5313SAndrew Thompson     RUM_DEV(GUILLEMOT, HWGUSB254LB),
1149e6b5313SAndrew Thompson     RUM_DEV(GUILLEMOT, HWGUSB254V2AP),
1159e6b5313SAndrew Thompson     RUM_DEV(HUAWEI3COM, WUB320G),
1169e6b5313SAndrew Thompson     RUM_DEV(MELCO, G54HP),
1179e6b5313SAndrew Thompson     RUM_DEV(MELCO, SG54HP),
1183232aae3SHans Petter Selasky     RUM_DEV(MELCO, SG54HG),
11954de08a9SMIHIRA Sanpei Yoshiro     RUM_DEV(MELCO, WLIUCG),
120e11ad60dSHans Petter Selasky     RUM_DEV(MELCO, WLRUCG),
121e11ad60dSHans Petter Selasky     RUM_DEV(MELCO, WLRUCGAOSS),
1229e6b5313SAndrew Thompson     RUM_DEV(MSI, RT2573_1),
1239e6b5313SAndrew Thompson     RUM_DEV(MSI, RT2573_2),
1249e6b5313SAndrew Thompson     RUM_DEV(MSI, RT2573_3),
1259e6b5313SAndrew Thompson     RUM_DEV(MSI, RT2573_4),
1269e6b5313SAndrew Thompson     RUM_DEV(NOVATECH, RT2573),
1279e6b5313SAndrew Thompson     RUM_DEV(PLANEX2, GWUS54HP),
1289e6b5313SAndrew Thompson     RUM_DEV(PLANEX2, GWUS54MINI2),
1299e6b5313SAndrew Thompson     RUM_DEV(PLANEX2, GWUSMM),
1309e6b5313SAndrew Thompson     RUM_DEV(QCOM, RT2573),
1319e6b5313SAndrew Thompson     RUM_DEV(QCOM, RT2573_2),
1329e6b5313SAndrew Thompson     RUM_DEV(QCOM, RT2573_3),
1339e6b5313SAndrew Thompson     RUM_DEV(RALINK, RT2573),
1349e6b5313SAndrew Thompson     RUM_DEV(RALINK, RT2573_2),
1359e6b5313SAndrew Thompson     RUM_DEV(RALINK, RT2671),
1369e6b5313SAndrew Thompson     RUM_DEV(SITECOMEU, WL113R2),
1379e6b5313SAndrew Thompson     RUM_DEV(SITECOMEU, WL172),
1389e6b5313SAndrew Thompson     RUM_DEV(SPARKLAN, RT2573),
1399e6b5313SAndrew Thompson     RUM_DEV(SURECOM, RT2573),
1409e6b5313SAndrew Thompson #undef RUM_DEV
14102ac6454SAndrew Thompson };
14202ac6454SAndrew Thompson 
14302ac6454SAndrew Thompson static device_probe_t rum_match;
14402ac6454SAndrew Thompson static device_attach_t rum_attach;
14502ac6454SAndrew Thompson static device_detach_t rum_detach;
14602ac6454SAndrew Thompson 
147e0a69b51SAndrew Thompson static usb_callback_t rum_bulk_read_callback;
148e0a69b51SAndrew Thompson static usb_callback_t rum_bulk_write_callback;
14902ac6454SAndrew Thompson 
150e0a69b51SAndrew Thompson static usb_error_t	rum_do_request(struct rum_softc *sc,
151760bc48eSAndrew Thompson 			    struct usb_device_request *req, void *data);
152fd7dae9cSAndriy Voskoboinyk static usb_error_t	rum_do_mcu_request(struct rum_softc *sc, int);
15302ac6454SAndrew Thompson static struct ieee80211vap *rum_vap_create(struct ieee80211com *,
154fcd9500fSBernhard Schmidt 			    const char [IFNAMSIZ], int, enum ieee80211_opmode,
155fcd9500fSBernhard Schmidt 			    int, const uint8_t [IEEE80211_ADDR_LEN],
156fcd9500fSBernhard Schmidt 			    const uint8_t [IEEE80211_ADDR_LEN]);
15702ac6454SAndrew Thompson static void		rum_vap_delete(struct ieee80211vap *);
158f28c2f5eSAdrian Chadd static void		rum_cmdq_cb(void *, int);
159f28c2f5eSAdrian Chadd static int		rum_cmd_sleepable(struct rum_softc *, const void *,
160ed5711a1SAdrian Chadd 			    size_t, uint8_t, CMD_FUNC_PROTO);
16102ac6454SAndrew Thompson static void		rum_tx_free(struct rum_tx_data *, int);
16202ac6454SAndrew Thompson static void		rum_setup_tx_list(struct rum_softc *);
163d204cea9SAndriy Voskoboinyk static void		rum_reset_tx_list(struct rum_softc *,
164d204cea9SAndriy Voskoboinyk 			    struct ieee80211vap *);
16502ac6454SAndrew Thompson static void		rum_unsetup_tx_list(struct rum_softc *);
166349156a9SAndriy Voskoboinyk static void		rum_beacon_miss(struct ieee80211vap *);
167349156a9SAndriy Voskoboinyk static void		rum_sta_recv_mgmt(struct ieee80211_node *,
168349156a9SAndriy Voskoboinyk 			    struct mbuf *, int,
169349156a9SAndriy Voskoboinyk 			    const struct ieee80211_rx_stats *, int, int);
170349156a9SAndriy Voskoboinyk static int		rum_set_power_state(struct rum_softc *, int);
17102ac6454SAndrew Thompson static int		rum_newstate(struct ieee80211vap *,
17202ac6454SAndrew Thompson 			    enum ieee80211_state, int);
1732cb9ef8dSAdrian Chadd static uint8_t		rum_crypto_mode(struct rum_softc *, u_int, int);
17402ac6454SAndrew Thompson static void		rum_setup_tx_desc(struct rum_softc *,
1752cb9ef8dSAdrian Chadd 			    struct rum_tx_desc *, struct ieee80211_key *,
1761354b52cSAdrian Chadd 			    uint32_t, uint8_t, uint8_t, int, int, int);
1772cb9ef8dSAdrian Chadd static uint32_t		rum_tx_crypto_flags(struct rum_softc *,
1782cb9ef8dSAdrian Chadd 			    struct ieee80211_node *,
1792cb9ef8dSAdrian Chadd 			    const struct ieee80211_key *);
18002ac6454SAndrew Thompson static int		rum_tx_mgt(struct rum_softc *, struct mbuf *,
18102ac6454SAndrew Thompson 			    struct ieee80211_node *);
18202ac6454SAndrew Thompson static int		rum_tx_raw(struct rum_softc *, struct mbuf *,
18302ac6454SAndrew Thompson 			    struct ieee80211_node *,
18402ac6454SAndrew Thompson 			    const struct ieee80211_bpf_params *);
18502ac6454SAndrew Thompson static int		rum_tx_data(struct rum_softc *, struct mbuf *,
18602ac6454SAndrew Thompson 			    struct ieee80211_node *);
1877a79cebfSGleb Smirnoff static int		rum_transmit(struct ieee80211com *, struct mbuf *);
1887a79cebfSGleb Smirnoff static void		rum_start(struct rum_softc *);
1897a79cebfSGleb Smirnoff static void		rum_parent(struct ieee80211com *);
19002ac6454SAndrew Thompson static void		rum_eeprom_read(struct rum_softc *, uint16_t, void *,
19102ac6454SAndrew Thompson 			    int);
19202ac6454SAndrew Thompson static uint32_t		rum_read(struct rum_softc *, uint16_t);
19302ac6454SAndrew Thompson static void		rum_read_multi(struct rum_softc *, uint16_t, void *,
19402ac6454SAndrew Thompson 			    int);
195e0a69b51SAndrew Thompson static usb_error_t	rum_write(struct rum_softc *, uint16_t, uint32_t);
196e0a69b51SAndrew Thompson static usb_error_t	rum_write_multi(struct rum_softc *, uint16_t, void *,
19702ac6454SAndrew Thompson 			    size_t);
198a05022b2SAdrian Chadd static usb_error_t	rum_setbits(struct rum_softc *, uint16_t, uint32_t);
199a05022b2SAdrian Chadd static usb_error_t	rum_clrbits(struct rum_softc *, uint16_t, uint32_t);
200a05022b2SAdrian Chadd static usb_error_t	rum_modbits(struct rum_softc *, uint16_t, uint32_t,
201a05022b2SAdrian Chadd 			    uint32_t);
202cc9ae761SAdrian Chadd static int		rum_bbp_busy(struct rum_softc *);
20302ac6454SAndrew Thompson static void		rum_bbp_write(struct rum_softc *, uint8_t, uint8_t);
20402ac6454SAndrew Thompson static uint8_t		rum_bbp_read(struct rum_softc *, uint8_t);
20502ac6454SAndrew Thompson static void		rum_rf_write(struct rum_softc *, uint8_t, uint32_t);
20602ac6454SAndrew Thompson static void		rum_select_antenna(struct rum_softc *);
20702ac6454SAndrew Thompson static void		rum_enable_mrr(struct rum_softc *);
20802ac6454SAndrew Thompson static void		rum_set_txpreamble(struct rum_softc *);
20902ac6454SAndrew Thompson static void		rum_set_basicrates(struct rum_softc *);
21002ac6454SAndrew Thompson static void		rum_select_band(struct rum_softc *,
21102ac6454SAndrew Thompson 			    struct ieee80211_channel *);
21202ac6454SAndrew Thompson static void		rum_set_chan(struct rum_softc *,
21302ac6454SAndrew Thompson 			    struct ieee80211_channel *);
214342ced03SAdrian Chadd static void		rum_set_maxretry(struct rum_softc *,
215342ced03SAdrian Chadd 			    struct ieee80211vap *);
216aa81f853SAdrian Chadd static int		rum_enable_tsf_sync(struct rum_softc *);
2175463c4a4SSam Leffler static void		rum_enable_tsf(struct rum_softc *);
2186d804321SAdrian Chadd static void		rum_abort_tsf_sync(struct rum_softc *);
219a6ccd477SAdrian Chadd static void		rum_get_tsf(struct rum_softc *, uint64_t *);
220a19dbd8dSAdrian Chadd static void		rum_update_slot_cb(struct rum_softc *,
221ed5711a1SAdrian Chadd 			    union sec_param *, uint8_t);
222a19dbd8dSAdrian Chadd static void		rum_update_slot(struct ieee80211com *);
2231354b52cSAdrian Chadd static int		rum_wme_update(struct ieee80211com *);
22402ac6454SAndrew Thompson static void		rum_set_bssid(struct rum_softc *, const uint8_t *);
22502ac6454SAndrew Thompson static void		rum_set_macaddr(struct rum_softc *, const uint8_t *);
226272f6adeSGleb Smirnoff static void		rum_update_mcast(struct ieee80211com *);
227272f6adeSGleb Smirnoff static void		rum_update_promisc(struct ieee80211com *);
2285efea30fSAndrew Thompson static void		rum_setpromisc(struct rum_softc *);
22902ac6454SAndrew Thompson static const char	*rum_get_rf(int);
23002ac6454SAndrew Thompson static void		rum_read_eeprom(struct rum_softc *);
2316095f7caSAdrian Chadd static int		rum_bbp_wakeup(struct rum_softc *);
23202ac6454SAndrew Thompson static int		rum_bbp_init(struct rum_softc *);
2332cb9ef8dSAdrian Chadd static void		rum_clr_shkey_regs(struct rum_softc *);
2340698c0b3SAdrian Chadd static int		rum_init(struct rum_softc *);
2355efea30fSAndrew Thompson static void		rum_stop(struct rum_softc *);
23677ddf3d3SAndrew Thompson static void		rum_load_microcode(struct rum_softc *, const uint8_t *,
23702ac6454SAndrew Thompson 			    size_t);
238349156a9SAndriy Voskoboinyk static int		rum_set_sleep_time(struct rum_softc *, uint16_t);
239349156a9SAndriy Voskoboinyk static int		rum_reset(struct ieee80211vap *, u_long);
240b780f864SAdrian Chadd static int		rum_set_beacon(struct rum_softc *,
241b780f864SAdrian Chadd 			    struct ieee80211vap *);
242b780f864SAdrian Chadd static int		rum_alloc_beacon(struct rum_softc *,
24302ac6454SAndrew Thompson 			    struct ieee80211vap *);
2440e3b4c60SAdrian Chadd static void		rum_update_beacon_cb(struct rum_softc *,
245ed5711a1SAdrian Chadd 			    union sec_param *, uint8_t);
2460e3b4c60SAdrian Chadd static void		rum_update_beacon(struct ieee80211vap *, int);
2472cb9ef8dSAdrian Chadd static int		rum_common_key_set(struct rum_softc *,
2482cb9ef8dSAdrian Chadd 			    struct ieee80211_key *, uint16_t);
2492cb9ef8dSAdrian Chadd static void		rum_group_key_set_cb(struct rum_softc *,
250ed5711a1SAdrian Chadd 			    union sec_param *, uint8_t);
2512cb9ef8dSAdrian Chadd static void		rum_group_key_del_cb(struct rum_softc *,
252ed5711a1SAdrian Chadd 			    union sec_param *, uint8_t);
2532cb9ef8dSAdrian Chadd static void		rum_pair_key_set_cb(struct rum_softc *,
254ed5711a1SAdrian Chadd 			    union sec_param *, uint8_t);
2552cb9ef8dSAdrian Chadd static void		rum_pair_key_del_cb(struct rum_softc *,
256ed5711a1SAdrian Chadd 			    union sec_param *, uint8_t);
2572cb9ef8dSAdrian Chadd static int		rum_key_alloc(struct ieee80211vap *,
2582cb9ef8dSAdrian Chadd 			    struct ieee80211_key *, ieee80211_keyix *,
2592cb9ef8dSAdrian Chadd 			    ieee80211_keyix *);
2602cb9ef8dSAdrian Chadd static int		rum_key_set(struct ieee80211vap *,
261bc813c40SAdrian Chadd 			    const struct ieee80211_key *);
2622cb9ef8dSAdrian Chadd static int		rum_key_delete(struct ieee80211vap *,
2632cb9ef8dSAdrian Chadd 			    const struct ieee80211_key *);
26402ac6454SAndrew Thompson static int		rum_raw_xmit(struct ieee80211_node *, struct mbuf *,
26502ac6454SAndrew Thompson 			    const struct ieee80211_bpf_params *);
26602ac6454SAndrew Thompson static void		rum_scan_start(struct ieee80211com *);
26702ac6454SAndrew Thompson static void		rum_scan_end(struct ieee80211com *);
26802ac6454SAndrew Thompson static void		rum_set_channel(struct ieee80211com *);
2697b45c9dfSAndriy Voskoboinyk static void		rum_getradiocaps(struct ieee80211com *, int, int *,
2707b45c9dfSAndriy Voskoboinyk 			    struct ieee80211_channel[]);
27102ac6454SAndrew Thompson static int		rum_get_rssi(struct rum_softc *, uint8_t);
272b6108616SRui Paulo static void		rum_ratectl_start(struct rum_softc *,
27302ac6454SAndrew Thompson 			    struct ieee80211_node *);
274b6108616SRui Paulo static void		rum_ratectl_timeout(void *);
275b6108616SRui Paulo static void		rum_ratectl_task(void *, int);
27602ac6454SAndrew Thompson static int		rum_pause(struct rum_softc *, int);
27702ac6454SAndrew Thompson 
27802ac6454SAndrew Thompson static const struct {
27902ac6454SAndrew Thompson 	uint32_t	reg;
28002ac6454SAndrew Thompson 	uint32_t	val;
28102ac6454SAndrew Thompson } rum_def_mac[] = {
28202ac6454SAndrew Thompson 	{ RT2573_TXRX_CSR0,  0x025fb032 },
28302ac6454SAndrew Thompson 	{ RT2573_TXRX_CSR1,  0x9eaa9eaf },
28402ac6454SAndrew Thompson 	{ RT2573_TXRX_CSR2,  0x8a8b8c8d },
28502ac6454SAndrew Thompson 	{ RT2573_TXRX_CSR3,  0x00858687 },
28602ac6454SAndrew Thompson 	{ RT2573_TXRX_CSR7,  0x2e31353b },
28702ac6454SAndrew Thompson 	{ RT2573_TXRX_CSR8,  0x2a2a2a2c },
28802ac6454SAndrew Thompson 	{ RT2573_TXRX_CSR15, 0x0000000f },
28902ac6454SAndrew Thompson 	{ RT2573_MAC_CSR6,   0x00000fff },
29002ac6454SAndrew Thompson 	{ RT2573_MAC_CSR8,   0x016c030a },
29102ac6454SAndrew Thompson 	{ RT2573_MAC_CSR10,  0x00000718 },
29202ac6454SAndrew Thompson 	{ RT2573_MAC_CSR12,  0x00000004 },
29302ac6454SAndrew Thompson 	{ RT2573_MAC_CSR13,  0x00007f00 },
2942cb9ef8dSAdrian Chadd 	{ RT2573_SEC_CSR2,   0x00000000 },
2952cb9ef8dSAdrian Chadd 	{ RT2573_SEC_CSR3,   0x00000000 },
2962cb9ef8dSAdrian Chadd 	{ RT2573_SEC_CSR4,   0x00000000 },
29702ac6454SAndrew Thompson 	{ RT2573_PHY_CSR1,   0x000023b0 },
29802ac6454SAndrew Thompson 	{ RT2573_PHY_CSR5,   0x00040a06 },
29902ac6454SAndrew Thompson 	{ RT2573_PHY_CSR6,   0x00080606 },
30002ac6454SAndrew Thompson 	{ RT2573_PHY_CSR7,   0x00000408 },
30102ac6454SAndrew Thompson 	{ RT2573_AIFSN_CSR,  0x00002273 },
30202ac6454SAndrew Thompson 	{ RT2573_CWMIN_CSR,  0x00002344 },
30302ac6454SAndrew Thompson 	{ RT2573_CWMAX_CSR,  0x000034aa }
30402ac6454SAndrew Thompson };
30502ac6454SAndrew Thompson 
30602ac6454SAndrew Thompson static const struct {
30702ac6454SAndrew Thompson 	uint8_t	reg;
30802ac6454SAndrew Thompson 	uint8_t	val;
30902ac6454SAndrew Thompson } rum_def_bbp[] = {
31002ac6454SAndrew Thompson 	{   3, 0x80 },
31102ac6454SAndrew Thompson 	{  15, 0x30 },
31202ac6454SAndrew Thompson 	{  17, 0x20 },
31302ac6454SAndrew Thompson 	{  21, 0xc8 },
31402ac6454SAndrew Thompson 	{  22, 0x38 },
31502ac6454SAndrew Thompson 	{  23, 0x06 },
31602ac6454SAndrew Thompson 	{  24, 0xfe },
31702ac6454SAndrew Thompson 	{  25, 0x0a },
31802ac6454SAndrew Thompson 	{  26, 0x0d },
31902ac6454SAndrew Thompson 	{  32, 0x0b },
32002ac6454SAndrew Thompson 	{  34, 0x12 },
32102ac6454SAndrew Thompson 	{  37, 0x07 },
32202ac6454SAndrew Thompson 	{  39, 0xf8 },
32302ac6454SAndrew Thompson 	{  41, 0x60 },
32402ac6454SAndrew Thompson 	{  53, 0x10 },
32502ac6454SAndrew Thompson 	{  54, 0x18 },
32602ac6454SAndrew Thompson 	{  60, 0x10 },
32702ac6454SAndrew Thompson 	{  61, 0x04 },
32802ac6454SAndrew Thompson 	{  62, 0x04 },
32902ac6454SAndrew Thompson 	{  75, 0xfe },
33002ac6454SAndrew Thompson 	{  86, 0xfe },
33102ac6454SAndrew Thompson 	{  88, 0xfe },
33202ac6454SAndrew Thompson 	{  90, 0x0f },
33302ac6454SAndrew Thompson 	{  99, 0x00 },
33402ac6454SAndrew Thompson 	{ 102, 0x16 },
33502ac6454SAndrew Thompson 	{ 107, 0x04 }
33602ac6454SAndrew Thompson };
33702ac6454SAndrew Thompson 
3387b45c9dfSAndriy Voskoboinyk static const uint8_t rum_chan_5ghz[] =
3397b45c9dfSAndriy Voskoboinyk 	{ 34, 36, 38, 40, 42, 44, 46, 48, 52, 56, 60, 64,
3407b45c9dfSAndriy Voskoboinyk 	  100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140,
3417b45c9dfSAndriy Voskoboinyk 	  149, 153, 157, 161, 165 };
3427b45c9dfSAndriy Voskoboinyk 
34302ac6454SAndrew Thompson static const struct rfprog {
34402ac6454SAndrew Thompson 	uint8_t		chan;
34502ac6454SAndrew Thompson 	uint32_t	r1, r2, r3, r4;
34602ac6454SAndrew Thompson }  rum_rf5226[] = {
34702ac6454SAndrew Thompson 	{   1, 0x00b03, 0x001e1, 0x1a014, 0x30282 },
34802ac6454SAndrew Thompson 	{   2, 0x00b03, 0x001e1, 0x1a014, 0x30287 },
34902ac6454SAndrew Thompson 	{   3, 0x00b03, 0x001e2, 0x1a014, 0x30282 },
35002ac6454SAndrew Thompson 	{   4, 0x00b03, 0x001e2, 0x1a014, 0x30287 },
35102ac6454SAndrew Thompson 	{   5, 0x00b03, 0x001e3, 0x1a014, 0x30282 },
35202ac6454SAndrew Thompson 	{   6, 0x00b03, 0x001e3, 0x1a014, 0x30287 },
35302ac6454SAndrew Thompson 	{   7, 0x00b03, 0x001e4, 0x1a014, 0x30282 },
35402ac6454SAndrew Thompson 	{   8, 0x00b03, 0x001e4, 0x1a014, 0x30287 },
35502ac6454SAndrew Thompson 	{   9, 0x00b03, 0x001e5, 0x1a014, 0x30282 },
35602ac6454SAndrew Thompson 	{  10, 0x00b03, 0x001e5, 0x1a014, 0x30287 },
35702ac6454SAndrew Thompson 	{  11, 0x00b03, 0x001e6, 0x1a014, 0x30282 },
35802ac6454SAndrew Thompson 	{  12, 0x00b03, 0x001e6, 0x1a014, 0x30287 },
35902ac6454SAndrew Thompson 	{  13, 0x00b03, 0x001e7, 0x1a014, 0x30282 },
36002ac6454SAndrew Thompson 	{  14, 0x00b03, 0x001e8, 0x1a014, 0x30284 },
36102ac6454SAndrew Thompson 
36202ac6454SAndrew Thompson 	{  34, 0x00b03, 0x20266, 0x36014, 0x30282 },
36302ac6454SAndrew Thompson 	{  38, 0x00b03, 0x20267, 0x36014, 0x30284 },
36402ac6454SAndrew Thompson 	{  42, 0x00b03, 0x20268, 0x36014, 0x30286 },
36502ac6454SAndrew Thompson 	{  46, 0x00b03, 0x20269, 0x36014, 0x30288 },
36602ac6454SAndrew Thompson 
36702ac6454SAndrew Thompson 	{  36, 0x00b03, 0x00266, 0x26014, 0x30288 },
36802ac6454SAndrew Thompson 	{  40, 0x00b03, 0x00268, 0x26014, 0x30280 },
36902ac6454SAndrew Thompson 	{  44, 0x00b03, 0x00269, 0x26014, 0x30282 },
37002ac6454SAndrew Thompson 	{  48, 0x00b03, 0x0026a, 0x26014, 0x30284 },
37102ac6454SAndrew Thompson 	{  52, 0x00b03, 0x0026b, 0x26014, 0x30286 },
37202ac6454SAndrew Thompson 	{  56, 0x00b03, 0x0026c, 0x26014, 0x30288 },
37302ac6454SAndrew Thompson 	{  60, 0x00b03, 0x0026e, 0x26014, 0x30280 },
37402ac6454SAndrew Thompson 	{  64, 0x00b03, 0x0026f, 0x26014, 0x30282 },
37502ac6454SAndrew Thompson 
37602ac6454SAndrew Thompson 	{ 100, 0x00b03, 0x0028a, 0x2e014, 0x30280 },
37702ac6454SAndrew Thompson 	{ 104, 0x00b03, 0x0028b, 0x2e014, 0x30282 },
37802ac6454SAndrew Thompson 	{ 108, 0x00b03, 0x0028c, 0x2e014, 0x30284 },
37902ac6454SAndrew Thompson 	{ 112, 0x00b03, 0x0028d, 0x2e014, 0x30286 },
38002ac6454SAndrew Thompson 	{ 116, 0x00b03, 0x0028e, 0x2e014, 0x30288 },
38102ac6454SAndrew Thompson 	{ 120, 0x00b03, 0x002a0, 0x2e014, 0x30280 },
38202ac6454SAndrew Thompson 	{ 124, 0x00b03, 0x002a1, 0x2e014, 0x30282 },
38302ac6454SAndrew Thompson 	{ 128, 0x00b03, 0x002a2, 0x2e014, 0x30284 },
38402ac6454SAndrew Thompson 	{ 132, 0x00b03, 0x002a3, 0x2e014, 0x30286 },
38502ac6454SAndrew Thompson 	{ 136, 0x00b03, 0x002a4, 0x2e014, 0x30288 },
38602ac6454SAndrew Thompson 	{ 140, 0x00b03, 0x002a6, 0x2e014, 0x30280 },
38702ac6454SAndrew Thompson 
38802ac6454SAndrew Thompson 	{ 149, 0x00b03, 0x002a8, 0x2e014, 0x30287 },
38902ac6454SAndrew Thompson 	{ 153, 0x00b03, 0x002a9, 0x2e014, 0x30289 },
39002ac6454SAndrew Thompson 	{ 157, 0x00b03, 0x002ab, 0x2e014, 0x30281 },
39102ac6454SAndrew Thompson 	{ 161, 0x00b03, 0x002ac, 0x2e014, 0x30283 },
39202ac6454SAndrew Thompson 	{ 165, 0x00b03, 0x002ad, 0x2e014, 0x30285 }
39302ac6454SAndrew Thompson }, rum_rf5225[] = {
39402ac6454SAndrew Thompson 	{   1, 0x00b33, 0x011e1, 0x1a014, 0x30282 },
39502ac6454SAndrew Thompson 	{   2, 0x00b33, 0x011e1, 0x1a014, 0x30287 },
39602ac6454SAndrew Thompson 	{   3, 0x00b33, 0x011e2, 0x1a014, 0x30282 },
39702ac6454SAndrew Thompson 	{   4, 0x00b33, 0x011e2, 0x1a014, 0x30287 },
39802ac6454SAndrew Thompson 	{   5, 0x00b33, 0x011e3, 0x1a014, 0x30282 },
39902ac6454SAndrew Thompson 	{   6, 0x00b33, 0x011e3, 0x1a014, 0x30287 },
40002ac6454SAndrew Thompson 	{   7, 0x00b33, 0x011e4, 0x1a014, 0x30282 },
40102ac6454SAndrew Thompson 	{   8, 0x00b33, 0x011e4, 0x1a014, 0x30287 },
40202ac6454SAndrew Thompson 	{   9, 0x00b33, 0x011e5, 0x1a014, 0x30282 },
40302ac6454SAndrew Thompson 	{  10, 0x00b33, 0x011e5, 0x1a014, 0x30287 },
40402ac6454SAndrew Thompson 	{  11, 0x00b33, 0x011e6, 0x1a014, 0x30282 },
40502ac6454SAndrew Thompson 	{  12, 0x00b33, 0x011e6, 0x1a014, 0x30287 },
40602ac6454SAndrew Thompson 	{  13, 0x00b33, 0x011e7, 0x1a014, 0x30282 },
40702ac6454SAndrew Thompson 	{  14, 0x00b33, 0x011e8, 0x1a014, 0x30284 },
40802ac6454SAndrew Thompson 
40902ac6454SAndrew Thompson 	{  34, 0x00b33, 0x01266, 0x26014, 0x30282 },
41002ac6454SAndrew Thompson 	{  38, 0x00b33, 0x01267, 0x26014, 0x30284 },
41102ac6454SAndrew Thompson 	{  42, 0x00b33, 0x01268, 0x26014, 0x30286 },
41202ac6454SAndrew Thompson 	{  46, 0x00b33, 0x01269, 0x26014, 0x30288 },
41302ac6454SAndrew Thompson 
41402ac6454SAndrew Thompson 	{  36, 0x00b33, 0x01266, 0x26014, 0x30288 },
41502ac6454SAndrew Thompson 	{  40, 0x00b33, 0x01268, 0x26014, 0x30280 },
41602ac6454SAndrew Thompson 	{  44, 0x00b33, 0x01269, 0x26014, 0x30282 },
41702ac6454SAndrew Thompson 	{  48, 0x00b33, 0x0126a, 0x26014, 0x30284 },
41802ac6454SAndrew Thompson 	{  52, 0x00b33, 0x0126b, 0x26014, 0x30286 },
41902ac6454SAndrew Thompson 	{  56, 0x00b33, 0x0126c, 0x26014, 0x30288 },
42002ac6454SAndrew Thompson 	{  60, 0x00b33, 0x0126e, 0x26014, 0x30280 },
42102ac6454SAndrew Thompson 	{  64, 0x00b33, 0x0126f, 0x26014, 0x30282 },
42202ac6454SAndrew Thompson 
42302ac6454SAndrew Thompson 	{ 100, 0x00b33, 0x0128a, 0x2e014, 0x30280 },
42402ac6454SAndrew Thompson 	{ 104, 0x00b33, 0x0128b, 0x2e014, 0x30282 },
42502ac6454SAndrew Thompson 	{ 108, 0x00b33, 0x0128c, 0x2e014, 0x30284 },
42602ac6454SAndrew Thompson 	{ 112, 0x00b33, 0x0128d, 0x2e014, 0x30286 },
42702ac6454SAndrew Thompson 	{ 116, 0x00b33, 0x0128e, 0x2e014, 0x30288 },
42802ac6454SAndrew Thompson 	{ 120, 0x00b33, 0x012a0, 0x2e014, 0x30280 },
42902ac6454SAndrew Thompson 	{ 124, 0x00b33, 0x012a1, 0x2e014, 0x30282 },
43002ac6454SAndrew Thompson 	{ 128, 0x00b33, 0x012a2, 0x2e014, 0x30284 },
43102ac6454SAndrew Thompson 	{ 132, 0x00b33, 0x012a3, 0x2e014, 0x30286 },
43202ac6454SAndrew Thompson 	{ 136, 0x00b33, 0x012a4, 0x2e014, 0x30288 },
43302ac6454SAndrew Thompson 	{ 140, 0x00b33, 0x012a6, 0x2e014, 0x30280 },
43402ac6454SAndrew Thompson 
43502ac6454SAndrew Thompson 	{ 149, 0x00b33, 0x012a8, 0x2e014, 0x30287 },
43602ac6454SAndrew Thompson 	{ 153, 0x00b33, 0x012a9, 0x2e014, 0x30289 },
43702ac6454SAndrew Thompson 	{ 157, 0x00b33, 0x012ab, 0x2e014, 0x30281 },
43802ac6454SAndrew Thompson 	{ 161, 0x00b33, 0x012ac, 0x2e014, 0x30283 },
43902ac6454SAndrew Thompson 	{ 165, 0x00b33, 0x012ad, 0x2e014, 0x30285 }
44002ac6454SAndrew Thompson };
44102ac6454SAndrew Thompson 
442760bc48eSAndrew Thompson static const struct usb_config rum_config[RUM_N_TRANSFER] = {
44302ac6454SAndrew Thompson 	[RUM_BULK_WR] = {
44402ac6454SAndrew Thompson 		.type = UE_BULK,
44502ac6454SAndrew Thompson 		.endpoint = UE_ADDR_ANY,
44602ac6454SAndrew Thompson 		.direction = UE_DIR_OUT,
4474eae601eSAndrew Thompson 		.bufsize = (MCLBYTES + RT2573_TX_DESC_SIZE + 8),
4484eae601eSAndrew Thompson 		.flags = {.pipe_bof = 1,.force_short_xfer = 1,},
4494eae601eSAndrew Thompson 		.callback = rum_bulk_write_callback,
4504eae601eSAndrew Thompson 		.timeout = 5000,	/* ms */
45102ac6454SAndrew Thompson 	},
45202ac6454SAndrew Thompson 	[RUM_BULK_RD] = {
45302ac6454SAndrew Thompson 		.type = UE_BULK,
45402ac6454SAndrew Thompson 		.endpoint = UE_ADDR_ANY,
45502ac6454SAndrew Thompson 		.direction = UE_DIR_IN,
4564eae601eSAndrew Thompson 		.bufsize = (MCLBYTES + RT2573_RX_DESC_SIZE),
4574eae601eSAndrew Thompson 		.flags = {.pipe_bof = 1,.short_xfer_ok = 1,},
4584eae601eSAndrew Thompson 		.callback = rum_bulk_read_callback,
45902ac6454SAndrew Thompson 	},
46002ac6454SAndrew Thompson };
46102ac6454SAndrew Thompson 
46202ac6454SAndrew Thompson static int
rum_match(device_t self)46302ac6454SAndrew Thompson rum_match(device_t self)
46402ac6454SAndrew Thompson {
465760bc48eSAndrew Thompson 	struct usb_attach_arg *uaa = device_get_ivars(self);
46602ac6454SAndrew Thompson 
467f29a0724SAndrew Thompson 	if (uaa->usb_mode != USB_MODE_HOST)
46802ac6454SAndrew Thompson 		return (ENXIO);
46902ac6454SAndrew Thompson 	if (uaa->info.bConfigIndex != 0)
47002ac6454SAndrew Thompson 		return (ENXIO);
47102ac6454SAndrew Thompson 	if (uaa->info.bIfaceIndex != RT2573_IFACE_INDEX)
47202ac6454SAndrew Thompson 		return (ENXIO);
47302ac6454SAndrew Thompson 
474a593f6b8SAndrew Thompson 	return (usbd_lookup_id_by_uaa(rum_devs, sizeof(rum_devs), uaa));
47502ac6454SAndrew Thompson }
47602ac6454SAndrew Thompson 
47702ac6454SAndrew Thompson static int
rum_attach(device_t self)47802ac6454SAndrew Thompson rum_attach(device_t self)
47902ac6454SAndrew Thompson {
480760bc48eSAndrew Thompson 	struct usb_attach_arg *uaa = device_get_ivars(self);
48102ac6454SAndrew Thompson 	struct rum_softc *sc = device_get_softc(self);
4827a79cebfSGleb Smirnoff 	struct ieee80211com *ic = &sc->sc_ic;
4835efea30fSAndrew Thompson 	uint32_t tmp;
4840046e186SAndriy Voskoboinyk 	uint8_t iface_index;
4855efea30fSAndrew Thompson 	int error, ntries;
48602ac6454SAndrew Thompson 
487a593f6b8SAndrew Thompson 	device_set_usb_desc(self);
48802ac6454SAndrew Thompson 	sc->sc_udev = uaa->device;
48902ac6454SAndrew Thompson 	sc->sc_dev = self;
49002ac6454SAndrew Thompson 
491f28c2f5eSAdrian Chadd 	RUM_LOCK_INIT(sc);
492f28c2f5eSAdrian Chadd 	RUM_CMDQ_LOCK_INIT(sc);
4937a79cebfSGleb Smirnoff 	mbufq_init(&sc->sc_snd, ifqmaxlen);
49402ac6454SAndrew Thompson 
49502ac6454SAndrew Thompson 	iface_index = RT2573_IFACE_INDEX;
496a593f6b8SAndrew Thompson 	error = usbd_transfer_setup(uaa->device, &iface_index,
49702ac6454SAndrew Thompson 	    sc->sc_xfer, rum_config, RUM_N_TRANSFER, sc, &sc->sc_mtx);
49802ac6454SAndrew Thompson 	if (error) {
49902ac6454SAndrew Thompson 		device_printf(self, "could not allocate USB transfers, "
500a593f6b8SAndrew Thompson 		    "err=%s\n", usbd_errstr(error));
50102ac6454SAndrew Thompson 		goto detach;
50202ac6454SAndrew Thompson 	}
50302ac6454SAndrew Thompson 
50402ac6454SAndrew Thompson 	RUM_LOCK(sc);
50502ac6454SAndrew Thompson 	/* retrieve RT2573 rev. no */
50602ac6454SAndrew Thompson 	for (ntries = 0; ntries < 100; ntries++) {
50702ac6454SAndrew Thompson 		if ((tmp = rum_read(sc, RT2573_MAC_CSR0)) != 0)
50802ac6454SAndrew Thompson 			break;
50902ac6454SAndrew Thompson 		if (rum_pause(sc, hz / 100))
51002ac6454SAndrew Thompson 			break;
51102ac6454SAndrew Thompson 	}
51202ac6454SAndrew Thompson 	if (ntries == 100) {
51302ac6454SAndrew Thompson 		device_printf(sc->sc_dev, "timeout waiting for chip to settle\n");
5145efea30fSAndrew Thompson 		RUM_UNLOCK(sc);
5155efea30fSAndrew Thompson 		goto detach;
51602ac6454SAndrew Thompson 	}
51702ac6454SAndrew Thompson 
51802ac6454SAndrew Thompson 	/* retrieve MAC address and various other things from EEPROM */
51902ac6454SAndrew Thompson 	rum_read_eeprom(sc);
52002ac6454SAndrew Thompson 
52102ac6454SAndrew Thompson 	device_printf(sc->sc_dev, "MAC/BBP RT2573 (rev 0x%05x), RF %s\n",
52202ac6454SAndrew Thompson 	    tmp, rum_get_rf(sc->rf_rev));
52302ac6454SAndrew Thompson 
52477ddf3d3SAndrew Thompson 	rum_load_microcode(sc, rt2573_ucode, sizeof(rt2573_ucode));
52502ac6454SAndrew Thompson 	RUM_UNLOCK(sc);
52602ac6454SAndrew Thompson 
52759686fe9SGleb Smirnoff 	ic->ic_softc = sc;
528c8550c02SGleb Smirnoff 	ic->ic_name = device_get_nameunit(self);
52902ac6454SAndrew Thompson 	ic->ic_phytype = IEEE80211_T_OFDM;	/* not only, but not used */
53002ac6454SAndrew Thompson 
53102ac6454SAndrew Thompson 	/* set device capabilities */
53202ac6454SAndrew Thompson 	ic->ic_caps =
53302ac6454SAndrew Thompson 	      IEEE80211_C_STA		/* station mode supported */
53402ac6454SAndrew Thompson 	    | IEEE80211_C_IBSS		/* IBSS mode supported */
53502ac6454SAndrew Thompson 	    | IEEE80211_C_MONITOR	/* monitor mode supported */
53602ac6454SAndrew Thompson 	    | IEEE80211_C_HOSTAP	/* HostAp mode supported */
53750a31b48SAdrian Chadd 	    | IEEE80211_C_AHDEMO	/* adhoc demo mode */
53802ac6454SAndrew Thompson 	    | IEEE80211_C_TXPMGT	/* tx power management */
53902ac6454SAndrew Thompson 	    | IEEE80211_C_SHPREAMBLE	/* short preamble supported */
54002ac6454SAndrew Thompson 	    | IEEE80211_C_SHSLOT	/* short slot time supported */
54102ac6454SAndrew Thompson 	    | IEEE80211_C_BGSCAN	/* bg scanning supported */
54202ac6454SAndrew Thompson 	    | IEEE80211_C_WPA		/* 802.11i */
5431354b52cSAdrian Chadd 	    | IEEE80211_C_WME		/* 802.11e */
544349156a9SAndriy Voskoboinyk 	    | IEEE80211_C_PMGT		/* Station-side power mgmt */
545349156a9SAndriy Voskoboinyk 	    | IEEE80211_C_SWSLEEP	/* net80211 managed power mgmt */
54602ac6454SAndrew Thompson 	    ;
54702ac6454SAndrew Thompson 
5482cb9ef8dSAdrian Chadd 	ic->ic_cryptocaps =
5492cb9ef8dSAdrian Chadd 	    IEEE80211_CRYPTO_WEP |
5502cb9ef8dSAdrian Chadd 	    IEEE80211_CRYPTO_AES_CCM |
5512cb9ef8dSAdrian Chadd 	    IEEE80211_CRYPTO_TKIPMIC |
5522cb9ef8dSAdrian Chadd 	    IEEE80211_CRYPTO_TKIP;
5532cb9ef8dSAdrian Chadd 
5547b45c9dfSAndriy Voskoboinyk 	rum_getradiocaps(ic, IEEE80211_CHAN_MAX, &ic->ic_nchans,
5557b45c9dfSAndriy Voskoboinyk 	    ic->ic_channels);
55602ac6454SAndrew Thompson 
5577a79cebfSGleb Smirnoff 	ieee80211_ifattach(ic);
55877ddf3d3SAndrew Thompson 	ic->ic_update_promisc = rum_update_promisc;
55902ac6454SAndrew Thompson 	ic->ic_raw_xmit = rum_raw_xmit;
56002ac6454SAndrew Thompson 	ic->ic_scan_start = rum_scan_start;
56102ac6454SAndrew Thompson 	ic->ic_scan_end = rum_scan_end;
56202ac6454SAndrew Thompson 	ic->ic_set_channel = rum_set_channel;
5637b45c9dfSAndriy Voskoboinyk 	ic->ic_getradiocaps = rum_getradiocaps;
5647a79cebfSGleb Smirnoff 	ic->ic_transmit = rum_transmit;
5657a79cebfSGleb Smirnoff 	ic->ic_parent = rum_parent;
56602ac6454SAndrew Thompson 	ic->ic_vap_create = rum_vap_create;
56702ac6454SAndrew Thompson 	ic->ic_vap_delete = rum_vap_delete;
568a19dbd8dSAdrian Chadd 	ic->ic_updateslot = rum_update_slot;
5691354b52cSAdrian Chadd 	ic->ic_wme.wme_update = rum_wme_update;
5706dd8e071SEd Maste 	ic->ic_update_mcast = rum_update_mcast;
57102ac6454SAndrew Thompson 
5725463c4a4SSam Leffler 	ieee80211_radiotap_attach(ic,
5735463c4a4SSam Leffler 	    &sc->sc_txtap.wt_ihdr, sizeof(sc->sc_txtap),
5745463c4a4SSam Leffler 		RT2573_TX_RADIOTAP_PRESENT,
5755463c4a4SSam Leffler 	    &sc->sc_rxtap.wr_ihdr, sizeof(sc->sc_rxtap),
5765463c4a4SSam Leffler 		RT2573_RX_RADIOTAP_PRESENT);
57702ac6454SAndrew Thompson 
578f28c2f5eSAdrian Chadd 	TASK_INIT(&sc->cmdq_task, 0, rum_cmdq_cb, sc);
579f28c2f5eSAdrian Chadd 
58002ac6454SAndrew Thompson 	if (bootverbose)
58102ac6454SAndrew Thompson 		ieee80211_announce(ic);
58202ac6454SAndrew Thompson 
5835efea30fSAndrew Thompson 	return (0);
5845efea30fSAndrew Thompson 
5855efea30fSAndrew Thompson detach:
5865efea30fSAndrew Thompson 	rum_detach(self);
5875efea30fSAndrew Thompson 	return (ENXIO);			/* failure */
58802ac6454SAndrew Thompson }
58902ac6454SAndrew Thompson 
59002ac6454SAndrew Thompson static int
rum_detach(device_t self)59102ac6454SAndrew Thompson rum_detach(device_t self)
59202ac6454SAndrew Thompson {
59302ac6454SAndrew Thompson 	struct rum_softc *sc = device_get_softc(self);
594e7b7db3dSAdrian Chadd 	struct ieee80211com *ic = &sc->sc_ic;
59502ac6454SAndrew Thompson 
596645e4d17SHans Petter Selasky 	/* Prevent further ioctls */
597645e4d17SHans Petter Selasky 	RUM_LOCK(sc);
598645e4d17SHans Petter Selasky 	sc->sc_detached = 1;
599645e4d17SHans Petter Selasky 	RUM_UNLOCK(sc);
600645e4d17SHans Petter Selasky 
60102ac6454SAndrew Thompson 	/* stop all USB transfers */
602a593f6b8SAndrew Thompson 	usbd_transfer_unsetup(sc->sc_xfer, RUM_N_TRANSFER);
60302ac6454SAndrew Thompson 
60402ac6454SAndrew Thompson 	/* free TX list, if any */
60502ac6454SAndrew Thompson 	RUM_LOCK(sc);
60602ac6454SAndrew Thompson 	rum_unsetup_tx_list(sc);
60702ac6454SAndrew Thompson 	RUM_UNLOCK(sc);
60802ac6454SAndrew Thompson 
609f28c2f5eSAdrian Chadd 	if (ic->ic_softc == sc) {
610f28c2f5eSAdrian Chadd 		ieee80211_draintask(ic, &sc->cmdq_task);
611e7b7db3dSAdrian Chadd 		ieee80211_ifdetach(ic);
612f28c2f5eSAdrian Chadd 	}
613f28c2f5eSAdrian Chadd 
6147a79cebfSGleb Smirnoff 	mbufq_drain(&sc->sc_snd);
615f28c2f5eSAdrian Chadd 	RUM_CMDQ_LOCK_DESTROY(sc);
616f28c2f5eSAdrian Chadd 	RUM_LOCK_DESTROY(sc);
617f28c2f5eSAdrian Chadd 
61802ac6454SAndrew Thompson 	return (0);
61902ac6454SAndrew Thompson }
62002ac6454SAndrew Thompson 
621e0a69b51SAndrew Thompson static usb_error_t
rum_do_request(struct rum_softc * sc,struct usb_device_request * req,void * data)62277ddf3d3SAndrew Thompson rum_do_request(struct rum_softc *sc,
623760bc48eSAndrew Thompson     struct usb_device_request *req, void *data)
62477ddf3d3SAndrew Thompson {
625e0a69b51SAndrew Thompson 	usb_error_t err;
62677ddf3d3SAndrew Thompson 	int ntries = 10;
62777ddf3d3SAndrew Thompson 
62877ddf3d3SAndrew Thompson 	while (ntries--) {
629a593f6b8SAndrew Thompson 		err = usbd_do_request_flags(sc->sc_udev, &sc->sc_mtx,
63077ddf3d3SAndrew Thompson 		    req, data, 0, NULL, 250 /* ms */);
63177ddf3d3SAndrew Thompson 		if (err == 0)
63277ddf3d3SAndrew Thompson 			break;
63377ddf3d3SAndrew Thompson 
63477ddf3d3SAndrew Thompson 		DPRINTFN(1, "Control request failed, %s (retrying)\n",
635a593f6b8SAndrew Thompson 		    usbd_errstr(err));
63677ddf3d3SAndrew Thompson 		if (rum_pause(sc, hz / 100))
63777ddf3d3SAndrew Thompson 			break;
63877ddf3d3SAndrew Thompson 	}
63977ddf3d3SAndrew Thompson 	return (err);
64077ddf3d3SAndrew Thompson }
64177ddf3d3SAndrew Thompson 
642fd7dae9cSAndriy Voskoboinyk static usb_error_t
rum_do_mcu_request(struct rum_softc * sc,int request)643fd7dae9cSAndriy Voskoboinyk rum_do_mcu_request(struct rum_softc *sc, int request)
644fd7dae9cSAndriy Voskoboinyk {
645fd7dae9cSAndriy Voskoboinyk 	struct usb_device_request req;
646fd7dae9cSAndriy Voskoboinyk 
647fd7dae9cSAndriy Voskoboinyk 	req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
648fd7dae9cSAndriy Voskoboinyk 	req.bRequest = RT2573_MCU_CNTL;
649fd7dae9cSAndriy Voskoboinyk 	USETW(req.wValue, request);
650fd7dae9cSAndriy Voskoboinyk 	USETW(req.wIndex, 0);
651fd7dae9cSAndriy Voskoboinyk 	USETW(req.wLength, 0);
652fd7dae9cSAndriy Voskoboinyk 
653fd7dae9cSAndriy Voskoboinyk 	return (rum_do_request(sc, &req, NULL));
654fd7dae9cSAndriy Voskoboinyk }
655fd7dae9cSAndriy Voskoboinyk 
65602ac6454SAndrew Thompson static struct ieee80211vap *
rum_vap_create(struct ieee80211com * ic,const char name[IFNAMSIZ],int unit,enum ieee80211_opmode opmode,int flags,const uint8_t bssid[IEEE80211_ADDR_LEN],const uint8_t mac[IEEE80211_ADDR_LEN])657fcd9500fSBernhard Schmidt rum_vap_create(struct ieee80211com *ic, const char name[IFNAMSIZ], int unit,
658fcd9500fSBernhard Schmidt     enum ieee80211_opmode opmode, int flags,
65902ac6454SAndrew Thompson     const uint8_t bssid[IEEE80211_ADDR_LEN],
66002ac6454SAndrew Thompson     const uint8_t mac[IEEE80211_ADDR_LEN])
66102ac6454SAndrew Thompson {
662d3fdd08cSAdrian Chadd 	struct rum_softc *sc = ic->ic_softc;
66302ac6454SAndrew Thompson 	struct rum_vap *rvp;
66402ac6454SAndrew Thompson 	struct ieee80211vap *vap;
66502ac6454SAndrew Thompson 
66602ac6454SAndrew Thompson 	if (!TAILQ_EMPTY(&ic->ic_vaps))		/* only one at a time */
66702ac6454SAndrew Thompson 		return NULL;
6687a79cebfSGleb Smirnoff 	rvp = malloc(sizeof(struct rum_vap), M_80211_VAP, M_WAITOK | M_ZERO);
66902ac6454SAndrew Thompson 	vap = &rvp->vap;
67002ac6454SAndrew Thompson 	/* enable s/w bmiss handling for sta mode */
671bb2f69e8SHans Petter Selasky 
672bb2f69e8SHans Petter Selasky 	if (ieee80211_vap_setup(ic, vap, name, unit, opmode,
6737a79cebfSGleb Smirnoff 	    flags | IEEE80211_CLONE_NOBEACONS, bssid) != 0) {
674bb2f69e8SHans Petter Selasky 		/* out of memory */
675bb2f69e8SHans Petter Selasky 		free(rvp, M_80211_VAP);
676bb2f69e8SHans Petter Selasky 		return (NULL);
677bb2f69e8SHans Petter Selasky 	}
67802ac6454SAndrew Thompson 
67902ac6454SAndrew Thompson 	/* override state transition machine */
68002ac6454SAndrew Thompson 	rvp->newstate = vap->iv_newstate;
68102ac6454SAndrew Thompson 	vap->iv_newstate = rum_newstate;
6822cb9ef8dSAdrian Chadd 	vap->iv_key_alloc = rum_key_alloc;
6832cb9ef8dSAdrian Chadd 	vap->iv_key_set = rum_key_set;
6842cb9ef8dSAdrian Chadd 	vap->iv_key_delete = rum_key_delete;
6850e3b4c60SAdrian Chadd 	vap->iv_update_beacon = rum_update_beacon;
686349156a9SAndriy Voskoboinyk 	vap->iv_reset = rum_reset;
6872cb9ef8dSAdrian Chadd 	vap->iv_max_aid = RT2573_ADDR_MAX;
68802ac6454SAndrew Thompson 
689349156a9SAndriy Voskoboinyk 	if (opmode == IEEE80211_M_STA) {
690349156a9SAndriy Voskoboinyk 		/*
691349156a9SAndriy Voskoboinyk 		 * Move device to the sleep state when
692349156a9SAndriy Voskoboinyk 		 * beacon is received and there is no data for us.
693349156a9SAndriy Voskoboinyk 		 *
694349156a9SAndriy Voskoboinyk 		 * Used only for IEEE80211_S_SLEEP state.
695349156a9SAndriy Voskoboinyk 		 */
696349156a9SAndriy Voskoboinyk 		rvp->recv_mgmt = vap->iv_recv_mgmt;
697349156a9SAndriy Voskoboinyk 		vap->iv_recv_mgmt = rum_sta_recv_mgmt;
698349156a9SAndriy Voskoboinyk 
699349156a9SAndriy Voskoboinyk 		/* Ignored while sleeping. */
700349156a9SAndriy Voskoboinyk 		rvp->bmiss = vap->iv_bmiss;
701349156a9SAndriy Voskoboinyk 		vap->iv_bmiss = rum_beacon_miss;
702349156a9SAndriy Voskoboinyk 	}
703349156a9SAndriy Voskoboinyk 
704b6108616SRui Paulo 	usb_callout_init_mtx(&rvp->ratectl_ch, &sc->sc_mtx, 0);
705b6108616SRui Paulo 	TASK_INIT(&rvp->ratectl_task, 0, rum_ratectl_task, rvp);
706b6108616SRui Paulo 	ieee80211_ratectl_init(vap);
707b6108616SRui Paulo 	ieee80211_ratectl_setinterval(vap, 1000 /* 1 sec */);
70802ac6454SAndrew Thompson 	/* complete setup */
7097a79cebfSGleb Smirnoff 	ieee80211_vap_attach(vap, ieee80211_media_change,
7107a79cebfSGleb Smirnoff 	    ieee80211_media_status, mac);
71102ac6454SAndrew Thompson 	ic->ic_opmode = opmode;
71202ac6454SAndrew Thompson 	return vap;
71302ac6454SAndrew Thompson }
71402ac6454SAndrew Thompson 
71502ac6454SAndrew Thompson static void
rum_vap_delete(struct ieee80211vap * vap)71602ac6454SAndrew Thompson rum_vap_delete(struct ieee80211vap *vap)
71702ac6454SAndrew Thompson {
71802ac6454SAndrew Thompson 	struct rum_vap *rvp = RUM_VAP(vap);
7195efea30fSAndrew Thompson 	struct ieee80211com *ic = vap->iv_ic;
720d204cea9SAndriy Voskoboinyk 	struct rum_softc *sc = ic->ic_softc;
721713db49dSBjoern A. Zeeb 	int i;
72202ac6454SAndrew Thompson 
723d204cea9SAndriy Voskoboinyk 	/* Put vap into INIT state. */
724d204cea9SAndriy Voskoboinyk 	ieee80211_new_state(vap, IEEE80211_S_INIT, -1);
725713db49dSBjoern A. Zeeb 	for (i = 0; i < NET80211_IV_NSTATE_NUM; i++)
726713db49dSBjoern A. Zeeb 		ieee80211_draintask(ic, &vap->iv_nstate_task[i]);
727d204cea9SAndriy Voskoboinyk 
728d204cea9SAndriy Voskoboinyk 	RUM_LOCK(sc);
729d204cea9SAndriy Voskoboinyk 	/* Cancel any unfinished Tx. */
730d204cea9SAndriy Voskoboinyk 	rum_reset_tx_list(sc, vap);
731d204cea9SAndriy Voskoboinyk 	RUM_UNLOCK(sc);
732d204cea9SAndriy Voskoboinyk 
733b6108616SRui Paulo 	usb_callout_drain(&rvp->ratectl_ch);
734b6108616SRui Paulo 	ieee80211_draintask(ic, &rvp->ratectl_task);
735b6108616SRui Paulo 	ieee80211_ratectl_deinit(vap);
73602ac6454SAndrew Thompson 	ieee80211_vap_detach(vap);
737d204cea9SAndriy Voskoboinyk 	m_freem(rvp->bcn_mbuf);
73802ac6454SAndrew Thompson 	free(rvp, M_80211_VAP);
73902ac6454SAndrew Thompson }
74002ac6454SAndrew Thompson 
74102ac6454SAndrew Thompson static void
rum_cmdq_cb(void * arg,int pending)742f28c2f5eSAdrian Chadd rum_cmdq_cb(void *arg, int pending)
743f28c2f5eSAdrian Chadd {
744f28c2f5eSAdrian Chadd 	struct rum_softc *sc = arg;
745f28c2f5eSAdrian Chadd 	struct rum_cmdq *rc;
746f28c2f5eSAdrian Chadd 
747f28c2f5eSAdrian Chadd 	RUM_CMDQ_LOCK(sc);
748f28c2f5eSAdrian Chadd 	while (sc->cmdq[sc->cmdq_first].func != NULL) {
749f28c2f5eSAdrian Chadd 		rc = &sc->cmdq[sc->cmdq_first];
750f28c2f5eSAdrian Chadd 		RUM_CMDQ_UNLOCK(sc);
751f28c2f5eSAdrian Chadd 
752f28c2f5eSAdrian Chadd 		RUM_LOCK(sc);
753ed5711a1SAdrian Chadd 		rc->func(sc, &rc->data, rc->rvp_id);
754f28c2f5eSAdrian Chadd 		RUM_UNLOCK(sc);
755f28c2f5eSAdrian Chadd 
756f28c2f5eSAdrian Chadd 		RUM_CMDQ_LOCK(sc);
757f28c2f5eSAdrian Chadd 		memset(rc, 0, sizeof (*rc));
758f28c2f5eSAdrian Chadd 		sc->cmdq_first = (sc->cmdq_first + 1) % RUM_CMDQ_SIZE;
759f28c2f5eSAdrian Chadd 	}
760f28c2f5eSAdrian Chadd 	RUM_CMDQ_UNLOCK(sc);
761f28c2f5eSAdrian Chadd }
762f28c2f5eSAdrian Chadd 
763f28c2f5eSAdrian Chadd static int
rum_cmd_sleepable(struct rum_softc * sc,const void * ptr,size_t len,uint8_t rvp_id,CMD_FUNC_PROTO)764f28c2f5eSAdrian Chadd rum_cmd_sleepable(struct rum_softc *sc, const void *ptr, size_t len,
765ed5711a1SAdrian Chadd     uint8_t rvp_id, CMD_FUNC_PROTO)
766f28c2f5eSAdrian Chadd {
767f28c2f5eSAdrian Chadd 	struct ieee80211com *ic = &sc->sc_ic;
768f28c2f5eSAdrian Chadd 
769f28c2f5eSAdrian Chadd 	KASSERT(len <= sizeof(union sec_param), ("buffer overflow"));
770f28c2f5eSAdrian Chadd 
771f28c2f5eSAdrian Chadd 	RUM_CMDQ_LOCK(sc);
772f28c2f5eSAdrian Chadd 	if (sc->cmdq[sc->cmdq_last].func != NULL) {
773f28c2f5eSAdrian Chadd 		device_printf(sc->sc_dev, "%s: cmdq overflow\n", __func__);
774f28c2f5eSAdrian Chadd 		RUM_CMDQ_UNLOCK(sc);
775f28c2f5eSAdrian Chadd 
776f28c2f5eSAdrian Chadd 		return EAGAIN;
777f28c2f5eSAdrian Chadd 	}
778f28c2f5eSAdrian Chadd 
779f28c2f5eSAdrian Chadd 	if (ptr != NULL)
780f28c2f5eSAdrian Chadd 		memcpy(&sc->cmdq[sc->cmdq_last].data, ptr, len);
781f28c2f5eSAdrian Chadd 	sc->cmdq[sc->cmdq_last].rvp_id = rvp_id;
782f28c2f5eSAdrian Chadd 	sc->cmdq[sc->cmdq_last].func = func;
783f28c2f5eSAdrian Chadd 	sc->cmdq_last = (sc->cmdq_last + 1) % RUM_CMDQ_SIZE;
784f28c2f5eSAdrian Chadd 	RUM_CMDQ_UNLOCK(sc);
785f28c2f5eSAdrian Chadd 
786f28c2f5eSAdrian Chadd 	ieee80211_runtask(ic, &sc->cmdq_task);
787f28c2f5eSAdrian Chadd 
788f28c2f5eSAdrian Chadd 	return 0;
789f28c2f5eSAdrian Chadd }
790f28c2f5eSAdrian Chadd 
791f28c2f5eSAdrian Chadd static void
rum_tx_free(struct rum_tx_data * data,int txerr)79202ac6454SAndrew Thompson rum_tx_free(struct rum_tx_data *data, int txerr)
79302ac6454SAndrew Thompson {
79402ac6454SAndrew Thompson 	struct rum_softc *sc = data->sc;
79502ac6454SAndrew Thompson 
79602ac6454SAndrew Thompson 	if (data->m != NULL) {
7977a79cebfSGleb Smirnoff 		ieee80211_tx_complete(data->ni, data->m, txerr);
79802ac6454SAndrew Thompson 		data->m = NULL;
79902ac6454SAndrew Thompson 		data->ni = NULL;
80002ac6454SAndrew Thompson 	}
80102ac6454SAndrew Thompson 	STAILQ_INSERT_TAIL(&sc->tx_free, data, next);
80202ac6454SAndrew Thompson 	sc->tx_nfree++;
80302ac6454SAndrew Thompson }
80402ac6454SAndrew Thompson 
80502ac6454SAndrew Thompson static void
rum_setup_tx_list(struct rum_softc * sc)80602ac6454SAndrew Thompson rum_setup_tx_list(struct rum_softc *sc)
80702ac6454SAndrew Thompson {
80802ac6454SAndrew Thompson 	struct rum_tx_data *data;
80902ac6454SAndrew Thompson 	int i;
81002ac6454SAndrew Thompson 
81102ac6454SAndrew Thompson 	sc->tx_nfree = 0;
81202ac6454SAndrew Thompson 	STAILQ_INIT(&sc->tx_q);
81302ac6454SAndrew Thompson 	STAILQ_INIT(&sc->tx_free);
81402ac6454SAndrew Thompson 
81502ac6454SAndrew Thompson 	for (i = 0; i < RUM_TX_LIST_COUNT; i++) {
81602ac6454SAndrew Thompson 		data = &sc->tx_data[i];
81702ac6454SAndrew Thompson 
81802ac6454SAndrew Thompson 		data->sc = sc;
81902ac6454SAndrew Thompson 		STAILQ_INSERT_TAIL(&sc->tx_free, data, next);
82002ac6454SAndrew Thompson 		sc->tx_nfree++;
82102ac6454SAndrew Thompson 	}
82202ac6454SAndrew Thompson }
82302ac6454SAndrew Thompson 
82402ac6454SAndrew Thompson static void
rum_reset_tx_list(struct rum_softc * sc,struct ieee80211vap * vap)825d204cea9SAndriy Voskoboinyk rum_reset_tx_list(struct rum_softc *sc, struct ieee80211vap *vap)
826d204cea9SAndriy Voskoboinyk {
827d204cea9SAndriy Voskoboinyk 	struct rum_tx_data *data, *tmp;
828d204cea9SAndriy Voskoboinyk 
829d204cea9SAndriy Voskoboinyk 	KASSERT(vap != NULL, ("%s: vap is NULL\n", __func__));
830d204cea9SAndriy Voskoboinyk 
831d204cea9SAndriy Voskoboinyk 	STAILQ_FOREACH_SAFE(data, &sc->tx_q, next, tmp) {
832d204cea9SAndriy Voskoboinyk 		if (data->ni != NULL && data->ni->ni_vap == vap) {
833d204cea9SAndriy Voskoboinyk 			ieee80211_free_node(data->ni);
834d204cea9SAndriy Voskoboinyk 			data->ni = NULL;
835d204cea9SAndriy Voskoboinyk 
836d204cea9SAndriy Voskoboinyk 			KASSERT(data->m != NULL, ("%s: m is NULL\n",
837d204cea9SAndriy Voskoboinyk 			    __func__));
838d204cea9SAndriy Voskoboinyk 			m_freem(data->m);
839d204cea9SAndriy Voskoboinyk 			data->m = NULL;
840d204cea9SAndriy Voskoboinyk 
841d204cea9SAndriy Voskoboinyk 			STAILQ_REMOVE(&sc->tx_q, data, rum_tx_data, next);
842d204cea9SAndriy Voskoboinyk 			STAILQ_INSERT_TAIL(&sc->tx_free, data, next);
843d204cea9SAndriy Voskoboinyk 			sc->tx_nfree++;
844d204cea9SAndriy Voskoboinyk 		}
845d204cea9SAndriy Voskoboinyk 	}
846d204cea9SAndriy Voskoboinyk }
847d204cea9SAndriy Voskoboinyk 
848d204cea9SAndriy Voskoboinyk static void
rum_unsetup_tx_list(struct rum_softc * sc)84902ac6454SAndrew Thompson rum_unsetup_tx_list(struct rum_softc *sc)
85002ac6454SAndrew Thompson {
85102ac6454SAndrew Thompson 	struct rum_tx_data *data;
85202ac6454SAndrew Thompson 	int i;
85302ac6454SAndrew Thompson 
85402ac6454SAndrew Thompson 	/* make sure any subsequent use of the queues will fail */
85502ac6454SAndrew Thompson 	sc->tx_nfree = 0;
85602ac6454SAndrew Thompson 	STAILQ_INIT(&sc->tx_q);
85702ac6454SAndrew Thompson 	STAILQ_INIT(&sc->tx_free);
85802ac6454SAndrew Thompson 
85902ac6454SAndrew Thompson 	/* free up all node references and mbufs */
86002ac6454SAndrew Thompson 	for (i = 0; i < RUM_TX_LIST_COUNT; i++) {
86102ac6454SAndrew Thompson 		data = &sc->tx_data[i];
86202ac6454SAndrew Thompson 
86302ac6454SAndrew Thompson 		if (data->m != NULL) {
86402ac6454SAndrew Thompson 			m_freem(data->m);
86502ac6454SAndrew Thompson 			data->m = NULL;
86602ac6454SAndrew Thompson 		}
86702ac6454SAndrew Thompson 		if (data->ni != NULL) {
86802ac6454SAndrew Thompson 			ieee80211_free_node(data->ni);
86902ac6454SAndrew Thompson 			data->ni = NULL;
87002ac6454SAndrew Thompson 		}
87102ac6454SAndrew Thompson 	}
87202ac6454SAndrew Thompson }
87302ac6454SAndrew Thompson 
874349156a9SAndriy Voskoboinyk static void
rum_beacon_miss(struct ieee80211vap * vap)875349156a9SAndriy Voskoboinyk rum_beacon_miss(struct ieee80211vap *vap)
876349156a9SAndriy Voskoboinyk {
877349156a9SAndriy Voskoboinyk 	struct ieee80211com *ic = vap->iv_ic;
878349156a9SAndriy Voskoboinyk 	struct rum_softc *sc = ic->ic_softc;
879349156a9SAndriy Voskoboinyk 	struct rum_vap *rvp = RUM_VAP(vap);
880349156a9SAndriy Voskoboinyk 	int sleep;
881349156a9SAndriy Voskoboinyk 
882349156a9SAndriy Voskoboinyk 	RUM_LOCK(sc);
883349156a9SAndriy Voskoboinyk 	if (sc->sc_sleeping && sc->sc_sleep_end < ticks) {
884349156a9SAndriy Voskoboinyk 		DPRINTFN(12, "dropping 'sleeping' bit, "
885349156a9SAndriy Voskoboinyk 		    "device must be awake now\n");
886349156a9SAndriy Voskoboinyk 
887349156a9SAndriy Voskoboinyk 		sc->sc_sleeping = 0;
888349156a9SAndriy Voskoboinyk 	}
889349156a9SAndriy Voskoboinyk 
890349156a9SAndriy Voskoboinyk 	sleep = sc->sc_sleeping;
891349156a9SAndriy Voskoboinyk 	RUM_UNLOCK(sc);
892349156a9SAndriy Voskoboinyk 
893349156a9SAndriy Voskoboinyk 	if (!sleep)
894349156a9SAndriy Voskoboinyk 		rvp->bmiss(vap);
895349156a9SAndriy Voskoboinyk #ifdef USB_DEBUG
896349156a9SAndriy Voskoboinyk 	else
897349156a9SAndriy Voskoboinyk 		DPRINTFN(13, "bmiss event is ignored whilst sleeping\n");
898349156a9SAndriy Voskoboinyk #endif
899349156a9SAndriy Voskoboinyk }
900349156a9SAndriy Voskoboinyk 
901349156a9SAndriy Voskoboinyk static void
rum_sta_recv_mgmt(struct ieee80211_node * ni,struct mbuf * m,int subtype,const struct ieee80211_rx_stats * rxs,int rssi,int nf)902349156a9SAndriy Voskoboinyk rum_sta_recv_mgmt(struct ieee80211_node *ni, struct mbuf *m, int subtype,
903349156a9SAndriy Voskoboinyk     const struct ieee80211_rx_stats *rxs,
904349156a9SAndriy Voskoboinyk     int rssi, int nf)
905349156a9SAndriy Voskoboinyk {
906349156a9SAndriy Voskoboinyk 	struct ieee80211vap *vap = ni->ni_vap;
907349156a9SAndriy Voskoboinyk 	struct rum_softc *sc = vap->iv_ic->ic_softc;
908349156a9SAndriy Voskoboinyk 	struct rum_vap *rvp = RUM_VAP(vap);
909349156a9SAndriy Voskoboinyk 
910349156a9SAndriy Voskoboinyk 	if (vap->iv_state == IEEE80211_S_SLEEP &&
911349156a9SAndriy Voskoboinyk 	    subtype == IEEE80211_FC0_SUBTYPE_BEACON) {
912349156a9SAndriy Voskoboinyk 		RUM_LOCK(sc);
913349156a9SAndriy Voskoboinyk 		DPRINTFN(12, "beacon, mybss %d (flags %02X)\n",
914349156a9SAndriy Voskoboinyk 		    !!(sc->last_rx_flags & RT2573_RX_MYBSS),
915349156a9SAndriy Voskoboinyk 		    sc->last_rx_flags);
916349156a9SAndriy Voskoboinyk 
917349156a9SAndriy Voskoboinyk 		if ((sc->last_rx_flags & (RT2573_RX_MYBSS | RT2573_RX_BC)) ==
918349156a9SAndriy Voskoboinyk 		    (RT2573_RX_MYBSS | RT2573_RX_BC)) {
919349156a9SAndriy Voskoboinyk 			/*
920349156a9SAndriy Voskoboinyk 			 * Put it to sleep here; in case if there is a data
921349156a9SAndriy Voskoboinyk 			 * for us, iv_recv_mgmt() will wakeup the device via
922349156a9SAndriy Voskoboinyk 			 * SLEEP -> RUN state transition.
923349156a9SAndriy Voskoboinyk 			 */
924349156a9SAndriy Voskoboinyk 			rum_set_power_state(sc, 1);
925349156a9SAndriy Voskoboinyk 		}
926349156a9SAndriy Voskoboinyk 		RUM_UNLOCK(sc);
927349156a9SAndriy Voskoboinyk 	}
928349156a9SAndriy Voskoboinyk 
929349156a9SAndriy Voskoboinyk 	rvp->recv_mgmt(ni, m, subtype, rxs, rssi, nf);
930349156a9SAndriy Voskoboinyk }
931349156a9SAndriy Voskoboinyk 
932349156a9SAndriy Voskoboinyk static int
rum_set_power_state(struct rum_softc * sc,int sleep)933349156a9SAndriy Voskoboinyk rum_set_power_state(struct rum_softc *sc, int sleep)
934349156a9SAndriy Voskoboinyk {
935349156a9SAndriy Voskoboinyk 	usb_error_t uerror;
936349156a9SAndriy Voskoboinyk 
937349156a9SAndriy Voskoboinyk 	RUM_LOCK_ASSERT(sc);
938349156a9SAndriy Voskoboinyk 
939349156a9SAndriy Voskoboinyk 	DPRINTFN(12, "moving to %s state (sleep time %u)\n",
940349156a9SAndriy Voskoboinyk 	    sleep ? "sleep" : "awake", sc->sc_sleep_time);
941349156a9SAndriy Voskoboinyk 
942349156a9SAndriy Voskoboinyk 	uerror = rum_do_mcu_request(sc,
943349156a9SAndriy Voskoboinyk 	    sleep ? RT2573_MCU_SLEEP : RT2573_MCU_WAKEUP);
944349156a9SAndriy Voskoboinyk 	if (uerror != USB_ERR_NORMAL_COMPLETION) {
945349156a9SAndriy Voskoboinyk 		device_printf(sc->sc_dev,
946349156a9SAndriy Voskoboinyk 		    "%s: could not change power state: %s\n",
947349156a9SAndriy Voskoboinyk 		    __func__, usbd_errstr(uerror));
948349156a9SAndriy Voskoboinyk 		return (EIO);
949349156a9SAndriy Voskoboinyk 	}
950349156a9SAndriy Voskoboinyk 
951349156a9SAndriy Voskoboinyk 	sc->sc_sleeping = !!sleep;
952349156a9SAndriy Voskoboinyk 	sc->sc_sleep_end = sleep ? ticks + sc->sc_sleep_time : 0;
953349156a9SAndriy Voskoboinyk 
954349156a9SAndriy Voskoboinyk 	return (0);
955349156a9SAndriy Voskoboinyk }
956349156a9SAndriy Voskoboinyk 
9575efea30fSAndrew Thompson static int
rum_newstate(struct ieee80211vap * vap,enum ieee80211_state nstate,int arg)9585efea30fSAndrew Thompson rum_newstate(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
95902ac6454SAndrew Thompson {
96002ac6454SAndrew Thompson 	struct rum_vap *rvp = RUM_VAP(vap);
9615efea30fSAndrew Thompson 	struct ieee80211com *ic = vap->iv_ic;
962d3fdd08cSAdrian Chadd 	struct rum_softc *sc = ic->ic_softc;
96302ac6454SAndrew Thompson 	const struct ieee80211_txparam *tp;
96402ac6454SAndrew Thompson 	enum ieee80211_state ostate;
96502ac6454SAndrew Thompson 	struct ieee80211_node *ni;
966349156a9SAndriy Voskoboinyk 	usb_error_t uerror;
96796e29c26SAndriy Voskoboinyk 	int ret = 0;
96802ac6454SAndrew Thompson 
96902ac6454SAndrew Thompson 	ostate = vap->iv_state;
9705efea30fSAndrew Thompson 	DPRINTF("%s -> %s\n",
9715efea30fSAndrew Thompson 		ieee80211_state_name[ostate],
9725efea30fSAndrew Thompson 		ieee80211_state_name[nstate]);
97302ac6454SAndrew Thompson 
9745efea30fSAndrew Thompson 	IEEE80211_UNLOCK(ic);
9755efea30fSAndrew Thompson 	RUM_LOCK(sc);
976b6108616SRui Paulo 	usb_callout_stop(&rvp->ratectl_ch);
9775efea30fSAndrew Thompson 
978349156a9SAndriy Voskoboinyk 	if (ostate == IEEE80211_S_SLEEP && vap->iv_opmode == IEEE80211_M_STA) {
979349156a9SAndriy Voskoboinyk 		rum_clrbits(sc, RT2573_TXRX_CSR4, RT2573_ACKCTS_PWRMGT);
980349156a9SAndriy Voskoboinyk 		rum_clrbits(sc, RT2573_MAC_CSR11, RT2573_AUTO_WAKEUP);
981349156a9SAndriy Voskoboinyk 
982349156a9SAndriy Voskoboinyk 		/*
983349156a9SAndriy Voskoboinyk 		 * Ignore any errors;
984349156a9SAndriy Voskoboinyk 		 * any subsequent TX will wakeup it anyway
985349156a9SAndriy Voskoboinyk 		 */
986349156a9SAndriy Voskoboinyk 		(void) rum_set_power_state(sc, 0);
987349156a9SAndriy Voskoboinyk 	}
988349156a9SAndriy Voskoboinyk 
9895efea30fSAndrew Thompson 	switch (nstate) {
99002ac6454SAndrew Thompson 	case IEEE80211_S_INIT:
9916d804321SAdrian Chadd 		if (ostate == IEEE80211_S_RUN)
9926d804321SAdrian Chadd 			rum_abort_tsf_sync(sc);
9936d804321SAdrian Chadd 
99402ac6454SAndrew Thompson 		break;
99502ac6454SAndrew Thompson 
99602ac6454SAndrew Thompson 	case IEEE80211_S_RUN:
997349156a9SAndriy Voskoboinyk 		if (ostate == IEEE80211_S_SLEEP)
998349156a9SAndriy Voskoboinyk 			break;		/* already handled */
999349156a9SAndriy Voskoboinyk 
10008d8bdb01SAndrew Thompson 		ni = ieee80211_ref_node(vap->iv_bss);
100102ac6454SAndrew Thompson 
100202ac6454SAndrew Thompson 		if (vap->iv_opmode != IEEE80211_M_MONITOR) {
1003342ced03SAdrian Chadd 			if (ic->ic_bsschan == IEEE80211_CHAN_ANYC ||
1004342ced03SAdrian Chadd 			    ni->ni_chan == IEEE80211_CHAN_ANYC) {
1005aa81f853SAdrian Chadd 				ret = EINVAL;
1006aa81f853SAdrian Chadd 				goto run_fail;
1007bb571462SHans Petter Selasky 			}
1008ed5711a1SAdrian Chadd 			rum_update_slot_cb(sc, NULL, 0);
100902ac6454SAndrew Thompson 			rum_enable_mrr(sc);
101002ac6454SAndrew Thompson 			rum_set_txpreamble(sc);
101102ac6454SAndrew Thompson 			rum_set_basicrates(sc);
1012342ced03SAdrian Chadd 			rum_set_maxretry(sc, vap);
10131ba67b11SAdrian Chadd 			IEEE80211_ADDR_COPY(sc->sc_bssid, ni->ni_bssid);
10141ba67b11SAdrian Chadd 			rum_set_bssid(sc, sc->sc_bssid);
101502ac6454SAndrew Thompson 		}
101602ac6454SAndrew Thompson 
101702ac6454SAndrew Thompson 		if (vap->iv_opmode == IEEE80211_M_HOSTAP ||
1018aa81f853SAdrian Chadd 		    vap->iv_opmode == IEEE80211_M_IBSS) {
1019b780f864SAdrian Chadd 			if ((ret = rum_alloc_beacon(sc, vap)) != 0)
1020aa81f853SAdrian Chadd 				goto run_fail;
1021aa81f853SAdrian Chadd 		}
102202ac6454SAndrew Thompson 
102350a31b48SAdrian Chadd 		if (vap->iv_opmode != IEEE80211_M_MONITOR &&
102450a31b48SAdrian Chadd 		    vap->iv_opmode != IEEE80211_M_AHDEMO) {
1025aa81f853SAdrian Chadd 			if ((ret = rum_enable_tsf_sync(sc)) != 0)
1026aa81f853SAdrian Chadd 				goto run_fail;
1027aa81f853SAdrian Chadd 		} else
10285463c4a4SSam Leffler 			rum_enable_tsf(sc);
102902ac6454SAndrew Thompson 
103002ac6454SAndrew Thompson 		/* enable automatic rate adaptation */
10315463c4a4SSam Leffler 		tp = &vap->iv_txparms[ieee80211_chan2mode(ic->ic_curchan)];
103202ac6454SAndrew Thompson 		if (tp->ucastrate == IEEE80211_FIXED_RATE_NONE)
1033b6108616SRui Paulo 			rum_ratectl_start(sc, ni);
103496e29c26SAndriy Voskoboinyk run_fail:
10358d8bdb01SAndrew Thompson 		ieee80211_free_node(ni);
103602ac6454SAndrew Thompson 		break;
1037349156a9SAndriy Voskoboinyk 	case IEEE80211_S_SLEEP:
1038349156a9SAndriy Voskoboinyk 		/* Implemented for STA mode only. */
1039349156a9SAndriy Voskoboinyk 		if (vap->iv_opmode != IEEE80211_M_STA)
1040349156a9SAndriy Voskoboinyk 			break;
1041349156a9SAndriy Voskoboinyk 
1042349156a9SAndriy Voskoboinyk 		uerror = rum_setbits(sc, RT2573_MAC_CSR11, RT2573_AUTO_WAKEUP);
1043349156a9SAndriy Voskoboinyk 		if (uerror != USB_ERR_NORMAL_COMPLETION) {
1044349156a9SAndriy Voskoboinyk 			ret = EIO;
1045349156a9SAndriy Voskoboinyk 			break;
1046349156a9SAndriy Voskoboinyk 		}
1047349156a9SAndriy Voskoboinyk 
1048349156a9SAndriy Voskoboinyk 		uerror = rum_setbits(sc, RT2573_TXRX_CSR4, RT2573_ACKCTS_PWRMGT);
1049349156a9SAndriy Voskoboinyk 		if (uerror != USB_ERR_NORMAL_COMPLETION) {
1050349156a9SAndriy Voskoboinyk 			ret = EIO;
1051349156a9SAndriy Voskoboinyk 			break;
1052349156a9SAndriy Voskoboinyk 		}
1053349156a9SAndriy Voskoboinyk 
1054349156a9SAndriy Voskoboinyk 		ret = rum_set_power_state(sc, 1);
1055349156a9SAndriy Voskoboinyk 		if (ret != 0) {
1056349156a9SAndriy Voskoboinyk 			device_printf(sc->sc_dev,
1057349156a9SAndriy Voskoboinyk 			    "%s: could not move to the SLEEP state: %s\n",
1058349156a9SAndriy Voskoboinyk 			    __func__, usbd_errstr(uerror));
1059349156a9SAndriy Voskoboinyk 		}
1060349156a9SAndriy Voskoboinyk 		break;
106102ac6454SAndrew Thompson 	default:
106202ac6454SAndrew Thompson 		break;
106302ac6454SAndrew Thompson 	}
106402ac6454SAndrew Thompson 	RUM_UNLOCK(sc);
106502ac6454SAndrew Thompson 	IEEE80211_LOCK(ic);
106696e29c26SAndriy Voskoboinyk 	return (ret == 0 ? rvp->newstate(vap, nstate, arg) : ret);
106702ac6454SAndrew Thompson }
106802ac6454SAndrew Thompson 
106902ac6454SAndrew Thompson static void
rum_bulk_write_callback(struct usb_xfer * xfer,usb_error_t error)1070ed6d949aSAndrew Thompson rum_bulk_write_callback(struct usb_xfer *xfer, usb_error_t error)
107102ac6454SAndrew Thompson {
1072ed6d949aSAndrew Thompson 	struct rum_softc *sc = usbd_xfer_softc(xfer);
10735463c4a4SSam Leffler 	struct ieee80211vap *vap;
107402ac6454SAndrew Thompson 	struct rum_tx_data *data;
107502ac6454SAndrew Thompson 	struct mbuf *m;
1076ed6d949aSAndrew Thompson 	struct usb_page_cache *pc;
107762d42655SHans Petter Selasky 	unsigned len;
1078ed6d949aSAndrew Thompson 	int actlen, sumlen;
1079ed6d949aSAndrew Thompson 
1080ed6d949aSAndrew Thompson 	usbd_xfer_status(xfer, &actlen, &sumlen, NULL, NULL);
108102ac6454SAndrew Thompson 
108202ac6454SAndrew Thompson 	switch (USB_GET_STATE(xfer)) {
108302ac6454SAndrew Thompson 	case USB_ST_TRANSFERRED:
1084ed6d949aSAndrew Thompson 		DPRINTFN(11, "transfer complete, %d bytes\n", actlen);
108502ac6454SAndrew Thompson 
108602ac6454SAndrew Thompson 		/* free resources */
1087ed6d949aSAndrew Thompson 		data = usbd_xfer_get_priv(xfer);
108802ac6454SAndrew Thompson 		rum_tx_free(data, 0);
1089ed6d949aSAndrew Thompson 		usbd_xfer_set_priv(xfer, NULL);
109002ac6454SAndrew Thompson 
109102ac6454SAndrew Thompson 		/* FALLTHROUGH */
109202ac6454SAndrew Thompson 	case USB_ST_SETUP:
109302ac6454SAndrew Thompson tr_setup:
109402ac6454SAndrew Thompson 		data = STAILQ_FIRST(&sc->tx_q);
109502ac6454SAndrew Thompson 		if (data) {
109602ac6454SAndrew Thompson 			STAILQ_REMOVE_HEAD(&sc->tx_q, next);
109702ac6454SAndrew Thompson 			m = data->m;
109802ac6454SAndrew Thompson 
10996d917491SHans Petter Selasky 			if (m->m_pkthdr.len > (int)(MCLBYTES + RT2573_TX_DESC_SIZE)) {
110002ac6454SAndrew Thompson 				DPRINTFN(0, "data overflow, %u bytes\n",
110102ac6454SAndrew Thompson 				    m->m_pkthdr.len);
110202ac6454SAndrew Thompson 				m->m_pkthdr.len = (MCLBYTES + RT2573_TX_DESC_SIZE);
110302ac6454SAndrew Thompson 			}
1104ed6d949aSAndrew Thompson 			pc = usbd_xfer_get_frame(xfer, 0);
1105ed6d949aSAndrew Thompson 			usbd_copy_in(pc, 0, &data->desc, RT2573_TX_DESC_SIZE);
1106ed6d949aSAndrew Thompson 			usbd_m_copy_in(pc, RT2573_TX_DESC_SIZE, m, 0,
1107ed6d949aSAndrew Thompson 			    m->m_pkthdr.len);
110802ac6454SAndrew Thompson 
11095463c4a4SSam Leffler 			vap = data->ni->ni_vap;
11105463c4a4SSam Leffler 			if (ieee80211_radiotap_active_vap(vap)) {
111102ac6454SAndrew Thompson 				struct rum_tx_radiotap_header *tap = &sc->sc_txtap;
111202ac6454SAndrew Thompson 
111302ac6454SAndrew Thompson 				tap->wt_flags = 0;
111402ac6454SAndrew Thompson 				tap->wt_rate = data->rate;
111502ac6454SAndrew Thompson 				tap->wt_antenna = sc->tx_ant;
111602ac6454SAndrew Thompson 
11175463c4a4SSam Leffler 				ieee80211_radiotap_tx(vap, m);
111802ac6454SAndrew Thompson 			}
111902ac6454SAndrew Thompson 
112002ac6454SAndrew Thompson 			/* align end on a 4-bytes boundary */
112102ac6454SAndrew Thompson 			len = (RT2573_TX_DESC_SIZE + m->m_pkthdr.len + 3) & ~3;
112202ac6454SAndrew Thompson 			if ((len % 64) == 0)
112302ac6454SAndrew Thompson 				len += 4;
112402ac6454SAndrew Thompson 
112502ac6454SAndrew Thompson 			DPRINTFN(11, "sending frame len=%u xferlen=%u\n",
112602ac6454SAndrew Thompson 			    m->m_pkthdr.len, len);
112702ac6454SAndrew Thompson 
1128ed6d949aSAndrew Thompson 			usbd_xfer_set_frame_len(xfer, 0, len);
1129ed6d949aSAndrew Thompson 			usbd_xfer_set_priv(xfer, data);
113002ac6454SAndrew Thompson 
1131a593f6b8SAndrew Thompson 			usbd_transfer_submit(xfer);
113202ac6454SAndrew Thompson 		}
11337a79cebfSGleb Smirnoff 		rum_start(sc);
113402ac6454SAndrew Thompson 		break;
113502ac6454SAndrew Thompson 
113602ac6454SAndrew Thompson 	default:			/* Error */
113702ac6454SAndrew Thompson 		DPRINTFN(11, "transfer error, %s\n",
1138ed6d949aSAndrew Thompson 		    usbd_errstr(error));
113902ac6454SAndrew Thompson 
11407a79cebfSGleb Smirnoff 		counter_u64_add(sc->sc_ic.ic_oerrors, 1);
1141ed6d949aSAndrew Thompson 		data = usbd_xfer_get_priv(xfer);
114202ac6454SAndrew Thompson 		if (data != NULL) {
1143ed6d949aSAndrew Thompson 			rum_tx_free(data, error);
1144ed6d949aSAndrew Thompson 			usbd_xfer_set_priv(xfer, NULL);
114502ac6454SAndrew Thompson 		}
114602ac6454SAndrew Thompson 
11470283fab7SAndrew Thompson 		if (error != USB_ERR_CANCELLED) {
11480283fab7SAndrew Thompson 			if (error == USB_ERR_TIMEOUT)
11490283fab7SAndrew Thompson 				device_printf(sc->sc_dev, "device timeout\n");
11500283fab7SAndrew Thompson 
11510283fab7SAndrew Thompson 			/*
11520283fab7SAndrew Thompson 			 * Try to clear stall first, also if other
11530283fab7SAndrew Thompson 			 * errors occur, hence clearing stall
11540283fab7SAndrew Thompson 			 * introduces a 50 ms delay:
11550283fab7SAndrew Thompson 			 */
1156ed6d949aSAndrew Thompson 			usbd_xfer_set_stall(xfer);
115702ac6454SAndrew Thompson 			goto tr_setup;
115802ac6454SAndrew Thompson 		}
115902ac6454SAndrew Thompson 		break;
116002ac6454SAndrew Thompson 	}
116102ac6454SAndrew Thompson }
116202ac6454SAndrew Thompson 
116302ac6454SAndrew Thompson static void
rum_bulk_read_callback(struct usb_xfer * xfer,usb_error_t error)1164ed6d949aSAndrew Thompson rum_bulk_read_callback(struct usb_xfer *xfer, usb_error_t error)
116502ac6454SAndrew Thompson {
1166ed6d949aSAndrew Thompson 	struct rum_softc *sc = usbd_xfer_softc(xfer);
11677a79cebfSGleb Smirnoff 	struct ieee80211com *ic = &sc->sc_ic;
1168aca2cf30SAdrian Chadd 	struct ieee80211_frame_min *wh;
116902ac6454SAndrew Thompson 	struct ieee80211_node *ni;
117002ac6454SAndrew Thompson 	struct mbuf *m = NULL;
1171ed6d949aSAndrew Thompson 	struct usb_page_cache *pc;
117202ac6454SAndrew Thompson 	uint32_t flags;
117302ac6454SAndrew Thompson 	uint8_t rssi = 0;
1174ed6d949aSAndrew Thompson 	int len;
1175ed6d949aSAndrew Thompson 
1176ed6d949aSAndrew Thompson 	usbd_xfer_status(xfer, &len, NULL, NULL, NULL);
117702ac6454SAndrew Thompson 
117802ac6454SAndrew Thompson 	switch (USB_GET_STATE(xfer)) {
117902ac6454SAndrew Thompson 	case USB_ST_TRANSFERRED:
118002ac6454SAndrew Thompson 
1181ed6d949aSAndrew Thompson 		DPRINTFN(15, "rx done, actlen=%d\n", len);
118202ac6454SAndrew Thompson 
1183c84bb702SAndriy Voskoboinyk 		if (len < RT2573_RX_DESC_SIZE) {
118402ac6454SAndrew Thompson 			DPRINTF("%s: xfer too short %d\n",
118502ac6454SAndrew Thompson 			    device_get_nameunit(sc->sc_dev), len);
11867a79cebfSGleb Smirnoff 			counter_u64_add(ic->ic_ierrors, 1);
118702ac6454SAndrew Thompson 			goto tr_setup;
118802ac6454SAndrew Thompson 		}
118902ac6454SAndrew Thompson 
119002ac6454SAndrew Thompson 		len -= RT2573_RX_DESC_SIZE;
1191ed6d949aSAndrew Thompson 		pc = usbd_xfer_get_frame(xfer, 0);
1192ed6d949aSAndrew Thompson 		usbd_copy_out(pc, 0, &sc->sc_rx_desc, RT2573_RX_DESC_SIZE);
119302ac6454SAndrew Thompson 
119402ac6454SAndrew Thompson 		rssi = rum_get_rssi(sc, sc->sc_rx_desc.rssi);
119502ac6454SAndrew Thompson 		flags = le32toh(sc->sc_rx_desc.flags);
1196349156a9SAndriy Voskoboinyk 		sc->last_rx_flags = flags;
1197c84bb702SAndriy Voskoboinyk 		if (len < ((flags >> 16) & 0xfff)) {
1198c84bb702SAndriy Voskoboinyk 			DPRINTFN(5, "%s: frame is truncated from %d to %d "
1199c84bb702SAndriy Voskoboinyk 			    "bytes\n", device_get_nameunit(sc->sc_dev),
1200c84bb702SAndriy Voskoboinyk 			    (flags >> 16) & 0xfff, len);
1201c84bb702SAndriy Voskoboinyk 			counter_u64_add(ic->ic_ierrors, 1);
1202c84bb702SAndriy Voskoboinyk 			goto tr_setup;
1203c84bb702SAndriy Voskoboinyk 		}
1204c84bb702SAndriy Voskoboinyk 		len = (flags >> 16) & 0xfff;
1205c84bb702SAndriy Voskoboinyk 		if (len < sizeof(struct ieee80211_frame_ack)) {
1206c84bb702SAndriy Voskoboinyk 			DPRINTFN(5, "%s: frame too short %d\n",
1207c84bb702SAndriy Voskoboinyk 			    device_get_nameunit(sc->sc_dev), len);
1208c84bb702SAndriy Voskoboinyk 			counter_u64_add(ic->ic_ierrors, 1);
1209c84bb702SAndriy Voskoboinyk 			goto tr_setup;
1210c84bb702SAndriy Voskoboinyk 		}
121102ac6454SAndrew Thompson 		if (flags & RT2573_RX_CRC_ERROR) {
121202ac6454SAndrew Thompson 			/*
121302ac6454SAndrew Thompson 		         * This should not happen since we did not
121402ac6454SAndrew Thompson 		         * request to receive those frames when we
121502ac6454SAndrew Thompson 		         * filled RUM_TXRX_CSR2:
121602ac6454SAndrew Thompson 		         */
121702ac6454SAndrew Thompson 			DPRINTFN(5, "PHY or CRC error\n");
12187a79cebfSGleb Smirnoff 			counter_u64_add(ic->ic_ierrors, 1);
121902ac6454SAndrew Thompson 			goto tr_setup;
122002ac6454SAndrew Thompson 		}
12212cb9ef8dSAdrian Chadd 		if ((flags & RT2573_RX_DEC_MASK) != RT2573_RX_DEC_OK) {
12222cb9ef8dSAdrian Chadd 			switch (flags & RT2573_RX_DEC_MASK) {
12232cb9ef8dSAdrian Chadd 			case RT2573_RX_IV_ERROR:
12242cb9ef8dSAdrian Chadd 				DPRINTFN(5, "IV/EIV error\n");
12252cb9ef8dSAdrian Chadd 				break;
12262cb9ef8dSAdrian Chadd 			case RT2573_RX_MIC_ERROR:
12272cb9ef8dSAdrian Chadd 				DPRINTFN(5, "MIC error\n");
12282cb9ef8dSAdrian Chadd 				break;
12292cb9ef8dSAdrian Chadd 			case RT2573_RX_KEY_ERROR:
12302cb9ef8dSAdrian Chadd 				DPRINTFN(5, "Key error\n");
12312cb9ef8dSAdrian Chadd 				break;
12322cb9ef8dSAdrian Chadd 			}
12332cb9ef8dSAdrian Chadd 			counter_u64_add(ic->ic_ierrors, 1);
12342cb9ef8dSAdrian Chadd 			goto tr_setup;
12352cb9ef8dSAdrian Chadd 		}
123602ac6454SAndrew Thompson 
123793ae4747SAndriy Voskoboinyk 		m = m_get2(len, M_NOWAIT, MT_DATA, M_PKTHDR);
123802ac6454SAndrew Thompson 		if (m == NULL) {
123902ac6454SAndrew Thompson 			DPRINTF("could not allocate mbuf\n");
12407a79cebfSGleb Smirnoff 			counter_u64_add(ic->ic_ierrors, 1);
124102ac6454SAndrew Thompson 			goto tr_setup;
124202ac6454SAndrew Thompson 		}
1243ed6d949aSAndrew Thompson 		usbd_copy_out(pc, RT2573_RX_DESC_SIZE,
124402ac6454SAndrew Thompson 		    mtod(m, uint8_t *), len);
124502ac6454SAndrew Thompson 
1246aca2cf30SAdrian Chadd 		wh = mtod(m, struct ieee80211_frame_min *);
1247aca2cf30SAdrian Chadd 
12482cb9ef8dSAdrian Chadd 		if ((wh->i_fc[1] & IEEE80211_FC1_PROTECTED) &&
12492cb9ef8dSAdrian Chadd 		    (flags & RT2573_RX_CIP_MASK) !=
12502cb9ef8dSAdrian Chadd 		     RT2573_RX_CIP_MODE(RT2573_MODE_NOSEC)) {
12512cb9ef8dSAdrian Chadd 			wh->i_fc[1] &= ~IEEE80211_FC1_PROTECTED;
12522cb9ef8dSAdrian Chadd 			m->m_flags |= M_WEP;
12532cb9ef8dSAdrian Chadd 		}
12542cb9ef8dSAdrian Chadd 
125502ac6454SAndrew Thompson 		/* finalize mbuf */
1256c84bb702SAndriy Voskoboinyk 		m->m_pkthdr.len = m->m_len = len;
125702ac6454SAndrew Thompson 
12585463c4a4SSam Leffler 		if (ieee80211_radiotap_active(ic)) {
125902ac6454SAndrew Thompson 			struct rum_rx_radiotap_header *tap = &sc->sc_rxtap;
126002ac6454SAndrew Thompson 
12615463c4a4SSam Leffler 			tap->wr_flags = 0;
126202ac6454SAndrew Thompson 			tap->wr_rate = ieee80211_plcp2rate(sc->sc_rx_desc.rate,
126302ac6454SAndrew Thompson 			    (flags & RT2573_RX_OFDM) ?
126402ac6454SAndrew Thompson 			    IEEE80211_T_OFDM : IEEE80211_T_CCK);
1265a6ccd477SAdrian Chadd 			rum_get_tsf(sc, &tap->wr_tsf);
12665463c4a4SSam Leffler 			tap->wr_antsignal = RT2573_NOISE_FLOOR + rssi;
12675463c4a4SSam Leffler 			tap->wr_antnoise = RT2573_NOISE_FLOOR;
126802ac6454SAndrew Thompson 			tap->wr_antenna = sc->rx_ant;
126902ac6454SAndrew Thompson 		}
127002ac6454SAndrew Thompson 		/* FALLTHROUGH */
127102ac6454SAndrew Thompson 	case USB_ST_SETUP:
127202ac6454SAndrew Thompson tr_setup:
1273ed6d949aSAndrew Thompson 		usbd_xfer_set_frame_len(xfer, 0, usbd_xfer_max_len(xfer));
1274a593f6b8SAndrew Thompson 		usbd_transfer_submit(xfer);
127502ac6454SAndrew Thompson 
127602ac6454SAndrew Thompson 		/*
127702ac6454SAndrew Thompson 		 * At the end of a USB callback it is always safe to unlock
127802ac6454SAndrew Thompson 		 * the private mutex of a device! That is why we do the
127902ac6454SAndrew Thompson 		 * "ieee80211_input" here, and not some lines up!
128002ac6454SAndrew Thompson 		 */
128102ac6454SAndrew Thompson 		RUM_UNLOCK(sc);
1282db63fc93SWeongyo Jeong 		if (m) {
1283aca2cf30SAdrian Chadd 			if (m->m_len >= sizeof(struct ieee80211_frame_min))
1284aca2cf30SAdrian Chadd 				ni = ieee80211_find_rxnode(ic, wh);
1285aca2cf30SAdrian Chadd 			else
1286aca2cf30SAdrian Chadd 				ni = NULL;
1287aca2cf30SAdrian Chadd 
128802ac6454SAndrew Thompson 			if (ni != NULL) {
128902ac6454SAndrew Thompson 				(void) ieee80211_input(ni, m, rssi,
12905463c4a4SSam Leffler 				    RT2573_NOISE_FLOOR);
129102ac6454SAndrew Thompson 				ieee80211_free_node(ni);
129202ac6454SAndrew Thompson 			} else
129302ac6454SAndrew Thompson 				(void) ieee80211_input_all(ic, m, rssi,
12945463c4a4SSam Leffler 				    RT2573_NOISE_FLOOR);
129502ac6454SAndrew Thompson 		}
1296db63fc93SWeongyo Jeong 		RUM_LOCK(sc);
12977a79cebfSGleb Smirnoff 		rum_start(sc);
129802ac6454SAndrew Thompson 		return;
129902ac6454SAndrew Thompson 
130002ac6454SAndrew Thompson 	default:			/* Error */
1301ed6d949aSAndrew Thompson 		if (error != USB_ERR_CANCELLED) {
130202ac6454SAndrew Thompson 			/* try to clear stall first */
1303ed6d949aSAndrew Thompson 			usbd_xfer_set_stall(xfer);
130402ac6454SAndrew Thompson 			goto tr_setup;
130502ac6454SAndrew Thompson 		}
130602ac6454SAndrew Thompson 		return;
130702ac6454SAndrew Thompson 	}
130802ac6454SAndrew Thompson }
130902ac6454SAndrew Thompson 
131002ac6454SAndrew Thompson static uint8_t
rum_plcp_signal(int rate)131102ac6454SAndrew Thompson rum_plcp_signal(int rate)
131202ac6454SAndrew Thompson {
131302ac6454SAndrew Thompson 	switch (rate) {
131402ac6454SAndrew Thompson 	/* OFDM rates (cf IEEE Std 802.11a-1999, pp. 14 Table 80) */
131502ac6454SAndrew Thompson 	case 12:	return 0xb;
131602ac6454SAndrew Thompson 	case 18:	return 0xf;
131702ac6454SAndrew Thompson 	case 24:	return 0xa;
131802ac6454SAndrew Thompson 	case 36:	return 0xe;
131902ac6454SAndrew Thompson 	case 48:	return 0x9;
132002ac6454SAndrew Thompson 	case 72:	return 0xd;
132102ac6454SAndrew Thompson 	case 96:	return 0x8;
132202ac6454SAndrew Thompson 	case 108:	return 0xc;
132302ac6454SAndrew Thompson 
132402ac6454SAndrew Thompson 	/* CCK rates (NB: not IEEE std, device-specific) */
132502ac6454SAndrew Thompson 	case 2:		return 0x0;
132602ac6454SAndrew Thompson 	case 4:		return 0x1;
132702ac6454SAndrew Thompson 	case 11:	return 0x2;
132802ac6454SAndrew Thompson 	case 22:	return 0x3;
132902ac6454SAndrew Thompson 	}
133002ac6454SAndrew Thompson 	return 0xff;		/* XXX unsupported/unknown rate */
133102ac6454SAndrew Thompson }
133202ac6454SAndrew Thompson 
13332cb9ef8dSAdrian Chadd /*
13342cb9ef8dSAdrian Chadd  * Map net80211 cipher to RT2573 security mode.
13352cb9ef8dSAdrian Chadd  */
13362cb9ef8dSAdrian Chadd static uint8_t
rum_crypto_mode(struct rum_softc * sc,u_int cipher,int keylen)13372cb9ef8dSAdrian Chadd rum_crypto_mode(struct rum_softc *sc, u_int cipher, int keylen)
13382cb9ef8dSAdrian Chadd {
13392cb9ef8dSAdrian Chadd 	switch (cipher) {
13402cb9ef8dSAdrian Chadd 	case IEEE80211_CIPHER_WEP:
13412cb9ef8dSAdrian Chadd 		return (keylen < 8 ? RT2573_MODE_WEP40 : RT2573_MODE_WEP104);
13422cb9ef8dSAdrian Chadd 	case IEEE80211_CIPHER_TKIP:
13432cb9ef8dSAdrian Chadd 		return RT2573_MODE_TKIP;
13442cb9ef8dSAdrian Chadd 	case IEEE80211_CIPHER_AES_CCM:
13452cb9ef8dSAdrian Chadd 		return RT2573_MODE_AES_CCMP;
13462cb9ef8dSAdrian Chadd 	default:
13472cb9ef8dSAdrian Chadd 		device_printf(sc->sc_dev, "unknown cipher %d\n", cipher);
13482cb9ef8dSAdrian Chadd 		return 0;
13492cb9ef8dSAdrian Chadd 	}
13502cb9ef8dSAdrian Chadd }
13512cb9ef8dSAdrian Chadd 
135202ac6454SAndrew Thompson static void
rum_setup_tx_desc(struct rum_softc * sc,struct rum_tx_desc * desc,struct ieee80211_key * k,uint32_t flags,uint8_t xflags,uint8_t qid,int hdrlen,int len,int rate)135302ac6454SAndrew Thompson rum_setup_tx_desc(struct rum_softc *sc, struct rum_tx_desc *desc,
13541354b52cSAdrian Chadd     struct ieee80211_key *k, uint32_t flags, uint8_t xflags, uint8_t qid,
13551354b52cSAdrian Chadd     int hdrlen, int len, int rate)
135602ac6454SAndrew Thompson {
13577a79cebfSGleb Smirnoff 	struct ieee80211com *ic = &sc->sc_ic;
13581354b52cSAdrian Chadd 	struct wmeParams *wmep = &sc->wme_params[qid];
135902ac6454SAndrew Thompson 	uint16_t plcp_length;
136002ac6454SAndrew Thompson 	int remainder;
136102ac6454SAndrew Thompson 
13622cb9ef8dSAdrian Chadd 	flags |= RT2573_TX_VALID;
13632cb9ef8dSAdrian Chadd 	flags |= len << 16;
136402ac6454SAndrew Thompson 
13652cb9ef8dSAdrian Chadd 	if (k != NULL && !(k->wk_flags & IEEE80211_KEY_SWCRYPT)) {
13662cb9ef8dSAdrian Chadd 		const struct ieee80211_cipher *cip = k->wk_cipher;
136702ac6454SAndrew Thompson 
13682cb9ef8dSAdrian Chadd 		len += cip->ic_header + cip->ic_trailer + cip->ic_miclen;
13692cb9ef8dSAdrian Chadd 
13702cb9ef8dSAdrian Chadd 		desc->eiv = 0;		/* for WEP */
13712cb9ef8dSAdrian Chadd 		cip->ic_setiv(k, (uint8_t *)&desc->iv);
13722cb9ef8dSAdrian Chadd 	}
137302ac6454SAndrew Thompson 
137402ac6454SAndrew Thompson 	/* setup PLCP fields */
137502ac6454SAndrew Thompson 	desc->plcp_signal  = rum_plcp_signal(rate);
137602ac6454SAndrew Thompson 	desc->plcp_service = 4;
137702ac6454SAndrew Thompson 
137802ac6454SAndrew Thompson 	len += IEEE80211_CRC_LEN;
137926d39e2cSSam Leffler 	if (ieee80211_rate2phytype(ic->ic_rt, rate) == IEEE80211_T_OFDM) {
13802cb9ef8dSAdrian Chadd 		flags |= RT2573_TX_OFDM;
138102ac6454SAndrew Thompson 
138202ac6454SAndrew Thompson 		plcp_length = len & 0xfff;
138302ac6454SAndrew Thompson 		desc->plcp_length_hi = plcp_length >> 6;
138402ac6454SAndrew Thompson 		desc->plcp_length_lo = plcp_length & 0x3f;
138502ac6454SAndrew Thompson 	} else {
1386b8e3094cSHans Petter Selasky 		if (rate == 0)
1387b8e3094cSHans Petter Selasky 			rate = 2;	/* avoid division by zero */
1388057b4402SPedro F. Giffuni 		plcp_length = howmany(16 * len, rate);
138902ac6454SAndrew Thompson 		if (rate == 22) {
139002ac6454SAndrew Thompson 			remainder = (16 * len) % 22;
139102ac6454SAndrew Thompson 			if (remainder != 0 && remainder < 7)
139202ac6454SAndrew Thompson 				desc->plcp_service |= RT2573_PLCP_LENGEXT;
139302ac6454SAndrew Thompson 		}
139402ac6454SAndrew Thompson 		desc->plcp_length_hi = plcp_length >> 8;
139502ac6454SAndrew Thompson 		desc->plcp_length_lo = plcp_length & 0xff;
139602ac6454SAndrew Thompson 
139702ac6454SAndrew Thompson 		if (rate != 2 && (ic->ic_flags & IEEE80211_F_SHPREAMBLE))
139802ac6454SAndrew Thompson 			desc->plcp_signal |= 0x08;
139902ac6454SAndrew Thompson 	}
14002cb9ef8dSAdrian Chadd 
14012cb9ef8dSAdrian Chadd 	desc->flags = htole32(flags);
14022cb9ef8dSAdrian Chadd 	desc->hdrlen = hdrlen;
14032cb9ef8dSAdrian Chadd 	desc->xflags = xflags;
14042cb9ef8dSAdrian Chadd 
14051354b52cSAdrian Chadd 	desc->wme = htole16(RT2573_QID(qid) |
14061354b52cSAdrian Chadd 	    RT2573_AIFSN(wmep->wmep_aifsn) |
14071354b52cSAdrian Chadd 	    RT2573_LOGCWMIN(wmep->wmep_logcwmin) |
14081354b52cSAdrian Chadd 	    RT2573_LOGCWMAX(wmep->wmep_logcwmax));
140902ac6454SAndrew Thompson }
141002ac6454SAndrew Thompson 
141102ac6454SAndrew Thompson static int
rum_sendprot(struct rum_softc * sc,const struct mbuf * m,struct ieee80211_node * ni,int prot,int rate)141202ac6454SAndrew Thompson rum_sendprot(struct rum_softc *sc,
141302ac6454SAndrew Thompson     const struct mbuf *m, struct ieee80211_node *ni, int prot, int rate)
141402ac6454SAndrew Thompson {
141502ac6454SAndrew Thompson 	struct ieee80211com *ic = ni->ni_ic;
141602ac6454SAndrew Thompson 	struct rum_tx_data *data;
141702ac6454SAndrew Thompson 	struct mbuf *mprot;
1418d1b67106SAndriy Voskoboinyk 	int protrate, flags;
141902ac6454SAndrew Thompson 
1420e7b7db3dSAdrian Chadd 	RUM_LOCK_ASSERT(sc);
142102ac6454SAndrew Thompson 
1422d1b67106SAndriy Voskoboinyk 	mprot = ieee80211_alloc_prot(ni, m, rate, prot);
142302ac6454SAndrew Thompson 	if (mprot == NULL) {
1424d1b67106SAndriy Voskoboinyk 		if_inc_counter(ni->ni_vap->iv_ifp, IFCOUNTER_OERRORS, 1);
1425d1b67106SAndriy Voskoboinyk 		device_printf(sc->sc_dev,
1426d1b67106SAndriy Voskoboinyk 		    "could not allocate mbuf for protection mode %d\n", prot);
142777ddf3d3SAndrew Thompson 		return (ENOBUFS);
142802ac6454SAndrew Thompson 	}
1429d1b67106SAndriy Voskoboinyk 
1430d1b67106SAndriy Voskoboinyk 	protrate = ieee80211_ctl_rate(ic->ic_rt, rate);
1431d1b67106SAndriy Voskoboinyk 	flags = 0;
1432d1b67106SAndriy Voskoboinyk 	if (prot == IEEE80211_PROT_RTSCTS)
1433d1b67106SAndriy Voskoboinyk 		flags |= RT2573_TX_NEED_ACK;
1434d1b67106SAndriy Voskoboinyk 
143502ac6454SAndrew Thompson 	data = STAILQ_FIRST(&sc->tx_free);
143602ac6454SAndrew Thompson 	STAILQ_REMOVE_HEAD(&sc->tx_free, next);
143702ac6454SAndrew Thompson 	sc->tx_nfree--;
143802ac6454SAndrew Thompson 
143902ac6454SAndrew Thompson 	data->m = mprot;
144002ac6454SAndrew Thompson 	data->ni = ieee80211_ref_node(ni);
144102ac6454SAndrew Thompson 	data->rate = protrate;
14421354b52cSAdrian Chadd 	rum_setup_tx_desc(sc, &data->desc, NULL, flags, 0, 0, 0,
14432cb9ef8dSAdrian Chadd 	    mprot->m_pkthdr.len, protrate);
144402ac6454SAndrew Thompson 
144502ac6454SAndrew Thompson 	STAILQ_INSERT_TAIL(&sc->tx_q, data, next);
1446a593f6b8SAndrew Thompson 	usbd_transfer_start(sc->sc_xfer[RUM_BULK_WR]);
144702ac6454SAndrew Thompson 
144802ac6454SAndrew Thompson 	return 0;
144902ac6454SAndrew Thompson }
145002ac6454SAndrew Thompson 
14512cb9ef8dSAdrian Chadd static uint32_t
rum_tx_crypto_flags(struct rum_softc * sc,struct ieee80211_node * ni,const struct ieee80211_key * k)14522cb9ef8dSAdrian Chadd rum_tx_crypto_flags(struct rum_softc *sc, struct ieee80211_node *ni,
14532cb9ef8dSAdrian Chadd     const struct ieee80211_key *k)
14542cb9ef8dSAdrian Chadd {
14552cb9ef8dSAdrian Chadd 	struct ieee80211vap *vap = ni->ni_vap;
14562cb9ef8dSAdrian Chadd 	u_int cipher;
14572cb9ef8dSAdrian Chadd 	uint32_t flags = 0;
14582cb9ef8dSAdrian Chadd 	uint8_t mode, pos;
14592cb9ef8dSAdrian Chadd 
14602cb9ef8dSAdrian Chadd 	if (!(k->wk_flags & IEEE80211_KEY_SWCRYPT)) {
14612cb9ef8dSAdrian Chadd 		cipher = k->wk_cipher->ic_cipher;
14622cb9ef8dSAdrian Chadd 		pos = k->wk_keyix;
14632cb9ef8dSAdrian Chadd 		mode = rum_crypto_mode(sc, cipher, k->wk_keylen);
14642cb9ef8dSAdrian Chadd 		if (mode == 0)
14652cb9ef8dSAdrian Chadd 			return 0;
14662cb9ef8dSAdrian Chadd 
14672cb9ef8dSAdrian Chadd 		flags |= RT2573_TX_CIP_MODE(mode);
14682cb9ef8dSAdrian Chadd 
14692cb9ef8dSAdrian Chadd 		/* Do not trust GROUP flag */
14702589197aSAdrian Chadd 		if (ieee80211_is_key_unicast(vap, k))
14712cb9ef8dSAdrian Chadd 			flags |= RT2573_TX_KEY_PAIR;
14722cb9ef8dSAdrian Chadd 		else
14732cb9ef8dSAdrian Chadd 			pos += 0 * RT2573_SKEY_MAX;	/* vap id */
14742cb9ef8dSAdrian Chadd 
14752cb9ef8dSAdrian Chadd 		flags |= RT2573_TX_KEY_ID(pos);
14762cb9ef8dSAdrian Chadd 
14772cb9ef8dSAdrian Chadd 		if (cipher == IEEE80211_CIPHER_TKIP)
14782cb9ef8dSAdrian Chadd 			flags |= RT2573_TX_TKIPMIC;
14792cb9ef8dSAdrian Chadd 	}
14802cb9ef8dSAdrian Chadd 
14812cb9ef8dSAdrian Chadd 	return flags;
14822cb9ef8dSAdrian Chadd }
14832cb9ef8dSAdrian Chadd 
148402ac6454SAndrew Thompson static int
rum_tx_mgt(struct rum_softc * sc,struct mbuf * m0,struct ieee80211_node * ni)148502ac6454SAndrew Thompson rum_tx_mgt(struct rum_softc *sc, struct mbuf *m0, struct ieee80211_node *ni)
148602ac6454SAndrew Thompson {
1487f6313575SAndriy Voskoboinyk 	const struct ieee80211_txparam *tp = ni->ni_txparms;
14887a79cebfSGleb Smirnoff 	struct ieee80211com *ic = &sc->sc_ic;
148902ac6454SAndrew Thompson 	struct rum_tx_data *data;
149002ac6454SAndrew Thompson 	struct ieee80211_frame *wh;
14912cb9ef8dSAdrian Chadd 	struct ieee80211_key *k = NULL;
149202ac6454SAndrew Thompson 	uint32_t flags = 0;
149302ac6454SAndrew Thompson 	uint16_t dur;
14941354b52cSAdrian Chadd 	uint8_t ac, type, xflags = 0;
14952cb9ef8dSAdrian Chadd 	int hdrlen;
149602ac6454SAndrew Thompson 
1497e7b7db3dSAdrian Chadd 	RUM_LOCK_ASSERT(sc);
149802ac6454SAndrew Thompson 
149902ac6454SAndrew Thompson 	data = STAILQ_FIRST(&sc->tx_free);
150002ac6454SAndrew Thompson 	STAILQ_REMOVE_HEAD(&sc->tx_free, next);
150102ac6454SAndrew Thompson 	sc->tx_nfree--;
150202ac6454SAndrew Thompson 
150302ac6454SAndrew Thompson 	wh = mtod(m0, struct ieee80211_frame *);
1504c42e124eSAdrian Chadd 	type = wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK;
15052cb9ef8dSAdrian Chadd 	hdrlen = ieee80211_anyhdrsize(wh);
15061354b52cSAdrian Chadd 	ac = M_WME_GETAC(m0);
15072cb9ef8dSAdrian Chadd 
15085945b5f5SKevin Lo 	if (wh->i_fc[1] & IEEE80211_FC1_PROTECTED) {
15092cb9ef8dSAdrian Chadd 		k = ieee80211_crypto_get_txkey(ni, m0);
1510b2a76342SAdrian Chadd 		if (k == NULL)
15112cb9ef8dSAdrian Chadd 			return (ENOENT);
15122cb9ef8dSAdrian Chadd 
15132cb9ef8dSAdrian Chadd 		if ((k->wk_flags & IEEE80211_KEY_SWCRYPT) &&
15142cb9ef8dSAdrian Chadd 		    !k->wk_cipher->ic_encap(k, m0))
1515b2a76342SAdrian Chadd 			return (ENOBUFS);
1516b2a76342SAdrian Chadd 
151702ac6454SAndrew Thompson 		wh = mtod(m0, struct ieee80211_frame *);
151802ac6454SAndrew Thompson 	}
151902ac6454SAndrew Thompson 
152002ac6454SAndrew Thompson 	if (!IEEE80211_IS_MULTICAST(wh->i_addr1)) {
152102ac6454SAndrew Thompson 		flags |= RT2573_TX_NEED_ACK;
152202ac6454SAndrew Thompson 
152326d39e2cSSam Leffler 		dur = ieee80211_ack_duration(ic->ic_rt, tp->mgmtrate,
152402ac6454SAndrew Thompson 		    ic->ic_flags & IEEE80211_F_SHPREAMBLE);
15258cfe5440SHans Petter Selasky 		USETW(wh->i_dur, dur);
152602ac6454SAndrew Thompson 
152702ac6454SAndrew Thompson 		/* tell hardware to add timestamp for probe responses */
1528c249cc38SAdrian Chadd 		if (IEEE80211_IS_MGMT_PROBE_RESP(wh))
152902ac6454SAndrew Thompson 			flags |= RT2573_TX_TIMESTAMP;
153002ac6454SAndrew Thompson 	}
153102ac6454SAndrew Thompson 
1532c42e124eSAdrian Chadd 	if (type != IEEE80211_FC0_TYPE_CTL && !IEEE80211_QOS_HAS_SEQ(wh))
1533c42e124eSAdrian Chadd 		xflags |= RT2573_TX_HWSEQ;
1534c42e124eSAdrian Chadd 
15352cb9ef8dSAdrian Chadd 	if (k != NULL)
15362cb9ef8dSAdrian Chadd 		flags |= rum_tx_crypto_flags(sc, ni, k);
15372cb9ef8dSAdrian Chadd 
153802ac6454SAndrew Thompson 	data->m = m0;
153902ac6454SAndrew Thompson 	data->ni = ni;
154002ac6454SAndrew Thompson 	data->rate = tp->mgmtrate;
154102ac6454SAndrew Thompson 
15421354b52cSAdrian Chadd 	rum_setup_tx_desc(sc, &data->desc, k, flags, xflags, ac, hdrlen,
15432cb9ef8dSAdrian Chadd 	    m0->m_pkthdr.len, tp->mgmtrate);
154402ac6454SAndrew Thompson 
154502ac6454SAndrew Thompson 	DPRINTFN(10, "sending mgt frame len=%d rate=%d\n",
154602ac6454SAndrew Thompson 	    m0->m_pkthdr.len + (int)RT2573_TX_DESC_SIZE, tp->mgmtrate);
154702ac6454SAndrew Thompson 
154802ac6454SAndrew Thompson 	STAILQ_INSERT_TAIL(&sc->tx_q, data, next);
1549a593f6b8SAndrew Thompson 	usbd_transfer_start(sc->sc_xfer[RUM_BULK_WR]);
155002ac6454SAndrew Thompson 
155177ddf3d3SAndrew Thompson 	return (0);
155202ac6454SAndrew Thompson }
155302ac6454SAndrew Thompson 
155402ac6454SAndrew Thompson static int
rum_tx_raw(struct rum_softc * sc,struct mbuf * m0,struct ieee80211_node * ni,const struct ieee80211_bpf_params * params)155502ac6454SAndrew Thompson rum_tx_raw(struct rum_softc *sc, struct mbuf *m0, struct ieee80211_node *ni,
155602ac6454SAndrew Thompson     const struct ieee80211_bpf_params *params)
155702ac6454SAndrew Thompson {
1558515db61dSSam Leffler 	struct ieee80211com *ic = ni->ni_ic;
1559c42e124eSAdrian Chadd 	struct ieee80211_frame *wh;
156002ac6454SAndrew Thompson 	struct rum_tx_data *data;
156102ac6454SAndrew Thompson 	uint32_t flags;
15621354b52cSAdrian Chadd 	uint8_t ac, type, xflags = 0;
156302ac6454SAndrew Thompson 	int rate, error;
156402ac6454SAndrew Thompson 
1565e7b7db3dSAdrian Chadd 	RUM_LOCK_ASSERT(sc);
156602ac6454SAndrew Thompson 
1567c42e124eSAdrian Chadd 	wh = mtod(m0, struct ieee80211_frame *);
1568c42e124eSAdrian Chadd 	type = wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK;
1569c42e124eSAdrian Chadd 
15701354b52cSAdrian Chadd 	ac = params->ibp_pri & 3;
15711354b52cSAdrian Chadd 
1572515db61dSSam Leffler 	rate = params->ibp_rate0;
1573b2a76342SAdrian Chadd 	if (!ieee80211_isratevalid(ic->ic_rt, rate))
1574b2a76342SAdrian Chadd 		return (EINVAL);
1575b2a76342SAdrian Chadd 
157602ac6454SAndrew Thompson 	flags = 0;
157702ac6454SAndrew Thompson 	if ((params->ibp_flags & IEEE80211_BPF_NOACK) == 0)
157802ac6454SAndrew Thompson 		flags |= RT2573_TX_NEED_ACK;
157902ac6454SAndrew Thompson 	if (params->ibp_flags & (IEEE80211_BPF_RTS|IEEE80211_BPF_CTS)) {
158002ac6454SAndrew Thompson 		error = rum_sendprot(sc, m0, ni,
158102ac6454SAndrew Thompson 		    params->ibp_flags & IEEE80211_BPF_RTS ?
158202ac6454SAndrew Thompson 			 IEEE80211_PROT_RTSCTS : IEEE80211_PROT_CTSONLY,
158302ac6454SAndrew Thompson 		    rate);
1584b2a76342SAdrian Chadd 		if (error || sc->tx_nfree == 0)
1585b2a76342SAdrian Chadd 			return (ENOBUFS);
1586b2a76342SAdrian Chadd 
158702ac6454SAndrew Thompson 		flags |= RT2573_TX_LONG_RETRY | RT2573_TX_IFS_SIFS;
158802ac6454SAndrew Thompson 	}
158902ac6454SAndrew Thompson 
1590c42e124eSAdrian Chadd 	if (type != IEEE80211_FC0_TYPE_CTL && !IEEE80211_QOS_HAS_SEQ(wh))
1591c42e124eSAdrian Chadd 		xflags |= RT2573_TX_HWSEQ;
1592c42e124eSAdrian Chadd 
159396ca458fSAndrew Thompson 	data = STAILQ_FIRST(&sc->tx_free);
159496ca458fSAndrew Thompson 	STAILQ_REMOVE_HEAD(&sc->tx_free, next);
159596ca458fSAndrew Thompson 	sc->tx_nfree--;
159696ca458fSAndrew Thompson 
159702ac6454SAndrew Thompson 	data->m = m0;
159802ac6454SAndrew Thompson 	data->ni = ni;
159902ac6454SAndrew Thompson 	data->rate = rate;
160002ac6454SAndrew Thompson 
160102ac6454SAndrew Thompson 	/* XXX need to setup descriptor ourself */
16021354b52cSAdrian Chadd 	rum_setup_tx_desc(sc, &data->desc, NULL, flags, xflags, ac, 0,
1603c42e124eSAdrian Chadd 	    m0->m_pkthdr.len, rate);
160402ac6454SAndrew Thompson 
160502ac6454SAndrew Thompson 	DPRINTFN(10, "sending raw frame len=%u rate=%u\n",
160602ac6454SAndrew Thompson 	    m0->m_pkthdr.len, rate);
160702ac6454SAndrew Thompson 
160802ac6454SAndrew Thompson 	STAILQ_INSERT_TAIL(&sc->tx_q, data, next);
1609a593f6b8SAndrew Thompson 	usbd_transfer_start(sc->sc_xfer[RUM_BULK_WR]);
161002ac6454SAndrew Thompson 
161102ac6454SAndrew Thompson 	return 0;
161202ac6454SAndrew Thompson }
161302ac6454SAndrew Thompson 
161402ac6454SAndrew Thompson static int
rum_tx_data(struct rum_softc * sc,struct mbuf * m0,struct ieee80211_node * ni)161502ac6454SAndrew Thompson rum_tx_data(struct rum_softc *sc, struct mbuf *m0, struct ieee80211_node *ni)
161602ac6454SAndrew Thompson {
161702ac6454SAndrew Thompson 	struct ieee80211vap *vap = ni->ni_vap;
16187a79cebfSGleb Smirnoff 	struct ieee80211com *ic = &sc->sc_ic;
161902ac6454SAndrew Thompson 	struct rum_tx_data *data;
162002ac6454SAndrew Thompson 	struct ieee80211_frame *wh;
1621f6313575SAndriy Voskoboinyk 	const struct ieee80211_txparam *tp = ni->ni_txparms;
16222cb9ef8dSAdrian Chadd 	struct ieee80211_key *k = NULL;
162302ac6454SAndrew Thompson 	uint32_t flags = 0;
162402ac6454SAndrew Thompson 	uint16_t dur;
16251354b52cSAdrian Chadd 	uint8_t ac, type, qos, xflags = 0;
16262cb9ef8dSAdrian Chadd 	int error, hdrlen, rate;
162702ac6454SAndrew Thompson 
1628e7b7db3dSAdrian Chadd 	RUM_LOCK_ASSERT(sc);
162902ac6454SAndrew Thompson 
163002ac6454SAndrew Thompson 	wh = mtod(m0, struct ieee80211_frame *);
1631c42e124eSAdrian Chadd 	type = wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK;
16322cb9ef8dSAdrian Chadd 	hdrlen = ieee80211_anyhdrsize(wh);
163302ac6454SAndrew Thompson 
16341354b52cSAdrian Chadd 	if (IEEE80211_QOS_HAS_SEQ(wh))
16351354b52cSAdrian Chadd 		qos = ((const struct ieee80211_qosframe *)wh)->i_qos[0];
16361354b52cSAdrian Chadd 	else
16371354b52cSAdrian Chadd 		qos = 0;
16381354b52cSAdrian Chadd 	ac = M_WME_GETAC(m0);
16391354b52cSAdrian Chadd 
1640f6313575SAndriy Voskoboinyk 	if (m0->m_flags & M_EAPOL)
1641f6313575SAndriy Voskoboinyk 		rate = tp->mgmtrate;
1642f6313575SAndriy Voskoboinyk 	else if (IEEE80211_IS_MULTICAST(wh->i_addr1))
164302ac6454SAndrew Thompson 		rate = tp->mcastrate;
164402ac6454SAndrew Thompson 	else if (tp->ucastrate != IEEE80211_FIXED_RATE_NONE)
164502ac6454SAndrew Thompson 		rate = tp->ucastrate;
1646f6930becSAndriy Voskoboinyk 	else {
1647f6930becSAndriy Voskoboinyk 		(void) ieee80211_ratectl_rate(ni, NULL, 0);
1648*70674500SAdrian Chadd 		rate = ieee80211_node_get_txrate_dot11rate(ni);
1649f6930becSAndriy Voskoboinyk 	}
165002ac6454SAndrew Thompson 
16515945b5f5SKevin Lo 	if (wh->i_fc[1] & IEEE80211_FC1_PROTECTED) {
16522cb9ef8dSAdrian Chadd 		k = ieee80211_crypto_get_txkey(ni, m0);
165302ac6454SAndrew Thompson 		if (k == NULL) {
165402ac6454SAndrew Thompson 			m_freem(m0);
16552cb9ef8dSAdrian Chadd 			return (ENOENT);
16562cb9ef8dSAdrian Chadd 		}
16572cb9ef8dSAdrian Chadd 		if ((k->wk_flags & IEEE80211_KEY_SWCRYPT) &&
16582cb9ef8dSAdrian Chadd 		    !k->wk_cipher->ic_encap(k, m0)) {
16592cb9ef8dSAdrian Chadd 			m_freem(m0);
16602cb9ef8dSAdrian Chadd 			return (ENOBUFS);
166102ac6454SAndrew Thompson 		}
166202ac6454SAndrew Thompson 
166302ac6454SAndrew Thompson 		/* packet header may have moved, reset our local pointer */
166402ac6454SAndrew Thompson 		wh = mtod(m0, struct ieee80211_frame *);
166502ac6454SAndrew Thompson 	}
166602ac6454SAndrew Thompson 
1667c42e124eSAdrian Chadd 	if (type != IEEE80211_FC0_TYPE_CTL && !IEEE80211_QOS_HAS_SEQ(wh))
1668c42e124eSAdrian Chadd 		xflags |= RT2573_TX_HWSEQ;
1669c42e124eSAdrian Chadd 
167002ac6454SAndrew Thompson 	if (!IEEE80211_IS_MULTICAST(wh->i_addr1)) {
167102ac6454SAndrew Thompson 		int prot = IEEE80211_PROT_NONE;
167202ac6454SAndrew Thompson 		if (m0->m_pkthdr.len + IEEE80211_CRC_LEN > vap->iv_rtsthreshold)
167302ac6454SAndrew Thompson 			prot = IEEE80211_PROT_RTSCTS;
167402ac6454SAndrew Thompson 		else if ((ic->ic_flags & IEEE80211_F_USEPROT) &&
167526d39e2cSSam Leffler 		    ieee80211_rate2phytype(ic->ic_rt, rate) == IEEE80211_T_OFDM)
167602ac6454SAndrew Thompson 			prot = ic->ic_protmode;
167702ac6454SAndrew Thompson 		if (prot != IEEE80211_PROT_NONE) {
167802ac6454SAndrew Thompson 			error = rum_sendprot(sc, m0, ni, prot, rate);
167996ca458fSAndrew Thompson 			if (error || sc->tx_nfree == 0) {
168002ac6454SAndrew Thompson 				m_freem(m0);
168196ca458fSAndrew Thompson 				return ENOBUFS;
168202ac6454SAndrew Thompson 			}
168302ac6454SAndrew Thompson 			flags |= RT2573_TX_LONG_RETRY | RT2573_TX_IFS_SIFS;
168402ac6454SAndrew Thompson 		}
168502ac6454SAndrew Thompson 	}
168602ac6454SAndrew Thompson 
16872cb9ef8dSAdrian Chadd 	if (k != NULL)
16882cb9ef8dSAdrian Chadd 		flags |= rum_tx_crypto_flags(sc, ni, k);
16892cb9ef8dSAdrian Chadd 
169002ac6454SAndrew Thompson 	data = STAILQ_FIRST(&sc->tx_free);
169102ac6454SAndrew Thompson 	STAILQ_REMOVE_HEAD(&sc->tx_free, next);
169202ac6454SAndrew Thompson 	sc->tx_nfree--;
169302ac6454SAndrew Thompson 
169402ac6454SAndrew Thompson 	data->m = m0;
169502ac6454SAndrew Thompson 	data->ni = ni;
169602ac6454SAndrew Thompson 	data->rate = rate;
169702ac6454SAndrew Thompson 
169802ac6454SAndrew Thompson 	if (!IEEE80211_IS_MULTICAST(wh->i_addr1)) {
16991354b52cSAdrian Chadd 		/* Unicast frame, check if an ACK is expected. */
17001354b52cSAdrian Chadd 		if (!qos || (qos & IEEE80211_QOS_ACKPOLICY) !=
17011354b52cSAdrian Chadd 		    IEEE80211_QOS_ACKPOLICY_NOACK)
170202ac6454SAndrew Thompson 			flags |= RT2573_TX_NEED_ACK;
170302ac6454SAndrew Thompson 
170426d39e2cSSam Leffler 		dur = ieee80211_ack_duration(ic->ic_rt, rate,
170502ac6454SAndrew Thompson 		    ic->ic_flags & IEEE80211_F_SHPREAMBLE);
17068cfe5440SHans Petter Selasky 		USETW(wh->i_dur, dur);
170702ac6454SAndrew Thompson 	}
170802ac6454SAndrew Thompson 
17091354b52cSAdrian Chadd 	rum_setup_tx_desc(sc, &data->desc, k, flags, xflags, ac, hdrlen,
17102cb9ef8dSAdrian Chadd 	    m0->m_pkthdr.len, rate);
171102ac6454SAndrew Thompson 
171202ac6454SAndrew Thompson 	DPRINTFN(10, "sending frame len=%d rate=%d\n",
171302ac6454SAndrew Thompson 	    m0->m_pkthdr.len + (int)RT2573_TX_DESC_SIZE, rate);
171402ac6454SAndrew Thompson 
171502ac6454SAndrew Thompson 	STAILQ_INSERT_TAIL(&sc->tx_q, data, next);
1716a593f6b8SAndrew Thompson 	usbd_transfer_start(sc->sc_xfer[RUM_BULK_WR]);
171702ac6454SAndrew Thompson 
171802ac6454SAndrew Thompson 	return 0;
171902ac6454SAndrew Thompson }
172002ac6454SAndrew Thompson 
17217a79cebfSGleb Smirnoff static int
rum_transmit(struct ieee80211com * ic,struct mbuf * m)17227a79cebfSGleb Smirnoff rum_transmit(struct ieee80211com *ic, struct mbuf *m)
172379d2c5e8SGleb Smirnoff {
17247a79cebfSGleb Smirnoff 	struct rum_softc *sc = ic->ic_softc;
17257a79cebfSGleb Smirnoff 	int error;
17267a79cebfSGleb Smirnoff 
17277a79cebfSGleb Smirnoff 	RUM_LOCK(sc);
17287a79cebfSGleb Smirnoff 	if (!sc->sc_running) {
17297a79cebfSGleb Smirnoff 		RUM_UNLOCK(sc);
17307a79cebfSGleb Smirnoff 		return (ENXIO);
17317a79cebfSGleb Smirnoff 	}
17327a79cebfSGleb Smirnoff 	error = mbufq_enqueue(&sc->sc_snd, m);
17337a79cebfSGleb Smirnoff 	if (error) {
17347a79cebfSGleb Smirnoff 		RUM_UNLOCK(sc);
17357a79cebfSGleb Smirnoff 		return (error);
17367a79cebfSGleb Smirnoff 	}
17377a79cebfSGleb Smirnoff 	rum_start(sc);
17387a79cebfSGleb Smirnoff 	RUM_UNLOCK(sc);
17397a79cebfSGleb Smirnoff 
17407a79cebfSGleb Smirnoff 	return (0);
17417a79cebfSGleb Smirnoff }
17427a79cebfSGleb Smirnoff 
17437a79cebfSGleb Smirnoff static void
rum_start(struct rum_softc * sc)17447a79cebfSGleb Smirnoff rum_start(struct rum_softc *sc)
17457a79cebfSGleb Smirnoff {
174602ac6454SAndrew Thompson 	struct ieee80211_node *ni;
174702ac6454SAndrew Thompson 	struct mbuf *m;
174802ac6454SAndrew Thompson 
1749e7b7db3dSAdrian Chadd 	RUM_LOCK_ASSERT(sc);
17507a79cebfSGleb Smirnoff 
17517a79cebfSGleb Smirnoff 	if (!sc->sc_running)
175202ac6454SAndrew Thompson 		return;
17537a79cebfSGleb Smirnoff 
17547a79cebfSGleb Smirnoff 	while (sc->tx_nfree >= RUM_TX_MINFREE &&
17557a79cebfSGleb Smirnoff 	    (m = mbufq_dequeue(&sc->sc_snd)) != NULL) {
175602ac6454SAndrew Thompson 		ni = (struct ieee80211_node *) m->m_pkthdr.rcvif;
175702ac6454SAndrew Thompson 		if (rum_tx_data(sc, m, ni) != 0) {
17587a79cebfSGleb Smirnoff 			if_inc_counter(ni->ni_vap->iv_ifp,
17597a79cebfSGleb Smirnoff 			    IFCOUNTER_OERRORS, 1);
176002ac6454SAndrew Thompson 			ieee80211_free_node(ni);
176102ac6454SAndrew Thompson 			break;
176202ac6454SAndrew Thompson 		}
176302ac6454SAndrew Thompson 	}
176402ac6454SAndrew Thompson }
176502ac6454SAndrew Thompson 
17667a79cebfSGleb Smirnoff static void
rum_parent(struct ieee80211com * ic)17677a79cebfSGleb Smirnoff rum_parent(struct ieee80211com *ic)
176802ac6454SAndrew Thompson {
1769d3fdd08cSAdrian Chadd 	struct rum_softc *sc = ic->ic_softc;
17700698c0b3SAdrian Chadd 	struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps);
1771645e4d17SHans Petter Selasky 
1772645e4d17SHans Petter Selasky 	RUM_LOCK(sc);
17737a79cebfSGleb Smirnoff 	if (sc->sc_detached) {
1774645e4d17SHans Petter Selasky 		RUM_UNLOCK(sc);
17757a79cebfSGleb Smirnoff 		return;
17767a79cebfSGleb Smirnoff 	}
177702ac6454SAndrew Thompson 	RUM_UNLOCK(sc);
17780698c0b3SAdrian Chadd 
17790698c0b3SAdrian Chadd 	if (ic->ic_nrunning > 0) {
17800698c0b3SAdrian Chadd 		if (rum_init(sc) == 0)
178102ac6454SAndrew Thompson 			ieee80211_start_all(ic);
17820698c0b3SAdrian Chadd 		else
17830698c0b3SAdrian Chadd 			ieee80211_stop(vap);
17840698c0b3SAdrian Chadd 	} else
17850698c0b3SAdrian Chadd 		rum_stop(sc);
178602ac6454SAndrew Thompson }
178702ac6454SAndrew Thompson 
178802ac6454SAndrew Thompson static void
rum_eeprom_read(struct rum_softc * sc,uint16_t addr,void * buf,int len)178902ac6454SAndrew Thompson rum_eeprom_read(struct rum_softc *sc, uint16_t addr, void *buf, int len)
179002ac6454SAndrew Thompson {
1791760bc48eSAndrew Thompson 	struct usb_device_request req;
1792e0a69b51SAndrew Thompson 	usb_error_t error;
179302ac6454SAndrew Thompson 
179402ac6454SAndrew Thompson 	req.bmRequestType = UT_READ_VENDOR_DEVICE;
179502ac6454SAndrew Thompson 	req.bRequest = RT2573_READ_EEPROM;
179602ac6454SAndrew Thompson 	USETW(req.wValue, 0);
179702ac6454SAndrew Thompson 	USETW(req.wIndex, addr);
179802ac6454SAndrew Thompson 	USETW(req.wLength, len);
179902ac6454SAndrew Thompson 
180002ac6454SAndrew Thompson 	error = rum_do_request(sc, &req, buf);
180102ac6454SAndrew Thompson 	if (error != 0) {
180202ac6454SAndrew Thompson 		device_printf(sc->sc_dev, "could not read EEPROM: %s\n",
1803a593f6b8SAndrew Thompson 		    usbd_errstr(error));
180402ac6454SAndrew Thompson 	}
180502ac6454SAndrew Thompson }
180602ac6454SAndrew Thompson 
180702ac6454SAndrew Thompson static uint32_t
rum_read(struct rum_softc * sc,uint16_t reg)180802ac6454SAndrew Thompson rum_read(struct rum_softc *sc, uint16_t reg)
180902ac6454SAndrew Thompson {
181002ac6454SAndrew Thompson 	uint32_t val;
181102ac6454SAndrew Thompson 
181202ac6454SAndrew Thompson 	rum_read_multi(sc, reg, &val, sizeof val);
181302ac6454SAndrew Thompson 
181402ac6454SAndrew Thompson 	return le32toh(val);
181502ac6454SAndrew Thompson }
181602ac6454SAndrew Thompson 
181702ac6454SAndrew Thompson static void
rum_read_multi(struct rum_softc * sc,uint16_t reg,void * buf,int len)181802ac6454SAndrew Thompson rum_read_multi(struct rum_softc *sc, uint16_t reg, void *buf, int len)
181902ac6454SAndrew Thompson {
1820760bc48eSAndrew Thompson 	struct usb_device_request req;
1821e0a69b51SAndrew Thompson 	usb_error_t error;
182202ac6454SAndrew Thompson 
182302ac6454SAndrew Thompson 	req.bmRequestType = UT_READ_VENDOR_DEVICE;
182402ac6454SAndrew Thompson 	req.bRequest = RT2573_READ_MULTI_MAC;
182502ac6454SAndrew Thompson 	USETW(req.wValue, 0);
182602ac6454SAndrew Thompson 	USETW(req.wIndex, reg);
182702ac6454SAndrew Thompson 	USETW(req.wLength, len);
182802ac6454SAndrew Thompson 
182902ac6454SAndrew Thompson 	error = rum_do_request(sc, &req, buf);
183002ac6454SAndrew Thompson 	if (error != 0) {
183102ac6454SAndrew Thompson 		device_printf(sc->sc_dev,
183202ac6454SAndrew Thompson 		    "could not multi read MAC register: %s\n",
1833a593f6b8SAndrew Thompson 		    usbd_errstr(error));
183402ac6454SAndrew Thompson 	}
183502ac6454SAndrew Thompson }
183602ac6454SAndrew Thompson 
1837e0a69b51SAndrew Thompson static usb_error_t
rum_write(struct rum_softc * sc,uint16_t reg,uint32_t val)183802ac6454SAndrew Thompson rum_write(struct rum_softc *sc, uint16_t reg, uint32_t val)
183902ac6454SAndrew Thompson {
184002ac6454SAndrew Thompson 	uint32_t tmp = htole32(val);
184102ac6454SAndrew Thompson 
184277ddf3d3SAndrew Thompson 	return (rum_write_multi(sc, reg, &tmp, sizeof tmp));
184302ac6454SAndrew Thompson }
184402ac6454SAndrew Thompson 
1845e0a69b51SAndrew Thompson static usb_error_t
rum_write_multi(struct rum_softc * sc,uint16_t reg,void * buf,size_t len)184602ac6454SAndrew Thompson rum_write_multi(struct rum_softc *sc, uint16_t reg, void *buf, size_t len)
184702ac6454SAndrew Thompson {
1848760bc48eSAndrew Thompson 	struct usb_device_request req;
1849e0a69b51SAndrew Thompson 	usb_error_t error;
18506d917491SHans Petter Selasky 	size_t offset;
185102ac6454SAndrew Thompson 
185202ac6454SAndrew Thompson 	req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
185302ac6454SAndrew Thompson 	req.bRequest = RT2573_WRITE_MULTI_MAC;
185402ac6454SAndrew Thompson 	USETW(req.wValue, 0);
185502ac6454SAndrew Thompson 
185665d7e4d9SAdrian Chadd 	/* write at most 64 bytes at a time */
185765d7e4d9SAdrian Chadd 	for (offset = 0; offset < len; offset += 64) {
185865d7e4d9SAdrian Chadd 		USETW(req.wIndex, reg + offset);
185965d7e4d9SAdrian Chadd 		USETW(req.wLength, MIN(len - offset, 64));
186065d7e4d9SAdrian Chadd 
18618797cafeSBjoern A. Zeeb 		error = rum_do_request(sc, &req, (char *)buf + offset);
186202ac6454SAndrew Thompson 		if (error != 0) {
186302ac6454SAndrew Thompson 			device_printf(sc->sc_dev,
186402ac6454SAndrew Thompson 			    "could not multi write MAC register: %s\n",
1865a593f6b8SAndrew Thompson 			    usbd_errstr(error));
186677ddf3d3SAndrew Thompson 			return (error);
186702ac6454SAndrew Thompson 		}
186865d7e4d9SAdrian Chadd 	}
18698797cafeSBjoern A. Zeeb 
18708797cafeSBjoern A. Zeeb 	return (USB_ERR_NORMAL_COMPLETION);
187165d7e4d9SAdrian Chadd }
187202ac6454SAndrew Thompson 
1873a05022b2SAdrian Chadd static usb_error_t
rum_setbits(struct rum_softc * sc,uint16_t reg,uint32_t mask)1874a05022b2SAdrian Chadd rum_setbits(struct rum_softc *sc, uint16_t reg, uint32_t mask)
1875a05022b2SAdrian Chadd {
1876a05022b2SAdrian Chadd 	return (rum_write(sc, reg, rum_read(sc, reg) | mask));
1877a05022b2SAdrian Chadd }
1878a05022b2SAdrian Chadd 
1879a05022b2SAdrian Chadd static usb_error_t
rum_clrbits(struct rum_softc * sc,uint16_t reg,uint32_t mask)1880a05022b2SAdrian Chadd rum_clrbits(struct rum_softc *sc, uint16_t reg, uint32_t mask)
1881a05022b2SAdrian Chadd {
1882a05022b2SAdrian Chadd 	return (rum_write(sc, reg, rum_read(sc, reg) & ~mask));
1883a05022b2SAdrian Chadd }
1884a05022b2SAdrian Chadd 
1885a05022b2SAdrian Chadd static usb_error_t
rum_modbits(struct rum_softc * sc,uint16_t reg,uint32_t set,uint32_t unset)1886a05022b2SAdrian Chadd rum_modbits(struct rum_softc *sc, uint16_t reg, uint32_t set, uint32_t unset)
1887a05022b2SAdrian Chadd {
1888a05022b2SAdrian Chadd 	return (rum_write(sc, reg, (rum_read(sc, reg) & ~unset) | set));
1889a05022b2SAdrian Chadd }
1890a05022b2SAdrian Chadd 
1891cc9ae761SAdrian Chadd static int
rum_bbp_busy(struct rum_softc * sc)1892cc9ae761SAdrian Chadd rum_bbp_busy(struct rum_softc *sc)
189302ac6454SAndrew Thompson {
189402ac6454SAndrew Thompson 	int ntries;
189502ac6454SAndrew Thompson 
189602ac6454SAndrew Thompson 	for (ntries = 0; ntries < 100; ntries++) {
189702ac6454SAndrew Thompson 		if (!(rum_read(sc, RT2573_PHY_CSR3) & RT2573_BBP_BUSY))
189802ac6454SAndrew Thompson 			break;
189902ac6454SAndrew Thompson 		if (rum_pause(sc, hz / 100))
190002ac6454SAndrew Thompson 			break;
190102ac6454SAndrew Thompson 	}
1902cc9ae761SAdrian Chadd 	if (ntries == 100)
1903cc9ae761SAdrian Chadd 		return (ETIMEDOUT);
1904cc9ae761SAdrian Chadd 
1905cc9ae761SAdrian Chadd 	return (0);
1906cc9ae761SAdrian Chadd }
1907cc9ae761SAdrian Chadd 
1908cc9ae761SAdrian Chadd static void
rum_bbp_write(struct rum_softc * sc,uint8_t reg,uint8_t val)1909cc9ae761SAdrian Chadd rum_bbp_write(struct rum_softc *sc, uint8_t reg, uint8_t val)
1910cc9ae761SAdrian Chadd {
1911cc9ae761SAdrian Chadd 	uint32_t tmp;
1912cc9ae761SAdrian Chadd 
1913cc9ae761SAdrian Chadd 	DPRINTFN(2, "reg=0x%08x\n", reg);
1914cc9ae761SAdrian Chadd 
1915cc9ae761SAdrian Chadd 	if (rum_bbp_busy(sc) != 0) {
191602ac6454SAndrew Thompson 		device_printf(sc->sc_dev, "could not write to BBP\n");
191702ac6454SAndrew Thompson 		return;
191802ac6454SAndrew Thompson 	}
191902ac6454SAndrew Thompson 
192002ac6454SAndrew Thompson 	tmp = RT2573_BBP_BUSY | (reg & 0x7f) << 8 | val;
192102ac6454SAndrew Thompson 	rum_write(sc, RT2573_PHY_CSR3, tmp);
192202ac6454SAndrew Thompson }
192302ac6454SAndrew Thompson 
192402ac6454SAndrew Thompson static uint8_t
rum_bbp_read(struct rum_softc * sc,uint8_t reg)192502ac6454SAndrew Thompson rum_bbp_read(struct rum_softc *sc, uint8_t reg)
192602ac6454SAndrew Thompson {
192702ac6454SAndrew Thompson 	uint32_t val;
192802ac6454SAndrew Thompson 	int ntries;
192902ac6454SAndrew Thompson 
193077ddf3d3SAndrew Thompson 	DPRINTFN(2, "reg=0x%08x\n", reg);
193177ddf3d3SAndrew Thompson 
1932cc9ae761SAdrian Chadd 	if (rum_bbp_busy(sc) != 0) {
193302ac6454SAndrew Thompson 		device_printf(sc->sc_dev, "could not read BBP\n");
193402ac6454SAndrew Thompson 		return 0;
193502ac6454SAndrew Thompson 	}
193602ac6454SAndrew Thompson 
193702ac6454SAndrew Thompson 	val = RT2573_BBP_BUSY | RT2573_BBP_READ | reg << 8;
193802ac6454SAndrew Thompson 	rum_write(sc, RT2573_PHY_CSR3, val);
193902ac6454SAndrew Thompson 
194002ac6454SAndrew Thompson 	for (ntries = 0; ntries < 100; ntries++) {
194102ac6454SAndrew Thompson 		val = rum_read(sc, RT2573_PHY_CSR3);
194202ac6454SAndrew Thompson 		if (!(val & RT2573_BBP_BUSY))
194302ac6454SAndrew Thompson 			return val & 0xff;
194402ac6454SAndrew Thompson 		if (rum_pause(sc, hz / 100))
194502ac6454SAndrew Thompson 			break;
194602ac6454SAndrew Thompson 	}
194702ac6454SAndrew Thompson 
194802ac6454SAndrew Thompson 	device_printf(sc->sc_dev, "could not read BBP\n");
194902ac6454SAndrew Thompson 	return 0;
195002ac6454SAndrew Thompson }
195102ac6454SAndrew Thompson 
195202ac6454SAndrew Thompson static void
rum_rf_write(struct rum_softc * sc,uint8_t reg,uint32_t val)195302ac6454SAndrew Thompson rum_rf_write(struct rum_softc *sc, uint8_t reg, uint32_t val)
195402ac6454SAndrew Thompson {
195502ac6454SAndrew Thompson 	uint32_t tmp;
195602ac6454SAndrew Thompson 	int ntries;
195702ac6454SAndrew Thompson 
195802ac6454SAndrew Thompson 	for (ntries = 0; ntries < 100; ntries++) {
195902ac6454SAndrew Thompson 		if (!(rum_read(sc, RT2573_PHY_CSR4) & RT2573_RF_BUSY))
196002ac6454SAndrew Thompson 			break;
196102ac6454SAndrew Thompson 		if (rum_pause(sc, hz / 100))
196202ac6454SAndrew Thompson 			break;
196302ac6454SAndrew Thompson 	}
196402ac6454SAndrew Thompson 	if (ntries == 100) {
196502ac6454SAndrew Thompson 		device_printf(sc->sc_dev, "could not write to RF\n");
196602ac6454SAndrew Thompson 		return;
196702ac6454SAndrew Thompson 	}
196802ac6454SAndrew Thompson 
196967784314SPoul-Henning Kamp 	tmp = RT2573_RF_BUSY | RT2573_RF_20BIT | (val & 0xfffff) << 2 |
197002ac6454SAndrew Thompson 	    (reg & 3);
197102ac6454SAndrew Thompson 	rum_write(sc, RT2573_PHY_CSR4, tmp);
197202ac6454SAndrew Thompson 
197302ac6454SAndrew Thompson 	/* remember last written value in sc */
197402ac6454SAndrew Thompson 	sc->rf_regs[reg] = val;
197502ac6454SAndrew Thompson 
197602ac6454SAndrew Thompson 	DPRINTFN(15, "RF R[%u] <- 0x%05x\n", reg & 3, val & 0xfffff);
197702ac6454SAndrew Thompson }
197802ac6454SAndrew Thompson 
197902ac6454SAndrew Thompson static void
rum_select_antenna(struct rum_softc * sc)198002ac6454SAndrew Thompson rum_select_antenna(struct rum_softc *sc)
198102ac6454SAndrew Thompson {
198202ac6454SAndrew Thompson 	uint8_t bbp4, bbp77;
198302ac6454SAndrew Thompson 	uint32_t tmp;
198402ac6454SAndrew Thompson 
198502ac6454SAndrew Thompson 	bbp4  = rum_bbp_read(sc, 4);
198602ac6454SAndrew Thompson 	bbp77 = rum_bbp_read(sc, 77);
198702ac6454SAndrew Thompson 
198802ac6454SAndrew Thompson 	/* TBD */
198902ac6454SAndrew Thompson 
199002ac6454SAndrew Thompson 	/* make sure Rx is disabled before switching antenna */
199102ac6454SAndrew Thompson 	tmp = rum_read(sc, RT2573_TXRX_CSR0);
199202ac6454SAndrew Thompson 	rum_write(sc, RT2573_TXRX_CSR0, tmp | RT2573_DISABLE_RX);
199302ac6454SAndrew Thompson 
199402ac6454SAndrew Thompson 	rum_bbp_write(sc,  4, bbp4);
199502ac6454SAndrew Thompson 	rum_bbp_write(sc, 77, bbp77);
199602ac6454SAndrew Thompson 
199702ac6454SAndrew Thompson 	rum_write(sc, RT2573_TXRX_CSR0, tmp);
199802ac6454SAndrew Thompson }
199902ac6454SAndrew Thompson 
200002ac6454SAndrew Thompson /*
200102ac6454SAndrew Thompson  * Enable multi-rate retries for frames sent at OFDM rates.
200202ac6454SAndrew Thompson  * In 802.11b/g mode, allow fallback to CCK rates.
200302ac6454SAndrew Thompson  */
200402ac6454SAndrew Thompson static void
rum_enable_mrr(struct rum_softc * sc)200502ac6454SAndrew Thompson rum_enable_mrr(struct rum_softc *sc)
200602ac6454SAndrew Thompson {
20077a79cebfSGleb Smirnoff 	struct ieee80211com *ic = &sc->sc_ic;
200802ac6454SAndrew Thompson 
2009a05022b2SAdrian Chadd 	if (!IEEE80211_IS_CHAN_5GHZ(ic->ic_bsschan)) {
2010a05022b2SAdrian Chadd 		rum_setbits(sc, RT2573_TXRX_CSR4,
2011a05022b2SAdrian Chadd 		    RT2573_MRR_ENABLED | RT2573_MRR_CCK_FALLBACK);
2012a05022b2SAdrian Chadd 	} else {
2013a05022b2SAdrian Chadd 		rum_modbits(sc, RT2573_TXRX_CSR4,
2014a05022b2SAdrian Chadd 		    RT2573_MRR_ENABLED, RT2573_MRR_CCK_FALLBACK);
2015a05022b2SAdrian Chadd 	}
201602ac6454SAndrew Thompson }
201702ac6454SAndrew Thompson 
201802ac6454SAndrew Thompson static void
rum_set_txpreamble(struct rum_softc * sc)201902ac6454SAndrew Thompson rum_set_txpreamble(struct rum_softc *sc)
202002ac6454SAndrew Thompson {
20217a79cebfSGleb Smirnoff 	struct ieee80211com *ic = &sc->sc_ic;
202202ac6454SAndrew Thompson 
202302ac6454SAndrew Thompson 	if (ic->ic_flags & IEEE80211_F_SHPREAMBLE)
2024a05022b2SAdrian Chadd 		rum_setbits(sc, RT2573_TXRX_CSR4, RT2573_SHORT_PREAMBLE);
2025a05022b2SAdrian Chadd 	else
2026a05022b2SAdrian Chadd 		rum_clrbits(sc, RT2573_TXRX_CSR4, RT2573_SHORT_PREAMBLE);
202702ac6454SAndrew Thompson }
202802ac6454SAndrew Thompson 
202902ac6454SAndrew Thompson static void
rum_set_basicrates(struct rum_softc * sc)203002ac6454SAndrew Thompson rum_set_basicrates(struct rum_softc *sc)
203102ac6454SAndrew Thompson {
20327a79cebfSGleb Smirnoff 	struct ieee80211com *ic = &sc->sc_ic;
203302ac6454SAndrew Thompson 
203402ac6454SAndrew Thompson 	/* update basic rate set */
203502ac6454SAndrew Thompson 	if (ic->ic_curmode == IEEE80211_MODE_11B) {
203602ac6454SAndrew Thompson 		/* 11b basic rates: 1, 2Mbps */
203702ac6454SAndrew Thompson 		rum_write(sc, RT2573_TXRX_CSR5, 0x3);
203802ac6454SAndrew Thompson 	} else if (IEEE80211_IS_CHAN_5GHZ(ic->ic_bsschan)) {
203902ac6454SAndrew Thompson 		/* 11a basic rates: 6, 12, 24Mbps */
204002ac6454SAndrew Thompson 		rum_write(sc, RT2573_TXRX_CSR5, 0x150);
204102ac6454SAndrew Thompson 	} else {
204202ac6454SAndrew Thompson 		/* 11b/g basic rates: 1, 2, 5.5, 11Mbps */
204302ac6454SAndrew Thompson 		rum_write(sc, RT2573_TXRX_CSR5, 0xf);
204402ac6454SAndrew Thompson 	}
204502ac6454SAndrew Thompson }
204602ac6454SAndrew Thompson 
204702ac6454SAndrew Thompson /*
204802ac6454SAndrew Thompson  * Reprogram MAC/BBP to switch to a new band.  Values taken from the reference
204902ac6454SAndrew Thompson  * driver.
205002ac6454SAndrew Thompson  */
205102ac6454SAndrew Thompson static void
rum_select_band(struct rum_softc * sc,struct ieee80211_channel * c)205202ac6454SAndrew Thompson rum_select_band(struct rum_softc *sc, struct ieee80211_channel *c)
205302ac6454SAndrew Thompson {
205402ac6454SAndrew Thompson 	uint8_t bbp17, bbp35, bbp96, bbp97, bbp98, bbp104;
205502ac6454SAndrew Thompson 
205602ac6454SAndrew Thompson 	/* update all BBP registers that depend on the band */
205702ac6454SAndrew Thompson 	bbp17 = 0x20; bbp96 = 0x48; bbp104 = 0x2c;
205802ac6454SAndrew Thompson 	bbp35 = 0x50; bbp97 = 0x48; bbp98  = 0x48;
205902ac6454SAndrew Thompson 	if (IEEE80211_IS_CHAN_5GHZ(c)) {
206002ac6454SAndrew Thompson 		bbp17 += 0x08; bbp96 += 0x10; bbp104 += 0x0c;
206102ac6454SAndrew Thompson 		bbp35 += 0x10; bbp97 += 0x10; bbp98  += 0x10;
206202ac6454SAndrew Thompson 	}
206302ac6454SAndrew Thompson 	if ((IEEE80211_IS_CHAN_2GHZ(c) && sc->ext_2ghz_lna) ||
206402ac6454SAndrew Thompson 	    (IEEE80211_IS_CHAN_5GHZ(c) && sc->ext_5ghz_lna)) {
206502ac6454SAndrew Thompson 		bbp17 += 0x10; bbp96 += 0x10; bbp104 += 0x10;
206602ac6454SAndrew Thompson 	}
206702ac6454SAndrew Thompson 
206802ac6454SAndrew Thompson 	sc->bbp17 = bbp17;
206902ac6454SAndrew Thompson 	rum_bbp_write(sc,  17, bbp17);
207002ac6454SAndrew Thompson 	rum_bbp_write(sc,  96, bbp96);
207102ac6454SAndrew Thompson 	rum_bbp_write(sc, 104, bbp104);
207202ac6454SAndrew Thompson 
207302ac6454SAndrew Thompson 	if ((IEEE80211_IS_CHAN_2GHZ(c) && sc->ext_2ghz_lna) ||
207402ac6454SAndrew Thompson 	    (IEEE80211_IS_CHAN_5GHZ(c) && sc->ext_5ghz_lna)) {
207502ac6454SAndrew Thompson 		rum_bbp_write(sc, 75, 0x80);
207602ac6454SAndrew Thompson 		rum_bbp_write(sc, 86, 0x80);
207702ac6454SAndrew Thompson 		rum_bbp_write(sc, 88, 0x80);
207802ac6454SAndrew Thompson 	}
207902ac6454SAndrew Thompson 
208002ac6454SAndrew Thompson 	rum_bbp_write(sc, 35, bbp35);
208102ac6454SAndrew Thompson 	rum_bbp_write(sc, 97, bbp97);
208202ac6454SAndrew Thompson 	rum_bbp_write(sc, 98, bbp98);
208302ac6454SAndrew Thompson 
2084a05022b2SAdrian Chadd 	if (IEEE80211_IS_CHAN_2GHZ(c)) {
2085a05022b2SAdrian Chadd 		rum_modbits(sc, RT2573_PHY_CSR0, RT2573_PA_PE_2GHZ,
2086a05022b2SAdrian Chadd 		    RT2573_PA_PE_5GHZ);
2087a05022b2SAdrian Chadd 	} else {
2088a05022b2SAdrian Chadd 		rum_modbits(sc, RT2573_PHY_CSR0, RT2573_PA_PE_5GHZ,
2089a05022b2SAdrian Chadd 		    RT2573_PA_PE_2GHZ);
2090a05022b2SAdrian Chadd 	}
209102ac6454SAndrew Thompson }
209202ac6454SAndrew Thompson 
209302ac6454SAndrew Thompson static void
rum_set_chan(struct rum_softc * sc,struct ieee80211_channel * c)209402ac6454SAndrew Thompson rum_set_chan(struct rum_softc *sc, struct ieee80211_channel *c)
209502ac6454SAndrew Thompson {
20967a79cebfSGleb Smirnoff 	struct ieee80211com *ic = &sc->sc_ic;
209702ac6454SAndrew Thompson 	const struct rfprog *rfprog;
209802ac6454SAndrew Thompson 	uint8_t bbp3, bbp94 = RT2573_BBPR94_DEFAULT;
209902ac6454SAndrew Thompson 	int8_t power;
210002ac6454SAndrew Thompson 	int i, chan;
210102ac6454SAndrew Thompson 
210202ac6454SAndrew Thompson 	chan = ieee80211_chan2ieee(ic, c);
210302ac6454SAndrew Thompson 	if (chan == 0 || chan == IEEE80211_CHAN_ANY)
210402ac6454SAndrew Thompson 		return;
210502ac6454SAndrew Thompson 
210602ac6454SAndrew Thompson 	/* select the appropriate RF settings based on what EEPROM says */
210702ac6454SAndrew Thompson 	rfprog = (sc->rf_rev == RT2573_RF_5225 ||
210802ac6454SAndrew Thompson 		  sc->rf_rev == RT2573_RF_2527) ? rum_rf5225 : rum_rf5226;
210902ac6454SAndrew Thompson 
211002ac6454SAndrew Thompson 	/* find the settings for this channel (we know it exists) */
211102ac6454SAndrew Thompson 	for (i = 0; rfprog[i].chan != chan; i++);
211202ac6454SAndrew Thompson 
211302ac6454SAndrew Thompson 	power = sc->txpow[i];
211402ac6454SAndrew Thompson 	if (power < 0) {
211502ac6454SAndrew Thompson 		bbp94 += power;
211602ac6454SAndrew Thompson 		power = 0;
211702ac6454SAndrew Thompson 	} else if (power > 31) {
211802ac6454SAndrew Thompson 		bbp94 += power - 31;
211902ac6454SAndrew Thompson 		power = 31;
212002ac6454SAndrew Thompson 	}
212102ac6454SAndrew Thompson 
212202ac6454SAndrew Thompson 	/*
212302ac6454SAndrew Thompson 	 * If we are switching from the 2GHz band to the 5GHz band or
212402ac6454SAndrew Thompson 	 * vice-versa, BBP registers need to be reprogrammed.
212502ac6454SAndrew Thompson 	 */
212602ac6454SAndrew Thompson 	if (c->ic_flags != ic->ic_curchan->ic_flags) {
212702ac6454SAndrew Thompson 		rum_select_band(sc, c);
212802ac6454SAndrew Thompson 		rum_select_antenna(sc);
212902ac6454SAndrew Thompson 	}
213002ac6454SAndrew Thompson 	ic->ic_curchan = c;
213102ac6454SAndrew Thompson 
213202ac6454SAndrew Thompson 	rum_rf_write(sc, RT2573_RF1, rfprog[i].r1);
213302ac6454SAndrew Thompson 	rum_rf_write(sc, RT2573_RF2, rfprog[i].r2);
213402ac6454SAndrew Thompson 	rum_rf_write(sc, RT2573_RF3, rfprog[i].r3 | power << 7);
213502ac6454SAndrew Thompson 	rum_rf_write(sc, RT2573_RF4, rfprog[i].r4 | sc->rffreq << 10);
213602ac6454SAndrew Thompson 
213702ac6454SAndrew Thompson 	rum_rf_write(sc, RT2573_RF1, rfprog[i].r1);
213802ac6454SAndrew Thompson 	rum_rf_write(sc, RT2573_RF2, rfprog[i].r2);
213902ac6454SAndrew Thompson 	rum_rf_write(sc, RT2573_RF3, rfprog[i].r3 | power << 7 | 1);
214002ac6454SAndrew Thompson 	rum_rf_write(sc, RT2573_RF4, rfprog[i].r4 | sc->rffreq << 10);
214102ac6454SAndrew Thompson 
214202ac6454SAndrew Thompson 	rum_rf_write(sc, RT2573_RF1, rfprog[i].r1);
214302ac6454SAndrew Thompson 	rum_rf_write(sc, RT2573_RF2, rfprog[i].r2);
214402ac6454SAndrew Thompson 	rum_rf_write(sc, RT2573_RF3, rfprog[i].r3 | power << 7);
214502ac6454SAndrew Thompson 	rum_rf_write(sc, RT2573_RF4, rfprog[i].r4 | sc->rffreq << 10);
214602ac6454SAndrew Thompson 
214702ac6454SAndrew Thompson 	rum_pause(sc, hz / 100);
214802ac6454SAndrew Thompson 
214902ac6454SAndrew Thompson 	/* enable smart mode for MIMO-capable RFs */
215002ac6454SAndrew Thompson 	bbp3 = rum_bbp_read(sc, 3);
215102ac6454SAndrew Thompson 
215202ac6454SAndrew Thompson 	bbp3 &= ~RT2573_SMART_MODE;
215302ac6454SAndrew Thompson 	if (sc->rf_rev == RT2573_RF_5225 || sc->rf_rev == RT2573_RF_2527)
215402ac6454SAndrew Thompson 		bbp3 |= RT2573_SMART_MODE;
215502ac6454SAndrew Thompson 
215602ac6454SAndrew Thompson 	rum_bbp_write(sc, 3, bbp3);
215702ac6454SAndrew Thompson 
215802ac6454SAndrew Thompson 	if (bbp94 != RT2573_BBPR94_DEFAULT)
215902ac6454SAndrew Thompson 		rum_bbp_write(sc, 94, bbp94);
216077ddf3d3SAndrew Thompson 
216177ddf3d3SAndrew Thompson 	/* give the chip some extra time to do the switchover */
216277ddf3d3SAndrew Thompson 	rum_pause(sc, hz / 100);
216302ac6454SAndrew Thompson }
216402ac6454SAndrew Thompson 
2165342ced03SAdrian Chadd static void
rum_set_maxretry(struct rum_softc * sc,struct ieee80211vap * vap)2166342ced03SAdrian Chadd rum_set_maxretry(struct rum_softc *sc, struct ieee80211vap *vap)
2167342ced03SAdrian Chadd {
2168342ced03SAdrian Chadd 	struct ieee80211_node *ni = vap->iv_bss;
2169f6313575SAndriy Voskoboinyk 	const struct ieee80211_txparam *tp = ni->ni_txparms;
2170342ced03SAdrian Chadd 	struct rum_vap *rvp = RUM_VAP(vap);
2171342ced03SAdrian Chadd 
2172f6313575SAndriy Voskoboinyk 	rvp->maxretry = MIN(tp->maxretry, 0xf);
2173342ced03SAdrian Chadd 
2174342ced03SAdrian Chadd 	rum_modbits(sc, RT2573_TXRX_CSR4, RT2573_SHORT_RETRY(rvp->maxretry) |
2175342ced03SAdrian Chadd 	    RT2573_LONG_RETRY(rvp->maxretry),
2176342ced03SAdrian Chadd 	    RT2573_SHORT_RETRY_MASK | RT2573_LONG_RETRY_MASK);
2177342ced03SAdrian Chadd }
2178342ced03SAdrian Chadd 
217902ac6454SAndrew Thompson /*
218002ac6454SAndrew Thompson  * Enable TSF synchronization and tell h/w to start sending beacons for IBSS
218102ac6454SAndrew Thompson  * and HostAP operating modes.
218202ac6454SAndrew Thompson  */
2183aa81f853SAdrian Chadd static int
rum_enable_tsf_sync(struct rum_softc * sc)218402ac6454SAndrew Thompson rum_enable_tsf_sync(struct rum_softc *sc)
218502ac6454SAndrew Thompson {
21867a79cebfSGleb Smirnoff 	struct ieee80211com *ic = &sc->sc_ic;
218702ac6454SAndrew Thompson 	struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps);
218802ac6454SAndrew Thompson 	uint32_t tmp;
2189349156a9SAndriy Voskoboinyk 	uint16_t bintval;
219002ac6454SAndrew Thompson 
219102ac6454SAndrew Thompson 	if (vap->iv_opmode != IEEE80211_M_STA) {
219202ac6454SAndrew Thompson 		/*
219302ac6454SAndrew Thompson 		 * Change default 16ms TBTT adjustment to 8ms.
219402ac6454SAndrew Thompson 		 * Must be done before enabling beacon generation.
219502ac6454SAndrew Thompson 		 */
2196aa81f853SAdrian Chadd 		if (rum_write(sc, RT2573_TXRX_CSR10, 1 << 12 | 8) != 0)
2197aa81f853SAdrian Chadd 			return EIO;
219802ac6454SAndrew Thompson 	}
219902ac6454SAndrew Thompson 
220002ac6454SAndrew Thompson 	tmp = rum_read(sc, RT2573_TXRX_CSR9) & 0xff000000;
220102ac6454SAndrew Thompson 
220202ac6454SAndrew Thompson 	/* set beacon interval (in 1/16ms unit) */
2203349156a9SAndriy Voskoboinyk 	bintval = vap->iv_bss->ni_intval;
2204349156a9SAndriy Voskoboinyk 	tmp |= bintval * 16;
2205d847071cSAdrian Chadd 	tmp |= RT2573_TSF_TIMER_EN | RT2573_TBTT_TIMER_EN;
220602ac6454SAndrew Thompson 
2207d847071cSAdrian Chadd 	switch (vap->iv_opmode) {
2208d847071cSAdrian Chadd 	case IEEE80211_M_STA:
2209d847071cSAdrian Chadd 		/*
2210d847071cSAdrian Chadd 		 * Local TSF is always updated with remote TSF on beacon
2211d847071cSAdrian Chadd 		 * reception.
2212d847071cSAdrian Chadd 		 */
2213d847071cSAdrian Chadd 		tmp |= RT2573_TSF_SYNC_MODE(RT2573_TSF_SYNC_MODE_STA);
2214d847071cSAdrian Chadd 		break;
2215d847071cSAdrian Chadd 	case IEEE80211_M_IBSS:
2216d847071cSAdrian Chadd 		/*
2217d847071cSAdrian Chadd 		 * Local TSF is updated with remote TSF on beacon reception
2218d847071cSAdrian Chadd 		 * only if the remote TSF is greater than local TSF.
2219d847071cSAdrian Chadd 		 */
2220d847071cSAdrian Chadd 		tmp |= RT2573_TSF_SYNC_MODE(RT2573_TSF_SYNC_MODE_IBSS);
2221d847071cSAdrian Chadd 		tmp |= RT2573_BCN_TX_EN;
2222d847071cSAdrian Chadd 		break;
2223d847071cSAdrian Chadd 	case IEEE80211_M_HOSTAP:
2224d847071cSAdrian Chadd 		/* SYNC with nobody */
2225d847071cSAdrian Chadd 		tmp |= RT2573_TSF_SYNC_MODE(RT2573_TSF_SYNC_MODE_HOSTAP);
2226d847071cSAdrian Chadd 		tmp |= RT2573_BCN_TX_EN;
2227d847071cSAdrian Chadd 		break;
2228d847071cSAdrian Chadd 	default:
2229d847071cSAdrian Chadd 		device_printf(sc->sc_dev,
2230d847071cSAdrian Chadd 		    "Enabling TSF failed. undefined opmode %d\n",
2231d847071cSAdrian Chadd 		    vap->iv_opmode);
2232aa81f853SAdrian Chadd 		return EINVAL;
2233d847071cSAdrian Chadd 	}
223402ac6454SAndrew Thompson 
2235aa81f853SAdrian Chadd 	if (rum_write(sc, RT2573_TXRX_CSR9, tmp) != 0)
2236aa81f853SAdrian Chadd 		return EIO;
2237aa81f853SAdrian Chadd 
2238349156a9SAndriy Voskoboinyk 	/* refresh current sleep time */
2239349156a9SAndriy Voskoboinyk 	return (rum_set_sleep_time(sc, bintval));
224002ac6454SAndrew Thompson }
224102ac6454SAndrew Thompson 
224202ac6454SAndrew Thompson static void
rum_enable_tsf(struct rum_softc * sc)22435463c4a4SSam Leffler rum_enable_tsf(struct rum_softc *sc)
22445463c4a4SSam Leffler {
2245d847071cSAdrian Chadd 	rum_modbits(sc, RT2573_TXRX_CSR9, RT2573_TSF_TIMER_EN |
2246d847071cSAdrian Chadd 	    RT2573_TSF_SYNC_MODE(RT2573_TSF_SYNC_MODE_DIS), 0x00ffffff);
22475463c4a4SSam Leffler }
22485463c4a4SSam Leffler 
22495463c4a4SSam Leffler static void
rum_abort_tsf_sync(struct rum_softc * sc)22506d804321SAdrian Chadd rum_abort_tsf_sync(struct rum_softc *sc)
22516d804321SAdrian Chadd {
2252a05022b2SAdrian Chadd 	rum_clrbits(sc, RT2573_TXRX_CSR9, 0x00ffffff);
22536d804321SAdrian Chadd }
22546d804321SAdrian Chadd 
22556d804321SAdrian Chadd static void
rum_get_tsf(struct rum_softc * sc,uint64_t * buf)2256a6ccd477SAdrian Chadd rum_get_tsf(struct rum_softc *sc, uint64_t *buf)
2257a6ccd477SAdrian Chadd {
2258a6ccd477SAdrian Chadd 	rum_read_multi(sc, RT2573_TXRX_CSR12, buf, sizeof (*buf));
2259a6ccd477SAdrian Chadd }
2260a6ccd477SAdrian Chadd 
2261a6ccd477SAdrian Chadd static void
rum_update_slot_cb(struct rum_softc * sc,union sec_param * data,uint8_t rvp_id)2262ed5711a1SAdrian Chadd rum_update_slot_cb(struct rum_softc *sc, union sec_param *data, uint8_t rvp_id)
226302ac6454SAndrew Thompson {
22647a79cebfSGleb Smirnoff 	struct ieee80211com *ic = &sc->sc_ic;
226502ac6454SAndrew Thompson 	uint8_t slottime;
226602ac6454SAndrew Thompson 
2267bdfff33fSAndriy Voskoboinyk 	slottime = IEEE80211_GET_SLOTTIME(ic);
226802ac6454SAndrew Thompson 
2269a05022b2SAdrian Chadd 	rum_modbits(sc, RT2573_MAC_CSR9, slottime, 0xff);
227002ac6454SAndrew Thompson 
227102ac6454SAndrew Thompson 	DPRINTF("setting slot time to %uus\n", slottime);
227202ac6454SAndrew Thompson }
227302ac6454SAndrew Thompson 
227402ac6454SAndrew Thompson static void
rum_update_slot(struct ieee80211com * ic)2275a19dbd8dSAdrian Chadd rum_update_slot(struct ieee80211com *ic)
2276a19dbd8dSAdrian Chadd {
2277ed5711a1SAdrian Chadd 	rum_cmd_sleepable(ic->ic_softc, NULL, 0, 0, rum_update_slot_cb);
2278a19dbd8dSAdrian Chadd }
2279a19dbd8dSAdrian Chadd 
2280a14954c5SAndriy Voskoboinyk static int
rum_wme_update(struct ieee80211com * ic)2281a14954c5SAndriy Voskoboinyk rum_wme_update(struct ieee80211com *ic)
22821354b52cSAdrian Chadd {
22839fbe631aSAdrian Chadd 	struct chanAccParams chp;
22849fbe631aSAdrian Chadd 	const struct wmeParams *chanp;
2285a14954c5SAndriy Voskoboinyk 	struct rum_softc *sc = ic->ic_softc;
22861354b52cSAdrian Chadd 	int error = 0;
22871354b52cSAdrian Chadd 
22889fbe631aSAdrian Chadd 	ieee80211_wme_ic_getparams(ic, &chp);
22899fbe631aSAdrian Chadd 	chanp = chp.cap_wmeParams;
22909fbe631aSAdrian Chadd 
2291a14954c5SAndriy Voskoboinyk 	RUM_LOCK(sc);
22921354b52cSAdrian Chadd 	error = rum_write(sc, RT2573_AIFSN_CSR,
22937682e597SAdrian Chadd 	    chanp[WME_AC_VO].wmep_aifsn  << 12 |
22947682e597SAdrian Chadd 	    chanp[WME_AC_VI].wmep_aifsn  <<  8 |
22957682e597SAdrian Chadd 	    chanp[WME_AC_BK].wmep_aifsn  <<  4 |
22967682e597SAdrian Chadd 	    chanp[WME_AC_BE].wmep_aifsn);
22971354b52cSAdrian Chadd 	if (error)
22981354b52cSAdrian Chadd 		goto print_err;
22991354b52cSAdrian Chadd 	error = rum_write(sc, RT2573_CWMIN_CSR,
23007682e597SAdrian Chadd 	    chanp[WME_AC_VO].wmep_logcwmin << 12 |
23017682e597SAdrian Chadd 	    chanp[WME_AC_VI].wmep_logcwmin <<  8 |
23027682e597SAdrian Chadd 	    chanp[WME_AC_BK].wmep_logcwmin <<  4 |
23037682e597SAdrian Chadd 	    chanp[WME_AC_BE].wmep_logcwmin);
23041354b52cSAdrian Chadd 	if (error)
23051354b52cSAdrian Chadd 		goto print_err;
23061354b52cSAdrian Chadd 	error = rum_write(sc, RT2573_CWMAX_CSR,
23077682e597SAdrian Chadd 	    chanp[WME_AC_VO].wmep_logcwmax << 12 |
23087682e597SAdrian Chadd 	    chanp[WME_AC_VI].wmep_logcwmax <<  8 |
23097682e597SAdrian Chadd 	    chanp[WME_AC_BK].wmep_logcwmax <<  4 |
23107682e597SAdrian Chadd 	    chanp[WME_AC_BE].wmep_logcwmax);
23111354b52cSAdrian Chadd 	if (error)
23121354b52cSAdrian Chadd 		goto print_err;
23131354b52cSAdrian Chadd 	error = rum_write(sc, RT2573_TXOP01_CSR,
23147682e597SAdrian Chadd 	    chanp[WME_AC_BK].wmep_txopLimit << 16 |
23157682e597SAdrian Chadd 	    chanp[WME_AC_BE].wmep_txopLimit);
23161354b52cSAdrian Chadd 	if (error)
23171354b52cSAdrian Chadd 		goto print_err;
23181354b52cSAdrian Chadd 	error = rum_write(sc, RT2573_TXOP23_CSR,
23197682e597SAdrian Chadd 	    chanp[WME_AC_VO].wmep_txopLimit << 16 |
23207682e597SAdrian Chadd 	    chanp[WME_AC_VI].wmep_txopLimit);
23211354b52cSAdrian Chadd 	if (error)
23221354b52cSAdrian Chadd 		goto print_err;
23231354b52cSAdrian Chadd 
23241354b52cSAdrian Chadd 	memcpy(sc->wme_params, chanp, sizeof(*chanp) * WME_NUM_AC);
23251354b52cSAdrian Chadd 
23261354b52cSAdrian Chadd print_err:
2327a14954c5SAndriy Voskoboinyk 	RUM_UNLOCK(sc);
2328a14954c5SAndriy Voskoboinyk 	if (error != 0) {
23291354b52cSAdrian Chadd 		device_printf(sc->sc_dev, "%s: WME update failed, error %d\n",
23301354b52cSAdrian Chadd 		    __func__, error);
23311354b52cSAdrian Chadd 	}
23321354b52cSAdrian Chadd 
2333a14954c5SAndriy Voskoboinyk 	return (error);
23341354b52cSAdrian Chadd }
23351354b52cSAdrian Chadd 
23361354b52cSAdrian Chadd static void
rum_set_bssid(struct rum_softc * sc,const uint8_t * bssid)233702ac6454SAndrew Thompson rum_set_bssid(struct rum_softc *sc, const uint8_t *bssid)
233802ac6454SAndrew Thompson {
233902ac6454SAndrew Thompson 
234042769826SAdrian Chadd 	rum_write(sc, RT2573_MAC_CSR4,
234142769826SAdrian Chadd 	    bssid[0] | bssid[1] << 8 | bssid[2] << 16 | bssid[3] << 24);
234242769826SAdrian Chadd 	rum_write(sc, RT2573_MAC_CSR5,
234342769826SAdrian Chadd 	    bssid[4] | bssid[5] << 8 | RT2573_NUM_BSSID_MSK(1));
234402ac6454SAndrew Thompson }
234502ac6454SAndrew Thompson 
234602ac6454SAndrew Thompson static void
rum_set_macaddr(struct rum_softc * sc,const uint8_t * addr)234702ac6454SAndrew Thompson rum_set_macaddr(struct rum_softc *sc, const uint8_t *addr)
234802ac6454SAndrew Thompson {
234902ac6454SAndrew Thompson 
235042769826SAdrian Chadd 	rum_write(sc, RT2573_MAC_CSR2,
235142769826SAdrian Chadd 	    addr[0] | addr[1] << 8 | addr[2] << 16 | addr[3] << 24);
235242769826SAdrian Chadd 	rum_write(sc, RT2573_MAC_CSR3,
235342769826SAdrian Chadd 	    addr[4] | addr[5] << 8 | 0xff << 16);
235402ac6454SAndrew Thompson }
235502ac6454SAndrew Thompson 
235602ac6454SAndrew Thompson static void
rum_setpromisc(struct rum_softc * sc)23575efea30fSAndrew Thompson rum_setpromisc(struct rum_softc *sc)
235802ac6454SAndrew Thompson {
2359a05022b2SAdrian Chadd 	struct ieee80211com *ic = &sc->sc_ic;
236002ac6454SAndrew Thompson 
2361a05022b2SAdrian Chadd 	if (ic->ic_promisc == 0)
2362a05022b2SAdrian Chadd 		rum_setbits(sc, RT2573_TXRX_CSR0, RT2573_DROP_NOT_TO_ME);
2363a05022b2SAdrian Chadd 	else
2364a05022b2SAdrian Chadd 		rum_clrbits(sc, RT2573_TXRX_CSR0, RT2573_DROP_NOT_TO_ME);
236502ac6454SAndrew Thompson 
2366a05022b2SAdrian Chadd 	DPRINTF("%s promiscuous mode\n", ic->ic_promisc > 0 ?
236702ac6454SAndrew Thompson 	    "entering" : "leaving");
236802ac6454SAndrew Thompson }
236902ac6454SAndrew Thompson 
237077ddf3d3SAndrew Thompson static void
rum_update_promisc(struct ieee80211com * ic)2371272f6adeSGleb Smirnoff rum_update_promisc(struct ieee80211com *ic)
237277ddf3d3SAndrew Thompson {
2373272f6adeSGleb Smirnoff 	struct rum_softc *sc = ic->ic_softc;
237477ddf3d3SAndrew Thompson 
2375ba2c1fbcSAdrian Chadd 	RUM_LOCK(sc);
237642769826SAdrian Chadd 	if (sc->sc_running)
23775efea30fSAndrew Thompson 		rum_setpromisc(sc);
237877ddf3d3SAndrew Thompson 	RUM_UNLOCK(sc);
237977ddf3d3SAndrew Thompson }
238077ddf3d3SAndrew Thompson 
23816dd8e071SEd Maste static void
rum_update_mcast(struct ieee80211com * ic)2382272f6adeSGleb Smirnoff rum_update_mcast(struct ieee80211com *ic)
23836dd8e071SEd Maste {
2384e7b7db3dSAdrian Chadd 	/* Ignore. */
23856dd8e071SEd Maste }
23866dd8e071SEd Maste 
238702ac6454SAndrew Thompson static const char *
rum_get_rf(int rev)238802ac6454SAndrew Thompson rum_get_rf(int rev)
238902ac6454SAndrew Thompson {
239002ac6454SAndrew Thompson 	switch (rev) {
239102ac6454SAndrew Thompson 	case RT2573_RF_2527:	return "RT2527 (MIMO XR)";
239202ac6454SAndrew Thompson 	case RT2573_RF_2528:	return "RT2528";
239302ac6454SAndrew Thompson 	case RT2573_RF_5225:	return "RT5225 (MIMO XR)";
239402ac6454SAndrew Thompson 	case RT2573_RF_5226:	return "RT5226";
239502ac6454SAndrew Thompson 	default:		return "unknown";
239602ac6454SAndrew Thompson 	}
239702ac6454SAndrew Thompson }
239802ac6454SAndrew Thompson 
239902ac6454SAndrew Thompson static void
rum_read_eeprom(struct rum_softc * sc)240002ac6454SAndrew Thompson rum_read_eeprom(struct rum_softc *sc)
240102ac6454SAndrew Thompson {
240202ac6454SAndrew Thompson 	uint16_t val;
240302ac6454SAndrew Thompson #ifdef RUM_DEBUG
240402ac6454SAndrew Thompson 	int i;
240502ac6454SAndrew Thompson #endif
240602ac6454SAndrew Thompson 
240702ac6454SAndrew Thompson 	/* read MAC address */
24087a79cebfSGleb Smirnoff 	rum_eeprom_read(sc, RT2573_EEPROM_ADDRESS, sc->sc_ic.ic_macaddr, 6);
240902ac6454SAndrew Thompson 
241002ac6454SAndrew Thompson 	rum_eeprom_read(sc, RT2573_EEPROM_ANTENNA, &val, 2);
241102ac6454SAndrew Thompson 	val = le16toh(val);
241202ac6454SAndrew Thompson 	sc->rf_rev =   (val >> 11) & 0x1f;
241302ac6454SAndrew Thompson 	sc->hw_radio = (val >> 10) & 0x1;
241402ac6454SAndrew Thompson 	sc->rx_ant =   (val >> 4)  & 0x3;
241502ac6454SAndrew Thompson 	sc->tx_ant =   (val >> 2)  & 0x3;
241602ac6454SAndrew Thompson 	sc->nb_ant =   val & 0x3;
241702ac6454SAndrew Thompson 
241802ac6454SAndrew Thompson 	DPRINTF("RF revision=%d\n", sc->rf_rev);
241902ac6454SAndrew Thompson 
242002ac6454SAndrew Thompson 	rum_eeprom_read(sc, RT2573_EEPROM_CONFIG2, &val, 2);
242102ac6454SAndrew Thompson 	val = le16toh(val);
242202ac6454SAndrew Thompson 	sc->ext_5ghz_lna = (val >> 6) & 0x1;
242302ac6454SAndrew Thompson 	sc->ext_2ghz_lna = (val >> 4) & 0x1;
242402ac6454SAndrew Thompson 
242502ac6454SAndrew Thompson 	DPRINTF("External 2GHz LNA=%d\nExternal 5GHz LNA=%d\n",
242602ac6454SAndrew Thompson 	    sc->ext_2ghz_lna, sc->ext_5ghz_lna);
242702ac6454SAndrew Thompson 
242802ac6454SAndrew Thompson 	rum_eeprom_read(sc, RT2573_EEPROM_RSSI_2GHZ_OFFSET, &val, 2);
242902ac6454SAndrew Thompson 	val = le16toh(val);
243002ac6454SAndrew Thompson 	if ((val & 0xff) != 0xff)
243102ac6454SAndrew Thompson 		sc->rssi_2ghz_corr = (int8_t)(val & 0xff);	/* signed */
243202ac6454SAndrew Thompson 
243302ac6454SAndrew Thompson 	/* Only [-10, 10] is valid */
243402ac6454SAndrew Thompson 	if (sc->rssi_2ghz_corr < -10 || sc->rssi_2ghz_corr > 10)
243502ac6454SAndrew Thompson 		sc->rssi_2ghz_corr = 0;
243602ac6454SAndrew Thompson 
243702ac6454SAndrew Thompson 	rum_eeprom_read(sc, RT2573_EEPROM_RSSI_5GHZ_OFFSET, &val, 2);
243802ac6454SAndrew Thompson 	val = le16toh(val);
243902ac6454SAndrew Thompson 	if ((val & 0xff) != 0xff)
244002ac6454SAndrew Thompson 		sc->rssi_5ghz_corr = (int8_t)(val & 0xff);	/* signed */
244102ac6454SAndrew Thompson 
244202ac6454SAndrew Thompson 	/* Only [-10, 10] is valid */
244302ac6454SAndrew Thompson 	if (sc->rssi_5ghz_corr < -10 || sc->rssi_5ghz_corr > 10)
244402ac6454SAndrew Thompson 		sc->rssi_5ghz_corr = 0;
244502ac6454SAndrew Thompson 
244602ac6454SAndrew Thompson 	if (sc->ext_2ghz_lna)
244702ac6454SAndrew Thompson 		sc->rssi_2ghz_corr -= 14;
244802ac6454SAndrew Thompson 	if (sc->ext_5ghz_lna)
244902ac6454SAndrew Thompson 		sc->rssi_5ghz_corr -= 14;
245002ac6454SAndrew Thompson 
245102ac6454SAndrew Thompson 	DPRINTF("RSSI 2GHz corr=%d\nRSSI 5GHz corr=%d\n",
245202ac6454SAndrew Thompson 	    sc->rssi_2ghz_corr, sc->rssi_5ghz_corr);
245302ac6454SAndrew Thompson 
245402ac6454SAndrew Thompson 	rum_eeprom_read(sc, RT2573_EEPROM_FREQ_OFFSET, &val, 2);
245502ac6454SAndrew Thompson 	val = le16toh(val);
245602ac6454SAndrew Thompson 	if ((val & 0xff) != 0xff)
245702ac6454SAndrew Thompson 		sc->rffreq = val & 0xff;
245802ac6454SAndrew Thompson 
245902ac6454SAndrew Thompson 	DPRINTF("RF freq=%d\n", sc->rffreq);
246002ac6454SAndrew Thompson 
246102ac6454SAndrew Thompson 	/* read Tx power for all a/b/g channels */
246202ac6454SAndrew Thompson 	rum_eeprom_read(sc, RT2573_EEPROM_TXPOWER, sc->txpow, 14);
246302ac6454SAndrew Thompson 	/* XXX default Tx power for 802.11a channels */
246402ac6454SAndrew Thompson 	memset(sc->txpow + 14, 24, sizeof (sc->txpow) - 14);
246502ac6454SAndrew Thompson #ifdef RUM_DEBUG
246602ac6454SAndrew Thompson 	for (i = 0; i < 14; i++)
246702ac6454SAndrew Thompson 		DPRINTF("Channel=%d Tx power=%d\n", i + 1,  sc->txpow[i]);
246802ac6454SAndrew Thompson #endif
246902ac6454SAndrew Thompson 
247002ac6454SAndrew Thompson 	/* read default values for BBP registers */
247102ac6454SAndrew Thompson 	rum_eeprom_read(sc, RT2573_EEPROM_BBP_BASE, sc->bbp_prom, 2 * 16);
247202ac6454SAndrew Thompson #ifdef RUM_DEBUG
247302ac6454SAndrew Thompson 	for (i = 0; i < 14; i++) {
247402ac6454SAndrew Thompson 		if (sc->bbp_prom[i].reg == 0 || sc->bbp_prom[i].reg == 0xff)
247502ac6454SAndrew Thompson 			continue;
247602ac6454SAndrew Thompson 		DPRINTF("BBP R%d=%02x\n", sc->bbp_prom[i].reg,
247702ac6454SAndrew Thompson 		    sc->bbp_prom[i].val);
247802ac6454SAndrew Thompson 	}
247902ac6454SAndrew Thompson #endif
248002ac6454SAndrew Thompson }
248102ac6454SAndrew Thompson 
248202ac6454SAndrew Thompson static int
rum_bbp_wakeup(struct rum_softc * sc)24836095f7caSAdrian Chadd rum_bbp_wakeup(struct rum_softc *sc)
24846095f7caSAdrian Chadd {
248562d42655SHans Petter Selasky 	unsigned ntries;
24866095f7caSAdrian Chadd 
24876095f7caSAdrian Chadd 	for (ntries = 0; ntries < 100; ntries++) {
24886095f7caSAdrian Chadd 		if (rum_read(sc, RT2573_MAC_CSR12) & 8)
24896095f7caSAdrian Chadd 			break;
24906095f7caSAdrian Chadd 		rum_write(sc, RT2573_MAC_CSR12, 4);	/* force wakeup */
24916095f7caSAdrian Chadd 		if (rum_pause(sc, hz / 100))
24926095f7caSAdrian Chadd 			break;
24936095f7caSAdrian Chadd 	}
24946095f7caSAdrian Chadd 	if (ntries == 100) {
24956095f7caSAdrian Chadd 		device_printf(sc->sc_dev,
24966095f7caSAdrian Chadd 		    "timeout waiting for BBP/RF to wakeup\n");
24976095f7caSAdrian Chadd 		return (ETIMEDOUT);
24986095f7caSAdrian Chadd 	}
24996095f7caSAdrian Chadd 
25006095f7caSAdrian Chadd 	return (0);
25016095f7caSAdrian Chadd }
25026095f7caSAdrian Chadd 
25036095f7caSAdrian Chadd static int
rum_bbp_init(struct rum_softc * sc)250402ac6454SAndrew Thompson rum_bbp_init(struct rum_softc *sc)
250502ac6454SAndrew Thompson {
250602ac6454SAndrew Thompson 	int i, ntries;
250702ac6454SAndrew Thompson 
250802ac6454SAndrew Thompson 	/* wait for BBP to be ready */
250902ac6454SAndrew Thompson 	for (ntries = 0; ntries < 100; ntries++) {
251002ac6454SAndrew Thompson 		const uint8_t val = rum_bbp_read(sc, 0);
251102ac6454SAndrew Thompson 		if (val != 0 && val != 0xff)
251202ac6454SAndrew Thompson 			break;
251302ac6454SAndrew Thompson 		if (rum_pause(sc, hz / 100))
251402ac6454SAndrew Thompson 			break;
251502ac6454SAndrew Thompson 	}
251602ac6454SAndrew Thompson 	if (ntries == 100) {
251702ac6454SAndrew Thompson 		device_printf(sc->sc_dev, "timeout waiting for BBP\n");
251802ac6454SAndrew Thompson 		return EIO;
251902ac6454SAndrew Thompson 	}
252002ac6454SAndrew Thompson 
252102ac6454SAndrew Thompson 	/* initialize BBP registers to default values */
2522e7b7db3dSAdrian Chadd 	for (i = 0; i < nitems(rum_def_bbp); i++)
252302ac6454SAndrew Thompson 		rum_bbp_write(sc, rum_def_bbp[i].reg, rum_def_bbp[i].val);
252402ac6454SAndrew Thompson 
252502ac6454SAndrew Thompson 	/* write vendor-specific BBP values (from EEPROM) */
252602ac6454SAndrew Thompson 	for (i = 0; i < 16; i++) {
252702ac6454SAndrew Thompson 		if (sc->bbp_prom[i].reg == 0 || sc->bbp_prom[i].reg == 0xff)
252802ac6454SAndrew Thompson 			continue;
252902ac6454SAndrew Thompson 		rum_bbp_write(sc, sc->bbp_prom[i].reg, sc->bbp_prom[i].val);
253002ac6454SAndrew Thompson 	}
253102ac6454SAndrew Thompson 
253202ac6454SAndrew Thompson 	return 0;
253302ac6454SAndrew Thompson }
253402ac6454SAndrew Thompson 
25352cb9ef8dSAdrian Chadd static void
rum_clr_shkey_regs(struct rum_softc * sc)25362cb9ef8dSAdrian Chadd rum_clr_shkey_regs(struct rum_softc *sc)
25372cb9ef8dSAdrian Chadd {
25382cb9ef8dSAdrian Chadd 	rum_write(sc, RT2573_SEC_CSR0, 0);
25392cb9ef8dSAdrian Chadd 	rum_write(sc, RT2573_SEC_CSR1, 0);
25402cb9ef8dSAdrian Chadd 	rum_write(sc, RT2573_SEC_CSR5, 0);
25412cb9ef8dSAdrian Chadd }
25422cb9ef8dSAdrian Chadd 
25430698c0b3SAdrian Chadd static int
rum_init(struct rum_softc * sc)25447a79cebfSGleb Smirnoff rum_init(struct rum_softc *sc)
254502ac6454SAndrew Thompson {
25467a79cebfSGleb Smirnoff 	struct ieee80211com *ic = &sc->sc_ic;
25477a79cebfSGleb Smirnoff 	struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps);
254802ac6454SAndrew Thompson 	uint32_t tmp;
25496095f7caSAdrian Chadd 	int i, ret;
255002ac6454SAndrew Thompson 
25510698c0b3SAdrian Chadd 	RUM_LOCK(sc);
25520698c0b3SAdrian Chadd 	if (sc->sc_running) {
25530698c0b3SAdrian Chadd 		ret = 0;
25540698c0b3SAdrian Chadd 		goto end;
25550698c0b3SAdrian Chadd 	}
255602ac6454SAndrew Thompson 
255702ac6454SAndrew Thompson 	/* initialize MAC registers to default values */
2558e7b7db3dSAdrian Chadd 	for (i = 0; i < nitems(rum_def_mac); i++)
255902ac6454SAndrew Thompson 		rum_write(sc, rum_def_mac[i].reg, rum_def_mac[i].val);
256002ac6454SAndrew Thompson 
25611354b52cSAdrian Chadd 	/* reset some WME parameters to default values */
25621354b52cSAdrian Chadd 	sc->wme_params[0].wmep_aifsn = 2;
25631354b52cSAdrian Chadd 	sc->wme_params[0].wmep_logcwmin = 4;
25641354b52cSAdrian Chadd 	sc->wme_params[0].wmep_logcwmax = 10;
25651354b52cSAdrian Chadd 
256602ac6454SAndrew Thompson 	/* set host ready */
2567e7b7db3dSAdrian Chadd 	rum_write(sc, RT2573_MAC_CSR1, RT2573_RESET_ASIC | RT2573_RESET_BBP);
256802ac6454SAndrew Thompson 	rum_write(sc, RT2573_MAC_CSR1, 0);
256902ac6454SAndrew Thompson 
257002ac6454SAndrew Thompson 	/* wait for BBP/RF to wakeup */
25716095f7caSAdrian Chadd 	if ((ret = rum_bbp_wakeup(sc)) != 0)
25720698c0b3SAdrian Chadd 		goto end;
257302ac6454SAndrew Thompson 
25740698c0b3SAdrian Chadd 	if ((ret = rum_bbp_init(sc)) != 0)
25750698c0b3SAdrian Chadd 		goto end;
257602ac6454SAndrew Thompson 
257702ac6454SAndrew Thompson 	/* select default channel */
257802ac6454SAndrew Thompson 	rum_select_band(sc, ic->ic_curchan);
257902ac6454SAndrew Thompson 	rum_select_antenna(sc);
258002ac6454SAndrew Thompson 	rum_set_chan(sc, ic->ic_curchan);
258102ac6454SAndrew Thompson 
258202ac6454SAndrew Thompson 	/* clear STA registers */
258302ac6454SAndrew Thompson 	rum_read_multi(sc, RT2573_STA_CSR0, sc->sta, sizeof sc->sta);
258402ac6454SAndrew Thompson 
25852cb9ef8dSAdrian Chadd 	/* clear security registers (if required) */
25862cb9ef8dSAdrian Chadd 	if (sc->sc_clr_shkeys == 0) {
25872cb9ef8dSAdrian Chadd 		rum_clr_shkey_regs(sc);
25882cb9ef8dSAdrian Chadd 		sc->sc_clr_shkeys = 1;
25892cb9ef8dSAdrian Chadd 	}
25902cb9ef8dSAdrian Chadd 
25917a79cebfSGleb Smirnoff 	rum_set_macaddr(sc, vap ? vap->iv_myaddr : ic->ic_macaddr);
259202ac6454SAndrew Thompson 
259302ac6454SAndrew Thompson 	/* initialize ASIC */
2594e7b7db3dSAdrian Chadd 	rum_write(sc, RT2573_MAC_CSR1, RT2573_HOST_READY);
259502ac6454SAndrew Thompson 
259602ac6454SAndrew Thompson 	/*
259702ac6454SAndrew Thompson 	 * Allocate Tx and Rx xfer queues.
259802ac6454SAndrew Thompson 	 */
259902ac6454SAndrew Thompson 	rum_setup_tx_list(sc);
260002ac6454SAndrew Thompson 
260102ac6454SAndrew Thompson 	/* update Rx filter */
260202ac6454SAndrew Thompson 	tmp = rum_read(sc, RT2573_TXRX_CSR0) & 0xffff;
260302ac6454SAndrew Thompson 
260402ac6454SAndrew Thompson 	tmp |= RT2573_DROP_PHY_ERROR | RT2573_DROP_CRC_ERROR;
260502ac6454SAndrew Thompson 	if (ic->ic_opmode != IEEE80211_M_MONITOR) {
260602ac6454SAndrew Thompson 		tmp |= RT2573_DROP_CTL | RT2573_DROP_VER_ERROR |
260702ac6454SAndrew Thompson 		       RT2573_DROP_ACKCTS;
260802ac6454SAndrew Thompson 		if (ic->ic_opmode != IEEE80211_M_HOSTAP)
260902ac6454SAndrew Thompson 			tmp |= RT2573_DROP_TODS;
26107a79cebfSGleb Smirnoff 		if (ic->ic_promisc == 0)
261102ac6454SAndrew Thompson 			tmp |= RT2573_DROP_NOT_TO_ME;
261202ac6454SAndrew Thompson 	}
261302ac6454SAndrew Thompson 	rum_write(sc, RT2573_TXRX_CSR0, tmp);
261402ac6454SAndrew Thompson 
26157a79cebfSGleb Smirnoff 	sc->sc_running = 1;
2616ed6d949aSAndrew Thompson 	usbd_xfer_set_stall(sc->sc_xfer[RUM_BULK_WR]);
2617a593f6b8SAndrew Thompson 	usbd_transfer_start(sc->sc_xfer[RUM_BULK_RD]);
261802ac6454SAndrew Thompson 
26190698c0b3SAdrian Chadd end:	RUM_UNLOCK(sc);
26200698c0b3SAdrian Chadd 
26210698c0b3SAdrian Chadd 	if (ret != 0)
26220698c0b3SAdrian Chadd 		rum_stop(sc);
26230698c0b3SAdrian Chadd 
26240698c0b3SAdrian Chadd 	return ret;
262502ac6454SAndrew Thompson }
262602ac6454SAndrew Thompson 
262702ac6454SAndrew Thompson static void
rum_stop(struct rum_softc * sc)26285efea30fSAndrew Thompson rum_stop(struct rum_softc *sc)
262902ac6454SAndrew Thompson {
263002ac6454SAndrew Thompson 
26310698c0b3SAdrian Chadd 	RUM_LOCK(sc);
26320698c0b3SAdrian Chadd 	if (!sc->sc_running) {
26330698c0b3SAdrian Chadd 		RUM_UNLOCK(sc);
26340698c0b3SAdrian Chadd 		return;
26350698c0b3SAdrian Chadd 	}
26367a79cebfSGleb Smirnoff 	sc->sc_running = 0;
263702ac6454SAndrew Thompson 	RUM_UNLOCK(sc);
263802ac6454SAndrew Thompson 
263902ac6454SAndrew Thompson 	/*
264002ac6454SAndrew Thompson 	 * Drain the USB transfers, if not already drained:
264102ac6454SAndrew Thompson 	 */
2642a593f6b8SAndrew Thompson 	usbd_transfer_drain(sc->sc_xfer[RUM_BULK_WR]);
2643a593f6b8SAndrew Thompson 	usbd_transfer_drain(sc->sc_xfer[RUM_BULK_RD]);
264402ac6454SAndrew Thompson 
264502ac6454SAndrew Thompson 	RUM_LOCK(sc);
264602ac6454SAndrew Thompson 	rum_unsetup_tx_list(sc);
264702ac6454SAndrew Thompson 
264802ac6454SAndrew Thompson 	/* disable Rx */
2649a05022b2SAdrian Chadd 	rum_setbits(sc, RT2573_TXRX_CSR0, RT2573_DISABLE_RX);
265002ac6454SAndrew Thompson 
265102ac6454SAndrew Thompson 	/* reset ASIC */
2652e7b7db3dSAdrian Chadd 	rum_write(sc, RT2573_MAC_CSR1, RT2573_RESET_ASIC | RT2573_RESET_BBP);
265302ac6454SAndrew Thompson 	rum_write(sc, RT2573_MAC_CSR1, 0);
26540698c0b3SAdrian Chadd 	RUM_UNLOCK(sc);
265502ac6454SAndrew Thompson }
265602ac6454SAndrew Thompson 
265777ddf3d3SAndrew Thompson static void
rum_load_microcode(struct rum_softc * sc,const uint8_t * ucode,size_t size)265877ddf3d3SAndrew Thompson rum_load_microcode(struct rum_softc *sc, const uint8_t *ucode, size_t size)
265902ac6454SAndrew Thompson {
266002ac6454SAndrew Thompson 	uint16_t reg = RT2573_MCU_CODE_BASE;
2661e0a69b51SAndrew Thompson 	usb_error_t err;
266202ac6454SAndrew Thompson 
266302ac6454SAndrew Thompson 	/* copy firmware image into NIC */
266477ddf3d3SAndrew Thompson 	for (; size >= 4; reg += 4, ucode += 4, size -= 4) {
266577ddf3d3SAndrew Thompson 		err = rum_write(sc, reg, UGETDW(ucode));
266677ddf3d3SAndrew Thompson 		if (err) {
266777ddf3d3SAndrew Thompson 			/* firmware already loaded ? */
266877ddf3d3SAndrew Thompson 			device_printf(sc->sc_dev, "Firmware load "
266977ddf3d3SAndrew Thompson 			    "failure! (ignored)\n");
267077ddf3d3SAndrew Thompson 			break;
267177ddf3d3SAndrew Thompson 		}
267277ddf3d3SAndrew Thompson 	}
267302ac6454SAndrew Thompson 
2674fd7dae9cSAndriy Voskoboinyk 	err = rum_do_mcu_request(sc, RT2573_MCU_RUN);
2675fd7dae9cSAndriy Voskoboinyk 	if (err != USB_ERR_NORMAL_COMPLETION) {
267602ac6454SAndrew Thompson 		device_printf(sc->sc_dev, "could not run firmware: %s\n",
2677a593f6b8SAndrew Thompson 		    usbd_errstr(err));
267802ac6454SAndrew Thompson 	}
267977ddf3d3SAndrew Thompson 
268077ddf3d3SAndrew Thompson 	/* give the chip some time to boot */
268177ddf3d3SAndrew Thompson 	rum_pause(sc, hz / 8);
268202ac6454SAndrew Thompson }
268302ac6454SAndrew Thompson 
2684aa81f853SAdrian Chadd static int
rum_set_sleep_time(struct rum_softc * sc,uint16_t bintval)2685349156a9SAndriy Voskoboinyk rum_set_sleep_time(struct rum_softc *sc, uint16_t bintval)
2686349156a9SAndriy Voskoboinyk {
2687349156a9SAndriy Voskoboinyk 	struct ieee80211com *ic = &sc->sc_ic;
2688349156a9SAndriy Voskoboinyk 	usb_error_t uerror;
2689349156a9SAndriy Voskoboinyk 	int exp, delay;
2690349156a9SAndriy Voskoboinyk 
2691349156a9SAndriy Voskoboinyk 	RUM_LOCK_ASSERT(sc);
2692349156a9SAndriy Voskoboinyk 
2693349156a9SAndriy Voskoboinyk 	exp = ic->ic_lintval / bintval;
2694349156a9SAndriy Voskoboinyk 	delay = ic->ic_lintval % bintval;
2695349156a9SAndriy Voskoboinyk 
2696349156a9SAndriy Voskoboinyk 	if (exp > RT2573_TBCN_EXP_MAX)
2697349156a9SAndriy Voskoboinyk 		exp = RT2573_TBCN_EXP_MAX;
2698349156a9SAndriy Voskoboinyk 	if (delay > RT2573_TBCN_DELAY_MAX)
2699349156a9SAndriy Voskoboinyk 		delay = RT2573_TBCN_DELAY_MAX;
2700349156a9SAndriy Voskoboinyk 
2701349156a9SAndriy Voskoboinyk 	uerror = rum_modbits(sc, RT2573_MAC_CSR11,
2702349156a9SAndriy Voskoboinyk 	    RT2573_TBCN_EXP(exp) |
2703349156a9SAndriy Voskoboinyk 	    RT2573_TBCN_DELAY(delay),
2704349156a9SAndriy Voskoboinyk 	    RT2573_TBCN_EXP(RT2573_TBCN_EXP_MAX) |
2705349156a9SAndriy Voskoboinyk 	    RT2573_TBCN_DELAY(RT2573_TBCN_DELAY_MAX));
2706349156a9SAndriy Voskoboinyk 
2707349156a9SAndriy Voskoboinyk 	if (uerror != USB_ERR_NORMAL_COMPLETION)
2708349156a9SAndriy Voskoboinyk 		return (EIO);
2709349156a9SAndriy Voskoboinyk 
2710349156a9SAndriy Voskoboinyk 	sc->sc_sleep_time = IEEE80211_TU_TO_TICKS(exp * bintval + delay);
2711349156a9SAndriy Voskoboinyk 
2712349156a9SAndriy Voskoboinyk 	return (0);
2713349156a9SAndriy Voskoboinyk }
2714349156a9SAndriy Voskoboinyk 
2715349156a9SAndriy Voskoboinyk static int
rum_reset(struct ieee80211vap * vap,u_long cmd)2716349156a9SAndriy Voskoboinyk rum_reset(struct ieee80211vap *vap, u_long cmd)
2717349156a9SAndriy Voskoboinyk {
2718349156a9SAndriy Voskoboinyk 	struct ieee80211com *ic = vap->iv_ic;
2719349156a9SAndriy Voskoboinyk 	struct ieee80211_node *ni;
2720349156a9SAndriy Voskoboinyk 	struct rum_softc *sc = ic->ic_softc;
2721349156a9SAndriy Voskoboinyk 	int error;
2722349156a9SAndriy Voskoboinyk 
2723349156a9SAndriy Voskoboinyk 	switch (cmd) {
2724349156a9SAndriy Voskoboinyk 	case IEEE80211_IOC_POWERSAVE:
2725c57ee45bSAndriy Voskoboinyk 	case IEEE80211_IOC_PROTMODE:
2726c57ee45bSAndriy Voskoboinyk 	case IEEE80211_IOC_RTSTHRESHOLD:
2727349156a9SAndriy Voskoboinyk 		error = 0;
2728349156a9SAndriy Voskoboinyk 		break;
2729349156a9SAndriy Voskoboinyk 	case IEEE80211_IOC_POWERSAVESLEEP:
2730349156a9SAndriy Voskoboinyk 		ni = ieee80211_ref_node(vap->iv_bss);
2731349156a9SAndriy Voskoboinyk 
2732349156a9SAndriy Voskoboinyk 		RUM_LOCK(sc);
2733349156a9SAndriy Voskoboinyk 		error = rum_set_sleep_time(sc, ni->ni_intval);
2734349156a9SAndriy Voskoboinyk 		if (vap->iv_state == IEEE80211_S_SLEEP) {
2735349156a9SAndriy Voskoboinyk 			/* Use new values for wakeup timer. */
2736349156a9SAndriy Voskoboinyk 			rum_clrbits(sc, RT2573_MAC_CSR11, RT2573_AUTO_WAKEUP);
2737349156a9SAndriy Voskoboinyk 			rum_setbits(sc, RT2573_MAC_CSR11, RT2573_AUTO_WAKEUP);
2738349156a9SAndriy Voskoboinyk 		}
2739349156a9SAndriy Voskoboinyk 		/* XXX send reassoc */
2740349156a9SAndriy Voskoboinyk 		RUM_UNLOCK(sc);
2741349156a9SAndriy Voskoboinyk 
2742349156a9SAndriy Voskoboinyk 		ieee80211_free_node(ni);
2743349156a9SAndriy Voskoboinyk 		break;
2744349156a9SAndriy Voskoboinyk 	default:
2745349156a9SAndriy Voskoboinyk 		error = ENETRESET;
2746349156a9SAndriy Voskoboinyk 		break;
2747349156a9SAndriy Voskoboinyk 	}
2748349156a9SAndriy Voskoboinyk 
2749349156a9SAndriy Voskoboinyk 	return (error);
2750349156a9SAndriy Voskoboinyk }
2751349156a9SAndriy Voskoboinyk 
2752349156a9SAndriy Voskoboinyk static int
rum_set_beacon(struct rum_softc * sc,struct ieee80211vap * vap)2753b780f864SAdrian Chadd rum_set_beacon(struct rum_softc *sc, struct ieee80211vap *vap)
275402ac6454SAndrew Thompson {
275502ac6454SAndrew Thompson 	struct ieee80211com *ic = vap->iv_ic;
2756b780f864SAdrian Chadd 	struct rum_vap *rvp = RUM_VAP(vap);
2757b780f864SAdrian Chadd 	struct mbuf *m = rvp->bcn_mbuf;
275802ac6454SAndrew Thompson 	const struct ieee80211_txparam *tp;
275902ac6454SAndrew Thompson 	struct rum_tx_desc desc;
276002ac6454SAndrew Thompson 
2761b780f864SAdrian Chadd 	RUM_LOCK_ASSERT(sc);
2762b780f864SAdrian Chadd 
2763b780f864SAdrian Chadd 	if (m == NULL)
2764aa81f853SAdrian Chadd 		return EINVAL;
2765bb571462SHans Petter Selasky 	if (ic->ic_bsschan == IEEE80211_CHAN_ANYC)
2766aa81f853SAdrian Chadd 		return EINVAL;
2767f620e64dSKevin Lo 
276802ac6454SAndrew Thompson 	tp = &vap->iv_txparms[ieee80211_chan2mode(ic->ic_bsschan)];
27692cb9ef8dSAdrian Chadd 	rum_setup_tx_desc(sc, &desc, NULL, RT2573_TX_TIMESTAMP,
27701354b52cSAdrian Chadd 	    RT2573_TX_HWSEQ, 0, 0, m->m_pkthdr.len, tp->mgmtrate);
277102ac6454SAndrew Thompson 
2772b780f864SAdrian Chadd 	/* copy the Tx descriptor into NIC memory */
2773b780f864SAdrian Chadd 	if (rum_write_multi(sc, RT2573_HW_BCN_BASE(0), (uint8_t *)&desc,
2774b780f864SAdrian Chadd 	    RT2573_TX_DESC_SIZE) != 0)
2775b780f864SAdrian Chadd 		return EIO;
277602ac6454SAndrew Thompson 
277702ac6454SAndrew Thompson 	/* copy beacon header and payload into NIC memory */
2778b780f864SAdrian Chadd 	if (rum_write_multi(sc, RT2573_HW_BCN_BASE(0) + RT2573_TX_DESC_SIZE,
2779b780f864SAdrian Chadd 	    mtod(m, uint8_t *), m->m_pkthdr.len) != 0)
2780b780f864SAdrian Chadd 		return EIO;
278102ac6454SAndrew Thompson 
2782b780f864SAdrian Chadd 	return 0;
2783b780f864SAdrian Chadd }
2784b780f864SAdrian Chadd 
2785b780f864SAdrian Chadd static int
rum_alloc_beacon(struct rum_softc * sc,struct ieee80211vap * vap)2786b780f864SAdrian Chadd rum_alloc_beacon(struct rum_softc *sc, struct ieee80211vap *vap)
2787b780f864SAdrian Chadd {
2788b780f864SAdrian Chadd 	struct rum_vap *rvp = RUM_VAP(vap);
2789b780f864SAdrian Chadd 	struct ieee80211_node *ni = vap->iv_bss;
2790b780f864SAdrian Chadd 	struct mbuf *m;
2791b780f864SAdrian Chadd 
2792b780f864SAdrian Chadd 	if (ni->ni_chan == IEEE80211_CHAN_ANYC)
2793b780f864SAdrian Chadd 		return EINVAL;
2794b780f864SAdrian Chadd 
2795210ab3c2SAdrian Chadd 	m = ieee80211_beacon_alloc(ni);
2796b780f864SAdrian Chadd 	if (m == NULL)
2797b780f864SAdrian Chadd 		return ENOMEM;
2798b780f864SAdrian Chadd 
2799b780f864SAdrian Chadd 	if (rvp->bcn_mbuf != NULL)
2800b780f864SAdrian Chadd 		m_freem(rvp->bcn_mbuf);
2801b780f864SAdrian Chadd 
2802b780f864SAdrian Chadd 	rvp->bcn_mbuf = m;
2803b780f864SAdrian Chadd 
2804b780f864SAdrian Chadd 	return (rum_set_beacon(sc, vap));
280502ac6454SAndrew Thompson }
280602ac6454SAndrew Thompson 
28070e3b4c60SAdrian Chadd static void
rum_update_beacon_cb(struct rum_softc * sc,union sec_param * data,uint8_t rvp_id)28080e3b4c60SAdrian Chadd rum_update_beacon_cb(struct rum_softc *sc, union sec_param *data,
2809ed5711a1SAdrian Chadd     uint8_t rvp_id)
28100e3b4c60SAdrian Chadd {
28110e3b4c60SAdrian Chadd 	struct ieee80211vap *vap = data->vap;
28120e3b4c60SAdrian Chadd 
28130e3b4c60SAdrian Chadd 	rum_set_beacon(sc, vap);
28140e3b4c60SAdrian Chadd }
28150e3b4c60SAdrian Chadd 
28160e3b4c60SAdrian Chadd static void
rum_update_beacon(struct ieee80211vap * vap,int item)28170e3b4c60SAdrian Chadd rum_update_beacon(struct ieee80211vap *vap, int item)
28180e3b4c60SAdrian Chadd {
28190e3b4c60SAdrian Chadd 	struct ieee80211com *ic = vap->iv_ic;
28200e3b4c60SAdrian Chadd 	struct rum_softc *sc = ic->ic_softc;
28210e3b4c60SAdrian Chadd 	struct rum_vap *rvp = RUM_VAP(vap);
28220e3b4c60SAdrian Chadd 	struct ieee80211_beacon_offsets *bo = &vap->iv_bcn_off;
28230e3b4c60SAdrian Chadd 	struct ieee80211_node *ni = vap->iv_bss;
28240e3b4c60SAdrian Chadd 	struct mbuf *m = rvp->bcn_mbuf;
28250e3b4c60SAdrian Chadd 	int mcast = 0;
28260e3b4c60SAdrian Chadd 
28270e3b4c60SAdrian Chadd 	RUM_LOCK(sc);
28280e3b4c60SAdrian Chadd 	if (m == NULL) {
2829210ab3c2SAdrian Chadd 		m = ieee80211_beacon_alloc(ni);
28300e3b4c60SAdrian Chadd 		if (m == NULL) {
28310e3b4c60SAdrian Chadd 			device_printf(sc->sc_dev,
28320e3b4c60SAdrian Chadd 			    "%s: could not allocate beacon frame\n", __func__);
28330e3b4c60SAdrian Chadd 			RUM_UNLOCK(sc);
28340e3b4c60SAdrian Chadd 			return;
28350e3b4c60SAdrian Chadd 		}
28360e3b4c60SAdrian Chadd 		rvp->bcn_mbuf = m;
28370e3b4c60SAdrian Chadd 	}
28380e3b4c60SAdrian Chadd 
28390e3b4c60SAdrian Chadd 	switch (item) {
28400e3b4c60SAdrian Chadd 	case IEEE80211_BEACON_ERP:
28410e3b4c60SAdrian Chadd 		rum_update_slot(ic);
28420e3b4c60SAdrian Chadd 		break;
28430e3b4c60SAdrian Chadd 	case IEEE80211_BEACON_TIM:
28440e3b4c60SAdrian Chadd 		mcast = 1;	/*TODO*/
28450e3b4c60SAdrian Chadd 		break;
28460e3b4c60SAdrian Chadd 	default:
28470e3b4c60SAdrian Chadd 		break;
28480e3b4c60SAdrian Chadd 	}
28490e3b4c60SAdrian Chadd 	RUM_UNLOCK(sc);
28500e3b4c60SAdrian Chadd 
28510e3b4c60SAdrian Chadd 	setbit(bo->bo_flags, item);
2852210ab3c2SAdrian Chadd 	ieee80211_beacon_update(ni, m, mcast);
28530e3b4c60SAdrian Chadd 
2854ed5711a1SAdrian Chadd 	rum_cmd_sleepable(sc, &vap, sizeof(vap), 0, rum_update_beacon_cb);
28550e3b4c60SAdrian Chadd }
28560e3b4c60SAdrian Chadd 
285702ac6454SAndrew Thompson static int
rum_common_key_set(struct rum_softc * sc,struct ieee80211_key * k,uint16_t base)28582cb9ef8dSAdrian Chadd rum_common_key_set(struct rum_softc *sc, struct ieee80211_key *k,
28592cb9ef8dSAdrian Chadd     uint16_t base)
28602cb9ef8dSAdrian Chadd {
28612cb9ef8dSAdrian Chadd 
28622cb9ef8dSAdrian Chadd 	if (rum_write_multi(sc, base, k->wk_key, k->wk_keylen))
28632cb9ef8dSAdrian Chadd 		return EIO;
28642cb9ef8dSAdrian Chadd 
28652cb9ef8dSAdrian Chadd 	if (k->wk_cipher->ic_cipher == IEEE80211_CIPHER_TKIP) {
28662cb9ef8dSAdrian Chadd 		if (rum_write_multi(sc, base + IEEE80211_KEYBUF_SIZE,
28672cb9ef8dSAdrian Chadd 		    k->wk_txmic, 8))
28682cb9ef8dSAdrian Chadd 			return EIO;
28692cb9ef8dSAdrian Chadd 		if (rum_write_multi(sc, base + IEEE80211_KEYBUF_SIZE + 8,
28702cb9ef8dSAdrian Chadd 		    k->wk_rxmic, 8))
28712cb9ef8dSAdrian Chadd 			return EIO;
28722cb9ef8dSAdrian Chadd 	}
28732cb9ef8dSAdrian Chadd 
28742cb9ef8dSAdrian Chadd 	return 0;
28752cb9ef8dSAdrian Chadd }
28762cb9ef8dSAdrian Chadd 
28772cb9ef8dSAdrian Chadd static void
rum_group_key_set_cb(struct rum_softc * sc,union sec_param * data,uint8_t rvp_id)28782cb9ef8dSAdrian Chadd rum_group_key_set_cb(struct rum_softc *sc, union sec_param *data,
2879ed5711a1SAdrian Chadd     uint8_t rvp_id)
28802cb9ef8dSAdrian Chadd {
28812cb9ef8dSAdrian Chadd 	struct ieee80211_key *k = &data->key;
28822cb9ef8dSAdrian Chadd 	uint8_t mode;
28832cb9ef8dSAdrian Chadd 
28842cb9ef8dSAdrian Chadd 	if (sc->sc_clr_shkeys == 0) {
28852cb9ef8dSAdrian Chadd 		rum_clr_shkey_regs(sc);
28862cb9ef8dSAdrian Chadd 		sc->sc_clr_shkeys = 1;
28872cb9ef8dSAdrian Chadd 	}
28882cb9ef8dSAdrian Chadd 
28892cb9ef8dSAdrian Chadd 	mode = rum_crypto_mode(sc, k->wk_cipher->ic_cipher, k->wk_keylen);
28902cb9ef8dSAdrian Chadd 	if (mode == 0)
28912cb9ef8dSAdrian Chadd 		goto print_err;
28922cb9ef8dSAdrian Chadd 
28932cb9ef8dSAdrian Chadd 	DPRINTFN(1, "setting group key %d for vap %d, mode %d "
28942cb9ef8dSAdrian Chadd 	    "(tx %s, rx %s)\n", k->wk_keyix, rvp_id, mode,
28952cb9ef8dSAdrian Chadd 	    (k->wk_flags & IEEE80211_KEY_XMIT) ? "on" : "off",
28962cb9ef8dSAdrian Chadd 	    (k->wk_flags & IEEE80211_KEY_RECV) ? "on" : "off");
28972cb9ef8dSAdrian Chadd 
28982cb9ef8dSAdrian Chadd 	/* Install the key. */
28992cb9ef8dSAdrian Chadd 	if (rum_common_key_set(sc, k, RT2573_SKEY(rvp_id, k->wk_keyix)) != 0)
29002cb9ef8dSAdrian Chadd 		goto print_err;
29012cb9ef8dSAdrian Chadd 
29022cb9ef8dSAdrian Chadd 	/* Set cipher mode. */
29032cb9ef8dSAdrian Chadd 	if (rum_modbits(sc, rvp_id < 2 ? RT2573_SEC_CSR1 : RT2573_SEC_CSR5,
29042cb9ef8dSAdrian Chadd 	      mode << (rvp_id % 2 + k->wk_keyix) * RT2573_SKEY_MAX,
29052cb9ef8dSAdrian Chadd 	      RT2573_MODE_MASK << (rvp_id % 2 + k->wk_keyix) * RT2573_SKEY_MAX)
29062cb9ef8dSAdrian Chadd 	    != 0)
29072cb9ef8dSAdrian Chadd 		goto print_err;
29082cb9ef8dSAdrian Chadd 
29092cb9ef8dSAdrian Chadd 	/* Mark this key as valid. */
29102cb9ef8dSAdrian Chadd 	if (rum_setbits(sc, RT2573_SEC_CSR0,
29112cb9ef8dSAdrian Chadd 	      1 << (rvp_id * RT2573_SKEY_MAX + k->wk_keyix)) != 0)
29122cb9ef8dSAdrian Chadd 		goto print_err;
29132cb9ef8dSAdrian Chadd 
29142cb9ef8dSAdrian Chadd 	return;
29152cb9ef8dSAdrian Chadd 
29162cb9ef8dSAdrian Chadd print_err:
29172cb9ef8dSAdrian Chadd 	device_printf(sc->sc_dev, "%s: cannot set group key %d for vap %d\n",
29182cb9ef8dSAdrian Chadd 	    __func__, k->wk_keyix, rvp_id);
29192cb9ef8dSAdrian Chadd }
29202cb9ef8dSAdrian Chadd 
29212cb9ef8dSAdrian Chadd static void
rum_group_key_del_cb(struct rum_softc * sc,union sec_param * data,uint8_t rvp_id)29222cb9ef8dSAdrian Chadd rum_group_key_del_cb(struct rum_softc *sc, union sec_param *data,
2923ed5711a1SAdrian Chadd     uint8_t rvp_id)
29242cb9ef8dSAdrian Chadd {
29252cb9ef8dSAdrian Chadd 	struct ieee80211_key *k = &data->key;
29262cb9ef8dSAdrian Chadd 
29272cb9ef8dSAdrian Chadd 	DPRINTF("%s: removing group key %d for vap %d\n", __func__,
29282cb9ef8dSAdrian Chadd 	    k->wk_keyix, rvp_id);
29292cb9ef8dSAdrian Chadd 	rum_clrbits(sc,
29302cb9ef8dSAdrian Chadd 	    rvp_id < 2 ? RT2573_SEC_CSR1 : RT2573_SEC_CSR5,
29312cb9ef8dSAdrian Chadd 	    RT2573_MODE_MASK << (rvp_id % 2 + k->wk_keyix) * RT2573_SKEY_MAX);
29322cb9ef8dSAdrian Chadd 	rum_clrbits(sc, RT2573_SEC_CSR0,
29332cb9ef8dSAdrian Chadd 	    rvp_id * RT2573_SKEY_MAX + k->wk_keyix);
29342cb9ef8dSAdrian Chadd }
29352cb9ef8dSAdrian Chadd 
29362cb9ef8dSAdrian Chadd static void
rum_pair_key_set_cb(struct rum_softc * sc,union sec_param * data,uint8_t rvp_id)2937ed5711a1SAdrian Chadd rum_pair_key_set_cb(struct rum_softc *sc, union sec_param *data,
29382cb9ef8dSAdrian Chadd     uint8_t rvp_id)
29392cb9ef8dSAdrian Chadd {
29402cb9ef8dSAdrian Chadd 	struct ieee80211_key *k = &data->key;
29412cb9ef8dSAdrian Chadd 	uint8_t buf[IEEE80211_ADDR_LEN + 1];
29422cb9ef8dSAdrian Chadd 	uint8_t mode;
29432cb9ef8dSAdrian Chadd 
29442cb9ef8dSAdrian Chadd 	mode = rum_crypto_mode(sc, k->wk_cipher->ic_cipher, k->wk_keylen);
29452cb9ef8dSAdrian Chadd 	if (mode == 0)
29462cb9ef8dSAdrian Chadd 		goto print_err;
29472cb9ef8dSAdrian Chadd 
29482cb9ef8dSAdrian Chadd 	DPRINTFN(1, "setting pairwise key %d for vap %d, mode %d "
29492cb9ef8dSAdrian Chadd 	    "(tx %s, rx %s)\n", k->wk_keyix, rvp_id, mode,
29502cb9ef8dSAdrian Chadd 	    (k->wk_flags & IEEE80211_KEY_XMIT) ? "on" : "off",
29512cb9ef8dSAdrian Chadd 	    (k->wk_flags & IEEE80211_KEY_RECV) ? "on" : "off");
29522cb9ef8dSAdrian Chadd 
29532cb9ef8dSAdrian Chadd 	/* Install the key. */
29542cb9ef8dSAdrian Chadd 	if (rum_common_key_set(sc, k, RT2573_PKEY(k->wk_keyix)) != 0)
29552cb9ef8dSAdrian Chadd 		goto print_err;
29562cb9ef8dSAdrian Chadd 
29572cb9ef8dSAdrian Chadd 	IEEE80211_ADDR_COPY(buf, k->wk_macaddr);
29582cb9ef8dSAdrian Chadd 	buf[IEEE80211_ADDR_LEN] = mode;
29592cb9ef8dSAdrian Chadd 
29602cb9ef8dSAdrian Chadd 	/* Set transmitter address and cipher mode. */
29612cb9ef8dSAdrian Chadd 	if (rum_write_multi(sc, RT2573_ADDR_ENTRY(k->wk_keyix),
29622cb9ef8dSAdrian Chadd 	      buf, sizeof buf) != 0)
29632cb9ef8dSAdrian Chadd 		goto print_err;
29642cb9ef8dSAdrian Chadd 
29652cb9ef8dSAdrian Chadd 	/* Enable key table lookup for this vap. */
29662cb9ef8dSAdrian Chadd 	if (sc->vap_key_count[rvp_id]++ == 0)
29672cb9ef8dSAdrian Chadd 		if (rum_setbits(sc, RT2573_SEC_CSR4, 1 << rvp_id) != 0)
29682cb9ef8dSAdrian Chadd 			goto print_err;
29692cb9ef8dSAdrian Chadd 
29702cb9ef8dSAdrian Chadd 	/* Mark this key as valid. */
29712cb9ef8dSAdrian Chadd 	if (rum_setbits(sc,
29722cb9ef8dSAdrian Chadd 	      k->wk_keyix < 32 ? RT2573_SEC_CSR2 : RT2573_SEC_CSR3,
29732cb9ef8dSAdrian Chadd 	      1 << (k->wk_keyix % 32)) != 0)
29742cb9ef8dSAdrian Chadd 		goto print_err;
29752cb9ef8dSAdrian Chadd 
29762cb9ef8dSAdrian Chadd 	return;
29772cb9ef8dSAdrian Chadd 
29782cb9ef8dSAdrian Chadd print_err:
29792cb9ef8dSAdrian Chadd 	device_printf(sc->sc_dev,
29802cb9ef8dSAdrian Chadd 	    "%s: cannot set pairwise key %d, vap %d\n", __func__, k->wk_keyix,
29812cb9ef8dSAdrian Chadd 	    rvp_id);
29822cb9ef8dSAdrian Chadd }
29832cb9ef8dSAdrian Chadd 
29842cb9ef8dSAdrian Chadd static void
rum_pair_key_del_cb(struct rum_softc * sc,union sec_param * data,uint8_t rvp_id)2985ed5711a1SAdrian Chadd rum_pair_key_del_cb(struct rum_softc *sc, union sec_param *data,
29862cb9ef8dSAdrian Chadd     uint8_t rvp_id)
29872cb9ef8dSAdrian Chadd {
29882cb9ef8dSAdrian Chadd 	struct ieee80211_key *k = &data->key;
29892cb9ef8dSAdrian Chadd 
29902cb9ef8dSAdrian Chadd 	DPRINTF("%s: removing key %d\n", __func__, k->wk_keyix);
29912cb9ef8dSAdrian Chadd 	rum_clrbits(sc, (k->wk_keyix < 32) ? RT2573_SEC_CSR2 : RT2573_SEC_CSR3,
29922cb9ef8dSAdrian Chadd 	    1 << (k->wk_keyix % 32));
2993fe3e4523SHans Petter Selasky 	sc->keys_bmap &= ~(1ULL << k->wk_keyix);
29942cb9ef8dSAdrian Chadd 	if (--sc->vap_key_count[rvp_id] == 0)
29952cb9ef8dSAdrian Chadd 		rum_clrbits(sc, RT2573_SEC_CSR4, 1 << rvp_id);
29962cb9ef8dSAdrian Chadd }
29972cb9ef8dSAdrian Chadd 
29982cb9ef8dSAdrian Chadd static int
rum_key_alloc(struct ieee80211vap * vap,struct ieee80211_key * k,ieee80211_keyix * keyix,ieee80211_keyix * rxkeyix)29992cb9ef8dSAdrian Chadd rum_key_alloc(struct ieee80211vap *vap, struct ieee80211_key *k,
30002cb9ef8dSAdrian Chadd     ieee80211_keyix *keyix, ieee80211_keyix *rxkeyix)
30012cb9ef8dSAdrian Chadd {
30022cb9ef8dSAdrian Chadd 	struct rum_softc *sc = vap->iv_ic->ic_softc;
30032cb9ef8dSAdrian Chadd 	uint8_t i;
30042cb9ef8dSAdrian Chadd 
30052589197aSAdrian Chadd 	if (ieee80211_is_key_unicast(vap, k)) {
30062cb9ef8dSAdrian Chadd 		if (!(k->wk_flags & IEEE80211_KEY_SWCRYPT)) {
30072cb9ef8dSAdrian Chadd 			RUM_LOCK(sc);
30082cb9ef8dSAdrian Chadd 			for (i = 0; i < RT2573_ADDR_MAX; i++) {
3009fe3e4523SHans Petter Selasky 				if ((sc->keys_bmap & (1ULL << i)) == 0) {
3010fe3e4523SHans Petter Selasky 					sc->keys_bmap |= (1ULL << i);
30112cb9ef8dSAdrian Chadd 					*keyix = i;
30122cb9ef8dSAdrian Chadd 					break;
30132cb9ef8dSAdrian Chadd 				}
30142cb9ef8dSAdrian Chadd 			}
30152cb9ef8dSAdrian Chadd 			RUM_UNLOCK(sc);
30162cb9ef8dSAdrian Chadd 			if (i == RT2573_ADDR_MAX) {
30172cb9ef8dSAdrian Chadd 				device_printf(sc->sc_dev,
30182cb9ef8dSAdrian Chadd 				    "%s: no free space in the key table\n",
30192cb9ef8dSAdrian Chadd 				    __func__);
30202cb9ef8dSAdrian Chadd 				return 0;
30212cb9ef8dSAdrian Chadd 			}
30222cb9ef8dSAdrian Chadd 		} else
30232cb9ef8dSAdrian Chadd 			*keyix = 0;
30242cb9ef8dSAdrian Chadd 	} else {
30254a19d712SAndriy Voskoboinyk 		*keyix = ieee80211_crypto_get_key_wepidx(vap, k);
30262cb9ef8dSAdrian Chadd 	}
30272cb9ef8dSAdrian Chadd 	*rxkeyix = *keyix;
30282cb9ef8dSAdrian Chadd 	return 1;
30292cb9ef8dSAdrian Chadd }
30302cb9ef8dSAdrian Chadd 
30312cb9ef8dSAdrian Chadd static int
rum_key_set(struct ieee80211vap * vap,const struct ieee80211_key * k)3032bc813c40SAdrian Chadd rum_key_set(struct ieee80211vap *vap, const struct ieee80211_key *k)
30332cb9ef8dSAdrian Chadd {
30342cb9ef8dSAdrian Chadd 	struct rum_softc *sc = vap->iv_ic->ic_softc;
30352cb9ef8dSAdrian Chadd 	int group;
30362cb9ef8dSAdrian Chadd 
30372cb9ef8dSAdrian Chadd 	if (k->wk_flags & IEEE80211_KEY_SWCRYPT) {
30382cb9ef8dSAdrian Chadd 		/* Not for us. */
30392cb9ef8dSAdrian Chadd 		return 1;
30402cb9ef8dSAdrian Chadd 	}
30412cb9ef8dSAdrian Chadd 
30422589197aSAdrian Chadd 	group = ieee80211_is_key_global(vap, k);
30432cb9ef8dSAdrian Chadd 
3044ed5711a1SAdrian Chadd 	return !rum_cmd_sleepable(sc, k, sizeof(*k), 0,
30452cb9ef8dSAdrian Chadd 		   group ? rum_group_key_set_cb : rum_pair_key_set_cb);
30462cb9ef8dSAdrian Chadd }
30472cb9ef8dSAdrian Chadd 
30482cb9ef8dSAdrian Chadd static int
rum_key_delete(struct ieee80211vap * vap,const struct ieee80211_key * k)30492cb9ef8dSAdrian Chadd rum_key_delete(struct ieee80211vap *vap, const struct ieee80211_key *k)
30502cb9ef8dSAdrian Chadd {
30512cb9ef8dSAdrian Chadd 	struct rum_softc *sc = vap->iv_ic->ic_softc;
30522cb9ef8dSAdrian Chadd 	int group;
30532cb9ef8dSAdrian Chadd 
30542cb9ef8dSAdrian Chadd 	if (k->wk_flags & IEEE80211_KEY_SWCRYPT) {
30552cb9ef8dSAdrian Chadd 		/* Not for us. */
30562cb9ef8dSAdrian Chadd 		return 1;
30572cb9ef8dSAdrian Chadd 	}
30582cb9ef8dSAdrian Chadd 
30592589197aSAdrian Chadd 	group = ieee80211_is_key_global(vap, k);
30602cb9ef8dSAdrian Chadd 
3061ed5711a1SAdrian Chadd 	return !rum_cmd_sleepable(sc, k, sizeof(*k), 0,
30622cb9ef8dSAdrian Chadd 		   group ? rum_group_key_del_cb : rum_pair_key_del_cb);
30632cb9ef8dSAdrian Chadd }
30642cb9ef8dSAdrian Chadd 
30652cb9ef8dSAdrian Chadd static int
rum_raw_xmit(struct ieee80211_node * ni,struct mbuf * m,const struct ieee80211_bpf_params * params)306602ac6454SAndrew Thompson rum_raw_xmit(struct ieee80211_node *ni, struct mbuf *m,
306702ac6454SAndrew Thompson     const struct ieee80211_bpf_params *params)
306802ac6454SAndrew Thompson {
3069d3fdd08cSAdrian Chadd 	struct rum_softc *sc = ni->ni_ic->ic_softc;
3070b2a76342SAdrian Chadd 	int ret;
307102ac6454SAndrew Thompson 
307202ac6454SAndrew Thompson 	RUM_LOCK(sc);
307302ac6454SAndrew Thompson 	/* prevent management frames from being sent if we're not ready */
30747a79cebfSGleb Smirnoff 	if (!sc->sc_running) {
3075b2a76342SAdrian Chadd 		ret = ENETDOWN;
3076b2a76342SAdrian Chadd 		goto bad;
307702ac6454SAndrew Thompson 	}
307896ca458fSAndrew Thompson 	if (sc->tx_nfree < RUM_TX_MINFREE) {
3079b2a76342SAdrian Chadd 		ret = EIO;
3080b2a76342SAdrian Chadd 		goto bad;
308102ac6454SAndrew Thompson 	}
308202ac6454SAndrew Thompson 
308302ac6454SAndrew Thompson 	if (params == NULL) {
308402ac6454SAndrew Thompson 		/*
308502ac6454SAndrew Thompson 		 * Legacy path; interpret frame contents to decide
308602ac6454SAndrew Thompson 		 * precisely how to send the frame.
308702ac6454SAndrew Thompson 		 */
3088b2a76342SAdrian Chadd 		if ((ret = rum_tx_mgt(sc, m, ni)) != 0)
308902ac6454SAndrew Thompson 			goto bad;
309002ac6454SAndrew Thompson 	} else {
309102ac6454SAndrew Thompson 		/*
309202ac6454SAndrew Thompson 		 * Caller supplied explicit parameters to use in
309302ac6454SAndrew Thompson 		 * sending the frame.
309402ac6454SAndrew Thompson 		 */
3095b2a76342SAdrian Chadd 		if ((ret = rum_tx_raw(sc, m, ni, params)) != 0)
309602ac6454SAndrew Thompson 			goto bad;
309702ac6454SAndrew Thompson 	}
309802ac6454SAndrew Thompson 	RUM_UNLOCK(sc);
309902ac6454SAndrew Thompson 
310002ac6454SAndrew Thompson 	return 0;
310102ac6454SAndrew Thompson bad:
310202ac6454SAndrew Thompson 	RUM_UNLOCK(sc);
3103b2a76342SAdrian Chadd 	m_freem(m);
3104b2a76342SAdrian Chadd 	return ret;
310502ac6454SAndrew Thompson }
310602ac6454SAndrew Thompson 
310702ac6454SAndrew Thompson static void
rum_ratectl_start(struct rum_softc * sc,struct ieee80211_node * ni)3108b6108616SRui Paulo rum_ratectl_start(struct rum_softc *sc, struct ieee80211_node *ni)
310902ac6454SAndrew Thompson {
311002ac6454SAndrew Thompson 	struct ieee80211vap *vap = ni->ni_vap;
311102ac6454SAndrew Thompson 	struct rum_vap *rvp = RUM_VAP(vap);
311202ac6454SAndrew Thompson 
311302ac6454SAndrew Thompson 	/* clear statistic registers (STA_CSR0 to STA_CSR5) */
311402ac6454SAndrew Thompson 	rum_read_multi(sc, RT2573_STA_CSR0, sc->sta, sizeof sc->sta);
311502ac6454SAndrew Thompson 
3116b6108616SRui Paulo 	usb_callout_reset(&rvp->ratectl_ch, hz, rum_ratectl_timeout, rvp);
311702ac6454SAndrew Thompson }
311802ac6454SAndrew Thompson 
311902ac6454SAndrew Thompson static void
rum_ratectl_timeout(void * arg)3120b6108616SRui Paulo rum_ratectl_timeout(void *arg)
312102ac6454SAndrew Thompson {
312202ac6454SAndrew Thompson 	struct rum_vap *rvp = arg;
31235efea30fSAndrew Thompson 	struct ieee80211vap *vap = &rvp->vap;
31245efea30fSAndrew Thompson 	struct ieee80211com *ic = vap->iv_ic;
312502ac6454SAndrew Thompson 
3126b6108616SRui Paulo 	ieee80211_runtask(ic, &rvp->ratectl_task);
312702ac6454SAndrew Thompson }
312802ac6454SAndrew Thompson 
312902ac6454SAndrew Thompson static void
rum_ratectl_task(void * arg,int pending)3130b6108616SRui Paulo rum_ratectl_task(void *arg, int pending)
313102ac6454SAndrew Thompson {
31325efea30fSAndrew Thompson 	struct rum_vap *rvp = arg;
31335efea30fSAndrew Thompson 	struct ieee80211vap *vap = &rvp->vap;
3134f4ac78a2SAdrian Chadd 	struct rum_softc *sc = vap->iv_ic->ic_softc;
3135f6930becSAndriy Voskoboinyk 	struct ieee80211_ratectl_tx_stats *txs = &sc->sc_txs;
3136f4ac78a2SAdrian Chadd 	int ok[3], fail;
313702ac6454SAndrew Thompson 
31385efea30fSAndrew Thompson 	RUM_LOCK(sc);
3139f4ac78a2SAdrian Chadd 	/* read and clear statistic registers (STA_CSR0 to STA_CSR5) */
314002ac6454SAndrew Thompson 	rum_read_multi(sc, RT2573_STA_CSR0, sc->sta, sizeof(sc->sta));
314102ac6454SAndrew Thompson 
3142f4ac78a2SAdrian Chadd 	ok[0] = (le32toh(sc->sta[4]) & 0xffff);	/* TX ok w/o retry */
3143f4ac78a2SAdrian Chadd 	ok[1] = (le32toh(sc->sta[4]) >> 16);	/* TX ok w/ one retry */
3144f4ac78a2SAdrian Chadd 	ok[2] = (le32toh(sc->sta[5]) & 0xffff);	/* TX ok w/ multiple retries */
314502ac6454SAndrew Thompson 	fail =  (le32toh(sc->sta[5]) >> 16);	/* TX retry-fail count */
314602ac6454SAndrew Thompson 
3147f6930becSAndriy Voskoboinyk 	txs->flags = IEEE80211_RATECTL_TX_STATS_RETRIES;
3148f6930becSAndriy Voskoboinyk 	txs->nframes = ok[0] + ok[1] + ok[2] + fail;
3149f6930becSAndriy Voskoboinyk 	txs->nsuccess = txs->nframes - fail;
3150f4ac78a2SAdrian Chadd 	/* XXX at least */
3151f6930becSAndriy Voskoboinyk 	txs->nretries = ok[1] + ok[2] * 2 + fail * (rvp->maxretry + 1);
3152f4ac78a2SAdrian Chadd 
3153f6930becSAndriy Voskoboinyk 	if (txs->nframes != 0)
3154f6930becSAndriy Voskoboinyk 		ieee80211_ratectl_tx_update(vap, txs);
315502ac6454SAndrew Thompson 
31567a79cebfSGleb Smirnoff 	/* count TX retry-fail as Tx errors */
3157f4ac78a2SAdrian Chadd 	if_inc_counter(vap->iv_ifp, IFCOUNTER_OERRORS, fail);
315802ac6454SAndrew Thompson 
3159b6108616SRui Paulo 	usb_callout_reset(&rvp->ratectl_ch, hz, rum_ratectl_timeout, rvp);
31605efea30fSAndrew Thompson 	RUM_UNLOCK(sc);
316102ac6454SAndrew Thompson }
316202ac6454SAndrew Thompson 
316302ac6454SAndrew Thompson static void
rum_scan_start(struct ieee80211com * ic)316402ac6454SAndrew Thompson rum_scan_start(struct ieee80211com *ic)
316502ac6454SAndrew Thompson {
3166d3fdd08cSAdrian Chadd 	struct rum_softc *sc = ic->ic_softc;
316702ac6454SAndrew Thompson 
316802ac6454SAndrew Thompson 	RUM_LOCK(sc);
31696d804321SAdrian Chadd 	rum_abort_tsf_sync(sc);
31707a79cebfSGleb Smirnoff 	rum_set_bssid(sc, ieee80211broadcastaddr);
317102ac6454SAndrew Thompson 	RUM_UNLOCK(sc);
317202ac6454SAndrew Thompson 
317302ac6454SAndrew Thompson }
317402ac6454SAndrew Thompson 
317502ac6454SAndrew Thompson static void
rum_scan_end(struct ieee80211com * ic)317602ac6454SAndrew Thompson rum_scan_end(struct ieee80211com *ic)
317702ac6454SAndrew Thompson {
3178d3fdd08cSAdrian Chadd 	struct rum_softc *sc = ic->ic_softc;
317902ac6454SAndrew Thompson 
318037704427SAndriy Voskoboinyk 	if (ic->ic_flags_ext & IEEE80211_FEXT_BGSCAN) {
318102ac6454SAndrew Thompson 		RUM_LOCK(sc);
318250a31b48SAdrian Chadd 		if (ic->ic_opmode != IEEE80211_M_AHDEMO)
31835efea30fSAndrew Thompson 			rum_enable_tsf_sync(sc);
318450a31b48SAdrian Chadd 		else
318550a31b48SAdrian Chadd 			rum_enable_tsf(sc);
31861ba67b11SAdrian Chadd 		rum_set_bssid(sc, sc->sc_bssid);
318702ac6454SAndrew Thompson 		RUM_UNLOCK(sc);
318837704427SAndriy Voskoboinyk 	}
318902ac6454SAndrew Thompson }
319002ac6454SAndrew Thompson 
319102ac6454SAndrew Thompson static void
rum_set_channel(struct ieee80211com * ic)319202ac6454SAndrew Thompson rum_set_channel(struct ieee80211com *ic)
319302ac6454SAndrew Thompson {
3194d3fdd08cSAdrian Chadd 	struct rum_softc *sc = ic->ic_softc;
319502ac6454SAndrew Thompson 
319602ac6454SAndrew Thompson 	RUM_LOCK(sc);
319702ac6454SAndrew Thompson 	rum_set_chan(sc, ic->ic_curchan);
31985efea30fSAndrew Thompson 	RUM_UNLOCK(sc);
319902ac6454SAndrew Thompson }
320002ac6454SAndrew Thompson 
32017b45c9dfSAndriy Voskoboinyk static void
rum_getradiocaps(struct ieee80211com * ic,int maxchans,int * nchans,struct ieee80211_channel chans[])32027b45c9dfSAndriy Voskoboinyk rum_getradiocaps(struct ieee80211com *ic,
32037b45c9dfSAndriy Voskoboinyk     int maxchans, int *nchans, struct ieee80211_channel chans[])
32047b45c9dfSAndriy Voskoboinyk {
32057b45c9dfSAndriy Voskoboinyk 	struct rum_softc *sc = ic->ic_softc;
32067b45c9dfSAndriy Voskoboinyk 	uint8_t bands[IEEE80211_MODE_BYTES];
32077b45c9dfSAndriy Voskoboinyk 
32087b45c9dfSAndriy Voskoboinyk 	memset(bands, 0, sizeof(bands));
32097b45c9dfSAndriy Voskoboinyk 	setbit(bands, IEEE80211_MODE_11B);
32107b45c9dfSAndriy Voskoboinyk 	setbit(bands, IEEE80211_MODE_11G);
3211b84b3638SAndriy Voskoboinyk 	ieee80211_add_channels_default_2ghz(chans, maxchans, nchans, bands, 0);
32127b45c9dfSAndriy Voskoboinyk 
32137b45c9dfSAndriy Voskoboinyk 	if (sc->rf_rev == RT2573_RF_5225 || sc->rf_rev == RT2573_RF_5226) {
32147b45c9dfSAndriy Voskoboinyk 		setbit(bands, IEEE80211_MODE_11A);
32157b45c9dfSAndriy Voskoboinyk 		ieee80211_add_channel_list_5ghz(chans, maxchans, nchans,
32167b45c9dfSAndriy Voskoboinyk 		    rum_chan_5ghz, nitems(rum_chan_5ghz), bands, 0);
32177b45c9dfSAndriy Voskoboinyk 	}
32187b45c9dfSAndriy Voskoboinyk }
32197b45c9dfSAndriy Voskoboinyk 
322002ac6454SAndrew Thompson static int
rum_get_rssi(struct rum_softc * sc,uint8_t raw)322102ac6454SAndrew Thompson rum_get_rssi(struct rum_softc *sc, uint8_t raw)
322202ac6454SAndrew Thompson {
32237a79cebfSGleb Smirnoff 	struct ieee80211com *ic = &sc->sc_ic;
322402ac6454SAndrew Thompson 	int lna, agc, rssi;
322502ac6454SAndrew Thompson 
322602ac6454SAndrew Thompson 	lna = (raw >> 5) & 0x3;
322702ac6454SAndrew Thompson 	agc = raw & 0x1f;
322802ac6454SAndrew Thompson 
322902ac6454SAndrew Thompson 	if (lna == 0) {
323002ac6454SAndrew Thompson 		/*
323102ac6454SAndrew Thompson 		 * No RSSI mapping
323202ac6454SAndrew Thompson 		 *
323302ac6454SAndrew Thompson 		 * NB: Since RSSI is relative to noise floor, -1 is
323402ac6454SAndrew Thompson 		 *     adequate for caller to know error happened.
323502ac6454SAndrew Thompson 		 */
323602ac6454SAndrew Thompson 		return -1;
323702ac6454SAndrew Thompson 	}
323802ac6454SAndrew Thompson 
323902ac6454SAndrew Thompson 	rssi = (2 * agc) - RT2573_NOISE_FLOOR;
324002ac6454SAndrew Thompson 
324102ac6454SAndrew Thompson 	if (IEEE80211_IS_CHAN_2GHZ(ic->ic_curchan)) {
324202ac6454SAndrew Thompson 		rssi += sc->rssi_2ghz_corr;
324302ac6454SAndrew Thompson 
324402ac6454SAndrew Thompson 		if (lna == 1)
324502ac6454SAndrew Thompson 			rssi -= 64;
324602ac6454SAndrew Thompson 		else if (lna == 2)
324702ac6454SAndrew Thompson 			rssi -= 74;
324802ac6454SAndrew Thompson 		else if (lna == 3)
324902ac6454SAndrew Thompson 			rssi -= 90;
325002ac6454SAndrew Thompson 	} else {
325102ac6454SAndrew Thompson 		rssi += sc->rssi_5ghz_corr;
325202ac6454SAndrew Thompson 
325302ac6454SAndrew Thompson 		if (!sc->ext_5ghz_lna && lna != 1)
325402ac6454SAndrew Thompson 			rssi += 4;
325502ac6454SAndrew Thompson 
325602ac6454SAndrew Thompson 		if (lna == 1)
325702ac6454SAndrew Thompson 			rssi -= 64;
325802ac6454SAndrew Thompson 		else if (lna == 2)
325902ac6454SAndrew Thompson 			rssi -= 86;
326002ac6454SAndrew Thompson 		else if (lna == 3)
326102ac6454SAndrew Thompson 			rssi -= 100;
326202ac6454SAndrew Thompson 	}
326302ac6454SAndrew Thompson 	return rssi;
326402ac6454SAndrew Thompson }
326502ac6454SAndrew Thompson 
326602ac6454SAndrew Thompson static int
rum_pause(struct rum_softc * sc,int timeout)326702ac6454SAndrew Thompson rum_pause(struct rum_softc *sc, int timeout)
326802ac6454SAndrew Thompson {
326902ac6454SAndrew Thompson 
3270a593f6b8SAndrew Thompson 	usb_pause_mtx(&sc->sc_mtx, timeout);
327102ac6454SAndrew Thompson 	return (0);
327202ac6454SAndrew Thompson }
327302ac6454SAndrew Thompson 
327402ac6454SAndrew Thompson static device_method_t rum_methods[] = {
327502ac6454SAndrew Thompson 	/* Device interface */
327602ac6454SAndrew Thompson 	DEVMETHOD(device_probe,		rum_match),
327702ac6454SAndrew Thompson 	DEVMETHOD(device_attach,	rum_attach),
327802ac6454SAndrew Thompson 	DEVMETHOD(device_detach,	rum_detach),
3279645e4d17SHans Petter Selasky 	DEVMETHOD_END
328002ac6454SAndrew Thompson };
328102ac6454SAndrew Thompson 
328202ac6454SAndrew Thompson static driver_t rum_driver = {
328302ac6454SAndrew Thompson 	.name = "rum",
328402ac6454SAndrew Thompson 	.methods = rum_methods,
328502ac6454SAndrew Thompson 	.size = sizeof(struct rum_softc),
328602ac6454SAndrew Thompson };
328702ac6454SAndrew Thompson 
3288bc9372d7SJohn Baldwin DRIVER_MODULE(rum, uhub, rum_driver, NULL, NULL);
3289910cb8feSAndrew Thompson MODULE_DEPEND(rum, wlan, 1, 1, 1);
3290910cb8feSAndrew Thompson MODULE_DEPEND(rum, usb, 1, 1, 1);
3291910cb8feSAndrew Thompson MODULE_VERSION(rum, 1);
3292f809f280SWarner Losh USB_PNP_HOST_INFO(rum_devs);
3293