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