1 /* 2 * Copyright (c) 2007 The DragonFly Project. All rights reserved. 3 * 4 * This code is derived from software contributed to The DragonFly Project 5 * by Sepherosa Ziehau <sepherosa@gmail.com> 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in 15 * the documentation and/or other materials provided with the 16 * distribution. 17 * 3. Neither the name of The DragonFly Project nor the names of its 18 * contributors may be used to endorse or promote products derived 19 * from this software without specific, prior written permission. 20 * 21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 22 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 25 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 26 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, 27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 29 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 30 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 31 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 32 * SUCH DAMAGE. 33 * 34 * $DragonFly: src/sys/dev/netif/bwi/bwirf.c,v 1.9 2008/08/21 12:19:33 swildner Exp $ 35 */ 36 37 #include <sys/cdefs.h> 38 __FBSDID("$FreeBSD$"); 39 40 #include "opt_inet.h" 41 #include "opt_bwi.h" 42 #include "opt_wlan.h" 43 44 #include <sys/param.h> 45 #include <sys/endian.h> 46 #include <sys/kernel.h> 47 #include <sys/bus.h> 48 #include <sys/malloc.h> 49 #include <sys/proc.h> 50 #include <sys/rman.h> 51 #include <sys/socket.h> 52 #include <sys/sockio.h> 53 #include <sys/sysctl.h> 54 #include <sys/systm.h> 55 56 #include <net/if.h> 57 #include <net/if_var.h> 58 #include <net/if_dl.h> 59 #include <net/if_media.h> 60 #include <net/if_types.h> 61 #include <net/if_arp.h> 62 #include <net/ethernet.h> 63 #include <net/if_llc.h> 64 65 #include <net80211/ieee80211_var.h> 66 #include <net80211/ieee80211_radiotap.h> 67 #include <net80211/ieee80211_amrr.h> 68 69 #include <machine/bus.h> 70 71 #include <dev/bwi/bitops.h> 72 #include <dev/bwi/if_bwireg.h> 73 #include <dev/bwi/if_bwivar.h> 74 #include <dev/bwi/bwimac.h> 75 #include <dev/bwi/bwirf.h> 76 #include <dev/bwi/bwiphy.h> 77 78 #define RF_LO_WRITE(mac, lo) bwi_rf_lo_write((mac), (lo)) 79 80 #define BWI_RF_2GHZ_CHAN(chan) \ 81 (ieee80211_ieee2mhz((chan), IEEE80211_CHAN_2GHZ) - 2400) 82 83 #define BWI_DEFAULT_IDLE_TSSI 52 84 85 struct rf_saveregs { 86 uint16_t phy_01; 87 uint16_t phy_03; 88 uint16_t phy_0a; 89 uint16_t phy_15; 90 uint16_t phy_2a; 91 uint16_t phy_30; 92 uint16_t phy_35; 93 uint16_t phy_60; 94 uint16_t phy_429; 95 uint16_t phy_802; 96 uint16_t phy_811; 97 uint16_t phy_812; 98 uint16_t phy_814; 99 uint16_t phy_815; 100 101 uint16_t rf_43; 102 uint16_t rf_52; 103 uint16_t rf_7a; 104 }; 105 106 #define SAVE_RF_REG(mac, regs, n) (regs)->rf_##n = RF_READ((mac), 0x##n) 107 #define RESTORE_RF_REG(mac, regs, n) RF_WRITE((mac), 0x##n, (regs)->rf_##n) 108 109 #define SAVE_PHY_REG(mac, regs, n) (regs)->phy_##n = PHY_READ((mac), 0x##n) 110 #define RESTORE_PHY_REG(mac, regs, n) PHY_WRITE((mac), 0x##n, (regs)->phy_##n) 111 112 static int bwi_rf_calc_txpower(int8_t *, uint8_t, const int16_t[]); 113 static void bwi_rf_work_around(struct bwi_mac *, u_int); 114 static int bwi_rf_gain_max_reached(struct bwi_mac *, int); 115 static uint16_t bwi_rf_calibval(struct bwi_mac *); 116 static uint16_t bwi_rf_get_tp_ctrl2(struct bwi_mac *); 117 118 static void bwi_rf_lo_update_11b(struct bwi_mac *); 119 static uint16_t bwi_rf_lo_measure_11b(struct bwi_mac *); 120 121 static void bwi_rf_lo_update_11g(struct bwi_mac *); 122 static uint32_t bwi_rf_lo_devi_measure(struct bwi_mac *, uint16_t); 123 static void bwi_rf_lo_measure_11g(struct bwi_mac *, 124 const struct bwi_rf_lo *, struct bwi_rf_lo *, uint8_t); 125 static uint8_t _bwi_rf_lo_update_11g(struct bwi_mac *, uint16_t); 126 static void bwi_rf_lo_write(struct bwi_mac *, const struct bwi_rf_lo *); 127 128 static void bwi_rf_set_nrssi_ofs_11g(struct bwi_mac *); 129 static void bwi_rf_calc_nrssi_slope_11b(struct bwi_mac *); 130 static void bwi_rf_calc_nrssi_slope_11g(struct bwi_mac *); 131 static void bwi_rf_set_nrssi_thr_11b(struct bwi_mac *); 132 static void bwi_rf_set_nrssi_thr_11g(struct bwi_mac *); 133 134 static void bwi_rf_init_sw_nrssi_table(struct bwi_mac *); 135 136 static int bwi_rf_calc_rssi_bcm2050(struct bwi_mac *, 137 const struct bwi_rxbuf_hdr *); 138 static int bwi_rf_calc_rssi_bcm2053(struct bwi_mac *, 139 const struct bwi_rxbuf_hdr *); 140 static int bwi_rf_calc_rssi_bcm2060(struct bwi_mac *, 141 const struct bwi_rxbuf_hdr *); 142 static int bwi_rf_calc_noise_bcm2050(struct bwi_mac *); 143 static int bwi_rf_calc_noise_bcm2053(struct bwi_mac *); 144 static int bwi_rf_calc_noise_bcm2060(struct bwi_mac *); 145 146 static void bwi_rf_on_11a(struct bwi_mac *); 147 static void bwi_rf_on_11bg(struct bwi_mac *); 148 149 static void bwi_rf_off_11a(struct bwi_mac *); 150 static void bwi_rf_off_11bg(struct bwi_mac *); 151 static void bwi_rf_off_11g_rev5(struct bwi_mac *); 152 153 static const int8_t bwi_txpower_map_11b[BWI_TSSI_MAX] = 154 { BWI_TXPOWER_MAP_11B }; 155 static const int8_t bwi_txpower_map_11g[BWI_TSSI_MAX] = 156 { BWI_TXPOWER_MAP_11G }; 157 158 static __inline int16_t 159 bwi_nrssi_11g(struct bwi_mac *mac) 160 { 161 int16_t val; 162 163 #define NRSSI_11G_MASK __BITS(13, 8) 164 165 val = (int16_t)__SHIFTOUT(PHY_READ(mac, 0x47f), NRSSI_11G_MASK); 166 if (val >= 32) 167 val -= 64; 168 return val; 169 170 #undef NRSSI_11G_MASK 171 } 172 173 static __inline struct bwi_rf_lo * 174 bwi_get_rf_lo(struct bwi_mac *mac, uint16_t rf_atten, uint16_t bbp_atten) 175 { 176 int n; 177 178 n = rf_atten + (14 * (bbp_atten / 2)); 179 KASSERT(n < BWI_RFLO_MAX, ("n %d", n)); 180 181 return &mac->mac_rf.rf_lo[n]; 182 } 183 184 static __inline int 185 bwi_rf_lo_isused(struct bwi_mac *mac, const struct bwi_rf_lo *lo) 186 { 187 struct bwi_rf *rf = &mac->mac_rf; 188 int idx; 189 190 idx = lo - rf->rf_lo; 191 KASSERT(idx >= 0 && idx < BWI_RFLO_MAX, ("idx %d", idx)); 192 193 return isset(rf->rf_lo_used, idx); 194 } 195 196 void 197 bwi_rf_write(struct bwi_mac *mac, uint16_t ctrl, uint16_t data) 198 { 199 struct bwi_softc *sc = mac->mac_sc; 200 201 CSR_WRITE_2(sc, BWI_RF_CTRL, ctrl); 202 CSR_WRITE_2(sc, BWI_RF_DATA_LO, data); 203 } 204 205 uint16_t 206 bwi_rf_read(struct bwi_mac *mac, uint16_t ctrl) 207 { 208 struct bwi_rf *rf = &mac->mac_rf; 209 struct bwi_softc *sc = mac->mac_sc; 210 211 ctrl |= rf->rf_ctrl_rd; 212 if (rf->rf_ctrl_adj) { 213 /* XXX */ 214 if (ctrl < 0x70) 215 ctrl += 0x80; 216 else if (ctrl < 0x80) 217 ctrl += 0x70; 218 } 219 220 CSR_WRITE_2(sc, BWI_RF_CTRL, ctrl); 221 return CSR_READ_2(sc, BWI_RF_DATA_LO); 222 } 223 224 int 225 bwi_rf_attach(struct bwi_mac *mac) 226 { 227 struct bwi_softc *sc = mac->mac_sc; 228 struct bwi_phy *phy = &mac->mac_phy; 229 struct bwi_rf *rf = &mac->mac_rf; 230 uint16_t type, manu; 231 uint8_t rev; 232 233 /* 234 * Get RF manufacture/type/revision 235 */ 236 if (sc->sc_bbp_id == BWI_BBPID_BCM4317) { 237 /* 238 * Fake a BCM2050 RF 239 */ 240 manu = BWI_RF_MANUFACT_BCM; 241 type = BWI_RF_T_BCM2050; 242 if (sc->sc_bbp_rev == 0) 243 rev = 3; 244 else if (sc->sc_bbp_rev == 1) 245 rev = 4; 246 else 247 rev = 5; 248 } else { 249 uint32_t val; 250 251 CSR_WRITE_2(sc, BWI_RF_CTRL, BWI_RF_CTRL_RFINFO); 252 val = CSR_READ_2(sc, BWI_RF_DATA_HI); 253 val <<= 16; 254 255 CSR_WRITE_2(sc, BWI_RF_CTRL, BWI_RF_CTRL_RFINFO); 256 val |= CSR_READ_2(sc, BWI_RF_DATA_LO); 257 258 manu = __SHIFTOUT(val, BWI_RFINFO_MANUFACT_MASK); 259 type = __SHIFTOUT(val, BWI_RFINFO_TYPE_MASK); 260 rev = __SHIFTOUT(val, BWI_RFINFO_REV_MASK); 261 } 262 device_printf(sc->sc_dev, "RF: manu 0x%03x, type 0x%04x, rev %u\n", 263 manu, type, rev); 264 265 /* 266 * Verify whether the RF is supported 267 */ 268 rf->rf_ctrl_rd = 0; 269 rf->rf_ctrl_adj = 0; 270 switch (phy->phy_mode) { 271 case IEEE80211_MODE_11A: 272 if (manu != BWI_RF_MANUFACT_BCM || 273 type != BWI_RF_T_BCM2060 || 274 rev != 1) { 275 device_printf(sc->sc_dev, "only BCM2060 rev 1 RF " 276 "is supported for 11A PHY\n"); 277 return ENXIO; 278 } 279 rf->rf_ctrl_rd = BWI_RF_CTRL_RD_11A; 280 rf->rf_on = bwi_rf_on_11a; 281 rf->rf_off = bwi_rf_off_11a; 282 rf->rf_calc_rssi = bwi_rf_calc_rssi_bcm2060; 283 rf->rf_calc_noise = bwi_rf_calc_noise_bcm2060; 284 break; 285 case IEEE80211_MODE_11B: 286 if (type == BWI_RF_T_BCM2050) { 287 rf->rf_ctrl_rd = BWI_RF_CTRL_RD_11BG; 288 rf->rf_calc_rssi = bwi_rf_calc_rssi_bcm2050; 289 rf->rf_calc_noise = bwi_rf_calc_noise_bcm2050; 290 } else if (type == BWI_RF_T_BCM2053) { 291 rf->rf_ctrl_adj = 1; 292 rf->rf_calc_rssi = bwi_rf_calc_rssi_bcm2053; 293 rf->rf_calc_noise = bwi_rf_calc_noise_bcm2053; 294 } else { 295 device_printf(sc->sc_dev, "only BCM2050/BCM2053 RF " 296 "is supported for 11B PHY\n"); 297 return ENXIO; 298 } 299 rf->rf_on = bwi_rf_on_11bg; 300 rf->rf_off = bwi_rf_off_11bg; 301 rf->rf_calc_nrssi_slope = bwi_rf_calc_nrssi_slope_11b; 302 rf->rf_set_nrssi_thr = bwi_rf_set_nrssi_thr_11b; 303 if (phy->phy_rev == 6) 304 rf->rf_lo_update = bwi_rf_lo_update_11g; 305 else 306 rf->rf_lo_update = bwi_rf_lo_update_11b; 307 break; 308 case IEEE80211_MODE_11G: 309 if (type != BWI_RF_T_BCM2050) { 310 device_printf(sc->sc_dev, "only BCM2050 RF " 311 "is supported for 11G PHY\n"); 312 return ENXIO; 313 } 314 rf->rf_ctrl_rd = BWI_RF_CTRL_RD_11BG; 315 rf->rf_on = bwi_rf_on_11bg; 316 if (mac->mac_rev >= 5) 317 rf->rf_off = bwi_rf_off_11g_rev5; 318 else 319 rf->rf_off = bwi_rf_off_11bg; 320 rf->rf_calc_nrssi_slope = bwi_rf_calc_nrssi_slope_11g; 321 rf->rf_set_nrssi_thr = bwi_rf_set_nrssi_thr_11g; 322 rf->rf_calc_rssi = bwi_rf_calc_rssi_bcm2050; 323 rf->rf_calc_noise = bwi_rf_calc_noise_bcm2050; 324 rf->rf_lo_update = bwi_rf_lo_update_11g; 325 break; 326 default: 327 device_printf(sc->sc_dev, "unsupported PHY mode\n"); 328 return ENXIO; 329 } 330 331 rf->rf_type = type; 332 rf->rf_rev = rev; 333 rf->rf_manu = manu; 334 rf->rf_curchan = IEEE80211_CHAN_ANY; 335 rf->rf_ant_mode = BWI_ANT_MODE_AUTO; 336 return 0; 337 } 338 339 void 340 bwi_rf_set_chan(struct bwi_mac *mac, u_int chan, int work_around) 341 { 342 struct bwi_softc *sc = mac->mac_sc; 343 344 if (chan == IEEE80211_CHAN_ANY) 345 return; 346 347 MOBJ_WRITE_2(mac, BWI_COMM_MOBJ, BWI_COMM_MOBJ_CHAN, chan); 348 349 /* TODO: 11A */ 350 351 if (work_around) 352 bwi_rf_work_around(mac, chan); 353 354 CSR_WRITE_2(sc, BWI_RF_CHAN, BWI_RF_2GHZ_CHAN(chan)); 355 356 if (chan == 14) { 357 if (sc->sc_locale == BWI_SPROM_LOCALE_JAPAN) 358 HFLAGS_CLRBITS(mac, BWI_HFLAG_NOT_JAPAN); 359 else 360 HFLAGS_SETBITS(mac, BWI_HFLAG_NOT_JAPAN); 361 CSR_SETBITS_2(sc, BWI_RF_CHAN_EX, (1 << 11)); /* XXX */ 362 } else { 363 CSR_CLRBITS_2(sc, BWI_RF_CHAN_EX, 0x840); /* XXX */ 364 } 365 DELAY(8000); /* DELAY(2000); */ 366 367 mac->mac_rf.rf_curchan = chan; 368 } 369 370 void 371 bwi_rf_get_gains(struct bwi_mac *mac) 372 { 373 #define SAVE_PHY_MAX 15 374 #define SAVE_RF_MAX 3 375 376 static const uint16_t save_rf_regs[SAVE_RF_MAX] = 377 { 0x52, 0x43, 0x7a }; 378 static const uint16_t save_phy_regs[SAVE_PHY_MAX] = { 379 0x0429, 0x0001, 0x0811, 0x0812, 380 0x0814, 0x0815, 0x005a, 0x0059, 381 0x0058, 0x000a, 0x0003, 0x080f, 382 0x0810, 0x002b, 0x0015 383 }; 384 385 struct bwi_softc *sc = mac->mac_sc; 386 struct bwi_phy *phy = &mac->mac_phy; 387 struct bwi_rf *rf = &mac->mac_rf; 388 uint16_t save_phy[SAVE_PHY_MAX]; 389 uint16_t save_rf[SAVE_RF_MAX]; 390 uint16_t trsw; 391 int i, j, loop1_max, loop1, loop2; 392 393 /* 394 * Save PHY/RF registers for later restoration 395 */ 396 for (i = 0; i < SAVE_PHY_MAX; ++i) 397 save_phy[i] = PHY_READ(mac, save_phy_regs[i]); 398 PHY_READ(mac, 0x2d); /* dummy read */ 399 400 for (i = 0; i < SAVE_RF_MAX; ++i) 401 save_rf[i] = RF_READ(mac, save_rf_regs[i]); 402 403 PHY_CLRBITS(mac, 0x429, 0xc000); 404 PHY_SETBITS(mac, 0x1, 0x8000); 405 406 PHY_SETBITS(mac, 0x811, 0x2); 407 PHY_CLRBITS(mac, 0x812, 0x2); 408 PHY_SETBITS(mac, 0x811, 0x1); 409 PHY_CLRBITS(mac, 0x812, 0x1); 410 411 PHY_SETBITS(mac, 0x814, 0x1); 412 PHY_CLRBITS(mac, 0x815, 0x1); 413 PHY_SETBITS(mac, 0x814, 0x2); 414 PHY_CLRBITS(mac, 0x815, 0x2); 415 416 PHY_SETBITS(mac, 0x811, 0xc); 417 PHY_SETBITS(mac, 0x812, 0xc); 418 PHY_SETBITS(mac, 0x811, 0x30); 419 PHY_FILT_SETBITS(mac, 0x812, 0xffcf, 0x10); 420 421 PHY_WRITE(mac, 0x5a, 0x780); 422 PHY_WRITE(mac, 0x59, 0xc810); 423 PHY_WRITE(mac, 0x58, 0xd); 424 PHY_SETBITS(mac, 0xa, 0x2000); 425 426 PHY_SETBITS(mac, 0x814, 0x4); 427 PHY_CLRBITS(mac, 0x815, 0x4); 428 429 PHY_FILT_SETBITS(mac, 0x3, 0xff9f, 0x40); 430 431 if (rf->rf_rev == 8) { 432 loop1_max = 15; 433 RF_WRITE(mac, 0x43, loop1_max); 434 } else { 435 loop1_max = 9; 436 RF_WRITE(mac, 0x52, 0x0); 437 RF_FILT_SETBITS(mac, 0x43, 0xfff0, loop1_max); 438 } 439 440 bwi_phy_set_bbp_atten(mac, 11); 441 442 if (phy->phy_rev >= 3) 443 PHY_WRITE(mac, 0x80f, 0xc020); 444 else 445 PHY_WRITE(mac, 0x80f, 0x8020); 446 PHY_WRITE(mac, 0x810, 0); 447 448 PHY_FILT_SETBITS(mac, 0x2b, 0xffc0, 0x1); 449 PHY_FILT_SETBITS(mac, 0x2b, 0xc0ff, 0x800); 450 PHY_SETBITS(mac, 0x811, 0x100); 451 PHY_CLRBITS(mac, 0x812, 0x3000); 452 453 if ((sc->sc_card_flags & BWI_CARD_F_EXT_LNA) && 454 phy->phy_rev >= 7) { 455 PHY_SETBITS(mac, 0x811, 0x800); 456 PHY_SETBITS(mac, 0x812, 0x8000); 457 } 458 RF_CLRBITS(mac, 0x7a, 0xff08); 459 460 /* 461 * Find out 'loop1/loop2', which will be used to calculate 462 * max loopback gain later 463 */ 464 j = 0; 465 for (i = 0; i < loop1_max; ++i) { 466 for (j = 0; j < 16; ++j) { 467 RF_WRITE(mac, 0x43, i); 468 469 if (bwi_rf_gain_max_reached(mac, j)) 470 goto loop1_exit; 471 } 472 } 473 loop1_exit: 474 loop1 = i; 475 loop2 = j; 476 477 /* 478 * Find out 'trsw', which will be used to calculate 479 * TRSW(TX/RX switch) RX gain later 480 */ 481 if (loop2 >= 8) { 482 PHY_SETBITS(mac, 0x812, 0x30); 483 trsw = 0x1b; 484 for (i = loop2 - 8; i < 16; ++i) { 485 trsw -= 3; 486 if (bwi_rf_gain_max_reached(mac, i)) 487 break; 488 } 489 } else { 490 trsw = 0x18; 491 } 492 493 /* 494 * Restore saved PHY/RF registers 495 */ 496 /* First 4 saved PHY registers need special processing */ 497 for (i = 4; i < SAVE_PHY_MAX; ++i) 498 PHY_WRITE(mac, save_phy_regs[i], save_phy[i]); 499 500 bwi_phy_set_bbp_atten(mac, mac->mac_tpctl.bbp_atten); 501 502 for (i = 0; i < SAVE_RF_MAX; ++i) 503 RF_WRITE(mac, save_rf_regs[i], save_rf[i]); 504 505 PHY_WRITE(mac, save_phy_regs[2], save_phy[2] | 0x3); 506 DELAY(10); 507 PHY_WRITE(mac, save_phy_regs[2], save_phy[2]); 508 PHY_WRITE(mac, save_phy_regs[3], save_phy[3]); 509 PHY_WRITE(mac, save_phy_regs[0], save_phy[0]); 510 PHY_WRITE(mac, save_phy_regs[1], save_phy[1]); 511 512 /* 513 * Calculate gains 514 */ 515 rf->rf_lo_gain = (loop2 * 6) - (loop1 * 4) - 11; 516 rf->rf_rx_gain = trsw * 2; 517 DPRINTF(mac->mac_sc, BWI_DBG_RF | BWI_DBG_INIT, 518 "lo gain: %u, rx gain: %u\n", 519 rf->rf_lo_gain, rf->rf_rx_gain); 520 521 #undef SAVE_RF_MAX 522 #undef SAVE_PHY_MAX 523 } 524 525 void 526 bwi_rf_init(struct bwi_mac *mac) 527 { 528 struct bwi_rf *rf = &mac->mac_rf; 529 530 if (rf->rf_type == BWI_RF_T_BCM2060) { 531 /* TODO: 11A */ 532 } else { 533 if (rf->rf_flags & BWI_RF_F_INITED) 534 RF_WRITE(mac, 0x78, rf->rf_calib); 535 else 536 bwi_rf_init_bcm2050(mac); 537 } 538 } 539 540 static void 541 bwi_rf_off_11a(struct bwi_mac *mac) 542 { 543 RF_WRITE(mac, 0x4, 0xff); 544 RF_WRITE(mac, 0x5, 0xfb); 545 546 PHY_SETBITS(mac, 0x10, 0x8); 547 PHY_SETBITS(mac, 0x11, 0x8); 548 549 PHY_WRITE(mac, 0x15, 0xaa00); 550 } 551 552 static void 553 bwi_rf_off_11bg(struct bwi_mac *mac) 554 { 555 PHY_WRITE(mac, 0x15, 0xaa00); 556 } 557 558 static void 559 bwi_rf_off_11g_rev5(struct bwi_mac *mac) 560 { 561 PHY_SETBITS(mac, 0x811, 0x8c); 562 PHY_CLRBITS(mac, 0x812, 0x8c); 563 } 564 565 static void 566 bwi_rf_work_around(struct bwi_mac *mac, u_int chan) 567 { 568 struct bwi_softc *sc = mac->mac_sc; 569 struct bwi_rf *rf = &mac->mac_rf; 570 571 if (chan == IEEE80211_CHAN_ANY) { 572 device_printf(sc->sc_dev, "%s invalid channel!!\n", __func__); 573 return; 574 } 575 576 if (rf->rf_type != BWI_RF_T_BCM2050 || rf->rf_rev >= 6) 577 return; 578 579 if (chan <= 10) 580 CSR_WRITE_2(sc, BWI_RF_CHAN, BWI_RF_2GHZ_CHAN(chan + 4)); 581 else 582 CSR_WRITE_2(sc, BWI_RF_CHAN, BWI_RF_2GHZ_CHAN(1)); 583 DELAY(1000); 584 CSR_WRITE_2(sc, BWI_RF_CHAN, BWI_RF_2GHZ_CHAN(chan)); 585 } 586 587 static __inline struct bwi_rf_lo * 588 bwi_rf_lo_find(struct bwi_mac *mac, const struct bwi_tpctl *tpctl) 589 { 590 uint16_t rf_atten, bbp_atten; 591 int remap_rf_atten; 592 593 remap_rf_atten = 1; 594 if (tpctl == NULL) { 595 bbp_atten = 2; 596 rf_atten = 3; 597 } else { 598 if (tpctl->tp_ctrl1 == 3) 599 remap_rf_atten = 0; 600 601 bbp_atten = tpctl->bbp_atten; 602 rf_atten = tpctl->rf_atten; 603 604 if (bbp_atten > 6) 605 bbp_atten = 6; 606 } 607 608 if (remap_rf_atten) { 609 #define MAP_MAX 10 610 static const uint16_t map[MAP_MAX] = 611 { 11, 10, 11, 12, 13, 12, 13, 12, 13, 12 }; 612 613 #if 0 614 KASSERT(rf_atten < MAP_MAX, ("rf_atten %d", rf_atten)); 615 rf_atten = map[rf_atten]; 616 #else 617 if (rf_atten >= MAP_MAX) { 618 rf_atten = 0; /* XXX */ 619 } else { 620 rf_atten = map[rf_atten]; 621 } 622 #endif 623 #undef MAP_MAX 624 } 625 626 return bwi_get_rf_lo(mac, rf_atten, bbp_atten); 627 } 628 629 void 630 bwi_rf_lo_adjust(struct bwi_mac *mac, const struct bwi_tpctl *tpctl) 631 { 632 const struct bwi_rf_lo *lo; 633 634 lo = bwi_rf_lo_find(mac, tpctl); 635 RF_LO_WRITE(mac, lo); 636 } 637 638 static void 639 bwi_rf_lo_write(struct bwi_mac *mac, const struct bwi_rf_lo *lo) 640 { 641 uint16_t val; 642 643 val = (uint8_t)lo->ctrl_lo; 644 val |= ((uint8_t)lo->ctrl_hi) << 8; 645 646 PHY_WRITE(mac, BWI_PHYR_RF_LO, val); 647 } 648 649 static int 650 bwi_rf_gain_max_reached(struct bwi_mac *mac, int idx) 651 { 652 PHY_FILT_SETBITS(mac, 0x812, 0xf0ff, idx << 8); 653 PHY_FILT_SETBITS(mac, 0x15, 0xfff, 0xa000); 654 PHY_SETBITS(mac, 0x15, 0xf000); 655 656 DELAY(20); 657 658 return (PHY_READ(mac, 0x2d) >= 0xdfc); 659 } 660 661 /* XXX use bitmap array */ 662 static __inline uint16_t 663 bitswap4(uint16_t val) 664 { 665 uint16_t ret; 666 667 ret = (val & 0x8) >> 3; 668 ret |= (val & 0x4) >> 1; 669 ret |= (val & 0x2) << 1; 670 ret |= (val & 0x1) << 3; 671 return ret; 672 } 673 674 static __inline uint16_t 675 bwi_phy812_value(struct bwi_mac *mac, uint16_t lpd) 676 { 677 struct bwi_softc *sc = mac->mac_sc; 678 struct bwi_phy *phy = &mac->mac_phy; 679 struct bwi_rf *rf = &mac->mac_rf; 680 uint16_t lo_gain, ext_lna, loop; 681 682 if ((phy->phy_flags & BWI_PHY_F_LINKED) == 0) 683 return 0; 684 685 lo_gain = rf->rf_lo_gain; 686 if (rf->rf_rev == 8) 687 lo_gain += 0x3e; 688 else 689 lo_gain += 0x26; 690 691 if (lo_gain >= 0x46) { 692 lo_gain -= 0x46; 693 ext_lna = 0x3000; 694 } else if (lo_gain >= 0x3a) { 695 lo_gain -= 0x3a; 696 ext_lna = 0x1000; 697 } else if (lo_gain >= 0x2e) { 698 lo_gain -= 0x2e; 699 ext_lna = 0x2000; 700 } else { 701 lo_gain -= 0x10; 702 ext_lna = 0; 703 } 704 705 for (loop = 0; loop < 16; ++loop) { 706 lo_gain -= (6 * loop); 707 if (lo_gain < 6) 708 break; 709 } 710 711 if (phy->phy_rev >= 7 && (sc->sc_card_flags & BWI_CARD_F_EXT_LNA)) { 712 if (ext_lna) 713 ext_lna |= 0x8000; 714 ext_lna |= (loop << 8); 715 switch (lpd) { 716 case 0x011: 717 return 0x8f92; 718 case 0x001: 719 return (0x8092 | ext_lna); 720 case 0x101: 721 return (0x2092 | ext_lna); 722 case 0x100: 723 return (0x2093 | ext_lna); 724 default: 725 panic("unsupported lpd\n"); 726 } 727 } else { 728 ext_lna |= (loop << 8); 729 switch (lpd) { 730 case 0x011: 731 return 0xf92; 732 case 0x001: 733 case 0x101: 734 return (0x92 | ext_lna); 735 case 0x100: 736 return (0x93 | ext_lna); 737 default: 738 panic("unsupported lpd\n"); 739 } 740 } 741 742 panic("never reached\n"); 743 return 0; 744 } 745 746 void 747 bwi_rf_init_bcm2050(struct bwi_mac *mac) 748 { 749 #define SAVE_RF_MAX 3 750 #define SAVE_PHY_COMM_MAX 4 751 #define SAVE_PHY_11G_MAX 6 752 753 static const uint16_t save_rf_regs[SAVE_RF_MAX] = 754 { 0x0043, 0x0051, 0x0052 }; 755 static const uint16_t save_phy_regs_comm[SAVE_PHY_COMM_MAX] = 756 { 0x0015, 0x005a, 0x0059, 0x0058 }; 757 static const uint16_t save_phy_regs_11g[SAVE_PHY_11G_MAX] = 758 { 0x0811, 0x0812, 0x0814, 0x0815, 0x0429, 0x0802 }; 759 760 uint16_t save_rf[SAVE_RF_MAX]; 761 uint16_t save_phy_comm[SAVE_PHY_COMM_MAX]; 762 uint16_t save_phy_11g[SAVE_PHY_11G_MAX]; 763 uint16_t phyr_35, phyr_30 = 0, rfr_78, phyr_80f = 0, phyr_810 = 0; 764 uint16_t bphy_ctrl = 0, bbp_atten, rf_chan_ex; 765 uint16_t phy812_val; 766 uint16_t calib; 767 uint32_t test_lim, test; 768 struct bwi_softc *sc = mac->mac_sc; 769 struct bwi_phy *phy = &mac->mac_phy; 770 struct bwi_rf *rf = &mac->mac_rf; 771 int i; 772 773 /* 774 * Save registers for later restoring 775 */ 776 for (i = 0; i < SAVE_RF_MAX; ++i) 777 save_rf[i] = RF_READ(mac, save_rf_regs[i]); 778 for (i = 0; i < SAVE_PHY_COMM_MAX; ++i) 779 save_phy_comm[i] = PHY_READ(mac, save_phy_regs_comm[i]); 780 781 if (phy->phy_mode == IEEE80211_MODE_11B) { 782 phyr_30 = PHY_READ(mac, 0x30); 783 bphy_ctrl = CSR_READ_2(sc, BWI_BPHY_CTRL); 784 785 PHY_WRITE(mac, 0x30, 0xff); 786 CSR_WRITE_2(sc, BWI_BPHY_CTRL, 0x3f3f); 787 } else if ((phy->phy_flags & BWI_PHY_F_LINKED) || phy->phy_rev >= 2) { 788 for (i = 0; i < SAVE_PHY_11G_MAX; ++i) { 789 save_phy_11g[i] = 790 PHY_READ(mac, save_phy_regs_11g[i]); 791 } 792 793 PHY_SETBITS(mac, 0x814, 0x3); 794 PHY_CLRBITS(mac, 0x815, 0x3); 795 PHY_CLRBITS(mac, 0x429, 0x8000); 796 PHY_CLRBITS(mac, 0x802, 0x3); 797 798 phyr_80f = PHY_READ(mac, 0x80f); 799 phyr_810 = PHY_READ(mac, 0x810); 800 801 if (phy->phy_rev >= 3) 802 PHY_WRITE(mac, 0x80f, 0xc020); 803 else 804 PHY_WRITE(mac, 0x80f, 0x8020); 805 PHY_WRITE(mac, 0x810, 0); 806 807 phy812_val = bwi_phy812_value(mac, 0x011); 808 PHY_WRITE(mac, 0x812, phy812_val); 809 if (phy->phy_rev < 7 || 810 (sc->sc_card_flags & BWI_CARD_F_EXT_LNA) == 0) 811 PHY_WRITE(mac, 0x811, 0x1b3); 812 else 813 PHY_WRITE(mac, 0x811, 0x9b3); 814 } 815 CSR_SETBITS_2(sc, BWI_RF_ANTDIV, 0x8000); 816 817 phyr_35 = PHY_READ(mac, 0x35); 818 PHY_CLRBITS(mac, 0x35, 0x80); 819 820 bbp_atten = CSR_READ_2(sc, BWI_BBP_ATTEN); 821 rf_chan_ex = CSR_READ_2(sc, BWI_RF_CHAN_EX); 822 823 if (phy->phy_version == 0) { 824 CSR_WRITE_2(sc, BWI_BBP_ATTEN, 0x122); 825 } else { 826 if (phy->phy_version >= 2) 827 PHY_FILT_SETBITS(mac, 0x3, 0xffbf, 0x40); 828 CSR_SETBITS_2(sc, BWI_RF_CHAN_EX, 0x2000); 829 } 830 831 calib = bwi_rf_calibval(mac); 832 833 if (phy->phy_mode == IEEE80211_MODE_11B) 834 RF_WRITE(mac, 0x78, 0x26); 835 836 if ((phy->phy_flags & BWI_PHY_F_LINKED) || phy->phy_rev >= 2) { 837 phy812_val = bwi_phy812_value(mac, 0x011); 838 PHY_WRITE(mac, 0x812, phy812_val); 839 } 840 841 PHY_WRITE(mac, 0x15, 0xbfaf); 842 PHY_WRITE(mac, 0x2b, 0x1403); 843 844 if ((phy->phy_flags & BWI_PHY_F_LINKED) || phy->phy_rev >= 2) { 845 phy812_val = bwi_phy812_value(mac, 0x001); 846 PHY_WRITE(mac, 0x812, phy812_val); 847 } 848 849 PHY_WRITE(mac, 0x15, 0xbfa0); 850 851 RF_SETBITS(mac, 0x51, 0x4); 852 if (rf->rf_rev == 8) { 853 RF_WRITE(mac, 0x43, 0x1f); 854 } else { 855 RF_WRITE(mac, 0x52, 0); 856 RF_FILT_SETBITS(mac, 0x43, 0xfff0, 0x9); 857 } 858 859 test_lim = 0; 860 PHY_WRITE(mac, 0x58, 0); 861 for (i = 0; i < 16; ++i) { 862 PHY_WRITE(mac, 0x5a, 0x480); 863 PHY_WRITE(mac, 0x59, 0xc810); 864 865 PHY_WRITE(mac, 0x58, 0xd); 866 if ((phy->phy_flags & BWI_PHY_F_LINKED) || phy->phy_rev >= 2) { 867 phy812_val = bwi_phy812_value(mac, 0x101); 868 PHY_WRITE(mac, 0x812, phy812_val); 869 } 870 PHY_WRITE(mac, 0x15, 0xafb0); 871 DELAY(10); 872 873 if ((phy->phy_flags & BWI_PHY_F_LINKED) || phy->phy_rev >= 2) { 874 phy812_val = bwi_phy812_value(mac, 0x101); 875 PHY_WRITE(mac, 0x812, phy812_val); 876 } 877 PHY_WRITE(mac, 0x15, 0xefb0); 878 DELAY(10); 879 880 if ((phy->phy_flags & BWI_PHY_F_LINKED) || phy->phy_rev >= 2) { 881 phy812_val = bwi_phy812_value(mac, 0x100); 882 PHY_WRITE(mac, 0x812, phy812_val); 883 } 884 PHY_WRITE(mac, 0x15, 0xfff0); 885 DELAY(20); 886 887 test_lim += PHY_READ(mac, 0x2d); 888 889 PHY_WRITE(mac, 0x58, 0); 890 if ((phy->phy_flags & BWI_PHY_F_LINKED) || phy->phy_rev >= 2) { 891 phy812_val = bwi_phy812_value(mac, 0x101); 892 PHY_WRITE(mac, 0x812, phy812_val); 893 } 894 PHY_WRITE(mac, 0x15, 0xafb0); 895 } 896 ++test_lim; 897 test_lim >>= 9; 898 899 DELAY(10); 900 901 test = 0; 902 PHY_WRITE(mac, 0x58, 0); 903 for (i = 0; i < 16; ++i) { 904 int j; 905 906 rfr_78 = (bitswap4(i) << 1) | 0x20; 907 RF_WRITE(mac, 0x78, rfr_78); 908 DELAY(10); 909 910 /* NB: This block is slight different than the above one */ 911 for (j = 0; j < 16; ++j) { 912 PHY_WRITE(mac, 0x5a, 0xd80); 913 PHY_WRITE(mac, 0x59, 0xc810); 914 915 PHY_WRITE(mac, 0x58, 0xd); 916 if ((phy->phy_flags & BWI_PHY_F_LINKED) || 917 phy->phy_rev >= 2) { 918 phy812_val = bwi_phy812_value(mac, 0x101); 919 PHY_WRITE(mac, 0x812, phy812_val); 920 } 921 PHY_WRITE(mac, 0x15, 0xafb0); 922 DELAY(10); 923 924 if ((phy->phy_flags & BWI_PHY_F_LINKED) || 925 phy->phy_rev >= 2) { 926 phy812_val = bwi_phy812_value(mac, 0x101); 927 PHY_WRITE(mac, 0x812, phy812_val); 928 } 929 PHY_WRITE(mac, 0x15, 0xefb0); 930 DELAY(10); 931 932 if ((phy->phy_flags & BWI_PHY_F_LINKED) || 933 phy->phy_rev >= 2) { 934 phy812_val = bwi_phy812_value(mac, 0x100); 935 PHY_WRITE(mac, 0x812, phy812_val); 936 } 937 PHY_WRITE(mac, 0x15, 0xfff0); 938 DELAY(10); 939 940 test += PHY_READ(mac, 0x2d); 941 942 PHY_WRITE(mac, 0x58, 0); 943 if ((phy->phy_flags & BWI_PHY_F_LINKED) || 944 phy->phy_rev >= 2) { 945 phy812_val = bwi_phy812_value(mac, 0x101); 946 PHY_WRITE(mac, 0x812, phy812_val); 947 } 948 PHY_WRITE(mac, 0x15, 0xafb0); 949 } 950 951 ++test; 952 test >>= 8; 953 954 if (test > test_lim) 955 break; 956 } 957 if (i > 15) 958 rf->rf_calib = rfr_78; 959 else 960 rf->rf_calib = calib; 961 if (rf->rf_calib != 0xffff) { 962 DPRINTF(sc, BWI_DBG_RF | BWI_DBG_INIT, 963 "RF calibration value: 0x%04x\n", rf->rf_calib); 964 rf->rf_flags |= BWI_RF_F_INITED; 965 } 966 967 /* 968 * Restore trashes registers 969 */ 970 PHY_WRITE(mac, save_phy_regs_comm[0], save_phy_comm[0]); 971 972 for (i = 0; i < SAVE_RF_MAX; ++i) { 973 int pos = (i + 1) % SAVE_RF_MAX; 974 975 RF_WRITE(mac, save_rf_regs[pos], save_rf[pos]); 976 } 977 for (i = 1; i < SAVE_PHY_COMM_MAX; ++i) 978 PHY_WRITE(mac, save_phy_regs_comm[i], save_phy_comm[i]); 979 980 CSR_WRITE_2(sc, BWI_BBP_ATTEN, bbp_atten); 981 if (phy->phy_version != 0) 982 CSR_WRITE_2(sc, BWI_RF_CHAN_EX, rf_chan_ex); 983 984 PHY_WRITE(mac, 0x35, phyr_35); 985 bwi_rf_work_around(mac, rf->rf_curchan); 986 987 if (phy->phy_mode == IEEE80211_MODE_11B) { 988 PHY_WRITE(mac, 0x30, phyr_30); 989 CSR_WRITE_2(sc, BWI_BPHY_CTRL, bphy_ctrl); 990 } else if ((phy->phy_flags & BWI_PHY_F_LINKED) || phy->phy_rev >= 2) { 991 /* XXX Spec only says when PHY is linked (gmode) */ 992 CSR_CLRBITS_2(sc, BWI_RF_ANTDIV, 0x8000); 993 994 for (i = 0; i < SAVE_PHY_11G_MAX; ++i) { 995 PHY_WRITE(mac, save_phy_regs_11g[i], 996 save_phy_11g[i]); 997 } 998 999 PHY_WRITE(mac, 0x80f, phyr_80f); 1000 PHY_WRITE(mac, 0x810, phyr_810); 1001 } 1002 1003 #undef SAVE_PHY_11G_MAX 1004 #undef SAVE_PHY_COMM_MAX 1005 #undef SAVE_RF_MAX 1006 } 1007 1008 static uint16_t 1009 bwi_rf_calibval(struct bwi_mac *mac) 1010 { 1011 /* http://bcm-specs.sipsolutions.net/RCCTable */ 1012 static const uint16_t rf_calibvals[] = { 1013 0x2, 0x3, 0x1, 0xf, 0x6, 0x7, 0x5, 0xf, 1014 0xa, 0xb, 0x9, 0xf, 0xe, 0xf, 0xd, 0xf 1015 }; 1016 uint16_t val, calib; 1017 int idx; 1018 1019 val = RF_READ(mac, BWI_RFR_BBP_ATTEN); 1020 idx = __SHIFTOUT(val, BWI_RFR_BBP_ATTEN_CALIB_IDX); 1021 KASSERT(idx < (int)(sizeof(rf_calibvals) / sizeof(rf_calibvals[0])), 1022 ("idx %d", idx)); 1023 1024 calib = rf_calibvals[idx] << 1; 1025 if (val & BWI_RFR_BBP_ATTEN_CALIB_BIT) 1026 calib |= 0x1; 1027 calib |= 0x20; 1028 1029 return calib; 1030 } 1031 1032 static __inline int32_t 1033 _bwi_adjust_devide(int32_t num, int32_t den) 1034 { 1035 if (num < 0) 1036 return (num / den); 1037 else 1038 return (num + den / 2) / den; 1039 } 1040 1041 /* 1042 * http://bcm-specs.sipsolutions.net/TSSI_to_DBM_Table 1043 * "calculating table entries" 1044 */ 1045 static int 1046 bwi_rf_calc_txpower(int8_t *txpwr, uint8_t idx, const int16_t pa_params[]) 1047 { 1048 int32_t m1, m2, f, dbm; 1049 int i; 1050 1051 m1 = _bwi_adjust_devide(16 * pa_params[0] + idx * pa_params[1], 32); 1052 m2 = imax(_bwi_adjust_devide(32768 + idx * pa_params[2], 256), 1); 1053 1054 #define ITER_MAX 16 1055 1056 f = 256; 1057 for (i = 0; i < ITER_MAX; ++i) { 1058 int32_t q, d; 1059 1060 q = _bwi_adjust_devide( 1061 f * 4096 - _bwi_adjust_devide(m2 * f, 16) * f, 2048); 1062 d = abs(q - f); 1063 f = q; 1064 1065 if (d < 2) 1066 break; 1067 } 1068 if (i == ITER_MAX) 1069 return EINVAL; 1070 1071 #undef ITER_MAX 1072 1073 dbm = _bwi_adjust_devide(m1 * f, 8192); 1074 if (dbm < -127) 1075 dbm = -127; 1076 else if (dbm > 128) 1077 dbm = 128; 1078 1079 *txpwr = dbm; 1080 return 0; 1081 } 1082 1083 int 1084 bwi_rf_map_txpower(struct bwi_mac *mac) 1085 { 1086 struct bwi_softc *sc = mac->mac_sc; 1087 struct bwi_rf *rf = &mac->mac_rf; 1088 struct bwi_phy *phy = &mac->mac_phy; 1089 uint16_t sprom_ofs, val, mask; 1090 int16_t pa_params[3]; 1091 int error = 0, i, ant_gain, reg_txpower_max; 1092 1093 /* 1094 * Find out max TX power 1095 */ 1096 val = bwi_read_sprom(sc, BWI_SPROM_MAX_TXPWR); 1097 if (phy->phy_mode == IEEE80211_MODE_11A) { 1098 rf->rf_txpower_max = __SHIFTOUT(val, 1099 BWI_SPROM_MAX_TXPWR_MASK_11A); 1100 } else { 1101 rf->rf_txpower_max = __SHIFTOUT(val, 1102 BWI_SPROM_MAX_TXPWR_MASK_11BG); 1103 1104 if ((sc->sc_card_flags & BWI_CARD_F_PA_GPIO9) && 1105 phy->phy_mode == IEEE80211_MODE_11G) 1106 rf->rf_txpower_max -= 3; 1107 } 1108 if (rf->rf_txpower_max <= 0) { 1109 device_printf(sc->sc_dev, "invalid max txpower in sprom\n"); 1110 rf->rf_txpower_max = 74; 1111 } 1112 DPRINTF(sc, BWI_DBG_RF | BWI_DBG_TXPOWER | BWI_DBG_ATTACH, 1113 "max txpower from sprom: %d dBm\n", rf->rf_txpower_max); 1114 1115 /* 1116 * Find out region/domain max TX power, which is adjusted 1117 * by antenna gain and 1.5 dBm fluctuation as mentioned 1118 * in v3 spec. 1119 */ 1120 val = bwi_read_sprom(sc, BWI_SPROM_ANT_GAIN); 1121 if (phy->phy_mode == IEEE80211_MODE_11A) 1122 ant_gain = __SHIFTOUT(val, BWI_SPROM_ANT_GAIN_MASK_11A); 1123 else 1124 ant_gain = __SHIFTOUT(val, BWI_SPROM_ANT_GAIN_MASK_11BG); 1125 if (ant_gain == 0xff) { 1126 device_printf(sc->sc_dev, "invalid antenna gain in sprom\n"); 1127 ant_gain = 2; 1128 } 1129 ant_gain *= 4; 1130 DPRINTF(sc, BWI_DBG_RF | BWI_DBG_TXPOWER | BWI_DBG_ATTACH, 1131 "ant gain %d dBm\n", ant_gain); 1132 1133 reg_txpower_max = 90 - ant_gain - 6; /* XXX magic number */ 1134 DPRINTF(sc, BWI_DBG_RF | BWI_DBG_TXPOWER | BWI_DBG_ATTACH, 1135 "region/domain max txpower %d dBm\n", reg_txpower_max); 1136 1137 /* 1138 * Force max TX power within region/domain TX power limit 1139 */ 1140 if (rf->rf_txpower_max > reg_txpower_max) 1141 rf->rf_txpower_max = reg_txpower_max; 1142 DPRINTF(sc, BWI_DBG_RF | BWI_DBG_TXPOWER | BWI_DBG_ATTACH, 1143 "max txpower %d dBm\n", rf->rf_txpower_max); 1144 1145 /* 1146 * Create TSSI to TX power mapping 1147 */ 1148 1149 if (sc->sc_bbp_id == BWI_BBPID_BCM4301 && 1150 rf->rf_type != BWI_RF_T_BCM2050) { 1151 rf->rf_idle_tssi0 = BWI_DEFAULT_IDLE_TSSI; 1152 bcopy(bwi_txpower_map_11b, rf->rf_txpower_map0, 1153 sizeof(rf->rf_txpower_map0)); 1154 goto back; 1155 } 1156 1157 #define IS_VALID_PA_PARAM(p) ((p) != 0 && (p) != -1) 1158 #define N(arr) (int)(sizeof(arr) / sizeof(arr[0])) 1159 1160 /* 1161 * Extract PA parameters 1162 */ 1163 if (phy->phy_mode == IEEE80211_MODE_11A) 1164 sprom_ofs = BWI_SPROM_PA_PARAM_11A; 1165 else 1166 sprom_ofs = BWI_SPROM_PA_PARAM_11BG; 1167 for (i = 0; i < N(pa_params); ++i) 1168 pa_params[i] = (int16_t)bwi_read_sprom(sc, sprom_ofs + (i * 2)); 1169 1170 for (i = 0; i < N(pa_params); ++i) { 1171 /* 1172 * If one of the PA parameters from SPROM is not valid, 1173 * fall back to the default values, if there are any. 1174 */ 1175 if (!IS_VALID_PA_PARAM(pa_params[i])) { 1176 const int8_t *txpower_map; 1177 1178 if (phy->phy_mode == IEEE80211_MODE_11A) { 1179 device_printf(sc->sc_dev, 1180 "no tssi2dbm table for 11a PHY\n"); 1181 return ENXIO; 1182 } 1183 1184 if (phy->phy_mode == IEEE80211_MODE_11G) { 1185 DPRINTF(sc, 1186 BWI_DBG_RF | BWI_DBG_TXPOWER | BWI_DBG_ATTACH, 1187 "%s\n", "use default 11g TSSI map"); 1188 txpower_map = bwi_txpower_map_11g; 1189 } else { 1190 DPRINTF(sc, 1191 BWI_DBG_RF | BWI_DBG_TXPOWER | BWI_DBG_ATTACH, 1192 "%s\n", "use default 11b TSSI map"); 1193 txpower_map = bwi_txpower_map_11b; 1194 } 1195 1196 rf->rf_idle_tssi0 = BWI_DEFAULT_IDLE_TSSI; 1197 bcopy(txpower_map, rf->rf_txpower_map0, 1198 sizeof(rf->rf_txpower_map0)); 1199 goto back; 1200 } 1201 } 1202 1203 #undef N 1204 1205 /* 1206 * All of the PA parameters from SPROM are valid. 1207 */ 1208 1209 /* 1210 * Extract idle TSSI from SPROM. 1211 */ 1212 val = bwi_read_sprom(sc, BWI_SPROM_IDLE_TSSI); 1213 DPRINTF(sc, BWI_DBG_RF | BWI_DBG_TXPOWER | BWI_DBG_ATTACH, 1214 "sprom idle tssi: 0x%04x\n", val); 1215 1216 if (phy->phy_mode == IEEE80211_MODE_11A) 1217 mask = BWI_SPROM_IDLE_TSSI_MASK_11A; 1218 else 1219 mask = BWI_SPROM_IDLE_TSSI_MASK_11BG; 1220 1221 rf->rf_idle_tssi0 = (int)__SHIFTOUT(val, mask); 1222 if (!IS_VALID_PA_PARAM(rf->rf_idle_tssi0)) 1223 rf->rf_idle_tssi0 = 62; 1224 1225 #undef IS_VALID_PA_PARAM 1226 1227 /* 1228 * Calculate TX power map, which is indexed by TSSI 1229 */ 1230 DPRINTF(sc, BWI_DBG_RF | BWI_DBG_ATTACH | BWI_DBG_TXPOWER, 1231 "%s\n", "TSSI-TX power map:"); 1232 for (i = 0; i < BWI_TSSI_MAX; ++i) { 1233 error = bwi_rf_calc_txpower(&rf->rf_txpower_map0[i], i, 1234 pa_params); 1235 if (error) { 1236 device_printf(sc->sc_dev, 1237 "bwi_rf_calc_txpower failed\n"); 1238 break; 1239 } 1240 1241 #ifdef BWI_DEBUG 1242 if (i != 0 && i % 8 == 0) { 1243 _DPRINTF(sc, 1244 BWI_DBG_RF | BWI_DBG_ATTACH | BWI_DBG_TXPOWER, 1245 "%s\n", ""); 1246 } 1247 #endif 1248 _DPRINTF(sc, BWI_DBG_RF | BWI_DBG_ATTACH | BWI_DBG_TXPOWER, 1249 "%d ", rf->rf_txpower_map0[i]); 1250 } 1251 _DPRINTF(sc, BWI_DBG_RF | BWI_DBG_ATTACH | BWI_DBG_TXPOWER, 1252 "%s\n", ""); 1253 back: 1254 DPRINTF(sc, BWI_DBG_RF | BWI_DBG_TXPOWER | BWI_DBG_ATTACH, 1255 "idle tssi0: %d\n", rf->rf_idle_tssi0); 1256 return error; 1257 } 1258 1259 static void 1260 bwi_rf_lo_update_11g(struct bwi_mac *mac) 1261 { 1262 struct bwi_softc *sc = mac->mac_sc; 1263 struct bwi_rf *rf = &mac->mac_rf; 1264 struct bwi_phy *phy = &mac->mac_phy; 1265 struct bwi_tpctl *tpctl = &mac->mac_tpctl; 1266 struct rf_saveregs regs; 1267 uint16_t ant_div, chan_ex; 1268 uint8_t devi_ctrl; 1269 u_int orig_chan; 1270 1271 /* 1272 * Save RF/PHY registers for later restoration 1273 */ 1274 orig_chan = rf->rf_curchan; 1275 bzero(®s, sizeof(regs)); 1276 1277 if (phy->phy_flags & BWI_PHY_F_LINKED) { 1278 SAVE_PHY_REG(mac, ®s, 429); 1279 SAVE_PHY_REG(mac, ®s, 802); 1280 1281 PHY_WRITE(mac, 0x429, regs.phy_429 & 0x7fff); 1282 PHY_WRITE(mac, 0x802, regs.phy_802 & 0xfffc); 1283 } 1284 1285 ant_div = CSR_READ_2(sc, BWI_RF_ANTDIV); 1286 CSR_WRITE_2(sc, BWI_RF_ANTDIV, ant_div | 0x8000); 1287 chan_ex = CSR_READ_2(sc, BWI_RF_CHAN_EX); 1288 1289 SAVE_PHY_REG(mac, ®s, 15); 1290 SAVE_PHY_REG(mac, ®s, 2a); 1291 SAVE_PHY_REG(mac, ®s, 35); 1292 SAVE_PHY_REG(mac, ®s, 60); 1293 SAVE_RF_REG(mac, ®s, 43); 1294 SAVE_RF_REG(mac, ®s, 7a); 1295 SAVE_RF_REG(mac, ®s, 52); 1296 if (phy->phy_flags & BWI_PHY_F_LINKED) { 1297 SAVE_PHY_REG(mac, ®s, 811); 1298 SAVE_PHY_REG(mac, ®s, 812); 1299 SAVE_PHY_REG(mac, ®s, 814); 1300 SAVE_PHY_REG(mac, ®s, 815); 1301 } 1302 1303 /* Force to channel 6 */ 1304 bwi_rf_set_chan(mac, 6, 0); 1305 1306 if (phy->phy_flags & BWI_PHY_F_LINKED) { 1307 PHY_WRITE(mac, 0x429, regs.phy_429 & 0x7fff); 1308 PHY_WRITE(mac, 0x802, regs.phy_802 & 0xfffc); 1309 bwi_mac_dummy_xmit(mac); 1310 } 1311 RF_WRITE(mac, 0x43, 0x6); 1312 1313 bwi_phy_set_bbp_atten(mac, 2); 1314 1315 CSR_WRITE_2(sc, BWI_RF_CHAN_EX, 0); 1316 1317 PHY_WRITE(mac, 0x2e, 0x7f); 1318 PHY_WRITE(mac, 0x80f, 0x78); 1319 PHY_WRITE(mac, 0x35, regs.phy_35 & 0xff7f); 1320 RF_WRITE(mac, 0x7a, regs.rf_7a & 0xfff0); 1321 PHY_WRITE(mac, 0x2b, 0x203); 1322 PHY_WRITE(mac, 0x2a, 0x8a3); 1323 1324 if (phy->phy_flags & BWI_PHY_F_LINKED) { 1325 PHY_WRITE(mac, 0x814, regs.phy_814 | 0x3); 1326 PHY_WRITE(mac, 0x815, regs.phy_815 & 0xfffc); 1327 PHY_WRITE(mac, 0x811, 0x1b3); 1328 PHY_WRITE(mac, 0x812, 0xb2); 1329 } 1330 1331 if ((sc->sc_flags & BWI_F_RUNNING) == 0) 1332 tpctl->tp_ctrl2 = bwi_rf_get_tp_ctrl2(mac); 1333 PHY_WRITE(mac, 0x80f, 0x8078); 1334 1335 /* 1336 * Measure all RF LO 1337 */ 1338 devi_ctrl = _bwi_rf_lo_update_11g(mac, regs.rf_7a); 1339 1340 /* 1341 * Restore saved RF/PHY registers 1342 */ 1343 if (phy->phy_flags & BWI_PHY_F_LINKED) { 1344 PHY_WRITE(mac, 0x15, 0xe300); 1345 PHY_WRITE(mac, 0x812, (devi_ctrl << 8) | 0xa0); 1346 DELAY(5); 1347 PHY_WRITE(mac, 0x812, (devi_ctrl << 8) | 0xa2); 1348 DELAY(2); 1349 PHY_WRITE(mac, 0x812, (devi_ctrl << 8) | 0xa3); 1350 } else { 1351 PHY_WRITE(mac, 0x15, devi_ctrl | 0xefa0); 1352 } 1353 1354 if ((sc->sc_flags & BWI_F_RUNNING) == 0) 1355 tpctl = NULL; 1356 bwi_rf_lo_adjust(mac, tpctl); 1357 1358 PHY_WRITE(mac, 0x2e, 0x807f); 1359 if (phy->phy_flags & BWI_PHY_F_LINKED) 1360 PHY_WRITE(mac, 0x2f, 0x202); 1361 else 1362 PHY_WRITE(mac, 0x2f, 0x101); 1363 1364 CSR_WRITE_2(sc, BWI_RF_CHAN_EX, chan_ex); 1365 1366 RESTORE_PHY_REG(mac, ®s, 15); 1367 RESTORE_PHY_REG(mac, ®s, 2a); 1368 RESTORE_PHY_REG(mac, ®s, 35); 1369 RESTORE_PHY_REG(mac, ®s, 60); 1370 1371 RESTORE_RF_REG(mac, ®s, 43); 1372 RESTORE_RF_REG(mac, ®s, 7a); 1373 1374 regs.rf_52 &= 0xf0; 1375 regs.rf_52 |= (RF_READ(mac, 0x52) & 0xf); 1376 RF_WRITE(mac, 0x52, regs.rf_52); 1377 1378 CSR_WRITE_2(sc, BWI_RF_ANTDIV, ant_div); 1379 1380 if (phy->phy_flags & BWI_PHY_F_LINKED) { 1381 RESTORE_PHY_REG(mac, ®s, 811); 1382 RESTORE_PHY_REG(mac, ®s, 812); 1383 RESTORE_PHY_REG(mac, ®s, 814); 1384 RESTORE_PHY_REG(mac, ®s, 815); 1385 RESTORE_PHY_REG(mac, ®s, 429); 1386 RESTORE_PHY_REG(mac, ®s, 802); 1387 } 1388 1389 bwi_rf_set_chan(mac, orig_chan, 1); 1390 } 1391 1392 static uint32_t 1393 bwi_rf_lo_devi_measure(struct bwi_mac *mac, uint16_t ctrl) 1394 { 1395 struct bwi_phy *phy = &mac->mac_phy; 1396 uint32_t devi = 0; 1397 int i; 1398 1399 if (phy->phy_flags & BWI_PHY_F_LINKED) 1400 ctrl <<= 8; 1401 1402 for (i = 0; i < 8; ++i) { 1403 if (phy->phy_flags & BWI_PHY_F_LINKED) { 1404 PHY_WRITE(mac, 0x15, 0xe300); 1405 PHY_WRITE(mac, 0x812, ctrl | 0xb0); 1406 DELAY(5); 1407 PHY_WRITE(mac, 0x812, ctrl | 0xb2); 1408 DELAY(2); 1409 PHY_WRITE(mac, 0x812, ctrl | 0xb3); 1410 DELAY(4); 1411 PHY_WRITE(mac, 0x15, 0xf300); 1412 } else { 1413 PHY_WRITE(mac, 0x15, ctrl | 0xefa0); 1414 DELAY(2); 1415 PHY_WRITE(mac, 0x15, ctrl | 0xefe0); 1416 DELAY(4); 1417 PHY_WRITE(mac, 0x15, ctrl | 0xffe0); 1418 } 1419 DELAY(8); 1420 devi += PHY_READ(mac, 0x2d); 1421 } 1422 return devi; 1423 } 1424 1425 static uint16_t 1426 bwi_rf_get_tp_ctrl2(struct bwi_mac *mac) 1427 { 1428 uint32_t devi_min; 1429 uint16_t tp_ctrl2 = 0; 1430 int i; 1431 1432 RF_WRITE(mac, 0x52, 0); 1433 DELAY(10); 1434 devi_min = bwi_rf_lo_devi_measure(mac, 0); 1435 1436 for (i = 0; i < 16; ++i) { 1437 uint32_t devi; 1438 1439 RF_WRITE(mac, 0x52, i); 1440 DELAY(10); 1441 devi = bwi_rf_lo_devi_measure(mac, 0); 1442 1443 if (devi < devi_min) { 1444 devi_min = devi; 1445 tp_ctrl2 = i; 1446 } 1447 } 1448 return tp_ctrl2; 1449 } 1450 1451 static uint8_t 1452 _bwi_rf_lo_update_11g(struct bwi_mac *mac, uint16_t orig_rf7a) 1453 { 1454 #define RF_ATTEN_LISTSZ 14 1455 #define BBP_ATTEN_MAX 4 /* half */ 1456 1457 static const int rf_atten_list[RF_ATTEN_LISTSZ] = 1458 { 3, 1, 5, 7, 9, 2, 0, 4, 6, 8, 1, 2, 3, 4 }; 1459 static const int rf_atten_init_list[RF_ATTEN_LISTSZ] = 1460 { 0, 3, 1, 5, 7, 3, 2, 0, 4, 6, -1, -1, -1, -1 }; 1461 static const int rf_lo_measure_order[RF_ATTEN_LISTSZ] = 1462 { 3, 1, 5, 7, 9, 2, 0, 4, 6, 8, 10, 11, 12, 13 }; 1463 1464 struct bwi_softc *sc = mac->mac_sc; 1465 struct bwi_rf_lo lo_save, *lo; 1466 uint8_t devi_ctrl = 0; 1467 int idx, adj_rf7a = 0; 1468 1469 bzero(&lo_save, sizeof(lo_save)); 1470 for (idx = 0; idx < RF_ATTEN_LISTSZ; ++idx) { 1471 int init_rf_atten = rf_atten_init_list[idx]; 1472 int rf_atten = rf_atten_list[idx]; 1473 int bbp_atten; 1474 1475 for (bbp_atten = 0; bbp_atten < BBP_ATTEN_MAX; ++bbp_atten) { 1476 uint16_t tp_ctrl2, rf7a; 1477 1478 if ((sc->sc_flags & BWI_F_RUNNING) == 0) { 1479 if (idx == 0) { 1480 bzero(&lo_save, sizeof(lo_save)); 1481 } else if (init_rf_atten < 0) { 1482 lo = bwi_get_rf_lo(mac, 1483 rf_atten, 2 * bbp_atten); 1484 bcopy(lo, &lo_save, sizeof(lo_save)); 1485 } else { 1486 lo = bwi_get_rf_lo(mac, 1487 init_rf_atten, 0); 1488 bcopy(lo, &lo_save, sizeof(lo_save)); 1489 } 1490 1491 devi_ctrl = 0; 1492 adj_rf7a = 0; 1493 1494 /* 1495 * XXX 1496 * Linux driver overflows 'val' 1497 */ 1498 if (init_rf_atten >= 0) { 1499 int val; 1500 1501 val = rf_atten * 2 + bbp_atten; 1502 if (val > 14) { 1503 adj_rf7a = 1; 1504 if (val > 17) 1505 devi_ctrl = 1; 1506 if (val > 19) 1507 devi_ctrl = 2; 1508 } 1509 } 1510 } else { 1511 lo = bwi_get_rf_lo(mac, 1512 rf_atten, 2 * bbp_atten); 1513 if (!bwi_rf_lo_isused(mac, lo)) 1514 continue; 1515 bcopy(lo, &lo_save, sizeof(lo_save)); 1516 1517 devi_ctrl = 3; 1518 adj_rf7a = 0; 1519 } 1520 1521 RF_WRITE(mac, BWI_RFR_ATTEN, rf_atten); 1522 1523 tp_ctrl2 = mac->mac_tpctl.tp_ctrl2; 1524 if (init_rf_atten < 0) 1525 tp_ctrl2 |= (3 << 4); 1526 RF_WRITE(mac, BWI_RFR_TXPWR, tp_ctrl2); 1527 1528 DELAY(10); 1529 1530 bwi_phy_set_bbp_atten(mac, bbp_atten * 2); 1531 1532 rf7a = orig_rf7a & 0xfff0; 1533 if (adj_rf7a) 1534 rf7a |= 0x8; 1535 RF_WRITE(mac, 0x7a, rf7a); 1536 1537 lo = bwi_get_rf_lo(mac, 1538 rf_lo_measure_order[idx], bbp_atten * 2); 1539 bwi_rf_lo_measure_11g(mac, &lo_save, lo, devi_ctrl); 1540 } 1541 } 1542 return devi_ctrl; 1543 1544 #undef RF_ATTEN_LISTSZ 1545 #undef BBP_ATTEN_MAX 1546 } 1547 1548 static void 1549 bwi_rf_lo_measure_11g(struct bwi_mac *mac, const struct bwi_rf_lo *src_lo, 1550 struct bwi_rf_lo *dst_lo, uint8_t devi_ctrl) 1551 { 1552 #define LO_ADJUST_MIN 1 1553 #define LO_ADJUST_MAX 8 1554 #define LO_ADJUST(hi, lo) { .ctrl_hi = hi, .ctrl_lo = lo } 1555 static const struct bwi_rf_lo rf_lo_adjust[LO_ADJUST_MAX] = { 1556 LO_ADJUST(1, 1), 1557 LO_ADJUST(1, 0), 1558 LO_ADJUST(1, -1), 1559 LO_ADJUST(0, -1), 1560 LO_ADJUST(-1, -1), 1561 LO_ADJUST(-1, 0), 1562 LO_ADJUST(-1, 1), 1563 LO_ADJUST(0, 1) 1564 }; 1565 #undef LO_ADJUST 1566 1567 struct bwi_rf_lo lo_min; 1568 uint32_t devi_min; 1569 int found, loop_count, adjust_state; 1570 1571 bcopy(src_lo, &lo_min, sizeof(lo_min)); 1572 RF_LO_WRITE(mac, &lo_min); 1573 devi_min = bwi_rf_lo_devi_measure(mac, devi_ctrl); 1574 1575 loop_count = 12; /* XXX */ 1576 adjust_state = 0; 1577 do { 1578 struct bwi_rf_lo lo_base; 1579 int i, fin; 1580 1581 found = 0; 1582 if (adjust_state == 0) { 1583 i = LO_ADJUST_MIN; 1584 fin = LO_ADJUST_MAX; 1585 } else if (adjust_state % 2 == 0) { 1586 i = adjust_state - 1; 1587 fin = adjust_state + 1; 1588 } else { 1589 i = adjust_state - 2; 1590 fin = adjust_state + 2; 1591 } 1592 1593 if (i < LO_ADJUST_MIN) 1594 i += LO_ADJUST_MAX; 1595 KASSERT(i <= LO_ADJUST_MAX && i >= LO_ADJUST_MIN, ("i %d", i)); 1596 1597 if (fin > LO_ADJUST_MAX) 1598 fin -= LO_ADJUST_MAX; 1599 KASSERT(fin <= LO_ADJUST_MAX && fin >= LO_ADJUST_MIN, 1600 ("fin %d", fin)); 1601 1602 bcopy(&lo_min, &lo_base, sizeof(lo_base)); 1603 for (;;) { 1604 struct bwi_rf_lo lo; 1605 1606 lo.ctrl_hi = lo_base.ctrl_hi + 1607 rf_lo_adjust[i - 1].ctrl_hi; 1608 lo.ctrl_lo = lo_base.ctrl_lo + 1609 rf_lo_adjust[i - 1].ctrl_lo; 1610 1611 if (abs(lo.ctrl_lo) < 9 && abs(lo.ctrl_hi) < 9) { 1612 uint32_t devi; 1613 1614 RF_LO_WRITE(mac, &lo); 1615 devi = bwi_rf_lo_devi_measure(mac, devi_ctrl); 1616 if (devi < devi_min) { 1617 devi_min = devi; 1618 adjust_state = i; 1619 found = 1; 1620 bcopy(&lo, &lo_min, sizeof(lo_min)); 1621 } 1622 } 1623 if (i == fin) 1624 break; 1625 if (i == LO_ADJUST_MAX) 1626 i = LO_ADJUST_MIN; 1627 else 1628 ++i; 1629 } 1630 } while (loop_count-- && found); 1631 1632 bcopy(&lo_min, dst_lo, sizeof(*dst_lo)); 1633 1634 #undef LO_ADJUST_MIN 1635 #undef LO_ADJUST_MAX 1636 } 1637 1638 static void 1639 bwi_rf_calc_nrssi_slope_11b(struct bwi_mac *mac) 1640 { 1641 #define SAVE_RF_MAX 3 1642 #define SAVE_PHY_MAX 8 1643 1644 static const uint16_t save_rf_regs[SAVE_RF_MAX] = 1645 { 0x7a, 0x52, 0x43 }; 1646 static const uint16_t save_phy_regs[SAVE_PHY_MAX] = 1647 { 0x30, 0x26, 0x15, 0x2a, 0x20, 0x5a, 0x59, 0x58 }; 1648 1649 struct bwi_softc *sc = mac->mac_sc; 1650 struct bwi_rf *rf = &mac->mac_rf; 1651 struct bwi_phy *phy = &mac->mac_phy; 1652 uint16_t save_rf[SAVE_RF_MAX]; 1653 uint16_t save_phy[SAVE_PHY_MAX]; 1654 uint16_t ant_div, bbp_atten, chan_ex; 1655 int16_t nrssi[2]; 1656 int i; 1657 1658 /* 1659 * Save RF/PHY registers for later restoration 1660 */ 1661 for (i = 0; i < SAVE_RF_MAX; ++i) 1662 save_rf[i] = RF_READ(mac, save_rf_regs[i]); 1663 for (i = 0; i < SAVE_PHY_MAX; ++i) 1664 save_phy[i] = PHY_READ(mac, save_phy_regs[i]); 1665 1666 ant_div = CSR_READ_2(sc, BWI_RF_ANTDIV); 1667 bbp_atten = CSR_READ_2(sc, BWI_BBP_ATTEN); 1668 chan_ex = CSR_READ_2(sc, BWI_RF_CHAN_EX); 1669 1670 /* 1671 * Calculate nrssi0 1672 */ 1673 if (phy->phy_rev >= 5) 1674 RF_CLRBITS(mac, 0x7a, 0xff80); 1675 else 1676 RF_CLRBITS(mac, 0x7a, 0xfff0); 1677 PHY_WRITE(mac, 0x30, 0xff); 1678 1679 CSR_WRITE_2(sc, BWI_BPHY_CTRL, 0x7f7f); 1680 1681 PHY_WRITE(mac, 0x26, 0); 1682 PHY_SETBITS(mac, 0x15, 0x20); 1683 PHY_WRITE(mac, 0x2a, 0x8a3); 1684 RF_SETBITS(mac, 0x7a, 0x80); 1685 1686 nrssi[0] = (int16_t)PHY_READ(mac, 0x27); 1687 1688 /* 1689 * Calculate nrssi1 1690 */ 1691 RF_CLRBITS(mac, 0x7a, 0xff80); 1692 if (phy->phy_version >= 2) 1693 CSR_WRITE_2(sc, BWI_BBP_ATTEN, 0x40); 1694 else if (phy->phy_version == 0) 1695 CSR_WRITE_2(sc, BWI_BBP_ATTEN, 0x122); 1696 else 1697 CSR_CLRBITS_2(sc, BWI_RF_CHAN_EX, 0xdfff); 1698 1699 PHY_WRITE(mac, 0x20, 0x3f3f); 1700 PHY_WRITE(mac, 0x15, 0xf330); 1701 1702 RF_WRITE(mac, 0x5a, 0x60); 1703 RF_CLRBITS(mac, 0x43, 0xff0f); 1704 1705 PHY_WRITE(mac, 0x5a, 0x480); 1706 PHY_WRITE(mac, 0x59, 0x810); 1707 PHY_WRITE(mac, 0x58, 0xd); 1708 1709 DELAY(20); 1710 1711 nrssi[1] = (int16_t)PHY_READ(mac, 0x27); 1712 1713 /* 1714 * Restore saved RF/PHY registers 1715 */ 1716 PHY_WRITE(mac, save_phy_regs[0], save_phy[0]); 1717 RF_WRITE(mac, save_rf_regs[0], save_rf[0]); 1718 1719 CSR_WRITE_2(sc, BWI_RF_ANTDIV, ant_div); 1720 1721 for (i = 1; i < 4; ++i) 1722 PHY_WRITE(mac, save_phy_regs[i], save_phy[i]); 1723 1724 bwi_rf_work_around(mac, rf->rf_curchan); 1725 1726 if (phy->phy_version != 0) 1727 CSR_WRITE_2(sc, BWI_RF_CHAN_EX, chan_ex); 1728 1729 for (; i < SAVE_PHY_MAX; ++i) 1730 PHY_WRITE(mac, save_phy_regs[i], save_phy[i]); 1731 1732 for (i = 1; i < SAVE_RF_MAX; ++i) 1733 RF_WRITE(mac, save_rf_regs[i], save_rf[i]); 1734 1735 /* 1736 * Install calculated narrow RSSI values 1737 */ 1738 if (nrssi[0] == nrssi[1]) 1739 rf->rf_nrssi_slope = 0x10000; 1740 else 1741 rf->rf_nrssi_slope = 0x400000 / (nrssi[0] - nrssi[1]); 1742 if (nrssi[0] <= -4) { 1743 rf->rf_nrssi[0] = nrssi[0]; 1744 rf->rf_nrssi[1] = nrssi[1]; 1745 } 1746 1747 #undef SAVE_RF_MAX 1748 #undef SAVE_PHY_MAX 1749 } 1750 1751 static void 1752 bwi_rf_set_nrssi_ofs_11g(struct bwi_mac *mac) 1753 { 1754 #define SAVE_RF_MAX 2 1755 #define SAVE_PHY_COMM_MAX 10 1756 #define SAVE_PHY6_MAX 8 1757 1758 static const uint16_t save_rf_regs[SAVE_RF_MAX] = 1759 { 0x7a, 0x43 }; 1760 static const uint16_t save_phy_comm_regs[SAVE_PHY_COMM_MAX] = { 1761 0x0001, 0x0811, 0x0812, 0x0814, 1762 0x0815, 0x005a, 0x0059, 0x0058, 1763 0x000a, 0x0003 1764 }; 1765 static const uint16_t save_phy6_regs[SAVE_PHY6_MAX] = { 1766 0x002e, 0x002f, 0x080f, 0x0810, 1767 0x0801, 0x0060, 0x0014, 0x0478 1768 }; 1769 1770 struct bwi_phy *phy = &mac->mac_phy; 1771 uint16_t save_rf[SAVE_RF_MAX]; 1772 uint16_t save_phy_comm[SAVE_PHY_COMM_MAX]; 1773 uint16_t save_phy6[SAVE_PHY6_MAX]; 1774 uint16_t rf7b = 0xffff; 1775 int16_t nrssi; 1776 int i, phy6_idx = 0; 1777 1778 for (i = 0; i < SAVE_PHY_COMM_MAX; ++i) 1779 save_phy_comm[i] = PHY_READ(mac, save_phy_comm_regs[i]); 1780 for (i = 0; i < SAVE_RF_MAX; ++i) 1781 save_rf[i] = RF_READ(mac, save_rf_regs[i]); 1782 1783 PHY_CLRBITS(mac, 0x429, 0x8000); 1784 PHY_FILT_SETBITS(mac, 0x1, 0x3fff, 0x4000); 1785 PHY_SETBITS(mac, 0x811, 0xc); 1786 PHY_FILT_SETBITS(mac, 0x812, 0xfff3, 0x4); 1787 PHY_CLRBITS(mac, 0x802, 0x3); 1788 1789 if (phy->phy_rev >= 6) { 1790 for (i = 0; i < SAVE_PHY6_MAX; ++i) 1791 save_phy6[i] = PHY_READ(mac, save_phy6_regs[i]); 1792 1793 PHY_WRITE(mac, 0x2e, 0); 1794 PHY_WRITE(mac, 0x2f, 0); 1795 PHY_WRITE(mac, 0x80f, 0); 1796 PHY_WRITE(mac, 0x810, 0); 1797 PHY_SETBITS(mac, 0x478, 0x100); 1798 PHY_SETBITS(mac, 0x801, 0x40); 1799 PHY_SETBITS(mac, 0x60, 0x40); 1800 PHY_SETBITS(mac, 0x14, 0x200); 1801 } 1802 1803 RF_SETBITS(mac, 0x7a, 0x70); 1804 RF_SETBITS(mac, 0x7a, 0x80); 1805 1806 DELAY(30); 1807 1808 nrssi = bwi_nrssi_11g(mac); 1809 if (nrssi == 31) { 1810 for (i = 7; i >= 4; --i) { 1811 RF_WRITE(mac, 0x7b, i); 1812 DELAY(20); 1813 nrssi = bwi_nrssi_11g(mac); 1814 if (nrssi < 31 && rf7b == 0xffff) 1815 rf7b = i; 1816 } 1817 if (rf7b == 0xffff) 1818 rf7b = 4; 1819 } else { 1820 struct bwi_gains gains; 1821 1822 RF_CLRBITS(mac, 0x7a, 0xff80); 1823 1824 PHY_SETBITS(mac, 0x814, 0x1); 1825 PHY_CLRBITS(mac, 0x815, 0x1); 1826 PHY_SETBITS(mac, 0x811, 0xc); 1827 PHY_SETBITS(mac, 0x812, 0xc); 1828 PHY_SETBITS(mac, 0x811, 0x30); 1829 PHY_SETBITS(mac, 0x812, 0x30); 1830 PHY_WRITE(mac, 0x5a, 0x480); 1831 PHY_WRITE(mac, 0x59, 0x810); 1832 PHY_WRITE(mac, 0x58, 0xd); 1833 if (phy->phy_version == 0) 1834 PHY_WRITE(mac, 0x3, 0x122); 1835 else 1836 PHY_SETBITS(mac, 0xa, 0x2000); 1837 PHY_SETBITS(mac, 0x814, 0x4); 1838 PHY_CLRBITS(mac, 0x815, 0x4); 1839 PHY_FILT_SETBITS(mac, 0x3, 0xff9f, 0x40); 1840 RF_SETBITS(mac, 0x7a, 0xf); 1841 1842 bzero(&gains, sizeof(gains)); 1843 gains.tbl_gain1 = 3; 1844 gains.tbl_gain2 = 0; 1845 gains.phy_gain = 1; 1846 bwi_set_gains(mac, &gains); 1847 1848 RF_FILT_SETBITS(mac, 0x43, 0xf0, 0xf); 1849 DELAY(30); 1850 1851 nrssi = bwi_nrssi_11g(mac); 1852 if (nrssi == -32) { 1853 for (i = 0; i < 4; ++i) { 1854 RF_WRITE(mac, 0x7b, i); 1855 DELAY(20); 1856 nrssi = bwi_nrssi_11g(mac); 1857 if (nrssi > -31 && rf7b == 0xffff) 1858 rf7b = i; 1859 } 1860 if (rf7b == 0xffff) 1861 rf7b = 3; 1862 } else { 1863 rf7b = 0; 1864 } 1865 } 1866 RF_WRITE(mac, 0x7b, rf7b); 1867 1868 /* 1869 * Restore saved RF/PHY registers 1870 */ 1871 if (phy->phy_rev >= 6) { 1872 for (phy6_idx = 0; phy6_idx < 4; ++phy6_idx) { 1873 PHY_WRITE(mac, save_phy6_regs[phy6_idx], 1874 save_phy6[phy6_idx]); 1875 } 1876 } 1877 1878 /* Saved PHY registers 0, 1, 2 are handled later */ 1879 for (i = 3; i < SAVE_PHY_COMM_MAX; ++i) 1880 PHY_WRITE(mac, save_phy_comm_regs[i], save_phy_comm[i]); 1881 1882 for (i = SAVE_RF_MAX - 1; i >= 0; --i) 1883 RF_WRITE(mac, save_rf_regs[i], save_rf[i]); 1884 1885 PHY_SETBITS(mac, 0x802, 0x3); 1886 PHY_SETBITS(mac, 0x429, 0x8000); 1887 1888 bwi_set_gains(mac, NULL); 1889 1890 if (phy->phy_rev >= 6) { 1891 for (; phy6_idx < SAVE_PHY6_MAX; ++phy6_idx) { 1892 PHY_WRITE(mac, save_phy6_regs[phy6_idx], 1893 save_phy6[phy6_idx]); 1894 } 1895 } 1896 1897 PHY_WRITE(mac, save_phy_comm_regs[0], save_phy_comm[0]); 1898 PHY_WRITE(mac, save_phy_comm_regs[2], save_phy_comm[2]); 1899 PHY_WRITE(mac, save_phy_comm_regs[1], save_phy_comm[1]); 1900 1901 #undef SAVE_RF_MAX 1902 #undef SAVE_PHY_COMM_MAX 1903 #undef SAVE_PHY6_MAX 1904 } 1905 1906 static void 1907 bwi_rf_calc_nrssi_slope_11g(struct bwi_mac *mac) 1908 { 1909 #define SAVE_RF_MAX 3 1910 #define SAVE_PHY_COMM_MAX 4 1911 #define SAVE_PHY3_MAX 8 1912 1913 static const uint16_t save_rf_regs[SAVE_RF_MAX] = 1914 { 0x7a, 0x52, 0x43 }; 1915 static const uint16_t save_phy_comm_regs[SAVE_PHY_COMM_MAX] = 1916 { 0x15, 0x5a, 0x59, 0x58 }; 1917 static const uint16_t save_phy3_regs[SAVE_PHY3_MAX] = { 1918 0x002e, 0x002f, 0x080f, 0x0810, 1919 0x0801, 0x0060, 0x0014, 0x0478 1920 }; 1921 1922 struct bwi_softc *sc = mac->mac_sc; 1923 struct bwi_phy *phy = &mac->mac_phy; 1924 struct bwi_rf *rf = &mac->mac_rf; 1925 uint16_t save_rf[SAVE_RF_MAX]; 1926 uint16_t save_phy_comm[SAVE_PHY_COMM_MAX]; 1927 uint16_t save_phy3[SAVE_PHY3_MAX]; 1928 uint16_t ant_div, bbp_atten, chan_ex; 1929 struct bwi_gains gains; 1930 int16_t nrssi[2]; 1931 int i, phy3_idx = 0; 1932 1933 if (rf->rf_rev >= 9) 1934 return; 1935 else if (rf->rf_rev == 8) 1936 bwi_rf_set_nrssi_ofs_11g(mac); 1937 1938 PHY_CLRBITS(mac, 0x429, 0x8000); 1939 PHY_CLRBITS(mac, 0x802, 0x3); 1940 1941 /* 1942 * Save RF/PHY registers for later restoration 1943 */ 1944 ant_div = CSR_READ_2(sc, BWI_RF_ANTDIV); 1945 CSR_SETBITS_2(sc, BWI_RF_ANTDIV, 0x8000); 1946 1947 for (i = 0; i < SAVE_RF_MAX; ++i) 1948 save_rf[i] = RF_READ(mac, save_rf_regs[i]); 1949 for (i = 0; i < SAVE_PHY_COMM_MAX; ++i) 1950 save_phy_comm[i] = PHY_READ(mac, save_phy_comm_regs[i]); 1951 1952 bbp_atten = CSR_READ_2(sc, BWI_BBP_ATTEN); 1953 chan_ex = CSR_READ_2(sc, BWI_RF_CHAN_EX); 1954 1955 if (phy->phy_rev >= 3) { 1956 for (i = 0; i < SAVE_PHY3_MAX; ++i) 1957 save_phy3[i] = PHY_READ(mac, save_phy3_regs[i]); 1958 1959 PHY_WRITE(mac, 0x2e, 0); 1960 PHY_WRITE(mac, 0x810, 0); 1961 1962 if (phy->phy_rev == 4 || phy->phy_rev == 6 || 1963 phy->phy_rev == 7) { 1964 PHY_SETBITS(mac, 0x478, 0x100); 1965 PHY_SETBITS(mac, 0x810, 0x40); 1966 } else if (phy->phy_rev == 3 || phy->phy_rev == 5) { 1967 PHY_CLRBITS(mac, 0x810, 0x40); 1968 } 1969 1970 PHY_SETBITS(mac, 0x60, 0x40); 1971 PHY_SETBITS(mac, 0x14, 0x200); 1972 } 1973 1974 /* 1975 * Calculate nrssi0 1976 */ 1977 RF_SETBITS(mac, 0x7a, 0x70); 1978 1979 bzero(&gains, sizeof(gains)); 1980 gains.tbl_gain1 = 0; 1981 gains.tbl_gain2 = 8; 1982 gains.phy_gain = 0; 1983 bwi_set_gains(mac, &gains); 1984 1985 RF_CLRBITS(mac, 0x7a, 0xff08); 1986 if (phy->phy_rev >= 2) { 1987 PHY_FILT_SETBITS(mac, 0x811, 0xffcf, 0x30); 1988 PHY_FILT_SETBITS(mac, 0x812, 0xffcf, 0x10); 1989 } 1990 1991 RF_SETBITS(mac, 0x7a, 0x80); 1992 DELAY(20); 1993 nrssi[0] = bwi_nrssi_11g(mac); 1994 1995 /* 1996 * Calculate nrssi1 1997 */ 1998 RF_CLRBITS(mac, 0x7a, 0xff80); 1999 if (phy->phy_version >= 2) 2000 PHY_FILT_SETBITS(mac, 0x3, 0xff9f, 0x40); 2001 CSR_SETBITS_2(sc, BWI_RF_CHAN_EX, 0x2000); 2002 2003 RF_SETBITS(mac, 0x7a, 0xf); 2004 PHY_WRITE(mac, 0x15, 0xf330); 2005 if (phy->phy_rev >= 2) { 2006 PHY_FILT_SETBITS(mac, 0x812, 0xffcf, 0x20); 2007 PHY_FILT_SETBITS(mac, 0x811, 0xffcf, 0x20); 2008 } 2009 2010 bzero(&gains, sizeof(gains)); 2011 gains.tbl_gain1 = 3; 2012 gains.tbl_gain2 = 0; 2013 gains.phy_gain = 1; 2014 bwi_set_gains(mac, &gains); 2015 2016 if (rf->rf_rev == 8) { 2017 RF_WRITE(mac, 0x43, 0x1f); 2018 } else { 2019 RF_FILT_SETBITS(mac, 0x52, 0xff0f, 0x60); 2020 RF_FILT_SETBITS(mac, 0x43, 0xfff0, 0x9); 2021 } 2022 PHY_WRITE(mac, 0x5a, 0x480); 2023 PHY_WRITE(mac, 0x59, 0x810); 2024 PHY_WRITE(mac, 0x58, 0xd); 2025 DELAY(20); 2026 2027 nrssi[1] = bwi_nrssi_11g(mac); 2028 2029 /* 2030 * Install calculated narrow RSSI values 2031 */ 2032 if (nrssi[1] == nrssi[0]) 2033 rf->rf_nrssi_slope = 0x10000; 2034 else 2035 rf->rf_nrssi_slope = 0x400000 / (nrssi[0] - nrssi[1]); 2036 if (nrssi[0] >= -4) { 2037 rf->rf_nrssi[0] = nrssi[1]; 2038 rf->rf_nrssi[1] = nrssi[0]; 2039 } 2040 2041 /* 2042 * Restore saved RF/PHY registers 2043 */ 2044 if (phy->phy_rev >= 3) { 2045 for (phy3_idx = 0; phy3_idx < 4; ++phy3_idx) { 2046 PHY_WRITE(mac, save_phy3_regs[phy3_idx], 2047 save_phy3[phy3_idx]); 2048 } 2049 } 2050 if (phy->phy_rev >= 2) { 2051 PHY_CLRBITS(mac, 0x812, 0x30); 2052 PHY_CLRBITS(mac, 0x811, 0x30); 2053 } 2054 2055 for (i = 0; i < SAVE_RF_MAX; ++i) 2056 RF_WRITE(mac, save_rf_regs[i], save_rf[i]); 2057 2058 CSR_WRITE_2(sc, BWI_RF_ANTDIV, ant_div); 2059 CSR_WRITE_2(sc, BWI_BBP_ATTEN, bbp_atten); 2060 CSR_WRITE_2(sc, BWI_RF_CHAN_EX, chan_ex); 2061 2062 for (i = 0; i < SAVE_PHY_COMM_MAX; ++i) 2063 PHY_WRITE(mac, save_phy_comm_regs[i], save_phy_comm[i]); 2064 2065 bwi_rf_work_around(mac, rf->rf_curchan); 2066 PHY_SETBITS(mac, 0x802, 0x3); 2067 bwi_set_gains(mac, NULL); 2068 PHY_SETBITS(mac, 0x429, 0x8000); 2069 2070 if (phy->phy_rev >= 3) { 2071 for (; phy3_idx < SAVE_PHY3_MAX; ++phy3_idx) { 2072 PHY_WRITE(mac, save_phy3_regs[phy3_idx], 2073 save_phy3[phy3_idx]); 2074 } 2075 } 2076 2077 bwi_rf_init_sw_nrssi_table(mac); 2078 bwi_rf_set_nrssi_thr_11g(mac); 2079 2080 #undef SAVE_RF_MAX 2081 #undef SAVE_PHY_COMM_MAX 2082 #undef SAVE_PHY3_MAX 2083 } 2084 2085 static void 2086 bwi_rf_init_sw_nrssi_table(struct bwi_mac *mac) 2087 { 2088 struct bwi_rf *rf = &mac->mac_rf; 2089 int d, i; 2090 2091 d = 0x1f - rf->rf_nrssi[0]; 2092 for (i = 0; i < BWI_NRSSI_TBLSZ; ++i) { 2093 int val; 2094 2095 val = (((i - d) * rf->rf_nrssi_slope) / 0x10000) + 0x3a; 2096 if (val < 0) 2097 val = 0; 2098 else if (val > 0x3f) 2099 val = 0x3f; 2100 2101 rf->rf_nrssi_table[i] = val; 2102 } 2103 } 2104 2105 void 2106 bwi_rf_init_hw_nrssi_table(struct bwi_mac *mac, uint16_t adjust) 2107 { 2108 int i; 2109 2110 for (i = 0; i < BWI_NRSSI_TBLSZ; ++i) { 2111 int16_t val; 2112 2113 val = bwi_nrssi_read(mac, i); 2114 2115 val -= adjust; 2116 if (val < -32) 2117 val = -32; 2118 else if (val > 31) 2119 val = 31; 2120 2121 bwi_nrssi_write(mac, i, val); 2122 } 2123 } 2124 2125 static void 2126 bwi_rf_set_nrssi_thr_11b(struct bwi_mac *mac) 2127 { 2128 struct bwi_rf *rf = &mac->mac_rf; 2129 int32_t thr; 2130 2131 if (rf->rf_type != BWI_RF_T_BCM2050 || 2132 (mac->mac_sc->sc_card_flags & BWI_CARD_F_SW_NRSSI) == 0) 2133 return; 2134 2135 /* 2136 * Calculate nrssi threshold 2137 */ 2138 if (rf->rf_rev >= 6) { 2139 thr = (rf->rf_nrssi[1] - rf->rf_nrssi[0]) * 32; 2140 thr += 20 * (rf->rf_nrssi[0] + 1); 2141 thr /= 40; 2142 } else { 2143 thr = rf->rf_nrssi[1] - 5; 2144 } 2145 if (thr < 0) 2146 thr = 0; 2147 else if (thr > 0x3e) 2148 thr = 0x3e; 2149 2150 PHY_READ(mac, BWI_PHYR_NRSSI_THR_11B); /* dummy read */ 2151 PHY_WRITE(mac, BWI_PHYR_NRSSI_THR_11B, (((uint16_t)thr) << 8) | 0x1c); 2152 2153 if (rf->rf_rev >= 6) { 2154 PHY_WRITE(mac, 0x87, 0xe0d); 2155 PHY_WRITE(mac, 0x86, 0xc0b); 2156 PHY_WRITE(mac, 0x85, 0xa09); 2157 PHY_WRITE(mac, 0x84, 0x808); 2158 PHY_WRITE(mac, 0x83, 0x808); 2159 PHY_WRITE(mac, 0x82, 0x604); 2160 PHY_WRITE(mac, 0x81, 0x302); 2161 PHY_WRITE(mac, 0x80, 0x100); 2162 } 2163 } 2164 2165 static __inline int32_t 2166 _nrssi_threshold(const struct bwi_rf *rf, int32_t val) 2167 { 2168 val *= (rf->rf_nrssi[1] - rf->rf_nrssi[0]); 2169 val += (rf->rf_nrssi[0] << 6); 2170 if (val < 32) 2171 val += 31; 2172 else 2173 val += 32; 2174 val >>= 6; 2175 if (val < -31) 2176 val = -31; 2177 else if (val > 31) 2178 val = 31; 2179 return val; 2180 } 2181 2182 static void 2183 bwi_rf_set_nrssi_thr_11g(struct bwi_mac *mac) 2184 { 2185 int32_t thr1, thr2; 2186 uint16_t thr; 2187 2188 /* 2189 * Find the two nrssi thresholds 2190 */ 2191 if ((mac->mac_phy.phy_flags & BWI_PHY_F_LINKED) == 0 || 2192 (mac->mac_sc->sc_card_flags & BWI_CARD_F_SW_NRSSI) == 0) { 2193 int16_t nrssi; 2194 2195 nrssi = bwi_nrssi_read(mac, 0x20); 2196 if (nrssi >= 32) 2197 nrssi -= 64; 2198 2199 if (nrssi < 3) { 2200 thr1 = 0x2b; 2201 thr2 = 0x27; 2202 } else { 2203 thr1 = 0x2d; 2204 thr2 = 0x2b; 2205 } 2206 } else { 2207 /* TODO Interfere mode */ 2208 thr1 = _nrssi_threshold(&mac->mac_rf, 0x11); 2209 thr2 = _nrssi_threshold(&mac->mac_rf, 0xe); 2210 } 2211 2212 #define NRSSI_THR1_MASK __BITS(5, 0) 2213 #define NRSSI_THR2_MASK __BITS(11, 6) 2214 2215 thr = __SHIFTIN((uint32_t)thr1, NRSSI_THR1_MASK) | 2216 __SHIFTIN((uint32_t)thr2, NRSSI_THR2_MASK); 2217 PHY_FILT_SETBITS(mac, BWI_PHYR_NRSSI_THR_11G, 0xf000, thr); 2218 2219 #undef NRSSI_THR1_MASK 2220 #undef NRSSI_THR2_MASK 2221 } 2222 2223 void 2224 bwi_rf_clear_tssi(struct bwi_mac *mac) 2225 { 2226 /* XXX use function pointer */ 2227 if (mac->mac_phy.phy_mode == IEEE80211_MODE_11A) { 2228 /* TODO:11A */ 2229 } else { 2230 uint16_t val; 2231 int i; 2232 2233 val = __SHIFTIN(BWI_INVALID_TSSI, BWI_LO_TSSI_MASK) | 2234 __SHIFTIN(BWI_INVALID_TSSI, BWI_HI_TSSI_MASK); 2235 2236 for (i = 0; i < 2; ++i) { 2237 MOBJ_WRITE_2(mac, BWI_COMM_MOBJ, 2238 BWI_COMM_MOBJ_TSSI_DS + (i * 2), val); 2239 } 2240 2241 for (i = 0; i < 2; ++i) { 2242 MOBJ_WRITE_2(mac, BWI_COMM_MOBJ, 2243 BWI_COMM_MOBJ_TSSI_OFDM + (i * 2), val); 2244 } 2245 } 2246 } 2247 2248 void 2249 bwi_rf_clear_state(struct bwi_rf *rf) 2250 { 2251 int i; 2252 2253 rf->rf_flags &= ~BWI_RF_CLEAR_FLAGS; 2254 bzero(rf->rf_lo, sizeof(rf->rf_lo)); 2255 bzero(rf->rf_lo_used, sizeof(rf->rf_lo_used)); 2256 2257 rf->rf_nrssi_slope = 0; 2258 rf->rf_nrssi[0] = BWI_INVALID_NRSSI; 2259 rf->rf_nrssi[1] = BWI_INVALID_NRSSI; 2260 2261 for (i = 0; i < BWI_NRSSI_TBLSZ; ++i) 2262 rf->rf_nrssi_table[i] = i; 2263 2264 rf->rf_lo_gain = 0; 2265 rf->rf_rx_gain = 0; 2266 2267 bcopy(rf->rf_txpower_map0, rf->rf_txpower_map, 2268 sizeof(rf->rf_txpower_map)); 2269 rf->rf_idle_tssi = rf->rf_idle_tssi0; 2270 } 2271 2272 static void 2273 bwi_rf_on_11a(struct bwi_mac *mac) 2274 { 2275 /* TODO:11A */ 2276 } 2277 2278 static void 2279 bwi_rf_on_11bg(struct bwi_mac *mac) 2280 { 2281 struct bwi_phy *phy = &mac->mac_phy; 2282 2283 PHY_WRITE(mac, 0x15, 0x8000); 2284 PHY_WRITE(mac, 0x15, 0xcc00); 2285 if (phy->phy_flags & BWI_PHY_F_LINKED) 2286 PHY_WRITE(mac, 0x15, 0xc0); 2287 else 2288 PHY_WRITE(mac, 0x15, 0); 2289 2290 bwi_rf_set_chan(mac, 6 /* XXX */, 1); 2291 } 2292 2293 void 2294 bwi_rf_set_ant_mode(struct bwi_mac *mac, int ant_mode) 2295 { 2296 struct bwi_softc *sc = mac->mac_sc; 2297 struct bwi_phy *phy = &mac->mac_phy; 2298 uint16_t val; 2299 2300 KASSERT(ant_mode == BWI_ANT_MODE_0 || 2301 ant_mode == BWI_ANT_MODE_1 || 2302 ant_mode == BWI_ANT_MODE_AUTO, ("ant_mode %d", ant_mode)); 2303 2304 HFLAGS_CLRBITS(mac, BWI_HFLAG_AUTO_ANTDIV); 2305 2306 if (phy->phy_mode == IEEE80211_MODE_11B) { 2307 /* NOTE: v4/v3 conflicts, take v3 */ 2308 if (mac->mac_rev == 2) 2309 val = BWI_ANT_MODE_AUTO; 2310 else 2311 val = ant_mode; 2312 val <<= 7; 2313 PHY_FILT_SETBITS(mac, 0x3e2, 0xfe7f, val); 2314 } else { /* 11a/g */ 2315 /* XXX reg/value naming */ 2316 val = ant_mode << 7; 2317 PHY_FILT_SETBITS(mac, 0x401, 0x7e7f, val); 2318 2319 if (ant_mode == BWI_ANT_MODE_AUTO) 2320 PHY_CLRBITS(mac, 0x42b, 0x100); 2321 2322 if (phy->phy_mode == IEEE80211_MODE_11A) { 2323 /* TODO:11A */ 2324 } else { /* 11g */ 2325 if (ant_mode == BWI_ANT_MODE_AUTO) 2326 PHY_SETBITS(mac, 0x48c, 0x2000); 2327 else 2328 PHY_CLRBITS(mac, 0x48c, 0x2000); 2329 2330 if (phy->phy_rev >= 2) { 2331 PHY_SETBITS(mac, 0x461, 0x10); 2332 PHY_FILT_SETBITS(mac, 0x4ad, 0xff00, 0x15); 2333 if (phy->phy_rev == 2) { 2334 PHY_WRITE(mac, 0x427, 0x8); 2335 } else { 2336 PHY_FILT_SETBITS(mac, 0x427, 2337 0xff00, 0x8); 2338 } 2339 2340 if (phy->phy_rev >= 6) 2341 PHY_WRITE(mac, 0x49b, 0xdc); 2342 } 2343 } 2344 } 2345 2346 /* XXX v4 set AUTO_ANTDIV unconditionally */ 2347 if (ant_mode == BWI_ANT_MODE_AUTO) 2348 HFLAGS_SETBITS(mac, BWI_HFLAG_AUTO_ANTDIV); 2349 2350 val = ant_mode << 8; 2351 MOBJ_FILT_SETBITS_2(mac, BWI_COMM_MOBJ, BWI_COMM_MOBJ_TX_BEACON, 2352 0xfc3f, val); 2353 MOBJ_FILT_SETBITS_2(mac, BWI_COMM_MOBJ, BWI_COMM_MOBJ_TX_ACK, 2354 0xfc3f, val); 2355 MOBJ_FILT_SETBITS_2(mac, BWI_COMM_MOBJ, BWI_COMM_MOBJ_TX_PROBE_RESP, 2356 0xfc3f, val); 2357 2358 /* XXX what's these */ 2359 if (phy->phy_mode == IEEE80211_MODE_11B) 2360 CSR_SETBITS_2(sc, 0x5e, 0x4); 2361 2362 CSR_WRITE_4(sc, 0x100, 0x1000000); 2363 if (mac->mac_rev < 5) 2364 CSR_WRITE_4(sc, 0x10c, 0x1000000); 2365 2366 mac->mac_rf.rf_ant_mode = ant_mode; 2367 } 2368 2369 int 2370 bwi_rf_get_latest_tssi(struct bwi_mac *mac, int8_t tssi[], uint16_t ofs) 2371 { 2372 int i; 2373 2374 for (i = 0; i < 4; ) { 2375 uint16_t val; 2376 2377 val = MOBJ_READ_2(mac, BWI_COMM_MOBJ, ofs + i); 2378 tssi[i++] = (int8_t)__SHIFTOUT(val, BWI_LO_TSSI_MASK); 2379 tssi[i++] = (int8_t)__SHIFTOUT(val, BWI_HI_TSSI_MASK); 2380 } 2381 2382 for (i = 0; i < 4; ++i) { 2383 if (tssi[i] == BWI_INVALID_TSSI) 2384 return EINVAL; 2385 } 2386 return 0; 2387 } 2388 2389 int 2390 bwi_rf_tssi2dbm(struct bwi_mac *mac, int8_t tssi, int8_t *txpwr) 2391 { 2392 struct bwi_rf *rf = &mac->mac_rf; 2393 int pwr_idx; 2394 2395 pwr_idx = rf->rf_idle_tssi + (int)tssi - rf->rf_base_tssi; 2396 #if 0 2397 if (pwr_idx < 0 || pwr_idx >= BWI_TSSI_MAX) 2398 return EINVAL; 2399 #else 2400 if (pwr_idx < 0) 2401 pwr_idx = 0; 2402 else if (pwr_idx >= BWI_TSSI_MAX) 2403 pwr_idx = BWI_TSSI_MAX - 1; 2404 #endif 2405 2406 *txpwr = rf->rf_txpower_map[pwr_idx]; 2407 return 0; 2408 } 2409 2410 static int 2411 bwi_rf_calc_rssi_bcm2050(struct bwi_mac *mac, const struct bwi_rxbuf_hdr *hdr) 2412 { 2413 uint16_t flags1, flags3; 2414 int rssi, lna_gain; 2415 2416 rssi = hdr->rxh_rssi; 2417 flags1 = le16toh(hdr->rxh_flags1); 2418 flags3 = le16toh(hdr->rxh_flags3); 2419 2420 if (flags1 & BWI_RXH_F1_OFDM) { 2421 if (rssi > 127) 2422 rssi -= 256; 2423 if (flags3 & BWI_RXH_F3_BCM2050_RSSI) 2424 rssi += 17; 2425 else 2426 rssi -= 4; 2427 return rssi; 2428 } 2429 2430 if (mac->mac_sc->sc_card_flags & BWI_CARD_F_SW_NRSSI) { 2431 struct bwi_rf *rf = &mac->mac_rf; 2432 2433 if (rssi >= BWI_NRSSI_TBLSZ) 2434 rssi = BWI_NRSSI_TBLSZ - 1; 2435 2436 rssi = ((31 - (int)rf->rf_nrssi_table[rssi]) * -131) / 128; 2437 rssi -= 67; 2438 } else { 2439 rssi = ((31 - rssi) * -149) / 128; 2440 rssi -= 68; 2441 } 2442 2443 if (mac->mac_phy.phy_mode != IEEE80211_MODE_11G) 2444 return rssi; 2445 2446 if (flags3 & BWI_RXH_F3_BCM2050_RSSI) 2447 rssi += 20; 2448 2449 lna_gain = __SHIFTOUT(le16toh(hdr->rxh_phyinfo), 2450 BWI_RXH_PHYINFO_LNAGAIN); 2451 DPRINTF(mac->mac_sc, BWI_DBG_RF | BWI_DBG_RX, 2452 "lna_gain %d, phyinfo 0x%04x\n", 2453 lna_gain, le16toh(hdr->rxh_phyinfo)); 2454 switch (lna_gain) { 2455 case 0: 2456 rssi += 27; 2457 break; 2458 case 1: 2459 rssi += 6; 2460 break; 2461 case 2: 2462 rssi += 12; 2463 break; 2464 case 3: 2465 /* 2466 * XXX 2467 * According to v3 spec, we should do _nothing_ here, 2468 * but it seems that the result RSSI will be too low 2469 * (relative to what ath(4) says). Raise it a little 2470 * bit. 2471 */ 2472 rssi += 5; 2473 break; 2474 default: 2475 panic("impossible lna gain %d", lna_gain); 2476 } 2477 return rssi; 2478 } 2479 2480 static int 2481 bwi_rf_calc_rssi_bcm2053(struct bwi_mac *mac, const struct bwi_rxbuf_hdr *hdr) 2482 { 2483 uint16_t flags1; 2484 int rssi; 2485 2486 rssi = (((int)hdr->rxh_rssi - 11) * 103) / 64; 2487 2488 flags1 = le16toh(hdr->rxh_flags1); 2489 if (flags1 & BWI_RXH_F1_BCM2053_RSSI) 2490 rssi -= 109; 2491 else 2492 rssi -= 83; 2493 return rssi; 2494 } 2495 2496 static int 2497 bwi_rf_calc_rssi_bcm2060(struct bwi_mac *mac, const struct bwi_rxbuf_hdr *hdr) 2498 { 2499 int rssi; 2500 2501 rssi = hdr->rxh_rssi; 2502 if (rssi > 127) 2503 rssi -= 256; 2504 return rssi; 2505 } 2506 2507 static int 2508 bwi_rf_calc_noise_bcm2050(struct bwi_mac *mac) 2509 { 2510 uint16_t val; 2511 int noise; 2512 2513 val = MOBJ_READ_2(mac, BWI_COMM_MOBJ, BWI_COMM_MOBJ_RF_NOISE); 2514 noise = (int)val; /* XXX check bounds? */ 2515 2516 if (mac->mac_sc->sc_card_flags & BWI_CARD_F_SW_NRSSI) { 2517 struct bwi_rf *rf = &mac->mac_rf; 2518 2519 if (noise >= BWI_NRSSI_TBLSZ) 2520 noise = BWI_NRSSI_TBLSZ - 1; 2521 2522 noise = ((31 - (int)rf->rf_nrssi_table[noise]) * -131) / 128; 2523 noise -= 67; 2524 } else { 2525 noise = ((31 - noise) * -149) / 128; 2526 noise -= 68; 2527 } 2528 return noise; 2529 } 2530 2531 static int 2532 bwi_rf_calc_noise_bcm2053(struct bwi_mac *mac) 2533 { 2534 uint16_t val; 2535 int noise; 2536 2537 val = MOBJ_READ_2(mac, BWI_COMM_MOBJ, BWI_COMM_MOBJ_RF_NOISE); 2538 noise = (int)val; /* XXX check bounds? */ 2539 2540 noise = ((noise - 11) * 103) / 64; 2541 noise -= 109; 2542 return noise; 2543 } 2544 2545 static int 2546 bwi_rf_calc_noise_bcm2060(struct bwi_mac *mac) 2547 { 2548 /* XXX Dont know how to calc */ 2549 return (BWI_NOISE_FLOOR); 2550 } 2551 2552 static uint16_t 2553 bwi_rf_lo_measure_11b(struct bwi_mac *mac) 2554 { 2555 uint16_t val; 2556 int i; 2557 2558 val = 0; 2559 for (i = 0; i < 10; ++i) { 2560 PHY_WRITE(mac, 0x15, 0xafa0); 2561 DELAY(1); 2562 PHY_WRITE(mac, 0x15, 0xefa0); 2563 DELAY(10); 2564 PHY_WRITE(mac, 0x15, 0xffa0); 2565 DELAY(40); 2566 2567 val += PHY_READ(mac, 0x2c); 2568 } 2569 return val; 2570 } 2571 2572 static void 2573 bwi_rf_lo_update_11b(struct bwi_mac *mac) 2574 { 2575 struct bwi_softc *sc = mac->mac_sc; 2576 struct bwi_rf *rf = &mac->mac_rf; 2577 struct rf_saveregs regs; 2578 uint16_t rf_val, phy_val, min_val, val; 2579 uint16_t rf52, bphy_ctrl; 2580 int i; 2581 2582 DPRINTF(sc, BWI_DBG_RF | BWI_DBG_INIT, "%s enter\n", __func__); 2583 2584 bzero(®s, sizeof(regs)); 2585 bphy_ctrl = 0; 2586 2587 /* 2588 * Save RF/PHY registers for later restoration 2589 */ 2590 SAVE_PHY_REG(mac, ®s, 15); 2591 rf52 = RF_READ(mac, 0x52) & 0xfff0; 2592 if (rf->rf_type == BWI_RF_T_BCM2050) { 2593 SAVE_PHY_REG(mac, ®s, 0a); 2594 SAVE_PHY_REG(mac, ®s, 2a); 2595 SAVE_PHY_REG(mac, ®s, 35); 2596 SAVE_PHY_REG(mac, ®s, 03); 2597 SAVE_PHY_REG(mac, ®s, 01); 2598 SAVE_PHY_REG(mac, ®s, 30); 2599 2600 SAVE_RF_REG(mac, ®s, 43); 2601 SAVE_RF_REG(mac, ®s, 7a); 2602 2603 bphy_ctrl = CSR_READ_2(sc, BWI_BPHY_CTRL); 2604 2605 SAVE_RF_REG(mac, ®s, 52); 2606 regs.rf_52 &= 0xf0; 2607 2608 PHY_WRITE(mac, 0x30, 0xff); 2609 CSR_WRITE_2(sc, BWI_PHY_CTRL, 0x3f3f); 2610 PHY_WRITE(mac, 0x35, regs.phy_35 & 0xff7f); 2611 RF_WRITE(mac, 0x7a, regs.rf_7a & 0xfff0); 2612 } 2613 2614 PHY_WRITE(mac, 0x15, 0xb000); 2615 2616 if (rf->rf_type == BWI_RF_T_BCM2050) { 2617 PHY_WRITE(mac, 0x2b, 0x203); 2618 PHY_WRITE(mac, 0x2a, 0x8a3); 2619 } else { 2620 PHY_WRITE(mac, 0x2b, 0x1402); 2621 } 2622 2623 /* 2624 * Setup RF signal 2625 */ 2626 rf_val = 0; 2627 min_val = UINT16_MAX; 2628 2629 for (i = 0; i < 4; ++i) { 2630 RF_WRITE(mac, 0x52, rf52 | i); 2631 bwi_rf_lo_measure_11b(mac); /* Ignore return value */ 2632 } 2633 for (i = 0; i < 10; ++i) { 2634 RF_WRITE(mac, 0x52, rf52 | i); 2635 2636 val = bwi_rf_lo_measure_11b(mac) / 10; 2637 if (val < min_val) { 2638 min_val = val; 2639 rf_val = i; 2640 } 2641 } 2642 RF_WRITE(mac, 0x52, rf52 | rf_val); 2643 2644 /* 2645 * Setup PHY signal 2646 */ 2647 phy_val = 0; 2648 min_val = UINT16_MAX; 2649 2650 for (i = -4; i < 5; i += 2) { 2651 int j; 2652 2653 for (j = -4; j < 5; j += 2) { 2654 uint16_t phy2f; 2655 2656 phy2f = (0x100 * i) + j; 2657 if (j < 0) 2658 phy2f += 0x100; 2659 PHY_WRITE(mac, 0x2f, phy2f); 2660 2661 val = bwi_rf_lo_measure_11b(mac) / 10; 2662 if (val < min_val) { 2663 min_val = val; 2664 phy_val = phy2f; 2665 } 2666 } 2667 } 2668 PHY_WRITE(mac, 0x2f, phy_val + 0x101); 2669 2670 /* 2671 * Restore saved RF/PHY registers 2672 */ 2673 if (rf->rf_type == BWI_RF_T_BCM2050) { 2674 RESTORE_PHY_REG(mac, ®s, 0a); 2675 RESTORE_PHY_REG(mac, ®s, 2a); 2676 RESTORE_PHY_REG(mac, ®s, 35); 2677 RESTORE_PHY_REG(mac, ®s, 03); 2678 RESTORE_PHY_REG(mac, ®s, 01); 2679 RESTORE_PHY_REG(mac, ®s, 30); 2680 2681 RESTORE_RF_REG(mac, ®s, 43); 2682 RESTORE_RF_REG(mac, ®s, 7a); 2683 2684 RF_FILT_SETBITS(mac, 0x52, 0xf, regs.rf_52); 2685 2686 CSR_WRITE_2(sc, BWI_BPHY_CTRL, bphy_ctrl); 2687 } 2688 RESTORE_PHY_REG(mac, ®s, 15); 2689 2690 bwi_rf_work_around(mac, rf->rf_curchan); 2691 } 2692