]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/wpi/if_wpi.c
Create another debug category for WPI_BEACON_MISSED notification.
[FreeBSD/FreeBSD.git] / sys / dev / wpi / if_wpi.c
1 /*-
2  * Copyright (c) 2006,2007
3  *      Damien Bergamini <damien.bergamini@free.fr>
4  *      Benjamin Close <Benjamin.Close@clearchain.com>
5  *
6  * Permission to use, copy, modify, and distribute this software for any
7  * purpose with or without fee is hereby granted, provided that the above
8  * copyright notice and this permission notice appear in all copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17  */
18
19 #include <sys/cdefs.h>
20 __FBSDID("$FreeBSD$");
21
22 /*
23  * Driver for Intel PRO/Wireless 3945ABG 802.11 network adapters.
24  *
25  * The 3945ABG network adapter doesn't use traditional hardware as
26  * many other adaptors do. Instead at run time the eeprom is set into a known
27  * state and told to load boot firmware. The boot firmware loads an init and a
28  * main  binary firmware image into SRAM on the card via DMA.
29  * Once the firmware is loaded, the driver/hw then
30  * communicate by way of circular dma rings via the SRAM to the firmware.
31  *
32  * There is 6 memory rings. 1 command ring, 1 rx data ring & 4 tx data rings.
33  * The 4 tx data rings allow for prioritization QoS.
34  *
35  * The rx data ring consists of 32 dma buffers. Two registers are used to
36  * indicate where in the ring the driver and the firmware are up to. The
37  * driver sets the initial read index (reg1) and the initial write index (reg2),
38  * the firmware updates the read index (reg1) on rx of a packet and fires an
39  * interrupt. The driver then processes the buffers starting at reg1 indicating
40  * to the firmware which buffers have been accessed by updating reg2. At the
41  * same time allocating new memory for the processed buffer.
42  *
43  * A similar thing happens with the tx rings. The difference is the firmware
44  * stop processing buffers once the queue is full and until confirmation
45  * of a successful transmition (tx_done) has occurred.
46  *
47  * The command ring operates in the same manner as the tx queues.
48  *
49  * All communication direct to the card (ie eeprom) is classed as Stage1
50  * communication
51  *
52  * All communication via the firmware to the card is classed as State2.
53  * The firmware consists of 2 parts. A bootstrap firmware and a runtime
54  * firmware. The bootstrap firmware and runtime firmware are loaded
55  * from host memory via dma to the card then told to execute. From this point
56  * on the majority of communications between the driver and the card goes
57  * via the firmware.
58  */
59
60 #include "opt_wlan.h"
61 #include "opt_wpi.h"
62
63 #include <sys/param.h>
64 #include <sys/sysctl.h>
65 #include <sys/sockio.h>
66 #include <sys/mbuf.h>
67 #include <sys/kernel.h>
68 #include <sys/socket.h>
69 #include <sys/systm.h>
70 #include <sys/malloc.h>
71 #include <sys/queue.h>
72 #include <sys/taskqueue.h>
73 #include <sys/module.h>
74 #include <sys/bus.h>
75 #include <sys/endian.h>
76 #include <sys/linker.h>
77 #include <sys/firmware.h>
78
79 #include <machine/bus.h>
80 #include <machine/resource.h>
81 #include <sys/rman.h>
82
83 #include <dev/pci/pcireg.h>
84 #include <dev/pci/pcivar.h>
85
86 #include <net/bpf.h>
87 #include <net/if.h>
88 #include <net/if_var.h>
89 #include <net/if_arp.h>
90 #include <net/ethernet.h>
91 #include <net/if_dl.h>
92 #include <net/if_media.h>
93 #include <net/if_types.h>
94
95 #include <netinet/in.h>
96 #include <netinet/in_systm.h>
97 #include <netinet/in_var.h>
98 #include <netinet/if_ether.h>
99 #include <netinet/ip.h>
100
101 #include <net80211/ieee80211_var.h>
102 #include <net80211/ieee80211_radiotap.h>
103 #include <net80211/ieee80211_regdomain.h>
104 #include <net80211/ieee80211_ratectl.h>
105
106 #include <dev/wpi/if_wpireg.h>
107 #include <dev/wpi/if_wpivar.h>
108 #include <dev/wpi/if_wpi_debug.h>
109
110 struct wpi_ident {
111         uint16_t        vendor;
112         uint16_t        device;
113         uint16_t        subdevice;
114         const char      *name;
115 };
116
117 static const struct wpi_ident wpi_ident_table[] = {
118         /* The below entries support ABG regardless of the subid */
119         { 0x8086, 0x4222,    0x0, "Intel(R) PRO/Wireless 3945ABG" },
120         { 0x8086, 0x4227,    0x0, "Intel(R) PRO/Wireless 3945ABG" },
121         /* The below entries only support BG */
122         { 0x8086, 0x4222, 0x1005, "Intel(R) PRO/Wireless 3945BG"  },
123         { 0x8086, 0x4222, 0x1034, "Intel(R) PRO/Wireless 3945BG"  },
124         { 0x8086, 0x4227, 0x1014, "Intel(R) PRO/Wireless 3945BG"  },
125         { 0x8086, 0x4222, 0x1044, "Intel(R) PRO/Wireless 3945BG"  },
126         { 0, 0, 0, NULL }
127 };
128
129 static int      wpi_probe(device_t);
130 static int      wpi_attach(device_t);
131 static void     wpi_radiotap_attach(struct wpi_softc *);
132 static void     wpi_sysctlattach(struct wpi_softc *);
133 static void     wpi_init_beacon(struct wpi_vap *);
134 static struct ieee80211vap *wpi_vap_create(struct ieee80211com *,
135                     const char [IFNAMSIZ], int, enum ieee80211_opmode, int,
136                     const uint8_t [IEEE80211_ADDR_LEN],
137                     const uint8_t [IEEE80211_ADDR_LEN]);
138 static void     wpi_vap_delete(struct ieee80211vap *);
139 static int      wpi_detach(device_t);
140 static int      wpi_shutdown(device_t);
141 static int      wpi_suspend(device_t);
142 static int      wpi_resume(device_t);
143 static int      wpi_nic_lock(struct wpi_softc *);
144 static int      wpi_read_prom_data(struct wpi_softc *, uint32_t, void *, int);
145 static void     wpi_dma_map_addr(void *, bus_dma_segment_t *, int, int);
146 static int      wpi_dma_contig_alloc(struct wpi_softc *, struct wpi_dma_info *,
147                     void **, bus_size_t, bus_size_t);
148 static void     wpi_dma_contig_free(struct wpi_dma_info *);
149 static int      wpi_alloc_shared(struct wpi_softc *);
150 static void     wpi_free_shared(struct wpi_softc *);
151 static int      wpi_alloc_fwmem(struct wpi_softc *);
152 static void     wpi_free_fwmem(struct wpi_softc *);
153 static int      wpi_alloc_rx_ring(struct wpi_softc *);
154 static void     wpi_update_rx_ring(struct wpi_softc *);
155 static void     wpi_reset_rx_ring(struct wpi_softc *);
156 static void     wpi_free_rx_ring(struct wpi_softc *);
157 static int      wpi_alloc_tx_ring(struct wpi_softc *, struct wpi_tx_ring *,
158                     int);
159 static void     wpi_update_tx_ring(struct wpi_softc *, struct wpi_tx_ring *);
160 static void     wpi_reset_tx_ring(struct wpi_softc *, struct wpi_tx_ring *);
161 static void     wpi_free_tx_ring(struct wpi_softc *, struct wpi_tx_ring *);
162 static int      wpi_read_eeprom(struct wpi_softc *,
163                     uint8_t macaddr[IEEE80211_ADDR_LEN]);
164 static uint32_t wpi_eeprom_channel_flags(struct wpi_eeprom_chan *);
165 static void     wpi_read_eeprom_band(struct wpi_softc *, int);
166 static int      wpi_read_eeprom_channels(struct wpi_softc *, int);
167 static struct wpi_eeprom_chan *wpi_find_eeprom_channel(struct wpi_softc *,
168                     struct ieee80211_channel *);
169 static int      wpi_setregdomain(struct ieee80211com *,
170                     struct ieee80211_regdomain *, int,
171                     struct ieee80211_channel[]);
172 static int      wpi_read_eeprom_group(struct wpi_softc *, int);
173 static int      wpi_add_node_entry_adhoc(struct wpi_softc *);
174 static void     wpi_node_free(struct ieee80211_node *);
175 static struct ieee80211_node *wpi_node_alloc(struct ieee80211vap *,
176                     const uint8_t mac[IEEE80211_ADDR_LEN]);
177 static int      wpi_newstate(struct ieee80211vap *, enum ieee80211_state, int);
178 static void     wpi_calib_timeout(void *);
179 static void     wpi_rx_done(struct wpi_softc *, struct wpi_rx_desc *,
180                     struct wpi_rx_data *);
181 static void     wpi_rx_statistics(struct wpi_softc *, struct wpi_rx_desc *,
182                     struct wpi_rx_data *);
183 static void     wpi_tx_done(struct wpi_softc *, struct wpi_rx_desc *);
184 static void     wpi_cmd_done(struct wpi_softc *, struct wpi_rx_desc *);
185 static void     wpi_notif_intr(struct wpi_softc *);
186 static void     wpi_wakeup_intr(struct wpi_softc *);
187 #ifdef WPI_DEBUG
188 static void     wpi_debug_registers(struct wpi_softc *);
189 #endif
190 static void     wpi_fatal_intr(struct wpi_softc *);
191 static void     wpi_intr(void *);
192 static int      wpi_cmd2(struct wpi_softc *, struct wpi_buf *);
193 static int      wpi_tx_data(struct wpi_softc *, struct mbuf *,
194                     struct ieee80211_node *);
195 static int      wpi_tx_data_raw(struct wpi_softc *, struct mbuf *,
196                     struct ieee80211_node *,
197                     const struct ieee80211_bpf_params *);
198 static int      wpi_raw_xmit(struct ieee80211_node *, struct mbuf *,
199                     const struct ieee80211_bpf_params *);
200 static void     wpi_start(struct ifnet *);
201 static void     wpi_start_task(void *, int);
202 static void     wpi_watchdog_rfkill(void *);
203 static void     wpi_scan_timeout(void *);
204 static void     wpi_tx_timeout(void *);
205 static int      wpi_ioctl(struct ifnet *, u_long, caddr_t);
206 static int      wpi_cmd(struct wpi_softc *, int, const void *, size_t, int);
207 static int      wpi_mrr_setup(struct wpi_softc *);
208 static int      wpi_add_node(struct wpi_softc *, struct ieee80211_node *);
209 static int      wpi_add_broadcast_node(struct wpi_softc *, int);
210 static int      wpi_add_ibss_node(struct wpi_softc *, struct ieee80211_node *);
211 static void     wpi_del_node(struct wpi_softc *, struct ieee80211_node *);
212 static int      wpi_updateedca(struct ieee80211com *);
213 static void     wpi_set_promisc(struct wpi_softc *);
214 static void     wpi_update_promisc(struct ifnet *);
215 static void     wpi_update_mcast(struct ifnet *);
216 static void     wpi_set_led(struct wpi_softc *, uint8_t, uint8_t, uint8_t);
217 static int      wpi_set_timing(struct wpi_softc *, struct ieee80211_node *);
218 static void     wpi_power_calibration(struct wpi_softc *);
219 static int      wpi_set_txpower(struct wpi_softc *, int);
220 static int      wpi_get_power_index(struct wpi_softc *,
221                     struct wpi_power_group *, uint8_t, int, int);
222 static int      wpi_set_pslevel(struct wpi_softc *, uint8_t, int, int);
223 static int      wpi_send_btcoex(struct wpi_softc *);
224 static int      wpi_send_rxon(struct wpi_softc *, int, int);
225 static int      wpi_config(struct wpi_softc *);
226 static uint16_t wpi_get_active_dwell_time(struct wpi_softc *,
227                     struct ieee80211_channel *, uint8_t);
228 static uint16_t wpi_limit_dwell(struct wpi_softc *, uint16_t);
229 static uint16_t wpi_get_passive_dwell_time(struct wpi_softc *,
230                     struct ieee80211_channel *);
231 static uint32_t wpi_get_scan_pause_time(uint32_t, uint16_t);
232 static int      wpi_scan(struct wpi_softc *, struct ieee80211_channel *);
233 static int      wpi_auth(struct wpi_softc *, struct ieee80211vap *);
234 static int      wpi_config_beacon(struct wpi_vap *);
235 static int      wpi_setup_beacon(struct wpi_softc *, struct ieee80211_node *);
236 static void     wpi_update_beacon(struct ieee80211vap *, int);
237 static void     wpi_newassoc(struct ieee80211_node *, int);
238 static int      wpi_run(struct wpi_softc *, struct ieee80211vap *);
239 static int      wpi_load_key(struct ieee80211_node *,
240                     const struct ieee80211_key *);
241 static void     wpi_load_key_cb(void *, struct ieee80211_node *);
242 static int      wpi_set_global_keys(struct ieee80211_node *);
243 static int      wpi_del_key(struct ieee80211_node *,
244                     const struct ieee80211_key *);
245 static void     wpi_del_key_cb(void *, struct ieee80211_node *);
246 static int      wpi_process_key(struct ieee80211vap *,
247                     const struct ieee80211_key *, int);
248 static int      wpi_key_set(struct ieee80211vap *,
249                     const struct ieee80211_key *,
250                     const uint8_t mac[IEEE80211_ADDR_LEN]);
251 static int      wpi_key_delete(struct ieee80211vap *,
252                     const struct ieee80211_key *);
253 static int      wpi_post_alive(struct wpi_softc *);
254 static int      wpi_load_bootcode(struct wpi_softc *, const uint8_t *, int);
255 static int      wpi_load_firmware(struct wpi_softc *);
256 static int      wpi_read_firmware(struct wpi_softc *);
257 static void     wpi_unload_firmware(struct wpi_softc *);
258 static int      wpi_clock_wait(struct wpi_softc *);
259 static int      wpi_apm_init(struct wpi_softc *);
260 static void     wpi_apm_stop_master(struct wpi_softc *);
261 static void     wpi_apm_stop(struct wpi_softc *);
262 static void     wpi_nic_config(struct wpi_softc *);
263 static int      wpi_hw_init(struct wpi_softc *);
264 static void     wpi_hw_stop(struct wpi_softc *);
265 static void     wpi_radio_on(void *, int);
266 static void     wpi_radio_off(void *, int);
267 static void     wpi_init(void *);
268 static void     wpi_stop_locked(struct wpi_softc *);
269 static void     wpi_stop(struct wpi_softc *);
270 static void     wpi_scan_start(struct ieee80211com *);
271 static void     wpi_scan_end(struct ieee80211com *);
272 static void     wpi_set_channel(struct ieee80211com *);
273 static void     wpi_scan_curchan(struct ieee80211_scan_state *, unsigned long);
274 static void     wpi_scan_mindwell(struct ieee80211_scan_state *);
275 static void     wpi_hw_reset(void *, int);
276
277 static device_method_t wpi_methods[] = {
278         /* Device interface */
279         DEVMETHOD(device_probe,         wpi_probe),
280         DEVMETHOD(device_attach,        wpi_attach),
281         DEVMETHOD(device_detach,        wpi_detach),
282         DEVMETHOD(device_shutdown,      wpi_shutdown),
283         DEVMETHOD(device_suspend,       wpi_suspend),
284         DEVMETHOD(device_resume,        wpi_resume),
285
286         DEVMETHOD_END
287 };
288
289 static driver_t wpi_driver = {
290         "wpi",
291         wpi_methods,
292         sizeof (struct wpi_softc)
293 };
294 static devclass_t wpi_devclass;
295
296 DRIVER_MODULE(wpi, pci, wpi_driver, wpi_devclass, NULL, NULL);
297
298 MODULE_VERSION(wpi, 1);
299
300 MODULE_DEPEND(wpi, pci,  1, 1, 1);
301 MODULE_DEPEND(wpi, wlan, 1, 1, 1);
302 MODULE_DEPEND(wpi, firmware, 1, 1, 1);
303
304 static int
305 wpi_probe(device_t dev)
306 {
307         const struct wpi_ident *ident;
308
309         for (ident = wpi_ident_table; ident->name != NULL; ident++) {
310                 if (pci_get_vendor(dev) == ident->vendor &&
311                     pci_get_device(dev) == ident->device) {
312                         device_set_desc(dev, ident->name);
313                         return (BUS_PROBE_DEFAULT);
314                 }
315         }
316         return ENXIO;
317 }
318
319 static int
320 wpi_attach(device_t dev)
321 {
322         struct wpi_softc *sc = (struct wpi_softc *)device_get_softc(dev);
323         struct ieee80211com *ic;
324         struct ifnet *ifp;
325         int i, error, rid;
326 #ifdef WPI_DEBUG
327         int supportsa = 1;
328         const struct wpi_ident *ident;
329 #endif
330         uint8_t macaddr[IEEE80211_ADDR_LEN];
331
332         sc->sc_dev = dev;
333
334 #ifdef WPI_DEBUG
335         error = resource_int_value(device_get_name(sc->sc_dev),
336             device_get_unit(sc->sc_dev), "debug", &(sc->sc_debug));
337         if (error != 0)
338                 sc->sc_debug = 0;
339 #else
340         sc->sc_debug = 0;
341 #endif
342
343         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_BEGIN, __func__);
344
345         /*
346          * Get the offset of the PCI Express Capability Structure in PCI
347          * Configuration Space.
348          */
349         error = pci_find_cap(dev, PCIY_EXPRESS, &sc->sc_cap_off);
350         if (error != 0) {
351                 device_printf(dev, "PCIe capability structure not found!\n");
352                 return error;
353         }
354
355         /*
356          * Some card's only support 802.11b/g not a, check to see if
357          * this is one such card. A 0x0 in the subdevice table indicates
358          * the entire subdevice range is to be ignored.
359          */
360 #ifdef WPI_DEBUG
361         for (ident = wpi_ident_table; ident->name != NULL; ident++) {
362                 if (ident->subdevice &&
363                     pci_get_subdevice(dev) == ident->subdevice) {
364                     supportsa = 0;
365                     break;
366                 }
367         }
368 #endif
369
370         /* Clear device-specific "PCI retry timeout" register (41h). */
371         pci_write_config(dev, 0x41, 0, 1);
372
373         /* Enable bus-mastering. */
374         pci_enable_busmaster(dev);
375
376         rid = PCIR_BAR(0);
377         sc->mem = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid,
378             RF_ACTIVE);
379         if (sc->mem == NULL) {
380                 device_printf(dev, "can't map mem space\n");
381                 return ENOMEM;
382         }
383         sc->sc_st = rman_get_bustag(sc->mem);
384         sc->sc_sh = rman_get_bushandle(sc->mem);
385
386         i = 1;
387         rid = 0;
388         if (pci_alloc_msi(dev, &i) == 0)
389                 rid = 1;
390         /* Install interrupt handler. */
391         sc->irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid, RF_ACTIVE |
392             (rid != 0 ? 0 : RF_SHAREABLE));
393         if (sc->irq == NULL) {
394                 device_printf(dev, "can't map interrupt\n");
395                 error = ENOMEM;
396                 goto fail;
397         }
398
399         WPI_LOCK_INIT(sc);
400         WPI_TX_LOCK_INIT(sc);
401         WPI_RXON_LOCK_INIT(sc);
402         WPI_NT_LOCK_INIT(sc);
403         WPI_TXQ_LOCK_INIT(sc);
404         WPI_TXQ_STATE_LOCK_INIT(sc);
405
406         /* Allocate DMA memory for firmware transfers. */
407         if ((error = wpi_alloc_fwmem(sc)) != 0) {
408                 device_printf(dev,
409                     "could not allocate memory for firmware, error %d\n",
410                     error);
411                 goto fail;
412         }
413
414         /* Allocate shared page. */
415         if ((error = wpi_alloc_shared(sc)) != 0) {
416                 device_printf(dev, "could not allocate shared page\n");
417                 goto fail;
418         }
419
420         /* Allocate TX rings - 4 for QoS purposes, 1 for commands. */
421         for (i = 0; i < WPI_NTXQUEUES; i++) {
422                 if ((error = wpi_alloc_tx_ring(sc, &sc->txq[i], i)) != 0) {
423                         device_printf(dev,
424                             "could not allocate TX ring %d, error %d\n", i,
425                             error);
426                         goto fail;
427                 }
428         }
429
430         /* Allocate RX ring. */
431         if ((error = wpi_alloc_rx_ring(sc)) != 0) {
432                 device_printf(dev, "could not allocate RX ring, error %d\n",
433                     error);
434                 goto fail;
435         }
436
437         /* Clear pending interrupts. */
438         WPI_WRITE(sc, WPI_INT, 0xffffffff);
439
440         ifp = sc->sc_ifp = if_alloc(IFT_IEEE80211);
441         if (ifp == NULL) {
442                 device_printf(dev, "can not allocate ifnet structure\n");
443                 goto fail;
444         }
445
446         ic = ifp->if_l2com;
447         ic->ic_ifp = ifp;
448         ic->ic_phytype = IEEE80211_T_OFDM;      /* not only, but not used */
449         ic->ic_opmode = IEEE80211_M_STA;        /* default to BSS mode */
450
451         /* Set device capabilities. */
452         ic->ic_caps =
453                   IEEE80211_C_STA               /* station mode supported */
454                 | IEEE80211_C_IBSS              /* IBSS mode supported */
455                 | IEEE80211_C_HOSTAP            /* Host access point mode */
456                 | IEEE80211_C_MONITOR           /* monitor mode supported */
457                 | IEEE80211_C_AHDEMO            /* adhoc demo mode */
458                 | IEEE80211_C_BGSCAN            /* capable of bg scanning */
459                 | IEEE80211_C_TXPMGT            /* tx power management */
460                 | IEEE80211_C_SHSLOT            /* short slot time supported */
461                 | IEEE80211_C_WPA               /* 802.11i */
462                 | IEEE80211_C_SHPREAMBLE        /* short preamble supported */
463                 | IEEE80211_C_WME               /* 802.11e */
464                 | IEEE80211_C_PMGT              /* Station-side power mgmt */
465                 ;
466
467         ic->ic_cryptocaps =
468                   IEEE80211_CRYPTO_AES_CCM;
469
470         /*
471          * Read in the eeprom and also setup the channels for
472          * net80211. We don't set the rates as net80211 does this for us
473          */
474         if ((error = wpi_read_eeprom(sc, macaddr)) != 0) {
475                 device_printf(dev, "could not read EEPROM, error %d\n",
476                     error);
477                 goto fail;
478         }
479
480 #ifdef WPI_DEBUG
481         if (bootverbose) {
482                 device_printf(sc->sc_dev, "Regulatory Domain: %.4s\n",
483                     sc->domain);
484                 device_printf(sc->sc_dev, "Hardware Type: %c\n",
485                     sc->type > 1 ? 'B': '?');
486                 device_printf(sc->sc_dev, "Hardware Revision: %c\n",
487                     ((sc->rev & 0xf0) == 0xd0) ? 'D': '?');
488                 device_printf(sc->sc_dev, "SKU %s support 802.11a\n",
489                     supportsa ? "does" : "does not");
490
491                 /* XXX hw_config uses the PCIDEV for the Hardware rev. Must
492                    check what sc->rev really represents - benjsc 20070615 */
493         }
494 #endif
495
496         if_initname(ifp, device_get_name(dev), device_get_unit(dev));
497         ifp->if_softc = sc;
498         ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
499         ifp->if_init = wpi_init;
500         ifp->if_ioctl = wpi_ioctl;
501         ifp->if_start = wpi_start;
502         IFQ_SET_MAXLEN(&ifp->if_snd, ifqmaxlen);
503         ifp->if_snd.ifq_drv_maxlen = ifqmaxlen;
504         IFQ_SET_READY(&ifp->if_snd);
505
506         ieee80211_ifattach(ic, macaddr);
507         ic->ic_vap_create = wpi_vap_create;
508         ic->ic_vap_delete = wpi_vap_delete;
509         ic->ic_raw_xmit = wpi_raw_xmit;
510         ic->ic_node_alloc = wpi_node_alloc;
511         sc->sc_node_free = ic->ic_node_free;
512         ic->ic_node_free = wpi_node_free;
513         ic->ic_wme.wme_update = wpi_updateedca;
514         ic->ic_update_promisc = wpi_update_promisc;
515         ic->ic_update_mcast = wpi_update_mcast;
516         ic->ic_newassoc = wpi_newassoc;
517         ic->ic_scan_start = wpi_scan_start;
518         ic->ic_scan_end = wpi_scan_end;
519         ic->ic_set_channel = wpi_set_channel;
520         ic->ic_scan_curchan = wpi_scan_curchan;
521         ic->ic_scan_mindwell = wpi_scan_mindwell;
522         ic->ic_setregdomain = wpi_setregdomain;
523
524         wpi_radiotap_attach(sc);
525
526         callout_init_mtx(&sc->calib_to, &sc->rxon_mtx, 0);
527         callout_init_mtx(&sc->scan_timeout, &sc->rxon_mtx, 0);
528         callout_init_mtx(&sc->tx_timeout, &sc->txq_state_mtx, 0);
529         callout_init_mtx(&sc->watchdog_rfkill, &sc->sc_mtx, 0);
530         TASK_INIT(&sc->sc_reinittask, 0, wpi_hw_reset, sc);
531         TASK_INIT(&sc->sc_radiooff_task, 0, wpi_radio_off, sc);
532         TASK_INIT(&sc->sc_radioon_task, 0, wpi_radio_on, sc);
533         TASK_INIT(&sc->sc_start_task, 0, wpi_start_task, sc);
534
535         sc->sc_tq = taskqueue_create("wpi_taskq", M_WAITOK,
536             taskqueue_thread_enqueue, &sc->sc_tq);
537         error = taskqueue_start_threads(&sc->sc_tq, 1, 0, "wpi_taskq");
538         if (error != 0) {
539                 device_printf(dev, "can't start threads, error %d\n", error);
540                 goto fail;
541         }
542
543         wpi_sysctlattach(sc);
544
545         /*
546          * Hook our interrupt after all initialization is complete.
547          */
548         error = bus_setup_intr(dev, sc->irq, INTR_TYPE_NET | INTR_MPSAFE,
549             NULL, wpi_intr, sc, &sc->sc_ih);
550         if (error != 0) {
551                 device_printf(dev, "can't establish interrupt, error %d\n",
552                     error);
553                 goto fail;
554         }
555
556         if (bootverbose)
557                 ieee80211_announce(ic);
558
559 #ifdef WPI_DEBUG
560         if (sc->sc_debug & WPI_DEBUG_HW)
561                 ieee80211_announce_channels(ic);
562 #endif
563
564         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END, __func__);
565         return 0;
566
567 fail:   wpi_detach(dev);
568         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END_ERR, __func__);
569         return error;
570 }
571
572 /*
573  * Attach the interface to 802.11 radiotap.
574  */
575 static void
576 wpi_radiotap_attach(struct wpi_softc *sc)
577 {
578         struct ifnet *ifp = sc->sc_ifp;
579         struct ieee80211com *ic = ifp->if_l2com;
580         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_BEGIN, __func__);
581         ieee80211_radiotap_attach(ic,
582             &sc->sc_txtap.wt_ihdr, sizeof(sc->sc_txtap),
583                 WPI_TX_RADIOTAP_PRESENT,
584             &sc->sc_rxtap.wr_ihdr, sizeof(sc->sc_rxtap),
585                 WPI_RX_RADIOTAP_PRESENT);
586         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END, __func__);
587 }
588
589 static void
590 wpi_sysctlattach(struct wpi_softc *sc)
591 {
592 #ifdef WPI_DEBUG
593         struct sysctl_ctx_list *ctx = device_get_sysctl_ctx(sc->sc_dev);
594         struct sysctl_oid *tree = device_get_sysctl_tree(sc->sc_dev);
595
596         SYSCTL_ADD_INT(ctx, SYSCTL_CHILDREN(tree), OID_AUTO,
597             "debug", CTLFLAG_RW, &sc->sc_debug, sc->sc_debug,
598                 "control debugging printfs");
599 #endif
600 }
601
602 static void
603 wpi_init_beacon(struct wpi_vap *wvp)
604 {
605         struct wpi_buf *bcn = &wvp->wv_bcbuf;
606         struct wpi_cmd_beacon *cmd = (struct wpi_cmd_beacon *)&bcn->data;
607
608         cmd->id = WPI_ID_BROADCAST;
609         cmd->ofdm_mask = 0xff;
610         cmd->cck_mask = 0x0f;
611         cmd->lifetime = htole32(WPI_LIFETIME_INFINITE);
612         cmd->flags = htole32(WPI_TX_AUTO_SEQ | WPI_TX_INSERT_TSTAMP);
613
614         bcn->code = WPI_CMD_SET_BEACON;
615         bcn->ac = WPI_CMD_QUEUE_NUM;
616         bcn->size = sizeof(struct wpi_cmd_beacon);
617 }
618
619 static struct ieee80211vap *
620 wpi_vap_create(struct ieee80211com *ic, const char name[IFNAMSIZ], int unit,
621     enum ieee80211_opmode opmode, int flags,
622     const uint8_t bssid[IEEE80211_ADDR_LEN],
623     const uint8_t mac[IEEE80211_ADDR_LEN])
624 {
625         struct wpi_vap *wvp;
626         struct ieee80211vap *vap;
627
628         if (!TAILQ_EMPTY(&ic->ic_vaps))         /* only one at a time */
629                 return NULL;
630
631         wvp = (struct wpi_vap *) malloc(sizeof(struct wpi_vap),
632             M_80211_VAP, M_NOWAIT | M_ZERO);
633         if (wvp == NULL)
634                 return NULL;
635         vap = &wvp->wv_vap;
636         ieee80211_vap_setup(ic, vap, name, unit, opmode, flags, bssid, mac);
637
638         if (opmode == IEEE80211_M_IBSS || opmode == IEEE80211_M_HOSTAP) {
639                 WPI_VAP_LOCK_INIT(wvp);
640                 wpi_init_beacon(wvp);
641         }
642
643         /* Override with driver methods. */
644         vap->iv_key_set = wpi_key_set;
645         vap->iv_key_delete = wpi_key_delete;
646         wvp->wv_newstate = vap->iv_newstate;
647         vap->iv_newstate = wpi_newstate;
648         vap->iv_update_beacon = wpi_update_beacon;
649         vap->iv_max_aid = WPI_ID_IBSS_MAX - WPI_ID_IBSS_MIN + 1;
650
651         ieee80211_ratectl_init(vap);
652         /* Complete setup. */
653         ieee80211_vap_attach(vap, ieee80211_media_change,
654             ieee80211_media_status);
655         ic->ic_opmode = opmode;
656         return vap;
657 }
658
659 static void
660 wpi_vap_delete(struct ieee80211vap *vap)
661 {
662         struct wpi_vap *wvp = WPI_VAP(vap);
663         struct wpi_buf *bcn = &wvp->wv_bcbuf;
664         enum ieee80211_opmode opmode = vap->iv_opmode;
665
666         ieee80211_ratectl_deinit(vap);
667         ieee80211_vap_detach(vap);
668
669         if (opmode == IEEE80211_M_IBSS || opmode == IEEE80211_M_HOSTAP) {
670                 if (bcn->m != NULL)
671                         m_freem(bcn->m);
672
673                 WPI_VAP_LOCK_DESTROY(wvp);
674         }
675
676         free(wvp, M_80211_VAP);
677 }
678
679 static int
680 wpi_detach(device_t dev)
681 {
682         struct wpi_softc *sc = device_get_softc(dev);
683         struct ifnet *ifp = sc->sc_ifp;
684         struct ieee80211com *ic;
685         int qid;
686
687         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_BEGIN, __func__);
688
689         if (ifp != NULL) {
690                 ic = ifp->if_l2com;
691
692                 ieee80211_draintask(ic, &sc->sc_radioon_task);
693                 ieee80211_draintask(ic, &sc->sc_start_task);
694
695                 wpi_stop(sc);
696
697                 taskqueue_drain_all(sc->sc_tq);
698                 taskqueue_free(sc->sc_tq);
699
700                 callout_drain(&sc->watchdog_rfkill);
701                 callout_drain(&sc->tx_timeout);
702                 callout_drain(&sc->scan_timeout);
703                 callout_drain(&sc->calib_to);
704                 ieee80211_ifdetach(ic);
705         }
706
707         /* Uninstall interrupt handler. */
708         if (sc->irq != NULL) {
709                 bus_teardown_intr(dev, sc->irq, sc->sc_ih);
710                 bus_release_resource(dev, SYS_RES_IRQ, rman_get_rid(sc->irq),
711                     sc->irq);
712                 pci_release_msi(dev);
713         }
714
715         if (sc->txq[0].data_dmat) {
716                 /* Free DMA resources. */
717                 for (qid = 0; qid < WPI_NTXQUEUES; qid++)
718                         wpi_free_tx_ring(sc, &sc->txq[qid]);
719
720                 wpi_free_rx_ring(sc);
721                 wpi_free_shared(sc);
722         }
723
724         if (sc->fw_dma.tag)
725                 wpi_free_fwmem(sc);
726                 
727         if (sc->mem != NULL)
728                 bus_release_resource(dev, SYS_RES_MEMORY,
729                     rman_get_rid(sc->mem), sc->mem);
730
731         if (ifp != NULL)
732                 if_free(ifp);
733
734         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END, __func__);
735         WPI_TXQ_STATE_LOCK_DESTROY(sc);
736         WPI_TXQ_LOCK_DESTROY(sc);
737         WPI_NT_LOCK_DESTROY(sc);
738         WPI_RXON_LOCK_DESTROY(sc);
739         WPI_TX_LOCK_DESTROY(sc);
740         WPI_LOCK_DESTROY(sc);
741         return 0;
742 }
743
744 static int
745 wpi_shutdown(device_t dev)
746 {
747         struct wpi_softc *sc = device_get_softc(dev);
748
749         wpi_stop(sc);
750         return 0;
751 }
752
753 static int
754 wpi_suspend(device_t dev)
755 {
756         struct wpi_softc *sc = device_get_softc(dev);
757         struct ieee80211com *ic = sc->sc_ifp->if_l2com;
758
759         ieee80211_suspend_all(ic);
760         return 0;
761 }
762
763 static int
764 wpi_resume(device_t dev)
765 {
766         struct wpi_softc *sc = device_get_softc(dev);
767         struct ieee80211com *ic = sc->sc_ifp->if_l2com;
768
769         /* Clear device-specific "PCI retry timeout" register (41h). */
770         pci_write_config(dev, 0x41, 0, 1);
771
772         ieee80211_resume_all(ic);
773         return 0;
774 }
775
776 /*
777  * Grab exclusive access to NIC memory.
778  */
779 static int
780 wpi_nic_lock(struct wpi_softc *sc)
781 {
782         int ntries;
783
784         /* Request exclusive access to NIC. */
785         WPI_SETBITS(sc, WPI_GP_CNTRL, WPI_GP_CNTRL_MAC_ACCESS_REQ);
786
787         /* Spin until we actually get the lock. */
788         for (ntries = 0; ntries < 1000; ntries++) {
789                 if ((WPI_READ(sc, WPI_GP_CNTRL) &
790                     (WPI_GP_CNTRL_MAC_ACCESS_ENA | WPI_GP_CNTRL_SLEEP)) ==
791                     WPI_GP_CNTRL_MAC_ACCESS_ENA)
792                         return 0;
793                 DELAY(10);
794         }
795
796         device_printf(sc->sc_dev, "could not lock memory\n");
797
798         return ETIMEDOUT;
799 }
800
801 /*
802  * Release lock on NIC memory.
803  */
804 static __inline void
805 wpi_nic_unlock(struct wpi_softc *sc)
806 {
807         WPI_CLRBITS(sc, WPI_GP_CNTRL, WPI_GP_CNTRL_MAC_ACCESS_REQ);
808 }
809
810 static __inline uint32_t
811 wpi_prph_read(struct wpi_softc *sc, uint32_t addr)
812 {
813         WPI_WRITE(sc, WPI_PRPH_RADDR, WPI_PRPH_DWORD | addr);
814         WPI_BARRIER_READ_WRITE(sc);
815         return WPI_READ(sc, WPI_PRPH_RDATA);
816 }
817
818 static __inline void
819 wpi_prph_write(struct wpi_softc *sc, uint32_t addr, uint32_t data)
820 {
821         WPI_WRITE(sc, WPI_PRPH_WADDR, WPI_PRPH_DWORD | addr);
822         WPI_BARRIER_WRITE(sc);
823         WPI_WRITE(sc, WPI_PRPH_WDATA, data);
824 }
825
826 static __inline void
827 wpi_prph_setbits(struct wpi_softc *sc, uint32_t addr, uint32_t mask)
828 {
829         wpi_prph_write(sc, addr, wpi_prph_read(sc, addr) | mask);
830 }
831
832 static __inline void
833 wpi_prph_clrbits(struct wpi_softc *sc, uint32_t addr, uint32_t mask)
834 {
835         wpi_prph_write(sc, addr, wpi_prph_read(sc, addr) & ~mask);
836 }
837
838 static __inline void
839 wpi_prph_write_region_4(struct wpi_softc *sc, uint32_t addr,
840     const uint32_t *data, int count)
841 {
842         for (; count > 0; count--, data++, addr += 4)
843                 wpi_prph_write(sc, addr, *data);
844 }
845
846 static __inline uint32_t
847 wpi_mem_read(struct wpi_softc *sc, uint32_t addr)
848 {
849         WPI_WRITE(sc, WPI_MEM_RADDR, addr);
850         WPI_BARRIER_READ_WRITE(sc);
851         return WPI_READ(sc, WPI_MEM_RDATA);
852 }
853
854 static __inline void
855 wpi_mem_read_region_4(struct wpi_softc *sc, uint32_t addr, uint32_t *data,
856     int count)
857 {
858         for (; count > 0; count--, addr += 4)
859                 *data++ = wpi_mem_read(sc, addr);
860 }
861
862 static int
863 wpi_read_prom_data(struct wpi_softc *sc, uint32_t addr, void *data, int count)
864 {
865         uint8_t *out = data;
866         uint32_t val;
867         int error, ntries;
868
869         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_BEGIN, __func__);
870
871         if ((error = wpi_nic_lock(sc)) != 0)
872                 return error;
873
874         for (; count > 0; count -= 2, addr++) {
875                 WPI_WRITE(sc, WPI_EEPROM, addr << 2);
876                 for (ntries = 0; ntries < 10; ntries++) {
877                         val = WPI_READ(sc, WPI_EEPROM);
878                         if (val & WPI_EEPROM_READ_VALID)
879                                 break;
880                         DELAY(5);
881                 }
882                 if (ntries == 10) {
883                         device_printf(sc->sc_dev,
884                             "timeout reading ROM at 0x%x\n", addr);
885                         return ETIMEDOUT;
886                 }
887                 *out++= val >> 16;
888                 if (count > 1)
889                         *out ++= val >> 24;
890         }
891
892         wpi_nic_unlock(sc);
893
894         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END, __func__);
895
896         return 0;
897 }
898
899 static void
900 wpi_dma_map_addr(void *arg, bus_dma_segment_t *segs, int nsegs, int error)
901 {
902         if (error != 0)
903                 return;
904         KASSERT(nsegs == 1, ("too many DMA segments, %d should be 1", nsegs));
905         *(bus_addr_t *)arg = segs[0].ds_addr;
906 }
907
908 /*
909  * Allocates a contiguous block of dma memory of the requested size and
910  * alignment.
911  */
912 static int
913 wpi_dma_contig_alloc(struct wpi_softc *sc, struct wpi_dma_info *dma,
914     void **kvap, bus_size_t size, bus_size_t alignment)
915 {
916         int error;
917
918         dma->tag = NULL;
919         dma->size = size;
920
921         error = bus_dma_tag_create(bus_get_dma_tag(sc->sc_dev), alignment,
922             0, BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL, size,
923             1, size, BUS_DMA_NOWAIT, NULL, NULL, &dma->tag);
924         if (error != 0)
925                 goto fail;
926
927         error = bus_dmamem_alloc(dma->tag, (void **)&dma->vaddr,
928             BUS_DMA_NOWAIT | BUS_DMA_ZERO | BUS_DMA_COHERENT, &dma->map);
929         if (error != 0)
930                 goto fail;
931
932         error = bus_dmamap_load(dma->tag, dma->map, dma->vaddr, size,
933             wpi_dma_map_addr, &dma->paddr, BUS_DMA_NOWAIT);
934         if (error != 0)
935                 goto fail;
936
937         bus_dmamap_sync(dma->tag, dma->map, BUS_DMASYNC_PREWRITE);
938
939         if (kvap != NULL)
940                 *kvap = dma->vaddr;
941
942         return 0;
943
944 fail:   wpi_dma_contig_free(dma);
945         return error;
946 }
947
948 static void
949 wpi_dma_contig_free(struct wpi_dma_info *dma)
950 {
951         if (dma->vaddr != NULL) {
952                 bus_dmamap_sync(dma->tag, dma->map,
953                     BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
954                 bus_dmamap_unload(dma->tag, dma->map);
955                 bus_dmamem_free(dma->tag, dma->vaddr, dma->map);
956                 dma->vaddr = NULL;
957         }
958         if (dma->tag != NULL) {
959                 bus_dma_tag_destroy(dma->tag);
960                 dma->tag = NULL;
961         }
962 }
963
964 /*
965  * Allocate a shared page between host and NIC.
966  */
967 static int
968 wpi_alloc_shared(struct wpi_softc *sc)
969 {
970         /* Shared buffer must be aligned on a 4KB boundary. */
971         return wpi_dma_contig_alloc(sc, &sc->shared_dma,
972             (void **)&sc->shared, sizeof (struct wpi_shared), 4096);
973 }
974
975 static void
976 wpi_free_shared(struct wpi_softc *sc)
977 {
978         wpi_dma_contig_free(&sc->shared_dma);
979 }
980
981 /*
982  * Allocate DMA-safe memory for firmware transfer.
983  */
984 static int
985 wpi_alloc_fwmem(struct wpi_softc *sc)
986 {
987         /* Must be aligned on a 16-byte boundary. */
988         return wpi_dma_contig_alloc(sc, &sc->fw_dma, NULL,
989             WPI_FW_TEXT_MAXSZ + WPI_FW_DATA_MAXSZ, 16);
990 }
991
992 static void
993 wpi_free_fwmem(struct wpi_softc *sc)
994 {
995         wpi_dma_contig_free(&sc->fw_dma);
996 }
997
998 static int
999 wpi_alloc_rx_ring(struct wpi_softc *sc)
1000 {
1001         struct wpi_rx_ring *ring = &sc->rxq;
1002         bus_size_t size;
1003         int i, error;
1004
1005         ring->cur = 0;
1006         ring->update = 0;
1007
1008         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_BEGIN, __func__);
1009
1010         /* Allocate RX descriptors (16KB aligned.) */
1011         size = WPI_RX_RING_COUNT * sizeof (uint32_t);
1012         error = wpi_dma_contig_alloc(sc, &ring->desc_dma,
1013             (void **)&ring->desc, size, WPI_RING_DMA_ALIGN);
1014         if (error != 0) {
1015                 device_printf(sc->sc_dev,
1016                     "%s: could not allocate RX ring DMA memory, error %d\n",
1017                     __func__, error);
1018                 goto fail;
1019         }
1020
1021         /* Create RX buffer DMA tag. */
1022         error = bus_dma_tag_create(bus_get_dma_tag(sc->sc_dev), 1, 0, 
1023             BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL,
1024             MJUMPAGESIZE, 1, MJUMPAGESIZE, BUS_DMA_NOWAIT, NULL, NULL,
1025             &ring->data_dmat);
1026         if (error != 0) {
1027                 device_printf(sc->sc_dev,
1028                     "%s: could not create RX buf DMA tag, error %d\n",
1029                     __func__, error);
1030                 goto fail;
1031         }
1032
1033         /*
1034          * Allocate and map RX buffers.
1035          */
1036         for (i = 0; i < WPI_RX_RING_COUNT; i++) {
1037                 struct wpi_rx_data *data = &ring->data[i];
1038                 bus_addr_t paddr;
1039
1040                 error = bus_dmamap_create(ring->data_dmat, 0, &data->map);
1041                 if (error != 0) {
1042                         device_printf(sc->sc_dev,
1043                             "%s: could not create RX buf DMA map, error %d\n",
1044                             __func__, error);
1045                         goto fail;
1046                 }
1047
1048                 data->m = m_getjcl(M_NOWAIT, MT_DATA, M_PKTHDR, MJUMPAGESIZE);
1049                 if (data->m == NULL) {
1050                         device_printf(sc->sc_dev,
1051                             "%s: could not allocate RX mbuf\n", __func__);
1052                         error = ENOBUFS;
1053                         goto fail;
1054                 }
1055
1056                 error = bus_dmamap_load(ring->data_dmat, data->map,
1057                     mtod(data->m, void *), MJUMPAGESIZE, wpi_dma_map_addr,
1058                     &paddr, BUS_DMA_NOWAIT);
1059                 if (error != 0 && error != EFBIG) {
1060                         device_printf(sc->sc_dev,
1061                             "%s: can't map mbuf (error %d)\n", __func__,
1062                             error);
1063                         goto fail;
1064                 }
1065
1066                 /* Set physical address of RX buffer. */
1067                 ring->desc[i] = htole32(paddr);
1068         }
1069
1070         bus_dmamap_sync(ring->desc_dma.tag, ring->desc_dma.map,
1071             BUS_DMASYNC_PREWRITE);
1072
1073         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END, __func__);
1074
1075         return 0;
1076
1077 fail:   wpi_free_rx_ring(sc);
1078
1079         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END_ERR, __func__);
1080
1081         return error;
1082 }
1083
1084 static void
1085 wpi_update_rx_ring(struct wpi_softc *sc)
1086 {
1087         struct wpi_rx_ring *ring = &sc->rxq;
1088
1089         if (ring->update != 0) {
1090                 /* Wait for INT_WAKEUP event. */
1091                 return;
1092         }
1093
1094         if (WPI_READ(sc, WPI_UCODE_GP1) & WPI_UCODE_GP1_MAC_SLEEP) {
1095                 DPRINTF(sc, WPI_DEBUG_PWRSAVE, "%s: wakeup request\n",
1096                     __func__);
1097
1098                 WPI_SETBITS(sc, WPI_GP_CNTRL, WPI_GP_CNTRL_MAC_ACCESS_REQ);
1099                 ring->update = 1;
1100         } else
1101                 WPI_WRITE(sc, WPI_FH_RX_WPTR, ring->cur & ~7);
1102 }
1103
1104 static void
1105 wpi_reset_rx_ring(struct wpi_softc *sc)
1106 {
1107         struct wpi_rx_ring *ring = &sc->rxq;
1108         int ntries;
1109
1110         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_DOING, __func__);
1111
1112         if (wpi_nic_lock(sc) == 0) {
1113                 WPI_WRITE(sc, WPI_FH_RX_CONFIG, 0);
1114                 for (ntries = 0; ntries < 1000; ntries++) {
1115                         if (WPI_READ(sc, WPI_FH_RX_STATUS) &
1116                             WPI_FH_RX_STATUS_IDLE)
1117                                 break;
1118                         DELAY(10);
1119                 }
1120                 wpi_nic_unlock(sc);
1121         }
1122
1123         ring->cur = 0;
1124         ring->update = 0;
1125 }
1126
1127 static void
1128 wpi_free_rx_ring(struct wpi_softc *sc)
1129 {
1130         struct wpi_rx_ring *ring = &sc->rxq;
1131         int i;
1132
1133         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_DOING, __func__);
1134
1135         wpi_dma_contig_free(&ring->desc_dma);
1136
1137         for (i = 0; i < WPI_RX_RING_COUNT; i++) {
1138                 struct wpi_rx_data *data = &ring->data[i];
1139
1140                 if (data->m != NULL) {
1141                         bus_dmamap_sync(ring->data_dmat, data->map,
1142                             BUS_DMASYNC_POSTREAD);
1143                         bus_dmamap_unload(ring->data_dmat, data->map);
1144                         m_freem(data->m);
1145                         data->m = NULL;
1146                 }
1147                 if (data->map != NULL)
1148                         bus_dmamap_destroy(ring->data_dmat, data->map);
1149         }
1150         if (ring->data_dmat != NULL) {
1151                 bus_dma_tag_destroy(ring->data_dmat);
1152                 ring->data_dmat = NULL;
1153         }
1154 }
1155
1156 static int
1157 wpi_alloc_tx_ring(struct wpi_softc *sc, struct wpi_tx_ring *ring, int qid)
1158 {
1159         bus_addr_t paddr;
1160         bus_size_t size;
1161         int i, error;
1162
1163         ring->qid = qid;
1164         ring->queued = 0;
1165         ring->cur = 0;
1166         ring->update = 0;
1167
1168         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_BEGIN, __func__);
1169
1170         /* Allocate TX descriptors (16KB aligned.) */
1171         size = WPI_TX_RING_COUNT * sizeof (struct wpi_tx_desc);
1172         error = wpi_dma_contig_alloc(sc, &ring->desc_dma, (void **)&ring->desc,
1173             size, WPI_RING_DMA_ALIGN);
1174         if (error != 0) {
1175                 device_printf(sc->sc_dev,
1176                     "%s: could not allocate TX ring DMA memory, error %d\n",
1177                     __func__, error);
1178                 goto fail;
1179         }
1180
1181         /* Update shared area with ring physical address. */
1182         sc->shared->txbase[qid] = htole32(ring->desc_dma.paddr);
1183         bus_dmamap_sync(sc->shared_dma.tag, sc->shared_dma.map,
1184             BUS_DMASYNC_PREWRITE);
1185
1186         /*
1187          * We only use rings 0 through 4 (4 EDCA + cmd) so there is no need
1188          * to allocate commands space for other rings.
1189          * XXX Do we really need to allocate descriptors for other rings?
1190          */
1191         if (qid > WPI_CMD_QUEUE_NUM) {
1192                 DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END, __func__);
1193                 return 0;
1194         }
1195
1196         size = WPI_TX_RING_COUNT * sizeof (struct wpi_tx_cmd);
1197         error = wpi_dma_contig_alloc(sc, &ring->cmd_dma, (void **)&ring->cmd,
1198             size, 4);
1199         if (error != 0) {
1200                 device_printf(sc->sc_dev,
1201                     "%s: could not allocate TX cmd DMA memory, error %d\n",
1202                     __func__, error);
1203                 goto fail;
1204         }
1205
1206         error = bus_dma_tag_create(bus_get_dma_tag(sc->sc_dev), 1, 0,
1207             BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL, MCLBYTES,
1208             WPI_MAX_SCATTER - 1, MCLBYTES, BUS_DMA_NOWAIT, NULL, NULL,
1209             &ring->data_dmat);
1210         if (error != 0) {
1211                 device_printf(sc->sc_dev,
1212                     "%s: could not create TX buf DMA tag, error %d\n",
1213                     __func__, error);
1214                 goto fail;
1215         }
1216
1217         paddr = ring->cmd_dma.paddr;
1218         for (i = 0; i < WPI_TX_RING_COUNT; i++) {
1219                 struct wpi_tx_data *data = &ring->data[i];
1220
1221                 data->cmd_paddr = paddr;
1222                 paddr += sizeof (struct wpi_tx_cmd);
1223
1224                 error = bus_dmamap_create(ring->data_dmat, 0, &data->map);
1225                 if (error != 0) {
1226                         device_printf(sc->sc_dev,
1227                             "%s: could not create TX buf DMA map, error %d\n",
1228                             __func__, error);
1229                         goto fail;
1230                 }
1231         }
1232
1233         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END, __func__);
1234
1235         return 0;
1236
1237 fail:   wpi_free_tx_ring(sc, ring);
1238         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END_ERR, __func__);
1239         return error;
1240 }
1241
1242 static void
1243 wpi_update_tx_ring(struct wpi_softc *sc, struct wpi_tx_ring *ring)
1244 {
1245         if (ring->update != 0) {
1246                 /* Wait for INT_WAKEUP event. */
1247                 return;
1248         }
1249
1250         if (WPI_READ(sc, WPI_UCODE_GP1) & WPI_UCODE_GP1_MAC_SLEEP) {
1251                 DPRINTF(sc, WPI_DEBUG_PWRSAVE, "%s (%d): requesting wakeup\n",
1252                     __func__, ring->qid);
1253
1254                 WPI_SETBITS(sc, WPI_GP_CNTRL, WPI_GP_CNTRL_MAC_ACCESS_REQ);
1255                 ring->update = 1;
1256         } else
1257                 WPI_WRITE(sc, WPI_HBUS_TARG_WRPTR, ring->qid << 8 | ring->cur);
1258 }
1259
1260 static void
1261 wpi_reset_tx_ring(struct wpi_softc *sc, struct wpi_tx_ring *ring)
1262 {
1263         int i;
1264
1265         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_DOING, __func__);
1266
1267         for (i = 0; i < WPI_TX_RING_COUNT; i++) {
1268                 struct wpi_tx_data *data = &ring->data[i];
1269
1270                 if (data->m != NULL) {
1271                         bus_dmamap_sync(ring->data_dmat, data->map,
1272                             BUS_DMASYNC_POSTWRITE);
1273                         bus_dmamap_unload(ring->data_dmat, data->map);
1274                         m_freem(data->m);
1275                         data->m = NULL;
1276                 }
1277         }
1278         /* Clear TX descriptors. */
1279         memset(ring->desc, 0, ring->desc_dma.size);
1280         bus_dmamap_sync(ring->desc_dma.tag, ring->desc_dma.map,
1281             BUS_DMASYNC_PREWRITE);
1282         sc->qfullmsk &= ~(1 << ring->qid);
1283         ring->queued = 0;
1284         ring->cur = 0;
1285         ring->update = 0;
1286 }
1287
1288 static void
1289 wpi_free_tx_ring(struct wpi_softc *sc, struct wpi_tx_ring *ring)
1290 {
1291         int i;
1292
1293         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_DOING, __func__);
1294
1295         wpi_dma_contig_free(&ring->desc_dma);
1296         wpi_dma_contig_free(&ring->cmd_dma);
1297
1298         for (i = 0; i < WPI_TX_RING_COUNT; i++) {
1299                 struct wpi_tx_data *data = &ring->data[i];
1300
1301                 if (data->m != NULL) {
1302                         bus_dmamap_sync(ring->data_dmat, data->map,
1303                             BUS_DMASYNC_POSTWRITE);
1304                         bus_dmamap_unload(ring->data_dmat, data->map);
1305                         m_freem(data->m);
1306                 }
1307                 if (data->map != NULL)
1308                         bus_dmamap_destroy(ring->data_dmat, data->map);
1309         }
1310         if (ring->data_dmat != NULL) {
1311                 bus_dma_tag_destroy(ring->data_dmat);
1312                 ring->data_dmat = NULL;
1313         }
1314 }
1315
1316 /*
1317  * Extract various information from EEPROM.
1318  */
1319 static int
1320 wpi_read_eeprom(struct wpi_softc *sc, uint8_t macaddr[IEEE80211_ADDR_LEN])
1321 {
1322 #define WPI_CHK(res) do {               \
1323         if ((error = res) != 0)         \
1324                 goto fail;              \
1325 } while (0)
1326         int error, i;
1327
1328         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_BEGIN, __func__);
1329
1330         /* Adapter has to be powered on for EEPROM access to work. */
1331         if ((error = wpi_apm_init(sc)) != 0) {
1332                 device_printf(sc->sc_dev,
1333                     "%s: could not power ON adapter, error %d\n", __func__,
1334                     error);
1335                 return error;
1336         }
1337
1338         if ((WPI_READ(sc, WPI_EEPROM_GP) & 0x6) == 0) {
1339                 device_printf(sc->sc_dev, "bad EEPROM signature\n");
1340                 error = EIO;
1341                 goto fail;
1342         }
1343         /* Clear HW ownership of EEPROM. */
1344         WPI_CLRBITS(sc, WPI_EEPROM_GP, WPI_EEPROM_GP_IF_OWNER);
1345
1346         /* Read the hardware capabilities, revision and SKU type. */
1347         WPI_CHK(wpi_read_prom_data(sc, WPI_EEPROM_SKU_CAP, &sc->cap,
1348             sizeof(sc->cap)));
1349         WPI_CHK(wpi_read_prom_data(sc, WPI_EEPROM_REVISION, &sc->rev,
1350             sizeof(sc->rev)));
1351         WPI_CHK(wpi_read_prom_data(sc, WPI_EEPROM_TYPE, &sc->type,
1352             sizeof(sc->type)));
1353
1354         sc->rev = le16toh(sc->rev);
1355         DPRINTF(sc, WPI_DEBUG_EEPROM, "cap=%x rev=%x type=%x\n", sc->cap,
1356             sc->rev, sc->type);
1357
1358         /* Read the regulatory domain (4 ASCII characters.) */
1359         WPI_CHK(wpi_read_prom_data(sc, WPI_EEPROM_DOMAIN, sc->domain,
1360             sizeof(sc->domain)));
1361
1362         /* Read MAC address. */
1363         WPI_CHK(wpi_read_prom_data(sc, WPI_EEPROM_MAC, macaddr,
1364             IEEE80211_ADDR_LEN));
1365
1366         /* Read the list of authorized channels. */
1367         for (i = 0; i < WPI_CHAN_BANDS_COUNT; i++)
1368                 WPI_CHK(wpi_read_eeprom_channels(sc, i));
1369
1370         /* Read the list of TX power groups. */
1371         for (i = 0; i < WPI_POWER_GROUPS_COUNT; i++)
1372                 WPI_CHK(wpi_read_eeprom_group(sc, i));
1373
1374 fail:   wpi_apm_stop(sc);       /* Power OFF adapter. */
1375
1376         DPRINTF(sc, WPI_DEBUG_TRACE, error ? TRACE_STR_END_ERR : TRACE_STR_END,
1377             __func__);
1378
1379         return error;
1380 #undef WPI_CHK
1381 }
1382
1383 /*
1384  * Translate EEPROM flags to net80211.
1385  */
1386 static uint32_t
1387 wpi_eeprom_channel_flags(struct wpi_eeprom_chan *channel)
1388 {
1389         uint32_t nflags;
1390
1391         nflags = 0;
1392         if ((channel->flags & WPI_EEPROM_CHAN_ACTIVE) == 0)
1393                 nflags |= IEEE80211_CHAN_PASSIVE;
1394         if ((channel->flags & WPI_EEPROM_CHAN_IBSS) == 0)
1395                 nflags |= IEEE80211_CHAN_NOADHOC;
1396         if (channel->flags & WPI_EEPROM_CHAN_RADAR) {
1397                 nflags |= IEEE80211_CHAN_DFS;
1398                 /* XXX apparently IBSS may still be marked */
1399                 nflags |= IEEE80211_CHAN_NOADHOC;
1400         }
1401
1402         /* XXX HOSTAP uses WPI_MODE_IBSS */
1403         if (nflags & IEEE80211_CHAN_NOADHOC)
1404                 nflags |= IEEE80211_CHAN_NOHOSTAP;
1405
1406         return nflags;
1407 }
1408
1409 static void
1410 wpi_read_eeprom_band(struct wpi_softc *sc, int n)
1411 {
1412         struct ifnet *ifp = sc->sc_ifp;
1413         struct ieee80211com *ic = ifp->if_l2com;
1414         struct wpi_eeprom_chan *channels = sc->eeprom_channels[n];
1415         const struct wpi_chan_band *band = &wpi_bands[n];
1416         struct ieee80211_channel *c;
1417         uint8_t chan;
1418         int i, nflags;
1419
1420         for (i = 0; i < band->nchan; i++) {
1421                 if (!(channels[i].flags & WPI_EEPROM_CHAN_VALID)) {
1422                         DPRINTF(sc, WPI_DEBUG_EEPROM,
1423                             "Channel Not Valid: %d, band %d\n",
1424                              band->chan[i],n);
1425                         continue;
1426                 }
1427
1428                 chan = band->chan[i];
1429                 nflags = wpi_eeprom_channel_flags(&channels[i]);
1430
1431                 c = &ic->ic_channels[ic->ic_nchans++];
1432                 c->ic_ieee = chan;
1433                 c->ic_maxregpower = channels[i].maxpwr;
1434                 c->ic_maxpower = 2*c->ic_maxregpower;
1435
1436                 if (n == 0) {   /* 2GHz band */
1437                         c->ic_freq = ieee80211_ieee2mhz(chan,
1438                             IEEE80211_CHAN_G);
1439
1440                         /* G =>'s B is supported */
1441                         c->ic_flags = IEEE80211_CHAN_B | nflags;
1442                         c = &ic->ic_channels[ic->ic_nchans++];
1443                         c[0] = c[-1];
1444                         c->ic_flags = IEEE80211_CHAN_G | nflags;
1445                 } else {        /* 5GHz band */
1446                         c->ic_freq = ieee80211_ieee2mhz(chan,
1447                             IEEE80211_CHAN_A);
1448
1449                         c->ic_flags = IEEE80211_CHAN_A | nflags;
1450                 }
1451
1452                 /* Save maximum allowed TX power for this channel. */
1453                 sc->maxpwr[chan] = channels[i].maxpwr;
1454
1455                 DPRINTF(sc, WPI_DEBUG_EEPROM,
1456                     "adding chan %d (%dMHz) flags=0x%x maxpwr=%d passive=%d,"
1457                     " offset %d\n", chan, c->ic_freq,
1458                     channels[i].flags, sc->maxpwr[chan],
1459                     IEEE80211_IS_CHAN_PASSIVE(c), ic->ic_nchans);
1460         }
1461 }
1462
1463 /**
1464  * Read the eeprom to find out what channels are valid for the given
1465  * band and update net80211 with what we find.
1466  */
1467 static int
1468 wpi_read_eeprom_channels(struct wpi_softc *sc, int n)
1469 {
1470         struct ifnet *ifp = sc->sc_ifp;
1471         struct ieee80211com *ic = ifp->if_l2com;
1472         const struct wpi_chan_band *band = &wpi_bands[n];
1473         int error;
1474
1475         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_BEGIN, __func__);
1476
1477         error = wpi_read_prom_data(sc, band->addr, &sc->eeprom_channels[n],
1478             band->nchan * sizeof (struct wpi_eeprom_chan));
1479         if (error != 0) {
1480                 DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END_ERR, __func__);
1481                 return error;
1482         }
1483
1484         wpi_read_eeprom_band(sc, n);
1485
1486         ieee80211_sort_channels(ic->ic_channels, ic->ic_nchans);
1487
1488         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END, __func__);
1489
1490         return 0;
1491 }
1492
1493 static struct wpi_eeprom_chan *
1494 wpi_find_eeprom_channel(struct wpi_softc *sc, struct ieee80211_channel *c)
1495 {
1496         int i, j;
1497
1498         for (j = 0; j < WPI_CHAN_BANDS_COUNT; j++)
1499                 for (i = 0; i < wpi_bands[j].nchan; i++)
1500                         if (wpi_bands[j].chan[i] == c->ic_ieee)
1501                                 return &sc->eeprom_channels[j][i];
1502
1503         return NULL;
1504 }
1505
1506 /*
1507  * Enforce flags read from EEPROM.
1508  */
1509 static int
1510 wpi_setregdomain(struct ieee80211com *ic, struct ieee80211_regdomain *rd,
1511     int nchan, struct ieee80211_channel chans[])
1512 {
1513         struct ifnet *ifp = ic->ic_ifp;
1514         struct wpi_softc *sc = ifp->if_softc;
1515         int i;
1516
1517         for (i = 0; i < nchan; i++) {
1518                 struct ieee80211_channel *c = &chans[i];
1519                 struct wpi_eeprom_chan *channel;
1520
1521                 channel = wpi_find_eeprom_channel(sc, c);
1522                 if (channel == NULL) {
1523                         if_printf(ic->ic_ifp,
1524                             "%s: invalid channel %u freq %u/0x%x\n",
1525                             __func__, c->ic_ieee, c->ic_freq, c->ic_flags);
1526                         return EINVAL;
1527                 }
1528                 c->ic_flags |= wpi_eeprom_channel_flags(channel);
1529         }
1530
1531         return 0;
1532 }
1533
1534 static int
1535 wpi_read_eeprom_group(struct wpi_softc *sc, int n)
1536 {
1537         struct wpi_power_group *group = &sc->groups[n];
1538         struct wpi_eeprom_group rgroup;
1539         int i, error;
1540
1541         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_BEGIN, __func__);
1542
1543         if ((error = wpi_read_prom_data(sc, WPI_EEPROM_POWER_GRP + n * 32,
1544             &rgroup, sizeof rgroup)) != 0) {
1545                 DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END_ERR, __func__);
1546                 return error;
1547         }
1548
1549         /* Save TX power group information. */
1550         group->chan   = rgroup.chan;
1551         group->maxpwr = rgroup.maxpwr;
1552         /* Retrieve temperature at which the samples were taken. */
1553         group->temp   = (int16_t)le16toh(rgroup.temp);
1554
1555         DPRINTF(sc, WPI_DEBUG_EEPROM,
1556             "power group %d: chan=%d maxpwr=%d temp=%d\n", n, group->chan,
1557             group->maxpwr, group->temp);
1558
1559         for (i = 0; i < WPI_SAMPLES_COUNT; i++) {
1560                 group->samples[i].index = rgroup.samples[i].index;
1561                 group->samples[i].power = rgroup.samples[i].power;
1562
1563                 DPRINTF(sc, WPI_DEBUG_EEPROM,
1564                     "\tsample %d: index=%d power=%d\n", i,
1565                     group->samples[i].index, group->samples[i].power);
1566         }
1567
1568         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END, __func__);
1569
1570         return 0;
1571 }
1572
1573 static int
1574 wpi_add_node_entry_adhoc(struct wpi_softc *sc)
1575 {
1576         int newid = WPI_ID_IBSS_MIN;
1577
1578         for (; newid <= WPI_ID_IBSS_MAX; newid++) {
1579                 if ((sc->nodesmsk & (1 << newid)) == 0) {
1580                         sc->nodesmsk |= 1 << newid;
1581                         return newid;
1582                 }
1583         }
1584
1585         return WPI_ID_UNDEFINED;
1586 }
1587
1588 static __inline int
1589 wpi_add_node_entry_sta(struct wpi_softc *sc)
1590 {
1591         sc->nodesmsk |= 1 << WPI_ID_BSS;
1592
1593         return WPI_ID_BSS;
1594 }
1595
1596 static __inline int
1597 wpi_check_node_entry(struct wpi_softc *sc, uint8_t id)
1598 {
1599         if (id == WPI_ID_UNDEFINED)
1600                 return 0;
1601
1602         return (sc->nodesmsk >> id) & 1;
1603 }
1604
1605 static __inline void
1606 wpi_clear_node_table(struct wpi_softc *sc)
1607 {
1608         sc->nodesmsk = 0;
1609 }
1610
1611 static __inline void
1612 wpi_del_node_entry(struct wpi_softc *sc, uint8_t id)
1613 {
1614         sc->nodesmsk &= ~(1 << id);
1615 }
1616
1617 static struct ieee80211_node *
1618 wpi_node_alloc(struct ieee80211vap *vap, const uint8_t mac[IEEE80211_ADDR_LEN])
1619 {
1620         struct wpi_node *wn;
1621
1622         wn = malloc(sizeof (struct wpi_node), M_80211_NODE,
1623             M_NOWAIT | M_ZERO);
1624
1625         if (wn == NULL)
1626                 return NULL;
1627
1628         wn->id = WPI_ID_UNDEFINED;
1629
1630         return &wn->ni;
1631 }
1632
1633 static void
1634 wpi_node_free(struct ieee80211_node *ni)
1635 {
1636         struct ieee80211com *ic = ni->ni_ic;
1637         struct wpi_softc *sc = ic->ic_ifp->if_softc;
1638         struct wpi_node *wn = WPI_NODE(ni);
1639
1640         if (wn->id != WPI_ID_UNDEFINED) {
1641                 WPI_NT_LOCK(sc);
1642                 if (wpi_check_node_entry(sc, wn->id)) {
1643                         wpi_del_node_entry(sc, wn->id);
1644                         wpi_del_node(sc, ni);
1645                 }
1646                 WPI_NT_UNLOCK(sc);
1647         }
1648
1649         sc->sc_node_free(ni);
1650 }
1651
1652 static __inline int
1653 wpi_check_bss_filter(struct wpi_softc *sc)
1654 {
1655         return (sc->rxon.filter & htole32(WPI_FILTER_BSS)) != 0;
1656 }
1657
1658 /**
1659  * Called by net80211 when ever there is a change to 80211 state machine
1660  */
1661 static int
1662 wpi_newstate(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
1663 {
1664         struct wpi_vap *wvp = WPI_VAP(vap);
1665         struct ieee80211com *ic = vap->iv_ic;
1666         struct ifnet *ifp = ic->ic_ifp;
1667         struct wpi_softc *sc = ifp->if_softc;
1668         int error = 0;
1669
1670         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_BEGIN, __func__);
1671
1672         DPRINTF(sc, WPI_DEBUG_STATE, "%s: %s -> %s\n", __func__,
1673                 ieee80211_state_name[vap->iv_state],
1674                 ieee80211_state_name[nstate]);
1675
1676         if (vap->iv_state == IEEE80211_S_RUN && nstate < IEEE80211_S_RUN) {
1677                 if ((error = wpi_set_pslevel(sc, 0, 0, 1)) != 0) {
1678                         device_printf(sc->sc_dev,
1679                             "%s: could not set power saving level\n",
1680                             __func__);
1681                         return error;
1682                 }
1683
1684                 wpi_set_led(sc, WPI_LED_LINK, 1, 0);
1685         }
1686
1687         switch (nstate) {
1688         case IEEE80211_S_SCAN:
1689                 WPI_RXON_LOCK(sc);
1690                 if (wpi_check_bss_filter(sc) != 0) {
1691                         sc->rxon.filter &= ~htole32(WPI_FILTER_BSS);
1692                         if ((error = wpi_send_rxon(sc, 0, 1)) != 0) {
1693                                 device_printf(sc->sc_dev,
1694                                     "%s: could not send RXON\n", __func__);
1695                         }
1696                 }
1697                 WPI_RXON_UNLOCK(sc);
1698                 break;
1699
1700         case IEEE80211_S_ASSOC:
1701                 if (vap->iv_state != IEEE80211_S_RUN)
1702                         break;
1703                 /* FALLTHROUGH */
1704         case IEEE80211_S_AUTH:
1705                 /*
1706                  * The node must be registered in the firmware before auth.
1707                  * Also the associd must be cleared on RUN -> ASSOC
1708                  * transitions.
1709                  */
1710                 if ((error = wpi_auth(sc, vap)) != 0) {
1711                         device_printf(sc->sc_dev,
1712                             "%s: could not move to AUTH state, error %d\n",
1713                             __func__, error);
1714                 }
1715                 break;
1716
1717         case IEEE80211_S_RUN:
1718                 /*
1719                  * RUN -> RUN transition; Just restart the timers.
1720                  */
1721                 if (vap->iv_state == IEEE80211_S_RUN) {
1722                         WPI_RXON_LOCK(sc);
1723                         wpi_calib_timeout(sc);
1724                         WPI_RXON_UNLOCK(sc);
1725                         break;
1726                 }
1727
1728                 /*
1729                  * !RUN -> RUN requires setting the association id
1730                  * which is done with a firmware cmd.  We also defer
1731                  * starting the timers until that work is done.
1732                  */
1733                 if ((error = wpi_run(sc, vap)) != 0) {
1734                         device_printf(sc->sc_dev,
1735                             "%s: could not move to RUN state\n", __func__);
1736                 }
1737                 break;
1738
1739         default:
1740                 break;
1741         }
1742         if (error != 0) {
1743                 DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END_ERR, __func__);
1744                 return error;
1745         }
1746
1747         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END, __func__);
1748
1749         return wvp->wv_newstate(vap, nstate, arg);
1750 }
1751
1752 static void
1753 wpi_calib_timeout(void *arg)
1754 {
1755         struct wpi_softc *sc = arg;
1756
1757         if (wpi_check_bss_filter(sc) == 0)
1758                 return;
1759
1760         wpi_power_calibration(sc);
1761
1762         callout_reset(&sc->calib_to, 60*hz, wpi_calib_timeout, sc);
1763 }
1764
1765 static __inline uint8_t
1766 rate2plcp(const uint8_t rate)
1767 {
1768         switch (rate) {
1769         case 12:        return 0xd;
1770         case 18:        return 0xf;
1771         case 24:        return 0x5;
1772         case 36:        return 0x7;
1773         case 48:        return 0x9;
1774         case 72:        return 0xb;
1775         case 96:        return 0x1;
1776         case 108:       return 0x3;
1777         case 2:         return 10;
1778         case 4:         return 20;
1779         case 11:        return 55;
1780         case 22:        return 110;
1781         default:        return 0;
1782         }
1783 }
1784
1785 static __inline uint8_t
1786 plcp2rate(const uint8_t plcp)
1787 {
1788         switch (plcp) {
1789         case 0xd:       return 12;
1790         case 0xf:       return 18;
1791         case 0x5:       return 24;
1792         case 0x7:       return 36;
1793         case 0x9:       return 48;
1794         case 0xb:       return 72;
1795         case 0x1:       return 96;
1796         case 0x3:       return 108;
1797         case 10:        return 2;
1798         case 20:        return 4;
1799         case 55:        return 11;
1800         case 110:       return 22;
1801         default:        return 0;
1802         }
1803 }
1804
1805 /* Quickly determine if a given rate is CCK or OFDM. */
1806 #define WPI_RATE_IS_OFDM(rate)  ((rate) >= 12 && (rate) != 22)
1807
1808 static void
1809 wpi_rx_done(struct wpi_softc *sc, struct wpi_rx_desc *desc,
1810     struct wpi_rx_data *data)
1811 {
1812         struct ifnet *ifp = sc->sc_ifp;
1813         struct ieee80211com *ic = ifp->if_l2com;
1814         struct wpi_rx_ring *ring = &sc->rxq;
1815         struct wpi_rx_stat *stat;
1816         struct wpi_rx_head *head;
1817         struct wpi_rx_tail *tail;
1818         struct ieee80211_frame *wh;
1819         struct ieee80211_node *ni;
1820         struct mbuf *m, *m1;
1821         bus_addr_t paddr;
1822         uint32_t flags;
1823         uint16_t len;
1824         int error;
1825
1826         stat = (struct wpi_rx_stat *)(desc + 1);
1827
1828         if (stat->len > WPI_STAT_MAXLEN) {
1829                 device_printf(sc->sc_dev, "invalid RX statistic header\n");
1830                 goto fail1;
1831         }
1832
1833         bus_dmamap_sync(ring->data_dmat, data->map, BUS_DMASYNC_POSTREAD);
1834         head = (struct wpi_rx_head *)((caddr_t)(stat + 1) + stat->len);
1835         len = le16toh(head->len);
1836         tail = (struct wpi_rx_tail *)((caddr_t)(head + 1) + len);
1837         flags = le32toh(tail->flags);
1838
1839         DPRINTF(sc, WPI_DEBUG_RECV, "%s: idx %d len %d stat len %u rssi %d"
1840             " rate %x chan %d tstamp %ju\n", __func__, ring->cur,
1841             le32toh(desc->len), len, (int8_t)stat->rssi,
1842             head->plcp, head->chan, (uintmax_t)le64toh(tail->tstamp));
1843
1844         /* Discard frames with a bad FCS early. */
1845         if ((flags & WPI_RX_NOERROR) != WPI_RX_NOERROR) {
1846                 DPRINTF(sc, WPI_DEBUG_RECV, "%s: RX flags error %x\n",
1847                     __func__, flags);
1848                 goto fail1;
1849         }
1850         /* Discard frames that are too short. */
1851         if (len < sizeof (*wh)) {
1852                 DPRINTF(sc, WPI_DEBUG_RECV, "%s: frame too short: %d\n",
1853                     __func__, len);
1854                 goto fail1;
1855         }
1856
1857         m1 = m_getjcl(M_NOWAIT, MT_DATA, M_PKTHDR, MJUMPAGESIZE);
1858         if (m1 == NULL) {
1859                 DPRINTF(sc, WPI_DEBUG_ANY, "%s: no mbuf to restock ring\n",
1860                     __func__);
1861                 goto fail1;
1862         }
1863         bus_dmamap_unload(ring->data_dmat, data->map);
1864
1865         error = bus_dmamap_load(ring->data_dmat, data->map, mtod(m1, void *),
1866             MJUMPAGESIZE, wpi_dma_map_addr, &paddr, BUS_DMA_NOWAIT);
1867         if (error != 0 && error != EFBIG) {
1868                 device_printf(sc->sc_dev,
1869                     "%s: bus_dmamap_load failed, error %d\n", __func__, error);
1870                 m_freem(m1);
1871
1872                 /* Try to reload the old mbuf. */
1873                 error = bus_dmamap_load(ring->data_dmat, data->map,
1874                     mtod(data->m, void *), MJUMPAGESIZE, wpi_dma_map_addr,
1875                     &paddr, BUS_DMA_NOWAIT);
1876                 if (error != 0 && error != EFBIG) {
1877                         panic("%s: could not load old RX mbuf", __func__);
1878                 }
1879                 /* Physical address may have changed. */
1880                 ring->desc[ring->cur] = htole32(paddr);
1881                 bus_dmamap_sync(ring->data_dmat, ring->desc_dma.map,
1882                     BUS_DMASYNC_PREWRITE);
1883                 goto fail1;
1884         }
1885
1886         m = data->m;
1887         data->m = m1;
1888         /* Update RX descriptor. */
1889         ring->desc[ring->cur] = htole32(paddr);
1890         bus_dmamap_sync(ring->desc_dma.tag, ring->desc_dma.map,
1891             BUS_DMASYNC_PREWRITE);
1892
1893         /* Finalize mbuf. */
1894         m->m_pkthdr.rcvif = ifp;
1895         m->m_data = (caddr_t)(head + 1);
1896         m->m_pkthdr.len = m->m_len = len;
1897
1898         /* Grab a reference to the source node. */
1899         wh = mtod(m, struct ieee80211_frame *);
1900
1901         if ((wh->i_fc[1] & IEEE80211_FC1_PROTECTED) &&
1902             (flags & WPI_RX_CIPHER_MASK) == WPI_RX_CIPHER_CCMP) {
1903                 /* Check whether decryption was successful or not. */
1904                 if ((flags & WPI_RX_DECRYPT_MASK) != WPI_RX_DECRYPT_OK) {
1905                         DPRINTF(sc, WPI_DEBUG_RECV,
1906                             "CCMP decryption failed 0x%x\n", flags);
1907                         goto fail2;
1908                 }
1909                 m->m_flags |= M_WEP;
1910         }
1911
1912         ni = ieee80211_find_rxnode(ic, (struct ieee80211_frame_min *)wh);
1913
1914         if (ieee80211_radiotap_active(ic)) {
1915                 struct wpi_rx_radiotap_header *tap = &sc->sc_rxtap;
1916
1917                 tap->wr_flags = 0;
1918                 if (head->flags & htole16(WPI_STAT_FLAG_SHPREAMBLE))
1919                         tap->wr_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
1920                 tap->wr_dbm_antsignal = (int8_t)(stat->rssi + WPI_RSSI_OFFSET);
1921                 tap->wr_dbm_antnoise = WPI_RSSI_OFFSET;
1922                 tap->wr_tsft = tail->tstamp;
1923                 tap->wr_antenna = (le16toh(head->flags) >> 4) & 0xf;
1924                 tap->wr_rate = plcp2rate(head->plcp);
1925         }
1926
1927         WPI_UNLOCK(sc);
1928
1929         /* Send the frame to the 802.11 layer. */
1930         if (ni != NULL) {
1931                 (void)ieee80211_input(ni, m, stat->rssi, WPI_RSSI_OFFSET);
1932                 /* Node is no longer needed. */
1933                 ieee80211_free_node(ni);
1934         } else
1935                 (void)ieee80211_input_all(ic, m, stat->rssi, WPI_RSSI_OFFSET);
1936
1937         WPI_LOCK(sc);
1938
1939         return;
1940
1941 fail2:  m_freem(m);
1942
1943 fail1:  if_inc_counter(ifp, IFCOUNTER_IERRORS, 1);
1944 }
1945
1946 static void
1947 wpi_rx_statistics(struct wpi_softc *sc, struct wpi_rx_desc *desc,
1948     struct wpi_rx_data *data)
1949 {
1950         /* Ignore */
1951 }
1952
1953 static void
1954 wpi_tx_done(struct wpi_softc *sc, struct wpi_rx_desc *desc)
1955 {
1956         struct ifnet *ifp = sc->sc_ifp;
1957         struct wpi_tx_ring *ring = &sc->txq[desc->qid & 0x3];
1958         struct wpi_tx_data *data = &ring->data[desc->idx];
1959         struct wpi_tx_stat *stat = (struct wpi_tx_stat *)(desc + 1);
1960         struct mbuf *m;
1961         struct ieee80211_node *ni;
1962         struct ieee80211vap *vap;
1963         struct ieee80211com *ic;
1964         uint32_t status = le32toh(stat->status);
1965         int ackfailcnt = stat->ackfailcnt / WPI_NTRIES_DEFAULT;
1966
1967         KASSERT(data->ni != NULL, ("no node"));
1968         KASSERT(data->m != NULL, ("no mbuf"));
1969
1970         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_BEGIN, __func__);
1971
1972         DPRINTF(sc, WPI_DEBUG_XMIT, "%s: "
1973             "qid %d idx %d retries %d btkillcnt %d rate %x duration %d "
1974             "status %x\n", __func__, desc->qid, desc->idx, stat->ackfailcnt,
1975             stat->btkillcnt, stat->rate, le32toh(stat->duration), status);
1976
1977         /* Unmap and free mbuf. */
1978         bus_dmamap_sync(ring->data_dmat, data->map, BUS_DMASYNC_POSTWRITE);
1979         bus_dmamap_unload(ring->data_dmat, data->map);
1980         m = data->m, data->m = NULL;
1981         ni = data->ni, data->ni = NULL;
1982         vap = ni->ni_vap;
1983         ic = vap->iv_ic;
1984
1985         /*
1986          * Update rate control statistics for the node.
1987          */
1988         if (status & WPI_TX_STATUS_FAIL) {
1989                 if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
1990                 ieee80211_ratectl_tx_complete(vap, ni,
1991                     IEEE80211_RATECTL_TX_FAILURE, &ackfailcnt, NULL);
1992         } else {
1993                 if_inc_counter(ifp, IFCOUNTER_OPACKETS, 1);
1994                 ieee80211_ratectl_tx_complete(vap, ni,
1995                     IEEE80211_RATECTL_TX_SUCCESS, &ackfailcnt, NULL);
1996         }
1997
1998         ieee80211_tx_complete(ni, m, (status & WPI_TX_STATUS_FAIL) != 0);
1999
2000         WPI_TXQ_STATE_LOCK(sc);
2001         ring->queued -= 1;
2002         if (ring->queued > 0) {
2003                 callout_reset(&sc->tx_timeout, 5*hz, wpi_tx_timeout, sc);
2004
2005                 if (sc->qfullmsk != 0 &&
2006                     ring->queued < WPI_TX_RING_LOMARK) {
2007                         sc->qfullmsk &= ~(1 << ring->qid);
2008                         IF_LOCK(&ifp->if_snd);
2009                         if (sc->qfullmsk == 0 &&
2010                             (ifp->if_drv_flags & IFF_DRV_OACTIVE)) {
2011                                 ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
2012                                 IF_UNLOCK(&ifp->if_snd);
2013                                 ieee80211_runtask(ic, &sc->sc_start_task);
2014                         } else
2015                                 IF_UNLOCK(&ifp->if_snd);
2016                 }
2017         } else
2018                 callout_stop(&sc->tx_timeout);
2019         WPI_TXQ_STATE_UNLOCK(sc);
2020
2021         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END, __func__);
2022 }
2023
2024 /*
2025  * Process a "command done" firmware notification.  This is where we wakeup
2026  * processes waiting for a synchronous command completion.
2027  */
2028 static void
2029 wpi_cmd_done(struct wpi_softc *sc, struct wpi_rx_desc *desc)
2030 {
2031         struct wpi_tx_ring *ring = &sc->txq[WPI_CMD_QUEUE_NUM];
2032         struct wpi_tx_data *data;
2033
2034         DPRINTF(sc, WPI_DEBUG_CMD, "cmd notification qid %x idx %d flags %x "
2035                                    "type %s len %d\n", desc->qid, desc->idx,
2036                                    desc->flags, wpi_cmd_str(desc->type),
2037                                    le32toh(desc->len));
2038
2039         if ((desc->qid & WPI_RX_DESC_QID_MSK) != WPI_CMD_QUEUE_NUM)
2040                 return; /* Not a command ack. */
2041
2042         KASSERT(ring->queued == 0, ("ring->queued must be 0"));
2043
2044         data = &ring->data[desc->idx];
2045
2046         /* If the command was mapped in an mbuf, free it. */
2047         if (data->m != NULL) {
2048                 bus_dmamap_sync(ring->data_dmat, data->map,
2049                     BUS_DMASYNC_POSTWRITE);
2050                 bus_dmamap_unload(ring->data_dmat, data->map);
2051                 m_freem(data->m);
2052                 data->m = NULL;
2053         }
2054
2055         wakeup(&ring->cmd[desc->idx]);
2056 }
2057
2058 static void
2059 wpi_notif_intr(struct wpi_softc *sc)
2060 {
2061         struct ifnet *ifp = sc->sc_ifp;
2062         struct ieee80211com *ic = ifp->if_l2com;
2063         struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps);
2064         uint32_t hw;
2065
2066         bus_dmamap_sync(sc->shared_dma.tag, sc->shared_dma.map,
2067             BUS_DMASYNC_POSTREAD);
2068
2069         hw = le32toh(sc->shared->next);
2070         hw = (hw == 0) ? WPI_RX_RING_COUNT - 1 : hw - 1;
2071
2072         while (sc->rxq.cur != hw) {
2073                 sc->rxq.cur = (sc->rxq.cur + 1) % WPI_RX_RING_COUNT;
2074
2075                 struct wpi_rx_data *data = &sc->rxq.data[sc->rxq.cur];
2076                 struct wpi_rx_desc *desc;
2077
2078                 bus_dmamap_sync(sc->rxq.data_dmat, data->map,
2079                     BUS_DMASYNC_POSTREAD);
2080                 desc = mtod(data->m, struct wpi_rx_desc *);
2081
2082                 DPRINTF(sc, WPI_DEBUG_NOTIFY,
2083                     "%s: cur=%d; qid %x idx %d flags %x type %d(%s) len %d\n",
2084                     __func__, sc->rxq.cur, desc->qid, desc->idx, desc->flags,
2085                     desc->type, wpi_cmd_str(desc->type), le32toh(desc->len));
2086
2087                 if (!(desc->qid & WPI_UNSOLICITED_RX_NOTIF)) {
2088                         /* Reply to a command. */
2089                         wpi_cmd_done(sc, desc);
2090                 }
2091
2092                 switch (desc->type) {
2093                 case WPI_RX_DONE:
2094                         /* An 802.11 frame has been received. */
2095                         wpi_rx_done(sc, desc, data);
2096
2097                         if ((ifp->if_drv_flags & IFF_DRV_RUNNING) == 0) {
2098                                 /* wpi_stop() was called. */
2099                                 return;
2100                         }
2101
2102                         break;
2103
2104                 case WPI_TX_DONE:
2105                         /* An 802.11 frame has been transmitted. */
2106                         wpi_tx_done(sc, desc);
2107                         break;
2108
2109                 case WPI_RX_STATISTICS:
2110                 case WPI_BEACON_STATISTICS:
2111                         wpi_rx_statistics(sc, desc, data);
2112                         break;
2113
2114                 case WPI_BEACON_MISSED:
2115                 {
2116                         struct wpi_beacon_missed *miss =
2117                             (struct wpi_beacon_missed *)(desc + 1);
2118                         uint32_t misses;
2119
2120                         bus_dmamap_sync(sc->rxq.data_dmat, data->map,
2121                             BUS_DMASYNC_POSTREAD);
2122                         misses = le32toh(miss->consecutive);
2123
2124                         DPRINTF(sc, WPI_DEBUG_BMISS,
2125                             "%s: beacons missed %d/%d\n", __func__, misses,
2126                             le32toh(miss->total));
2127
2128                         if (vap->iv_state == IEEE80211_S_RUN &&
2129                             (ic->ic_flags & IEEE80211_F_SCAN) == 0 &&
2130                             misses >= vap->iv_bmissthreshold)
2131                                 ieee80211_beacon_miss(ic);
2132
2133                         break;
2134                 }
2135                 case WPI_UC_READY:
2136                 {
2137                         struct wpi_ucode_info *uc =
2138                             (struct wpi_ucode_info *)(desc + 1);
2139
2140                         /* The microcontroller is ready. */
2141                         bus_dmamap_sync(sc->rxq.data_dmat, data->map,
2142                             BUS_DMASYNC_POSTREAD);
2143                         DPRINTF(sc, WPI_DEBUG_RESET,
2144                             "microcode alive notification version=%d.%d "
2145                             "subtype=%x alive=%x\n", uc->major, uc->minor,
2146                             uc->subtype, le32toh(uc->valid));
2147
2148                         if (le32toh(uc->valid) != 1) {
2149                                 device_printf(sc->sc_dev,
2150                                     "microcontroller initialization failed\n");
2151                                 wpi_stop_locked(sc);
2152                         }
2153                         /* Save the address of the error log in SRAM. */
2154                         sc->errptr = le32toh(uc->errptr);
2155                         break;
2156                 }
2157                 case WPI_STATE_CHANGED:
2158                 {
2159                         bus_dmamap_sync(sc->rxq.data_dmat, data->map,
2160                             BUS_DMASYNC_POSTREAD);
2161
2162                         uint32_t *status = (uint32_t *)(desc + 1);
2163
2164                         DPRINTF(sc, WPI_DEBUG_STATE, "state changed to %x\n",
2165                             le32toh(*status));
2166
2167                         if (le32toh(*status) & 1) {
2168                                 WPI_NT_LOCK(sc);
2169                                 wpi_clear_node_table(sc);
2170                                 WPI_NT_UNLOCK(sc);
2171                                 taskqueue_enqueue(sc->sc_tq,
2172                                     &sc->sc_radiooff_task);
2173                                 return;
2174                         }
2175                         break;
2176                 }
2177                 case WPI_START_SCAN:
2178                 {
2179                         bus_dmamap_sync(sc->rxq.data_dmat, data->map,
2180                             BUS_DMASYNC_POSTREAD);
2181 #ifdef WPI_DEBUG
2182                         struct wpi_start_scan *scan =
2183                             (struct wpi_start_scan *)(desc + 1);
2184                         DPRINTF(sc, WPI_DEBUG_SCAN,
2185                             "%s: scanning channel %d status %x\n",
2186                             __func__, scan->chan, le32toh(scan->status));
2187 #endif
2188                         break;
2189                 }
2190                 case WPI_STOP_SCAN:
2191                 {
2192                         bus_dmamap_sync(sc->rxq.data_dmat, data->map,
2193                             BUS_DMASYNC_POSTREAD);
2194 #ifdef WPI_DEBUG
2195                         struct wpi_stop_scan *scan =
2196                             (struct wpi_stop_scan *)(desc + 1);
2197                         DPRINTF(sc, WPI_DEBUG_SCAN,
2198                             "scan finished nchan=%d status=%d chan=%d\n",
2199                             scan->nchan, scan->status, scan->chan);
2200 #endif
2201                         WPI_RXON_LOCK(sc);
2202                         callout_stop(&sc->scan_timeout);
2203                         WPI_RXON_UNLOCK(sc);
2204                         ieee80211_scan_next(vap);
2205                         break;
2206                 }
2207                 }
2208
2209                 if (sc->rxq.cur % 8 == 0) {
2210                         /* Tell the firmware what we have processed. */
2211                         wpi_update_rx_ring(sc);
2212                 }
2213         }
2214 }
2215
2216 /*
2217  * Process an INT_WAKEUP interrupt raised when the microcontroller wakes up
2218  * from power-down sleep mode.
2219  */
2220 static void
2221 wpi_wakeup_intr(struct wpi_softc *sc)
2222 {
2223         int qid;
2224
2225         DPRINTF(sc, WPI_DEBUG_PWRSAVE,
2226             "%s: ucode wakeup from power-down sleep\n", __func__);
2227
2228         /* Wakeup RX and TX rings. */
2229         if (sc->rxq.update) {
2230                 sc->rxq.update = 0;
2231                 wpi_update_rx_ring(sc);
2232         }
2233         WPI_TXQ_LOCK(sc);
2234         for (qid = 0; qid < WPI_DRV_NTXQUEUES; qid++) {
2235                 struct wpi_tx_ring *ring = &sc->txq[qid];
2236
2237                 if (ring->update) {
2238                         ring->update = 0;
2239                         wpi_update_tx_ring(sc, ring);
2240                 }
2241         }
2242         WPI_TXQ_UNLOCK(sc);
2243
2244         WPI_CLRBITS(sc, WPI_GP_CNTRL, WPI_GP_CNTRL_MAC_ACCESS_REQ);
2245 }
2246
2247 /*
2248  * This function prints firmware registers
2249  */
2250 #ifdef WPI_DEBUG
2251 static void
2252 wpi_debug_registers(struct wpi_softc *sc)
2253 {
2254 #define COUNTOF(array) (sizeof(array) / sizeof(array[0]))
2255         int i;
2256         static const uint32_t csr_tbl[] = {
2257                 WPI_HW_IF_CONFIG,
2258                 WPI_INT,
2259                 WPI_INT_MASK,
2260                 WPI_FH_INT,
2261                 WPI_GPIO_IN,
2262                 WPI_RESET,
2263                 WPI_GP_CNTRL,
2264                 WPI_EEPROM,
2265                 WPI_EEPROM_GP,
2266                 WPI_GIO,
2267                 WPI_UCODE_GP1,
2268                 WPI_UCODE_GP2,
2269                 WPI_GIO_CHICKEN,
2270                 WPI_ANA_PLL,
2271                 WPI_DBG_HPET_MEM,
2272         };
2273         static const uint32_t prph_tbl[] = {
2274                 WPI_APMG_CLK_CTRL,
2275                 WPI_APMG_PS,
2276                 WPI_APMG_PCI_STT,
2277                 WPI_APMG_RFKILL,
2278         };
2279
2280         DPRINTF(sc, WPI_DEBUG_REGISTER,"%s","\n");
2281
2282         for (i = 0; i <  COUNTOF(csr_tbl); i++) {
2283                 DPRINTF(sc, WPI_DEBUG_REGISTER, "  %-18s: 0x%08x ",
2284                     wpi_get_csr_string(csr_tbl[i]), WPI_READ(sc, csr_tbl[i]));
2285
2286                 if ((i + 1) % 2 == 0)
2287                         DPRINTF(sc, WPI_DEBUG_REGISTER, "\n");
2288         }
2289         DPRINTF(sc, WPI_DEBUG_REGISTER, "\n\n");
2290
2291         if (wpi_nic_lock(sc) == 0) {
2292                 for (i = 0; i < COUNTOF(prph_tbl); i++) {
2293                         DPRINTF(sc, WPI_DEBUG_REGISTER, "  %-18s: 0x%08x ",
2294                             wpi_get_prph_string(prph_tbl[i]),
2295                             wpi_prph_read(sc, prph_tbl[i]));
2296
2297                         if ((i + 1) % 2 == 0)
2298                                 DPRINTF(sc, WPI_DEBUG_REGISTER, "\n");
2299                 }
2300                 DPRINTF(sc, WPI_DEBUG_REGISTER, "\n");
2301                 wpi_nic_unlock(sc);
2302         } else {
2303                 DPRINTF(sc, WPI_DEBUG_REGISTER,
2304                     "Cannot access internal registers.\n");
2305         }
2306 #undef COUNTOF
2307 }
2308 #endif
2309
2310 /*
2311  * Dump the error log of the firmware when a firmware panic occurs.  Although
2312  * we can't debug the firmware because it is neither open source nor free, it
2313  * can help us to identify certain classes of problems.
2314  */
2315 static void
2316 wpi_fatal_intr(struct wpi_softc *sc)
2317 {
2318         struct wpi_fw_dump dump;
2319         uint32_t i, offset, count;
2320         const uint32_t size_errmsg =
2321             (sizeof (wpi_fw_errmsg) / sizeof ((wpi_fw_errmsg)[0]));
2322
2323         /* Check that the error log address is valid. */
2324         if (sc->errptr < WPI_FW_DATA_BASE ||
2325             sc->errptr + sizeof (dump) >
2326             WPI_FW_DATA_BASE + WPI_FW_DATA_MAXSZ) {
2327                 printf("%s: bad firmware error log address 0x%08x\n", __func__,
2328                     sc->errptr);
2329                 return;
2330         }
2331         if (wpi_nic_lock(sc) != 0) {
2332                 printf("%s: could not read firmware error log\n", __func__);
2333                 return;
2334         }
2335         /* Read number of entries in the log. */
2336         count = wpi_mem_read(sc, sc->errptr);
2337         if (count == 0 || count * sizeof (dump) > WPI_FW_DATA_MAXSZ) {
2338                 printf("%s: invalid count field (count = %u)\n", __func__,
2339                     count);
2340                 wpi_nic_unlock(sc);
2341                 return;
2342         }
2343         /* Skip "count" field. */
2344         offset = sc->errptr + sizeof (uint32_t);
2345         printf("firmware error log (count = %u):\n", count);
2346         for (i = 0; i < count; i++) {
2347                 wpi_mem_read_region_4(sc, offset, (uint32_t *)&dump,
2348                     sizeof (dump) / sizeof (uint32_t));
2349
2350                 printf("  error type = \"%s\" (0x%08X)\n",
2351                     (dump.desc < size_errmsg) ?
2352                         wpi_fw_errmsg[dump.desc] : "UNKNOWN",
2353                     dump.desc);
2354                 printf("  error data      = 0x%08X\n",
2355                     dump.data);
2356                 printf("  branch link     = 0x%08X%08X\n",
2357                     dump.blink[0], dump.blink[1]);
2358                 printf("  interrupt link  = 0x%08X%08X\n",
2359                     dump.ilink[0], dump.ilink[1]);
2360                 printf("  time            = %u\n", dump.time);
2361
2362                 offset += sizeof (dump);
2363         }
2364         wpi_nic_unlock(sc);
2365         /* Dump driver status (TX and RX rings) while we're here. */
2366         printf("driver status:\n");
2367         WPI_TXQ_LOCK(sc);
2368         for (i = 0; i < WPI_DRV_NTXQUEUES; i++) {
2369                 struct wpi_tx_ring *ring = &sc->txq[i];
2370                 printf("  tx ring %2d: qid=%-2d cur=%-3d queued=%-3d\n",
2371                     i, ring->qid, ring->cur, ring->queued);
2372         }
2373         WPI_TXQ_UNLOCK(sc);
2374         printf("  rx ring: cur=%d\n", sc->rxq.cur);
2375 }
2376
2377 static void
2378 wpi_intr(void *arg)
2379 {
2380         struct wpi_softc *sc = arg;
2381         struct ifnet *ifp = sc->sc_ifp;
2382         uint32_t r1, r2;
2383
2384         WPI_LOCK(sc);
2385
2386         /* Disable interrupts. */
2387         WPI_WRITE(sc, WPI_INT_MASK, 0);
2388
2389         r1 = WPI_READ(sc, WPI_INT);
2390
2391         if (r1 == 0xffffffff || (r1 & 0xfffffff0) == 0xa5a5a5a0)
2392                 goto end;       /* Hardware gone! */
2393
2394         r2 = WPI_READ(sc, WPI_FH_INT);
2395
2396         DPRINTF(sc, WPI_DEBUG_INTR, "%s: reg1=0x%08x reg2=0x%08x\n", __func__,
2397             r1, r2);
2398
2399         if (r1 == 0 && r2 == 0)
2400                 goto done;      /* Interrupt not for us. */
2401
2402         /* Acknowledge interrupts. */
2403         WPI_WRITE(sc, WPI_INT, r1);
2404         WPI_WRITE(sc, WPI_FH_INT, r2);
2405
2406         if (r1 & (WPI_INT_SW_ERR | WPI_INT_HW_ERR)) {
2407                 device_printf(sc->sc_dev, "fatal firmware error\n");
2408 #ifdef WPI_DEBUG
2409                 wpi_debug_registers(sc);
2410 #endif
2411                 wpi_fatal_intr(sc);
2412                 DPRINTF(sc, WPI_DEBUG_HW,
2413                     "(%s)\n", (r1 & WPI_INT_SW_ERR) ? "(Software Error)" :
2414                     "(Hardware Error)");
2415                 taskqueue_enqueue(sc->sc_tq, &sc->sc_reinittask);
2416                 goto end;
2417         }
2418
2419         if ((r1 & (WPI_INT_FH_RX | WPI_INT_SW_RX)) ||
2420             (r2 & WPI_FH_INT_RX))
2421                 wpi_notif_intr(sc);
2422
2423         if (r1 & WPI_INT_ALIVE)
2424                 wakeup(sc);     /* Firmware is alive. */
2425
2426         if (r1 & WPI_INT_WAKEUP)
2427                 wpi_wakeup_intr(sc);
2428
2429 done:
2430         /* Re-enable interrupts. */
2431         if (ifp->if_flags & IFF_UP)
2432                 WPI_WRITE(sc, WPI_INT_MASK, WPI_INT_MASK_DEF);
2433
2434 end:    WPI_UNLOCK(sc);
2435 }
2436
2437 static int
2438 wpi_cmd2(struct wpi_softc *sc, struct wpi_buf *buf)
2439 {
2440         struct ifnet *ifp = sc->sc_ifp;
2441         struct ieee80211_frame *wh;
2442         struct wpi_tx_cmd *cmd;
2443         struct wpi_tx_data *data;
2444         struct wpi_tx_desc *desc;
2445         struct wpi_tx_ring *ring;
2446         struct mbuf *m1;
2447         bus_dma_segment_t *seg, segs[WPI_MAX_SCATTER];
2448         int error, i, hdrlen, nsegs, totlen, pad;
2449
2450         WPI_TXQ_LOCK(sc);
2451
2452         KASSERT(buf->size <= sizeof(buf->data), ("buffer overflow"));
2453
2454         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_BEGIN, __func__);
2455
2456         if (sc->txq_active == 0) {
2457                 /* wpi_stop() was called */
2458                 error = ENETDOWN;
2459                 goto fail;
2460         }
2461
2462         wh = mtod(buf->m, struct ieee80211_frame *);
2463         hdrlen = ieee80211_anyhdrsize(wh);
2464         totlen = buf->m->m_pkthdr.len;
2465
2466         if (hdrlen & 3) {
2467                 /* First segment length must be a multiple of 4. */
2468                 pad = 4 - (hdrlen & 3);
2469         } else
2470                 pad = 0;
2471
2472         ring = &sc->txq[buf->ac];
2473         desc = &ring->desc[ring->cur];
2474         data = &ring->data[ring->cur];
2475
2476         /* Prepare TX firmware command. */
2477         cmd = &ring->cmd[ring->cur];
2478         cmd->code = buf->code;
2479         cmd->flags = 0;
2480         cmd->qid = ring->qid;
2481         cmd->idx = ring->cur;
2482
2483         memcpy(cmd->data, buf->data, buf->size);
2484
2485         /* Save and trim IEEE802.11 header. */
2486         memcpy((uint8_t *)(cmd->data + buf->size), wh, hdrlen);
2487         m_adj(buf->m, hdrlen);
2488
2489         error = bus_dmamap_load_mbuf_sg(ring->data_dmat, data->map, buf->m,
2490             segs, &nsegs, BUS_DMA_NOWAIT);
2491         if (error != 0 && error != EFBIG) {
2492                 device_printf(sc->sc_dev,
2493                     "%s: can't map mbuf (error %d)\n", __func__, error);
2494                 goto fail;
2495         }
2496         if (error != 0) {
2497                 /* Too many DMA segments, linearize mbuf. */
2498                 m1 = m_collapse(buf->m, M_NOWAIT, WPI_MAX_SCATTER - 1);
2499                 if (m1 == NULL) {
2500                         device_printf(sc->sc_dev,
2501                             "%s: could not defrag mbuf\n", __func__);
2502                         error = ENOBUFS;
2503                         goto fail;
2504                 }
2505                 buf->m = m1;
2506
2507                 error = bus_dmamap_load_mbuf_sg(ring->data_dmat, data->map,
2508                     buf->m, segs, &nsegs, BUS_DMA_NOWAIT);
2509                 if (error != 0) {
2510                         device_printf(sc->sc_dev,
2511                             "%s: can't map mbuf (error %d)\n", __func__,
2512                             error);
2513                         goto fail;
2514                 }
2515         }
2516
2517         KASSERT(nsegs < WPI_MAX_SCATTER,
2518             ("too many DMA segments, nsegs (%d) should be less than %d",
2519              nsegs, WPI_MAX_SCATTER));
2520
2521         data->m = buf->m;
2522         data->ni = buf->ni;
2523
2524         DPRINTF(sc, WPI_DEBUG_XMIT, "%s: qid %d idx %d len %d nsegs %d\n",
2525             __func__, ring->qid, ring->cur, totlen, nsegs);
2526
2527         /* Fill TX descriptor. */
2528         desc->nsegs = WPI_PAD32(totlen + pad) << 4 | (1 + nsegs);
2529         /* First DMA segment is used by the TX command. */
2530         desc->segs[0].addr = htole32(data->cmd_paddr);
2531         desc->segs[0].len  = htole32(4 + buf->size + hdrlen + pad);
2532         /* Other DMA segments are for data payload. */
2533         seg = &segs[0];
2534         for (i = 1; i <= nsegs; i++) {
2535                 desc->segs[i].addr = htole32(seg->ds_addr);
2536                 desc->segs[i].len  = htole32(seg->ds_len);
2537                 seg++;
2538         }
2539
2540         bus_dmamap_sync(ring->data_dmat, data->map, BUS_DMASYNC_PREWRITE);
2541         bus_dmamap_sync(ring->data_dmat, ring->cmd_dma.map,
2542             BUS_DMASYNC_PREWRITE);
2543         bus_dmamap_sync(ring->desc_dma.tag, ring->desc_dma.map,
2544             BUS_DMASYNC_PREWRITE);
2545
2546         /* Kick TX ring. */
2547         ring->cur = (ring->cur + 1) % WPI_TX_RING_COUNT;
2548         wpi_update_tx_ring(sc, ring);
2549
2550         if (ring->qid < WPI_CMD_QUEUE_NUM) {
2551                 /* Mark TX ring as full if we reach a certain threshold. */
2552                 WPI_TXQ_STATE_LOCK(sc);
2553                 if (++ring->queued > WPI_TX_RING_HIMARK) {
2554                         sc->qfullmsk |= 1 << ring->qid;
2555
2556                         IF_LOCK(&ifp->if_snd);
2557                         ifp->if_drv_flags |= IFF_DRV_OACTIVE;
2558                         IF_UNLOCK(&ifp->if_snd);
2559                 }
2560
2561                 callout_reset(&sc->tx_timeout, 5*hz, wpi_tx_timeout, sc);
2562                 WPI_TXQ_STATE_UNLOCK(sc);
2563         }
2564
2565         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END, __func__);
2566
2567         WPI_TXQ_UNLOCK(sc);
2568
2569         return 0;
2570
2571 fail:   m_freem(buf->m);
2572
2573         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END_ERR, __func__);
2574
2575         WPI_TXQ_UNLOCK(sc);
2576
2577         return error;
2578 }
2579
2580 /*
2581  * Construct the data packet for a transmit buffer.
2582  */
2583 static int
2584 wpi_tx_data(struct wpi_softc *sc, struct mbuf *m, struct ieee80211_node *ni)
2585 {
2586         const struct ieee80211_txparam *tp;
2587         struct ieee80211vap *vap = ni->ni_vap;
2588         struct ieee80211com *ic = ni->ni_ic;
2589         struct wpi_node *wn = WPI_NODE(ni);
2590         struct ieee80211_channel *chan;
2591         struct ieee80211_frame *wh;
2592         struct ieee80211_key *k = NULL;
2593         struct wpi_buf tx_data;
2594         struct wpi_cmd_data *tx = (struct wpi_cmd_data *)&tx_data.data;
2595         uint32_t flags;
2596         uint16_t qos;
2597         uint8_t tid, type;
2598         int ac, error, swcrypt, rate, ismcast, totlen;
2599
2600         wh = mtod(m, struct ieee80211_frame *);
2601         type = wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK;
2602         ismcast = IEEE80211_IS_MULTICAST(wh->i_addr1);
2603
2604         /* Select EDCA Access Category and TX ring for this frame. */
2605         if (IEEE80211_QOS_HAS_SEQ(wh)) {
2606                 qos = ((const struct ieee80211_qosframe *)wh)->i_qos[0];
2607                 tid = qos & IEEE80211_QOS_TID;
2608         } else {
2609                 qos = 0;
2610                 tid = 0;
2611         }
2612         ac = M_WME_GETAC(m);
2613
2614         chan = (ni->ni_chan != IEEE80211_CHAN_ANYC) ?
2615                 ni->ni_chan : ic->ic_curchan;
2616         tp = &vap->iv_txparms[ieee80211_chan2mode(chan)];
2617
2618         /* Choose a TX rate index. */
2619         if (type == IEEE80211_FC0_TYPE_MGT)
2620                 rate = tp->mgmtrate;
2621         else if (ismcast)
2622                 rate = tp->mcastrate;
2623         else if (tp->ucastrate != IEEE80211_FIXED_RATE_NONE)
2624                 rate = tp->ucastrate;
2625         else if (m->m_flags & M_EAPOL)
2626                 rate = tp->mgmtrate;
2627         else {
2628                 /* XXX pass pktlen */
2629                 (void) ieee80211_ratectl_rate(ni, NULL, 0);
2630                 rate = ni->ni_txrate;
2631         }
2632
2633         /* Encrypt the frame if need be. */
2634         if (wh->i_fc[1] & IEEE80211_FC1_PROTECTED) {
2635                 /* Retrieve key for TX. */
2636                 k = ieee80211_crypto_encap(ni, m);
2637                 if (k == NULL) {
2638                         error = ENOBUFS;
2639                         goto fail;
2640                 }
2641                 swcrypt = k->wk_flags & IEEE80211_KEY_SWCRYPT;
2642
2643                 /* 802.11 header may have moved. */
2644                 wh = mtod(m, struct ieee80211_frame *);
2645         }
2646         totlen = m->m_pkthdr.len;
2647
2648         if (ieee80211_radiotap_active_vap(vap)) {
2649                 struct wpi_tx_radiotap_header *tap = &sc->sc_txtap;
2650
2651                 tap->wt_flags = 0;
2652                 tap->wt_rate = rate;
2653                 if (k != NULL)
2654                         tap->wt_flags |= IEEE80211_RADIOTAP_F_WEP;
2655
2656                 ieee80211_radiotap_tx(vap, m);
2657         }
2658
2659         flags = 0;
2660         if (!ismcast) {
2661                 /* Unicast frame, check if an ACK is expected. */
2662                 if (!qos || (qos & IEEE80211_QOS_ACKPOLICY) !=
2663                     IEEE80211_QOS_ACKPOLICY_NOACK)
2664                         flags |= WPI_TX_NEED_ACK;
2665         }
2666
2667         if (wh->i_fc[1] & IEEE80211_FC1_MORE_FRAG)
2668                 flags |= WPI_TX_MORE_FRAG;      /* Cannot happen yet. */
2669
2670         /* Check if frame must be protected using RTS/CTS or CTS-to-self. */
2671         if (!ismcast) {
2672                 /* NB: Group frames are sent using CCK in 802.11b/g. */
2673                 if (totlen + IEEE80211_CRC_LEN > vap->iv_rtsthreshold) {
2674                         flags |= WPI_TX_NEED_RTS;
2675                 } else if ((ic->ic_flags & IEEE80211_F_USEPROT) &&
2676                     WPI_RATE_IS_OFDM(rate)) {
2677                         if (ic->ic_protmode == IEEE80211_PROT_CTSONLY)
2678                                 flags |= WPI_TX_NEED_CTS;
2679                         else if (ic->ic_protmode == IEEE80211_PROT_RTSCTS)
2680                                 flags |= WPI_TX_NEED_RTS;
2681                 }
2682
2683                 if (flags & (WPI_TX_NEED_RTS | WPI_TX_NEED_CTS))
2684                         flags |= WPI_TX_FULL_TXOP;
2685         }
2686
2687         memset(tx, 0, sizeof (struct wpi_cmd_data));
2688         if (type == IEEE80211_FC0_TYPE_MGT) {
2689                 uint8_t subtype = wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK;
2690
2691                 /* Tell HW to set timestamp in probe responses. */
2692                 if (subtype == IEEE80211_FC0_SUBTYPE_PROBE_RESP)
2693                         flags |= WPI_TX_INSERT_TSTAMP;
2694                 if (subtype == IEEE80211_FC0_SUBTYPE_ASSOC_REQ ||
2695                     subtype == IEEE80211_FC0_SUBTYPE_REASSOC_REQ)
2696                         tx->timeout = htole16(3);
2697                 else
2698                         tx->timeout = htole16(2);
2699         }
2700
2701         if (ismcast || type != IEEE80211_FC0_TYPE_DATA)
2702                 tx->id = WPI_ID_BROADCAST;
2703         else {
2704                 if (wn->id == WPI_ID_UNDEFINED) {
2705                         device_printf(sc->sc_dev,
2706                             "%s: undefined node id\n", __func__);
2707                         error = EINVAL;
2708                         goto fail;
2709                 }
2710
2711                 tx->id = wn->id;
2712         }
2713
2714         if (k != NULL && !swcrypt) {
2715                 switch (k->wk_cipher->ic_cipher) {
2716                 case IEEE80211_CIPHER_AES_CCM:
2717                         tx->security = WPI_CIPHER_CCMP;
2718                         break;
2719
2720                 default:
2721                         break;
2722                 }
2723
2724                 memcpy(tx->key, k->wk_key, k->wk_keylen);
2725         }
2726
2727         tx->len = htole16(totlen);
2728         tx->flags = htole32(flags);
2729         tx->plcp = rate2plcp(rate);
2730         tx->tid = tid;
2731         tx->lifetime = htole32(WPI_LIFETIME_INFINITE);
2732         tx->ofdm_mask = 0xff;
2733         tx->cck_mask = 0x0f;
2734         tx->rts_ntries = 7;
2735         tx->data_ntries = tp->maxretry;
2736
2737         tx_data.ni = ni;
2738         tx_data.m = m;
2739         tx_data.size = sizeof(struct wpi_cmd_data);
2740         tx_data.code = WPI_CMD_TX_DATA;
2741         tx_data.ac = ac;
2742
2743         return wpi_cmd2(sc, &tx_data);
2744
2745 fail:   m_freem(m);
2746         return error;
2747 }
2748
2749 static int
2750 wpi_tx_data_raw(struct wpi_softc *sc, struct mbuf *m,
2751     struct ieee80211_node *ni, const struct ieee80211_bpf_params *params)
2752 {
2753         struct ieee80211vap *vap = ni->ni_vap;
2754         struct ieee80211_key *k = NULL;
2755         struct ieee80211_frame *wh;
2756         struct wpi_buf tx_data;
2757         struct wpi_cmd_data *tx = (struct wpi_cmd_data *)&tx_data.data;
2758         uint32_t flags;
2759         uint8_t type;
2760         int ac, rate, swcrypt, totlen;
2761
2762         wh = mtod(m, struct ieee80211_frame *);
2763         type = wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK;
2764
2765         ac = params->ibp_pri & 3;
2766
2767         /* Choose a TX rate index. */
2768         rate = params->ibp_rate0;
2769
2770         flags = 0;
2771         if ((params->ibp_flags & IEEE80211_BPF_NOACK) == 0)
2772                 flags |= WPI_TX_NEED_ACK;
2773         if (params->ibp_flags & IEEE80211_BPF_RTS)
2774                 flags |= WPI_TX_NEED_RTS;
2775         if (params->ibp_flags & IEEE80211_BPF_CTS)
2776                 flags |= WPI_TX_NEED_CTS;
2777         if (flags & (WPI_TX_NEED_RTS | WPI_TX_NEED_CTS))
2778                 flags |= WPI_TX_FULL_TXOP;
2779
2780         /* Encrypt the frame if need be. */
2781         if (params->ibp_flags & IEEE80211_BPF_CRYPTO) {
2782                 /* Retrieve key for TX. */
2783                 k = ieee80211_crypto_encap(ni, m);
2784                 if (k == NULL) {
2785                         m_freem(m);
2786                         return ENOBUFS;
2787                 }
2788                 swcrypt = k->wk_flags & IEEE80211_KEY_SWCRYPT;
2789
2790                 /* 802.11 header may have moved. */
2791                 wh = mtod(m, struct ieee80211_frame *);
2792         }
2793         totlen = m->m_pkthdr.len;
2794
2795         if (ieee80211_radiotap_active_vap(vap)) {
2796                 struct wpi_tx_radiotap_header *tap = &sc->sc_txtap;
2797
2798                 tap->wt_flags = 0;
2799                 tap->wt_rate = rate;
2800                 if (params->ibp_flags & IEEE80211_BPF_CRYPTO)
2801                         tap->wt_flags |= IEEE80211_RADIOTAP_F_WEP;
2802
2803                 ieee80211_radiotap_tx(vap, m);
2804         }
2805
2806         memset(tx, 0, sizeof (struct wpi_cmd_data));
2807         if (type == IEEE80211_FC0_TYPE_MGT) {
2808                 uint8_t subtype = wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK;
2809
2810                 /* Tell HW to set timestamp in probe responses. */
2811                 if (subtype == IEEE80211_FC0_SUBTYPE_PROBE_RESP)
2812                         flags |= WPI_TX_INSERT_TSTAMP;
2813                 if (subtype == IEEE80211_FC0_SUBTYPE_ASSOC_REQ ||
2814                     subtype == IEEE80211_FC0_SUBTYPE_REASSOC_REQ)
2815                         tx->timeout = htole16(3);
2816                 else
2817                         tx->timeout = htole16(2);
2818         }
2819
2820         if (k != NULL && !swcrypt) {
2821                 switch (k->wk_cipher->ic_cipher) {
2822                 case IEEE80211_CIPHER_AES_CCM:
2823                         tx->security = WPI_CIPHER_CCMP;
2824                         break;
2825
2826                 default:
2827                         break;
2828                 }
2829
2830                 memcpy(tx->key, k->wk_key, k->wk_keylen);
2831         }
2832
2833         tx->len = htole16(totlen);
2834         tx->flags = htole32(flags);
2835         tx->plcp = rate2plcp(rate);
2836         tx->id = WPI_ID_BROADCAST;
2837         tx->lifetime = htole32(WPI_LIFETIME_INFINITE);
2838         tx->rts_ntries = params->ibp_try1;
2839         tx->data_ntries = params->ibp_try0;
2840
2841         tx_data.ni = ni;
2842         tx_data.m = m;
2843         tx_data.size = sizeof(struct wpi_cmd_data);
2844         tx_data.code = WPI_CMD_TX_DATA;
2845         tx_data.ac = ac;
2846
2847         return wpi_cmd2(sc, &tx_data);
2848 }
2849
2850 static int
2851 wpi_raw_xmit(struct ieee80211_node *ni, struct mbuf *m,
2852     const struct ieee80211_bpf_params *params)
2853 {
2854         struct ieee80211com *ic = ni->ni_ic;
2855         struct ifnet *ifp = ic->ic_ifp;
2856         struct wpi_softc *sc = ifp->if_softc;
2857         int error = 0;
2858
2859         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_BEGIN, __func__);
2860
2861         if ((ifp->if_drv_flags & IFF_DRV_RUNNING) == 0) {
2862                 ieee80211_free_node(ni);
2863                 m_freem(m);
2864                 return ENETDOWN;
2865         }
2866
2867         WPI_TX_LOCK(sc);
2868         if (params == NULL) {
2869                 /*
2870                  * Legacy path; interpret frame contents to decide
2871                  * precisely how to send the frame.
2872                  */
2873                 error = wpi_tx_data(sc, m, ni);
2874         } else {
2875                 /*
2876                  * Caller supplied explicit parameters to use in
2877                  * sending the frame.
2878                  */
2879                 error = wpi_tx_data_raw(sc, m, ni, params);
2880         }
2881         WPI_TX_UNLOCK(sc);
2882
2883         if (error != 0) {
2884                 /* NB: m is reclaimed on tx failure */
2885                 ieee80211_free_node(ni);
2886                 if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
2887
2888                 DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END_ERR, __func__);
2889
2890                 return error;
2891         }
2892
2893         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END, __func__);
2894
2895         return 0;
2896 }
2897
2898 /**
2899  * Process data waiting to be sent on the IFNET output queue
2900  */
2901 static void
2902 wpi_start(struct ifnet *ifp)
2903 {
2904         struct wpi_softc *sc = ifp->if_softc;
2905         struct ieee80211_node *ni;
2906         struct mbuf *m;
2907
2908         WPI_TX_LOCK(sc);
2909         DPRINTF(sc, WPI_DEBUG_XMIT, "%s: called\n", __func__);
2910
2911         for (;;) {
2912                 IF_LOCK(&ifp->if_snd);
2913                 if ((ifp->if_drv_flags & IFF_DRV_RUNNING) == 0 ||
2914                     (ifp->if_drv_flags & IFF_DRV_OACTIVE)) {
2915                         IF_UNLOCK(&ifp->if_snd);
2916                         break;
2917                 }
2918                 IF_UNLOCK(&ifp->if_snd);
2919
2920                 IFQ_DRV_DEQUEUE(&ifp->if_snd, m);
2921                 if (m == NULL)
2922                         break;
2923                 ni = (struct ieee80211_node *)m->m_pkthdr.rcvif;
2924                 if (wpi_tx_data(sc, m, ni) != 0) {
2925                         ieee80211_free_node(ni);
2926                         if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
2927                 }
2928         }
2929
2930         DPRINTF(sc, WPI_DEBUG_XMIT, "%s: done\n", __func__);
2931         WPI_TX_UNLOCK(sc);
2932 }
2933
2934 static void
2935 wpi_start_task(void *arg0, int pending)
2936 {
2937         struct wpi_softc *sc = arg0;
2938         struct ifnet *ifp = sc->sc_ifp;
2939
2940         wpi_start(ifp);
2941 }
2942
2943 static void
2944 wpi_watchdog_rfkill(void *arg)
2945 {
2946         struct wpi_softc *sc = arg;
2947         struct ifnet *ifp = sc->sc_ifp;
2948         struct ieee80211com *ic = ifp->if_l2com;
2949
2950         DPRINTF(sc, WPI_DEBUG_WATCHDOG, "RFkill Watchdog: tick\n");
2951
2952         /* No need to lock firmware memory. */
2953         if ((wpi_prph_read(sc, WPI_APMG_RFKILL) & 0x1) == 0) {
2954                 /* Radio kill switch is still off. */
2955                 callout_reset(&sc->watchdog_rfkill, hz, wpi_watchdog_rfkill,
2956                     sc);
2957         } else
2958                 ieee80211_runtask(ic, &sc->sc_radioon_task);
2959 }
2960
2961 static void
2962 wpi_scan_timeout(void *arg)
2963 {
2964         struct wpi_softc *sc = arg;
2965         struct ifnet *ifp = sc->sc_ifp;
2966
2967         if_printf(ifp, "scan timeout\n");
2968         taskqueue_enqueue(sc->sc_tq, &sc->sc_reinittask);
2969 }
2970
2971 static void
2972 wpi_tx_timeout(void *arg)
2973 {
2974         struct wpi_softc *sc = arg;
2975         struct ifnet *ifp = sc->sc_ifp;
2976
2977         if_printf(ifp, "device timeout\n");
2978         if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
2979         taskqueue_enqueue(sc->sc_tq, &sc->sc_reinittask);
2980 }
2981
2982 static int
2983 wpi_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
2984 {
2985         struct wpi_softc *sc = ifp->if_softc;
2986         struct ieee80211com *ic = ifp->if_l2com;
2987         struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps);
2988         struct ifreq *ifr = (struct ifreq *) data;
2989         int error = 0;
2990
2991         switch (cmd) {
2992         case SIOCGIFADDR:
2993                 error = ether_ioctl(ifp, cmd, data);
2994                 break;
2995         case SIOCSIFFLAGS:
2996                 if (ifp->if_flags & IFF_UP) {
2997                         wpi_init(sc);
2998
2999                         if ((ifp->if_drv_flags & IFF_DRV_RUNNING) == 0 &&
3000                             vap != NULL)
3001                                 ieee80211_stop(vap);
3002                 } else if ((ifp->if_drv_flags & IFF_DRV_RUNNING) != 0)
3003                         wpi_stop(sc);
3004                 break;
3005         case SIOCGIFMEDIA:
3006                 error = ifmedia_ioctl(ifp, ifr, &ic->ic_media, cmd);
3007                 break;
3008         default:
3009                 error = EINVAL;
3010                 break;
3011         }
3012         return error;
3013 }
3014
3015 /*
3016  * Send a command to the firmware.
3017  */
3018 static int
3019 wpi_cmd(struct wpi_softc *sc, int code, const void *buf, size_t size,
3020     int async)
3021 {
3022         struct wpi_tx_ring *ring = &sc->txq[WPI_CMD_QUEUE_NUM];
3023         struct wpi_tx_desc *desc;
3024         struct wpi_tx_data *data;
3025         struct wpi_tx_cmd *cmd;
3026         struct mbuf *m;
3027         bus_addr_t paddr;
3028         int totlen, error;
3029
3030         WPI_TXQ_LOCK(sc);
3031
3032         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_BEGIN, __func__);
3033
3034         if (sc->txq_active == 0) {
3035                 /* wpi_stop() was called */
3036                 error = 0;
3037                 goto fail;
3038         }
3039
3040         if (async == 0)
3041                 WPI_LOCK_ASSERT(sc);
3042
3043         DPRINTF(sc, WPI_DEBUG_CMD, "%s: cmd %s size %zu async %d\n",
3044             __func__, wpi_cmd_str(code), size, async);
3045
3046         desc = &ring->desc[ring->cur];
3047         data = &ring->data[ring->cur];
3048         totlen = 4 + size;
3049
3050         if (size > sizeof cmd->data) {
3051                 /* Command is too large to fit in a descriptor. */
3052                 if (totlen > MCLBYTES) {
3053                         error = EINVAL;
3054                         goto fail;
3055                 }
3056                 m = m_getjcl(M_NOWAIT, MT_DATA, M_PKTHDR, MJUMPAGESIZE);
3057                 if (m == NULL) {
3058                         error = ENOMEM;
3059                         goto fail;
3060                 }
3061                 cmd = mtod(m, struct wpi_tx_cmd *);
3062                 error = bus_dmamap_load(ring->data_dmat, data->map, cmd,
3063                     totlen, wpi_dma_map_addr, &paddr, BUS_DMA_NOWAIT);
3064                 if (error != 0) {
3065                         m_freem(m);
3066                         goto fail;
3067                 }
3068                 data->m = m;
3069         } else {
3070                 cmd = &ring->cmd[ring->cur];
3071                 paddr = data->cmd_paddr;
3072         }
3073
3074         cmd->code = code;
3075         cmd->flags = 0;
3076         cmd->qid = ring->qid;
3077         cmd->idx = ring->cur;
3078         memcpy(cmd->data, buf, size);
3079
3080         desc->nsegs = 1 + (WPI_PAD32(size) << 4);
3081         desc->segs[0].addr = htole32(paddr);
3082         desc->segs[0].len  = htole32(totlen);
3083
3084         if (size > sizeof cmd->data) {
3085                 bus_dmamap_sync(ring->data_dmat, data->map,
3086                     BUS_DMASYNC_PREWRITE);
3087         } else {
3088                 bus_dmamap_sync(ring->data_dmat, ring->cmd_dma.map,
3089                     BUS_DMASYNC_PREWRITE);
3090         }
3091         bus_dmamap_sync(ring->desc_dma.tag, ring->desc_dma.map,
3092             BUS_DMASYNC_PREWRITE);
3093
3094         /* Kick command ring. */
3095         ring->cur = (ring->cur + 1) % WPI_TX_RING_COUNT;
3096         wpi_update_tx_ring(sc, ring);
3097
3098         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END, __func__);
3099
3100         WPI_TXQ_UNLOCK(sc);
3101
3102         if (async)
3103                 return 0;
3104
3105         return mtx_sleep(cmd, &sc->sc_mtx, PCATCH, "wpicmd", hz);
3106
3107 fail:   DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END_ERR, __func__);
3108
3109         WPI_TXQ_UNLOCK(sc);
3110
3111         return error;
3112 }
3113
3114 /*
3115  * Configure HW multi-rate retries.
3116  */
3117 static int
3118 wpi_mrr_setup(struct wpi_softc *sc)
3119 {
3120         struct ifnet *ifp = sc->sc_ifp;
3121         struct ieee80211com *ic = ifp->if_l2com;
3122         struct wpi_mrr_setup mrr;
3123         int i, error;
3124
3125         /* CCK rates (not used with 802.11a). */
3126         for (i = WPI_RIDX_CCK1; i <= WPI_RIDX_CCK11; i++) {
3127                 mrr.rates[i].flags = 0;
3128                 mrr.rates[i].plcp = wpi_ridx_to_plcp[i];
3129                 /* Fallback to the immediate lower CCK rate (if any.) */
3130                 mrr.rates[i].next =
3131                     (i == WPI_RIDX_CCK1) ? WPI_RIDX_CCK1 : i - 1;
3132                 /* Try twice at this rate before falling back to "next". */
3133                 mrr.rates[i].ntries = WPI_NTRIES_DEFAULT;
3134         }
3135         /* OFDM rates (not used with 802.11b). */
3136         for (i = WPI_RIDX_OFDM6; i <= WPI_RIDX_OFDM54; i++) {
3137                 mrr.rates[i].flags = 0;
3138                 mrr.rates[i].plcp = wpi_ridx_to_plcp[i];
3139                 /* Fallback to the immediate lower rate (if any.) */
3140                 /* We allow fallback from OFDM/6 to CCK/2 in 11b/g mode. */
3141                 mrr.rates[i].next = (i == WPI_RIDX_OFDM6) ?
3142                     ((ic->ic_curmode == IEEE80211_MODE_11A) ?
3143                         WPI_RIDX_OFDM6 : WPI_RIDX_CCK2) :
3144                     i - 1;
3145                 /* Try twice at this rate before falling back to "next". */
3146                 mrr.rates[i].ntries = WPI_NTRIES_DEFAULT;
3147         }
3148         /* Setup MRR for control frames. */
3149         mrr.which = htole32(WPI_MRR_CTL);
3150         error = wpi_cmd(sc, WPI_CMD_MRR_SETUP, &mrr, sizeof mrr, 0);
3151         if (error != 0) {
3152                 device_printf(sc->sc_dev,
3153                     "could not setup MRR for control frames\n");
3154                 return error;
3155         }
3156         /* Setup MRR for data frames. */
3157         mrr.which = htole32(WPI_MRR_DATA);
3158         error = wpi_cmd(sc, WPI_CMD_MRR_SETUP, &mrr, sizeof mrr, 0);
3159         if (error != 0) {
3160                 device_printf(sc->sc_dev,
3161                     "could not setup MRR for data frames\n");
3162                 return error;
3163         }
3164         return 0;
3165 }
3166
3167 static int
3168 wpi_add_node(struct wpi_softc *sc, struct ieee80211_node *ni)
3169 {
3170         struct ieee80211com *ic = ni->ni_ic;
3171         struct wpi_vap *wvp = WPI_VAP(ni->ni_vap);
3172         struct wpi_node *wn = WPI_NODE(ni);
3173         struct wpi_node_info node;
3174         int error;
3175
3176         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_DOING, __func__);
3177
3178         if (wn->id == WPI_ID_UNDEFINED)
3179                 return EINVAL;
3180
3181         memset(&node, 0, sizeof node);
3182         IEEE80211_ADDR_COPY(node.macaddr, ni->ni_macaddr);
3183         node.id = wn->id;
3184         node.plcp = (ic->ic_curmode == IEEE80211_MODE_11A) ?
3185             wpi_ridx_to_plcp[WPI_RIDX_OFDM6] : wpi_ridx_to_plcp[WPI_RIDX_CCK1];
3186         node.action = htole32(WPI_ACTION_SET_RATE);
3187         node.antenna = WPI_ANTENNA_BOTH;
3188
3189         DPRINTF(sc, WPI_DEBUG_NODE, "%s: adding node %d (%s)\n", __func__,
3190             wn->id, ether_sprintf(ni->ni_macaddr));
3191
3192         error = wpi_cmd(sc, WPI_CMD_ADD_NODE, &node, sizeof node, 1);
3193         if (error != 0) {
3194                 device_printf(sc->sc_dev,
3195                     "%s: wpi_cmd() call failed with error code %d\n", __func__,
3196                     error);
3197                 return error;
3198         }
3199
3200         if (wvp->wv_gtk != 0) {
3201                 error = wpi_set_global_keys(ni);
3202                 if (error != 0) {
3203                         device_printf(sc->sc_dev,
3204                             "%s: error while setting global keys\n", __func__);
3205                         return ENXIO;
3206                 }
3207         }
3208
3209         return 0;
3210 }
3211
3212 /*
3213  * Broadcast node is used to send group-addressed and management frames.
3214  */
3215 static int
3216 wpi_add_broadcast_node(struct wpi_softc *sc, int async)
3217 {
3218         struct ifnet *ifp = sc->sc_ifp;
3219         struct ieee80211com *ic = ifp->if_l2com;
3220         struct wpi_node_info node;
3221
3222         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_DOING, __func__);
3223
3224         memset(&node, 0, sizeof node);
3225         IEEE80211_ADDR_COPY(node.macaddr, ifp->if_broadcastaddr);
3226         node.id = WPI_ID_BROADCAST;
3227         node.plcp = (ic->ic_curmode == IEEE80211_MODE_11A) ?
3228             wpi_ridx_to_plcp[WPI_RIDX_OFDM6] : wpi_ridx_to_plcp[WPI_RIDX_CCK1];
3229         node.action = htole32(WPI_ACTION_SET_RATE);
3230         node.antenna = WPI_ANTENNA_BOTH;
3231
3232         DPRINTF(sc, WPI_DEBUG_NODE, "%s: adding broadcast node\n", __func__);
3233
3234         return wpi_cmd(sc, WPI_CMD_ADD_NODE, &node, sizeof node, async);
3235 }
3236
3237 static int
3238 wpi_add_sta_node(struct wpi_softc *sc, struct ieee80211_node *ni)
3239 {
3240         struct wpi_node *wn = WPI_NODE(ni);
3241         int error;
3242
3243         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_DOING, __func__);
3244
3245         wn->id = wpi_add_node_entry_sta(sc);
3246
3247         if ((error = wpi_add_node(sc, ni)) != 0) {
3248                 wpi_del_node_entry(sc, wn->id);
3249                 wn->id = WPI_ID_UNDEFINED;
3250                 return error;
3251         }
3252
3253         return 0;
3254 }
3255
3256 static int
3257 wpi_add_ibss_node(struct wpi_softc *sc, struct ieee80211_node *ni)
3258 {
3259         struct wpi_node *wn = WPI_NODE(ni);
3260         int error;
3261
3262         KASSERT(wn->id == WPI_ID_UNDEFINED,
3263             ("the node %d was added before", wn->id));
3264
3265         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_DOING, __func__);
3266
3267         if ((wn->id = wpi_add_node_entry_adhoc(sc)) == WPI_ID_UNDEFINED) {
3268                 device_printf(sc->sc_dev, "%s: h/w table is full\n", __func__);
3269                 return ENOMEM;
3270         }
3271
3272         if ((error = wpi_add_node(sc, ni)) != 0) {
3273                 wpi_del_node_entry(sc, wn->id);
3274                 wn->id = WPI_ID_UNDEFINED;
3275                 return error;
3276         }
3277
3278         return 0;
3279 }
3280
3281 static void
3282 wpi_del_node(struct wpi_softc *sc, struct ieee80211_node *ni)
3283 {
3284         struct wpi_node *wn = WPI_NODE(ni);
3285         struct wpi_cmd_del_node node;
3286         int error;
3287
3288         KASSERT(wn->id != WPI_ID_UNDEFINED, ("undefined node id passed"));
3289
3290         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_DOING, __func__);
3291
3292         memset(&node, 0, sizeof node);
3293         IEEE80211_ADDR_COPY(node.macaddr, ni->ni_macaddr);
3294         node.count = 1;
3295
3296         DPRINTF(sc, WPI_DEBUG_NODE, "%s: deleting node %d (%s)\n", __func__,
3297             wn->id, ether_sprintf(ni->ni_macaddr));
3298
3299         error = wpi_cmd(sc, WPI_CMD_DEL_NODE, &node, sizeof node, 1);
3300         if (error != 0) {
3301                 device_printf(sc->sc_dev,
3302                     "%s: could not delete node %u, error %d\n", __func__,
3303                     wn->id, error);
3304         }
3305 }
3306
3307 static int
3308 wpi_updateedca(struct ieee80211com *ic)
3309 {
3310 #define WPI_EXP2(x)     ((1 << (x)) - 1)        /* CWmin = 2^ECWmin - 1 */
3311         struct wpi_softc *sc = ic->ic_ifp->if_softc;
3312         struct wpi_edca_params cmd;
3313         int aci, error;
3314
3315         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_BEGIN, __func__);
3316
3317         memset(&cmd, 0, sizeof cmd);
3318         cmd.flags = htole32(WPI_EDCA_UPDATE);
3319         for (aci = 0; aci < WME_NUM_AC; aci++) {
3320                 const struct wmeParams *ac =
3321                     &ic->ic_wme.wme_chanParams.cap_wmeParams[aci];
3322                 cmd.ac[aci].aifsn = ac->wmep_aifsn;
3323                 cmd.ac[aci].cwmin = htole16(WPI_EXP2(ac->wmep_logcwmin));
3324                 cmd.ac[aci].cwmax = htole16(WPI_EXP2(ac->wmep_logcwmax));
3325                 cmd.ac[aci].txoplimit = 
3326                     htole16(IEEE80211_TXOP_TO_US(ac->wmep_txopLimit));
3327
3328                 DPRINTF(sc, WPI_DEBUG_EDCA,
3329                     "setting WME for queue %d aifsn=%d cwmin=%d cwmax=%d "
3330                     "txoplimit=%d\n", aci, cmd.ac[aci].aifsn,
3331                     cmd.ac[aci].cwmin, cmd.ac[aci].cwmax,
3332                     cmd.ac[aci].txoplimit);
3333         }
3334         error = wpi_cmd(sc, WPI_CMD_EDCA_PARAMS, &cmd, sizeof cmd, 1);
3335
3336         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END, __func__);
3337
3338         return error;
3339 #undef WPI_EXP2
3340 }
3341
3342 static void
3343 wpi_set_promisc(struct wpi_softc *sc)
3344 {
3345         struct ifnet *ifp = sc->sc_ifp;
3346         struct ieee80211com *ic = ifp->if_l2com;
3347         struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps);
3348         uint32_t promisc_filter;
3349
3350         promisc_filter = WPI_FILTER_CTL;
3351         if (vap != NULL && vap->iv_opmode != IEEE80211_M_HOSTAP)
3352                 promisc_filter |= WPI_FILTER_PROMISC;
3353
3354         if (ifp->if_flags & IFF_PROMISC)
3355                 sc->rxon.filter |= htole32(promisc_filter);
3356         else
3357                 sc->rxon.filter &= ~htole32(promisc_filter);
3358 }
3359
3360 static void
3361 wpi_update_promisc(struct ifnet *ifp)
3362 {
3363         struct wpi_softc *sc = ifp->if_softc;
3364
3365         WPI_RXON_LOCK(sc);
3366         wpi_set_promisc(sc);
3367
3368         if (wpi_send_rxon(sc, 1, 1) != 0) {
3369                 device_printf(sc->sc_dev, "%s: could not send RXON\n",
3370                     __func__);
3371         }
3372         WPI_RXON_UNLOCK(sc);
3373 }
3374
3375 static void
3376 wpi_update_mcast(struct ifnet *ifp)
3377 {
3378         /* Ignore */
3379 }
3380
3381 static void
3382 wpi_set_led(struct wpi_softc *sc, uint8_t which, uint8_t off, uint8_t on)
3383 {
3384         struct wpi_cmd_led led;
3385
3386         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_DOING, __func__);
3387
3388         led.which = which;
3389         led.unit = htole32(100000);     /* on/off in unit of 100ms */
3390         led.off = off;
3391         led.on = on;
3392         (void)wpi_cmd(sc, WPI_CMD_SET_LED, &led, sizeof led, 1);
3393 }
3394
3395 static int
3396 wpi_set_timing(struct wpi_softc *sc, struct ieee80211_node *ni)
3397 {
3398         struct wpi_cmd_timing cmd;
3399         uint64_t val, mod;
3400
3401         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_DOING, __func__);
3402
3403         memset(&cmd, 0, sizeof cmd);
3404         memcpy(&cmd.tstamp, ni->ni_tstamp.data, sizeof (uint64_t));
3405         cmd.bintval = htole16(ni->ni_intval);
3406         cmd.lintval = htole16(10);
3407
3408         /* Compute remaining time until next beacon. */
3409         val = (uint64_t)ni->ni_intval * IEEE80211_DUR_TU;
3410         mod = le64toh(cmd.tstamp) % val;
3411         cmd.binitval = htole32((uint32_t)(val - mod));
3412
3413         DPRINTF(sc, WPI_DEBUG_RESET, "timing bintval=%u tstamp=%ju, init=%u\n",
3414             ni->ni_intval, le64toh(cmd.tstamp), (uint32_t)(val - mod));
3415
3416         return wpi_cmd(sc, WPI_CMD_TIMING, &cmd, sizeof cmd, 1);
3417 }
3418
3419 /*
3420  * This function is called periodically (every 60 seconds) to adjust output
3421  * power to temperature changes.
3422  */
3423 static void
3424 wpi_power_calibration(struct wpi_softc *sc)
3425 {
3426         int temp;
3427
3428         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_DOING, __func__);
3429
3430         /* Update sensor data. */
3431         temp = (int)WPI_READ(sc, WPI_UCODE_GP2);
3432         DPRINTF(sc, WPI_DEBUG_TEMP, "Temp in calibration is: %d\n", temp);
3433
3434         /* Sanity-check read value. */
3435         if (temp < -260 || temp > 25) {
3436                 /* This can't be correct, ignore. */
3437                 DPRINTF(sc, WPI_DEBUG_TEMP,
3438                     "out-of-range temperature reported: %d\n", temp);
3439                 return;
3440         }
3441
3442         DPRINTF(sc, WPI_DEBUG_TEMP, "temperature %d->%d\n", sc->temp, temp);
3443
3444         /* Adjust Tx power if need be. */
3445         if (abs(temp - sc->temp) <= 6)
3446                 return;
3447
3448         sc->temp = temp;
3449
3450         if (wpi_set_txpower(sc, 1) != 0) {
3451                 /* just warn, too bad for the automatic calibration... */
3452                 device_printf(sc->sc_dev,"could not adjust Tx power\n");
3453         }
3454 }
3455
3456 /*
3457  * Set TX power for current channel.
3458  */
3459 static int
3460 wpi_set_txpower(struct wpi_softc *sc, int async)
3461 {
3462         struct wpi_power_group *group;
3463         struct wpi_cmd_txpower cmd;
3464         uint8_t chan;
3465         int idx, is_chan_5ghz, i;
3466
3467         /* Retrieve current channel from last RXON. */
3468         chan = sc->rxon.chan;
3469         is_chan_5ghz = (sc->rxon.flags & htole32(WPI_RXON_24GHZ)) == 0;
3470
3471         /* Find the TX power group to which this channel belongs. */
3472         if (is_chan_5ghz) {
3473                 for (group = &sc->groups[1]; group < &sc->groups[4]; group++)
3474                         if (chan <= group->chan)
3475                                 break;
3476         } else
3477                 group = &sc->groups[0];
3478
3479         memset(&cmd, 0, sizeof cmd);
3480         cmd.band = is_chan_5ghz ? WPI_BAND_5GHZ : WPI_BAND_2GHZ;
3481         cmd.chan = htole16(chan);
3482
3483         /* Set TX power for all OFDM and CCK rates. */
3484         for (i = 0; i <= WPI_RIDX_MAX ; i++) {
3485                 /* Retrieve TX power for this channel/rate. */
3486                 idx = wpi_get_power_index(sc, group, chan, is_chan_5ghz, i);
3487
3488                 cmd.rates[i].plcp = wpi_ridx_to_plcp[i];
3489
3490                 if (is_chan_5ghz) {
3491                         cmd.rates[i].rf_gain = wpi_rf_gain_5ghz[idx];
3492                         cmd.rates[i].dsp_gain = wpi_dsp_gain_5ghz[idx];
3493                 } else {
3494                         cmd.rates[i].rf_gain = wpi_rf_gain_2ghz[idx];
3495                         cmd.rates[i].dsp_gain = wpi_dsp_gain_2ghz[idx];
3496                 }
3497                 DPRINTF(sc, WPI_DEBUG_TEMP,
3498                     "chan %d/ridx %d: power index %d\n", chan, i, idx);
3499         }
3500
3501         return wpi_cmd(sc, WPI_CMD_TXPOWER, &cmd, sizeof cmd, async);
3502 }
3503
3504 /*
3505  * Determine Tx power index for a given channel/rate combination.
3506  * This takes into account the regulatory information from EEPROM and the
3507  * current temperature.
3508  */
3509 static int
3510 wpi_get_power_index(struct wpi_softc *sc, struct wpi_power_group *group,
3511     uint8_t chan, int is_chan_5ghz, int ridx)
3512 {
3513 /* Fixed-point arithmetic division using a n-bit fractional part. */
3514 #define fdivround(a, b, n)      \
3515         ((((1 << n) * (a)) / (b) + (1 << n) / 2) / (1 << n))
3516
3517 /* Linear interpolation. */
3518 #define interpolate(x, x1, y1, x2, y2, n)       \
3519         ((y1) + fdivround(((x) - (x1)) * ((y2) - (y1)), (x2) - (x1), n))
3520
3521         struct wpi_power_sample *sample;
3522         int pwr, idx;
3523
3524         /* Default TX power is group maximum TX power minus 3dB. */
3525         pwr = group->maxpwr / 2;
3526
3527         /* Decrease TX power for highest OFDM rates to reduce distortion. */
3528         switch (ridx) {
3529         case WPI_RIDX_OFDM36:
3530                 pwr -= is_chan_5ghz ?  5 : 0;
3531                 break;
3532         case WPI_RIDX_OFDM48:
3533                 pwr -= is_chan_5ghz ? 10 : 7;
3534                 break;
3535         case WPI_RIDX_OFDM54:
3536                 pwr -= is_chan_5ghz ? 12 : 9;
3537                 break;
3538         }
3539
3540         /* Never exceed the channel maximum allowed TX power. */
3541         pwr = min(pwr, sc->maxpwr[chan]);
3542
3543         /* Retrieve TX power index into gain tables from samples. */
3544         for (sample = group->samples; sample < &group->samples[3]; sample++)
3545                 if (pwr > sample[1].power)
3546                         break;
3547         /* Fixed-point linear interpolation using a 19-bit fractional part. */
3548         idx = interpolate(pwr, sample[0].power, sample[0].index,
3549             sample[1].power, sample[1].index, 19);
3550
3551         /*-
3552          * Adjust power index based on current temperature:
3553          * - if cooler than factory-calibrated: decrease output power
3554          * - if warmer than factory-calibrated: increase output power
3555          */
3556         idx -= (sc->temp - group->temp) * 11 / 100;
3557
3558         /* Decrease TX power for CCK rates (-5dB). */
3559         if (ridx >= WPI_RIDX_CCK1)
3560                 idx += 10;
3561
3562         /* Make sure idx stays in a valid range. */
3563         if (idx < 0)
3564                 return 0;
3565         if (idx > WPI_MAX_PWR_INDEX)
3566                 return WPI_MAX_PWR_INDEX;
3567         return idx;
3568
3569 #undef interpolate
3570 #undef fdivround
3571 }
3572
3573 /*
3574  * Set STA mode power saving level (between 0 and 5).
3575  * Level 0 is CAM (Continuously Aware Mode), 5 is for maximum power saving.
3576  */
3577 static int
3578 wpi_set_pslevel(struct wpi_softc *sc, uint8_t dtim, int level, int async)
3579 {
3580         struct wpi_pmgt_cmd cmd;
3581         const struct wpi_pmgt *pmgt;
3582         uint32_t max, skip_dtim;
3583         uint32_t reg;
3584         int i;
3585
3586         DPRINTF(sc, WPI_DEBUG_PWRSAVE,
3587             "%s: dtim=%d, level=%d, async=%d\n",
3588             __func__, dtim, level, async);
3589
3590         /* Select which PS parameters to use. */
3591         if (dtim <= 10)
3592                 pmgt = &wpi_pmgt[0][level];
3593         else
3594                 pmgt = &wpi_pmgt[1][level];
3595
3596         memset(&cmd, 0, sizeof cmd);
3597         if (level != 0) /* not CAM */
3598                 cmd.flags |= htole16(WPI_PS_ALLOW_SLEEP);
3599         /* Retrieve PCIe Active State Power Management (ASPM). */
3600         reg = pci_read_config(sc->sc_dev, sc->sc_cap_off + 0x10, 1);
3601         if (!(reg & 0x1))       /* L0s Entry disabled. */
3602                 cmd.flags |= htole16(WPI_PS_PCI_PMGT);
3603
3604         cmd.rxtimeout = htole32(pmgt->rxtimeout * IEEE80211_DUR_TU);
3605         cmd.txtimeout = htole32(pmgt->txtimeout * IEEE80211_DUR_TU);
3606
3607         if (dtim == 0) {
3608                 dtim = 1;
3609                 skip_dtim = 0;
3610         } else
3611                 skip_dtim = pmgt->skip_dtim;
3612
3613         if (skip_dtim != 0) {
3614                 cmd.flags |= htole16(WPI_PS_SLEEP_OVER_DTIM);
3615                 max = pmgt->intval[4];
3616                 if (max == (uint32_t)-1)
3617                         max = dtim * (skip_dtim + 1);
3618                 else if (max > dtim)
3619                         max = (max / dtim) * dtim;
3620         } else
3621                 max = dtim;
3622
3623         for (i = 0; i < 5; i++)
3624                 cmd.intval[i] = htole32(MIN(max, pmgt->intval[i]));
3625
3626         return wpi_cmd(sc, WPI_CMD_SET_POWER_MODE, &cmd, sizeof cmd, async);
3627 }
3628
3629 static int
3630 wpi_send_btcoex(struct wpi_softc *sc)
3631 {
3632         struct wpi_bluetooth cmd;
3633
3634         memset(&cmd, 0, sizeof cmd);
3635         cmd.flags = WPI_BT_COEX_MODE_4WIRE;
3636         cmd.lead_time = WPI_BT_LEAD_TIME_DEF;
3637         cmd.max_kill = WPI_BT_MAX_KILL_DEF;
3638         DPRINTF(sc, WPI_DEBUG_RESET, "%s: configuring bluetooth coexistence\n",
3639             __func__);
3640         return wpi_cmd(sc, WPI_CMD_BT_COEX, &cmd, sizeof(cmd), 0);
3641 }
3642
3643 static int
3644 wpi_send_rxon(struct wpi_softc *sc, int assoc, int async)
3645 {
3646         int error;
3647
3648         if (async)
3649                 WPI_RXON_LOCK_ASSERT(sc);
3650
3651         if (assoc && wpi_check_bss_filter(sc) != 0) {
3652                 struct wpi_assoc rxon_assoc;
3653
3654                 rxon_assoc.flags = sc->rxon.flags;
3655                 rxon_assoc.filter = sc->rxon.filter;
3656                 rxon_assoc.ofdm_mask = sc->rxon.ofdm_mask;
3657                 rxon_assoc.cck_mask = sc->rxon.cck_mask;
3658                 rxon_assoc.reserved = 0;
3659
3660                 error = wpi_cmd(sc, WPI_CMD_RXON_ASSOC, &rxon_assoc,
3661                     sizeof (struct wpi_assoc), async);
3662                 if (error != 0) {
3663                         device_printf(sc->sc_dev,
3664                             "RXON_ASSOC command failed, error %d\n", error);
3665                         return error;
3666                 }
3667         } else {
3668                 if (async) {
3669                         WPI_NT_LOCK(sc);
3670                         error = wpi_cmd(sc, WPI_CMD_RXON, &sc->rxon,
3671                             sizeof (struct wpi_rxon), async);
3672                         if (error == 0)
3673                                 wpi_clear_node_table(sc);
3674                         WPI_NT_UNLOCK(sc);
3675                 } else {
3676                         error = wpi_cmd(sc, WPI_CMD_RXON, &sc->rxon,
3677                             sizeof (struct wpi_rxon), async);
3678                         if (error == 0)
3679                                 wpi_clear_node_table(sc);
3680                 }
3681
3682                 if (error != 0) {
3683                         device_printf(sc->sc_dev,
3684                             "RXON command failed, error %d\n", error);
3685                         return error;
3686                 }
3687
3688                 /* Add broadcast node. */
3689                 error = wpi_add_broadcast_node(sc, async);
3690                 if (error != 0) {
3691                         device_printf(sc->sc_dev,
3692                             "could not add broadcast node, error %d\n", error);
3693                         return error;
3694                 }
3695         }
3696
3697         /* Configuration has changed, set Tx power accordingly. */
3698         if ((error = wpi_set_txpower(sc, async)) != 0) {
3699                 device_printf(sc->sc_dev,
3700                     "%s: could not set TX power, error %d\n", __func__, error);
3701                 return error;
3702         }
3703
3704         return 0;
3705 }
3706
3707 /**
3708  * Configure the card to listen to a particular channel, this transisions the
3709  * card in to being able to receive frames from remote devices.
3710  */
3711 static int
3712 wpi_config(struct wpi_softc *sc)
3713 {
3714         struct ifnet *ifp = sc->sc_ifp;
3715         struct ieee80211com *ic = ifp->if_l2com;
3716         struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps);
3717         struct ieee80211_channel *c = ic->ic_curchan;
3718         int error;
3719
3720         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_BEGIN, __func__);
3721
3722         /* Set power saving level to CAM during initialization. */
3723         if ((error = wpi_set_pslevel(sc, 0, 0, 0)) != 0) {
3724                 device_printf(sc->sc_dev,
3725                     "%s: could not set power saving level\n", __func__);
3726                 return error;
3727         }
3728
3729         /* Configure bluetooth coexistence. */
3730         if ((error = wpi_send_btcoex(sc)) != 0) {
3731                 device_printf(sc->sc_dev,
3732                     "could not configure bluetooth coexistence\n");
3733                 return error;
3734         }
3735
3736         /* Configure adapter. */
3737         memset(&sc->rxon, 0, sizeof (struct wpi_rxon));
3738         IEEE80211_ADDR_COPY(sc->rxon.myaddr, vap->iv_myaddr);
3739
3740         /* Set default channel. */
3741         sc->rxon.chan = ieee80211_chan2ieee(ic, c);
3742         sc->rxon.flags = htole32(WPI_RXON_TSF | WPI_RXON_CTS_TO_SELF);
3743         if (IEEE80211_IS_CHAN_2GHZ(c))
3744                 sc->rxon.flags |= htole32(WPI_RXON_AUTO | WPI_RXON_24GHZ);
3745
3746         sc->rxon.filter = WPI_FILTER_MULTICAST;
3747         switch (ic->ic_opmode) {
3748         case IEEE80211_M_STA:
3749                 sc->rxon.mode = WPI_MODE_STA;
3750                 break;
3751         case IEEE80211_M_IBSS:
3752                 sc->rxon.mode = WPI_MODE_IBSS;
3753                 sc->rxon.filter |= WPI_FILTER_BEACON;
3754                 break;
3755         case IEEE80211_M_HOSTAP:
3756                 /* XXX workaround for beaconing */
3757                 sc->rxon.mode = WPI_MODE_IBSS;
3758                 sc->rxon.filter |= WPI_FILTER_ASSOC | WPI_FILTER_PROMISC;
3759                 break;
3760         case IEEE80211_M_AHDEMO:
3761                 /* XXX workaround for passive channels selection */
3762                 sc->rxon.mode = WPI_MODE_HOSTAP;
3763                 break;
3764         case IEEE80211_M_MONITOR:
3765                 sc->rxon.mode = WPI_MODE_MONITOR;
3766                 break;
3767         default:
3768                 device_printf(sc->sc_dev, "unknown opmode %d\n",
3769                     ic->ic_opmode);
3770                 return EINVAL;
3771         }
3772         sc->rxon.filter = htole32(sc->rxon.filter);
3773         wpi_set_promisc(sc);
3774         sc->rxon.cck_mask  = 0x0f;      /* not yet negotiated */
3775         sc->rxon.ofdm_mask = 0xff;      /* not yet negotiated */
3776
3777         /* XXX Current configuration may be unusable. */
3778         if (IEEE80211_IS_CHAN_NOADHOC(c) && sc->rxon.mode == WPI_MODE_IBSS) {
3779                 device_printf(sc->sc_dev,
3780                     "%s: invalid channel (%d) selected for IBSS mode\n",
3781                     __func__, ieee80211_chan2ieee(ic, c));
3782                 return EINVAL;
3783         }
3784
3785         if ((error = wpi_send_rxon(sc, 0, 0)) != 0) {
3786                 device_printf(sc->sc_dev, "%s: could not send RXON\n",
3787                     __func__);
3788                 return error;
3789         }
3790
3791         /* Setup rate scalling. */
3792         if ((error = wpi_mrr_setup(sc)) != 0) {
3793                 device_printf(sc->sc_dev, "could not setup MRR, error %d\n",
3794                     error);
3795                 return error;
3796         }
3797
3798         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END, __func__);
3799
3800         return 0;
3801 }
3802
3803 static uint16_t
3804 wpi_get_active_dwell_time(struct wpi_softc *sc,
3805     struct ieee80211_channel *c, uint8_t n_probes)
3806 {
3807         /* No channel? Default to 2GHz settings. */
3808         if (c == NULL || IEEE80211_IS_CHAN_2GHZ(c)) {
3809                 return (WPI_ACTIVE_DWELL_TIME_2GHZ +
3810                 WPI_ACTIVE_DWELL_FACTOR_2GHZ * (n_probes + 1));
3811         }
3812
3813         /* 5GHz dwell time. */
3814         return (WPI_ACTIVE_DWELL_TIME_5GHZ +
3815             WPI_ACTIVE_DWELL_FACTOR_5GHZ * (n_probes + 1));
3816 }
3817
3818 /*
3819  * Limit the total dwell time.
3820  *
3821  * Returns the dwell time in milliseconds.
3822  */
3823 static uint16_t
3824 wpi_limit_dwell(struct wpi_softc *sc, uint16_t dwell_time)
3825 {
3826         struct ieee80211com *ic = sc->sc_ifp->if_l2com;
3827         struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps);
3828         int bintval = 0;
3829
3830         /* bintval is in TU (1.024mS) */
3831         if (vap != NULL)
3832                 bintval = vap->iv_bss->ni_intval;
3833
3834         /*
3835          * If it's non-zero, we should calculate the minimum of
3836          * it and the DWELL_BASE.
3837          *
3838          * XXX Yes, the math should take into account that bintval
3839          * is 1.024mS, not 1mS..
3840          */
3841         if (bintval > 0) {
3842                 DPRINTF(sc, WPI_DEBUG_SCAN, "%s: bintval=%d\n", __func__,
3843                     bintval);
3844                 return (MIN(dwell_time, bintval - WPI_CHANNEL_TUNE_TIME * 2));
3845         }
3846
3847         /* No association context? Default. */
3848         return dwell_time;
3849 }
3850
3851 static uint16_t
3852 wpi_get_passive_dwell_time(struct wpi_softc *sc, struct ieee80211_channel *c)
3853 {
3854         uint16_t passive;
3855
3856         if (c == NULL || IEEE80211_IS_CHAN_2GHZ(c))
3857                 passive = WPI_PASSIVE_DWELL_BASE + WPI_PASSIVE_DWELL_TIME_2GHZ;
3858         else
3859                 passive = WPI_PASSIVE_DWELL_BASE + WPI_PASSIVE_DWELL_TIME_5GHZ;
3860
3861         /* Clamp to the beacon interval if we're associated. */
3862         return (wpi_limit_dwell(sc, passive));
3863 }
3864
3865 static uint32_t
3866 wpi_get_scan_pause_time(uint32_t time, uint16_t bintval)
3867 {
3868         uint32_t mod = (time % bintval) * IEEE80211_DUR_TU;
3869         uint32_t nbeacons = time / bintval;
3870
3871         if (mod > WPI_PAUSE_MAX_TIME)
3872                 mod = WPI_PAUSE_MAX_TIME;
3873
3874         return WPI_PAUSE_SCAN(nbeacons, mod);
3875 }
3876
3877 /*
3878  * Send a scan request to the firmware.
3879  */
3880 static int
3881 wpi_scan(struct wpi_softc *sc, struct ieee80211_channel *c)
3882 {
3883         struct ifnet *ifp = sc->sc_ifp;
3884         struct ieee80211com *ic = ifp->if_l2com;
3885         struct ieee80211_scan_state *ss = ic->ic_scan;
3886         struct ieee80211vap *vap = ss->ss_vap;
3887         struct wpi_scan_hdr *hdr;
3888         struct wpi_cmd_data *tx;
3889         struct wpi_scan_essid *essids;
3890         struct wpi_scan_chan *chan;
3891         struct ieee80211_frame *wh;
3892         struct ieee80211_rateset *rs;
3893         uint16_t dwell_active, dwell_passive;
3894         uint8_t *buf, *frm;
3895         int bgscan, bintval, buflen, error, i, nssid;
3896
3897         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_BEGIN, __func__);
3898
3899         /*
3900          * We are absolutely not allowed to send a scan command when another
3901          * scan command is pending.
3902          */
3903         if (callout_pending(&sc->scan_timeout)) {
3904                 device_printf(sc->sc_dev, "%s: called whilst scanning!\n",
3905                     __func__);
3906                 error = EAGAIN;
3907                 goto fail;
3908         }
3909
3910         bgscan = wpi_check_bss_filter(sc);
3911         bintval = vap->iv_bss->ni_intval;
3912         if (bgscan != 0 &&
3913             bintval < WPI_QUIET_TIME_DEFAULT + WPI_CHANNEL_TUNE_TIME * 2) {
3914                 error = EOPNOTSUPP;
3915                 goto fail;
3916         }
3917
3918         buf = malloc(WPI_SCAN_MAXSZ, M_DEVBUF, M_NOWAIT | M_ZERO);
3919         if (buf == NULL) {
3920                 device_printf(sc->sc_dev,
3921                     "%s: could not allocate buffer for scan command\n",
3922                     __func__);
3923                 error = ENOMEM;
3924                 goto fail;
3925         }
3926         hdr = (struct wpi_scan_hdr *)buf;
3927
3928         /*
3929          * Move to the next channel if no packets are received within 10 msecs
3930          * after sending the probe request.
3931          */
3932         hdr->quiet_time = htole16(WPI_QUIET_TIME_DEFAULT);
3933         hdr->quiet_threshold = htole16(1);
3934
3935         if (bgscan != 0) {
3936                 /*
3937                  * Max needs to be greater than active and passive and quiet!
3938                  * It's also in microseconds!
3939                  */
3940                 hdr->max_svc = htole32(250 * IEEE80211_DUR_TU);
3941                 hdr->pause_svc = htole32(wpi_get_scan_pause_time(100,
3942                     bintval));
3943         }
3944
3945         hdr->filter = htole32(WPI_FILTER_MULTICAST | WPI_FILTER_BEACON);
3946
3947         tx = (struct wpi_cmd_data *)(hdr + 1);
3948         tx->flags = htole32(WPI_TX_AUTO_SEQ);
3949         tx->id = WPI_ID_BROADCAST;
3950         tx->lifetime = htole32(WPI_LIFETIME_INFINITE);
3951
3952         if (IEEE80211_IS_CHAN_5GHZ(c)) {
3953                 /* Send probe requests at 6Mbps. */
3954                 tx->plcp = wpi_ridx_to_plcp[WPI_RIDX_OFDM6];
3955                 rs = &ic->ic_sup_rates[IEEE80211_MODE_11A];
3956         } else {
3957                 hdr->flags = htole32(WPI_RXON_24GHZ | WPI_RXON_AUTO);
3958                 /* Send probe requests at 1Mbps. */
3959                 tx->plcp = wpi_ridx_to_plcp[WPI_RIDX_CCK1];
3960                 rs = &ic->ic_sup_rates[IEEE80211_MODE_11G];
3961         }
3962
3963         essids = (struct wpi_scan_essid *)(tx + 1);
3964         nssid = MIN(ss->ss_nssid, WPI_SCAN_MAX_ESSIDS);
3965         for (i = 0; i < nssid; i++) {
3966                 essids[i].id = IEEE80211_ELEMID_SSID;
3967                 essids[i].len = MIN(ss->ss_ssid[i].len, IEEE80211_NWID_LEN);
3968                 memcpy(essids[i].data, ss->ss_ssid[i].ssid, essids[i].len);
3969 #ifdef WPI_DEBUG
3970                 if (sc->sc_debug & WPI_DEBUG_SCAN) {
3971                         printf("Scanning Essid: ");
3972                         ieee80211_print_essid(essids[i].data, essids[i].len);
3973                         printf("\n");
3974                 }
3975 #endif
3976         }
3977
3978         /*
3979          * Build a probe request frame.  Most of the following code is a
3980          * copy & paste of what is done in net80211.
3981          */
3982         wh = (struct ieee80211_frame *)(essids + WPI_SCAN_MAX_ESSIDS);
3983         wh->i_fc[0] = IEEE80211_FC0_VERSION_0 | IEEE80211_FC0_TYPE_MGT |
3984                 IEEE80211_FC0_SUBTYPE_PROBE_REQ;
3985         wh->i_fc[1] = IEEE80211_FC1_DIR_NODS;
3986         IEEE80211_ADDR_COPY(wh->i_addr1, ifp->if_broadcastaddr);
3987         IEEE80211_ADDR_COPY(wh->i_addr2, vap->iv_myaddr);
3988         IEEE80211_ADDR_COPY(wh->i_addr3, ifp->if_broadcastaddr);
3989         *(uint16_t *)&wh->i_dur[0] = 0; /* filled by h/w */
3990         *(uint16_t *)&wh->i_seq[0] = 0; /* filled by h/w */
3991
3992         frm = (uint8_t *)(wh + 1);
3993         frm = ieee80211_add_ssid(frm, NULL, 0);
3994         frm = ieee80211_add_rates(frm, rs);
3995         if (rs->rs_nrates > IEEE80211_RATE_SIZE)
3996                 frm = ieee80211_add_xrates(frm, rs);
3997
3998         /* Set length of probe request. */
3999         tx->len = htole16(frm - (uint8_t *)wh);
4000
4001         /*
4002          * Construct information about the channel that we
4003          * want to scan. The firmware expects this to be directly
4004          * after the scan probe request
4005          */
4006         chan = (struct wpi_scan_chan *)frm;
4007         chan->chan = htole16(ieee80211_chan2ieee(ic, c));
4008         chan->flags = 0;
4009         if (nssid) {
4010                 hdr->crc_threshold = WPI_SCAN_CRC_TH_DEFAULT;
4011                 chan->flags |= WPI_CHAN_NPBREQS(nssid);
4012         } else
4013                 hdr->crc_threshold = WPI_SCAN_CRC_TH_NEVER;
4014
4015         if (!IEEE80211_IS_CHAN_PASSIVE(c))
4016                 chan->flags |= WPI_CHAN_ACTIVE;
4017
4018         /*
4019          * Calculate the active/passive dwell times.
4020          */
4021
4022         dwell_active = wpi_get_active_dwell_time(sc, c, nssid);
4023         dwell_passive = wpi_get_passive_dwell_time(sc, c);
4024
4025         /* Make sure they're valid. */
4026         if (dwell_active > dwell_passive)
4027                 dwell_active = dwell_passive;
4028
4029         chan->active = htole16(dwell_active);
4030         chan->passive = htole16(dwell_passive);
4031
4032         chan->dsp_gain = 0x6e;  /* Default level */
4033
4034         if (IEEE80211_IS_CHAN_5GHZ(c))
4035                 chan->rf_gain = 0x3b;
4036         else
4037                 chan->rf_gain = 0x28;
4038
4039         DPRINTF(sc, WPI_DEBUG_SCAN, "Scanning %u Passive: %d\n",
4040             chan->chan, IEEE80211_IS_CHAN_PASSIVE(c));
4041
4042         hdr->nchan++;
4043
4044         if (hdr->nchan == 1 && sc->rxon.chan == chan->chan) {
4045                 /* XXX Force probe request transmission. */
4046                 memcpy(chan + 1, chan, sizeof (struct wpi_scan_chan));
4047
4048                 chan++;
4049
4050                 /* Reduce unnecessary delay. */
4051                 chan->flags = 0;
4052                 chan->passive = chan->active = hdr->quiet_time;
4053
4054                 hdr->nchan++;
4055         }
4056
4057         chan++;
4058
4059         buflen = (uint8_t *)chan - buf;
4060         hdr->len = htole16(buflen);
4061
4062         DPRINTF(sc, WPI_DEBUG_CMD, "sending scan command nchan=%d\n",
4063             hdr->nchan);
4064         error = wpi_cmd(sc, WPI_CMD_SCAN, buf, buflen, 1);
4065         free(buf, M_DEVBUF);
4066
4067         if (error != 0)
4068                 goto fail;
4069
4070         callout_reset(&sc->scan_timeout, 5*hz, wpi_scan_timeout, sc);
4071
4072         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END, __func__);
4073
4074         return 0;
4075
4076 fail:   DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END_ERR, __func__);
4077
4078         return error;
4079 }
4080
4081 static int
4082 wpi_auth(struct wpi_softc *sc, struct ieee80211vap *vap)
4083 {
4084         struct ieee80211com *ic = vap->iv_ic;
4085         struct ieee80211_node *ni = vap->iv_bss;
4086         struct ieee80211_channel *c = ni->ni_chan;
4087         int error;
4088
4089         WPI_RXON_LOCK(sc);
4090
4091         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_BEGIN, __func__);
4092
4093         /* Update adapter configuration. */
4094         sc->rxon.associd = 0;
4095         sc->rxon.filter &= ~htole32(WPI_FILTER_BSS);
4096         IEEE80211_ADDR_COPY(sc->rxon.bssid, ni->ni_bssid);
4097         sc->rxon.chan = ieee80211_chan2ieee(ic, c);
4098         sc->rxon.flags = htole32(WPI_RXON_TSF | WPI_RXON_CTS_TO_SELF);
4099         if (IEEE80211_IS_CHAN_2GHZ(c))
4100                 sc->rxon.flags |= htole32(WPI_RXON_AUTO | WPI_RXON_24GHZ);
4101         if (ic->ic_flags & IEEE80211_F_SHSLOT)
4102                 sc->rxon.flags |= htole32(WPI_RXON_SHSLOT);
4103         if (ic->ic_flags & IEEE80211_F_SHPREAMBLE)
4104                 sc->rxon.flags |= htole32(WPI_RXON_SHPREAMBLE);
4105         if (IEEE80211_IS_CHAN_A(c)) {
4106                 sc->rxon.cck_mask  = 0;
4107                 sc->rxon.ofdm_mask = 0x15;
4108         } else if (IEEE80211_IS_CHAN_B(c)) {
4109                 sc->rxon.cck_mask  = 0x03;
4110                 sc->rxon.ofdm_mask = 0;
4111         } else {
4112                 /* Assume 802.11b/g. */
4113                 sc->rxon.cck_mask  = 0x0f;
4114                 sc->rxon.ofdm_mask = 0x15;
4115         }
4116
4117         DPRINTF(sc, WPI_DEBUG_STATE, "rxon chan %d flags %x cck %x ofdm %x\n",
4118             sc->rxon.chan, sc->rxon.flags, sc->rxon.cck_mask,
4119             sc->rxon.ofdm_mask);
4120
4121         if ((error = wpi_send_rxon(sc, 0, 1)) != 0) {
4122                 device_printf(sc->sc_dev, "%s: could not send RXON\n",
4123                     __func__);
4124         }
4125
4126         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END, __func__);
4127
4128         WPI_RXON_UNLOCK(sc);
4129
4130         return error;
4131 }
4132
4133 static int
4134 wpi_config_beacon(struct wpi_vap *wvp)
4135 {
4136         struct ieee80211com *ic = wvp->wv_vap.iv_ic;
4137         struct ieee80211_beacon_offsets *bo = &wvp->wv_boff;
4138         struct wpi_buf *bcn = &wvp->wv_bcbuf;
4139         struct wpi_softc *sc = ic->ic_ifp->if_softc;
4140         struct wpi_cmd_beacon *cmd = (struct wpi_cmd_beacon *)&bcn->data;
4141         struct ieee80211_tim_ie *tie;
4142         struct mbuf *m;
4143         uint8_t *ptr;
4144         int error;
4145
4146         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_DOING, __func__);
4147
4148         WPI_VAP_LOCK_ASSERT(wvp);
4149
4150         cmd->len = htole16(bcn->m->m_pkthdr.len);
4151         cmd->plcp = (ic->ic_curmode == IEEE80211_MODE_11A) ?
4152             wpi_ridx_to_plcp[WPI_RIDX_OFDM6] : wpi_ridx_to_plcp[WPI_RIDX_CCK1];
4153
4154         /* XXX seems to be unused */
4155         if (*(bo->bo_tim) == IEEE80211_ELEMID_TIM) {
4156                 tie = (struct ieee80211_tim_ie *) bo->bo_tim;
4157                 ptr = mtod(bcn->m, uint8_t *);
4158
4159                 cmd->tim = htole16(bo->bo_tim - ptr);
4160                 cmd->timsz = tie->tim_len;
4161         }
4162
4163         /* Necessary for recursion in ieee80211_beacon_update(). */
4164         m = bcn->m;
4165         bcn->m = m_dup(m, M_NOWAIT);
4166         if (bcn->m == NULL) {
4167                 device_printf(sc->sc_dev,
4168                     "%s: could not copy beacon frame\n", __func__);
4169                 error = ENOMEM;
4170                 goto end;
4171         }
4172
4173         if ((error = wpi_cmd2(sc, bcn)) != 0) {
4174                 device_printf(sc->sc_dev,
4175                     "%s: could not update beacon frame, error %d", __func__,
4176                     error);
4177         }
4178
4179         /* Restore mbuf. */
4180 end:    bcn->m = m;
4181
4182         return error;
4183 }
4184
4185 static int
4186 wpi_setup_beacon(struct wpi_softc *sc, struct ieee80211_node *ni)
4187 {
4188         struct wpi_vap *wvp = WPI_VAP(ni->ni_vap);
4189         struct wpi_buf *bcn = &wvp->wv_bcbuf;
4190         struct ieee80211_beacon_offsets *bo = &wvp->wv_boff;
4191         struct mbuf *m;
4192         int error;
4193
4194         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_DOING, __func__);
4195
4196         if (ni->ni_chan == IEEE80211_CHAN_ANYC)
4197                 return EINVAL;
4198
4199         m = ieee80211_beacon_alloc(ni, bo);
4200         if (m == NULL) {
4201                 device_printf(sc->sc_dev,
4202                     "%s: could not allocate beacon frame\n", __func__);
4203                 return ENOMEM;
4204         }
4205
4206         WPI_VAP_LOCK(wvp);
4207         if (bcn->m != NULL)
4208                 m_freem(bcn->m);
4209
4210         bcn->m = m;
4211
4212         error = wpi_config_beacon(wvp);
4213         WPI_VAP_UNLOCK(wvp);
4214
4215         return error;
4216 }
4217
4218 static void
4219 wpi_update_beacon(struct ieee80211vap *vap, int item)
4220 {
4221         struct wpi_softc *sc = vap->iv_ic->ic_ifp->if_softc;
4222         struct wpi_vap *wvp = WPI_VAP(vap);
4223         struct wpi_buf *bcn = &wvp->wv_bcbuf;
4224         struct ieee80211_beacon_offsets *bo = &wvp->wv_boff;
4225         struct ieee80211_node *ni = vap->iv_bss;
4226         int mcast = 0;
4227
4228         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_BEGIN, __func__);
4229
4230         WPI_VAP_LOCK(wvp);
4231         if (bcn->m == NULL) {
4232                 bcn->m = ieee80211_beacon_alloc(ni, bo);
4233                 if (bcn->m == NULL) {
4234                         device_printf(sc->sc_dev,
4235                             "%s: could not allocate beacon frame\n", __func__);
4236
4237                         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END_ERR,
4238                             __func__);
4239
4240                         WPI_VAP_UNLOCK(wvp);
4241                         return;
4242                 }
4243         }
4244         WPI_VAP_UNLOCK(wvp);
4245
4246         if (item == IEEE80211_BEACON_TIM)
4247                 mcast = 1;      /* TODO */
4248
4249         setbit(bo->bo_flags, item);
4250         ieee80211_beacon_update(ni, bo, bcn->m, mcast);
4251
4252         WPI_VAP_LOCK(wvp);
4253         wpi_config_beacon(wvp);
4254         WPI_VAP_UNLOCK(wvp);
4255
4256         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END, __func__);
4257 }
4258
4259 static void
4260 wpi_newassoc(struct ieee80211_node *ni, int isnew)
4261 {
4262         struct ieee80211vap *vap = ni->ni_vap;
4263         struct wpi_softc *sc = ni->ni_ic->ic_ifp->if_softc;
4264         struct wpi_node *wn = WPI_NODE(ni);
4265         int error;
4266
4267         WPI_NT_LOCK(sc);
4268
4269         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_DOING, __func__);
4270
4271         if (vap->iv_opmode != IEEE80211_M_STA && wn->id == WPI_ID_UNDEFINED) {
4272                 if ((error = wpi_add_ibss_node(sc, ni)) != 0) {
4273                         device_printf(sc->sc_dev,
4274                             "%s: could not add IBSS node, error %d\n",
4275                             __func__, error);
4276                 }
4277         }
4278         WPI_NT_UNLOCK(sc);
4279 }
4280
4281 static int
4282 wpi_run(struct wpi_softc *sc, struct ieee80211vap *vap)
4283 {
4284         struct ieee80211com *ic = vap->iv_ic;
4285         struct ieee80211_node *ni = vap->iv_bss;
4286         struct ieee80211_channel *c = ni->ni_chan;
4287         int error;
4288
4289         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_BEGIN, __func__);
4290
4291         if (vap->iv_opmode == IEEE80211_M_MONITOR) {
4292                 /* Link LED blinks while monitoring. */
4293                 wpi_set_led(sc, WPI_LED_LINK, 5, 5);
4294                 return 0;
4295         }
4296
4297         /* XXX kernel panic workaround */
4298         if (c == IEEE80211_CHAN_ANYC) {
4299                 device_printf(sc->sc_dev, "%s: incomplete configuration\n",
4300                     __func__);
4301                 return EINVAL;
4302         }
4303
4304         if ((error = wpi_set_timing(sc, ni)) != 0) {
4305                 device_printf(sc->sc_dev,
4306                     "%s: could not set timing, error %d\n", __func__, error);
4307                 return error;
4308         }
4309
4310         /* Update adapter configuration. */
4311         WPI_RXON_LOCK(sc);
4312         IEEE80211_ADDR_COPY(sc->rxon.bssid, ni->ni_bssid);
4313         sc->rxon.associd = htole16(IEEE80211_NODE_AID(ni));
4314         sc->rxon.chan = ieee80211_chan2ieee(ic, c);
4315         sc->rxon.flags = htole32(WPI_RXON_TSF | WPI_RXON_CTS_TO_SELF);
4316         if (IEEE80211_IS_CHAN_2GHZ(c))
4317                 sc->rxon.flags |= htole32(WPI_RXON_AUTO | WPI_RXON_24GHZ);
4318         if (ic->ic_flags & IEEE80211_F_SHSLOT)
4319                 sc->rxon.flags |= htole32(WPI_RXON_SHSLOT);
4320         if (ic->ic_flags & IEEE80211_F_SHPREAMBLE)
4321                 sc->rxon.flags |= htole32(WPI_RXON_SHPREAMBLE);
4322         if (IEEE80211_IS_CHAN_A(c)) {
4323                 sc->rxon.cck_mask  = 0;
4324                 sc->rxon.ofdm_mask = 0x15;
4325         } else if (IEEE80211_IS_CHAN_B(c)) {
4326                 sc->rxon.cck_mask  = 0x03;
4327                 sc->rxon.ofdm_mask = 0;
4328         } else {
4329                 /* Assume 802.11b/g. */
4330                 sc->rxon.cck_mask  = 0x0f;
4331                 sc->rxon.ofdm_mask = 0x15;
4332         }
4333         sc->rxon.filter |= htole32(WPI_FILTER_BSS);
4334
4335         DPRINTF(sc, WPI_DEBUG_STATE, "rxon chan %d flags %x\n",
4336             sc->rxon.chan, sc->rxon.flags);
4337
4338         if ((error = wpi_send_rxon(sc, 0, 1)) != 0) {
4339                 device_printf(sc->sc_dev, "%s: could not send RXON\n",
4340                     __func__);
4341                 return error;
4342         }
4343
4344         /* Start periodic calibration timer. */
4345         callout_reset(&sc->calib_to, 60*hz, wpi_calib_timeout, sc);
4346
4347         WPI_RXON_UNLOCK(sc);
4348
4349         if (vap->iv_opmode == IEEE80211_M_IBSS ||
4350             vap->iv_opmode == IEEE80211_M_HOSTAP) {
4351                 if ((error = wpi_setup_beacon(sc, ni)) != 0) {
4352                         device_printf(sc->sc_dev,
4353                             "%s: could not setup beacon, error %d\n", __func__,
4354                             error);
4355                         return error;
4356                 }
4357         }
4358
4359         if (vap->iv_opmode == IEEE80211_M_STA) {
4360                 /* Add BSS node. */
4361                 WPI_NT_LOCK(sc);
4362                 error = wpi_add_sta_node(sc, ni);
4363                 WPI_NT_UNLOCK(sc);
4364                 if (error != 0) {
4365                         device_printf(sc->sc_dev,
4366                             "%s: could not add BSS node, error %d\n", __func__,
4367                             error);
4368                         return error;
4369                 }
4370         }
4371
4372         /* Link LED always on while associated. */
4373         wpi_set_led(sc, WPI_LED_LINK, 0, 1);
4374
4375         /* Enable power-saving mode if requested by user. */
4376         if ((vap->iv_flags & IEEE80211_F_PMGTON) &&
4377             vap->iv_opmode != IEEE80211_M_IBSS)
4378                 (void)wpi_set_pslevel(sc, 0, 3, 1);
4379
4380         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END, __func__);
4381
4382         return 0;
4383 }
4384
4385 static int
4386 wpi_load_key(struct ieee80211_node *ni, const struct ieee80211_key *k)
4387 {
4388         const struct ieee80211_cipher *cip = k->wk_cipher;
4389         struct ieee80211vap *vap = ni->ni_vap;
4390         struct wpi_softc *sc = ni->ni_ic->ic_ifp->if_softc;
4391         struct wpi_node *wn = WPI_NODE(ni);
4392         struct wpi_node_info node;
4393         uint16_t kflags;
4394         int error;
4395
4396         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_DOING, __func__);
4397
4398         if (wpi_check_node_entry(sc, wn->id) == 0) {
4399                 device_printf(sc->sc_dev, "%s: node does not exist\n",
4400                     __func__);
4401                 return 0;
4402         }
4403
4404         switch (cip->ic_cipher) {
4405         case IEEE80211_CIPHER_AES_CCM:
4406                 kflags = WPI_KFLAG_CCMP;
4407                 break;
4408
4409         default:
4410                 device_printf(sc->sc_dev, "%s: unknown cipher %d\n", __func__,
4411                     cip->ic_cipher);
4412                 return 0;
4413         }
4414
4415         kflags |= WPI_KFLAG_KID(k->wk_keyix);
4416         if (k->wk_flags & IEEE80211_KEY_GROUP)
4417                 kflags |= WPI_KFLAG_MULTICAST;
4418
4419         memset(&node, 0, sizeof node);
4420         node.id = wn->id;
4421         node.control = WPI_NODE_UPDATE;
4422         node.flags = WPI_FLAG_KEY_SET;
4423         node.kflags = htole16(kflags);
4424         memcpy(node.key, k->wk_key, k->wk_keylen);
4425 again:
4426         DPRINTF(sc, WPI_DEBUG_KEY,
4427             "%s: setting %s key id %d for node %d (%s)\n", __func__,
4428             (kflags & WPI_KFLAG_MULTICAST) ? "group" : "ucast", k->wk_keyix,
4429             node.id, ether_sprintf(ni->ni_macaddr));
4430
4431         error = wpi_cmd(sc, WPI_CMD_ADD_NODE, &node, sizeof node, 1);
4432         if (error != 0) {
4433                 device_printf(sc->sc_dev, "can't update node info, error %d\n",
4434                     error);
4435                 return !error;
4436         }
4437
4438         if (!(kflags & WPI_KFLAG_MULTICAST) && &vap->iv_nw_keys[0] <= k &&
4439             k < &vap->iv_nw_keys[IEEE80211_WEP_NKID]) {
4440                 kflags |= WPI_KFLAG_MULTICAST;
4441                 node.kflags = htole16(kflags);
4442
4443                 goto again;
4444         }
4445
4446         return 1;
4447 }
4448
4449 static void
4450 wpi_load_key_cb(void *arg, struct ieee80211_node *ni)
4451 {
4452         const struct ieee80211_key *k = arg;
4453         struct ieee80211vap *vap = ni->ni_vap;
4454         struct wpi_softc *sc = ni->ni_ic->ic_ifp->if_softc;
4455         struct wpi_node *wn = WPI_NODE(ni);
4456         int error;
4457
4458         if (vap->iv_bss == ni && wn->id == WPI_ID_UNDEFINED)
4459                 return;
4460
4461         WPI_NT_LOCK(sc);
4462         error = wpi_load_key(ni, k);
4463         WPI_NT_UNLOCK(sc);
4464
4465         if (error == 0) {
4466                 device_printf(sc->sc_dev, "%s: error while setting key\n",
4467                     __func__);
4468         }
4469 }
4470
4471 static int
4472 wpi_set_global_keys(struct ieee80211_node *ni)
4473 {
4474         struct ieee80211vap *vap = ni->ni_vap;
4475         struct ieee80211_key *wk = &vap->iv_nw_keys[0];
4476         int error = 1;
4477
4478         for (; wk < &vap->iv_nw_keys[IEEE80211_WEP_NKID] && error; wk++)
4479                 if (wk->wk_keyix != IEEE80211_KEYIX_NONE)
4480                         error = wpi_load_key(ni, wk);
4481
4482         return !error;
4483 }
4484
4485 static int
4486 wpi_del_key(struct ieee80211_node *ni, const struct ieee80211_key *k)
4487 {
4488         struct ieee80211vap *vap = ni->ni_vap;
4489         struct wpi_softc *sc = ni->ni_ic->ic_ifp->if_softc;
4490         struct wpi_node *wn = WPI_NODE(ni);
4491         struct wpi_node_info node;
4492         uint16_t kflags;
4493         int error;
4494
4495         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_DOING, __func__);
4496
4497         if (wpi_check_node_entry(sc, wn->id) == 0) {
4498                 DPRINTF(sc, WPI_DEBUG_KEY, "%s: node was removed\n", __func__);
4499                 return 1;       /* Nothing to do. */
4500         }
4501
4502         kflags = WPI_KFLAG_KID(k->wk_keyix);
4503         if (k->wk_flags & IEEE80211_KEY_GROUP)
4504                 kflags |= WPI_KFLAG_MULTICAST;
4505
4506         memset(&node, 0, sizeof node);
4507         node.id = wn->id;
4508         node.control = WPI_NODE_UPDATE;
4509         node.flags = WPI_FLAG_KEY_SET;
4510         node.kflags = htole16(kflags);
4511 again:
4512         DPRINTF(sc, WPI_DEBUG_KEY, "%s: deleting %s key %d for node %d (%s)\n",
4513             __func__, (kflags & WPI_KFLAG_MULTICAST) ? "group" : "ucast",
4514             k->wk_keyix, node.id, ether_sprintf(ni->ni_macaddr));
4515
4516         error = wpi_cmd(sc, WPI_CMD_ADD_NODE, &node, sizeof node, 1);
4517         if (error != 0) {
4518                 device_printf(sc->sc_dev, "can't update node info, error %d\n",
4519                     error);
4520                 return !error;
4521         }
4522
4523         if (!(kflags & WPI_KFLAG_MULTICAST) && &vap->iv_nw_keys[0] <= k &&
4524             k < &vap->iv_nw_keys[IEEE80211_WEP_NKID]) {
4525                 kflags |= WPI_KFLAG_MULTICAST;
4526                 node.kflags = htole16(kflags);
4527
4528                 goto again;
4529         }
4530
4531         return 1;
4532 }
4533
4534 static void
4535 wpi_del_key_cb(void *arg, struct ieee80211_node *ni)
4536 {
4537         const struct ieee80211_key *k = arg;
4538         struct ieee80211vap *vap = ni->ni_vap;
4539         struct wpi_softc *sc = ni->ni_ic->ic_ifp->if_softc;
4540         struct wpi_node *wn = WPI_NODE(ni);
4541         int error;
4542
4543         if (vap->iv_bss == ni && wn->id == WPI_ID_UNDEFINED)
4544                 return;
4545
4546         WPI_NT_LOCK(sc);
4547         error = wpi_del_key(ni, k);
4548         WPI_NT_UNLOCK(sc);
4549
4550         if (error == 0) {
4551                 device_printf(sc->sc_dev, "%s: error while deleting key\n",
4552                     __func__);
4553         }
4554 }
4555
4556 static int
4557 wpi_process_key(struct ieee80211vap *vap, const struct ieee80211_key *k,
4558     int set)
4559 {
4560         struct ieee80211com *ic = vap->iv_ic;
4561         struct wpi_softc *sc = ic->ic_ifp->if_softc;
4562         struct wpi_vap *wvp = WPI_VAP(vap);
4563         struct ieee80211_node *ni;
4564         int error, ni_ref = 0;
4565
4566         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_DOING, __func__);
4567
4568         if (k->wk_flags & IEEE80211_KEY_SWCRYPT) {
4569                 /* Not for us. */
4570                 return 1;
4571         }
4572
4573         if (!(k->wk_flags & IEEE80211_KEY_RECV)) {
4574                 /* XMIT keys are handled in wpi_tx_data(). */
4575                 return 1;
4576         }
4577
4578         /* Handle group keys. */
4579         if (&vap->iv_nw_keys[0] <= k &&
4580             k < &vap->iv_nw_keys[IEEE80211_WEP_NKID]) {
4581                 WPI_NT_LOCK(sc);
4582                 if (set)
4583                         wvp->wv_gtk |= WPI_VAP_KEY(k->wk_keyix);
4584                 else
4585                         wvp->wv_gtk &= ~WPI_VAP_KEY(k->wk_keyix);
4586                 WPI_NT_UNLOCK(sc);
4587
4588                 if (vap->iv_state == IEEE80211_S_RUN) {
4589                         ieee80211_iterate_nodes(&ic->ic_sta,
4590                             set ? wpi_load_key_cb : wpi_del_key_cb,
4591                             __DECONST(void *, k));
4592                 }
4593
4594                 return 1;
4595         }
4596
4597         switch (vap->iv_opmode) {
4598         case IEEE80211_M_STA:
4599                 ni = vap->iv_bss;
4600                 break;
4601
4602         case IEEE80211_M_IBSS:
4603         case IEEE80211_M_AHDEMO:
4604         case IEEE80211_M_HOSTAP:
4605                 ni = ieee80211_find_vap_node(&ic->ic_sta, vap, k->wk_macaddr);
4606                 if (ni == NULL)
4607                         return 0;       /* should not happen */
4608
4609                 ni_ref = 1;
4610                 break;
4611
4612         default:
4613                 device_printf(sc->sc_dev, "%s: unknown opmode %d\n", __func__,
4614                     vap->iv_opmode);
4615                 return 0;
4616         }
4617
4618         WPI_NT_LOCK(sc);
4619         if (set)
4620                 error = wpi_load_key(ni, k);
4621         else
4622                 error = wpi_del_key(ni, k);
4623         WPI_NT_UNLOCK(sc);
4624
4625         if (ni_ref)
4626                 ieee80211_node_decref(ni);
4627
4628         return error;
4629 }
4630
4631 static int
4632 wpi_key_set(struct ieee80211vap *vap, const struct ieee80211_key *k,
4633     const uint8_t mac[IEEE80211_ADDR_LEN])
4634 {
4635         return wpi_process_key(vap, k, 1);
4636 }
4637
4638 static int
4639 wpi_key_delete(struct ieee80211vap *vap, const struct ieee80211_key *k)
4640 {
4641         return wpi_process_key(vap, k, 0);
4642 }
4643
4644 /*
4645  * This function is called after the runtime firmware notifies us of its
4646  * readiness (called in a process context).
4647  */
4648 static int
4649 wpi_post_alive(struct wpi_softc *sc)
4650 {
4651         int ntries, error;
4652
4653         /* Check (again) that the radio is not disabled. */
4654         if ((error = wpi_nic_lock(sc)) != 0)
4655                 return error;
4656
4657         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_DOING, __func__);
4658
4659         /* NB: Runtime firmware must be up and running. */
4660         if (!(wpi_prph_read(sc, WPI_APMG_RFKILL) & 1)) {
4661                 device_printf(sc->sc_dev,
4662                     "RF switch: radio disabled (%s)\n", __func__);
4663                 wpi_nic_unlock(sc);
4664                 return EPERM;   /* :-) */
4665         }
4666         wpi_nic_unlock(sc);
4667
4668         /* Wait for thermal sensor to calibrate. */
4669         for (ntries = 0; ntries < 1000; ntries++) {
4670                 if ((sc->temp = (int)WPI_READ(sc, WPI_UCODE_GP2)) != 0)
4671                         break;
4672                 DELAY(10);
4673         }
4674
4675         if (ntries == 1000) {
4676                 device_printf(sc->sc_dev,
4677                     "timeout waiting for thermal sensor calibration\n");
4678                 return ETIMEDOUT;
4679         }
4680
4681         DPRINTF(sc, WPI_DEBUG_TEMP, "temperature %d\n", sc->temp);
4682         return 0;
4683 }
4684
4685 /*
4686  * The firmware boot code is small and is intended to be copied directly into
4687  * the NIC internal memory (no DMA transfer).
4688  */
4689 static int
4690 wpi_load_bootcode(struct wpi_softc *sc, const uint8_t *ucode, int size)
4691 {
4692         int error, ntries;
4693
4694         DPRINTF(sc, WPI_DEBUG_HW, "Loading microcode size 0x%x\n", size);
4695
4696         size /= sizeof (uint32_t);
4697
4698         if ((error = wpi_nic_lock(sc)) != 0)
4699                 return error;
4700
4701         /* Copy microcode image into NIC memory. */
4702         wpi_prph_write_region_4(sc, WPI_BSM_SRAM_BASE,
4703             (const uint32_t *)ucode, size);
4704
4705         wpi_prph_write(sc, WPI_BSM_WR_MEM_SRC, 0);
4706         wpi_prph_write(sc, WPI_BSM_WR_MEM_DST, WPI_FW_TEXT_BASE);
4707         wpi_prph_write(sc, WPI_BSM_WR_DWCOUNT, size);
4708
4709         /* Start boot load now. */
4710         wpi_prph_write(sc, WPI_BSM_WR_CTRL, WPI_BSM_WR_CTRL_START);
4711
4712         /* Wait for transfer to complete. */
4713         for (ntries = 0; ntries < 1000; ntries++) {
4714                 uint32_t status = WPI_READ(sc, WPI_FH_TX_STATUS);
4715                 DPRINTF(sc, WPI_DEBUG_HW,
4716                     "firmware status=0x%x, val=0x%x, result=0x%x\n", status,
4717                     WPI_FH_TX_STATUS_IDLE(6),
4718                     status & WPI_FH_TX_STATUS_IDLE(6));
4719                 if (status & WPI_FH_TX_STATUS_IDLE(6)) {
4720                         DPRINTF(sc, WPI_DEBUG_HW,
4721                             "Status Match! - ntries = %d\n", ntries);
4722                         break;
4723                 }
4724                 DELAY(10);
4725         }
4726         if (ntries == 1000) {
4727                 device_printf(sc->sc_dev, "%s: could not load boot firmware\n",
4728                     __func__);
4729                 wpi_nic_unlock(sc);
4730                 return ETIMEDOUT;
4731         }
4732
4733         /* Enable boot after power up. */
4734         wpi_prph_write(sc, WPI_BSM_WR_CTRL, WPI_BSM_WR_CTRL_START_EN);
4735
4736         wpi_nic_unlock(sc);
4737         return 0;
4738 }
4739
4740 static int
4741 wpi_load_firmware(struct wpi_softc *sc)
4742 {
4743         struct wpi_fw_info *fw = &sc->fw;
4744         struct wpi_dma_info *dma = &sc->fw_dma;
4745         int error;
4746
4747         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_DOING, __func__);
4748
4749         /* Copy initialization sections into pre-allocated DMA-safe memory. */
4750         memcpy(dma->vaddr, fw->init.data, fw->init.datasz);
4751         bus_dmamap_sync(dma->tag, dma->map, BUS_DMASYNC_PREWRITE);
4752         memcpy(dma->vaddr + WPI_FW_DATA_MAXSZ, fw->init.text, fw->init.textsz);
4753         bus_dmamap_sync(dma->tag, dma->map, BUS_DMASYNC_PREWRITE);
4754
4755         /* Tell adapter where to find initialization sections. */
4756         if ((error = wpi_nic_lock(sc)) != 0)
4757                 return error;
4758         wpi_prph_write(sc, WPI_BSM_DRAM_DATA_ADDR, dma->paddr);
4759         wpi_prph_write(sc, WPI_BSM_DRAM_DATA_SIZE, fw->init.datasz);
4760         wpi_prph_write(sc, WPI_BSM_DRAM_TEXT_ADDR,
4761             dma->paddr + WPI_FW_DATA_MAXSZ);
4762         wpi_prph_write(sc, WPI_BSM_DRAM_TEXT_SIZE, fw->init.textsz);
4763         wpi_nic_unlock(sc);
4764
4765         /* Load firmware boot code. */
4766         error = wpi_load_bootcode(sc, fw->boot.text, fw->boot.textsz);
4767         if (error != 0) {
4768                 device_printf(sc->sc_dev, "%s: could not load boot firmware\n",
4769                     __func__);
4770                 return error;
4771         }
4772
4773         /* Now press "execute". */
4774         WPI_WRITE(sc, WPI_RESET, 0);
4775
4776         /* Wait at most one second for first alive notification. */
4777         if ((error = mtx_sleep(sc, &sc->sc_mtx, PCATCH, "wpiinit", hz)) != 0) {
4778                 device_printf(sc->sc_dev,
4779                     "%s: timeout waiting for adapter to initialize, error %d\n",
4780                     __func__, error);
4781                 return error;
4782         }
4783
4784         /* Copy runtime sections into pre-allocated DMA-safe memory. */
4785         memcpy(dma->vaddr, fw->main.data, fw->main.datasz);
4786         bus_dmamap_sync(dma->tag, dma->map, BUS_DMASYNC_PREWRITE);
4787         memcpy(dma->vaddr + WPI_FW_DATA_MAXSZ, fw->main.text, fw->main.textsz);
4788         bus_dmamap_sync(dma->tag, dma->map, BUS_DMASYNC_PREWRITE);
4789
4790         /* Tell adapter where to find runtime sections. */
4791         if ((error = wpi_nic_lock(sc)) != 0)
4792                 return error;
4793         wpi_prph_write(sc, WPI_BSM_DRAM_DATA_ADDR, dma->paddr);
4794         wpi_prph_write(sc, WPI_BSM_DRAM_DATA_SIZE, fw->main.datasz);
4795         wpi_prph_write(sc, WPI_BSM_DRAM_TEXT_ADDR,
4796             dma->paddr + WPI_FW_DATA_MAXSZ);
4797         wpi_prph_write(sc, WPI_BSM_DRAM_TEXT_SIZE,
4798             WPI_FW_UPDATED | fw->main.textsz);
4799         wpi_nic_unlock(sc);
4800
4801         return 0;
4802 }
4803
4804 static int
4805 wpi_read_firmware(struct wpi_softc *sc)
4806 {
4807         const struct firmware *fp;
4808         struct wpi_fw_info *fw = &sc->fw;
4809         const struct wpi_firmware_hdr *hdr;
4810         int error;
4811
4812         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_DOING, __func__);
4813
4814         DPRINTF(sc, WPI_DEBUG_FIRMWARE,
4815             "Attempting Loading Firmware from %s module\n", WPI_FW_NAME);
4816
4817         WPI_UNLOCK(sc);
4818         fp = firmware_get(WPI_FW_NAME);
4819         WPI_LOCK(sc);
4820
4821         if (fp == NULL) {
4822                 device_printf(sc->sc_dev,
4823                     "could not load firmware image '%s'\n", WPI_FW_NAME);
4824                 return EINVAL;
4825         }
4826
4827         sc->fw_fp = fp;
4828
4829         if (fp->datasize < sizeof (struct wpi_firmware_hdr)) {
4830                 device_printf(sc->sc_dev,
4831                     "firmware file too short: %zu bytes\n", fp->datasize);
4832                 error = EINVAL;
4833                 goto fail;
4834         }
4835
4836         fw->size = fp->datasize;
4837         fw->data = (const uint8_t *)fp->data;
4838
4839         /* Extract firmware header information. */
4840         hdr = (const struct wpi_firmware_hdr *)fw->data;
4841
4842         /*     |  RUNTIME FIRMWARE   |    INIT FIRMWARE    | BOOT FW  |
4843            |HDR|<--TEXT-->|<--DATA-->|<--TEXT-->|<--DATA-->|<--TEXT-->| */
4844
4845         fw->main.textsz = le32toh(hdr->rtextsz);
4846         fw->main.datasz = le32toh(hdr->rdatasz);
4847         fw->init.textsz = le32toh(hdr->itextsz);
4848         fw->init.datasz = le32toh(hdr->idatasz);
4849         fw->boot.textsz = le32toh(hdr->btextsz);
4850         fw->boot.datasz = 0;
4851
4852         /* Sanity-check firmware header. */
4853         if (fw->main.textsz > WPI_FW_TEXT_MAXSZ ||
4854             fw->main.datasz > WPI_FW_DATA_MAXSZ ||
4855             fw->init.textsz > WPI_FW_TEXT_MAXSZ ||
4856             fw->init.datasz > WPI_FW_DATA_MAXSZ ||
4857             fw->boot.textsz > WPI_FW_BOOT_TEXT_MAXSZ ||
4858             (fw->boot.textsz & 3) != 0) {
4859                 device_printf(sc->sc_dev, "invalid firmware header\n");
4860                 error = EINVAL;
4861                 goto fail;
4862         }
4863
4864         /* Check that all firmware sections fit. */
4865         if (fw->size < sizeof (*hdr) + fw->main.textsz + fw->main.datasz +
4866             fw->init.textsz + fw->init.datasz + fw->boot.textsz) {
4867                 device_printf(sc->sc_dev,
4868                     "firmware file too short: %zu bytes\n", fw->size);
4869                 error = EINVAL;
4870                 goto fail;
4871         }
4872
4873         /* Get pointers to firmware sections. */
4874         fw->main.text = (const uint8_t *)(hdr + 1);
4875         fw->main.data = fw->main.text + fw->main.textsz;
4876         fw->init.text = fw->main.data + fw->main.datasz;
4877         fw->init.data = fw->init.text + fw->init.textsz;
4878         fw->boot.text = fw->init.data + fw->init.datasz;
4879
4880         DPRINTF(sc, WPI_DEBUG_FIRMWARE,
4881             "Firmware Version: Major %d, Minor %d, Driver %d, \n"
4882             "runtime (text: %u, data: %u) init (text: %u, data %u) "
4883             "boot (text %u)\n", hdr->major, hdr->minor, le32toh(hdr->driver),
4884             fw->main.textsz, fw->main.datasz,
4885             fw->init.textsz, fw->init.datasz, fw->boot.textsz);
4886
4887         DPRINTF(sc, WPI_DEBUG_FIRMWARE, "fw->main.text %p\n", fw->main.text);
4888         DPRINTF(sc, WPI_DEBUG_FIRMWARE, "fw->main.data %p\n", fw->main.data);
4889         DPRINTF(sc, WPI_DEBUG_FIRMWARE, "fw->init.text %p\n", fw->init.text);
4890         DPRINTF(sc, WPI_DEBUG_FIRMWARE, "fw->init.data %p\n", fw->init.data);
4891         DPRINTF(sc, WPI_DEBUG_FIRMWARE, "fw->boot.text %p\n", fw->boot.text);
4892
4893         return 0;
4894
4895 fail:   wpi_unload_firmware(sc);
4896         return error;
4897 }
4898
4899 /**
4900  * Free the referenced firmware image
4901  */
4902 static void
4903 wpi_unload_firmware(struct wpi_softc *sc)
4904 {
4905         if (sc->fw_fp != NULL) {
4906                 firmware_put(sc->fw_fp, FIRMWARE_UNLOAD);
4907                 sc->fw_fp = NULL;
4908         }
4909 }
4910
4911 static int
4912 wpi_clock_wait(struct wpi_softc *sc)
4913 {
4914         int ntries;
4915
4916         /* Set "initialization complete" bit. */
4917         WPI_SETBITS(sc, WPI_GP_CNTRL, WPI_GP_CNTRL_INIT_DONE);
4918
4919         /* Wait for clock stabilization. */
4920         for (ntries = 0; ntries < 2500; ntries++) {
4921                 if (WPI_READ(sc, WPI_GP_CNTRL) & WPI_GP_CNTRL_MAC_CLOCK_READY)
4922                         return 0;
4923                 DELAY(100);
4924         }
4925         device_printf(sc->sc_dev,
4926             "%s: timeout waiting for clock stabilization\n", __func__);
4927
4928         return ETIMEDOUT;
4929 }
4930
4931 static int
4932 wpi_apm_init(struct wpi_softc *sc)
4933 {
4934         uint32_t reg;
4935         int error;
4936
4937         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_DOING, __func__);
4938
4939         /* Disable L0s exit timer (NMI bug workaround). */
4940         WPI_SETBITS(sc, WPI_GIO_CHICKEN, WPI_GIO_CHICKEN_DIS_L0S_TIMER);
4941         /* Don't wait for ICH L0s (ICH bug workaround). */
4942         WPI_SETBITS(sc, WPI_GIO_CHICKEN, WPI_GIO_CHICKEN_L1A_NO_L0S_RX);
4943
4944         /* Set FH wait threshold to max (HW bug under stress workaround). */
4945         WPI_SETBITS(sc, WPI_DBG_HPET_MEM, 0xffff0000);
4946
4947         /* Retrieve PCIe Active State Power Management (ASPM). */
4948         reg = pci_read_config(sc->sc_dev, sc->sc_cap_off + 0x10, 1);
4949         /* Workaround for HW instability in PCIe L0->L0s->L1 transition. */
4950         if (reg & 0x02) /* L1 Entry enabled. */
4951                 WPI_SETBITS(sc, WPI_GIO, WPI_GIO_L0S_ENA);
4952         else
4953                 WPI_CLRBITS(sc, WPI_GIO, WPI_GIO_L0S_ENA);
4954
4955         WPI_SETBITS(sc, WPI_ANA_PLL, WPI_ANA_PLL_INIT);
4956
4957         /* Wait for clock stabilization before accessing prph. */
4958         if ((error = wpi_clock_wait(sc)) != 0)
4959                 return error;
4960
4961         if ((error = wpi_nic_lock(sc)) != 0)
4962                 return error;
4963         /* Cleanup. */
4964         wpi_prph_write(sc, WPI_APMG_CLK_DIS, 0x00000400);
4965         wpi_prph_clrbits(sc, WPI_APMG_PS, 0x00000200);
4966
4967         /* Enable DMA and BSM (Bootstrap State Machine). */
4968         wpi_prph_write(sc, WPI_APMG_CLK_EN,
4969             WPI_APMG_CLK_CTRL_DMA_CLK_RQT | WPI_APMG_CLK_CTRL_BSM_CLK_RQT);
4970         DELAY(20);
4971         /* Disable L1-Active. */
4972         wpi_prph_setbits(sc, WPI_APMG_PCI_STT, WPI_APMG_PCI_STT_L1A_DIS);
4973         wpi_nic_unlock(sc);
4974
4975         return 0;
4976 }
4977
4978 static void
4979 wpi_apm_stop_master(struct wpi_softc *sc)
4980 {
4981         int ntries;
4982
4983         /* Stop busmaster DMA activity. */
4984         WPI_SETBITS(sc, WPI_RESET, WPI_RESET_STOP_MASTER);
4985          
4986         if ((WPI_READ(sc, WPI_GP_CNTRL) & WPI_GP_CNTRL_PS_MASK) ==
4987             WPI_GP_CNTRL_MAC_PS)
4988                 return; /* Already asleep. */
4989
4990         for (ntries = 0; ntries < 100; ntries++) {
4991                 if (WPI_READ(sc, WPI_RESET) & WPI_RESET_MASTER_DISABLED)
4992                         return;
4993                 DELAY(10);
4994         }
4995         device_printf(sc->sc_dev, "%s: timeout waiting for master\n",
4996             __func__);
4997 }
4998
4999 static void
5000 wpi_apm_stop(struct wpi_softc *sc)
5001 {
5002         wpi_apm_stop_master(sc);
5003
5004         /* Reset the entire device. */
5005         WPI_SETBITS(sc, WPI_RESET, WPI_RESET_SW);
5006         DELAY(10);
5007         /* Clear "initialization complete" bit. */
5008         WPI_CLRBITS(sc, WPI_GP_CNTRL, WPI_GP_CNTRL_INIT_DONE);
5009 }
5010
5011 static void
5012 wpi_nic_config(struct wpi_softc *sc)
5013 {
5014         uint32_t rev;
5015
5016         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_DOING, __func__);
5017
5018         /* voodoo from the Linux "driver".. */
5019         rev = pci_read_config(sc->sc_dev, PCIR_REVID, 1);
5020         if ((rev & 0xc0) == 0x40)
5021                 WPI_SETBITS(sc, WPI_HW_IF_CONFIG, WPI_HW_IF_CONFIG_ALM_MB);
5022         else if (!(rev & 0x80))
5023                 WPI_SETBITS(sc, WPI_HW_IF_CONFIG, WPI_HW_IF_CONFIG_ALM_MM);
5024
5025         if (sc->cap == 0x80)
5026                 WPI_SETBITS(sc, WPI_HW_IF_CONFIG, WPI_HW_IF_CONFIG_SKU_MRC);
5027
5028         if ((sc->rev & 0xf0) == 0xd0)
5029                 WPI_SETBITS(sc, WPI_HW_IF_CONFIG, WPI_HW_IF_CONFIG_REV_D);
5030         else
5031                 WPI_CLRBITS(sc, WPI_HW_IF_CONFIG, WPI_HW_IF_CONFIG_REV_D);
5032
5033         if (sc->type > 1)
5034                 WPI_SETBITS(sc, WPI_HW_IF_CONFIG, WPI_HW_IF_CONFIG_TYPE_B);
5035 }
5036
5037 static int
5038 wpi_hw_init(struct wpi_softc *sc)
5039 {
5040         int chnl, ntries, error;
5041
5042         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_BEGIN, __func__);
5043
5044         /* Clear pending interrupts. */
5045         WPI_WRITE(sc, WPI_INT, 0xffffffff);
5046
5047         if ((error = wpi_apm_init(sc)) != 0) {
5048                 device_printf(sc->sc_dev,
5049                     "%s: could not power ON adapter, error %d\n", __func__,
5050                     error);
5051                 return error;
5052         }
5053
5054         /* Select VMAIN power source. */
5055         if ((error = wpi_nic_lock(sc)) != 0)
5056                 return error;
5057         wpi_prph_clrbits(sc, WPI_APMG_PS, WPI_APMG_PS_PWR_SRC_MASK);
5058         wpi_nic_unlock(sc);
5059         /* Spin until VMAIN gets selected. */
5060         for (ntries = 0; ntries < 5000; ntries++) {
5061                 if (WPI_READ(sc, WPI_GPIO_IN) & WPI_GPIO_IN_VMAIN)
5062                         break;
5063                 DELAY(10);
5064         }
5065         if (ntries == 5000) {
5066                 device_printf(sc->sc_dev, "timeout selecting power source\n");
5067                 return ETIMEDOUT;
5068         }
5069
5070         /* Perform adapter initialization. */
5071         wpi_nic_config(sc);
5072
5073         /* Initialize RX ring. */
5074         if ((error = wpi_nic_lock(sc)) != 0)
5075                 return error;
5076         /* Set physical address of RX ring. */
5077         WPI_WRITE(sc, WPI_FH_RX_BASE, sc->rxq.desc_dma.paddr);
5078         /* Set physical address of RX read pointer. */
5079         WPI_WRITE(sc, WPI_FH_RX_RPTR_ADDR, sc->shared_dma.paddr +
5080             offsetof(struct wpi_shared, next));
5081         WPI_WRITE(sc, WPI_FH_RX_WPTR, 0);
5082         /* Enable RX. */
5083         WPI_WRITE(sc, WPI_FH_RX_CONFIG,
5084             WPI_FH_RX_CONFIG_DMA_ENA |
5085             WPI_FH_RX_CONFIG_RDRBD_ENA |
5086             WPI_FH_RX_CONFIG_WRSTATUS_ENA |
5087             WPI_FH_RX_CONFIG_MAXFRAG |
5088             WPI_FH_RX_CONFIG_NRBD(WPI_RX_RING_COUNT_LOG) |
5089             WPI_FH_RX_CONFIG_IRQ_DST_HOST |
5090             WPI_FH_RX_CONFIG_IRQ_TIMEOUT(1));
5091         (void)WPI_READ(sc, WPI_FH_RSSR_TBL);    /* barrier */
5092         wpi_nic_unlock(sc);
5093         WPI_WRITE(sc, WPI_FH_RX_WPTR, (WPI_RX_RING_COUNT - 1) & ~7);
5094
5095         /* Initialize TX rings. */
5096         if ((error = wpi_nic_lock(sc)) != 0)
5097                 return error;
5098         wpi_prph_write(sc, WPI_ALM_SCHED_MODE, 2);      /* bypass mode */
5099         wpi_prph_write(sc, WPI_ALM_SCHED_ARASTAT, 1);   /* enable RA0 */
5100         /* Enable all 6 TX rings. */
5101         wpi_prph_write(sc, WPI_ALM_SCHED_TXFACT, 0x3f);
5102         wpi_prph_write(sc, WPI_ALM_SCHED_SBYPASS_MODE1, 0x10000);
5103         wpi_prph_write(sc, WPI_ALM_SCHED_SBYPASS_MODE2, 0x30002);
5104         wpi_prph_write(sc, WPI_ALM_SCHED_TXF4MF, 4);
5105         wpi_prph_write(sc, WPI_ALM_SCHED_TXF5MF, 5);
5106         /* Set physical address of TX rings. */
5107         WPI_WRITE(sc, WPI_FH_TX_BASE, sc->shared_dma.paddr);
5108         WPI_WRITE(sc, WPI_FH_MSG_CONFIG, 0xffff05a5);
5109
5110         /* Enable all DMA channels. */
5111         for (chnl = 0; chnl < WPI_NDMACHNLS; chnl++) {
5112                 WPI_WRITE(sc, WPI_FH_CBBC_CTRL(chnl), 0);
5113                 WPI_WRITE(sc, WPI_FH_CBBC_BASE(chnl), 0);
5114                 WPI_WRITE(sc, WPI_FH_TX_CONFIG(chnl), 0x80200008);
5115         }
5116         wpi_nic_unlock(sc);
5117         (void)WPI_READ(sc, WPI_FH_TX_BASE);     /* barrier */
5118
5119         /* Clear "radio off" and "commands blocked" bits. */
5120         WPI_WRITE(sc, WPI_UCODE_GP1_CLR, WPI_UCODE_GP1_RFKILL);
5121         WPI_WRITE(sc, WPI_UCODE_GP1_CLR, WPI_UCODE_GP1_CMD_BLOCKED);
5122
5123         /* Clear pending interrupts. */
5124         WPI_WRITE(sc, WPI_INT, 0xffffffff);
5125         /* Enable interrupts. */
5126         WPI_WRITE(sc, WPI_INT_MASK, WPI_INT_MASK_DEF);
5127
5128         /* _Really_ make sure "radio off" bit is cleared! */
5129         WPI_WRITE(sc, WPI_UCODE_GP1_CLR, WPI_UCODE_GP1_RFKILL);
5130         WPI_WRITE(sc, WPI_UCODE_GP1_CLR, WPI_UCODE_GP1_RFKILL);
5131
5132         if ((error = wpi_load_firmware(sc)) != 0) {
5133                 device_printf(sc->sc_dev,
5134                     "%s: could not load firmware, error %d\n", __func__,
5135                     error);
5136                 return error;
5137         }
5138         /* Wait at most one second for firmware alive notification. */
5139         if ((error = mtx_sleep(sc, &sc->sc_mtx, PCATCH, "wpiinit", hz)) != 0) {
5140                 device_printf(sc->sc_dev,
5141                     "%s: timeout waiting for adapter to initialize, error %d\n",
5142                     __func__, error);
5143                 return error;
5144         }
5145
5146         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END, __func__);
5147
5148         /* Do post-firmware initialization. */
5149         return wpi_post_alive(sc);
5150 }
5151
5152 static void
5153 wpi_hw_stop(struct wpi_softc *sc)
5154 {
5155         int chnl, qid, ntries;
5156
5157         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_DOING, __func__);
5158
5159         if (WPI_READ(sc, WPI_UCODE_GP1) & WPI_UCODE_GP1_MAC_SLEEP)
5160                 wpi_nic_lock(sc);
5161
5162         WPI_WRITE(sc, WPI_RESET, WPI_RESET_NEVO);
5163
5164         /* Disable interrupts. */
5165         WPI_WRITE(sc, WPI_INT_MASK, 0);
5166         WPI_WRITE(sc, WPI_INT, 0xffffffff);
5167         WPI_WRITE(sc, WPI_FH_INT, 0xffffffff);
5168
5169         /* Make sure we no longer hold the NIC lock. */
5170         wpi_nic_unlock(sc);
5171
5172         if (wpi_nic_lock(sc) == 0) {
5173                 /* Stop TX scheduler. */
5174                 wpi_prph_write(sc, WPI_ALM_SCHED_MODE, 0);
5175                 wpi_prph_write(sc, WPI_ALM_SCHED_TXFACT, 0);
5176
5177                 /* Stop all DMA channels. */
5178                 for (chnl = 0; chnl < WPI_NDMACHNLS; chnl++) {
5179                         WPI_WRITE(sc, WPI_FH_TX_CONFIG(chnl), 0);
5180                         for (ntries = 0; ntries < 200; ntries++) {
5181                                 if (WPI_READ(sc, WPI_FH_TX_STATUS) &
5182                                     WPI_FH_TX_STATUS_IDLE(chnl))
5183                                         break;
5184                                 DELAY(10);
5185                         }
5186                 }
5187                 wpi_nic_unlock(sc);
5188         }
5189
5190         /* Stop RX ring. */
5191         wpi_reset_rx_ring(sc);
5192
5193         /* Reset all TX rings. */
5194         for (qid = 0; qid < WPI_NTXQUEUES; qid++)
5195                 wpi_reset_tx_ring(sc, &sc->txq[qid]);
5196
5197         if (wpi_nic_lock(sc) == 0) {
5198                 wpi_prph_write(sc, WPI_APMG_CLK_DIS,
5199                     WPI_APMG_CLK_CTRL_DMA_CLK_RQT);
5200                 wpi_nic_unlock(sc);
5201         }
5202         DELAY(5);
5203         /* Power OFF adapter. */
5204         wpi_apm_stop(sc);
5205 }
5206
5207 static void
5208 wpi_radio_on(void *arg0, int pending)
5209 {
5210         struct wpi_softc *sc = arg0;
5211         struct ifnet *ifp = sc->sc_ifp;
5212         struct ieee80211com *ic = ifp->if_l2com;
5213         struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps);
5214
5215         device_printf(sc->sc_dev, "RF switch: radio enabled\n");
5216
5217         if (vap != NULL) {
5218                 wpi_init(sc);
5219                 ieee80211_init(vap);
5220         }
5221
5222         if (WPI_READ(sc, WPI_GP_CNTRL) & WPI_GP_CNTRL_RFKILL) {
5223                 WPI_LOCK(sc);
5224                 callout_stop(&sc->watchdog_rfkill);
5225                 WPI_UNLOCK(sc);
5226         }
5227 }
5228
5229 static void
5230 wpi_radio_off(void *arg0, int pending)
5231 {
5232         struct wpi_softc *sc = arg0;
5233         struct ifnet *ifp = sc->sc_ifp;
5234         struct ieee80211com *ic = ifp->if_l2com;
5235         struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps);
5236
5237         device_printf(sc->sc_dev, "RF switch: radio disabled\n");
5238
5239         wpi_stop(sc);
5240         if (vap != NULL)
5241                 ieee80211_stop(vap);
5242
5243         WPI_LOCK(sc);
5244         callout_reset(&sc->watchdog_rfkill, hz, wpi_watchdog_rfkill, sc);
5245         WPI_UNLOCK(sc);
5246 }
5247
5248 static void
5249 wpi_init(void *arg)
5250 {
5251         struct wpi_softc *sc = arg;
5252         struct ifnet *ifp = sc->sc_ifp;
5253         struct ieee80211com *ic = ifp->if_l2com;
5254         int error;
5255
5256         WPI_LOCK(sc);
5257
5258         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_BEGIN, __func__);
5259
5260         if ((ifp->if_drv_flags & IFF_DRV_RUNNING) != 0)
5261                 goto end;
5262
5263         /* Check that the radio is not disabled by hardware switch. */
5264         if (!(WPI_READ(sc, WPI_GP_CNTRL) & WPI_GP_CNTRL_RFKILL)) {
5265                 device_printf(sc->sc_dev,
5266                     "RF switch: radio disabled (%s)\n", __func__);
5267                 callout_reset(&sc->watchdog_rfkill, hz, wpi_watchdog_rfkill,
5268                     sc);
5269                 goto end;
5270         }
5271
5272         /* Read firmware images from the filesystem. */
5273         if ((error = wpi_read_firmware(sc)) != 0) {
5274                 device_printf(sc->sc_dev,
5275                     "%s: could not read firmware, error %d\n", __func__,
5276                     error);
5277                 goto fail;
5278         }
5279
5280         /* Initialize hardware and upload firmware. */
5281         error = wpi_hw_init(sc);
5282         wpi_unload_firmware(sc);
5283         if (error != 0) {
5284                 device_printf(sc->sc_dev,
5285                     "%s: could not initialize hardware, error %d\n", __func__,
5286                     error);
5287                 goto fail;
5288         }
5289
5290         /* Configure adapter now that it is ready. */
5291         sc->txq_active = 1;
5292         if ((error = wpi_config(sc)) != 0) {
5293                 device_printf(sc->sc_dev,
5294                     "%s: could not configure device, error %d\n", __func__,
5295                     error);
5296                 goto fail;
5297         }
5298
5299         IF_LOCK(&ifp->if_snd);
5300         ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
5301         ifp->if_drv_flags |= IFF_DRV_RUNNING;
5302         IF_UNLOCK(&ifp->if_snd);
5303
5304         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END, __func__);
5305
5306         WPI_UNLOCK(sc);
5307
5308         ieee80211_start_all(ic);
5309
5310         return;
5311
5312 fail:   wpi_stop_locked(sc);
5313 end:    DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_END_ERR, __func__);
5314         WPI_UNLOCK(sc);
5315 }
5316
5317 static void
5318 wpi_stop_locked(struct wpi_softc *sc)
5319 {
5320         struct ifnet *ifp = sc->sc_ifp;
5321
5322         WPI_LOCK_ASSERT(sc);
5323
5324         WPI_TXQ_LOCK(sc);
5325         sc->txq_active = 0;
5326         WPI_TXQ_UNLOCK(sc);
5327
5328         WPI_TXQ_STATE_LOCK(sc);
5329         callout_stop(&sc->tx_timeout);
5330         WPI_TXQ_STATE_UNLOCK(sc);
5331
5332         WPI_RXON_LOCK(sc);
5333         callout_stop(&sc->scan_timeout);
5334         callout_stop(&sc->calib_to);
5335         WPI_RXON_UNLOCK(sc);
5336
5337         IF_LOCK(&ifp->if_snd);
5338         ifp->if_drv_flags &= ~(IFF_DRV_RUNNING | IFF_DRV_OACTIVE);
5339         IF_UNLOCK(&ifp->if_snd);
5340
5341         /* Power OFF hardware. */
5342         wpi_hw_stop(sc);
5343 }
5344
5345 static void
5346 wpi_stop(struct wpi_softc *sc)
5347 {
5348         WPI_LOCK(sc);
5349         wpi_stop_locked(sc);
5350         WPI_UNLOCK(sc);
5351 }
5352
5353 /*
5354  * Callback from net80211 to start a scan.
5355  */
5356 static void
5357 wpi_scan_start(struct ieee80211com *ic)
5358 {
5359         struct wpi_softc *sc = ic->ic_ifp->if_softc;
5360
5361         wpi_set_led(sc, WPI_LED_LINK, 20, 2);
5362 }
5363
5364 /*
5365  * Callback from net80211 to terminate a scan.
5366  */
5367 static void
5368 wpi_scan_end(struct ieee80211com *ic)
5369 {
5370         struct ifnet *ifp = ic->ic_ifp;
5371         struct wpi_softc *sc = ifp->if_softc;
5372         struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps);
5373
5374         if (vap->iv_state == IEEE80211_S_RUN)
5375                 wpi_set_led(sc, WPI_LED_LINK, 0, 1);
5376 }
5377
5378 /**
5379  * Called by the net80211 framework to indicate to the driver
5380  * that the channel should be changed
5381  */
5382 static void
5383 wpi_set_channel(struct ieee80211com *ic)
5384 {
5385         const struct ieee80211_channel *c = ic->ic_curchan;
5386         struct ifnet *ifp = ic->ic_ifp;
5387         struct wpi_softc *sc = ifp->if_softc;
5388         int error;
5389
5390         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_DOING, __func__);
5391
5392         WPI_LOCK(sc);
5393         sc->sc_rxtap.wr_chan_freq = htole16(c->ic_freq);
5394         sc->sc_rxtap.wr_chan_flags = htole16(c->ic_flags);
5395         WPI_UNLOCK(sc);
5396         WPI_TX_LOCK(sc);
5397         sc->sc_txtap.wt_chan_freq = htole16(c->ic_freq);
5398         sc->sc_txtap.wt_chan_flags = htole16(c->ic_flags);
5399         WPI_TX_UNLOCK(sc);
5400
5401         /*
5402          * Only need to set the channel in Monitor mode. AP scanning and auth
5403          * are already taken care of by their respective firmware commands.
5404          */
5405         if (ic->ic_opmode == IEEE80211_M_MONITOR) {
5406                 WPI_RXON_LOCK(sc);
5407                 sc->rxon.chan = ieee80211_chan2ieee(ic, c);
5408                 if (IEEE80211_IS_CHAN_2GHZ(c)) {
5409                         sc->rxon.flags |= htole32(WPI_RXON_AUTO |
5410                             WPI_RXON_24GHZ);
5411                 } else {
5412                         sc->rxon.flags &= ~htole32(WPI_RXON_AUTO |
5413                             WPI_RXON_24GHZ);
5414                 }
5415                 if ((error = wpi_send_rxon(sc, 0, 1)) != 0)
5416                         device_printf(sc->sc_dev,
5417                             "%s: error %d setting channel\n", __func__,
5418                             error);
5419                 WPI_RXON_UNLOCK(sc);
5420         }
5421 }
5422
5423 /**
5424  * Called by net80211 to indicate that we need to scan the current
5425  * channel. The channel is previously be set via the wpi_set_channel
5426  * callback.
5427  */
5428 static void
5429 wpi_scan_curchan(struct ieee80211_scan_state *ss, unsigned long maxdwell)
5430 {
5431         struct ieee80211vap *vap = ss->ss_vap;
5432         struct ieee80211com *ic = vap->iv_ic;
5433         struct wpi_softc *sc = ic->ic_ifp->if_softc;
5434         int error;
5435
5436         WPI_RXON_LOCK(sc);
5437         error = wpi_scan(sc, ic->ic_curchan);
5438         WPI_RXON_UNLOCK(sc);
5439         if (error != 0)
5440                 ieee80211_cancel_scan(vap);
5441 }
5442
5443 /**
5444  * Called by the net80211 framework to indicate
5445  * the minimum dwell time has been met, terminate the scan.
5446  * We don't actually terminate the scan as the firmware will notify
5447  * us when it's finished and we have no way to interrupt it.
5448  */
5449 static void
5450 wpi_scan_mindwell(struct ieee80211_scan_state *ss)
5451 {
5452         /* NB: don't try to abort scan; wait for firmware to finish */
5453 }
5454
5455 static void
5456 wpi_hw_reset(void *arg, int pending)
5457 {
5458         struct wpi_softc *sc = arg;
5459         struct ifnet *ifp = sc->sc_ifp;
5460         struct ieee80211com *ic = ifp->if_l2com;
5461         struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps);
5462
5463         DPRINTF(sc, WPI_DEBUG_TRACE, TRACE_STR_DOING, __func__);
5464
5465         if (vap != NULL && (ic->ic_flags & IEEE80211_F_SCAN))
5466                 ieee80211_cancel_scan(vap);
5467
5468         wpi_stop(sc);
5469         if (vap != NULL)
5470                 ieee80211_stop(vap);
5471         wpi_init(sc);
5472         if (vap != NULL)
5473                 ieee80211_init(vap);
5474 }