Lines Matching +full:0 +full:x80200008
118 { 0x8086, 0x4222, 0x0, "Intel(R) PRO/Wireless 3945ABG" },
119 { 0x8086, 0x4227, 0x0, "Intel(R) PRO/Wireless 3945ABG" },
121 { 0x8086, 0x4222, 0x1005, "Intel(R) PRO/Wireless 3945BG" },
122 { 0x8086, 0x4222, 0x1034, "Intel(R) PRO/Wireless 3945BG" },
123 { 0x8086, 0x4227, 0x1014, "Intel(R) PRO/Wireless 3945BG" },
124 { 0x8086, 0x4222, 0x1044, "Intel(R) PRO/Wireless 3945BG" },
125 { 0, 0, 0, NULL }
344 if (error != 0) in wpi_attach()
345 sc->sc_debug = 0; in wpi_attach()
347 sc->sc_debug = 0; in wpi_attach()
357 if (error != 0) { in wpi_attach()
364 * this is one such card. A 0x0 in the subdevice table indicates in wpi_attach()
371 supportsa = 0; in wpi_attach()
378 pci_write_config(dev, 0x41, 0, 1); in wpi_attach()
383 rid = PCIR_BAR(0); in wpi_attach()
394 if (pci_alloc_msi(dev, &rid) == 0) in wpi_attach()
397 rid = 0; in wpi_attach()
400 (rid != 0 ? 0 : RF_SHAREABLE)); in wpi_attach()
415 if ((error = wpi_alloc_fwmem(sc)) != 0) { in wpi_attach()
423 if ((error = wpi_alloc_shared(sc)) != 0) { in wpi_attach()
429 for (i = 0; i < WPI_DRV_NTXQUEUES; i++) { in wpi_attach()
430 if ((error = wpi_alloc_tx_ring(sc, &sc->txq[i], i)) != 0) { in wpi_attach()
439 if ((error = wpi_alloc_rx_ring(sc)) != 0) { in wpi_attach()
446 WPI_WRITE(sc, WPI_INT, 0xffffffff); in wpi_attach()
478 if ((error = wpi_read_eeprom(sc, ic->ic_macaddr)) != 0) { in wpi_attach()
491 ((sc->rev & 0xf0) == 0xd0) ? 'D': '?'); in wpi_attach()
531 callout_init_mtx(&sc->calib_to, &sc->rxon_mtx, 0); in wpi_attach()
532 callout_init_mtx(&sc->scan_timeout, &sc->rxon_mtx, 0); in wpi_attach()
533 callout_init_mtx(&sc->tx_timeout, &sc->txq_state_mtx, 0); in wpi_attach()
534 callout_init_mtx(&sc->watchdog_rfkill, &sc->sc_mtx, 0); in wpi_attach()
535 TASK_INIT(&sc->sc_radiooff_task, 0, wpi_radio_off, sc); in wpi_attach()
536 TASK_INIT(&sc->sc_radioon_task, 0, wpi_radio_on, sc); in wpi_attach()
545 if (error != 0) { in wpi_attach()
560 return 0; in wpi_attach()
603 cmd->ofdm_mask = 0xff; in wpi_init_beacon()
604 cmd->cck_mask = 0x0f; in wpi_init_beacon()
709 if (sc->txq[0].data_dmat) { in wpi_detach()
711 for (qid = 0; qid < WPI_DRV_NTXQUEUES; qid++) in wpi_detach()
732 return 0; in wpi_detach()
741 return 0; in wpi_shutdown()
751 return 0; in wpi_suspend()
761 pci_write_config(dev, 0x41, 0, 1); in wpi_resume()
764 return 0; in wpi_resume()
779 for (ntries = 0; ntries < 1000; ntries++) { in wpi_nic_lock()
783 return 0; in wpi_nic_lock()
833 for (; count != 0; count--, data++, addr += 4) in wpi_prph_write_region_4()
849 for (; count > 0; count--, addr += 4) in wpi_mem_read_region_4()
862 if ((error = wpi_nic_lock(sc)) != 0) in wpi_read_prom_data()
865 for (; count > 0; count -= 2, addr++) { in wpi_read_prom_data()
867 for (ntries = 0; ntries < 10; ntries++) { in wpi_read_prom_data()
875 "timeout reading ROM at 0x%x\n", addr); in wpi_read_prom_data()
887 return 0; in wpi_read_prom_data()
893 if (error != 0) in wpi_dma_map_addr()
896 *(bus_addr_t *)arg = segs[0].ds_addr; in wpi_dma_map_addr()
913 0, BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL, size, in wpi_dma_contig_alloc()
914 1, size, 0, NULL, NULL, &dma->tag); in wpi_dma_contig_alloc()
915 if (error != 0) in wpi_dma_contig_alloc()
920 if (error != 0) in wpi_dma_contig_alloc()
925 if (error != 0) in wpi_dma_contig_alloc()
933 return 0; in wpi_dma_contig_alloc()
996 ring->cur = 0; in wpi_alloc_rx_ring()
997 ring->update = 0; in wpi_alloc_rx_ring()
1005 if (error != 0) { in wpi_alloc_rx_ring()
1013 error = bus_dma_tag_create(bus_get_dma_tag(sc->sc_dev), 1, 0, in wpi_alloc_rx_ring()
1015 MJUMPAGESIZE, 1, MJUMPAGESIZE, 0, NULL, NULL, &ring->data_dmat); in wpi_alloc_rx_ring()
1016 if (error != 0) { in wpi_alloc_rx_ring()
1026 for (i = 0; i < WPI_RX_RING_COUNT; i++) { in wpi_alloc_rx_ring()
1030 error = bus_dmamap_create(ring->data_dmat, 0, &data->map); in wpi_alloc_rx_ring()
1031 if (error != 0) { in wpi_alloc_rx_ring()
1049 if (error != 0 && error != EFBIG) { in wpi_alloc_rx_ring()
1065 return 0; in wpi_alloc_rx_ring()
1085 if (ring->update != 0) { in wpi_update_rx_ring_ps()
1111 if (wpi_nic_lock(sc) == 0) { in wpi_reset_rx_ring()
1112 WPI_WRITE(sc, WPI_FH_RX_CONFIG, 0); in wpi_reset_rx_ring()
1113 for (ntries = 0; ntries < 1000; ntries++) { in wpi_reset_rx_ring()
1122 ring->cur = 0; in wpi_reset_rx_ring()
1123 ring->update = 0; in wpi_reset_rx_ring()
1136 for (i = 0; i < WPI_RX_RING_COUNT; i++) { in wpi_free_rx_ring()
1163 ring->queued = 0; in wpi_alloc_tx_ring()
1164 ring->cur = 0; in wpi_alloc_tx_ring()
1165 ring->pending = 0; in wpi_alloc_tx_ring()
1166 ring->update = 0; in wpi_alloc_tx_ring()
1174 if (error != 0) { in wpi_alloc_tx_ring()
1189 if (error != 0) { in wpi_alloc_tx_ring()
1196 error = bus_dma_tag_create(bus_get_dma_tag(sc->sc_dev), 1, 0, in wpi_alloc_tx_ring()
1198 WPI_MAX_SCATTER - 1, MCLBYTES, 0, NULL, NULL, &ring->data_dmat); in wpi_alloc_tx_ring()
1199 if (error != 0) { in wpi_alloc_tx_ring()
1207 for (i = 0; i < WPI_TX_RING_COUNT; i++) { in wpi_alloc_tx_ring()
1213 error = bus_dmamap_create(ring->data_dmat, 0, &data->map); in wpi_alloc_tx_ring()
1214 if (error != 0) { in wpi_alloc_tx_ring()
1224 return 0; in wpi_alloc_tx_ring()
1241 if (ring->update != 0) { in wpi_update_tx_ring_ps()
1264 for (i = 0; i < WPI_TX_RING_COUNT; i++) { in wpi_reset_tx_ring()
1280 memset(ring->desc, 0, ring->desc_dma.size); in wpi_reset_tx_ring()
1283 ring->queued = 0; in wpi_reset_tx_ring()
1284 ring->cur = 0; in wpi_reset_tx_ring()
1285 ring->pending = 0; in wpi_reset_tx_ring()
1286 ring->update = 0; in wpi_reset_tx_ring()
1299 for (i = 0; i < WPI_TX_RING_COUNT; i++) { in wpi_free_tx_ring()
1324 if ((error = res) != 0) \ in wpi_read_eeprom()
1326 } while (0) in wpi_read_eeprom()
1333 if ((error = wpi_apm_init(sc)) != 0) { in wpi_read_eeprom()
1340 if ((WPI_READ(sc, WPI_EEPROM_GP) & 0x6) == 0) { in wpi_read_eeprom()
1369 for (i = 0; i < WPI_CHAN_BANDS_COUNT; i++) in wpi_read_eeprom()
1373 for (i = 0; i < WPI_POWER_GROUPS_COUNT; i++) in wpi_read_eeprom()
1393 nflags = 0; in wpi_eeprom_channel_flags()
1394 if ((channel->flags & WPI_EEPROM_CHAN_ACTIVE) == 0) in wpi_eeprom_channel_flags()
1396 if ((channel->flags & WPI_EEPROM_CHAN_IBSS) == 0) in wpi_eeprom_channel_flags()
1422 memset(bands, 0, sizeof(bands)); in wpi_read_eeprom_band()
1424 if (n == 0) { in wpi_read_eeprom_band()
1430 for (i = 0; i < band->nchan; i++) { in wpi_read_eeprom_band()
1441 chan, 0, channels[i].maxpwr, nflags, bands); in wpi_read_eeprom_band()
1442 if (error != 0) in wpi_read_eeprom_band()
1449 "adding chan %d flags=0x%x maxpwr=%d, offset %d\n", in wpi_read_eeprom_band()
1469 if (error != 0) { in wpi_read_eeprom_channels()
1481 return 0; in wpi_read_eeprom_channels()
1489 for (j = 0; j < WPI_CHAN_BANDS_COUNT; j++) in wpi_find_eeprom_channel()
1490 for (i = 0; i < wpi_bands[j].nchan; i++) in wpi_find_eeprom_channel()
1492 ((j == 0) ^ IEEE80211_IS_CHAN_A(c)) == 1) in wpi_find_eeprom_channel()
1506 for (i = 0; i < WPI_CHAN_BANDS_COUNT && *nchans < maxchans; i++) in wpi_getradiocaps()
1520 for (i = 0; i < nchan; i++) { in wpi_setregdomain()
1526 ic_printf(ic, "%s: invalid channel %u freq %u/0x%x\n", in wpi_setregdomain()
1533 return 0; in wpi_setregdomain()
1546 &rgroup, sizeof rgroup)) != 0) { in wpi_read_eeprom_group()
1561 for (i = 0; i < WPI_SAMPLES_COUNT; i++) { in wpi_read_eeprom_group()
1572 return 0; in wpi_read_eeprom_group()
1581 if ((sc->nodesmsk & (1 << newid)) == 0) { in wpi_add_node_entry_adhoc()
1602 return 0; in wpi_check_node_entry()
1610 sc->nodesmsk = 0; in wpi_clear_node_table()
1656 return (sc->rxon.filter & htole32(WPI_FILTER_BSS)) != 0; in wpi_check_bss_filter()
1696 if ((error = wpi_add_ibss_node(sc, ni)) != 0) { in wpi_restore_node()
1712 wvp->wv_gtk = 0; in wpi_restore_node_table()
1728 int error = 0; in wpi_newstate()
1733 if (nstate > IEEE80211_S_INIT && sc->sc_running == 0) { in wpi_newstate()
1746 if ((error = wpi_set_pslevel(sc, 0, 0, 1)) != 0) { in wpi_newstate()
1753 wpi_set_led(sc, WPI_LED_LINK, 1, 0); in wpi_newstate()
1759 if (wpi_check_bss_filter(sc) != 0) { in wpi_newstate()
1761 if ((error = wpi_send_rxon(sc, 0, 1)) != 0) { in wpi_newstate()
1784 if ((error = wpi_auth(sc, vap)) != 0) { in wpi_newstate()
1810 if ((error = wpi_send_rxon(sc, 0, 1)) != 0) { in wpi_newstate()
1830 if ((error = wpi_run(sc, vap)) != 0) { in wpi_newstate()
1839 if (error != 0) { in wpi_newstate()
1854 if (wpi_check_bss_filter(sc) == 0) in wpi_calib_timeout()
1866 case 12: return 0xd; in rate2plcp()
1867 case 18: return 0xf; in rate2plcp()
1868 case 24: return 0x5; in rate2plcp()
1869 case 36: return 0x7; in rate2plcp()
1870 case 48: return 0x9; in rate2plcp()
1871 case 72: return 0xb; in rate2plcp()
1872 case 96: return 0x1; in rate2plcp()
1873 case 108: return 0x3; in rate2plcp()
1878 default: return 0; in rate2plcp()
1886 case 0xd: return 12; in plcp2rate()
1887 case 0xf: return 18; in plcp2rate()
1888 case 0x5: return 24; in plcp2rate()
1889 case 0x7: return 36; in plcp2rate()
1890 case 0x9: return 48; in plcp2rate()
1891 case 0xb: return 72; in plcp2rate()
1892 case 0x1: return 96; in plcp2rate()
1893 case 0x3: return 108; in plcp2rate()
1898 default: return 0; in plcp2rate()
1963 if (__predict_false(error != 0 && error != EFBIG)) { in wpi_rx_done()
1972 if (error != 0 && error != EFBIG) { in wpi_rx_done()
2001 "CCMP decryption failed 0x%x\n", flags); in wpi_rx_done()
2017 tap->wr_flags = 0; in wpi_rx_done()
2023 tap->wr_antenna = (le16toh(head->flags) >> 4) & 0xf; in wpi_rx_done()
2057 struct wpi_tx_ring *ring = &sc->txq[desc->qid & 0x3]; in wpi_tx_done()
2094 switch (status & 0xff) { in wpi_tx_done()
2111 ieee80211_tx_complete(ni, m, (status & WPI_TX_STATUS_FAIL) != 0); in wpi_tx_done()
2114 if (--ring->queued > 0) in wpi_tx_done()
2142 KASSERT(ring->queued == 0, ("ring->queued must be 0")); in wpi_cmd_done()
2186 hw = le32toh(sc->shared->next) & 0xfff; in wpi_notif_intr()
2187 hw = (hw == 0) ? WPI_RX_RING_COUNT - 1 : hw - 1; in wpi_notif_intr()
2214 if (__predict_false(sc->sc_running == 0)) { in wpi_notif_intr()
2251 (received == 0 && expected >= threshold)) { in wpi_notif_intr()
2255 0, 1); in wpi_notif_intr()
2259 (ic->ic_flags & IEEE80211_F_SCAN) == 0) in wpi_notif_intr()
2368 if (sc->rxq.cur % 8 == 0) { in wpi_notif_intr()
2389 sc->rxq.update = 0; in wpi_wakeup_intr()
2393 for (qid = 0; qid < WPI_DRV_NTXQUEUES; qid++) { in wpi_wakeup_intr()
2397 ring->update = 0; in wpi_wakeup_intr()
2439 for (i = 0; i < nitems(csr_tbl); i++) { in wpi_debug_registers()
2440 DPRINTF(sc, WPI_DEBUG_REGISTER, " %-18s: 0x%08x ", in wpi_debug_registers()
2443 if ((i + 1) % 2 == 0) in wpi_debug_registers()
2448 if (wpi_nic_lock(sc) == 0) { in wpi_debug_registers()
2449 for (i = 0; i < nitems(prph_tbl); i++) { in wpi_debug_registers()
2450 DPRINTF(sc, WPI_DEBUG_REGISTER, " %-18s: 0x%08x ", in wpi_debug_registers()
2454 if ((i + 1) % 2 == 0) in wpi_debug_registers()
2481 printf("%s: bad firmware error log address 0x%08x\n", __func__, in wpi_fatal_intr()
2485 if (wpi_nic_lock(sc) != 0) { in wpi_fatal_intr()
2491 if (count == 0 || count * sizeof (dump) > WPI_FW_DATA_MAXSZ) { in wpi_fatal_intr()
2500 for (i = 0; i < count; i++) { in wpi_fatal_intr()
2504 printf(" error type = \"%s\" (0x%08X)\n", in wpi_fatal_intr()
2508 printf(" error data = 0x%08X\n", in wpi_fatal_intr()
2510 printf(" branch link = 0x%08X%08X\n", in wpi_fatal_intr()
2511 dump.blink[0], dump.blink[1]); in wpi_fatal_intr()
2512 printf(" interrupt link = 0x%08X%08X\n", in wpi_fatal_intr()
2513 dump.ilink[0], dump.ilink[1]); in wpi_fatal_intr()
2522 for (i = 0; i < WPI_DRV_NTXQUEUES; i++) { in wpi_fatal_intr()
2540 WPI_WRITE(sc, WPI_INT_MASK, 0); in wpi_intr()
2544 if (__predict_false(r1 == 0xffffffff || in wpi_intr()
2545 (r1 & 0xfffffff0) == 0xa5a5a5a0)) in wpi_intr()
2550 DPRINTF(sc, WPI_DEBUG_INTR, "%s: reg1=0x%08x reg2=0x%08x\n", __func__, in wpi_intr()
2553 if (r1 == 0 && r2 == 0) in wpi_intr()
2603 while (ring->pending != 0) { in wpi_free_txfrags()
2641 if (__predict_false(sc->sc_running == 0)) { in wpi_cmd2()
2661 pad = 0; in wpi_cmd2()
2671 cmd->flags = 0; in wpi_cmd2()
2683 if (error != 0 && error != EFBIG) { in wpi_cmd2()
2688 if (error != 0) { in wpi_cmd2()
2701 if (__predict_false(error != 0)) { in wpi_cmd2()
2717 error = 0; in wpi_cmd2()
2736 desc->segs[0].addr = htole32(data->cmd_paddr); in wpi_cmd2()
2737 desc->segs[0].len = htole32(4 + buf->size + hdrlen + pad); in wpi_cmd2()
2739 seg = &segs[0]; in wpi_cmd2()
2765 ring->pending = 0; in wpi_cmd2()
2798 type = wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK; in wpi_tx_data()
2804 qos = ((const struct ieee80211_qosframe *)wh)->i_qos[0]; in wpi_tx_data()
2807 qos = 0; in wpi_tx_data()
2808 tid = 0; in wpi_tx_data()
2815 (m->m_flags & M_EAPOL) != 0) in wpi_tx_data()
2823 (void) ieee80211_ratectl_rate(ni, NULL, 0); in wpi_tx_data()
2844 tap->wt_flags = 0; in wpi_tx_data()
2854 flags = 0; in wpi_tx_data()
2884 memset(tx, 0, sizeof (struct wpi_cmd_data)); in wpi_tx_data()
2886 uint8_t subtype = wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK; in wpi_tx_data()
2937 tx->ofdm_mask = 0xff; in wpi_tx_data()
2938 tx->cck_mask = 0x0f; in wpi_tx_data()
2965 type = wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK; in wpi_tx_data_raw()
2973 flags = 0; in wpi_tx_data_raw()
2976 if ((params->ibp_flags & IEEE80211_BPF_NOACK) == 0) in wpi_tx_data_raw()
3002 tap->wt_flags = 0; in wpi_tx_data_raw()
3010 memset(tx, 0, sizeof (struct wpi_cmd_data)); in wpi_tx_data_raw()
3012 uint8_t subtype = wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK; in wpi_tx_data_raw()
3074 int error = 0; in wpi_raw_xmit()
3083 if (sc->sc_running == 0 || wpi_tx_ring_free_space(sc, ac) < 1) { in wpi_raw_xmit()
3104 if (error != 0) { in wpi_raw_xmit()
3113 return 0; in wpi_raw_xmit()
3129 if (__predict_false(sc->sc_running == 0)) { in wpi_transmit()
3145 error = 0; in wpi_transmit()
3149 if (wpi_tx_data(sc, m, ni) != 0) { in wpi_transmit()
3175 if ((wpi_prph_read(sc, WPI_APMG_RFKILL) & 0x1) == 0) { in wpi_watchdog_rfkill()
3209 if (ic->ic_nrunning > 0) { in wpi_parent()
3210 if (wpi_init(sc) == 0) { in wpi_parent()
3214 ieee80211_notify_radio(ic, 0); in wpi_parent()
3218 ieee80211_notify_radio(ic, 0); in wpi_parent()
3243 if (__predict_false(sc->sc_running == 0)) { in wpi_cmd()
3248 error = 0; in wpi_cmd()
3253 if (async == 0) in wpi_cmd()
3277 if (error != 0) { in wpi_cmd()
3288 cmd->flags = 0; in wpi_cmd()
3294 desc->segs[0].addr = htole32(paddr); in wpi_cmd()
3295 desc->segs[0].len = htole32(totlen); in wpi_cmd()
3315 return async ? 0 : mtx_sleep(cmd, &sc->sc_mtx, PCATCH, "wpicmd", hz); in wpi_cmd()
3337 mrr.rates[i].flags = 0; in wpi_mrr_setup()
3347 mrr.rates[i].flags = 0; in wpi_mrr_setup()
3360 error = wpi_cmd(sc, WPI_CMD_MRR_SETUP, &mrr, sizeof mrr, 0); in wpi_mrr_setup()
3361 if (error != 0) { in wpi_mrr_setup()
3368 error = wpi_cmd(sc, WPI_CMD_MRR_SETUP, &mrr, sizeof mrr, 0); in wpi_mrr_setup()
3369 if (error != 0) { in wpi_mrr_setup()
3374 return 0; in wpi_mrr_setup()
3391 memset(&node, 0, sizeof node); in wpi_add_node()
3403 if (error != 0) { in wpi_add_node()
3410 if (wvp->wv_gtk != 0) { in wpi_add_node()
3412 if (error != 0) { in wpi_add_node()
3419 return 0; in wpi_add_node()
3433 memset(&node, 0, sizeof node); in wpi_add_broadcast_node()
3456 if ((error = wpi_add_node(sc, ni)) != 0) { in wpi_add_sta_node()
3462 return 0; in wpi_add_sta_node()
3481 if ((error = wpi_add_node(sc, ni)) != 0) { in wpi_add_ibss_node()
3487 return 0; in wpi_add_ibss_node()
3501 memset(&node, 0, sizeof node); in wpi_del_node()
3509 if (error != 0) { in wpi_del_node()
3529 memset(&cmd, 0, sizeof cmd); in wpi_updateedca()
3531 for (aci = 0; aci < WME_NUM_AC; aci++) { in wpi_updateedca()
3564 if (ic->ic_promisc > 0) in wpi_set_promisc()
3576 if (sc->sc_running == 0) { in wpi_update_promisc()
3585 if (wpi_send_rxon(sc, 1, 1) != 0) { in wpi_update_promisc()
3620 memset(&cmd, 0, sizeof cmd); in wpi_set_timing()
3667 if (wpi_set_txpower(sc, 1) != 0) { in wpi_power_calibration()
3686 is_chan_5ghz = (sc->rxon.flags & htole32(WPI_RXON_24GHZ)) == 0; in wpi_set_txpower()
3694 group = &sc->groups[0]; in wpi_set_txpower()
3696 memset(&cmd, 0, sizeof cmd); in wpi_set_txpower()
3701 for (i = 0; i <= WPI_RIDX_MAX ; i++) { in wpi_set_txpower()
3747 pwr -= is_chan_5ghz ? 5 : 0; in wpi_get_power_index()
3765 idx = interpolate(pwr, sample[0].power, sample[0].index, in wpi_get_power_index()
3780 if (idx < 0) in wpi_get_power_index()
3781 return 0; in wpi_get_power_index()
3791 * Set STA mode power saving level (between 0 and 5).
3792 * Level 0 is CAM (Continuously Aware Mode), 5 is for maximum power saving.
3809 pmgt = &wpi_pmgt[0][level]; in wpi_set_pslevel()
3813 memset(&cmd, 0, sizeof cmd); in wpi_set_pslevel()
3814 if (level != 0) /* not CAM */ in wpi_set_pslevel()
3824 if (dtim == 0) { in wpi_set_pslevel()
3826 skip_dtim = 0; in wpi_set_pslevel()
3830 if (skip_dtim != 0) { in wpi_set_pslevel()
3840 for (i = 0; i < 5; i++) in wpi_set_pslevel()
3851 memset(&cmd, 0, sizeof cmd); in wpi_send_btcoex()
3857 return wpi_cmd(sc, WPI_CMD_BT_COEX, &cmd, sizeof(cmd), 0); in wpi_send_btcoex()
3868 if (assoc && wpi_check_bss_filter(sc) != 0) { in wpi_send_rxon()
3875 rxon_assoc.reserved = 0; in wpi_send_rxon()
3879 if (error != 0) { in wpi_send_rxon()
3889 if (error == 0) in wpi_send_rxon()
3895 if (error == 0) in wpi_send_rxon()
3899 if (error != 0) { in wpi_send_rxon()
3907 if (error != 0) { in wpi_send_rxon()
3915 if ((error = wpi_set_txpower(sc, async)) != 0) { in wpi_send_rxon()
3921 return 0; in wpi_send_rxon()
3939 if ((error = wpi_set_pslevel(sc, 0, 0, 0)) != 0) { in wpi_config()
3946 if ((error = wpi_send_btcoex(sc)) != 0) { in wpi_config()
3953 memset(&sc->rxon, 0, sizeof (struct wpi_rxon)); in wpi_config()
3989 sc->rxon.cck_mask = 0x0f; /* not yet negotiated */ in wpi_config()
3990 sc->rxon.ofdm_mask = 0xff; /* not yet negotiated */ in wpi_config()
3992 if ((error = wpi_send_rxon(sc, 0, 0)) != 0) { in wpi_config()
3999 if ((error = wpi_mrr_setup(sc)) != 0) { in wpi_config()
4007 return 0; in wpi_config()
4035 uint16_t bintval = 0; in wpi_limit_dwell()
4048 if (bintval > 0) { in wpi_limit_dwell()
4118 if (bgscan != 0 && in wpi_scan()
4141 if (bgscan != 0) { in wpi_scan()
4171 for (i = 0; i < nssid; i++) { in wpi_scan()
4189 wh->i_fc[0] = IEEE80211_FC0_VERSION_0 | IEEE80211_FC0_TYPE_MGT | in wpi_scan()
4197 frm = ieee80211_add_ssid(frm, NULL, 0); in wpi_scan()
4212 chan->flags = 0; in wpi_scan()
4235 chan->dsp_gain = 0x6e; /* Default level */ in wpi_scan()
4238 chan->rf_gain = 0x3b; in wpi_scan()
4240 chan->rf_gain = 0x28; in wpi_scan()
4254 chan->flags = 0; in wpi_scan()
4270 if (error != 0) in wpi_scan()
4277 return 0; in wpi_scan()
4297 sc->rxon.associd = 0; in wpi_auth()
4309 sc->rxon.cck_mask = 0; in wpi_auth()
4310 sc->rxon.ofdm_mask = 0x15; in wpi_auth()
4312 sc->rxon.cck_mask = 0x03; in wpi_auth()
4313 sc->rxon.ofdm_mask = 0; in wpi_auth()
4316 sc->rxon.cck_mask = 0x0f; in wpi_auth()
4317 sc->rxon.ofdm_mask = 0x15; in wpi_auth()
4324 if ((error = wpi_send_rxon(sc, 0, 1)) != 0) { in wpi_auth()
4377 if ((error = wpi_cmd2(sc, bcn)) != 0) { in wpi_config_beacon()
4431 int mcast = 0; in wpi_update_beacon()
4477 if ((error = wpi_add_ibss_node(sc, ni)) != 0) { in wpi_newassoc()
4499 return 0; in wpi_run()
4509 if ((error = wpi_set_timing(sc, ni)) != 0) { in wpi_run()
4528 sc->rxon.cck_mask = 0; in wpi_run()
4529 sc->rxon.ofdm_mask = 0x15; in wpi_run()
4531 sc->rxon.cck_mask = 0x03; in wpi_run()
4532 sc->rxon.ofdm_mask = 0; in wpi_run()
4535 sc->rxon.cck_mask = 0x0f; in wpi_run()
4536 sc->rxon.ofdm_mask = 0x15; in wpi_run()
4543 if ((error = wpi_send_rxon(sc, 0, 1)) != 0) { in wpi_run()
4557 if ((error = wpi_setup_beacon(sc, ni)) != 0) { in wpi_run()
4570 if (error != 0) { in wpi_run()
4579 wpi_set_led(sc, WPI_LED_LINK, 0, 1); in wpi_run()
4584 (void)wpi_set_pslevel(sc, 0, 3, 1); in wpi_run()
4588 return 0; in wpi_run()
4604 if (wpi_check_node_entry(sc, wn->id) == 0) { in wpi_load_key()
4607 return 0; in wpi_load_key()
4618 return 0; in wpi_load_key()
4625 memset(&node, 0, sizeof node); in wpi_load_key()
4638 if (error != 0) { in wpi_load_key()
4671 if (error == 0) { in wpi_load_key_cb()
4681 struct ieee80211_key *wk = &vap->iv_nw_keys[0]; in wpi_set_global_keys()
4703 if (wpi_check_node_entry(sc, wn->id) == 0) { in wpi_del_key()
4712 memset(&node, 0, sizeof node); in wpi_del_key()
4723 if (error != 0) { in wpi_del_key()
4756 if (error == 0) { in wpi_del_key_cb()
4770 int error, ni_ref = 0; in wpi_process_key()
4812 return 0; /* should not happen */ in wpi_process_key()
4820 return 0; in wpi_process_key()
4845 return wpi_process_key(vap, k, 0); in wpi_key_delete()
4858 if ((error = wpi_nic_lock(sc)) != 0) in wpi_post_alive()
4873 for (ntries = 0; ntries < 1000; ntries++) { in wpi_post_alive()
4874 if ((sc->temp = (int)WPI_READ(sc, WPI_UCODE_GP2)) != 0) in wpi_post_alive()
4886 return 0; in wpi_post_alive()
4898 DPRINTF(sc, WPI_DEBUG_HW, "Loading microcode size 0x%x\n", size); in wpi_load_bootcode()
4902 if ((error = wpi_nic_lock(sc)) != 0) in wpi_load_bootcode()
4909 wpi_prph_write(sc, WPI_BSM_WR_MEM_SRC, 0); in wpi_load_bootcode()
4917 for (ntries = 0; ntries < 1000; ntries++) { in wpi_load_bootcode()
4920 "firmware status=0x%x, val=0x%x, result=0x%x\n", status, in wpi_load_bootcode()
4941 return 0; in wpi_load_bootcode()
4960 if ((error = wpi_nic_lock(sc)) != 0) in wpi_load_firmware()
4971 if (error != 0) { in wpi_load_firmware()
4978 WPI_WRITE(sc, WPI_RESET, 0); in wpi_load_firmware()
4981 if ((error = mtx_sleep(sc, &sc->sc_mtx, PCATCH, "wpiinit", hz)) != 0) { in wpi_load_firmware()
4995 if ((error = wpi_nic_lock(sc)) != 0) in wpi_load_firmware()
5005 return 0; in wpi_load_firmware()
5054 fw->boot.datasz = 0; in wpi_read_firmware()
5062 (fw->boot.textsz & 3) != 0) { in wpi_read_firmware()
5097 return 0; in wpi_read_firmware()
5124 for (ntries = 0; ntries < 2500; ntries++) { in wpi_clock_wait()
5126 return 0; in wpi_clock_wait()
5149 WPI_SETBITS(sc, WPI_DBG_HPET_MEM, 0xffff0000); in wpi_apm_init()
5162 if ((error = wpi_clock_wait(sc)) != 0) in wpi_apm_init()
5165 if ((error = wpi_nic_lock(sc)) != 0) in wpi_apm_init()
5168 wpi_prph_write(sc, WPI_APMG_CLK_DIS, 0x00000400); in wpi_apm_init()
5169 wpi_prph_clrbits(sc, WPI_APMG_PS, 0x00000200); in wpi_apm_init()
5179 return 0; in wpi_apm_init()
5194 for (ntries = 0; ntries < 100; ntries++) { in wpi_apm_stop_master()
5224 if ((rev & 0xc0) == 0x40) in wpi_nic_config()
5226 else if (!(rev & 0x80)) in wpi_nic_config()
5229 if (sc->cap == 0x80) in wpi_nic_config()
5232 if ((sc->rev & 0xf0) == 0xd0) in wpi_nic_config()
5250 WPI_WRITE(sc, WPI_INT, 0xffffffff); in wpi_hw_init()
5252 if ((error = wpi_apm_init(sc)) != 0) { in wpi_hw_init()
5260 if ((error = wpi_nic_lock(sc)) != 0) in wpi_hw_init()
5265 for (ntries = 0; ntries < 5000; ntries++) { in wpi_hw_init()
5279 if ((error = wpi_nic_lock(sc)) != 0) in wpi_hw_init()
5286 WPI_WRITE(sc, WPI_FH_RX_WPTR, 0); in wpi_hw_init()
5301 if ((error = wpi_nic_lock(sc)) != 0) in wpi_hw_init()
5306 wpi_prph_write(sc, WPI_ALM_SCHED_TXFACT, 0x3f); in wpi_hw_init()
5307 wpi_prph_write(sc, WPI_ALM_SCHED_SBYPASS_MODE1, 0x10000); in wpi_hw_init()
5308 wpi_prph_write(sc, WPI_ALM_SCHED_SBYPASS_MODE2, 0x30002); in wpi_hw_init()
5313 WPI_WRITE(sc, WPI_FH_MSG_CONFIG, 0xffff05a5); in wpi_hw_init()
5316 for (chnl = 0; chnl < WPI_NDMACHNLS; chnl++) { in wpi_hw_init()
5317 WPI_WRITE(sc, WPI_FH_CBBC_CTRL(chnl), 0); in wpi_hw_init()
5318 WPI_WRITE(sc, WPI_FH_CBBC_BASE(chnl), 0); in wpi_hw_init()
5319 WPI_WRITE(sc, WPI_FH_TX_CONFIG(chnl), 0x80200008); in wpi_hw_init()
5329 WPI_WRITE(sc, WPI_INT, 0xffffffff); in wpi_hw_init()
5337 if ((error = wpi_load_firmware(sc)) != 0) { in wpi_hw_init()
5344 if ((error = mtx_sleep(sc, &sc->sc_mtx, PCATCH, "wpiinit", hz)) != 0) { in wpi_hw_init()
5371 WPI_WRITE(sc, WPI_INT_MASK, 0); in wpi_hw_stop()
5372 WPI_WRITE(sc, WPI_INT, 0xffffffff); in wpi_hw_stop()
5373 WPI_WRITE(sc, WPI_FH_INT, 0xffffffff); in wpi_hw_stop()
5378 if (wpi_nic_lock(sc) == 0) { in wpi_hw_stop()
5380 wpi_prph_write(sc, WPI_ALM_SCHED_MODE, 0); in wpi_hw_stop()
5381 wpi_prph_write(sc, WPI_ALM_SCHED_TXFACT, 0); in wpi_hw_stop()
5384 for (chnl = 0; chnl < WPI_NDMACHNLS; chnl++) { in wpi_hw_stop()
5385 WPI_WRITE(sc, WPI_FH_TX_CONFIG(chnl), 0); in wpi_hw_stop()
5386 for (ntries = 0; ntries < 200; ntries++) { in wpi_hw_stop()
5400 for (qid = 0; qid < WPI_DRV_NTXQUEUES; qid++) in wpi_hw_stop()
5403 if (wpi_nic_lock(sc) == 0) { in wpi_hw_stop()
5439 ieee80211_notify_radio(ic, 0); in wpi_radio_off()
5452 int error = 0; in wpi_init()
5458 if (sc->sc_running != 0) in wpi_init()
5472 if ((error = wpi_read_firmware(sc)) != 0) { in wpi_init()
5484 if (error != 0) { in wpi_init()
5492 if ((error = wpi_config(sc)) != 0) { in wpi_init()
5503 return 0; in wpi_init()
5519 if (sc->sc_running == 0) in wpi_stop_locked()
5524 sc->sc_running = 0; in wpi_stop_locked()
5570 wpi_set_led(sc, WPI_LED_LINK, 0, 1); in wpi_scan_end()
5609 if ((error = wpi_send_rxon(sc, 0, 1)) != 0) in wpi_set_channel()
5633 if (error != 0) in wpi_scan_curchan()