xref: /freebsd/sys/dev/ral/rt2860.c (revision bd81e07d2761cf1c13063eb49a5c0cb4a6951318)
1 /*-
2  * Copyright (c) 2007-2010 Damien Bergamini <damien.bergamini@free.fr>
3  * Copyright (c) 2012 Bernhard Schmidt <bschmidt@FreeBSD.org>
4  *
5  * Permission to use, copy, modify, and distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16  *
17  * $OpenBSD: rt2860.c,v 1.65 2010/10/23 14:24:54 damien Exp $
18  */
19 
20 #include <sys/cdefs.h>
21 __FBSDID("$FreeBSD$");
22 
23 /*-
24  * Ralink Technology RT2860/RT3090/RT3390/RT3562/RT5390/RT5392 chipset driver
25  * http://www.ralinktech.com/
26  */
27 
28 #include <sys/param.h>
29 #include <sys/sysctl.h>
30 #include <sys/sockio.h>
31 #include <sys/mbuf.h>
32 #include <sys/kernel.h>
33 #include <sys/socket.h>
34 #include <sys/systm.h>
35 #include <sys/malloc.h>
36 #include <sys/lock.h>
37 #include <sys/mutex.h>
38 #include <sys/module.h>
39 #include <sys/bus.h>
40 #include <sys/endian.h>
41 #include <sys/firmware.h>
42 
43 #include <machine/bus.h>
44 #include <machine/resource.h>
45 #include <sys/rman.h>
46 
47 #include <net/bpf.h>
48 #include <net/if.h>
49 #include <net/if_var.h>
50 #include <net/if_arp.h>
51 #include <net/ethernet.h>
52 #include <net/if_dl.h>
53 #include <net/if_media.h>
54 #include <net/if_types.h>
55 
56 #include <net80211/ieee80211_var.h>
57 #include <net80211/ieee80211_radiotap.h>
58 #include <net80211/ieee80211_regdomain.h>
59 #include <net80211/ieee80211_ratectl.h>
60 
61 #include <netinet/in.h>
62 #include <netinet/in_systm.h>
63 #include <netinet/in_var.h>
64 #include <netinet/ip.h>
65 #include <netinet/if_ether.h>
66 
67 #include <dev/ral/rt2860reg.h>
68 #include <dev/ral/rt2860var.h>
69 
70 #define RAL_DEBUG
71 #ifdef RAL_DEBUG
72 #define DPRINTF(x)	do { if (sc->sc_debug > 0) printf x; } while (0)
73 #define DPRINTFN(n, x)	do { if (sc->sc_debug >= (n)) printf x; } while (0)
74 #else
75 #define DPRINTF(x)
76 #define DPRINTFN(n, x)
77 #endif
78 
79 static struct ieee80211vap *rt2860_vap_create(struct ieee80211com *,
80 			    const char [IFNAMSIZ], int, enum ieee80211_opmode,
81 			    int, const uint8_t [IEEE80211_ADDR_LEN],
82 			    const uint8_t [IEEE80211_ADDR_LEN]);
83 static void	rt2860_vap_delete(struct ieee80211vap *);
84 static void	rt2860_dma_map_addr(void *, bus_dma_segment_t *, int, int);
85 static int	rt2860_alloc_tx_ring(struct rt2860_softc *,
86 		    struct rt2860_tx_ring *);
87 static void	rt2860_reset_tx_ring(struct rt2860_softc *,
88 		    struct rt2860_tx_ring *);
89 static void	rt2860_free_tx_ring(struct rt2860_softc *,
90 		    struct rt2860_tx_ring *);
91 static int	rt2860_alloc_tx_pool(struct rt2860_softc *);
92 static void	rt2860_free_tx_pool(struct rt2860_softc *);
93 static int	rt2860_alloc_rx_ring(struct rt2860_softc *,
94 		    struct rt2860_rx_ring *);
95 static void	rt2860_reset_rx_ring(struct rt2860_softc *,
96 		    struct rt2860_rx_ring *);
97 static void	rt2860_free_rx_ring(struct rt2860_softc *,
98 		    struct rt2860_rx_ring *);
99 static void	rt2860_updatestats(struct rt2860_softc *);
100 static void	rt2860_newassoc(struct ieee80211_node *, int);
101 static void	rt2860_node_free(struct ieee80211_node *);
102 #ifdef IEEE80211_HT
103 static int	rt2860_ampdu_rx_start(struct ieee80211com *,
104 		    struct ieee80211_node *, uint8_t);
105 static void	rt2860_ampdu_rx_stop(struct ieee80211com *,
106 		    struct ieee80211_node *, uint8_t);
107 #endif
108 static int	rt2860_newstate(struct ieee80211vap *, enum ieee80211_state,
109 		    int);
110 static uint16_t	rt3090_efuse_read_2(struct rt2860_softc *, uint16_t);
111 static uint16_t	rt2860_eeprom_read_2(struct rt2860_softc *, uint16_t);
112 static void	rt2860_intr_coherent(struct rt2860_softc *);
113 static void	rt2860_drain_stats_fifo(struct rt2860_softc *);
114 static void	rt2860_tx_intr(struct rt2860_softc *, int);
115 static void	rt2860_rx_intr(struct rt2860_softc *);
116 static void	rt2860_tbtt_intr(struct rt2860_softc *);
117 static void	rt2860_gp_intr(struct rt2860_softc *);
118 static int	rt2860_tx(struct rt2860_softc *, struct mbuf *,
119 		    struct ieee80211_node *);
120 static int	rt2860_raw_xmit(struct ieee80211_node *, struct mbuf *,
121 		    const struct ieee80211_bpf_params *);
122 static int	rt2860_tx_raw(struct rt2860_softc *, struct mbuf *,
123 		    struct ieee80211_node *,
124 		    const struct ieee80211_bpf_params *params);
125 static int	rt2860_transmit(struct ieee80211com *, struct mbuf *);
126 static void	rt2860_start(struct rt2860_softc *);
127 static void	rt2860_watchdog(void *);
128 static void	rt2860_parent(struct ieee80211com *);
129 static void	rt2860_mcu_bbp_write(struct rt2860_softc *, uint8_t, uint8_t);
130 static uint8_t	rt2860_mcu_bbp_read(struct rt2860_softc *, uint8_t);
131 static void	rt2860_rf_write(struct rt2860_softc *, uint8_t, uint32_t);
132 static uint8_t	rt3090_rf_read(struct rt2860_softc *, uint8_t);
133 static void	rt3090_rf_write(struct rt2860_softc *, uint8_t, uint8_t);
134 static int	rt2860_mcu_cmd(struct rt2860_softc *, uint8_t, uint16_t, int);
135 static void	rt2860_enable_mrr(struct rt2860_softc *);
136 static void	rt2860_set_txpreamble(struct rt2860_softc *);
137 static void	rt2860_set_basicrates(struct rt2860_softc *,
138 		    const struct ieee80211_rateset *);
139 static void	rt2860_scan_start(struct ieee80211com *);
140 static void	rt2860_scan_end(struct ieee80211com *);
141 static void	rt2860_set_channel(struct ieee80211com *);
142 static void	rt2860_select_chan_group(struct rt2860_softc *, int);
143 static void	rt2860_set_chan(struct rt2860_softc *, u_int);
144 static void	rt3090_set_chan(struct rt2860_softc *, u_int);
145 static void	rt5390_set_chan(struct rt2860_softc *, u_int);
146 static int	rt3090_rf_init(struct rt2860_softc *);
147 static void	rt5390_rf_init(struct rt2860_softc *);
148 static void	rt3090_rf_wakeup(struct rt2860_softc *);
149 static void	rt5390_rf_wakeup(struct rt2860_softc *);
150 static int	rt3090_filter_calib(struct rt2860_softc *, uint8_t, uint8_t,
151 		    uint8_t *);
152 static void	rt3090_rf_setup(struct rt2860_softc *);
153 static void	rt2860_set_leds(struct rt2860_softc *, uint16_t);
154 static void	rt2860_set_gp_timer(struct rt2860_softc *, int);
155 static void	rt2860_set_bssid(struct rt2860_softc *, const uint8_t *);
156 static void	rt2860_set_macaddr(struct rt2860_softc *, const uint8_t *);
157 static void	rt2860_update_promisc(struct ieee80211com *);
158 static void	rt2860_updateslot(struct ieee80211com *);
159 static void	rt2860_updateprot(struct rt2860_softc *);
160 static int	rt2860_updateedca(struct ieee80211com *);
161 #ifdef HW_CRYPTO
162 static int	rt2860_set_key(struct ieee80211com *, struct ieee80211_node *,
163 		    struct ieee80211_key *);
164 static void	rt2860_delete_key(struct ieee80211com *,
165 		    struct ieee80211_node *, struct ieee80211_key *);
166 #endif
167 static int8_t	rt2860_rssi2dbm(struct rt2860_softc *, uint8_t, uint8_t);
168 static const char *rt2860_get_rf(uint8_t);
169 static int	rt2860_read_eeprom(struct rt2860_softc *,
170 		    uint8_t macaddr[IEEE80211_ADDR_LEN]);
171 static int	rt2860_bbp_init(struct rt2860_softc *);
172 static void	rt5390_bbp_init(struct rt2860_softc *);
173 static int	rt2860_txrx_enable(struct rt2860_softc *);
174 static void	rt2860_init(void *);
175 static void	rt2860_init_locked(struct rt2860_softc *);
176 static void	rt2860_stop(void *);
177 static void	rt2860_stop_locked(struct rt2860_softc *);
178 static int	rt2860_load_microcode(struct rt2860_softc *);
179 #ifdef NOT_YET
180 static void	rt2860_calib(struct rt2860_softc *);
181 #endif
182 static void	rt3090_set_rx_antenna(struct rt2860_softc *, int);
183 static void	rt2860_switch_chan(struct rt2860_softc *,
184 		    struct ieee80211_channel *);
185 static int	rt2860_setup_beacon(struct rt2860_softc *,
186 		    struct ieee80211vap *);
187 static void	rt2860_enable_tsf_sync(struct rt2860_softc *);
188 
189 static const struct {
190 	uint32_t	reg;
191 	uint32_t	val;
192 } rt2860_def_mac[] = {
193 	RT2860_DEF_MAC
194 };
195 
196 static const struct {
197 	uint8_t	reg;
198 	uint8_t	val;
199 } rt2860_def_bbp[] = {
200 	RT2860_DEF_BBP
201 }, rt5390_def_bbp[] = {
202 	RT5390_DEF_BBP
203 };
204 
205 static const struct rfprog {
206 	uint8_t		chan;
207 	uint32_t	r1, r2, r3, r4;
208 } rt2860_rf2850[] = {
209 	RT2860_RF2850
210 };
211 
212 struct {
213 	uint8_t	n, r, k;
214 } rt3090_freqs[] = {
215 	RT3070_RF3052
216 };
217 
218 static const struct {
219 	uint8_t	reg;
220 	uint8_t	val;
221 } rt3090_def_rf[] = {
222 	RT3070_DEF_RF
223 }, rt5390_def_rf[] = {
224 	RT5390_DEF_RF
225 }, rt5392_def_rf[] = {
226 	RT5392_DEF_RF
227 };
228 
229 int
230 rt2860_attach(device_t dev, int id)
231 {
232 	struct rt2860_softc *sc = device_get_softc(dev);
233 	struct ieee80211com *ic = &sc->sc_ic;
234 	uint32_t tmp;
235 	int error, ntries, qid;
236 	uint8_t bands;
237 
238 	sc->sc_dev = dev;
239 	sc->sc_debug = 0;
240 
241 	mtx_init(&sc->sc_mtx, device_get_nameunit(dev), MTX_NETWORK_LOCK,
242 	    MTX_DEF | MTX_RECURSE);
243 
244 	callout_init_mtx(&sc->watchdog_ch, &sc->sc_mtx, 0);
245 	mbufq_init(&sc->sc_snd, ifqmaxlen);
246 
247 	/* wait for NIC to initialize */
248 	for (ntries = 0; ntries < 100; ntries++) {
249 		tmp = RAL_READ(sc, RT2860_ASIC_VER_ID);
250 		if (tmp != 0 && tmp != 0xffffffff)
251 			break;
252 		DELAY(10);
253 	}
254 	if (ntries == 100) {
255 		device_printf(sc->sc_dev,
256 		    "timeout waiting for NIC to initialize\n");
257 		error = EIO;
258 		goto fail1;
259 	}
260 	sc->mac_ver = tmp >> 16;
261 	sc->mac_rev = tmp & 0xffff;
262 
263 	if (sc->mac_ver != 0x2860 &&
264 	    (id == 0x0681 || id == 0x0781 || id == 0x1059))
265 		sc->sc_flags |= RT2860_ADVANCED_PS;
266 
267 	/* retrieve RF rev. no and various other things from EEPROM */
268 	rt2860_read_eeprom(sc, ic->ic_macaddr);
269 	device_printf(sc->sc_dev, "MAC/BBP RT%X (rev 0x%04X), "
270 	    "RF %s (MIMO %dT%dR), address %6D\n",
271 	    sc->mac_ver, sc->mac_rev, rt2860_get_rf(sc->rf_rev),
272 	    sc->ntxchains, sc->nrxchains, ic->ic_macaddr, ":");
273 
274 	/*
275 	 * Allocate Tx (4 EDCAs + HCCA + Mgt) and Rx rings.
276 	 */
277 	for (qid = 0; qid < 6; qid++) {
278 		if ((error = rt2860_alloc_tx_ring(sc, &sc->txq[qid])) != 0) {
279 			device_printf(sc->sc_dev,
280 			    "could not allocate Tx ring %d\n", qid);
281 			goto fail2;
282 		}
283 	}
284 
285 	if ((error = rt2860_alloc_rx_ring(sc, &sc->rxq)) != 0) {
286 		device_printf(sc->sc_dev, "could not allocate Rx ring\n");
287 		goto fail2;
288 	}
289 
290 	if ((error = rt2860_alloc_tx_pool(sc)) != 0) {
291 		device_printf(sc->sc_dev, "could not allocate Tx pool\n");
292 		goto fail3;
293 	}
294 
295 	/* mgmt ring is broken on RT2860C, use EDCA AC VO ring instead */
296 	sc->mgtqid = (sc->mac_ver == 0x2860 && sc->mac_rev == 0x0100) ?
297 	    WME_AC_VO : 5;
298 
299 	ic->ic_softc = sc;
300 	ic->ic_name = device_get_nameunit(dev);
301 	ic->ic_opmode = IEEE80211_M_STA;
302 	ic->ic_phytype = IEEE80211_T_OFDM; /* not only, but not used */
303 
304 	/* set device capabilities */
305 	ic->ic_caps =
306 		  IEEE80211_C_STA		/* station mode */
307 		| IEEE80211_C_IBSS		/* ibss, nee adhoc, mode */
308 		| IEEE80211_C_HOSTAP		/* hostap mode */
309 		| IEEE80211_C_MONITOR		/* monitor mode */
310 		| IEEE80211_C_AHDEMO		/* adhoc demo mode */
311 		| IEEE80211_C_WDS		/* 4-address traffic works */
312 		| IEEE80211_C_MBSS		/* mesh point link mode */
313 		| IEEE80211_C_SHPREAMBLE	/* short preamble supported */
314 		| IEEE80211_C_SHSLOT		/* short slot time supported */
315 		| IEEE80211_C_WPA		/* capable of WPA1+WPA2 */
316 #if 0
317 		| IEEE80211_C_BGSCAN		/* capable of bg scanning */
318 #endif
319 		| IEEE80211_C_WME		/* 802.11e */
320 		;
321 
322 	bands = 0;
323 	setbit(&bands, IEEE80211_MODE_11B);
324 	setbit(&bands, IEEE80211_MODE_11G);
325 	if (sc->rf_rev == RT2860_RF_2750 || sc->rf_rev == RT2860_RF_2850)
326 		setbit(&bands, IEEE80211_MODE_11A);
327 	ieee80211_init_channels(ic, NULL, &bands);
328 
329 	ieee80211_ifattach(ic);
330 
331 	ic->ic_wme.wme_update = rt2860_updateedca;
332 	ic->ic_scan_start = rt2860_scan_start;
333 	ic->ic_scan_end = rt2860_scan_end;
334 	ic->ic_set_channel = rt2860_set_channel;
335 	ic->ic_updateslot = rt2860_updateslot;
336 	ic->ic_update_promisc = rt2860_update_promisc;
337 	ic->ic_raw_xmit = rt2860_raw_xmit;
338 	sc->sc_node_free = ic->ic_node_free;
339 	ic->ic_node_free = rt2860_node_free;
340 	ic->ic_newassoc = rt2860_newassoc;
341 	ic->ic_transmit = rt2860_transmit;
342 	ic->ic_parent = rt2860_parent;
343 	ic->ic_vap_create = rt2860_vap_create;
344 	ic->ic_vap_delete = rt2860_vap_delete;
345 
346 	ieee80211_radiotap_attach(ic,
347 	    &sc->sc_txtap.wt_ihdr, sizeof(sc->sc_txtap),
348 		RT2860_TX_RADIOTAP_PRESENT,
349 	    &sc->sc_rxtap.wr_ihdr, sizeof(sc->sc_rxtap),
350 		RT2860_RX_RADIOTAP_PRESENT);
351 
352 #ifdef RAL_DEBUG
353 	SYSCTL_ADD_INT(device_get_sysctl_ctx(dev),
354 	    SYSCTL_CHILDREN(device_get_sysctl_tree(dev)), OID_AUTO,
355 	    "debug", CTLFLAG_RW, &sc->sc_debug, 0, "debug msgs");
356 #endif
357 	if (bootverbose)
358 		ieee80211_announce(ic);
359 
360 	return 0;
361 
362 fail3:	rt2860_free_rx_ring(sc, &sc->rxq);
363 fail2:	while (--qid >= 0)
364 		rt2860_free_tx_ring(sc, &sc->txq[qid]);
365 fail1:	mtx_destroy(&sc->sc_mtx);
366 	return error;
367 }
368 
369 int
370 rt2860_detach(void *xsc)
371 {
372 	struct rt2860_softc *sc = xsc;
373 	struct ieee80211com *ic = &sc->sc_ic;
374 	int qid;
375 
376 	RAL_LOCK(sc);
377 	rt2860_stop_locked(sc);
378 	RAL_UNLOCK(sc);
379 
380 	ieee80211_ifdetach(ic);
381 	mbufq_drain(&sc->sc_snd);
382 	for (qid = 0; qid < 6; qid++)
383 		rt2860_free_tx_ring(sc, &sc->txq[qid]);
384 	rt2860_free_rx_ring(sc, &sc->rxq);
385 	rt2860_free_tx_pool(sc);
386 
387 	mtx_destroy(&sc->sc_mtx);
388 
389 	return 0;
390 }
391 
392 void
393 rt2860_shutdown(void *xsc)
394 {
395 	struct rt2860_softc *sc = xsc;
396 
397 	rt2860_stop(sc);
398 }
399 
400 void
401 rt2860_suspend(void *xsc)
402 {
403 	struct rt2860_softc *sc = xsc;
404 
405 	rt2860_stop(sc);
406 }
407 
408 void
409 rt2860_resume(void *xsc)
410 {
411 	struct rt2860_softc *sc = xsc;
412 
413 	if (sc->sc_ic.ic_nrunning > 0)
414 		rt2860_init(sc);
415 }
416 
417 static struct ieee80211vap *
418 rt2860_vap_create(struct ieee80211com *ic, const char name[IFNAMSIZ], int unit,
419     enum ieee80211_opmode opmode, int flags,
420     const uint8_t bssid[IEEE80211_ADDR_LEN],
421     const uint8_t mac[IEEE80211_ADDR_LEN])
422 {
423 	struct rt2860_softc *sc = ic->ic_softc;
424 	struct rt2860_vap *rvp;
425 	struct ieee80211vap *vap;
426 
427 	switch (opmode) {
428 	case IEEE80211_M_STA:
429 	case IEEE80211_M_IBSS:
430 	case IEEE80211_M_AHDEMO:
431 	case IEEE80211_M_MONITOR:
432 	case IEEE80211_M_HOSTAP:
433 	case IEEE80211_M_MBSS:
434 		/* XXXRP: TBD */
435 		if (!TAILQ_EMPTY(&ic->ic_vaps)) {
436 			device_printf(sc->sc_dev, "only 1 vap supported\n");
437 			return NULL;
438 		}
439 		if (opmode == IEEE80211_M_STA)
440 			flags |= IEEE80211_CLONE_NOBEACONS;
441 		break;
442 	case IEEE80211_M_WDS:
443 		if (TAILQ_EMPTY(&ic->ic_vaps) ||
444 		    ic->ic_opmode != IEEE80211_M_HOSTAP) {
445 			device_printf(sc->sc_dev,
446 			    "wds only supported in ap mode\n");
447 			return NULL;
448 		}
449 		/*
450 		 * Silently remove any request for a unique
451 		 * bssid; WDS vap's always share the local
452 		 * mac address.
453 		 */
454 		flags &= ~IEEE80211_CLONE_BSSID;
455 		break;
456 	default:
457 		device_printf(sc->sc_dev, "unknown opmode %d\n", opmode);
458 		return NULL;
459 	}
460 	rvp = malloc(sizeof(struct rt2860_vap), M_80211_VAP, M_WAITOK | M_ZERO);
461 	vap = &rvp->ral_vap;
462 	ieee80211_vap_setup(ic, vap, name, unit, opmode, flags, bssid);
463 
464 	/* override state transition machine */
465 	rvp->ral_newstate = vap->iv_newstate;
466 	vap->iv_newstate = rt2860_newstate;
467 #if 0
468 	vap->iv_update_beacon = rt2860_beacon_update;
469 #endif
470 
471 	/* HW supports up to 255 STAs (0-254) in HostAP and IBSS modes */
472 	vap->iv_max_aid = min(IEEE80211_AID_MAX, RT2860_WCID_MAX);
473 
474 	ieee80211_ratectl_init(vap);
475 	/* complete setup */
476 	ieee80211_vap_attach(vap, ieee80211_media_change,
477 	    ieee80211_media_status, mac);
478 	if (TAILQ_FIRST(&ic->ic_vaps) == vap)
479 		ic->ic_opmode = opmode;
480 	return vap;
481 }
482 
483 static void
484 rt2860_vap_delete(struct ieee80211vap *vap)
485 {
486 	struct rt2860_vap *rvp = RT2860_VAP(vap);
487 
488 	ieee80211_ratectl_deinit(vap);
489 	ieee80211_vap_detach(vap);
490 	free(rvp, M_80211_VAP);
491 }
492 
493 static void
494 rt2860_dma_map_addr(void *arg, bus_dma_segment_t *segs, int nseg, int error)
495 {
496 	if (error != 0)
497 		return;
498 
499 	KASSERT(nseg == 1, ("too many DMA segments, %d should be 1", nseg));
500 
501 	*(bus_addr_t *)arg = segs[0].ds_addr;
502 }
503 
504 
505 static int
506 rt2860_alloc_tx_ring(struct rt2860_softc *sc, struct rt2860_tx_ring *ring)
507 {
508 	int size, error;
509 
510 	size = RT2860_TX_RING_COUNT * sizeof (struct rt2860_txd);
511 
512 	error = bus_dma_tag_create(bus_get_dma_tag(sc->sc_dev), 16, 0,
513 	    BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL,
514 	    size, 1, size, 0, NULL, NULL, &ring->desc_dmat);
515 	if (error != 0) {
516 		device_printf(sc->sc_dev, "could not create desc DMA map\n");
517 		goto fail;
518 	}
519 
520 	error = bus_dmamem_alloc(ring->desc_dmat, (void **)&ring->txd,
521 	    BUS_DMA_NOWAIT | BUS_DMA_ZERO, &ring->desc_map);
522 	if (error != 0) {
523 		device_printf(sc->sc_dev, "could not allocate DMA memory\n");
524 		goto fail;
525 	}
526 
527 	error = bus_dmamap_load(ring->desc_dmat, ring->desc_map, ring->txd,
528 	    size, rt2860_dma_map_addr, &ring->paddr, 0);
529 	if (error != 0) {
530 		device_printf(sc->sc_dev, "could not load desc DMA map\n");
531 		goto fail;
532 	}
533 
534 	bus_dmamap_sync(ring->desc_dmat, ring->desc_map, BUS_DMASYNC_PREWRITE);
535 
536 	return 0;
537 
538 fail:	rt2860_free_tx_ring(sc, ring);
539 	return error;
540 }
541 
542 void
543 rt2860_reset_tx_ring(struct rt2860_softc *sc, struct rt2860_tx_ring *ring)
544 {
545 	struct rt2860_tx_data *data;
546 	int i;
547 
548 	for (i = 0; i < RT2860_TX_RING_COUNT; i++) {
549 		if ((data = ring->data[i]) == NULL)
550 			continue;	/* nothing mapped in this slot */
551 
552 		if (data->m != NULL) {
553 			bus_dmamap_sync(sc->txwi_dmat, data->map,
554 			    BUS_DMASYNC_POSTWRITE);
555 			bus_dmamap_unload(sc->txwi_dmat, data->map);
556 			m_freem(data->m);
557 			data->m = NULL;
558 		}
559 		if (data->ni != NULL) {
560 			ieee80211_free_node(data->ni);
561 			data->ni = NULL;
562 		}
563 
564 		SLIST_INSERT_HEAD(&sc->data_pool, data, next);
565 		ring->data[i] = NULL;
566 	}
567 
568 	ring->queued = 0;
569 	ring->cur = ring->next = 0;
570 }
571 
572 void
573 rt2860_free_tx_ring(struct rt2860_softc *sc, struct rt2860_tx_ring *ring)
574 {
575 	struct rt2860_tx_data *data;
576 	int i;
577 
578 	if (ring->txd != NULL) {
579 		bus_dmamap_sync(ring->desc_dmat, ring->desc_map,
580 		    BUS_DMASYNC_POSTWRITE);
581 		bus_dmamap_unload(ring->desc_dmat, ring->desc_map);
582 		bus_dmamem_free(ring->desc_dmat, ring->txd, ring->desc_map);
583 	}
584 	if (ring->desc_dmat != NULL)
585 		bus_dma_tag_destroy(ring->desc_dmat);
586 
587 	for (i = 0; i < RT2860_TX_RING_COUNT; i++) {
588 		if ((data = ring->data[i]) == NULL)
589 			continue;	/* nothing mapped in this slot */
590 
591 		if (data->m != NULL) {
592 			bus_dmamap_sync(sc->txwi_dmat, data->map,
593 			    BUS_DMASYNC_POSTWRITE);
594 			bus_dmamap_unload(sc->txwi_dmat, data->map);
595 			m_freem(data->m);
596 		}
597 		if (data->ni != NULL)
598 			ieee80211_free_node(data->ni);
599 
600 		SLIST_INSERT_HEAD(&sc->data_pool, data, next);
601 	}
602 }
603 
604 /*
605  * Allocate a pool of TX Wireless Information blocks.
606  */
607 int
608 rt2860_alloc_tx_pool(struct rt2860_softc *sc)
609 {
610 	caddr_t vaddr;
611 	bus_addr_t paddr;
612 	int i, size, error;
613 
614 	size = RT2860_TX_POOL_COUNT * RT2860_TXWI_DMASZ;
615 
616 	/* init data_pool early in case of failure.. */
617 	SLIST_INIT(&sc->data_pool);
618 
619 	error = bus_dma_tag_create(bus_get_dma_tag(sc->sc_dev), 1, 0,
620 	    BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL,
621 	    size, 1, size, 0, NULL, NULL, &sc->txwi_dmat);
622 	if (error != 0) {
623 		device_printf(sc->sc_dev, "could not create txwi DMA tag\n");
624 		goto fail;
625 	}
626 
627 	error = bus_dmamem_alloc(sc->txwi_dmat, (void **)&sc->txwi_vaddr,
628 	    BUS_DMA_NOWAIT | BUS_DMA_ZERO, &sc->txwi_map);
629 	if (error != 0) {
630 		device_printf(sc->sc_dev, "could not allocate DMA memory\n");
631 		goto fail;
632 	}
633 
634 	error = bus_dmamap_load(sc->txwi_dmat, sc->txwi_map,
635 	    sc->txwi_vaddr, size, rt2860_dma_map_addr, &paddr, 0);
636 	if (error != 0) {
637 		device_printf(sc->sc_dev, "could not load txwi DMA map\n");
638 		goto fail;
639 	}
640 
641 	bus_dmamap_sync(sc->txwi_dmat, sc->txwi_map, BUS_DMASYNC_PREWRITE);
642 
643 	vaddr = sc->txwi_vaddr;
644 	for (i = 0; i < RT2860_TX_POOL_COUNT; i++) {
645 		struct rt2860_tx_data *data = &sc->data[i];
646 
647 		error = bus_dmamap_create(sc->txwi_dmat, 0, &data->map);
648 		if (error != 0) {
649 			device_printf(sc->sc_dev, "could not create DMA map\n");
650 			goto fail;
651 		}
652 		data->txwi = (struct rt2860_txwi *)vaddr;
653 		data->paddr = paddr;
654 		vaddr += RT2860_TXWI_DMASZ;
655 		paddr += RT2860_TXWI_DMASZ;
656 
657 		SLIST_INSERT_HEAD(&sc->data_pool, data, next);
658 	}
659 
660 	return 0;
661 
662 fail:	rt2860_free_tx_pool(sc);
663 	return error;
664 }
665 
666 void
667 rt2860_free_tx_pool(struct rt2860_softc *sc)
668 {
669 	if (sc->txwi_vaddr != NULL) {
670 		bus_dmamap_sync(sc->txwi_dmat, sc->txwi_map,
671 		    BUS_DMASYNC_POSTWRITE);
672 		bus_dmamap_unload(sc->txwi_dmat, sc->txwi_map);
673 		bus_dmamem_free(sc->txwi_dmat, sc->txwi_vaddr, sc->txwi_map);
674 	}
675 	if (sc->txwi_dmat != NULL)
676 		bus_dma_tag_destroy(sc->txwi_dmat);
677 
678 	while (!SLIST_EMPTY(&sc->data_pool)) {
679 		struct rt2860_tx_data *data;
680 		data = SLIST_FIRST(&sc->data_pool);
681 		bus_dmamap_destroy(sc->txwi_dmat, data->map);
682 		SLIST_REMOVE_HEAD(&sc->data_pool, next);
683 	}
684 }
685 
686 int
687 rt2860_alloc_rx_ring(struct rt2860_softc *sc, struct rt2860_rx_ring *ring)
688 {
689 	bus_addr_t physaddr;
690 	int i, size, error;
691 
692 	size = RT2860_RX_RING_COUNT * sizeof (struct rt2860_rxd);
693 
694 	error = bus_dma_tag_create(bus_get_dma_tag(sc->sc_dev), 16, 0,
695 	    BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL,
696 	    size, 1, size, 0, NULL, NULL, &ring->desc_dmat);
697 	if (error != 0) {
698 		device_printf(sc->sc_dev, "could not create desc DMA tag\n");
699 		goto fail;
700 	}
701 
702 	error = bus_dmamem_alloc(ring->desc_dmat, (void **)&ring->rxd,
703 	    BUS_DMA_NOWAIT | BUS_DMA_ZERO, &ring->desc_map);
704 	if (error != 0) {
705 		device_printf(sc->sc_dev, "could not allocate DMA memory\n");
706 		goto fail;
707 	}
708 
709 	error = bus_dmamap_load(ring->desc_dmat, ring->desc_map, ring->rxd,
710 	    size, rt2860_dma_map_addr, &ring->paddr, 0);
711 	if (error != 0) {
712 		device_printf(sc->sc_dev, "could not load desc DMA map\n");
713 		goto fail;
714 	}
715 
716 	error = bus_dma_tag_create(bus_get_dma_tag(sc->sc_dev), 1, 0,
717 	    BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL, MCLBYTES,
718 	    1, MCLBYTES, 0, NULL, NULL, &ring->data_dmat);
719 	if (error != 0) {
720 		device_printf(sc->sc_dev, "could not create data DMA tag\n");
721 		goto fail;
722 	}
723 
724 	for (i = 0; i < RT2860_RX_RING_COUNT; i++) {
725 		struct rt2860_rx_data *data = &ring->data[i];
726 		struct rt2860_rxd *rxd = &ring->rxd[i];
727 
728 		error = bus_dmamap_create(ring->data_dmat, 0, &data->map);
729 		if (error != 0) {
730 			device_printf(sc->sc_dev, "could not create DMA map\n");
731 			goto fail;
732 		}
733 
734 		data->m = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR);
735 		if (data->m == NULL) {
736 			device_printf(sc->sc_dev,
737 			    "could not allocate rx mbuf\n");
738 			error = ENOMEM;
739 			goto fail;
740 		}
741 
742 		error = bus_dmamap_load(ring->data_dmat, data->map,
743 		    mtod(data->m, void *), MCLBYTES, rt2860_dma_map_addr,
744 		    &physaddr, 0);
745 		if (error != 0) {
746 			device_printf(sc->sc_dev,
747 			    "could not load rx buf DMA map");
748 			goto fail;
749 		}
750 
751 		rxd->sdp0 = htole32(physaddr);
752 		rxd->sdl0 = htole16(MCLBYTES);
753 	}
754 
755 	bus_dmamap_sync(ring->desc_dmat, ring->desc_map, BUS_DMASYNC_PREWRITE);
756 
757 	return 0;
758 
759 fail:	rt2860_free_rx_ring(sc, ring);
760 	return error;
761 }
762 
763 void
764 rt2860_reset_rx_ring(struct rt2860_softc *sc, struct rt2860_rx_ring *ring)
765 {
766 	int i;
767 
768 	for (i = 0; i < RT2860_RX_RING_COUNT; i++)
769 		ring->rxd[i].sdl0 &= ~htole16(RT2860_RX_DDONE);
770 
771 	bus_dmamap_sync(ring->desc_dmat, ring->desc_map, BUS_DMASYNC_PREWRITE);
772 
773 	ring->cur = 0;
774 }
775 
776 void
777 rt2860_free_rx_ring(struct rt2860_softc *sc, struct rt2860_rx_ring *ring)
778 {
779 	int i;
780 
781 	if (ring->rxd != NULL) {
782 		bus_dmamap_sync(ring->desc_dmat, ring->desc_map,
783 		    BUS_DMASYNC_POSTWRITE);
784 		bus_dmamap_unload(ring->desc_dmat, ring->desc_map);
785 		bus_dmamem_free(ring->desc_dmat, ring->rxd, ring->desc_map);
786 	}
787 	if (ring->desc_dmat != NULL)
788 		bus_dma_tag_destroy(ring->desc_dmat);
789 
790 	for (i = 0; i < RT2860_RX_RING_COUNT; i++) {
791 		struct rt2860_rx_data *data = &ring->data[i];
792 
793 		if (data->m != NULL) {
794 			bus_dmamap_sync(ring->data_dmat, data->map,
795 			    BUS_DMASYNC_POSTREAD);
796 			bus_dmamap_unload(ring->data_dmat, data->map);
797 			m_freem(data->m);
798 		}
799 		if (data->map != NULL)
800 			bus_dmamap_destroy(ring->data_dmat, data->map);
801 	}
802 	if (ring->data_dmat != NULL)
803 		bus_dma_tag_destroy(ring->data_dmat);
804 }
805 
806 static void
807 rt2860_updatestats(struct rt2860_softc *sc)
808 {
809 	struct ieee80211com *ic = &sc->sc_ic;
810 
811 	/*
812 	 * In IBSS or HostAP modes (when the hardware sends beacons), the
813 	 * MAC can run into a livelock and start sending CTS-to-self frames
814 	 * like crazy if protection is enabled.  Fortunately, we can detect
815 	 * when such a situation occurs and reset the MAC.
816 	 */
817 	if (ic->ic_curmode != IEEE80211_M_STA) {
818 		/* check if we're in a livelock situation.. */
819 		uint32_t tmp = RAL_READ(sc, RT2860_DEBUG);
820 		if ((tmp & (1 << 29)) && (tmp & (1 << 7 | 1 << 5))) {
821 			/* ..and reset MAC/BBP for a while.. */
822 			DPRINTF(("CTS-to-self livelock detected\n"));
823 			RAL_WRITE(sc, RT2860_MAC_SYS_CTRL, RT2860_MAC_SRST);
824 			RAL_BARRIER_WRITE(sc);
825 			DELAY(1);
826 			RAL_WRITE(sc, RT2860_MAC_SYS_CTRL,
827 			    RT2860_MAC_RX_EN | RT2860_MAC_TX_EN);
828 		}
829 	}
830 }
831 
832 static void
833 rt2860_newassoc(struct ieee80211_node *ni, int isnew)
834 {
835 	struct ieee80211com *ic = ni->ni_ic;
836 	struct rt2860_softc *sc = ic->ic_softc;
837 	uint8_t wcid;
838 
839 	wcid = IEEE80211_AID(ni->ni_associd);
840 	if (isnew && ni->ni_associd != 0) {
841 		sc->wcid2ni[wcid] = ni;
842 
843 		/* init WCID table entry */
844 		RAL_WRITE_REGION_1(sc, RT2860_WCID_ENTRY(wcid),
845 		    ni->ni_macaddr, IEEE80211_ADDR_LEN);
846 	}
847 	DPRINTF(("new assoc isnew=%d addr=%s WCID=%d\n",
848 	    isnew, ether_sprintf(ni->ni_macaddr), wcid));
849 }
850 
851 static void
852 rt2860_node_free(struct ieee80211_node *ni)
853 {
854 	struct ieee80211com *ic = ni->ni_ic;
855 	struct rt2860_softc *sc = ic->ic_softc;
856 	uint8_t wcid;
857 
858 	if (ni->ni_associd != 0) {
859 		wcid = IEEE80211_AID(ni->ni_associd);
860 
861 		/* clear Rx WCID search table entry */
862 		RAL_SET_REGION_4(sc, RT2860_WCID_ENTRY(wcid), 0, 2);
863 	}
864 	sc->sc_node_free(ni);
865 }
866 
867 #ifdef IEEE80211_HT
868 static int
869 rt2860_ampdu_rx_start(struct ieee80211com *ic, struct ieee80211_node *ni,
870     uint8_t tid)
871 {
872 	struct rt2860_softc *sc = ic->ic_softc;
873 	uint8_t wcid = ((struct rt2860_node *)ni)->wcid;
874 	uint32_t tmp;
875 
876 	/* update BA session mask */
877 	tmp = RAL_READ(sc, RT2860_WCID_ENTRY(wcid) + 4);
878 	tmp |= (1 << tid) << 16;
879 	RAL_WRITE(sc, RT2860_WCID_ENTRY(wcid) + 4, tmp);
880 	return 0;
881 }
882 
883 static void
884 rt2860_ampdu_rx_stop(struct ieee80211com *ic, struct ieee80211_node *ni,
885     uint8_t tid)
886 {
887 	struct rt2860_softc *sc = ic->ic_softc;
888 	uint8_t wcid = ((struct rt2860_node *)ni)->wcid;
889 	uint32_t tmp;
890 
891 	/* update BA session mask */
892 	tmp = RAL_READ(sc, RT2860_WCID_ENTRY(wcid) + 4);
893 	tmp &= ~((1 << tid) << 16);
894 	RAL_WRITE(sc, RT2860_WCID_ENTRY(wcid) + 4, tmp);
895 }
896 #endif
897 
898 int
899 rt2860_newstate(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
900 {
901 	struct rt2860_vap *rvp = RT2860_VAP(vap);
902 	struct ieee80211com *ic = vap->iv_ic;
903 	struct rt2860_softc *sc = ic->ic_softc;
904 	uint32_t tmp;
905 	int error;
906 
907 	if (vap->iv_state == IEEE80211_S_RUN) {
908 		/* turn link LED off */
909 		rt2860_set_leds(sc, RT2860_LED_RADIO);
910 	}
911 
912 	if (nstate == IEEE80211_S_INIT && vap->iv_state == IEEE80211_S_RUN) {
913 		/* abort TSF synchronization */
914 		tmp = RAL_READ(sc, RT2860_BCN_TIME_CFG);
915 		RAL_WRITE(sc, RT2860_BCN_TIME_CFG,
916 		    tmp & ~(RT2860_BCN_TX_EN | RT2860_TSF_TIMER_EN |
917 		    RT2860_TBTT_TIMER_EN));
918 	}
919 
920 	rt2860_set_gp_timer(sc, 0);
921 
922 	error = rvp->ral_newstate(vap, nstate, arg);
923 	if (error != 0)
924 		return (error);
925 
926 	if (nstate == IEEE80211_S_RUN) {
927 		struct ieee80211_node *ni = vap->iv_bss;
928 
929 		if (ic->ic_opmode != IEEE80211_M_MONITOR) {
930 			rt2860_enable_mrr(sc);
931 			rt2860_set_txpreamble(sc);
932 			rt2860_set_basicrates(sc, &ni->ni_rates);
933 			rt2860_set_bssid(sc, ni->ni_bssid);
934 		}
935 
936 		if (vap->iv_opmode == IEEE80211_M_HOSTAP ||
937 		    vap->iv_opmode == IEEE80211_M_IBSS ||
938 		    vap->iv_opmode == IEEE80211_M_MBSS) {
939 			error = rt2860_setup_beacon(sc, vap);
940 			if (error != 0)
941 				return error;
942 		}
943 
944 		if (ic->ic_opmode != IEEE80211_M_MONITOR) {
945 			rt2860_enable_tsf_sync(sc);
946 			rt2860_set_gp_timer(sc, 500);
947 		}
948 
949 		/* turn link LED on */
950 		rt2860_set_leds(sc, RT2860_LED_RADIO |
951 		    (IEEE80211_IS_CHAN_2GHZ(ni->ni_chan) ?
952 		     RT2860_LED_LINK_2GHZ : RT2860_LED_LINK_5GHZ));
953 	}
954 	return error;
955 }
956 
957 /* Read 16-bit from eFUSE ROM (>=RT3071 only.) */
958 static uint16_t
959 rt3090_efuse_read_2(struct rt2860_softc *sc, uint16_t addr)
960 {
961 	uint32_t tmp;
962 	uint16_t reg;
963 	int ntries;
964 
965 	addr *= 2;
966 	/*-
967 	 * Read one 16-byte block into registers EFUSE_DATA[0-3]:
968 	 * DATA0: F E D C
969 	 * DATA1: B A 9 8
970 	 * DATA2: 7 6 5 4
971 	 * DATA3: 3 2 1 0
972 	 */
973 	tmp = RAL_READ(sc, RT3070_EFUSE_CTRL);
974 	tmp &= ~(RT3070_EFSROM_MODE_MASK | RT3070_EFSROM_AIN_MASK);
975 	tmp |= (addr & ~0xf) << RT3070_EFSROM_AIN_SHIFT | RT3070_EFSROM_KICK;
976 	RAL_WRITE(sc, RT3070_EFUSE_CTRL, tmp);
977 	for (ntries = 0; ntries < 500; ntries++) {
978 		tmp = RAL_READ(sc, RT3070_EFUSE_CTRL);
979 		if (!(tmp & RT3070_EFSROM_KICK))
980 			break;
981 		DELAY(2);
982 	}
983 	if (ntries == 500)
984 		return 0xffff;
985 
986 	if ((tmp & RT3070_EFUSE_AOUT_MASK) == RT3070_EFUSE_AOUT_MASK)
987 		return 0xffff;	/* address not found */
988 
989 	/* determine to which 32-bit register our 16-bit word belongs */
990 	reg = RT3070_EFUSE_DATA3 - (addr & 0xc);
991 	tmp = RAL_READ(sc, reg);
992 
993 	return (addr & 2) ? tmp >> 16 : tmp & 0xffff;
994 }
995 
996 /*
997  * Read 16 bits at address 'addr' from the serial EEPROM (either 93C46,
998  * 93C66 or 93C86).
999  */
1000 static uint16_t
1001 rt2860_eeprom_read_2(struct rt2860_softc *sc, uint16_t addr)
1002 {
1003 	uint32_t tmp;
1004 	uint16_t val;
1005 	int n;
1006 
1007 	/* clock C once before the first command */
1008 	RT2860_EEPROM_CTL(sc, 0);
1009 
1010 	RT2860_EEPROM_CTL(sc, RT2860_S);
1011 	RT2860_EEPROM_CTL(sc, RT2860_S | RT2860_C);
1012 	RT2860_EEPROM_CTL(sc, RT2860_S);
1013 
1014 	/* write start bit (1) */
1015 	RT2860_EEPROM_CTL(sc, RT2860_S | RT2860_D);
1016 	RT2860_EEPROM_CTL(sc, RT2860_S | RT2860_D | RT2860_C);
1017 
1018 	/* write READ opcode (10) */
1019 	RT2860_EEPROM_CTL(sc, RT2860_S | RT2860_D);
1020 	RT2860_EEPROM_CTL(sc, RT2860_S | RT2860_D | RT2860_C);
1021 	RT2860_EEPROM_CTL(sc, RT2860_S);
1022 	RT2860_EEPROM_CTL(sc, RT2860_S | RT2860_C);
1023 
1024 	/* write address (A5-A0 or A7-A0) */
1025 	n = ((RAL_READ(sc, RT2860_PCI_EECTRL) & 0x30) == 0) ? 5 : 7;
1026 	for (; n >= 0; n--) {
1027 		RT2860_EEPROM_CTL(sc, RT2860_S |
1028 		    (((addr >> n) & 1) << RT2860_SHIFT_D));
1029 		RT2860_EEPROM_CTL(sc, RT2860_S |
1030 		    (((addr >> n) & 1) << RT2860_SHIFT_D) | RT2860_C);
1031 	}
1032 
1033 	RT2860_EEPROM_CTL(sc, RT2860_S);
1034 
1035 	/* read data Q15-Q0 */
1036 	val = 0;
1037 	for (n = 15; n >= 0; n--) {
1038 		RT2860_EEPROM_CTL(sc, RT2860_S | RT2860_C);
1039 		tmp = RAL_READ(sc, RT2860_PCI_EECTRL);
1040 		val |= ((tmp & RT2860_Q) >> RT2860_SHIFT_Q) << n;
1041 		RT2860_EEPROM_CTL(sc, RT2860_S);
1042 	}
1043 
1044 	RT2860_EEPROM_CTL(sc, 0);
1045 
1046 	/* clear Chip Select and clock C */
1047 	RT2860_EEPROM_CTL(sc, RT2860_S);
1048 	RT2860_EEPROM_CTL(sc, 0);
1049 	RT2860_EEPROM_CTL(sc, RT2860_C);
1050 
1051 	return val;
1052 }
1053 
1054 static __inline uint16_t
1055 rt2860_srom_read(struct rt2860_softc *sc, uint8_t addr)
1056 {
1057 	/* either eFUSE ROM or EEPROM */
1058 	return sc->sc_srom_read(sc, addr);
1059 }
1060 
1061 static void
1062 rt2860_intr_coherent(struct rt2860_softc *sc)
1063 {
1064 	uint32_t tmp;
1065 
1066 	/* DMA finds data coherent event when checking the DDONE bit */
1067 
1068 	DPRINTF(("Tx/Rx Coherent interrupt\n"));
1069 
1070 	/* restart DMA engine */
1071 	tmp = RAL_READ(sc, RT2860_WPDMA_GLO_CFG);
1072 	tmp &= ~(RT2860_TX_WB_DDONE | RT2860_RX_DMA_EN | RT2860_TX_DMA_EN);
1073 	RAL_WRITE(sc, RT2860_WPDMA_GLO_CFG, tmp);
1074 
1075 	(void)rt2860_txrx_enable(sc);
1076 }
1077 
1078 static void
1079 rt2860_drain_stats_fifo(struct rt2860_softc *sc)
1080 {
1081 	struct ieee80211_node *ni;
1082 	uint32_t stat;
1083 	int retrycnt;
1084 	uint8_t wcid, mcs, pid;
1085 
1086 	/* drain Tx status FIFO (maxsize = 16) */
1087 	while ((stat = RAL_READ(sc, RT2860_TX_STAT_FIFO)) & RT2860_TXQ_VLD) {
1088 		DPRINTFN(4, ("tx stat 0x%08x\n", stat));
1089 
1090 		wcid = (stat >> RT2860_TXQ_WCID_SHIFT) & 0xff;
1091 		ni = sc->wcid2ni[wcid];
1092 
1093 		/* if no ACK was requested, no feedback is available */
1094 		if (!(stat & RT2860_TXQ_ACKREQ) || wcid == 0xff || ni == NULL)
1095 			continue;
1096 
1097 		/* update per-STA AMRR stats */
1098 		if (stat & RT2860_TXQ_OK) {
1099 			/*
1100 			 * Check if there were retries, ie if the Tx success
1101 			 * rate is different from the requested rate.  Note
1102 			 * that it works only because we do not allow rate
1103 			 * fallback from OFDM to CCK.
1104 			 */
1105 			mcs = (stat >> RT2860_TXQ_MCS_SHIFT) & 0x7f;
1106 			pid = (stat >> RT2860_TXQ_PID_SHIFT) & 0xf;
1107 			if (mcs + 1 != pid)
1108 				retrycnt = 1;
1109 			else
1110 				retrycnt = 0;
1111 			ieee80211_ratectl_tx_complete(ni->ni_vap, ni,
1112 			    IEEE80211_RATECTL_TX_SUCCESS, &retrycnt, NULL);
1113 		} else {
1114 			ieee80211_ratectl_tx_complete(ni->ni_vap, ni,
1115 			    IEEE80211_RATECTL_TX_FAILURE, &retrycnt, NULL);
1116 			if_inc_counter(ni->ni_vap->iv_ifp,
1117 			    IFCOUNTER_OERRORS, 1);
1118 		}
1119 	}
1120 }
1121 
1122 static void
1123 rt2860_tx_intr(struct rt2860_softc *sc, int qid)
1124 {
1125 	struct rt2860_tx_ring *ring = &sc->txq[qid];
1126 	uint32_t hw;
1127 
1128 	rt2860_drain_stats_fifo(sc);
1129 
1130 	hw = RAL_READ(sc, RT2860_TX_DTX_IDX(qid));
1131 	while (ring->next != hw) {
1132 		struct rt2860_tx_data *data = ring->data[ring->next];
1133 
1134 		if (data != NULL) {
1135 			bus_dmamap_sync(sc->txwi_dmat, data->map,
1136 			    BUS_DMASYNC_POSTWRITE);
1137 			bus_dmamap_unload(sc->txwi_dmat, data->map);
1138 			if (data->m->m_flags & M_TXCB) {
1139 				ieee80211_process_callback(data->ni, data->m,
1140 				    0);
1141 			}
1142 			ieee80211_tx_complete(data->ni, data->m, 0);
1143 			data->ni = NULL;
1144 			data->m = NULL;
1145 			SLIST_INSERT_HEAD(&sc->data_pool, data, next);
1146 			ring->data[ring->next] = NULL;
1147 		}
1148 		ring->queued--;
1149 		ring->next = (ring->next + 1) % RT2860_TX_RING_COUNT;
1150 	}
1151 
1152 	sc->sc_tx_timer = 0;
1153 	if (ring->queued < RT2860_TX_RING_COUNT)
1154 		sc->qfullmsk &= ~(1 << qid);
1155 	rt2860_start(sc);
1156 }
1157 
1158 /*
1159  * Return the Rx chain with the highest RSSI for a given frame.
1160  */
1161 static __inline uint8_t
1162 rt2860_maxrssi_chain(struct rt2860_softc *sc, const struct rt2860_rxwi *rxwi)
1163 {
1164 	uint8_t rxchain = 0;
1165 
1166 	if (sc->nrxchains > 1) {
1167 		if (rxwi->rssi[1] > rxwi->rssi[rxchain])
1168 			rxchain = 1;
1169 		if (sc->nrxchains > 2)
1170 			if (rxwi->rssi[2] > rxwi->rssi[rxchain])
1171 				rxchain = 2;
1172 	}
1173 	return rxchain;
1174 }
1175 
1176 static void
1177 rt2860_rx_intr(struct rt2860_softc *sc)
1178 {
1179 	struct rt2860_rx_radiotap_header *tap;
1180 	struct ieee80211com *ic = &sc->sc_ic;
1181 	struct ieee80211_frame *wh;
1182 	struct ieee80211_node *ni;
1183 	struct mbuf *m, *m1;
1184 	bus_addr_t physaddr;
1185 	uint32_t hw;
1186 	uint16_t phy;
1187 	uint8_t ant;
1188 	int8_t rssi, nf;
1189 	int error;
1190 
1191 	hw = RAL_READ(sc, RT2860_FS_DRX_IDX) & 0xfff;
1192 	while (sc->rxq.cur != hw) {
1193 		struct rt2860_rx_data *data = &sc->rxq.data[sc->rxq.cur];
1194 		struct rt2860_rxd *rxd = &sc->rxq.rxd[sc->rxq.cur];
1195 		struct rt2860_rxwi *rxwi;
1196 
1197 		bus_dmamap_sync(sc->rxq.desc_dmat, sc->rxq.desc_map,
1198 		    BUS_DMASYNC_POSTREAD);
1199 
1200 		if (__predict_false(!(rxd->sdl0 & htole16(RT2860_RX_DDONE)))) {
1201 			DPRINTF(("RXD DDONE bit not set!\n"));
1202 			break;	/* should not happen */
1203 		}
1204 
1205 		if (__predict_false(rxd->flags &
1206 		    htole32(RT2860_RX_CRCERR | RT2860_RX_ICVERR))) {
1207 			counter_u64_add(ic->ic_ierrors, 1);
1208 			goto skip;
1209 		}
1210 
1211 #ifdef HW_CRYPTO
1212 		if (__predict_false(rxd->flags & htole32(RT2860_RX_MICERR))) {
1213 			/* report MIC failures to net80211 for TKIP */
1214 			ic->ic_stats.is_rx_locmicfail++;
1215 			ieee80211_michael_mic_failure(ic, 0/* XXX */);
1216 			counter_u64_add(ic->ic_ierrors, 1);
1217 			goto skip;
1218 		}
1219 #endif
1220 
1221 		m1 = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR);
1222 		if (__predict_false(m1 == NULL)) {
1223 			counter_u64_add(ic->ic_ierrors, 1);
1224 			goto skip;
1225 		}
1226 
1227 		bus_dmamap_sync(sc->rxq.data_dmat, data->map,
1228 		    BUS_DMASYNC_POSTREAD);
1229 		bus_dmamap_unload(sc->rxq.data_dmat, data->map);
1230 
1231 		error = bus_dmamap_load(sc->rxq.data_dmat, data->map,
1232 		    mtod(m1, void *), MCLBYTES, rt2860_dma_map_addr,
1233 		    &physaddr, 0);
1234 		if (__predict_false(error != 0)) {
1235 			m_freem(m1);
1236 
1237 			/* try to reload the old mbuf */
1238 			error = bus_dmamap_load(sc->rxq.data_dmat, data->map,
1239 			    mtod(data->m, void *), MCLBYTES,
1240 			    rt2860_dma_map_addr, &physaddr, 0);
1241 			if (__predict_false(error != 0)) {
1242 				panic("%s: could not load old rx mbuf",
1243 				    device_get_name(sc->sc_dev));
1244 			}
1245 			/* physical address may have changed */
1246 			rxd->sdp0 = htole32(physaddr);
1247 			counter_u64_add(ic->ic_ierrors, 1);
1248 			goto skip;
1249 		}
1250 
1251 		/*
1252 		 * New mbuf successfully loaded, update Rx ring and continue
1253 		 * processing.
1254 		 */
1255 		m = data->m;
1256 		data->m = m1;
1257 		rxd->sdp0 = htole32(physaddr);
1258 
1259 		rxwi = mtod(m, struct rt2860_rxwi *);
1260 
1261 		/* finalize mbuf */
1262 		m->m_data = (caddr_t)(rxwi + 1);
1263 		m->m_pkthdr.len = m->m_len = le16toh(rxwi->len) & 0xfff;
1264 
1265 		wh = mtod(m, struct ieee80211_frame *);
1266 #ifdef HW_CRYPTO
1267 		if (wh->i_fc[1] & IEEE80211_FC1_PROTECTED) {
1268 			/* frame is decrypted by hardware */
1269 			wh->i_fc[1] &= ~IEEE80211_FC1_PROTECTED;
1270 		}
1271 #endif
1272 
1273 		/* HW may insert 2 padding bytes after 802.11 header */
1274 		if (rxd->flags & htole32(RT2860_RX_L2PAD)) {
1275 			u_int hdrlen = ieee80211_hdrsize(wh);
1276 			ovbcopy(wh, (caddr_t)wh + 2, hdrlen);
1277 			m->m_data += 2;
1278 			wh = mtod(m, struct ieee80211_frame *);
1279 		}
1280 
1281 		ant = rt2860_maxrssi_chain(sc, rxwi);
1282 		rssi = rt2860_rssi2dbm(sc, rxwi->rssi[ant], ant);
1283 		nf = RT2860_NOISE_FLOOR;
1284 
1285 		if (ieee80211_radiotap_active(ic)) {
1286 			tap = &sc->sc_rxtap;
1287 			tap->wr_flags = 0;
1288 			tap->wr_antenna = ant;
1289 			tap->wr_antsignal = nf + rssi;
1290 			tap->wr_antnoise = nf;
1291 			/* in case it can't be found below */
1292 			tap->wr_rate = 2;
1293 			phy = le16toh(rxwi->phy);
1294 			switch (phy & RT2860_PHY_MODE) {
1295 			case RT2860_PHY_CCK:
1296 				switch ((phy & RT2860_PHY_MCS) & ~RT2860_PHY_SHPRE) {
1297 				case 0:	tap->wr_rate =   2; break;
1298 				case 1:	tap->wr_rate =   4; break;
1299 				case 2:	tap->wr_rate =  11; break;
1300 				case 3:	tap->wr_rate =  22; break;
1301 				}
1302 				if (phy & RT2860_PHY_SHPRE)
1303 					tap->wr_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
1304 				break;
1305 			case RT2860_PHY_OFDM:
1306 				switch (phy & RT2860_PHY_MCS) {
1307 				case 0:	tap->wr_rate =  12; break;
1308 				case 1:	tap->wr_rate =  18; break;
1309 				case 2:	tap->wr_rate =  24; break;
1310 				case 3:	tap->wr_rate =  36; break;
1311 				case 4:	tap->wr_rate =  48; break;
1312 				case 5:	tap->wr_rate =  72; break;
1313 				case 6:	tap->wr_rate =  96; break;
1314 				case 7:	tap->wr_rate = 108; break;
1315 				}
1316 				break;
1317 			}
1318 		}
1319 
1320 		RAL_UNLOCK(sc);
1321 		wh = mtod(m, struct ieee80211_frame *);
1322 
1323 		/* send the frame to the 802.11 layer */
1324 		ni = ieee80211_find_rxnode(ic,
1325 		    (struct ieee80211_frame_min *)wh);
1326 		if (ni != NULL) {
1327 			(void)ieee80211_input(ni, m, rssi - nf, nf);
1328 			ieee80211_free_node(ni);
1329 		} else
1330 			(void)ieee80211_input_all(ic, m, rssi - nf, nf);
1331 
1332 		RAL_LOCK(sc);
1333 
1334 skip:		rxd->sdl0 &= ~htole16(RT2860_RX_DDONE);
1335 
1336 		bus_dmamap_sync(sc->rxq.desc_dmat, sc->rxq.desc_map,
1337 		    BUS_DMASYNC_PREWRITE);
1338 
1339 		sc->rxq.cur = (sc->rxq.cur + 1) % RT2860_RX_RING_COUNT;
1340 	}
1341 
1342 	/* tell HW what we have processed */
1343 	RAL_WRITE(sc, RT2860_RX_CALC_IDX,
1344 	    (sc->rxq.cur - 1) % RT2860_RX_RING_COUNT);
1345 }
1346 
1347 static void
1348 rt2860_tbtt_intr(struct rt2860_softc *sc)
1349 {
1350 #if 0
1351 	struct ieee80211com *ic = &sc->sc_ic;
1352 
1353 #ifndef IEEE80211_STA_ONLY
1354 	if (ic->ic_opmode == IEEE80211_M_HOSTAP) {
1355 		/* one less beacon until next DTIM */
1356 		if (ic->ic_dtim_count == 0)
1357 			ic->ic_dtim_count = ic->ic_dtim_period - 1;
1358 		else
1359 			ic->ic_dtim_count--;
1360 
1361 		/* update dynamic parts of beacon */
1362 		rt2860_setup_beacon(sc);
1363 
1364 		/* flush buffered multicast frames */
1365 		if (ic->ic_dtim_count == 0)
1366 			ieee80211_notify_dtim(ic);
1367 	}
1368 #endif
1369 	/* check if protection mode has changed */
1370 	if ((sc->sc_ic_flags ^ ic->ic_flags) & IEEE80211_F_USEPROT) {
1371 		rt2860_updateprot(sc);
1372 		sc->sc_ic_flags = ic->ic_flags;
1373 	}
1374 #endif
1375 }
1376 
1377 static void
1378 rt2860_gp_intr(struct rt2860_softc *sc)
1379 {
1380 	struct ieee80211com *ic = &sc->sc_ic;
1381 	struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps);
1382 
1383 	DPRINTFN(2, ("GP timeout state=%d\n", vap->iv_state));
1384 
1385 	if (vap->iv_state == IEEE80211_S_RUN)
1386 		rt2860_updatestats(sc);
1387 }
1388 
1389 void
1390 rt2860_intr(void *arg)
1391 {
1392 	struct rt2860_softc *sc = arg;
1393 	uint32_t r;
1394 
1395 	RAL_LOCK(sc);
1396 
1397 	r = RAL_READ(sc, RT2860_INT_STATUS);
1398 	if (__predict_false(r == 0xffffffff)) {
1399 		RAL_UNLOCK(sc);
1400 		return;	/* device likely went away */
1401 	}
1402 	if (r == 0) {
1403 		RAL_UNLOCK(sc);
1404 		return;	/* not for us */
1405 	}
1406 
1407 	/* acknowledge interrupts */
1408 	RAL_WRITE(sc, RT2860_INT_STATUS, r);
1409 
1410 	if (r & RT2860_TX_RX_COHERENT)
1411 		rt2860_intr_coherent(sc);
1412 
1413 	if (r & RT2860_MAC_INT_2)	/* TX status */
1414 		rt2860_drain_stats_fifo(sc);
1415 
1416 	if (r & RT2860_TX_DONE_INT5)
1417 		rt2860_tx_intr(sc, 5);
1418 
1419 	if (r & RT2860_RX_DONE_INT)
1420 		rt2860_rx_intr(sc);
1421 
1422 	if (r & RT2860_TX_DONE_INT4)
1423 		rt2860_tx_intr(sc, 4);
1424 
1425 	if (r & RT2860_TX_DONE_INT3)
1426 		rt2860_tx_intr(sc, 3);
1427 
1428 	if (r & RT2860_TX_DONE_INT2)
1429 		rt2860_tx_intr(sc, 2);
1430 
1431 	if (r & RT2860_TX_DONE_INT1)
1432 		rt2860_tx_intr(sc, 1);
1433 
1434 	if (r & RT2860_TX_DONE_INT0)
1435 		rt2860_tx_intr(sc, 0);
1436 
1437 	if (r & RT2860_MAC_INT_0)	/* TBTT */
1438 		rt2860_tbtt_intr(sc);
1439 
1440 	if (r & RT2860_MAC_INT_3)	/* Auto wakeup */
1441 		/* TBD wakeup */;
1442 
1443 	if (r & RT2860_MAC_INT_4)	/* GP timer */
1444 		rt2860_gp_intr(sc);
1445 
1446 	RAL_UNLOCK(sc);
1447 }
1448 
1449 static int
1450 rt2860_tx(struct rt2860_softc *sc, struct mbuf *m, struct ieee80211_node *ni)
1451 {
1452 	struct ieee80211com *ic = &sc->sc_ic;
1453 	struct ieee80211vap *vap = ni->ni_vap;
1454 	struct rt2860_tx_ring *ring;
1455 	struct rt2860_tx_data *data;
1456 	struct rt2860_txd *txd;
1457 	struct rt2860_txwi *txwi;
1458 	struct ieee80211_frame *wh;
1459 	const struct ieee80211_txparam *tp;
1460 	struct ieee80211_key *k;
1461 	struct mbuf *m1;
1462 	bus_dma_segment_t segs[RT2860_MAX_SCATTER];
1463 	bus_dma_segment_t *seg;
1464 	u_int hdrlen;
1465 	uint16_t qos, dur;
1466 	uint8_t type, qsel, mcs, pid, tid, qid;
1467 	int i, nsegs, ntxds, pad, rate, ridx, error;
1468 
1469 	/* the data pool contains at least one element, pick the first */
1470 	data = SLIST_FIRST(&sc->data_pool);
1471 
1472 	wh = mtod(m, struct ieee80211_frame *);
1473 
1474 	if (wh->i_fc[1] & IEEE80211_FC1_PROTECTED) {
1475 		k = ieee80211_crypto_encap(ni, m);
1476 		if (k == NULL) {
1477 			m_freem(m);
1478 			return ENOBUFS;
1479 		}
1480 
1481 		/* packet header may have moved, reset our local pointer */
1482 		wh = mtod(m, struct ieee80211_frame *);
1483 	}
1484 
1485 	hdrlen = ieee80211_anyhdrsize(wh);
1486 	type = wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK;
1487 
1488 	tp = &vap->iv_txparms[ieee80211_chan2mode(ni->ni_chan)];
1489 	if (IEEE80211_IS_MULTICAST(wh->i_addr1)) {
1490 		rate = tp->mcastrate;
1491 	} else if (m->m_flags & M_EAPOL) {
1492 		rate = tp->mgmtrate;
1493 	} else if (tp->ucastrate != IEEE80211_FIXED_RATE_NONE) {
1494 		rate = tp->ucastrate;
1495 	} else {
1496 		(void) ieee80211_ratectl_rate(ni, NULL, 0);
1497 		rate = ni->ni_txrate;
1498 	}
1499 	rate &= IEEE80211_RATE_VAL;
1500 
1501 	qid = M_WME_GETAC(m);
1502 	if (IEEE80211_QOS_HAS_SEQ(wh)) {
1503 		qos = ((const struct ieee80211_qosframe *)wh)->i_qos[0];
1504 		tid = qos & IEEE80211_QOS_TID;
1505 	} else {
1506 		qos = 0;
1507 		tid = 0;
1508 	}
1509 	ring = &sc->txq[qid];
1510 	ridx = ieee80211_legacy_rate_lookup(ic->ic_rt, rate);
1511 
1512 	/* get MCS code from rate index */
1513 	mcs = rt2860_rates[ridx].mcs;
1514 
1515 	/* setup TX Wireless Information */
1516 	txwi = data->txwi;
1517 	txwi->flags = 0;
1518 	/* let HW generate seq numbers for non-QoS frames */
1519 	txwi->xflags = qos ? 0 : RT2860_TX_NSEQ;
1520 	if (type == IEEE80211_FC0_TYPE_DATA)
1521 		txwi->wcid = IEEE80211_AID(ni->ni_associd);
1522 	else
1523 		txwi->wcid = 0xff;
1524 	txwi->len = htole16(m->m_pkthdr.len);
1525 	if (rt2860_rates[ridx].phy == IEEE80211_T_DS) {
1526 		txwi->phy = htole16(RT2860_PHY_CCK);
1527 		if (ridx != RT2860_RIDX_CCK1 &&
1528 		    (ic->ic_flags & IEEE80211_F_SHPREAMBLE))
1529 			mcs |= RT2860_PHY_SHPRE;
1530 	} else
1531 		txwi->phy = htole16(RT2860_PHY_OFDM);
1532 	txwi->phy |= htole16(mcs);
1533 
1534 	/*
1535 	 * We store the MCS code into the driver-private PacketID field.
1536 	 * The PacketID is latched into TX_STAT_FIFO when Tx completes so
1537 	 * that we know at which initial rate the frame was transmitted.
1538 	 * We add 1 to the MCS code because setting the PacketID field to
1539 	 * 0 means that we don't want feedback in TX_STAT_FIFO.
1540 	 */
1541 	pid = (mcs + 1) & 0xf;
1542 	txwi->len |= htole16(pid << RT2860_TX_PID_SHIFT);
1543 
1544 	/* check if RTS/CTS or CTS-to-self protection is required */
1545 	if (!IEEE80211_IS_MULTICAST(wh->i_addr1) &&
1546 	    (m->m_pkthdr.len + IEEE80211_CRC_LEN > vap->iv_rtsthreshold ||
1547 	     ((ic->ic_flags & IEEE80211_F_USEPROT) &&
1548 	      rt2860_rates[ridx].phy == IEEE80211_T_OFDM)))
1549 		txwi->txop = RT2860_TX_TXOP_HT;
1550 	else
1551 		txwi->txop = RT2860_TX_TXOP_BACKOFF;
1552 
1553 	if (!IEEE80211_IS_MULTICAST(wh->i_addr1) &&
1554 	    (!qos || (qos & IEEE80211_QOS_ACKPOLICY) !=
1555 	     IEEE80211_QOS_ACKPOLICY_NOACK)) {
1556 		txwi->xflags |= RT2860_TX_ACK;
1557 
1558 		if (ic->ic_flags & IEEE80211_F_SHPREAMBLE)
1559 			dur = rt2860_rates[ridx].sp_ack_dur;
1560 		else
1561 			dur = rt2860_rates[ridx].lp_ack_dur;
1562 		*(uint16_t *)wh->i_dur = htole16(dur);
1563 	}
1564 	/* ask MAC to insert timestamp into probe responses */
1565 	if ((wh->i_fc[0] &
1566 	     (IEEE80211_FC0_TYPE_MASK | IEEE80211_FC0_SUBTYPE_MASK)) ==
1567 	     (IEEE80211_FC0_TYPE_MGT | IEEE80211_FC0_SUBTYPE_PROBE_RESP))
1568 	    /* NOTE: beacons do not pass through tx_data() */
1569 		txwi->flags |= RT2860_TX_TS;
1570 
1571 	if (ieee80211_radiotap_active_vap(vap)) {
1572 		struct rt2860_tx_radiotap_header *tap = &sc->sc_txtap;
1573 
1574 		tap->wt_flags = 0;
1575 		tap->wt_rate = rate;
1576 		if (mcs & RT2860_PHY_SHPRE)
1577 			tap->wt_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
1578 
1579 		ieee80211_radiotap_tx(vap, m);
1580 	}
1581 
1582 	pad = (hdrlen + 3) & ~3;
1583 
1584 	/* copy and trim 802.11 header */
1585 	memcpy(txwi + 1, wh, hdrlen);
1586 	m_adj(m, hdrlen);
1587 
1588 	error = bus_dmamap_load_mbuf_sg(sc->txwi_dmat, data->map, m, segs,
1589 	    &nsegs, 0);
1590 	if (__predict_false(error != 0 && error != EFBIG)) {
1591 		device_printf(sc->sc_dev, "can't map mbuf (error %d)\n",
1592 		    error);
1593 		m_freem(m);
1594 		return error;
1595 	}
1596 	if (__predict_true(error == 0)) {
1597 		/* determine how many TXDs are required */
1598 		ntxds = 1 + (nsegs / 2);
1599 
1600 		if (ring->queued + ntxds >= RT2860_TX_RING_COUNT) {
1601 			/* not enough free TXDs, force mbuf defrag */
1602 			bus_dmamap_unload(sc->txwi_dmat, data->map);
1603 			error = EFBIG;
1604 		}
1605 	}
1606 	if (__predict_false(error != 0)) {
1607 		m1 = m_defrag(m, M_NOWAIT);
1608 		if (m1 == NULL) {
1609 			device_printf(sc->sc_dev,
1610 			    "could not defragment mbuf\n");
1611 			m_freem(m);
1612 			return ENOBUFS;
1613 		}
1614 		m = m1;
1615 
1616 		error = bus_dmamap_load_mbuf_sg(sc->txwi_dmat, data->map, m,
1617 		    segs, &nsegs, 0);
1618 		if (__predict_false(error != 0)) {
1619 			device_printf(sc->sc_dev, "can't map mbuf (error %d)\n",
1620 			    error);
1621 			m_freem(m);
1622 			return error;
1623 		}
1624 
1625 		/* determine how many TXDs are now required */
1626 		ntxds = 1 + (nsegs / 2);
1627 
1628 		if (ring->queued + ntxds >= RT2860_TX_RING_COUNT) {
1629 			/* this is a hopeless case, drop the mbuf! */
1630 			bus_dmamap_unload(sc->txwi_dmat, data->map);
1631 			m_freem(m);
1632 			return ENOBUFS;
1633 		}
1634 	}
1635 
1636 	qsel = (qid < WME_NUM_AC) ? RT2860_TX_QSEL_EDCA : RT2860_TX_QSEL_MGMT;
1637 
1638 	/* first segment is TXWI + 802.11 header */
1639 	txd = &ring->txd[ring->cur];
1640 	txd->sdp0 = htole32(data->paddr);
1641 	txd->sdl0 = htole16(sizeof (struct rt2860_txwi) + pad);
1642 	txd->flags = qsel;
1643 
1644 	/* setup payload segments */
1645 	seg = &segs[0];
1646 	for (i = nsegs; i >= 2; i -= 2) {
1647 		txd->sdp1 = htole32(seg->ds_addr);
1648 		txd->sdl1 = htole16(seg->ds_len);
1649 		seg++;
1650 		ring->cur = (ring->cur + 1) % RT2860_TX_RING_COUNT;
1651 		/* grab a new Tx descriptor */
1652 		txd = &ring->txd[ring->cur];
1653 		txd->sdp0 = htole32(seg->ds_addr);
1654 		txd->sdl0 = htole16(seg->ds_len);
1655 		txd->flags = qsel;
1656 		seg++;
1657 	}
1658 	/* finalize last segment */
1659 	if (i > 0) {
1660 		txd->sdp1 = htole32(seg->ds_addr);
1661 		txd->sdl1 = htole16(seg->ds_len | RT2860_TX_LS1);
1662 	} else {
1663 		txd->sdl0 |= htole16(RT2860_TX_LS0);
1664 		txd->sdl1 = 0;
1665 	}
1666 
1667 	/* remove from the free pool and link it into the SW Tx slot */
1668 	SLIST_REMOVE_HEAD(&sc->data_pool, next);
1669 	data->m = m;
1670 	data->ni = ni;
1671 	ring->data[ring->cur] = data;
1672 
1673 	bus_dmamap_sync(sc->txwi_dmat, sc->txwi_map, BUS_DMASYNC_PREWRITE);
1674 	bus_dmamap_sync(sc->txwi_dmat, data->map, BUS_DMASYNC_PREWRITE);
1675 	bus_dmamap_sync(ring->desc_dmat, ring->desc_map, BUS_DMASYNC_PREWRITE);
1676 
1677 	DPRINTFN(4, ("sending frame qid=%d wcid=%d nsegs=%d ridx=%d\n",
1678 	    qid, txwi->wcid, nsegs, ridx));
1679 
1680 	ring->cur = (ring->cur + 1) % RT2860_TX_RING_COUNT;
1681 	ring->queued += ntxds;
1682 	if (ring->queued >= RT2860_TX_RING_COUNT)
1683 		sc->qfullmsk |= 1 << qid;
1684 
1685 	/* kick Tx */
1686 	RAL_WRITE(sc, RT2860_TX_CTX_IDX(qid), ring->cur);
1687 
1688 	return 0;
1689 }
1690 
1691 static int
1692 rt2860_raw_xmit(struct ieee80211_node *ni, struct mbuf *m,
1693     const struct ieee80211_bpf_params *params)
1694 {
1695 	struct ieee80211com *ic = ni->ni_ic;
1696 	struct rt2860_softc *sc = ic->ic_softc;
1697 	int error;
1698 
1699 	RAL_LOCK(sc);
1700 
1701 	/* prevent management frames from being sent if we're not ready */
1702 	if (!(sc->sc_flags & RT2860_RUNNNING)) {
1703 		RAL_UNLOCK(sc);
1704 		m_freem(m);
1705 		ieee80211_free_node(ni);
1706 		return ENETDOWN;
1707 	}
1708 	if (params == NULL) {
1709 		/*
1710 		 * Legacy path; interpret frame contents to decide
1711 		 * precisely how to send the frame.
1712 		 */
1713 		error = rt2860_tx(sc, m, ni);
1714 	} else {
1715 		/*
1716 		 * Caller supplied explicit parameters to use in
1717 		 * sending the frame.
1718 		 */
1719 		error = rt2860_tx_raw(sc, m, ni, params);
1720 	}
1721 	if (error != 0) {
1722 		/* NB: m is reclaimed on tx failure */
1723 		ieee80211_free_node(ni);
1724 	}
1725 	sc->sc_tx_timer = 5;
1726 	RAL_UNLOCK(sc);
1727 	return error;
1728 }
1729 
1730 static int
1731 rt2860_tx_raw(struct rt2860_softc *sc, struct mbuf *m,
1732     struct ieee80211_node *ni, const struct ieee80211_bpf_params *params)
1733 {
1734 	struct ieee80211com *ic = &sc->sc_ic;
1735 	struct ieee80211vap *vap = ni->ni_vap;
1736 	struct rt2860_tx_ring *ring;
1737 	struct rt2860_tx_data *data;
1738 	struct rt2860_txd *txd;
1739 	struct rt2860_txwi *txwi;
1740 	struct ieee80211_frame *wh;
1741 	struct mbuf *m1;
1742 	bus_dma_segment_t segs[RT2860_MAX_SCATTER];
1743 	bus_dma_segment_t *seg;
1744 	u_int hdrlen;
1745 	uint16_t dur;
1746 	uint8_t type, qsel, mcs, pid, tid, qid;
1747 	int i, nsegs, ntxds, pad, rate, ridx, error;
1748 
1749 	/* the data pool contains at least one element, pick the first */
1750 	data = SLIST_FIRST(&sc->data_pool);
1751 
1752 	wh = mtod(m, struct ieee80211_frame *);
1753 	hdrlen = ieee80211_hdrsize(wh);
1754 	type = wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK;
1755 
1756 	/* Choose a TX rate index. */
1757 	rate = params->ibp_rate0;
1758 	ridx = ieee80211_legacy_rate_lookup(ic->ic_rt,
1759 	    rate & IEEE80211_RATE_VAL);
1760 	if (ridx == (uint8_t)-1) {
1761 		/* XXX fall back to mcast/mgmt rate? */
1762 		m_freem(m);
1763 		return EINVAL;
1764 	}
1765 
1766 	qid = params->ibp_pri & 3;
1767 	tid = 0;
1768 	ring = &sc->txq[qid];
1769 
1770 	/* get MCS code from rate index */
1771 	mcs = rt2860_rates[ridx].mcs;
1772 
1773 	/* setup TX Wireless Information */
1774 	txwi = data->txwi;
1775 	txwi->flags = 0;
1776 	/* let HW generate seq numbers for non-QoS frames */
1777 	txwi->xflags = params->ibp_pri & 3 ? 0 : RT2860_TX_NSEQ;
1778 	txwi->wcid = 0xff;
1779 	txwi->len = htole16(m->m_pkthdr.len);
1780 	if (rt2860_rates[ridx].phy == IEEE80211_T_DS) {
1781 		txwi->phy = htole16(RT2860_PHY_CCK);
1782 		if (ridx != RT2860_RIDX_CCK1 &&
1783 		    (ic->ic_flags & IEEE80211_F_SHPREAMBLE))
1784 			mcs |= RT2860_PHY_SHPRE;
1785 	} else
1786 		txwi->phy = htole16(RT2860_PHY_OFDM);
1787 	txwi->phy |= htole16(mcs);
1788 
1789 	/*
1790 	 * We store the MCS code into the driver-private PacketID field.
1791 	 * The PacketID is latched into TX_STAT_FIFO when Tx completes so
1792 	 * that we know at which initial rate the frame was transmitted.
1793 	 * We add 1 to the MCS code because setting the PacketID field to
1794 	 * 0 means that we don't want feedback in TX_STAT_FIFO.
1795 	 */
1796 	pid = (mcs + 1) & 0xf;
1797 	txwi->len |= htole16(pid << RT2860_TX_PID_SHIFT);
1798 
1799 	/* check if RTS/CTS or CTS-to-self protection is required */
1800 	if (params->ibp_flags & IEEE80211_BPF_RTS ||
1801 	    params->ibp_flags & IEEE80211_BPF_CTS)
1802 		txwi->txop = RT2860_TX_TXOP_HT;
1803 	else
1804 		txwi->txop = RT2860_TX_TXOP_BACKOFF;
1805 	if ((params->ibp_flags & IEEE80211_BPF_NOACK) == 0) {
1806 		txwi->xflags |= RT2860_TX_ACK;
1807 
1808 		if (ic->ic_flags & IEEE80211_F_SHPREAMBLE)
1809 			dur = rt2860_rates[ridx].sp_ack_dur;
1810 		else
1811 			dur = rt2860_rates[ridx].lp_ack_dur;
1812 		*(uint16_t *)wh->i_dur = htole16(dur);
1813 	}
1814 	/* ask MAC to insert timestamp into probe responses */
1815 	if ((wh->i_fc[0] &
1816 	     (IEEE80211_FC0_TYPE_MASK | IEEE80211_FC0_SUBTYPE_MASK)) ==
1817 	     (IEEE80211_FC0_TYPE_MGT | IEEE80211_FC0_SUBTYPE_PROBE_RESP))
1818 	    /* NOTE: beacons do not pass through tx_data() */
1819 		txwi->flags |= RT2860_TX_TS;
1820 
1821 	if (ieee80211_radiotap_active_vap(vap)) {
1822 		struct rt2860_tx_radiotap_header *tap = &sc->sc_txtap;
1823 
1824 		tap->wt_flags = 0;
1825 		tap->wt_rate = rate;
1826 		if (mcs & RT2860_PHY_SHPRE)
1827 			tap->wt_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
1828 
1829 		ieee80211_radiotap_tx(vap, m);
1830 	}
1831 
1832 	pad = (hdrlen + 3) & ~3;
1833 
1834 	/* copy and trim 802.11 header */
1835 	memcpy(txwi + 1, wh, hdrlen);
1836 	m_adj(m, hdrlen);
1837 
1838 	error = bus_dmamap_load_mbuf_sg(sc->txwi_dmat, data->map, m, segs,
1839 	    &nsegs, 0);
1840 	if (__predict_false(error != 0 && error != EFBIG)) {
1841 		device_printf(sc->sc_dev, "can't map mbuf (error %d)\n",
1842 		    error);
1843 		m_freem(m);
1844 		return error;
1845 	}
1846 	if (__predict_true(error == 0)) {
1847 		/* determine how many TXDs are required */
1848 		ntxds = 1 + (nsegs / 2);
1849 
1850 		if (ring->queued + ntxds >= RT2860_TX_RING_COUNT) {
1851 			/* not enough free TXDs, force mbuf defrag */
1852 			bus_dmamap_unload(sc->txwi_dmat, data->map);
1853 			error = EFBIG;
1854 		}
1855 	}
1856 	if (__predict_false(error != 0)) {
1857 		m1 = m_defrag(m, M_NOWAIT);
1858 		if (m1 == NULL) {
1859 			device_printf(sc->sc_dev,
1860 			    "could not defragment mbuf\n");
1861 			m_freem(m);
1862 			return ENOBUFS;
1863 		}
1864 		m = m1;
1865 
1866 		error = bus_dmamap_load_mbuf_sg(sc->txwi_dmat, data->map, m,
1867 		    segs, &nsegs, 0);
1868 		if (__predict_false(error != 0)) {
1869 			device_printf(sc->sc_dev, "can't map mbuf (error %d)\n",
1870 			    error);
1871 			m_freem(m);
1872 			return error;
1873 		}
1874 
1875 		/* determine how many TXDs are now required */
1876 		ntxds = 1 + (nsegs / 2);
1877 
1878 		if (ring->queued + ntxds >= RT2860_TX_RING_COUNT) {
1879 			/* this is a hopeless case, drop the mbuf! */
1880 			bus_dmamap_unload(sc->txwi_dmat, data->map);
1881 			m_freem(m);
1882 			return ENOBUFS;
1883 		}
1884 	}
1885 
1886 	qsel = (qid < WME_NUM_AC) ? RT2860_TX_QSEL_EDCA : RT2860_TX_QSEL_MGMT;
1887 
1888 	/* first segment is TXWI + 802.11 header */
1889 	txd = &ring->txd[ring->cur];
1890 	txd->sdp0 = htole32(data->paddr);
1891 	txd->sdl0 = htole16(sizeof (struct rt2860_txwi) + pad);
1892 	txd->flags = qsel;
1893 
1894 	/* setup payload segments */
1895 	seg = &segs[0];
1896 	for (i = nsegs; i >= 2; i -= 2) {
1897 		txd->sdp1 = htole32(seg->ds_addr);
1898 		txd->sdl1 = htole16(seg->ds_len);
1899 		seg++;
1900 		ring->cur = (ring->cur + 1) % RT2860_TX_RING_COUNT;
1901 		/* grab a new Tx descriptor */
1902 		txd = &ring->txd[ring->cur];
1903 		txd->sdp0 = htole32(seg->ds_addr);
1904 		txd->sdl0 = htole16(seg->ds_len);
1905 		txd->flags = qsel;
1906 		seg++;
1907 	}
1908 	/* finalize last segment */
1909 	if (i > 0) {
1910 		txd->sdp1 = htole32(seg->ds_addr);
1911 		txd->sdl1 = htole16(seg->ds_len | RT2860_TX_LS1);
1912 	} else {
1913 		txd->sdl0 |= htole16(RT2860_TX_LS0);
1914 		txd->sdl1 = 0;
1915 	}
1916 
1917 	/* remove from the free pool and link it into the SW Tx slot */
1918 	SLIST_REMOVE_HEAD(&sc->data_pool, next);
1919 	data->m = m;
1920 	data->ni = ni;
1921 	ring->data[ring->cur] = data;
1922 
1923 	bus_dmamap_sync(sc->txwi_dmat, sc->txwi_map, BUS_DMASYNC_PREWRITE);
1924 	bus_dmamap_sync(sc->txwi_dmat, data->map, BUS_DMASYNC_PREWRITE);
1925 	bus_dmamap_sync(ring->desc_dmat, ring->desc_map, BUS_DMASYNC_PREWRITE);
1926 
1927 	DPRINTFN(4, ("sending frame qid=%d wcid=%d nsegs=%d ridx=%d\n",
1928 	    qid, txwi->wcid, nsegs, ridx));
1929 
1930 	ring->cur = (ring->cur + 1) % RT2860_TX_RING_COUNT;
1931 	ring->queued += ntxds;
1932 	if (ring->queued >= RT2860_TX_RING_COUNT)
1933 		sc->qfullmsk |= 1 << qid;
1934 
1935 	/* kick Tx */
1936 	RAL_WRITE(sc, RT2860_TX_CTX_IDX(qid), ring->cur);
1937 
1938 	return 0;
1939 }
1940 
1941 static int
1942 rt2860_transmit(struct ieee80211com *ic, struct mbuf *m)
1943 {
1944 	struct rt2860_softc *sc = ic->ic_softc;
1945 	int error;
1946 
1947 	RAL_LOCK(sc);
1948 	if ((sc->sc_flags & RT2860_RUNNNING) == 0) {
1949 		RAL_UNLOCK(sc);
1950 		return (ENXIO);
1951 	}
1952 	error = mbufq_enqueue(&sc->sc_snd, m);
1953 	if (error) {
1954 		RAL_UNLOCK(sc);
1955 		return (error);
1956 	}
1957 	rt2860_start(sc);
1958 	RAL_UNLOCK(sc);
1959 
1960 	return (0);
1961 }
1962 
1963 static void
1964 rt2860_start(struct rt2860_softc *sc)
1965 {
1966 	struct ieee80211_node *ni;
1967 	struct mbuf *m;
1968 
1969 	RAL_LOCK_ASSERT(sc);
1970 
1971 	if ((sc->sc_flags & RT2860_RUNNNING) == 0)
1972 		return;
1973 
1974 	while (!SLIST_EMPTY(&sc->data_pool) && sc->qfullmsk == 0 &&
1975 	    (m = mbufq_dequeue(&sc->sc_snd)) != NULL) {
1976 		ni = (struct ieee80211_node *)m->m_pkthdr.rcvif;
1977 		if (rt2860_tx(sc, m, ni) != 0) {
1978 			if_inc_counter(ni->ni_vap->iv_ifp,
1979 			    IFCOUNTER_OERRORS, 1);
1980 			ieee80211_free_node(ni);
1981 			continue;
1982 		}
1983 		sc->sc_tx_timer = 5;
1984 	}
1985 }
1986 
1987 static void
1988 rt2860_watchdog(void *arg)
1989 {
1990 	struct rt2860_softc *sc = arg;
1991 
1992 	RAL_LOCK_ASSERT(sc);
1993 
1994 	KASSERT(sc->sc_flags & RT2860_RUNNNING, ("not running"));
1995 
1996 	if (sc->sc_invalid)		/* card ejected */
1997 		return;
1998 
1999 	if (sc->sc_tx_timer > 0 && --sc->sc_tx_timer == 0) {
2000 		device_printf(sc->sc_dev, "device timeout\n");
2001 		rt2860_stop_locked(sc);
2002 		rt2860_init_locked(sc);
2003 		counter_u64_add(sc->sc_ic.ic_oerrors, 1);
2004 		return;
2005 	}
2006 	callout_reset(&sc->watchdog_ch, hz, rt2860_watchdog, sc);
2007 }
2008 
2009 static void
2010 rt2860_parent(struct ieee80211com *ic)
2011 {
2012 	struct rt2860_softc *sc = ic->ic_softc;
2013 	int startall = 0;
2014 
2015 	RAL_LOCK(sc);
2016 	if (ic->ic_nrunning> 0) {
2017 		if (!(sc->sc_flags & RT2860_RUNNNING)) {
2018 			rt2860_init_locked(sc);
2019 			startall = 1;
2020 		} else
2021 			rt2860_update_promisc(ic);
2022 	} else if (sc->sc_flags & RT2860_RUNNNING)
2023 		rt2860_stop_locked(sc);
2024 	RAL_UNLOCK(sc);
2025 	if (startall)
2026 		ieee80211_start_all(ic);
2027 }
2028 
2029 /*
2030  * Reading and writing from/to the BBP is different from RT2560 and RT2661.
2031  * We access the BBP through the 8051 microcontroller unit which means that
2032  * the microcode must be loaded first.
2033  */
2034 void
2035 rt2860_mcu_bbp_write(struct rt2860_softc *sc, uint8_t reg, uint8_t val)
2036 {
2037 	int ntries;
2038 
2039 	for (ntries = 0; ntries < 100; ntries++) {
2040 		if (!(RAL_READ(sc, RT2860_H2M_BBPAGENT) & RT2860_BBP_CSR_KICK))
2041 			break;
2042 		DELAY(1);
2043 	}
2044 	if (ntries == 100) {
2045 		device_printf(sc->sc_dev,
2046 			"could not write to BBP through MCU\n");
2047 		return;
2048 	}
2049 
2050 	RAL_WRITE(sc, RT2860_H2M_BBPAGENT, RT2860_BBP_RW_PARALLEL |
2051 	    RT2860_BBP_CSR_KICK | reg << 8 | val);
2052 	RAL_BARRIER_WRITE(sc);
2053 
2054 	rt2860_mcu_cmd(sc, RT2860_MCU_CMD_BBP, 0, 0);
2055 	DELAY(1000);
2056 }
2057 
2058 uint8_t
2059 rt2860_mcu_bbp_read(struct rt2860_softc *sc, uint8_t reg)
2060 {
2061 	uint32_t val;
2062 	int ntries;
2063 
2064 	for (ntries = 0; ntries < 100; ntries++) {
2065 		if (!(RAL_READ(sc, RT2860_H2M_BBPAGENT) & RT2860_BBP_CSR_KICK))
2066 			break;
2067 		DELAY(1);
2068 	}
2069 	if (ntries == 100) {
2070 		device_printf(sc->sc_dev,
2071 		    "could not read from BBP through MCU\n");
2072 		return 0;
2073 	}
2074 
2075 	RAL_WRITE(sc, RT2860_H2M_BBPAGENT, RT2860_BBP_RW_PARALLEL |
2076 	    RT2860_BBP_CSR_KICK | RT2860_BBP_CSR_READ | reg << 8);
2077 	RAL_BARRIER_WRITE(sc);
2078 
2079 	rt2860_mcu_cmd(sc, RT2860_MCU_CMD_BBP, 0, 0);
2080 	DELAY(1000);
2081 
2082 	for (ntries = 0; ntries < 100; ntries++) {
2083 		val = RAL_READ(sc, RT2860_H2M_BBPAGENT);
2084 		if (!(val & RT2860_BBP_CSR_KICK))
2085 			return val & 0xff;
2086 		DELAY(1);
2087 	}
2088 	device_printf(sc->sc_dev, "could not read from BBP through MCU\n");
2089 
2090 	return 0;
2091 }
2092 
2093 /*
2094  * Write to one of the 4 programmable 24-bit RF registers.
2095  */
2096 static void
2097 rt2860_rf_write(struct rt2860_softc *sc, uint8_t reg, uint32_t val)
2098 {
2099 	uint32_t tmp;
2100 	int ntries;
2101 
2102 	for (ntries = 0; ntries < 100; ntries++) {
2103 		if (!(RAL_READ(sc, RT2860_RF_CSR_CFG0) & RT2860_RF_REG_CTRL))
2104 			break;
2105 		DELAY(1);
2106 	}
2107 	if (ntries == 100) {
2108 		device_printf(sc->sc_dev, "could not write to RF\n");
2109 		return;
2110 	}
2111 
2112 	/* RF registers are 24-bit on the RT2860 */
2113 	tmp = RT2860_RF_REG_CTRL | 24 << RT2860_RF_REG_WIDTH_SHIFT |
2114 	    (val & 0x3fffff) << 2 | (reg & 3);
2115 	RAL_WRITE(sc, RT2860_RF_CSR_CFG0, tmp);
2116 }
2117 
2118 static uint8_t
2119 rt3090_rf_read(struct rt2860_softc *sc, uint8_t reg)
2120 {
2121 	uint32_t tmp;
2122 	int ntries;
2123 
2124 	for (ntries = 0; ntries < 100; ntries++) {
2125 		if (!(RAL_READ(sc, RT3070_RF_CSR_CFG) & RT3070_RF_KICK))
2126 			break;
2127 		DELAY(1);
2128 	}
2129 	if (ntries == 100) {
2130 		device_printf(sc->sc_dev, "could not read RF register\n");
2131 		return 0xff;
2132 	}
2133 	tmp = RT3070_RF_KICK | reg << 8;
2134 	RAL_WRITE(sc, RT3070_RF_CSR_CFG, tmp);
2135 
2136 	for (ntries = 0; ntries < 100; ntries++) {
2137 		tmp = RAL_READ(sc, RT3070_RF_CSR_CFG);
2138 		if (!(tmp & RT3070_RF_KICK))
2139 			break;
2140 		DELAY(1);
2141 	}
2142 	if (ntries == 100) {
2143 		device_printf(sc->sc_dev, "could not read RF register\n");
2144 		return 0xff;
2145 	}
2146 	return tmp & 0xff;
2147 }
2148 
2149 void
2150 rt3090_rf_write(struct rt2860_softc *sc, uint8_t reg, uint8_t val)
2151 {
2152 	uint32_t tmp;
2153 	int ntries;
2154 
2155 	for (ntries = 0; ntries < 10; ntries++) {
2156 		if (!(RAL_READ(sc, RT3070_RF_CSR_CFG) & RT3070_RF_KICK))
2157 			break;
2158 		DELAY(10);
2159 	}
2160 	if (ntries == 10) {
2161 		device_printf(sc->sc_dev, "could not write to RF\n");
2162 		return;
2163 	}
2164 
2165 	tmp = RT3070_RF_WRITE | RT3070_RF_KICK | reg << 8 | val;
2166 	RAL_WRITE(sc, RT3070_RF_CSR_CFG, tmp);
2167 }
2168 
2169 /*
2170  * Send a command to the 8051 microcontroller unit.
2171  */
2172 int
2173 rt2860_mcu_cmd(struct rt2860_softc *sc, uint8_t cmd, uint16_t arg, int wait)
2174 {
2175 	int slot, ntries;
2176 	uint32_t tmp;
2177 	uint8_t cid;
2178 
2179 	for (ntries = 0; ntries < 100; ntries++) {
2180 		if (!(RAL_READ(sc, RT2860_H2M_MAILBOX) & RT2860_H2M_BUSY))
2181 			break;
2182 		DELAY(2);
2183 	}
2184 	if (ntries == 100)
2185 		return EIO;
2186 
2187 	cid = wait ? cmd : RT2860_TOKEN_NO_INTR;
2188 	RAL_WRITE(sc, RT2860_H2M_MAILBOX, RT2860_H2M_BUSY | cid << 16 | arg);
2189 	RAL_BARRIER_WRITE(sc);
2190 	RAL_WRITE(sc, RT2860_HOST_CMD, cmd);
2191 
2192 	if (!wait)
2193 		return 0;
2194 	/* wait for the command to complete */
2195 	for (ntries = 0; ntries < 200; ntries++) {
2196 		tmp = RAL_READ(sc, RT2860_H2M_MAILBOX_CID);
2197 		/* find the command slot */
2198 		for (slot = 0; slot < 4; slot++, tmp >>= 8)
2199 			if ((tmp & 0xff) == cid)
2200 				break;
2201 		if (slot < 4)
2202 			break;
2203 		DELAY(100);
2204 	}
2205 	if (ntries == 200) {
2206 		/* clear command and status */
2207 		RAL_WRITE(sc, RT2860_H2M_MAILBOX_STATUS, 0xffffffff);
2208 		RAL_WRITE(sc, RT2860_H2M_MAILBOX_CID, 0xffffffff);
2209 		return ETIMEDOUT;
2210 	}
2211 	/* get command status (1 means success) */
2212 	tmp = RAL_READ(sc, RT2860_H2M_MAILBOX_STATUS);
2213 	tmp = (tmp >> (slot * 8)) & 0xff;
2214 	DPRINTF(("MCU command=0x%02x slot=%d status=0x%02x\n",
2215 	    cmd, slot, tmp));
2216 	/* clear command and status */
2217 	RAL_WRITE(sc, RT2860_H2M_MAILBOX_STATUS, 0xffffffff);
2218 	RAL_WRITE(sc, RT2860_H2M_MAILBOX_CID, 0xffffffff);
2219 	return (tmp == 1) ? 0 : EIO;
2220 }
2221 
2222 static void
2223 rt2860_enable_mrr(struct rt2860_softc *sc)
2224 {
2225 #define CCK(mcs)	(mcs)
2226 #define OFDM(mcs)	(1 << 3 | (mcs))
2227 	RAL_WRITE(sc, RT2860_LG_FBK_CFG0,
2228 	    OFDM(6) << 28 |	/* 54->48 */
2229 	    OFDM(5) << 24 |	/* 48->36 */
2230 	    OFDM(4) << 20 |	/* 36->24 */
2231 	    OFDM(3) << 16 |	/* 24->18 */
2232 	    OFDM(2) << 12 |	/* 18->12 */
2233 	    OFDM(1) <<  8 |	/* 12-> 9 */
2234 	    OFDM(0) <<  4 |	/*  9-> 6 */
2235 	    OFDM(0));		/*  6-> 6 */
2236 
2237 	RAL_WRITE(sc, RT2860_LG_FBK_CFG1,
2238 	    CCK(2) << 12 |	/* 11->5.5 */
2239 	    CCK(1) <<  8 |	/* 5.5-> 2 */
2240 	    CCK(0) <<  4 |	/*   2-> 1 */
2241 	    CCK(0));		/*   1-> 1 */
2242 #undef OFDM
2243 #undef CCK
2244 }
2245 
2246 static void
2247 rt2860_set_txpreamble(struct rt2860_softc *sc)
2248 {
2249 	struct ieee80211com *ic = &sc->sc_ic;
2250 	uint32_t tmp;
2251 
2252 	tmp = RAL_READ(sc, RT2860_AUTO_RSP_CFG);
2253 	tmp &= ~RT2860_CCK_SHORT_EN;
2254 	if (ic->ic_flags & IEEE80211_F_SHPREAMBLE)
2255 		tmp |= RT2860_CCK_SHORT_EN;
2256 	RAL_WRITE(sc, RT2860_AUTO_RSP_CFG, tmp);
2257 }
2258 
2259 void
2260 rt2860_set_basicrates(struct rt2860_softc *sc,
2261     const struct ieee80211_rateset *rs)
2262 {
2263 #define RV(r)	((r) & IEEE80211_RATE_VAL)
2264 	struct ieee80211com *ic = &sc->sc_ic;
2265 	uint32_t mask = 0;
2266 	uint8_t rate;
2267 	int i;
2268 
2269 	for (i = 0; i < rs->rs_nrates; i++) {
2270 		rate = rs->rs_rates[i];
2271 
2272 		if (!(rate & IEEE80211_RATE_BASIC))
2273 			continue;
2274 
2275 		mask |= 1 << ieee80211_legacy_rate_lookup(ic->ic_rt, RV(rate));
2276 	}
2277 
2278 	RAL_WRITE(sc, RT2860_LEGACY_BASIC_RATE, mask);
2279 #undef RV
2280 }
2281 
2282 static void
2283 rt2860_scan_start(struct ieee80211com *ic)
2284 {
2285 	struct rt2860_softc *sc = ic->ic_softc;
2286 	uint32_t tmp;
2287 
2288 	tmp = RAL_READ(sc, RT2860_BCN_TIME_CFG);
2289 	RAL_WRITE(sc, RT2860_BCN_TIME_CFG,
2290 	    tmp & ~(RT2860_BCN_TX_EN | RT2860_TSF_TIMER_EN |
2291 	    RT2860_TBTT_TIMER_EN));
2292 	rt2860_set_gp_timer(sc, 0);
2293 }
2294 
2295 static void
2296 rt2860_scan_end(struct ieee80211com *ic)
2297 {
2298 	struct rt2860_softc *sc = ic->ic_softc;
2299 	struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps);
2300 
2301 	if (vap->iv_state == IEEE80211_S_RUN) {
2302 		rt2860_enable_tsf_sync(sc);
2303 		rt2860_set_gp_timer(sc, 500);
2304 	}
2305 }
2306 
2307 static void
2308 rt2860_set_channel(struct ieee80211com *ic)
2309 {
2310 	struct rt2860_softc *sc = ic->ic_softc;
2311 
2312 	RAL_LOCK(sc);
2313 	rt2860_switch_chan(sc, ic->ic_curchan);
2314 	RAL_UNLOCK(sc);
2315 }
2316 
2317 static void
2318 rt2860_select_chan_group(struct rt2860_softc *sc, int group)
2319 {
2320 	uint32_t tmp;
2321 	uint8_t agc;
2322 
2323 	rt2860_mcu_bbp_write(sc, 62, 0x37 - sc->lna[group]);
2324 	rt2860_mcu_bbp_write(sc, 63, 0x37 - sc->lna[group]);
2325 	rt2860_mcu_bbp_write(sc, 64, 0x37 - sc->lna[group]);
2326 	rt2860_mcu_bbp_write(sc, 86, 0x00);
2327 
2328 	if (group == 0) {
2329 		if (sc->ext_2ghz_lna) {
2330 			rt2860_mcu_bbp_write(sc, 82, 0x62);
2331 			rt2860_mcu_bbp_write(sc, 75, 0x46);
2332 		} else {
2333 			rt2860_mcu_bbp_write(sc, 82, 0x84);
2334 			rt2860_mcu_bbp_write(sc, 75, 0x50);
2335 		}
2336 	} else {
2337 		if (sc->ext_5ghz_lna) {
2338 			rt2860_mcu_bbp_write(sc, 82, 0xf2);
2339 			rt2860_mcu_bbp_write(sc, 75, 0x46);
2340 		} else {
2341 			rt2860_mcu_bbp_write(sc, 82, 0xf2);
2342 			rt2860_mcu_bbp_write(sc, 75, 0x50);
2343 		}
2344 	}
2345 
2346 	tmp = RAL_READ(sc, RT2860_TX_BAND_CFG);
2347 	tmp &= ~(RT2860_5G_BAND_SEL_N | RT2860_5G_BAND_SEL_P);
2348 	tmp |= (group == 0) ? RT2860_5G_BAND_SEL_N : RT2860_5G_BAND_SEL_P;
2349 	RAL_WRITE(sc, RT2860_TX_BAND_CFG, tmp);
2350 
2351 	/* enable appropriate Power Amplifiers and Low Noise Amplifiers */
2352 	tmp = RT2860_RFTR_EN | RT2860_TRSW_EN | RT2860_LNA_PE0_EN;
2353 	if (sc->nrxchains > 1)
2354 		tmp |= RT2860_LNA_PE1_EN;
2355 	if (sc->mac_ver == 0x3593 && sc->nrxchains > 2)
2356 		tmp |= RT3593_LNA_PE2_EN;
2357 	if (group == 0) {	/* 2GHz */
2358 		tmp |= RT2860_PA_PE_G0_EN;
2359 		if (sc->ntxchains > 1)
2360 			tmp |= RT2860_PA_PE_G1_EN;
2361 		if (sc->mac_ver == 0x3593 && sc->ntxchains > 2)
2362 			tmp |= RT3593_PA_PE_G2_EN;
2363 	} else {		/* 5GHz */
2364 		tmp |= RT2860_PA_PE_A0_EN;
2365 		if (sc->ntxchains > 1)
2366 			tmp |= RT2860_PA_PE_A1_EN;
2367 		if (sc->mac_ver == 0x3593 && sc->ntxchains > 2)
2368 			tmp |= RT3593_PA_PE_A2_EN;
2369 	}
2370 	RAL_WRITE(sc, RT2860_TX_PIN_CFG, tmp);
2371 
2372 	if (sc->mac_ver == 0x3593) {
2373 		tmp = RAL_READ(sc, RT2860_GPIO_CTRL);
2374 		if (sc->sc_flags & RT2860_PCIE) {
2375 			tmp &= ~0x01010000;
2376 			if (group == 0)
2377 				tmp |= 0x00010000;
2378 		} else {
2379 			tmp &= ~0x00008080;
2380 			if (group == 0)
2381 				tmp |= 0x00000080;
2382 		}
2383 		tmp = (tmp & ~0x00001000) | 0x00000010;
2384 		RAL_WRITE(sc, RT2860_GPIO_CTRL, tmp);
2385 	}
2386 
2387 	/* set initial AGC value */
2388 	if (group == 0) {	/* 2GHz band */
2389 		if (sc->mac_ver >= 0x3071)
2390 			agc = 0x1c + sc->lna[0] * 2;
2391 		else
2392 			agc = 0x2e + sc->lna[0];
2393 	} else {		/* 5GHz band */
2394 		agc = 0x32 + (sc->lna[group] * 5) / 3;
2395 	}
2396 	rt2860_mcu_bbp_write(sc, 66, agc);
2397 
2398 	DELAY(1000);
2399 }
2400 
2401 static void
2402 rt2860_set_chan(struct rt2860_softc *sc, u_int chan)
2403 {
2404 	const struct rfprog *rfprog = rt2860_rf2850;
2405 	uint32_t r2, r3, r4;
2406 	int8_t txpow1, txpow2;
2407 	u_int i;
2408 
2409 	/* find the settings for this channel (we know it exists) */
2410 	for (i = 0; rfprog[i].chan != chan; i++);
2411 
2412 	r2 = rfprog[i].r2;
2413 	if (sc->ntxchains == 1)
2414 		r2 |= 1 << 12;		/* 1T: disable Tx chain 2 */
2415 	if (sc->nrxchains == 1)
2416 		r2 |= 1 << 15 | 1 << 4;	/* 1R: disable Rx chains 2 & 3 */
2417 	else if (sc->nrxchains == 2)
2418 		r2 |= 1 << 4;		/* 2R: disable Rx chain 3 */
2419 
2420 	/* use Tx power values from EEPROM */
2421 	txpow1 = sc->txpow1[i];
2422 	txpow2 = sc->txpow2[i];
2423 	if (chan > 14) {
2424 		if (txpow1 >= 0)
2425 			txpow1 = txpow1 << 1 | 1;
2426 		else
2427 			txpow1 = (7 + txpow1) << 1;
2428 		if (txpow2 >= 0)
2429 			txpow2 = txpow2 << 1 | 1;
2430 		else
2431 			txpow2 = (7 + txpow2) << 1;
2432 	}
2433 	r3 = rfprog[i].r3 | txpow1 << 7;
2434 	r4 = rfprog[i].r4 | sc->freq << 13 | txpow2 << 4;
2435 
2436 	rt2860_rf_write(sc, RT2860_RF1, rfprog[i].r1);
2437 	rt2860_rf_write(sc, RT2860_RF2, r2);
2438 	rt2860_rf_write(sc, RT2860_RF3, r3);
2439 	rt2860_rf_write(sc, RT2860_RF4, r4);
2440 
2441 	DELAY(200);
2442 
2443 	rt2860_rf_write(sc, RT2860_RF1, rfprog[i].r1);
2444 	rt2860_rf_write(sc, RT2860_RF2, r2);
2445 	rt2860_rf_write(sc, RT2860_RF3, r3 | 1);
2446 	rt2860_rf_write(sc, RT2860_RF4, r4);
2447 
2448 	DELAY(200);
2449 
2450 	rt2860_rf_write(sc, RT2860_RF1, rfprog[i].r1);
2451 	rt2860_rf_write(sc, RT2860_RF2, r2);
2452 	rt2860_rf_write(sc, RT2860_RF3, r3);
2453 	rt2860_rf_write(sc, RT2860_RF4, r4);
2454 }
2455 
2456 static void
2457 rt3090_set_chan(struct rt2860_softc *sc, u_int chan)
2458 {
2459 	int8_t txpow1, txpow2;
2460 	uint8_t rf;
2461 	int i;
2462 
2463 	/* RT3090 is 2GHz only */
2464 	KASSERT(chan >= 1 && chan <= 14, ("chan %d not support", chan));
2465 
2466 	/* find the settings for this channel (we know it exists) */
2467 	for (i = 0; rt2860_rf2850[i].chan != chan; i++);
2468 
2469 	/* use Tx power values from EEPROM */
2470 	txpow1 = sc->txpow1[i];
2471 	txpow2 = sc->txpow2[i];
2472 
2473 	rt3090_rf_write(sc, 2, rt3090_freqs[i].n);
2474 	rf = rt3090_rf_read(sc, 3);
2475 	rf = (rf & ~0x0f) | rt3090_freqs[i].k;
2476 	rt3090_rf_write(sc, 3, rf);
2477 	rf = rt3090_rf_read(sc, 6);
2478 	rf = (rf & ~0x03) | rt3090_freqs[i].r;
2479 	rt3090_rf_write(sc, 6, rf);
2480 
2481 	/* set Tx0 power */
2482 	rf = rt3090_rf_read(sc, 12);
2483 	rf = (rf & ~0x1f) | txpow1;
2484 	rt3090_rf_write(sc, 12, rf);
2485 
2486 	/* set Tx1 power */
2487 	rf = rt3090_rf_read(sc, 13);
2488 	rf = (rf & ~0x1f) | txpow2;
2489 	rt3090_rf_write(sc, 13, rf);
2490 
2491 	rf = rt3090_rf_read(sc, 1);
2492 	rf &= ~0xfc;
2493 	if (sc->ntxchains == 1)
2494 		rf |= RT3070_TX1_PD | RT3070_TX2_PD;
2495 	else if (sc->ntxchains == 2)
2496 		rf |= RT3070_TX2_PD;
2497 	if (sc->nrxchains == 1)
2498 		rf |= RT3070_RX1_PD | RT3070_RX2_PD;
2499 	else if (sc->nrxchains == 2)
2500 		rf |= RT3070_RX2_PD;
2501 	rt3090_rf_write(sc, 1, rf);
2502 
2503 	/* set RF offset */
2504 	rf = rt3090_rf_read(sc, 23);
2505 	rf = (rf & ~0x7f) | sc->freq;
2506 	rt3090_rf_write(sc, 23, rf);
2507 
2508 	/* program RF filter */
2509 	rf = rt3090_rf_read(sc, 24);	/* Tx */
2510 	rf = (rf & ~0x3f) | sc->rf24_20mhz;
2511 	rt3090_rf_write(sc, 24, rf);
2512 	rf = rt3090_rf_read(sc, 31);	/* Rx */
2513 	rf = (rf & ~0x3f) | sc->rf24_20mhz;
2514 	rt3090_rf_write(sc, 31, rf);
2515 
2516 	/* enable RF tuning */
2517 	rf = rt3090_rf_read(sc, 7);
2518 	rt3090_rf_write(sc, 7, rf | RT3070_TUNE);
2519 }
2520 
2521 static void
2522 rt5390_set_chan(struct rt2860_softc *sc, u_int chan)
2523 {
2524 	uint8_t h20mhz, rf, tmp;
2525 	int8_t txpow1, txpow2;
2526 	int i;
2527 
2528 	/* RT5390 is 2GHz only */
2529 	KASSERT(chan >= 1 && chan <= 14, ("chan %d not support", chan));
2530 
2531 	/* find the settings for this channel (we know it exists) */
2532 	for (i = 0; rt2860_rf2850[i].chan != chan; i++);
2533 
2534 	/* use Tx power values from EEPROM */
2535 	txpow1 = sc->txpow1[i];
2536 	txpow2 = sc->txpow2[i];
2537 
2538 	rt3090_rf_write(sc, 8, rt3090_freqs[i].n);
2539 	rt3090_rf_write(sc, 9, rt3090_freqs[i].k & 0x0f);
2540 	rf = rt3090_rf_read(sc, 11);
2541 	rf = (rf & ~0x03) | (rt3090_freqs[i].r & 0x03);
2542 	rt3090_rf_write(sc, 11, rf);
2543 
2544 	rf = rt3090_rf_read(sc, 49);
2545 	rf = (rf & ~0x3f) | (txpow1 & 0x3f);
2546 	/* the valid range of the RF R49 is 0x00~0x27 */
2547 	if ((rf & 0x3f) > 0x27)
2548 		rf = (rf & ~0x3f) | 0x27;
2549 	rt3090_rf_write(sc, 49, rf);
2550 	if (sc->mac_ver == 0x5392) {
2551 		rf = rt3090_rf_read(sc, 50);
2552 		rf = (rf & ~0x3f) | (txpow2 & 0x3f);
2553 		/* the valid range of the RF R50 is 0x00~0x27 */
2554 		if ((rf & 0x3f) > 0x27)
2555 			rf = (rf & ~0x3f) | 0x27;
2556 		rt3090_rf_write(sc, 50, rf);
2557 	}
2558 
2559 	rf = rt3090_rf_read(sc, 1);
2560 	rf |= RT3070_RF_BLOCK | RT3070_PLL_PD | RT3070_RX0_PD | RT3070_TX0_PD;
2561 	if (sc->mac_ver == 0x5392)
2562 		rf |= RT3070_RX1_PD | RT3070_TX1_PD;
2563 	rt3090_rf_write(sc, 1, rf);
2564 
2565 	rf = rt3090_rf_read(sc, 2);
2566 	rt3090_rf_write(sc, 2, rf | RT3593_RESCAL);
2567 	DELAY(1000);
2568 	rt3090_rf_write(sc, 2, rf & ~RT3593_RESCAL);
2569 
2570 	rf = rt3090_rf_read(sc, 17);
2571 	tmp = rf;
2572 	rf = (rf & ~0x7f) | (sc->freq & 0x7f);
2573 	rf = MIN(rf, 0x5f);
2574 	if (tmp != rf)
2575 		rt2860_mcu_cmd(sc, 0x74, (tmp << 8 ) | rf, 0);
2576 
2577 	if (sc->mac_ver == 0x5390) {
2578 		if (chan <= 4)
2579 			rf = 0x73;
2580 		else if (chan >= 5 && chan <= 6)
2581 			rf = 0x63;
2582 		else if (chan >= 7 && chan <= 10)
2583 			rf = 0x53;
2584 		else
2585 			rf = 43;
2586 		rt3090_rf_write(sc, 55, rf);
2587 
2588 		if (chan == 1)
2589 			rf = 0x0c;
2590 		else if (chan == 2)
2591 			rf = 0x0b;
2592 		else if (chan == 3)
2593 			rf = 0x0a;
2594 		else if (chan >= 4 && chan <= 6)
2595 			rf = 0x09;
2596 		else if (chan >= 7 && chan <= 12)
2597 			rf = 0x08;
2598 		else if (chan == 13)
2599 			rf = 0x07;
2600 		else
2601 			rf = 0x06;
2602 		rt3090_rf_write(sc, 59, rf);
2603 	}
2604 
2605 	/* Tx/Rx h20M */
2606 	h20mhz = (sc->rf24_20mhz & 0x20) >> 5;
2607 	rf = rt3090_rf_read(sc, 30);
2608 	rf = (rf & ~0x06) | (h20mhz << 1) | (h20mhz << 2);
2609 	rt3090_rf_write(sc, 30, rf);
2610 
2611 	/* Rx BB filter VCM */
2612 	rf = rt3090_rf_read(sc, 30);
2613 	rf = (rf & ~0x18) | 0x10;
2614 	rt3090_rf_write(sc, 30, rf);
2615 
2616 	/* Initiate VCO calibration. */
2617 	rf = rt3090_rf_read(sc, 3);
2618 	rf |= RT3593_VCOCAL;
2619 	rt3090_rf_write(sc, 3, rf);
2620 }
2621 
2622 static int
2623 rt3090_rf_init(struct rt2860_softc *sc)
2624 {
2625 	uint32_t tmp;
2626 	uint8_t rf, bbp;
2627 	int i;
2628 
2629 	rf = rt3090_rf_read(sc, 30);
2630 	/* toggle RF R30 bit 7 */
2631 	rt3090_rf_write(sc, 30, rf | 0x80);
2632 	DELAY(1000);
2633 	rt3090_rf_write(sc, 30, rf & ~0x80);
2634 
2635 	tmp = RAL_READ(sc, RT3070_LDO_CFG0);
2636 	tmp &= ~0x1f000000;
2637 	if (sc->patch_dac && sc->mac_rev < 0x0211)
2638 		tmp |= 0x0d000000;	/* 1.35V */
2639 	else
2640 		tmp |= 0x01000000;	/* 1.2V */
2641 	RAL_WRITE(sc, RT3070_LDO_CFG0, tmp);
2642 
2643 	/* patch LNA_PE_G1 */
2644 	tmp = RAL_READ(sc, RT3070_GPIO_SWITCH);
2645 	RAL_WRITE(sc, RT3070_GPIO_SWITCH, tmp & ~0x20);
2646 
2647 	/* initialize RF registers to default value */
2648 	for (i = 0; i < nitems(rt3090_def_rf); i++) {
2649 		rt3090_rf_write(sc, rt3090_def_rf[i].reg,
2650 		    rt3090_def_rf[i].val);
2651 	}
2652 
2653 	/* select 20MHz bandwidth */
2654 	rt3090_rf_write(sc, 31, 0x14);
2655 
2656 	rf = rt3090_rf_read(sc, 6);
2657 	rt3090_rf_write(sc, 6, rf | 0x40);
2658 
2659 	if (sc->mac_ver != 0x3593) {
2660 		/* calibrate filter for 20MHz bandwidth */
2661 		sc->rf24_20mhz = 0x1f;	/* default value */
2662 		rt3090_filter_calib(sc, 0x07, 0x16, &sc->rf24_20mhz);
2663 
2664 		/* select 40MHz bandwidth */
2665 		bbp = rt2860_mcu_bbp_read(sc, 4);
2666 		rt2860_mcu_bbp_write(sc, 4, (bbp & ~0x08) | 0x10);
2667 		rf = rt3090_rf_read(sc, 31);
2668 		rt3090_rf_write(sc, 31, rf | 0x20);
2669 
2670 		/* calibrate filter for 40MHz bandwidth */
2671 		sc->rf24_40mhz = 0x2f;	/* default value */
2672 		rt3090_filter_calib(sc, 0x27, 0x19, &sc->rf24_40mhz);
2673 
2674 		/* go back to 20MHz bandwidth */
2675 		bbp = rt2860_mcu_bbp_read(sc, 4);
2676 		rt2860_mcu_bbp_write(sc, 4, bbp & ~0x18);
2677 	}
2678 	if (sc->mac_rev < 0x0211)
2679 		rt3090_rf_write(sc, 27, 0x03);
2680 
2681 	tmp = RAL_READ(sc, RT3070_OPT_14);
2682 	RAL_WRITE(sc, RT3070_OPT_14, tmp | 1);
2683 
2684 	if (sc->rf_rev == RT3070_RF_3020)
2685 		rt3090_set_rx_antenna(sc, 0);
2686 
2687 	bbp = rt2860_mcu_bbp_read(sc, 138);
2688 	if (sc->mac_ver == 0x3593) {
2689 		if (sc->ntxchains == 1)
2690 			bbp |= 0x60;	/* turn off DAC1 and DAC2 */
2691 		else if (sc->ntxchains == 2)
2692 			bbp |= 0x40;	/* turn off DAC2 */
2693 		if (sc->nrxchains == 1)
2694 			bbp &= ~0x06;	/* turn off ADC1 and ADC2 */
2695 		else if (sc->nrxchains == 2)
2696 			bbp &= ~0x04;	/* turn off ADC2 */
2697 	} else {
2698 		if (sc->ntxchains == 1)
2699 			bbp |= 0x20;	/* turn off DAC1 */
2700 		if (sc->nrxchains == 1)
2701 			bbp &= ~0x02;	/* turn off ADC1 */
2702 	}
2703 	rt2860_mcu_bbp_write(sc, 138, bbp);
2704 
2705 	rf = rt3090_rf_read(sc, 1);
2706 	rf &= ~(RT3070_RX0_PD | RT3070_TX0_PD);
2707 	rf |= RT3070_RF_BLOCK | RT3070_RX1_PD | RT3070_TX1_PD;
2708 	rt3090_rf_write(sc, 1, rf);
2709 
2710 	rf = rt3090_rf_read(sc, 15);
2711 	rt3090_rf_write(sc, 15, rf & ~RT3070_TX_LO2);
2712 
2713 	rf = rt3090_rf_read(sc, 17);
2714 	rf &= ~RT3070_TX_LO1;
2715 	if (sc->mac_rev >= 0x0211 && !sc->ext_2ghz_lna)
2716 		rf |= 0x20;	/* fix for long range Rx issue */
2717 	if (sc->txmixgain_2ghz >= 2)
2718 		rf = (rf & ~0x7) | sc->txmixgain_2ghz;
2719 	rt3090_rf_write(sc, 17, rf);
2720 
2721 	rf = rt3090_rf_read(sc, 20);
2722 	rt3090_rf_write(sc, 20, rf & ~RT3070_RX_LO1);
2723 
2724 	rf = rt3090_rf_read(sc, 21);
2725 	rt3090_rf_write(sc, 21, rf & ~RT3070_RX_LO2);
2726 
2727 	return (0);
2728 }
2729 
2730 static void
2731 rt5390_rf_init(struct rt2860_softc *sc)
2732 {
2733 	uint8_t rf, bbp;
2734 	int i;
2735 
2736 	rf = rt3090_rf_read(sc, 2);
2737 	/* Toggle RF R2 bit 7. */
2738 	rt3090_rf_write(sc, 2, rf | RT3593_RESCAL);
2739 	DELAY(1000);
2740 	rt3090_rf_write(sc, 2, rf & ~RT3593_RESCAL);
2741 
2742 	/* Initialize RF registers to default value. */
2743 	if (sc->mac_ver == 0x5392) {
2744 		for (i = 0; i < nitems(rt5392_def_rf); i++) {
2745 			rt3090_rf_write(sc, rt5392_def_rf[i].reg,
2746 			    rt5392_def_rf[i].val);
2747 		}
2748 	} else {
2749 		for (i = 0; i < nitems(rt5390_def_rf); i++) {
2750 			rt3090_rf_write(sc, rt5390_def_rf[i].reg,
2751 			    rt5390_def_rf[i].val);
2752 		}
2753 	}
2754 
2755 	sc->rf24_20mhz = 0x1f;
2756 	sc->rf24_40mhz = 0x2f;
2757 
2758 	if (sc->mac_rev < 0x0211)
2759 		rt3090_rf_write(sc, 27, 0x03);
2760 
2761 	/* Set led open drain enable. */
2762 	RAL_WRITE(sc, RT3070_OPT_14, RAL_READ(sc, RT3070_OPT_14) | 1);
2763 
2764 	RAL_WRITE(sc, RT2860_TX_SW_CFG1, 0);
2765 	RAL_WRITE(sc, RT2860_TX_SW_CFG2, 0);
2766 
2767 	if (sc->mac_ver == 0x5390)
2768 		rt3090_set_rx_antenna(sc, 0);
2769 
2770 	/* Patch RSSI inaccurate issue. */
2771 	rt2860_mcu_bbp_write(sc, 79, 0x13);
2772 	rt2860_mcu_bbp_write(sc, 80, 0x05);
2773 	rt2860_mcu_bbp_write(sc, 81, 0x33);
2774 
2775 	/* Enable DC filter. */
2776 	if (sc->mac_rev >= 0x0211)
2777 		rt2860_mcu_bbp_write(sc, 103, 0xc0);
2778 
2779 	bbp = rt2860_mcu_bbp_read(sc, 138);
2780 	if (sc->ntxchains == 1)
2781 		bbp |= 0x20;	/* Turn off DAC1. */
2782 	if (sc->nrxchains == 1)
2783 		bbp &= ~0x02;	/* Turn off ADC1. */
2784 	rt2860_mcu_bbp_write(sc, 138, bbp);
2785 
2786 	/* Enable RX LO1 and LO2. */
2787 	rt3090_rf_write(sc, 38, rt3090_rf_read(sc, 38) & ~RT5390_RX_LO1);
2788 	rt3090_rf_write(sc, 39, rt3090_rf_read(sc, 39) & ~RT5390_RX_LO2);
2789 
2790 	/* Avoid data lost and CRC error. */
2791 	rt2860_mcu_bbp_write(sc, 4,
2792 	    rt2860_mcu_bbp_read(sc, 4) | RT5390_MAC_IF_CTRL);
2793 
2794 	rf = rt3090_rf_read(sc, 30);
2795 	rf = (rf & ~0x18) | 0x10;
2796 	rt3090_rf_write(sc, 30, rf);
2797 }
2798 
2799 static void
2800 rt3090_rf_wakeup(struct rt2860_softc *sc)
2801 {
2802 	uint32_t tmp;
2803 	uint8_t rf;
2804 
2805 	if (sc->mac_ver == 0x3593) {
2806 		/* enable VCO */
2807 		rf = rt3090_rf_read(sc, 1);
2808 		rt3090_rf_write(sc, 1, rf | RT3593_VCO);
2809 
2810 		/* initiate VCO calibration */
2811 		rf = rt3090_rf_read(sc, 3);
2812 		rt3090_rf_write(sc, 3, rf | RT3593_VCOCAL);
2813 
2814 		/* enable VCO bias current control */
2815 		rf = rt3090_rf_read(sc, 6);
2816 		rt3090_rf_write(sc, 6, rf | RT3593_VCO_IC);
2817 
2818 		/* initiate res calibration */
2819 		rf = rt3090_rf_read(sc, 2);
2820 		rt3090_rf_write(sc, 2, rf | RT3593_RESCAL);
2821 
2822 		/* set reference current control to 0.33 mA */
2823 		rf = rt3090_rf_read(sc, 22);
2824 		rf &= ~RT3593_CP_IC_MASK;
2825 		rf |= 1 << RT3593_CP_IC_SHIFT;
2826 		rt3090_rf_write(sc, 22, rf);
2827 
2828 		/* enable RX CTB */
2829 		rf = rt3090_rf_read(sc, 46);
2830 		rt3090_rf_write(sc, 46, rf | RT3593_RX_CTB);
2831 
2832 		rf = rt3090_rf_read(sc, 20);
2833 		rf &= ~(RT3593_LDO_RF_VC_MASK | RT3593_LDO_PLL_VC_MASK);
2834 		rt3090_rf_write(sc, 20, rf);
2835 	} else {
2836 		/* enable RF block */
2837 		rf = rt3090_rf_read(sc, 1);
2838 		rt3090_rf_write(sc, 1, rf | RT3070_RF_BLOCK);
2839 
2840 		/* enable VCO bias current control */
2841 		rf = rt3090_rf_read(sc, 7);
2842 		rt3090_rf_write(sc, 7, rf | 0x30);
2843 
2844 		rf = rt3090_rf_read(sc, 9);
2845 		rt3090_rf_write(sc, 9, rf | 0x0e);
2846 
2847 		/* enable RX CTB */
2848 		rf = rt3090_rf_read(sc, 21);
2849 		rt3090_rf_write(sc, 21, rf | RT3070_RX_CTB);
2850 
2851 		/* fix Tx to Rx IQ glitch by raising RF voltage */
2852 		rf = rt3090_rf_read(sc, 27);
2853 		rf &= ~0x77;
2854 		if (sc->mac_rev < 0x0211)
2855 			rf |= 0x03;
2856 		rt3090_rf_write(sc, 27, rf);
2857 	}
2858 	if (sc->patch_dac && sc->mac_rev < 0x0211) {
2859 		tmp = RAL_READ(sc, RT3070_LDO_CFG0);
2860 		tmp = (tmp & ~0x1f000000) | 0x0d000000;
2861 		RAL_WRITE(sc, RT3070_LDO_CFG0, tmp);
2862 	}
2863 }
2864 
2865 static void
2866 rt5390_rf_wakeup(struct rt2860_softc *sc)
2867 {
2868 	uint32_t tmp;
2869 	uint8_t rf;
2870 
2871 	rf = rt3090_rf_read(sc, 1);
2872 	rf |= RT3070_RF_BLOCK | RT3070_PLL_PD | RT3070_RX0_PD |
2873 	    RT3070_TX0_PD;
2874 	if (sc->mac_ver == 0x5392)
2875 		rf |= RT3070_RX1_PD | RT3070_TX1_PD;
2876 	rt3090_rf_write(sc, 1, rf);
2877 
2878 	rf = rt3090_rf_read(sc, 6);
2879 	rf |= RT3593_VCO_IC | RT3593_VCOCAL;
2880 	if (sc->mac_ver == 0x5390)
2881 		rf &= ~RT3593_VCO_IC;
2882 	rt3090_rf_write(sc, 6, rf);
2883 
2884 	rt3090_rf_write(sc, 2, rt3090_rf_read(sc, 2) | RT3593_RESCAL);
2885 
2886 	rf = rt3090_rf_read(sc, 22);
2887 	rf = (rf & ~0xe0) | 0x20;
2888 	rt3090_rf_write(sc, 22, rf);
2889 
2890 	rt3090_rf_write(sc, 42, rt3090_rf_read(sc, 42) | RT5390_RX_CTB);
2891 	rt3090_rf_write(sc, 20, rt3090_rf_read(sc, 20) & ~0x77);
2892 	rt3090_rf_write(sc, 3, rt3090_rf_read(sc, 3) | RT3593_VCOCAL);
2893 
2894 	if (sc->patch_dac && sc->mac_rev < 0x0211) {
2895 		tmp = RAL_READ(sc, RT3070_LDO_CFG0);
2896 		tmp = (tmp & ~0x1f000000) | 0x0d000000;
2897 		RAL_WRITE(sc, RT3070_LDO_CFG0, tmp);
2898 	}
2899 }
2900 
2901 static int
2902 rt3090_filter_calib(struct rt2860_softc *sc, uint8_t init, uint8_t target,
2903     uint8_t *val)
2904 {
2905 	uint8_t rf22, rf24;
2906 	uint8_t bbp55_pb, bbp55_sb, delta;
2907 	int ntries;
2908 
2909 	/* program filter */
2910 	rf24 = rt3090_rf_read(sc, 24);
2911 	rf24 = (rf24 & 0xc0) | init;	/* initial filter value */
2912 	rt3090_rf_write(sc, 24, rf24);
2913 
2914 	/* enable baseband loopback mode */
2915 	rf22 = rt3090_rf_read(sc, 22);
2916 	rt3090_rf_write(sc, 22, rf22 | RT3070_BB_LOOPBACK);
2917 
2918 	/* set power and frequency of passband test tone */
2919 	rt2860_mcu_bbp_write(sc, 24, 0x00);
2920 	for (ntries = 0; ntries < 100; ntries++) {
2921 		/* transmit test tone */
2922 		rt2860_mcu_bbp_write(sc, 25, 0x90);
2923 		DELAY(1000);
2924 		/* read received power */
2925 		bbp55_pb = rt2860_mcu_bbp_read(sc, 55);
2926 		if (bbp55_pb != 0)
2927 			break;
2928 	}
2929 	if (ntries == 100)
2930 		return (ETIMEDOUT);
2931 
2932 	/* set power and frequency of stopband test tone */
2933 	rt2860_mcu_bbp_write(sc, 24, 0x06);
2934 	for (ntries = 0; ntries < 100; ntries++) {
2935 		/* transmit test tone */
2936 		rt2860_mcu_bbp_write(sc, 25, 0x90);
2937 		DELAY(1000);
2938 		/* read received power */
2939 		bbp55_sb = rt2860_mcu_bbp_read(sc, 55);
2940 
2941 		delta = bbp55_pb - bbp55_sb;
2942 		if (delta > target)
2943 			break;
2944 
2945 		/* reprogram filter */
2946 		rf24++;
2947 		rt3090_rf_write(sc, 24, rf24);
2948 	}
2949 	if (ntries < 100) {
2950 		if (rf24 != init)
2951 			rf24--;	/* backtrack */
2952 		*val = rf24;
2953 		rt3090_rf_write(sc, 24, rf24);
2954 	}
2955 
2956 	/* restore initial state */
2957 	rt2860_mcu_bbp_write(sc, 24, 0x00);
2958 
2959 	/* disable baseband loopback mode */
2960 	rf22 = rt3090_rf_read(sc, 22);
2961 	rt3090_rf_write(sc, 22, rf22 & ~RT3070_BB_LOOPBACK);
2962 
2963 	return (0);
2964 }
2965 
2966 static void
2967 rt3090_rf_setup(struct rt2860_softc *sc)
2968 {
2969 	uint8_t bbp;
2970 	int i;
2971 
2972 	if (sc->mac_rev >= 0x0211) {
2973 		/* enable DC filter */
2974 		rt2860_mcu_bbp_write(sc, 103, 0xc0);
2975 
2976 		/* improve power consumption */
2977 		bbp = rt2860_mcu_bbp_read(sc, 31);
2978 		rt2860_mcu_bbp_write(sc, 31, bbp & ~0x03);
2979 	}
2980 
2981 	RAL_WRITE(sc, RT2860_TX_SW_CFG1, 0);
2982 	if (sc->mac_rev < 0x0211) {
2983 		RAL_WRITE(sc, RT2860_TX_SW_CFG2,
2984 		    sc->patch_dac ? 0x2c : 0x0f);
2985 	} else
2986 		RAL_WRITE(sc, RT2860_TX_SW_CFG2, 0);
2987 
2988 	/* initialize RF registers from ROM */
2989 	if (sc->mac_ver < 0x5390) {
2990 		for (i = 0; i < 10; i++) {
2991 			if (sc->rf[i].reg == 0 || sc->rf[i].reg == 0xff)
2992 				continue;
2993 			rt3090_rf_write(sc, sc->rf[i].reg, sc->rf[i].val);
2994 		}
2995 	}
2996 }
2997 
2998 static void
2999 rt2860_set_leds(struct rt2860_softc *sc, uint16_t which)
3000 {
3001 	rt2860_mcu_cmd(sc, RT2860_MCU_CMD_LEDS,
3002 	    which | (sc->leds & 0x7f), 0);
3003 }
3004 
3005 /*
3006  * Hardware has a general-purpose programmable timer interrupt that can
3007  * periodically raise MAC_INT_4.
3008  */
3009 static void
3010 rt2860_set_gp_timer(struct rt2860_softc *sc, int ms)
3011 {
3012 	uint32_t tmp;
3013 
3014 	/* disable GP timer before reprogramming it */
3015 	tmp = RAL_READ(sc, RT2860_INT_TIMER_EN);
3016 	RAL_WRITE(sc, RT2860_INT_TIMER_EN, tmp & ~RT2860_GP_TIMER_EN);
3017 
3018 	if (ms == 0)
3019 		return;
3020 
3021 	tmp = RAL_READ(sc, RT2860_INT_TIMER_CFG);
3022 	ms *= 16;	/* Unit: 64us */
3023 	tmp = (tmp & 0xffff) | ms << RT2860_GP_TIMER_SHIFT;
3024 	RAL_WRITE(sc, RT2860_INT_TIMER_CFG, tmp);
3025 
3026 	/* enable GP timer */
3027 	tmp = RAL_READ(sc, RT2860_INT_TIMER_EN);
3028 	RAL_WRITE(sc, RT2860_INT_TIMER_EN, tmp | RT2860_GP_TIMER_EN);
3029 }
3030 
3031 static void
3032 rt2860_set_bssid(struct rt2860_softc *sc, const uint8_t *bssid)
3033 {
3034 	RAL_WRITE(sc, RT2860_MAC_BSSID_DW0,
3035 	    bssid[0] | bssid[1] << 8 | bssid[2] << 16 | bssid[3] << 24);
3036 	RAL_WRITE(sc, RT2860_MAC_BSSID_DW1,
3037 	    bssid[4] | bssid[5] << 8);
3038 }
3039 
3040 static void
3041 rt2860_set_macaddr(struct rt2860_softc *sc, const uint8_t *addr)
3042 {
3043 	RAL_WRITE(sc, RT2860_MAC_ADDR_DW0,
3044 	    addr[0] | addr[1] << 8 | addr[2] << 16 | addr[3] << 24);
3045 	RAL_WRITE(sc, RT2860_MAC_ADDR_DW1,
3046 	    addr[4] | addr[5] << 8 | 0xff << 16);
3047 }
3048 
3049 static void
3050 rt2860_updateslot(struct ieee80211com *ic)
3051 {
3052 	struct rt2860_softc *sc = ic->ic_softc;
3053 	uint32_t tmp;
3054 
3055 	tmp = RAL_READ(sc, RT2860_BKOFF_SLOT_CFG);
3056 	tmp &= ~0xff;
3057 	tmp |= (ic->ic_flags & IEEE80211_F_SHSLOT) ? 9 : 20;
3058 	RAL_WRITE(sc, RT2860_BKOFF_SLOT_CFG, tmp);
3059 }
3060 
3061 static void
3062 rt2860_updateprot(struct rt2860_softc *sc)
3063 {
3064 	struct ieee80211com *ic = &sc->sc_ic;
3065 	uint32_t tmp;
3066 
3067 	tmp = RT2860_RTSTH_EN | RT2860_PROT_NAV_SHORT | RT2860_TXOP_ALLOW_ALL;
3068 	/* setup protection frame rate (MCS code) */
3069 	tmp |= IEEE80211_IS_CHAN_5GHZ(ic->ic_curchan) ?
3070 	    rt2860_rates[RT2860_RIDX_OFDM6].mcs :
3071 	    rt2860_rates[RT2860_RIDX_CCK11].mcs;
3072 
3073 	/* CCK frames don't require protection */
3074 	RAL_WRITE(sc, RT2860_CCK_PROT_CFG, tmp);
3075 
3076 	if (ic->ic_flags & IEEE80211_F_USEPROT) {
3077 		if (ic->ic_protmode == IEEE80211_PROT_RTSCTS)
3078 			tmp |= RT2860_PROT_CTRL_RTS_CTS;
3079 		else if (ic->ic_protmode == IEEE80211_PROT_CTSONLY)
3080 			tmp |= RT2860_PROT_CTRL_CTS;
3081 	}
3082 	RAL_WRITE(sc, RT2860_OFDM_PROT_CFG, tmp);
3083 }
3084 
3085 static void
3086 rt2860_update_promisc(struct ieee80211com *ic)
3087 {
3088 	struct rt2860_softc *sc = ic->ic_softc;
3089 	uint32_t tmp;
3090 
3091 	tmp = RAL_READ(sc, RT2860_RX_FILTR_CFG);
3092 	tmp &= ~RT2860_DROP_NOT_MYBSS;
3093 	if (ic->ic_promisc == 0)
3094 		tmp |= RT2860_DROP_NOT_MYBSS;
3095 	RAL_WRITE(sc, RT2860_RX_FILTR_CFG, tmp);
3096 }
3097 
3098 static int
3099 rt2860_updateedca(struct ieee80211com *ic)
3100 {
3101 	struct rt2860_softc *sc = ic->ic_softc;
3102 	const struct wmeParams *wmep;
3103 	int aci;
3104 
3105 	wmep = ic->ic_wme.wme_chanParams.cap_wmeParams;
3106 
3107 	/* update MAC TX configuration registers */
3108 	for (aci = 0; aci < WME_NUM_AC; aci++) {
3109 		RAL_WRITE(sc, RT2860_EDCA_AC_CFG(aci),
3110 		    wmep[aci].wmep_logcwmax << 16 |
3111 		    wmep[aci].wmep_logcwmin << 12 |
3112 		    wmep[aci].wmep_aifsn  <<  8 |
3113 		    wmep[aci].wmep_txopLimit);
3114 	}
3115 
3116 	/* update SCH/DMA registers too */
3117 	RAL_WRITE(sc, RT2860_WMM_AIFSN_CFG,
3118 	    wmep[WME_AC_VO].wmep_aifsn  << 12 |
3119 	    wmep[WME_AC_VI].wmep_aifsn  <<  8 |
3120 	    wmep[WME_AC_BK].wmep_aifsn  <<  4 |
3121 	    wmep[WME_AC_BE].wmep_aifsn);
3122 	RAL_WRITE(sc, RT2860_WMM_CWMIN_CFG,
3123 	    wmep[WME_AC_VO].wmep_logcwmin << 12 |
3124 	    wmep[WME_AC_VI].wmep_logcwmin <<  8 |
3125 	    wmep[WME_AC_BK].wmep_logcwmin <<  4 |
3126 	    wmep[WME_AC_BE].wmep_logcwmin);
3127 	RAL_WRITE(sc, RT2860_WMM_CWMAX_CFG,
3128 	    wmep[WME_AC_VO].wmep_logcwmax << 12 |
3129 	    wmep[WME_AC_VI].wmep_logcwmax <<  8 |
3130 	    wmep[WME_AC_BK].wmep_logcwmax <<  4 |
3131 	    wmep[WME_AC_BE].wmep_logcwmax);
3132 	RAL_WRITE(sc, RT2860_WMM_TXOP0_CFG,
3133 	    wmep[WME_AC_BK].wmep_txopLimit << 16 |
3134 	    wmep[WME_AC_BE].wmep_txopLimit);
3135 	RAL_WRITE(sc, RT2860_WMM_TXOP1_CFG,
3136 	    wmep[WME_AC_VO].wmep_txopLimit << 16 |
3137 	    wmep[WME_AC_VI].wmep_txopLimit);
3138 
3139 	return 0;
3140 }
3141 
3142 #ifdef HW_CRYPTO
3143 static int
3144 rt2860_set_key(struct ieee80211com *ic, struct ieee80211_node *ni,
3145     struct ieee80211_key *k)
3146 {
3147 	struct rt2860_softc *sc = ic->ic_softc;
3148 	bus_size_t base;
3149 	uint32_t attr;
3150 	uint8_t mode, wcid, iv[8];
3151 
3152 	/* defer setting of WEP keys until interface is brought up */
3153 	if ((ic->ic_if.if_flags & (IFF_UP | IFF_RUNNING)) !=
3154 	    (IFF_UP | IFF_RUNNING))
3155 		return 0;
3156 
3157 	/* map net80211 cipher to RT2860 security mode */
3158 	switch (k->k_cipher) {
3159 	case IEEE80211_CIPHER_WEP40:
3160 		mode = RT2860_MODE_WEP40;
3161 		break;
3162 	case IEEE80211_CIPHER_WEP104:
3163 		mode = RT2860_MODE_WEP104;
3164 		break;
3165 	case IEEE80211_CIPHER_TKIP:
3166 		mode = RT2860_MODE_TKIP;
3167 		break;
3168 	case IEEE80211_CIPHER_CCMP:
3169 		mode = RT2860_MODE_AES_CCMP;
3170 		break;
3171 	default:
3172 		return EINVAL;
3173 	}
3174 
3175 	if (k->k_flags & IEEE80211_KEY_GROUP) {
3176 		wcid = 0;	/* NB: update WCID0 for group keys */
3177 		base = RT2860_SKEY(0, k->k_id);
3178 	} else {
3179 		wcid = ((struct rt2860_node *)ni)->wcid;
3180 		base = RT2860_PKEY(wcid);
3181 	}
3182 
3183 	if (k->k_cipher == IEEE80211_CIPHER_TKIP) {
3184 		RAL_WRITE_REGION_1(sc, base, k->k_key, 16);
3185 #ifndef IEEE80211_STA_ONLY
3186 		if (ic->ic_opmode == IEEE80211_M_HOSTAP) {
3187 			RAL_WRITE_REGION_1(sc, base + 16, &k->k_key[16], 8);
3188 			RAL_WRITE_REGION_1(sc, base + 24, &k->k_key[24], 8);
3189 		} else
3190 #endif
3191 		{
3192 			RAL_WRITE_REGION_1(sc, base + 16, &k->k_key[24], 8);
3193 			RAL_WRITE_REGION_1(sc, base + 24, &k->k_key[16], 8);
3194 		}
3195 	} else
3196 		RAL_WRITE_REGION_1(sc, base, k->k_key, k->k_len);
3197 
3198 	if (!(k->k_flags & IEEE80211_KEY_GROUP) ||
3199 	    (k->k_flags & IEEE80211_KEY_TX)) {
3200 		/* set initial packet number in IV+EIV */
3201 		if (k->k_cipher == IEEE80211_CIPHER_WEP40 ||
3202 		    k->k_cipher == IEEE80211_CIPHER_WEP104) {
3203 			uint32_t val = arc4random();
3204 			/* skip weak IVs from Fluhrer/Mantin/Shamir */
3205 			if (val >= 0x03ff00 && (val & 0xf8ff00) == 0x00ff00)
3206 				val += 0x000100;
3207 			iv[0] = val;
3208 			iv[1] = val >> 8;
3209 			iv[2] = val >> 16;
3210 			iv[3] = k->k_id << 6;
3211 			iv[4] = iv[5] = iv[6] = iv[7] = 0;
3212 		} else {
3213 			if (k->k_cipher == IEEE80211_CIPHER_TKIP) {
3214 				iv[0] = k->k_tsc >> 8;
3215 				iv[1] = (iv[0] | 0x20) & 0x7f;
3216 				iv[2] = k->k_tsc;
3217 			} else /* CCMP */ {
3218 				iv[0] = k->k_tsc;
3219 				iv[1] = k->k_tsc >> 8;
3220 				iv[2] = 0;
3221 			}
3222 			iv[3] = k->k_id << 6 | IEEE80211_WEP_EXTIV;
3223 			iv[4] = k->k_tsc >> 16;
3224 			iv[5] = k->k_tsc >> 24;
3225 			iv[6] = k->k_tsc >> 32;
3226 			iv[7] = k->k_tsc >> 40;
3227 		}
3228 		RAL_WRITE_REGION_1(sc, RT2860_IVEIV(wcid), iv, 8);
3229 	}
3230 
3231 	if (k->k_flags & IEEE80211_KEY_GROUP) {
3232 		/* install group key */
3233 		attr = RAL_READ(sc, RT2860_SKEY_MODE_0_7);
3234 		attr &= ~(0xf << (k->k_id * 4));
3235 		attr |= mode << (k->k_id * 4);
3236 		RAL_WRITE(sc, RT2860_SKEY_MODE_0_7, attr);
3237 	} else {
3238 		/* install pairwise key */
3239 		attr = RAL_READ(sc, RT2860_WCID_ATTR(wcid));
3240 		attr = (attr & ~0xf) | (mode << 1) | RT2860_RX_PKEY_EN;
3241 		RAL_WRITE(sc, RT2860_WCID_ATTR(wcid), attr);
3242 	}
3243 	return 0;
3244 }
3245 
3246 static void
3247 rt2860_delete_key(struct ieee80211com *ic, struct ieee80211_node *ni,
3248     struct ieee80211_key *k)
3249 {
3250 	struct rt2860_softc *sc = ic->ic_softc;
3251 	uint32_t attr;
3252 	uint8_t wcid;
3253 
3254 	if (k->k_flags & IEEE80211_KEY_GROUP) {
3255 		/* remove group key */
3256 		attr = RAL_READ(sc, RT2860_SKEY_MODE_0_7);
3257 		attr &= ~(0xf << (k->k_id * 4));
3258 		RAL_WRITE(sc, RT2860_SKEY_MODE_0_7, attr);
3259 
3260 	} else {
3261 		/* remove pairwise key */
3262 		wcid = ((struct rt2860_node *)ni)->wcid;
3263 		attr = RAL_READ(sc, RT2860_WCID_ATTR(wcid));
3264 		attr &= ~0xf;
3265 		RAL_WRITE(sc, RT2860_WCID_ATTR(wcid), attr);
3266 	}
3267 }
3268 #endif
3269 
3270 static int8_t
3271 rt2860_rssi2dbm(struct rt2860_softc *sc, uint8_t rssi, uint8_t rxchain)
3272 {
3273 	struct ieee80211com *ic = &sc->sc_ic;
3274 	struct ieee80211_channel *c = ic->ic_curchan;
3275 	int delta;
3276 
3277 	if (IEEE80211_IS_CHAN_5GHZ(c)) {
3278 		u_int chan = ieee80211_chan2ieee(ic, c);
3279 		delta = sc->rssi_5ghz[rxchain];
3280 
3281 		/* determine channel group */
3282 		if (chan <= 64)
3283 			delta -= sc->lna[1];
3284 		else if (chan <= 128)
3285 			delta -= sc->lna[2];
3286 		else
3287 			delta -= sc->lna[3];
3288 	} else
3289 		delta = sc->rssi_2ghz[rxchain] - sc->lna[0];
3290 
3291 	return -12 - delta - rssi;
3292 }
3293 
3294 /*
3295  * Add `delta' (signed) to each 4-bit sub-word of a 32-bit word.
3296  * Used to adjust per-rate Tx power registers.
3297  */
3298 static __inline uint32_t
3299 b4inc(uint32_t b32, int8_t delta)
3300 {
3301 	int8_t i, b4;
3302 
3303 	for (i = 0; i < 8; i++) {
3304 		b4 = b32 & 0xf;
3305 		b4 += delta;
3306 		if (b4 < 0)
3307 			b4 = 0;
3308 		else if (b4 > 0xf)
3309 			b4 = 0xf;
3310 		b32 = b32 >> 4 | b4 << 28;
3311 	}
3312 	return b32;
3313 }
3314 
3315 static const char *
3316 rt2860_get_rf(uint8_t rev)
3317 {
3318 	switch (rev) {
3319 	case RT2860_RF_2820:	return "RT2820";
3320 	case RT2860_RF_2850:	return "RT2850";
3321 	case RT2860_RF_2720:	return "RT2720";
3322 	case RT2860_RF_2750:	return "RT2750";
3323 	case RT3070_RF_3020:	return "RT3020";
3324 	case RT3070_RF_2020:	return "RT2020";
3325 	case RT3070_RF_3021:	return "RT3021";
3326 	case RT3070_RF_3022:	return "RT3022";
3327 	case RT3070_RF_3052:	return "RT3052";
3328 	case RT3070_RF_3320:	return "RT3320";
3329 	case RT3070_RF_3053:	return "RT3053";
3330 	case RT5390_RF_5390:	return "RT5390";
3331 	default:		return "unknown";
3332 	}
3333 }
3334 
3335 static int
3336 rt2860_read_eeprom(struct rt2860_softc *sc, uint8_t macaddr[IEEE80211_ADDR_LEN])
3337 {
3338 	int8_t delta_2ghz, delta_5ghz;
3339 	uint32_t tmp;
3340 	uint16_t val;
3341 	int ridx, ant, i;
3342 
3343 	/* check whether the ROM is eFUSE ROM or EEPROM */
3344 	sc->sc_srom_read = rt2860_eeprom_read_2;
3345 	if (sc->mac_ver >= 0x3071) {
3346 		tmp = RAL_READ(sc, RT3070_EFUSE_CTRL);
3347 		DPRINTF(("EFUSE_CTRL=0x%08x\n", tmp));
3348 		if (tmp & RT3070_SEL_EFUSE)
3349 			sc->sc_srom_read = rt3090_efuse_read_2;
3350 	}
3351 
3352 	/* read EEPROM version */
3353 	val = rt2860_srom_read(sc, RT2860_EEPROM_VERSION);
3354 	DPRINTF(("EEPROM rev=%d, FAE=%d\n", val & 0xff, val >> 8));
3355 
3356 	/* read MAC address */
3357 	val = rt2860_srom_read(sc, RT2860_EEPROM_MAC01);
3358 	macaddr[0] = val & 0xff;
3359 	macaddr[1] = val >> 8;
3360 	val = rt2860_srom_read(sc, RT2860_EEPROM_MAC23);
3361 	macaddr[2] = val & 0xff;
3362 	macaddr[3] = val >> 8;
3363 	val = rt2860_srom_read(sc, RT2860_EEPROM_MAC45);
3364 	macaddr[4] = val & 0xff;
3365 	macaddr[5] = val >> 8;
3366 
3367 	/* read country code */
3368 	val = rt2860_srom_read(sc, RT2860_EEPROM_COUNTRY);
3369 	DPRINTF(("EEPROM region code=0x%04x\n", val));
3370 
3371 	/* read vendor BBP settings */
3372 	for (i = 0; i < 8; i++) {
3373 		val = rt2860_srom_read(sc, RT2860_EEPROM_BBP_BASE + i);
3374 		sc->bbp[i].val = val & 0xff;
3375 		sc->bbp[i].reg = val >> 8;
3376 		DPRINTF(("BBP%d=0x%02x\n", sc->bbp[i].reg, sc->bbp[i].val));
3377 	}
3378 	if (sc->mac_ver >= 0x3071) {
3379 		/* read vendor RF settings */
3380 		for (i = 0; i < 10; i++) {
3381 			val = rt2860_srom_read(sc, RT3071_EEPROM_RF_BASE + i);
3382 			sc->rf[i].val = val & 0xff;
3383 			sc->rf[i].reg = val >> 8;
3384 			DPRINTF(("RF%d=0x%02x\n", sc->rf[i].reg,
3385 			    sc->rf[i].val));
3386 		}
3387 	}
3388 
3389 	/* read RF frequency offset from EEPROM */
3390 	val = rt2860_srom_read(sc, RT2860_EEPROM_FREQ_LEDS);
3391 	sc->freq = ((val & 0xff) != 0xff) ? val & 0xff : 0;
3392 	DPRINTF(("EEPROM freq offset %d\n", sc->freq & 0xff));
3393 	if ((val >> 8) != 0xff) {
3394 		/* read LEDs operating mode */
3395 		sc->leds = val >> 8;
3396 		sc->led[0] = rt2860_srom_read(sc, RT2860_EEPROM_LED1);
3397 		sc->led[1] = rt2860_srom_read(sc, RT2860_EEPROM_LED2);
3398 		sc->led[2] = rt2860_srom_read(sc, RT2860_EEPROM_LED3);
3399 	} else {
3400 		/* broken EEPROM, use default settings */
3401 		sc->leds = 0x01;
3402 		sc->led[0] = 0x5555;
3403 		sc->led[1] = 0x2221;
3404 		sc->led[2] = 0xa9f8;
3405 	}
3406 	DPRINTF(("EEPROM LED mode=0x%02x, LEDs=0x%04x/0x%04x/0x%04x\n",
3407 	    sc->leds, sc->led[0], sc->led[1], sc->led[2]));
3408 
3409 	/* read RF information */
3410 	val = rt2860_srom_read(sc, RT2860_EEPROM_ANTENNA);
3411 	if (val == 0xffff) {
3412 		DPRINTF(("invalid EEPROM antenna info, using default\n"));
3413 		if (sc->mac_ver >= 0x5390) {
3414 			/* default to RF5390 */
3415 			sc->rf_rev = RT5390_RF_5390;
3416 			sc->ntxchains = (sc->mac_ver == 0x5392) ? 2 : 1;
3417 			sc->nrxchains = (sc->mac_ver == 0x5392) ? 2 : 1;
3418 		} else if (sc->mac_ver == 0x3593) {
3419 			/* default to RF3053 3T3R */
3420 			sc->rf_rev = RT3070_RF_3053;
3421 			sc->ntxchains = 3;
3422 			sc->nrxchains = 3;
3423 		} else if (sc->mac_ver >= 0x3071) {
3424 			/* default to RF3020 1T1R */
3425 			sc->rf_rev = RT3070_RF_3020;
3426 			sc->ntxchains = 1;
3427 			sc->nrxchains = 1;
3428 		} else {
3429 			/* default to RF2820 1T2R */
3430 			sc->rf_rev = RT2860_RF_2820;
3431 			sc->ntxchains = 1;
3432 			sc->nrxchains = 2;
3433 		}
3434 	} else {
3435 		sc->rf_rev = (val >> 8) & 0xf;
3436 		if (sc->mac_ver >= 0x5390) {
3437 			sc->ntxchains = (sc->mac_ver == 0x5392) ? 2 : 1;
3438 			sc->nrxchains = (sc->mac_ver == 0x5392) ? 2 : 1;
3439 		} else {
3440 			sc->ntxchains = (val >> 4) & 0xf;
3441 			sc->nrxchains = val & 0xf;
3442 		}
3443 	}
3444 	DPRINTF(("EEPROM RF rev=0x%02x chains=%dT%dR\n",
3445 	    sc->rf_rev, sc->ntxchains, sc->nrxchains));
3446 
3447 	/* check if RF supports automatic Tx access gain control */
3448 	val = rt2860_srom_read(sc, RT2860_EEPROM_CONFIG);
3449 	DPRINTF(("EEPROM CFG 0x%04x\n", val));
3450 	/* check if driver should patch the DAC issue */
3451 	if ((val >> 8) != 0xff)
3452 		sc->patch_dac = (val >> 15) & 1;
3453 	if ((val & 0xff) != 0xff) {
3454 		sc->ext_5ghz_lna = (val >> 3) & 1;
3455 		sc->ext_2ghz_lna = (val >> 2) & 1;
3456 		/* check if RF supports automatic Tx access gain control */
3457 		sc->calib_2ghz = sc->calib_5ghz = 0; /* XXX (val >> 1) & 1 */;
3458 		/* check if we have a hardware radio switch */
3459 		sc->rfswitch = val & 1;
3460 	}
3461 	if (sc->sc_flags & RT2860_ADVANCED_PS) {
3462 		/* read PCIe power save level */
3463 		val = rt2860_srom_read(sc, RT2860_EEPROM_PCIE_PSLEVEL);
3464 		if ((val & 0xff) != 0xff) {
3465 			sc->pslevel = val & 0x3;
3466 			val = rt2860_srom_read(sc, RT2860_EEPROM_REV);
3467 			if ((val & 0xff80) != 0x9280)
3468 				sc->pslevel = MIN(sc->pslevel, 1);
3469 			DPRINTF(("EEPROM PCIe PS Level=%d\n", sc->pslevel));
3470 		}
3471 	}
3472 
3473 	/* read power settings for 2GHz channels */
3474 	for (i = 0; i < 14; i += 2) {
3475 		val = rt2860_srom_read(sc,
3476 		    RT2860_EEPROM_PWR2GHZ_BASE1 + i / 2);
3477 		sc->txpow1[i + 0] = (int8_t)(val & 0xff);
3478 		sc->txpow1[i + 1] = (int8_t)(val >> 8);
3479 
3480 		if (sc->mac_ver != 0x5390) {
3481 			val = rt2860_srom_read(sc,
3482 			    RT2860_EEPROM_PWR2GHZ_BASE2 + i / 2);
3483 			sc->txpow2[i + 0] = (int8_t)(val & 0xff);
3484 			sc->txpow2[i + 1] = (int8_t)(val >> 8);
3485 		}
3486 	}
3487 	/* fix broken Tx power entries */
3488 	for (i = 0; i < 14; i++) {
3489 		if (sc->txpow1[i] < 0 ||
3490 		    sc->txpow1[i] > ((sc->mac_ver >= 0x5390) ? 39 : 31))
3491 			sc->txpow1[i] = 5;
3492 		if (sc->mac_ver != 0x5390) {
3493 			if (sc->txpow2[i] < 0 ||
3494 			    sc->txpow2[i] > ((sc->mac_ver == 0x5392) ? 39 : 31))
3495 				sc->txpow2[i] = 5;
3496 		}
3497 		DPRINTF(("chan %d: power1=%d, power2=%d\n",
3498 		    rt2860_rf2850[i].chan, sc->txpow1[i], sc->txpow2[i]));
3499 	}
3500 	/* read power settings for 5GHz channels */
3501 	for (i = 0; i < 40; i += 2) {
3502 		val = rt2860_srom_read(sc,
3503 		    RT2860_EEPROM_PWR5GHZ_BASE1 + i / 2);
3504 		sc->txpow1[i + 14] = (int8_t)(val & 0xff);
3505 		sc->txpow1[i + 15] = (int8_t)(val >> 8);
3506 
3507 		val = rt2860_srom_read(sc,
3508 		    RT2860_EEPROM_PWR5GHZ_BASE2 + i / 2);
3509 		sc->txpow2[i + 14] = (int8_t)(val & 0xff);
3510 		sc->txpow2[i + 15] = (int8_t)(val >> 8);
3511 	}
3512 	/* fix broken Tx power entries */
3513 	for (i = 0; i < 40; i++) {
3514 		if (sc->txpow1[14 + i] < -7 || sc->txpow1[14 + i] > 15)
3515 			sc->txpow1[14 + i] = 5;
3516 		if (sc->txpow2[14 + i] < -7 || sc->txpow2[14 + i] > 15)
3517 			sc->txpow2[14 + i] = 5;
3518 		DPRINTF(("chan %d: power1=%d, power2=%d\n",
3519 		    rt2860_rf2850[14 + i].chan, sc->txpow1[14 + i],
3520 		    sc->txpow2[14 + i]));
3521 	}
3522 
3523 	/* read Tx power compensation for each Tx rate */
3524 	val = rt2860_srom_read(sc, RT2860_EEPROM_DELTAPWR);
3525 	delta_2ghz = delta_5ghz = 0;
3526 	if ((val & 0xff) != 0xff && (val & 0x80)) {
3527 		delta_2ghz = val & 0xf;
3528 		if (!(val & 0x40))	/* negative number */
3529 			delta_2ghz = -delta_2ghz;
3530 	}
3531 	val >>= 8;
3532 	if ((val & 0xff) != 0xff && (val & 0x80)) {
3533 		delta_5ghz = val & 0xf;
3534 		if (!(val & 0x40))	/* negative number */
3535 			delta_5ghz = -delta_5ghz;
3536 	}
3537 	DPRINTF(("power compensation=%d (2GHz), %d (5GHz)\n",
3538 	    delta_2ghz, delta_5ghz));
3539 
3540 	for (ridx = 0; ridx < 5; ridx++) {
3541 		uint32_t reg;
3542 
3543 		val = rt2860_srom_read(sc, RT2860_EEPROM_RPWR + ridx * 2);
3544 		reg = val;
3545 		val = rt2860_srom_read(sc, RT2860_EEPROM_RPWR + ridx * 2 + 1);
3546 		reg |= (uint32_t)val << 16;
3547 
3548 		sc->txpow20mhz[ridx] = reg;
3549 		sc->txpow40mhz_2ghz[ridx] = b4inc(reg, delta_2ghz);
3550 		sc->txpow40mhz_5ghz[ridx] = b4inc(reg, delta_5ghz);
3551 
3552 		DPRINTF(("ridx %d: power 20MHz=0x%08x, 40MHz/2GHz=0x%08x, "
3553 		    "40MHz/5GHz=0x%08x\n", ridx, sc->txpow20mhz[ridx],
3554 		    sc->txpow40mhz_2ghz[ridx], sc->txpow40mhz_5ghz[ridx]));
3555 	}
3556 
3557 	/* read factory-calibrated samples for temperature compensation */
3558 	val = rt2860_srom_read(sc, RT2860_EEPROM_TSSI1_2GHZ);
3559 	sc->tssi_2ghz[0] = val & 0xff;	/* [-4] */
3560 	sc->tssi_2ghz[1] = val >> 8;	/* [-3] */
3561 	val = rt2860_srom_read(sc, RT2860_EEPROM_TSSI2_2GHZ);
3562 	sc->tssi_2ghz[2] = val & 0xff;	/* [-2] */
3563 	sc->tssi_2ghz[3] = val >> 8;	/* [-1] */
3564 	val = rt2860_srom_read(sc, RT2860_EEPROM_TSSI3_2GHZ);
3565 	sc->tssi_2ghz[4] = val & 0xff;	/* [+0] */
3566 	sc->tssi_2ghz[5] = val >> 8;	/* [+1] */
3567 	val = rt2860_srom_read(sc, RT2860_EEPROM_TSSI4_2GHZ);
3568 	sc->tssi_2ghz[6] = val & 0xff;	/* [+2] */
3569 	sc->tssi_2ghz[7] = val >> 8;	/* [+3] */
3570 	val = rt2860_srom_read(sc, RT2860_EEPROM_TSSI5_2GHZ);
3571 	sc->tssi_2ghz[8] = val & 0xff;	/* [+4] */
3572 	sc->step_2ghz = val >> 8;
3573 	DPRINTF(("TSSI 2GHz: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x "
3574 	    "0x%02x 0x%02x step=%d\n", sc->tssi_2ghz[0], sc->tssi_2ghz[1],
3575 	    sc->tssi_2ghz[2], sc->tssi_2ghz[3], sc->tssi_2ghz[4],
3576 	    sc->tssi_2ghz[5], sc->tssi_2ghz[6], sc->tssi_2ghz[7],
3577 	    sc->tssi_2ghz[8], sc->step_2ghz));
3578 	/* check that ref value is correct, otherwise disable calibration */
3579 	if (sc->tssi_2ghz[4] == 0xff)
3580 		sc->calib_2ghz = 0;
3581 
3582 	val = rt2860_srom_read(sc, RT2860_EEPROM_TSSI1_5GHZ);
3583 	sc->tssi_5ghz[0] = val & 0xff;	/* [-4] */
3584 	sc->tssi_5ghz[1] = val >> 8;	/* [-3] */
3585 	val = rt2860_srom_read(sc, RT2860_EEPROM_TSSI2_5GHZ);
3586 	sc->tssi_5ghz[2] = val & 0xff;	/* [-2] */
3587 	sc->tssi_5ghz[3] = val >> 8;	/* [-1] */
3588 	val = rt2860_srom_read(sc, RT2860_EEPROM_TSSI3_5GHZ);
3589 	sc->tssi_5ghz[4] = val & 0xff;	/* [+0] */
3590 	sc->tssi_5ghz[5] = val >> 8;	/* [+1] */
3591 	val = rt2860_srom_read(sc, RT2860_EEPROM_TSSI4_5GHZ);
3592 	sc->tssi_5ghz[6] = val & 0xff;	/* [+2] */
3593 	sc->tssi_5ghz[7] = val >> 8;	/* [+3] */
3594 	val = rt2860_srom_read(sc, RT2860_EEPROM_TSSI5_5GHZ);
3595 	sc->tssi_5ghz[8] = val & 0xff;	/* [+4] */
3596 	sc->step_5ghz = val >> 8;
3597 	DPRINTF(("TSSI 5GHz: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x "
3598 	    "0x%02x 0x%02x step=%d\n", sc->tssi_5ghz[0], sc->tssi_5ghz[1],
3599 	    sc->tssi_5ghz[2], sc->tssi_5ghz[3], sc->tssi_5ghz[4],
3600 	    sc->tssi_5ghz[5], sc->tssi_5ghz[6], sc->tssi_5ghz[7],
3601 	    sc->tssi_5ghz[8], sc->step_5ghz));
3602 	/* check that ref value is correct, otherwise disable calibration */
3603 	if (sc->tssi_5ghz[4] == 0xff)
3604 		sc->calib_5ghz = 0;
3605 
3606 	/* read RSSI offsets and LNA gains from EEPROM */
3607 	val = rt2860_srom_read(sc, RT2860_EEPROM_RSSI1_2GHZ);
3608 	sc->rssi_2ghz[0] = val & 0xff;	/* Ant A */
3609 	sc->rssi_2ghz[1] = val >> 8;	/* Ant B */
3610 	val = rt2860_srom_read(sc, RT2860_EEPROM_RSSI2_2GHZ);
3611 	if (sc->mac_ver >= 0x3071) {
3612 		/*
3613 		 * On RT3090 chips (limited to 2 Rx chains), this ROM
3614 		 * field contains the Tx mixer gain for the 2GHz band.
3615 		 */
3616 		if ((val & 0xff) != 0xff)
3617 			sc->txmixgain_2ghz = val & 0x7;
3618 		DPRINTF(("tx mixer gain=%u (2GHz)\n", sc->txmixgain_2ghz));
3619 	} else
3620 		sc->rssi_2ghz[2] = val & 0xff;	/* Ant C */
3621 	sc->lna[2] = val >> 8;		/* channel group 2 */
3622 
3623 	val = rt2860_srom_read(sc, RT2860_EEPROM_RSSI1_5GHZ);
3624 	sc->rssi_5ghz[0] = val & 0xff;	/* Ant A */
3625 	sc->rssi_5ghz[1] = val >> 8;	/* Ant B */
3626 	val = rt2860_srom_read(sc, RT2860_EEPROM_RSSI2_5GHZ);
3627 	sc->rssi_5ghz[2] = val & 0xff;	/* Ant C */
3628 	sc->lna[3] = val >> 8;		/* channel group 3 */
3629 
3630 	val = rt2860_srom_read(sc, RT2860_EEPROM_LNA);
3631 	if (sc->mac_ver >= 0x3071)
3632 		sc->lna[0] = RT3090_DEF_LNA;
3633 	else				/* channel group 0 */
3634 		sc->lna[0] = val & 0xff;
3635 	sc->lna[1] = val >> 8;		/* channel group 1 */
3636 
3637 	/* fix broken 5GHz LNA entries */
3638 	if (sc->lna[2] == 0 || sc->lna[2] == 0xff) {
3639 		DPRINTF(("invalid LNA for channel group %d\n", 2));
3640 		sc->lna[2] = sc->lna[1];
3641 	}
3642 	if (sc->lna[3] == 0 || sc->lna[3] == 0xff) {
3643 		DPRINTF(("invalid LNA for channel group %d\n", 3));
3644 		sc->lna[3] = sc->lna[1];
3645 	}
3646 
3647 	/* fix broken RSSI offset entries */
3648 	for (ant = 0; ant < 3; ant++) {
3649 		if (sc->rssi_2ghz[ant] < -10 || sc->rssi_2ghz[ant] > 10) {
3650 			DPRINTF(("invalid RSSI%d offset: %d (2GHz)\n",
3651 			    ant + 1, sc->rssi_2ghz[ant]));
3652 			sc->rssi_2ghz[ant] = 0;
3653 		}
3654 		if (sc->rssi_5ghz[ant] < -10 || sc->rssi_5ghz[ant] > 10) {
3655 			DPRINTF(("invalid RSSI%d offset: %d (5GHz)\n",
3656 			    ant + 1, sc->rssi_5ghz[ant]));
3657 			sc->rssi_5ghz[ant] = 0;
3658 		}
3659 	}
3660 
3661 	return 0;
3662 }
3663 
3664 static int
3665 rt2860_bbp_init(struct rt2860_softc *sc)
3666 {
3667 	int i, ntries;
3668 
3669 	/* wait for BBP to wake up */
3670 	for (ntries = 0; ntries < 20; ntries++) {
3671 		uint8_t bbp0 = rt2860_mcu_bbp_read(sc, 0);
3672 		if (bbp0 != 0 && bbp0 != 0xff)
3673 			break;
3674 	}
3675 	if (ntries == 20) {
3676 		device_printf(sc->sc_dev,
3677 		    "timeout waiting for BBP to wake up\n");
3678 		return (ETIMEDOUT);
3679 	}
3680 
3681 	/* initialize BBP registers to default values */
3682 	if (sc->mac_ver >= 0x5390)
3683 		rt5390_bbp_init(sc);
3684 	else {
3685 		for (i = 0; i < nitems(rt2860_def_bbp); i++) {
3686 			rt2860_mcu_bbp_write(sc, rt2860_def_bbp[i].reg,
3687 			    rt2860_def_bbp[i].val);
3688 		}
3689 	}
3690 
3691 	/* fix BBP84 for RT2860E */
3692 	if (sc->mac_ver == 0x2860 && sc->mac_rev != 0x0101)
3693 		rt2860_mcu_bbp_write(sc, 84, 0x19);
3694 
3695 	if (sc->mac_ver >= 0x3071) {
3696 		rt2860_mcu_bbp_write(sc, 79, 0x13);
3697 		rt2860_mcu_bbp_write(sc, 80, 0x05);
3698 		rt2860_mcu_bbp_write(sc, 81, 0x33);
3699 	} else if (sc->mac_ver == 0x2860 && sc->mac_rev == 0x0100) {
3700 		rt2860_mcu_bbp_write(sc, 69, 0x16);
3701 		rt2860_mcu_bbp_write(sc, 73, 0x12);
3702 	}
3703 
3704 	return 0;
3705 }
3706 
3707 static void
3708 rt5390_bbp_init(struct rt2860_softc *sc)
3709 {
3710 	uint8_t bbp;
3711 	int i;
3712 
3713 	/* Apply maximum likelihood detection for 2 stream case. */
3714 	if (sc->nrxchains > 1) {
3715 		bbp = rt2860_mcu_bbp_read(sc, 105);
3716 		rt2860_mcu_bbp_write(sc, 105, bbp | RT5390_MLD);
3717 	}
3718 
3719 	/* Avoid data lost and CRC error. */
3720 	bbp = rt2860_mcu_bbp_read(sc, 4);
3721 	rt2860_mcu_bbp_write(sc, 4, bbp | RT5390_MAC_IF_CTRL);
3722 
3723 	for (i = 0; i < nitems(rt5390_def_bbp); i++) {
3724 		rt2860_mcu_bbp_write(sc, rt5390_def_bbp[i].reg,
3725 		    rt5390_def_bbp[i].val);
3726 	}
3727 
3728 	if (sc->mac_ver == 0x5392) {
3729 		rt2860_mcu_bbp_write(sc, 84, 0x9a);
3730 		rt2860_mcu_bbp_write(sc, 95, 0x9a);
3731 		rt2860_mcu_bbp_write(sc, 98, 0x12);
3732 		rt2860_mcu_bbp_write(sc, 106, 0x05);
3733 		rt2860_mcu_bbp_write(sc, 134, 0xd0);
3734 		rt2860_mcu_bbp_write(sc, 135, 0xf6);
3735 	}
3736 
3737 	bbp = rt2860_mcu_bbp_read(sc, 152);
3738 	rt2860_mcu_bbp_write(sc, 152, bbp | 0x80);
3739 
3740 	/* Disable hardware antenna diversity. */
3741 	if (sc->mac_ver == 0x5390)
3742 		rt2860_mcu_bbp_write(sc, 154, 0);
3743 }
3744 
3745 static int
3746 rt2860_txrx_enable(struct rt2860_softc *sc)
3747 {
3748 	struct ieee80211com *ic = &sc->sc_ic;
3749 	uint32_t tmp;
3750 	int ntries;
3751 
3752 	/* enable Tx/Rx DMA engine */
3753 	RAL_WRITE(sc, RT2860_MAC_SYS_CTRL, RT2860_MAC_TX_EN);
3754 	RAL_BARRIER_READ_WRITE(sc);
3755 	for (ntries = 0; ntries < 200; ntries++) {
3756 		tmp = RAL_READ(sc, RT2860_WPDMA_GLO_CFG);
3757 		if ((tmp & (RT2860_TX_DMA_BUSY | RT2860_RX_DMA_BUSY)) == 0)
3758 			break;
3759 		DELAY(1000);
3760 	}
3761 	if (ntries == 200) {
3762 		device_printf(sc->sc_dev, "timeout waiting for DMA engine\n");
3763 		return ETIMEDOUT;
3764 	}
3765 
3766 	DELAY(50);
3767 
3768 	tmp |= RT2860_RX_DMA_EN | RT2860_TX_DMA_EN |
3769 	    RT2860_WPDMA_BT_SIZE64 << RT2860_WPDMA_BT_SIZE_SHIFT;
3770 	RAL_WRITE(sc, RT2860_WPDMA_GLO_CFG, tmp);
3771 
3772 	/* set Rx filter */
3773 	tmp = RT2860_DROP_CRC_ERR | RT2860_DROP_PHY_ERR;
3774 	if (ic->ic_opmode != IEEE80211_M_MONITOR) {
3775 		tmp |= RT2860_DROP_UC_NOME | RT2860_DROP_DUPL |
3776 		    RT2860_DROP_CTS | RT2860_DROP_BA | RT2860_DROP_ACK |
3777 		    RT2860_DROP_VER_ERR | RT2860_DROP_CTRL_RSV |
3778 		    RT2860_DROP_CFACK | RT2860_DROP_CFEND;
3779 		if (ic->ic_opmode == IEEE80211_M_STA)
3780 			tmp |= RT2860_DROP_RTS | RT2860_DROP_PSPOLL;
3781 	}
3782 	RAL_WRITE(sc, RT2860_RX_FILTR_CFG, tmp);
3783 
3784 	RAL_WRITE(sc, RT2860_MAC_SYS_CTRL,
3785 	    RT2860_MAC_RX_EN | RT2860_MAC_TX_EN);
3786 
3787 	return 0;
3788 }
3789 
3790 static void
3791 rt2860_init(void *arg)
3792 {
3793 	struct rt2860_softc *sc = arg;
3794 	struct ieee80211com *ic = &sc->sc_ic;
3795 
3796 	RAL_LOCK(sc);
3797 	rt2860_init_locked(sc);
3798 	RAL_UNLOCK(sc);
3799 
3800 	if (sc->sc_flags & RT2860_RUNNNING)
3801 		ieee80211_start_all(ic);
3802 }
3803 
3804 static void
3805 rt2860_init_locked(struct rt2860_softc *sc)
3806 {
3807 	struct ieee80211com *ic = &sc->sc_ic;
3808 	struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps);
3809 	uint32_t tmp;
3810 	uint8_t bbp1, bbp3;
3811 	int i, qid, ridx, ntries, error;
3812 
3813 	RAL_LOCK_ASSERT(sc);
3814 
3815 	if (sc->rfswitch) {
3816 		/* hardware has a radio switch on GPIO pin 2 */
3817 		if (!(RAL_READ(sc, RT2860_GPIO_CTRL) & (1 << 2))) {
3818 			device_printf(sc->sc_dev,
3819 			    "radio is disabled by hardware switch\n");
3820 #ifdef notyet
3821 			rt2860_stop_locked(sc);
3822 			return;
3823 #endif
3824 		}
3825 	}
3826 	RAL_WRITE(sc, RT2860_PWR_PIN_CFG, RT2860_IO_RA_PE);
3827 
3828 	/* disable DMA */
3829 	tmp = RAL_READ(sc, RT2860_WPDMA_GLO_CFG);
3830 	tmp &= 0xff0;
3831 	RAL_WRITE(sc, RT2860_WPDMA_GLO_CFG, tmp);
3832 
3833 	/* PBF hardware reset */
3834 	RAL_WRITE(sc, RT2860_SYS_CTRL, 0xe1f);
3835 	RAL_BARRIER_WRITE(sc);
3836 	RAL_WRITE(sc, RT2860_SYS_CTRL, 0xe00);
3837 
3838 	if ((error = rt2860_load_microcode(sc)) != 0) {
3839 		device_printf(sc->sc_dev, "could not load 8051 microcode\n");
3840 		rt2860_stop_locked(sc);
3841 		return;
3842 	}
3843 
3844 	rt2860_set_macaddr(sc, vap ? vap->iv_myaddr : ic->ic_macaddr);
3845 
3846 	/* init Tx power for all Tx rates (from EEPROM) */
3847 	for (ridx = 0; ridx < 5; ridx++) {
3848 		if (sc->txpow20mhz[ridx] == 0xffffffff)
3849 			continue;
3850 		RAL_WRITE(sc, RT2860_TX_PWR_CFG(ridx), sc->txpow20mhz[ridx]);
3851 	}
3852 
3853 	for (ntries = 0; ntries < 100; ntries++) {
3854 		tmp = RAL_READ(sc, RT2860_WPDMA_GLO_CFG);
3855 		if ((tmp & (RT2860_TX_DMA_BUSY | RT2860_RX_DMA_BUSY)) == 0)
3856 			break;
3857 		DELAY(1000);
3858 	}
3859 	if (ntries == 100) {
3860 		device_printf(sc->sc_dev, "timeout waiting for DMA engine\n");
3861 		rt2860_stop_locked(sc);
3862 		return;
3863 	}
3864 	tmp &= 0xff0;
3865 	RAL_WRITE(sc, RT2860_WPDMA_GLO_CFG, tmp);
3866 
3867 	/* reset Rx ring and all 6 Tx rings */
3868 	RAL_WRITE(sc, RT2860_WPDMA_RST_IDX, 0x1003f);
3869 
3870 	/* PBF hardware reset */
3871 	RAL_WRITE(sc, RT2860_SYS_CTRL, 0xe1f);
3872 	RAL_BARRIER_WRITE(sc);
3873 	RAL_WRITE(sc, RT2860_SYS_CTRL, 0xe00);
3874 
3875 	RAL_WRITE(sc, RT2860_PWR_PIN_CFG, RT2860_IO_RA_PE | RT2860_IO_RF_PE);
3876 
3877 	RAL_WRITE(sc, RT2860_MAC_SYS_CTRL, RT2860_BBP_HRST | RT2860_MAC_SRST);
3878 	RAL_BARRIER_WRITE(sc);
3879 	RAL_WRITE(sc, RT2860_MAC_SYS_CTRL, 0);
3880 
3881 	for (i = 0; i < nitems(rt2860_def_mac); i++)
3882 		RAL_WRITE(sc, rt2860_def_mac[i].reg, rt2860_def_mac[i].val);
3883 	if (sc->mac_ver >= 0x5390)
3884 		RAL_WRITE(sc, RT2860_TX_SW_CFG0, 0x00000404);
3885 	else if (sc->mac_ver >= 0x3071) {
3886 		/* set delay of PA_PE assertion to 1us (unit of 0.25us) */
3887 		RAL_WRITE(sc, RT2860_TX_SW_CFG0,
3888 		    4 << RT2860_DLY_PAPE_EN_SHIFT);
3889 	}
3890 
3891 	if (!(RAL_READ(sc, RT2860_PCI_CFG) & RT2860_PCI_CFG_PCI)) {
3892 		sc->sc_flags |= RT2860_PCIE;
3893 		/* PCIe has different clock cycle count than PCI */
3894 		tmp = RAL_READ(sc, RT2860_US_CYC_CNT);
3895 		tmp = (tmp & ~0xff) | 0x7d;
3896 		RAL_WRITE(sc, RT2860_US_CYC_CNT, tmp);
3897 	}
3898 
3899 	/* wait while MAC is busy */
3900 	for (ntries = 0; ntries < 100; ntries++) {
3901 		if (!(RAL_READ(sc, RT2860_MAC_STATUS_REG) &
3902 		    (RT2860_RX_STATUS_BUSY | RT2860_TX_STATUS_BUSY)))
3903 			break;
3904 		DELAY(1000);
3905 	}
3906 	if (ntries == 100) {
3907 		device_printf(sc->sc_dev, "timeout waiting for MAC\n");
3908 		rt2860_stop_locked(sc);
3909 		return;
3910 	}
3911 
3912 	/* clear Host to MCU mailbox */
3913 	RAL_WRITE(sc, RT2860_H2M_BBPAGENT, 0);
3914 	RAL_WRITE(sc, RT2860_H2M_MAILBOX, 0);
3915 
3916 	rt2860_mcu_cmd(sc, RT2860_MCU_CMD_RFRESET, 0, 0);
3917 	DELAY(1000);
3918 
3919 	if ((error = rt2860_bbp_init(sc)) != 0) {
3920 		rt2860_stop_locked(sc);
3921 		return;
3922 	}
3923 
3924 	/* clear RX WCID search table */
3925 	RAL_SET_REGION_4(sc, RT2860_WCID_ENTRY(0), 0, 512);
3926 	/* clear pairwise key table */
3927 	RAL_SET_REGION_4(sc, RT2860_PKEY(0), 0, 2048);
3928 	/* clear IV/EIV table */
3929 	RAL_SET_REGION_4(sc, RT2860_IVEIV(0), 0, 512);
3930 	/* clear WCID attribute table */
3931 	RAL_SET_REGION_4(sc, RT2860_WCID_ATTR(0), 0, 256);
3932 	/* clear shared key table */
3933 	RAL_SET_REGION_4(sc, RT2860_SKEY(0, 0), 0, 8 * 32);
3934 	/* clear shared key mode */
3935 	RAL_SET_REGION_4(sc, RT2860_SKEY_MODE_0_7, 0, 4);
3936 
3937 	/* init Tx rings (4 EDCAs + HCCA + Mgt) */
3938 	for (qid = 0; qid < 6; qid++) {
3939 		RAL_WRITE(sc, RT2860_TX_BASE_PTR(qid), sc->txq[qid].paddr);
3940 		RAL_WRITE(sc, RT2860_TX_MAX_CNT(qid), RT2860_TX_RING_COUNT);
3941 		RAL_WRITE(sc, RT2860_TX_CTX_IDX(qid), 0);
3942 	}
3943 
3944 	/* init Rx ring */
3945 	RAL_WRITE(sc, RT2860_RX_BASE_PTR, sc->rxq.paddr);
3946 	RAL_WRITE(sc, RT2860_RX_MAX_CNT, RT2860_RX_RING_COUNT);
3947 	RAL_WRITE(sc, RT2860_RX_CALC_IDX, RT2860_RX_RING_COUNT - 1);
3948 
3949 	/* setup maximum buffer sizes */
3950 	RAL_WRITE(sc, RT2860_MAX_LEN_CFG, 1 << 12 |
3951 	    (MCLBYTES - sizeof (struct rt2860_rxwi) - 2));
3952 
3953 	for (ntries = 0; ntries < 100; ntries++) {
3954 		tmp = RAL_READ(sc, RT2860_WPDMA_GLO_CFG);
3955 		if ((tmp & (RT2860_TX_DMA_BUSY | RT2860_RX_DMA_BUSY)) == 0)
3956 			break;
3957 		DELAY(1000);
3958 	}
3959 	if (ntries == 100) {
3960 		device_printf(sc->sc_dev, "timeout waiting for DMA engine\n");
3961 		rt2860_stop_locked(sc);
3962 		return;
3963 	}
3964 	tmp &= 0xff0;
3965 	RAL_WRITE(sc, RT2860_WPDMA_GLO_CFG, tmp);
3966 
3967 	/* disable interrupts mitigation */
3968 	RAL_WRITE(sc, RT2860_DELAY_INT_CFG, 0);
3969 
3970 	/* write vendor-specific BBP values (from EEPROM) */
3971 	for (i = 0; i < 8; i++) {
3972 		if (sc->bbp[i].reg == 0 || sc->bbp[i].reg == 0xff)
3973 			continue;
3974 		rt2860_mcu_bbp_write(sc, sc->bbp[i].reg, sc->bbp[i].val);
3975 	}
3976 
3977 	/* select Main antenna for 1T1R devices */
3978 	if (sc->rf_rev == RT3070_RF_2020 ||
3979 	    sc->rf_rev == RT3070_RF_3020 ||
3980 	    sc->rf_rev == RT3070_RF_3320 ||
3981 	    sc->mac_ver == 0x5390)
3982 		rt3090_set_rx_antenna(sc, 0);
3983 
3984 	/* send LEDs operating mode to microcontroller */
3985 	rt2860_mcu_cmd(sc, RT2860_MCU_CMD_LED1, sc->led[0], 0);
3986 	rt2860_mcu_cmd(sc, RT2860_MCU_CMD_LED2, sc->led[1], 0);
3987 	rt2860_mcu_cmd(sc, RT2860_MCU_CMD_LED3, sc->led[2], 0);
3988 
3989 	if (sc->mac_ver >= 0x5390)
3990 		rt5390_rf_init(sc);
3991 	else if (sc->mac_ver >= 0x3071) {
3992 		if ((error = rt3090_rf_init(sc)) != 0) {
3993 			rt2860_stop_locked(sc);
3994 			return;
3995 		}
3996 	}
3997 
3998 	rt2860_mcu_cmd(sc, RT2860_MCU_CMD_SLEEP, 0x02ff, 1);
3999 	rt2860_mcu_cmd(sc, RT2860_MCU_CMD_WAKEUP, 0, 1);
4000 
4001 	if (sc->mac_ver >= 0x5390)
4002 		rt5390_rf_wakeup(sc);
4003 	else if (sc->mac_ver >= 0x3071)
4004 		rt3090_rf_wakeup(sc);
4005 
4006 	/* disable non-existing Rx chains */
4007 	bbp3 = rt2860_mcu_bbp_read(sc, 3);
4008 	bbp3 &= ~(1 << 3 | 1 << 4);
4009 	if (sc->nrxchains == 2)
4010 		bbp3 |= 1 << 3;
4011 	else if (sc->nrxchains == 3)
4012 		bbp3 |= 1 << 4;
4013 	rt2860_mcu_bbp_write(sc, 3, bbp3);
4014 
4015 	/* disable non-existing Tx chains */
4016 	bbp1 = rt2860_mcu_bbp_read(sc, 1);
4017 	if (sc->ntxchains == 1)
4018 		bbp1 = (bbp1 & ~(1 << 3 | 1 << 4));
4019 	else if (sc->mac_ver == 0x3593 && sc->ntxchains == 2)
4020 		bbp1 = (bbp1 & ~(1 << 4)) | 1 << 3;
4021 	else if (sc->mac_ver == 0x3593 && sc->ntxchains == 3)
4022 		bbp1 = (bbp1 & ~(1 << 3)) | 1 << 4;
4023 	rt2860_mcu_bbp_write(sc, 1, bbp1);
4024 
4025 	if (sc->mac_ver >= 0x3071)
4026 		rt3090_rf_setup(sc);
4027 
4028 	/* select default channel */
4029 	rt2860_switch_chan(sc, ic->ic_curchan);
4030 
4031 	/* reset RF from MCU */
4032 	rt2860_mcu_cmd(sc, RT2860_MCU_CMD_RFRESET, 0, 0);
4033 
4034 	/* set RTS threshold */
4035 	tmp = RAL_READ(sc, RT2860_TX_RTS_CFG);
4036 	tmp &= ~0xffff00;
4037 	tmp |= IEEE80211_RTS_DEFAULT << 8;
4038 	RAL_WRITE(sc, RT2860_TX_RTS_CFG, tmp);
4039 
4040 	/* setup initial protection mode */
4041 	rt2860_updateprot(sc);
4042 
4043 	/* turn radio LED on */
4044 	rt2860_set_leds(sc, RT2860_LED_RADIO);
4045 
4046 	/* enable Tx/Rx DMA engine */
4047 	if ((error = rt2860_txrx_enable(sc)) != 0) {
4048 		rt2860_stop_locked(sc);
4049 		return;
4050 	}
4051 
4052 	/* clear pending interrupts */
4053 	RAL_WRITE(sc, RT2860_INT_STATUS, 0xffffffff);
4054 	/* enable interrupts */
4055 	RAL_WRITE(sc, RT2860_INT_MASK, 0x3fffc);
4056 
4057 	if (sc->sc_flags & RT2860_ADVANCED_PS)
4058 		rt2860_mcu_cmd(sc, RT2860_MCU_CMD_PSLEVEL, sc->pslevel, 0);
4059 
4060 	sc->sc_flags |= RT2860_RUNNNING;
4061 
4062 	callout_reset(&sc->watchdog_ch, hz, rt2860_watchdog, sc);
4063 }
4064 
4065 static void
4066 rt2860_stop(void *arg)
4067 {
4068 	struct rt2860_softc *sc = arg;
4069 
4070 	RAL_LOCK(sc);
4071 	rt2860_stop_locked(sc);
4072 	RAL_UNLOCK(sc);
4073 }
4074 
4075 static void
4076 rt2860_stop_locked(struct rt2860_softc *sc)
4077 {
4078 	uint32_t tmp;
4079 	int qid;
4080 
4081 	if (sc->sc_flags & RT2860_RUNNNING)
4082 		rt2860_set_leds(sc, 0);	/* turn all LEDs off */
4083 
4084 	callout_stop(&sc->watchdog_ch);
4085 	sc->sc_tx_timer = 0;
4086 	sc->sc_flags &= ~RT2860_RUNNNING;
4087 
4088 	/* disable interrupts */
4089 	RAL_WRITE(sc, RT2860_INT_MASK, 0);
4090 
4091 	/* disable GP timer */
4092 	rt2860_set_gp_timer(sc, 0);
4093 
4094 	/* disable Rx */
4095 	tmp = RAL_READ(sc, RT2860_MAC_SYS_CTRL);
4096 	tmp &= ~(RT2860_MAC_RX_EN | RT2860_MAC_TX_EN);
4097 	RAL_WRITE(sc, RT2860_MAC_SYS_CTRL, tmp);
4098 
4099 	/* reset adapter */
4100 	RAL_WRITE(sc, RT2860_MAC_SYS_CTRL, RT2860_BBP_HRST | RT2860_MAC_SRST);
4101 	RAL_BARRIER_WRITE(sc);
4102 	RAL_WRITE(sc, RT2860_MAC_SYS_CTRL, 0);
4103 
4104 	/* reset Tx and Rx rings (and reclaim TXWIs) */
4105 	sc->qfullmsk = 0;
4106 	for (qid = 0; qid < 6; qid++)
4107 		rt2860_reset_tx_ring(sc, &sc->txq[qid]);
4108 	rt2860_reset_rx_ring(sc, &sc->rxq);
4109 }
4110 
4111 int
4112 rt2860_load_microcode(struct rt2860_softc *sc)
4113 {
4114 	const struct firmware *fp;
4115 	int ntries, error;
4116 
4117 	RAL_LOCK_ASSERT(sc);
4118 
4119 	RAL_UNLOCK(sc);
4120 	fp = firmware_get("rt2860fw");
4121 	RAL_LOCK(sc);
4122 	if (fp == NULL) {
4123 		device_printf(sc->sc_dev,
4124 		    "unable to receive rt2860fw firmware image\n");
4125 		return EINVAL;
4126 	}
4127 
4128 	/* set "host program ram write selection" bit */
4129 	RAL_WRITE(sc, RT2860_SYS_CTRL, RT2860_HST_PM_SEL);
4130 	/* write microcode image */
4131 	RAL_WRITE_REGION_1(sc, RT2860_FW_BASE, fp->data, fp->datasize);
4132 	/* kick microcontroller unit */
4133 	RAL_WRITE(sc, RT2860_SYS_CTRL, 0);
4134 	RAL_BARRIER_WRITE(sc);
4135 	RAL_WRITE(sc, RT2860_SYS_CTRL, RT2860_MCU_RESET);
4136 
4137 	RAL_WRITE(sc, RT2860_H2M_BBPAGENT, 0);
4138 	RAL_WRITE(sc, RT2860_H2M_MAILBOX, 0);
4139 
4140 	/* wait until microcontroller is ready */
4141 	RAL_BARRIER_READ_WRITE(sc);
4142 	for (ntries = 0; ntries < 1000; ntries++) {
4143 		if (RAL_READ(sc, RT2860_SYS_CTRL) & RT2860_MCU_READY)
4144 			break;
4145 		DELAY(1000);
4146 	}
4147 	if (ntries == 1000) {
4148 		device_printf(sc->sc_dev,
4149 		    "timeout waiting for MCU to initialize\n");
4150 		error = ETIMEDOUT;
4151 	} else
4152 		error = 0;
4153 
4154 	firmware_put(fp, FIRMWARE_UNLOAD);
4155 	return error;
4156 }
4157 
4158 /*
4159  * This function is called periodically to adjust Tx power based on
4160  * temperature variation.
4161  */
4162 #ifdef NOT_YET
4163 static void
4164 rt2860_calib(struct rt2860_softc *sc)
4165 {
4166 	struct ieee80211com *ic = &sc->sc_ic;
4167 	const uint8_t *tssi;
4168 	uint8_t step, bbp49;
4169 	int8_t ridx, d;
4170 
4171 	/* read current temperature */
4172 	bbp49 = rt2860_mcu_bbp_read(sc, 49);
4173 
4174 	if (IEEE80211_IS_CHAN_2GHZ(ic->ic_bss->ni_chan)) {
4175 		tssi = &sc->tssi_2ghz[4];
4176 		step = sc->step_2ghz;
4177 	} else {
4178 		tssi = &sc->tssi_5ghz[4];
4179 		step = sc->step_5ghz;
4180 	}
4181 
4182 	if (bbp49 < tssi[0]) {		/* lower than reference */
4183 		/* use higher Tx power than default */
4184 		for (d = 0; d > -4 && bbp49 <= tssi[d - 1]; d--);
4185 	} else if (bbp49 > tssi[0]) {	/* greater than reference */
4186 		/* use lower Tx power than default */
4187 		for (d = 0; d < +4 && bbp49 >= tssi[d + 1]; d++);
4188 	} else {
4189 		/* use default Tx power */
4190 		d = 0;
4191 	}
4192 	d *= step;
4193 
4194 	DPRINTF(("BBP49=0x%02x, adjusting Tx power by %d\n", bbp49, d));
4195 
4196 	/* write adjusted Tx power values for each Tx rate */
4197 	for (ridx = 0; ridx < 5; ridx++) {
4198 		if (sc->txpow20mhz[ridx] == 0xffffffff)
4199 			continue;
4200 		RAL_WRITE(sc, RT2860_TX_PWR_CFG(ridx),
4201 		    b4inc(sc->txpow20mhz[ridx], d));
4202 	}
4203 }
4204 #endif
4205 
4206 static void
4207 rt3090_set_rx_antenna(struct rt2860_softc *sc, int aux)
4208 {
4209 	uint32_t tmp;
4210 
4211 	if (aux) {
4212 		if (sc->mac_ver == 0x5390) {
4213 			rt2860_mcu_bbp_write(sc, 152,
4214 			    rt2860_mcu_bbp_read(sc, 152) & ~0x80);
4215 		} else {
4216 			tmp = RAL_READ(sc, RT2860_PCI_EECTRL);
4217 			RAL_WRITE(sc, RT2860_PCI_EECTRL, tmp & ~RT2860_C);
4218 			tmp = RAL_READ(sc, RT2860_GPIO_CTRL);
4219 			RAL_WRITE(sc, RT2860_GPIO_CTRL, (tmp & ~0x0808) | 0x08);
4220 		}
4221 	} else {
4222 		if (sc->mac_ver == 0x5390) {
4223 			rt2860_mcu_bbp_write(sc, 152,
4224 			    rt2860_mcu_bbp_read(sc, 152) | 0x80);
4225 		} else {
4226 			tmp = RAL_READ(sc, RT2860_PCI_EECTRL);
4227 			RAL_WRITE(sc, RT2860_PCI_EECTRL, tmp | RT2860_C);
4228 			tmp = RAL_READ(sc, RT2860_GPIO_CTRL);
4229 			RAL_WRITE(sc, RT2860_GPIO_CTRL, tmp & ~0x0808);
4230 		}
4231 	}
4232 }
4233 
4234 static void
4235 rt2860_switch_chan(struct rt2860_softc *sc, struct ieee80211_channel *c)
4236 {
4237 	struct ieee80211com *ic = &sc->sc_ic;
4238 	u_int chan, group;
4239 
4240 	chan = ieee80211_chan2ieee(ic, c);
4241 	if (chan == 0 || chan == IEEE80211_CHAN_ANY)
4242 		return;
4243 
4244 	if (sc->mac_ver >= 0x5390)
4245 		rt5390_set_chan(sc, chan);
4246 	else if (sc->mac_ver >= 0x3071)
4247 		rt3090_set_chan(sc, chan);
4248 	else
4249 		rt2860_set_chan(sc, chan);
4250 
4251 	/* determine channel group */
4252 	if (chan <= 14)
4253 		group = 0;
4254 	else if (chan <= 64)
4255 		group = 1;
4256 	else if (chan <= 128)
4257 		group = 2;
4258 	else
4259 		group = 3;
4260 
4261 	/* XXX necessary only when group has changed! */
4262 	if (sc->mac_ver < 0x5390)
4263 		rt2860_select_chan_group(sc, group);
4264 
4265 	DELAY(1000);
4266 }
4267 
4268 static int
4269 rt2860_setup_beacon(struct rt2860_softc *sc, struct ieee80211vap *vap)
4270 {
4271 	struct ieee80211com *ic = vap->iv_ic;
4272 	struct ieee80211_beacon_offsets bo;
4273 	struct rt2860_txwi txwi;
4274 	struct mbuf *m;
4275 	int ridx;
4276 
4277 	if ((m = ieee80211_beacon_alloc(vap->iv_bss, &bo)) == NULL)
4278 		return ENOBUFS;
4279 
4280 	memset(&txwi, 0, sizeof txwi);
4281 	txwi.wcid = 0xff;
4282 	txwi.len = htole16(m->m_pkthdr.len);
4283 	/* send beacons at the lowest available rate */
4284 	ridx = IEEE80211_IS_CHAN_5GHZ(ic->ic_bsschan) ?
4285 	    RT2860_RIDX_OFDM6 : RT2860_RIDX_CCK1;
4286 	txwi.phy = htole16(rt2860_rates[ridx].mcs);
4287 	if (rt2860_rates[ridx].phy == IEEE80211_T_OFDM)
4288 		txwi.phy |= htole16(RT2860_PHY_OFDM);
4289 	txwi.txop = RT2860_TX_TXOP_HT;
4290 	txwi.flags = RT2860_TX_TS;
4291 	txwi.xflags = RT2860_TX_NSEQ;
4292 
4293 	RAL_WRITE_REGION_1(sc, RT2860_BCN_BASE(0),
4294 	    (uint8_t *)&txwi, sizeof txwi);
4295 	RAL_WRITE_REGION_1(sc, RT2860_BCN_BASE(0) + sizeof txwi,
4296 	    mtod(m, uint8_t *), m->m_pkthdr.len);
4297 
4298 	m_freem(m);
4299 
4300 	return 0;
4301 }
4302 
4303 static void
4304 rt2860_enable_tsf_sync(struct rt2860_softc *sc)
4305 {
4306 	struct ieee80211com *ic = &sc->sc_ic;
4307 	struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps);
4308 	uint32_t tmp;
4309 
4310 	tmp = RAL_READ(sc, RT2860_BCN_TIME_CFG);
4311 
4312 	tmp &= ~0x1fffff;
4313 	tmp |= vap->iv_bss->ni_intval * 16;
4314 	tmp |= RT2860_TSF_TIMER_EN | RT2860_TBTT_TIMER_EN;
4315 	if (vap->iv_opmode == IEEE80211_M_STA) {
4316 		/*
4317 		 * Local TSF is always updated with remote TSF on beacon
4318 		 * reception.
4319 		 */
4320 		tmp |= 1 << RT2860_TSF_SYNC_MODE_SHIFT;
4321 	}
4322 	else if (vap->iv_opmode == IEEE80211_M_IBSS ||
4323 	    vap->iv_opmode == IEEE80211_M_MBSS) {
4324 		tmp |= RT2860_BCN_TX_EN;
4325 		/*
4326 		 * Local TSF is updated with remote TSF on beacon reception
4327 		 * only if the remote TSF is greater than local TSF.
4328 		 */
4329 		tmp |= 2 << RT2860_TSF_SYNC_MODE_SHIFT;
4330 	} else if (vap->iv_opmode == IEEE80211_M_HOSTAP) {
4331 		tmp |= RT2860_BCN_TX_EN;
4332 		/* SYNC with nobody */
4333 		tmp |= 3 << RT2860_TSF_SYNC_MODE_SHIFT;
4334 	}
4335 
4336 	RAL_WRITE(sc, RT2860_BCN_TIME_CFG, tmp);
4337 }
4338