Add tunable to enable/disable PBCC support in acx(4) and it is enabled
[dragonfly.git] / sys / dev / netif / acx / if_acx.c
1 /*
2  * Copyright (c) 2006 The DragonFly Project.  All rights reserved.
3  * 
4  * This code is derived from software contributed to The DragonFly Project
5  * by Sepherosa Ziehau <sepherosa@gmail.com>
6  * 
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  * 3. Neither the name of The DragonFly Project nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific, prior written permission.
20  * 
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  * 
34  * $DragonFly: src/sys/dev/netif/acx/if_acx.c,v 1.30 2008/06/08 10:06:05 sephe Exp $
35  */
36
37 /*
38  * Copyright (c) 2003-2004 wlan.kewl.org Project
39  * All rights reserved.
40  * 
41  * $Id: LICENSE,v 1.1.1.1 2004/07/01 12:20:39 darron Exp $
42  *  
43  * Redistribution and use in source and binary forms, with or without
44  * modification, are permitted provided that the following conditions
45  * are met:
46  * 
47  * 1. Redistributions of source code must retain the above copyright
48  *    notice, this list of conditions and the following disclaimer.
49  * 
50  * 2. Redistributions in binary form must reproduce the above copyright
51  *    notice, this list of conditions and the following disclaimer in the
52  *    documentation and/or other materials provided with the distribution.
53  *    
54  * 3. All advertising materials mentioning features or use of this software
55  *    must display the following acknowledgement:
56  * 
57  *    This product includes software developed by the wlan.kewl.org Project.
58  * 
59  * 4. Neither the name of the wlan.kewl.org Project nor the names of its
60  *    contributors may be used to endorse or promote products derived from
61  *    this software without specific prior written permission.
62  * 
63  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
64  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
65  * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
66  * THE wlan.kewl.org Project BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
67  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
68  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
69  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
70  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
71  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
72  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
73  */
74
75 #include <sys/param.h>
76 #include <sys/endian.h>
77 #include <sys/kernel.h>
78 #include <sys/bus.h>
79 #include <sys/firmware.h>
80 #include <sys/interrupt.h>
81 #include <sys/malloc.h>
82 #include <sys/proc.h>
83 #include <sys/rman.h>
84 #include <sys/serialize.h>
85 #include <sys/socket.h>
86 #include <sys/sockio.h>
87 #include <sys/sysctl.h>
88
89 #include <net/ethernet.h>
90 #include <net/if.h>
91 #include <net/bpf.h>
92 #include <net/if_arp.h>
93 #include <net/if_dl.h>
94 #include <net/if_media.h>
95 #include <net/ifq_var.h>
96
97 #include <netproto/802_11/ieee80211_var.h>
98 #include <netproto/802_11/ieee80211_radiotap.h>
99 #include <netproto/802_11/wlan_ratectl/amrr/ieee80211_amrr_param.h>
100 #include <netproto/802_11/wlan_ratectl/onoe/ieee80211_onoe_param.h>
101
102 #include <bus/pci/pcireg.h>
103 #include <bus/pci/pcivar.h>
104 #include <bus/pci/pcidevs.h>
105
106 #define ACX_DEBUG
107
108 #include <dev/netif/acx/if_acxreg.h>
109 #include <dev/netif/acx/if_acxvar.h>
110 #include <dev/netif/acx/acxcmd.h>
111
112 static int      acx_probe(device_t);
113 static int      acx_attach(device_t);
114 static int      acx_detach(device_t);
115 static int      acx_shutdown(device_t);
116
117 static void     acx_init(void *);
118 static void     acx_start(struct ifnet *);
119 static int      acx_ioctl(struct ifnet *, u_long, caddr_t, struct ucred *);
120 static void     acx_watchdog(struct ifnet *);
121
122 static void     acx_intr(void *);
123 static void     acx_txeof(struct acx_softc *);
124 static void     acx_txerr(struct acx_softc *, uint8_t);
125 static void     acx_rxeof(struct acx_softc *);
126 static void     acx_disable_intr(struct acx_softc *);
127 static void     acx_enable_intr(struct acx_softc *);
128
129 static int      acx_reset(struct acx_softc *);
130 static int      acx_stop(struct acx_softc *);
131 static void     acx_init_info_reg(struct acx_softc *);
132 static int      acx_config(struct acx_softc *);
133 static int      acx_read_config(struct acx_softc *, struct acx_config *);
134 static int      acx_write_config(struct acx_softc *, struct acx_config *);
135 static int      acx_rx_config(struct acx_softc *, int);
136 static int      acx_set_crypt_keys(struct acx_softc *);
137 static void     acx_calibrate(void *);
138
139 static int      acx_dma_alloc(struct acx_softc *);
140 static void     acx_dma_free(struct acx_softc *);
141 static int      acx_init_tx_ring(struct acx_softc *);
142 static int      acx_init_rx_ring(struct acx_softc *);
143 static int      acx_newbuf(struct acx_softc *, struct acx_rxbuf *, int);
144 static int      acx_encap(struct acx_softc *, struct acx_txbuf *,
145                           struct mbuf *, struct ieee80211_node *);
146
147 static int      acx_set_null_tmplt(struct acx_softc *);
148 static int      acx_set_probe_req_tmplt(struct acx_softc *, const char *, int);
149 static int      acx_set_probe_resp_tmplt(struct acx_softc *,
150                                          struct ieee80211_node *);
151 static int      acx_set_beacon_tmplt(struct acx_softc *,
152                                      struct ieee80211_node *);
153
154 static int      acx_read_eeprom(struct acx_softc *, uint32_t, uint8_t *);
155 static int      acx_read_phyreg(struct acx_softc *, uint32_t, uint8_t *);
156
157 static int      acx_alloc_firmware(struct acx_softc *);
158 static void     acx_free_firmware(struct acx_softc *);
159 static int      acx_setup_firmware(struct acx_softc *, struct fw_image *,
160                                    const uint8_t **, int *);
161 static int      acx_load_firmware(struct acx_softc *, uint32_t,
162                                   const uint8_t *, int);
163 static int      acx_load_radio_firmware(struct acx_softc *, const uint8_t *,
164                                         uint32_t);
165 static int      acx_load_base_firmware(struct acx_softc *, const uint8_t *,
166                                        uint32_t);
167
168 static void     acx_next_scan(void *);
169 static int      acx_set_chan(struct acx_softc *, struct ieee80211_channel *);
170
171 static int      acx_media_change(struct ifnet *);
172 static int      acx_newstate(struct ieee80211com *, enum ieee80211_state, int);
173
174 static int      acx_sysctl_msdu_lifetime(SYSCTL_HANDLER_ARGS);
175 static int      acx_sysctl_free_firmware(SYSCTL_HANDLER_ARGS);
176
177 const struct ieee80211_rateset  acx_rates_11b =
178         { 4, { 2, 4, 11, 22 } };
179 const struct ieee80211_rateset  acx_rates_11g =
180         { 12, { 2, 4, 11, 22, 12, 18, 24, 36, 48, 72, 96, 108 } };
181 const struct ieee80211_rateset  acx_rates_11b_pbcc =
182         { 5, { 2, 4, 11, 22, 44 } };
183 const struct ieee80211_rateset  acx_rates_11g_pbcc =
184         { 13, { 2, 4, 11, 22, 44, 12, 18, 24, 36, 48, 72, 96, 108 } };
185
186 int     acx_enable_pbcc = 1;
187 TUNABLE_INT("hw.acx.enable_pbcc", &acx_enable_pbcc);
188
189 static const struct acx_device {
190         uint16_t        vid;
191         uint16_t        did;
192         void            (*set_param)(device_t);
193         const char      *desc;
194 } acx_devices[] = {
195         { PCI_VENDOR_TI, PCI_PRODUCT_TI_ACX100A, acx100_set_param,
196           "Texas Instruments TNETW1100A Wireless Adapter" },
197         { PCI_VENDOR_TI, PCI_PRODUCT_TI_ACX100B, acx100_set_param,
198           "Texas Instruments TNETW1100B Wireless Adapter" },
199         { PCI_VENDOR_TI, PCI_PRODUCT_TI_ACX111, acx111_set_param,
200           "Texas Instruments TNETW1130 Wireless Adapter" },
201         { 0, 0, NULL, NULL }
202 };
203
204 static device_method_t acx_methods[] = {
205         DEVMETHOD(device_probe,         acx_probe),
206         DEVMETHOD(device_attach,        acx_attach),
207         DEVMETHOD(device_detach,        acx_detach),
208         DEVMETHOD(device_shutdown,      acx_shutdown),
209 #if 0
210         DEVMETHOD(device_suspend,       acx_suspend),
211         DEVMETHOD(device_resume,        acx_resume),
212 #endif
213         { 0, 0 }
214 };
215
216 static driver_t acx_driver = {
217         "acx",
218         acx_methods,
219         sizeof(struct acx_softc)
220 };
221
222 static devclass_t acx_devclass;
223
224 DRIVER_MODULE(acx, pci, acx_driver, acx_devclass, 0, 0);
225 DRIVER_MODULE(acx, cardbus, acx_driver, acx_devclass, 0, 0);
226
227 MODULE_DEPEND(acx, wlan, 1, 1, 1);
228 MODULE_DEPEND(acx, wlan_ratectl_onoe, 1, 1, 1);
229 MODULE_DEPEND(acx, wlan_ratectl_amrr, 1, 1, 1);
230 MODULE_DEPEND(acx, pci, 1, 1, 1);
231 MODULE_DEPEND(acx, cardbus, 1, 1, 1);
232
233 static __inline int
234 acx_get_rssi(struct acx_softc *sc, uint8_t raw)
235 {
236         int rssi;
237
238         rssi = ((sc->chip_rssi_corr / 2) + (raw * 5)) / sc->chip_rssi_corr;
239         return rssi > 100 ? 100 : rssi;
240 }
241
242 static int
243 acx_probe(device_t dev)
244 {
245         const struct acx_device *a;
246         uint16_t did, vid;
247
248         vid = pci_get_vendor(dev);
249         did = pci_get_device(dev);
250         for (a = acx_devices; a->desc != NULL; ++a) {
251                 if (vid == a->vid && did == a->did) {
252                         a->set_param(dev);
253                         device_set_desc(dev, a->desc);
254                         return 0;
255                 }
256         }
257         return ENXIO;
258 }
259
260 static int
261 acx_attach(device_t dev)
262 {
263         struct acx_softc *sc;
264         struct ifnet *ifp;
265         struct ieee80211com *ic;
266         int i, error;
267
268         sc = device_get_softc(dev);
269         ic = &sc->sc_ic;
270         ifp = &ic->ic_if;
271
272         if_initname(ifp, device_get_name(dev), device_get_unit(dev));
273
274 #ifndef BURN_BRIDGES
275         if (pci_get_powerstate(dev) != PCI_POWERSTATE_D0) {
276                 uint32_t mem1, mem2, irq;
277
278                 mem1 = pci_read_config(dev, sc->chip_mem1_rid, 4);
279                 mem2 = pci_read_config(dev, sc->chip_mem2_rid, 4);
280                 irq = pci_read_config(dev, PCIR_INTLINE, 4);
281
282                 device_printf(dev, "chip is in D%d power mode "
283                     "-- setting to D0\n", pci_get_powerstate(dev));
284
285                 pci_set_powerstate(dev, PCI_POWERSTATE_D0);
286
287                 pci_write_config(dev, sc->chip_mem1_rid, mem1, 4);
288                 pci_write_config(dev, sc->chip_mem2_rid, mem2, 4);
289                 pci_write_config(dev, PCIR_INTLINE, irq, 4);
290         }
291 #endif  /* !BURN_BRIDGE */
292
293         /* Enable bus mastering */
294         pci_enable_busmaster(dev); 
295
296         /* Allocate IO memory 1 */
297         sc->sc_mem1_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY,
298                                                  &sc->chip_mem1_rid,
299                                                  RF_ACTIVE);
300         if (sc->sc_mem1_res == NULL) {
301                 error = ENXIO;
302                 device_printf(dev, "can't allocate IO mem1\n");
303                 goto fail;
304         }
305         sc->sc_mem1_bt = rman_get_bustag(sc->sc_mem1_res);
306         sc->sc_mem1_bh = rman_get_bushandle(sc->sc_mem1_res);
307
308         /* Allocate IO memory 2 */
309         sc->sc_mem2_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY,
310                                                  &sc->chip_mem2_rid,
311                                                  RF_ACTIVE);
312         if (sc->sc_mem2_res == NULL) {
313                 error = ENXIO;
314                 device_printf(dev, "can't allocate IO mem2\n");
315                 goto fail;
316         }
317         sc->sc_mem2_bt = rman_get_bustag(sc->sc_mem2_res);
318         sc->sc_mem2_bh = rman_get_bushandle(sc->sc_mem2_res);
319
320         /* Allocate irq */
321         sc->sc_irq_res = bus_alloc_resource_any(dev, SYS_RES_IRQ,
322                                                 &sc->sc_irq_rid,
323                                                 RF_SHAREABLE | RF_ACTIVE);
324         if (sc->sc_irq_res == NULL) {
325                 error = ENXIO;
326                 device_printf(dev, "can't allocate intr\n");
327                 goto fail;
328         }
329
330         /* Initialize channel scanning timer */
331         callout_init(&sc->sc_scan_timer);
332
333         /* Initialize calibration timer */
334         callout_init(&sc->sc_calibrate_timer);
335
336         /* Allocate busdma stuffs */
337         error = acx_dma_alloc(sc);
338         if (error)
339                 goto fail;
340
341         /* Reset Hardware */
342         error = acx_reset(sc);
343         if (error)
344                 goto fail;
345
346         /* Disable interrupts before firmware is loaded */
347         acx_disable_intr(sc);
348
349         /* Get radio type and form factor */
350 #define EEINFO_RETRY_MAX        50
351         for (i = 0; i < EEINFO_RETRY_MAX; ++i) {
352                 uint16_t ee_info;
353
354                 ee_info = CSR_READ_2(sc, ACXREG_EEPROM_INFO);
355                 if (ACX_EEINFO_HAS_RADIO_TYPE(ee_info)) {
356                         sc->sc_form_factor = ACX_EEINFO_FORM_FACTOR(ee_info);
357                         sc->sc_radio_type = ACX_EEINFO_RADIO_TYPE(ee_info);
358                         break;
359                 }
360                 DELAY(10000);
361         }
362         if (i == EEINFO_RETRY_MAX) {
363                 error = ENXIO;
364                 goto fail;
365         }
366 #undef EEINFO_RETRY_MAX
367
368         DPRINTF((&sc->sc_ic.ic_if, "radio type %02x\n", sc->sc_radio_type));
369
370 #ifdef DUMP_EEPROM
371         for (i = 0; i < 0x40; ++i) {
372                 uint8_t val;
373
374                 error = acx_read_eeprom(sc, i, &val);
375                 if (i % 10 == 0)
376                         kprintf("\n");
377                 kprintf("%02x ", val);
378         }
379         kprintf("\n");
380 #endif  /* DUMP_EEPROM */
381
382         /* Get EEPROM version */
383         error = acx_read_eeprom(sc, ACX_EE_VERSION_OFS, &sc->sc_eeprom_ver);
384         if (error)
385                 goto fail;
386         DPRINTF((&sc->sc_ic.ic_if, "EEPROM version %u\n", sc->sc_eeprom_ver));
387
388         /*
389          * Initialize device sysctl before ieee80211_ifattach()
390          */
391         sc->sc_long_retry_limit = 4;
392         sc->sc_msdu_lifetime = 4096;
393         sc->sc_scan_dwell = 200;        /* 200 milliseconds */
394         sc->sc_calib_intvl = 3 * 60;    /* 3 minutes */
395
396         sysctl_ctx_init(&sc->sc_sysctl_ctx);
397         sc->sc_sysctl_tree = SYSCTL_ADD_NODE(&sc->sc_sysctl_ctx,
398                                              SYSCTL_STATIC_CHILDREN(_hw),
399                                              OID_AUTO,
400                                              device_get_nameunit(dev),
401                                              CTLFLAG_RD, 0, "");
402         if (sc->sc_sysctl_tree == NULL) {
403                 device_printf(dev, "can't add sysctl node\n");
404                 error = ENXIO;
405                 goto fail;
406         }
407         SYSCTL_ADD_PROC(&sc->sc_sysctl_ctx,
408                         SYSCTL_CHILDREN(sc->sc_sysctl_tree),
409                         OID_AUTO, "msdu_lifetime",
410                         CTLTYPE_INT | CTLFLAG_RW,
411                         sc, 0, acx_sysctl_msdu_lifetime, "I",
412                         "MSDU life time");
413         SYSCTL_ADD_INT(&sc->sc_sysctl_ctx,
414                        SYSCTL_CHILDREN(sc->sc_sysctl_tree), OID_AUTO,
415                        "long_retry_limit", CTLFLAG_RW,
416                        &sc->sc_long_retry_limit, 0, "Long retry limit");
417         SYSCTL_ADD_INT(&sc->sc_sysctl_ctx,
418                        SYSCTL_CHILDREN(sc->sc_sysctl_tree), OID_AUTO,
419                        "scan_dwell", CTLFLAG_RW,
420                        &sc->sc_scan_dwell, 0, "Scan channel dwell time (ms)");
421         SYSCTL_ADD_INT(&sc->sc_sysctl_ctx,
422                        SYSCTL_CHILDREN(sc->sc_sysctl_tree), OID_AUTO,
423                        "calib_intvl", CTLFLAG_RW,
424                        &sc->sc_calib_intvl, 0, "Calibration interval (second)");
425
426         /*
427          * Nodes for firmware operation
428          */
429         SYSCTL_ADD_INT(&sc->sc_sysctl_ctx,
430                        SYSCTL_CHILDREN(sc->sc_sysctl_tree), OID_AUTO,
431                        "combined_radio_fw", CTLFLAG_RW,
432                        &sc->sc_firmware.combined_radio_fw, 0,
433                        "Radio and base firmwares are combined");
434         SYSCTL_ADD_PROC(&sc->sc_sysctl_ctx,
435                         SYSCTL_CHILDREN(sc->sc_sysctl_tree),
436                         OID_AUTO, "free_fw",
437                         CTLTYPE_INT | CTLFLAG_RW,
438                         sc, 0, acx_sysctl_free_firmware, "I",
439                         "Free firmware");
440
441         /*
442          * Nodes for statistics
443          */
444         SYSCTL_ADD_UQUAD(&sc->sc_sysctl_ctx,
445                          SYSCTL_CHILDREN(sc->sc_sysctl_tree), OID_AUTO,
446                          "frag_error", CTLFLAG_RW, &sc->sc_stats.err_oth_frag,
447                          0, "Fragment errors");
448         SYSCTL_ADD_UQUAD(&sc->sc_sysctl_ctx,
449                          SYSCTL_CHILDREN(sc->sc_sysctl_tree), OID_AUTO,
450                          "tx_abort", CTLFLAG_RW, &sc->sc_stats.err_abort,
451                          0, "TX abortions");
452         SYSCTL_ADD_UQUAD(&sc->sc_sysctl_ctx,
453                          SYSCTL_CHILDREN(sc->sc_sysctl_tree), OID_AUTO,
454                          "tx_invalid", CTLFLAG_RW, &sc->sc_stats.err_param,
455                          0, "Invalid TX param in TX descriptor");
456         SYSCTL_ADD_UQUAD(&sc->sc_sysctl_ctx,
457                          SYSCTL_CHILDREN(sc->sc_sysctl_tree), OID_AUTO,
458                          "no_wepkey", CTLFLAG_RW, &sc->sc_stats.err_no_wepkey,
459                          0, "No WEP key exists");
460         SYSCTL_ADD_UQUAD(&sc->sc_sysctl_ctx,
461                          SYSCTL_CHILDREN(sc->sc_sysctl_tree), OID_AUTO,
462                          "msdu_timeout", CTLFLAG_RW,
463                          &sc->sc_stats.err_msdu_timeout,
464                          0, "MSDU timeouts");
465         SYSCTL_ADD_UQUAD(&sc->sc_sysctl_ctx,
466                          SYSCTL_CHILDREN(sc->sc_sysctl_tree), OID_AUTO,
467                          "ex_txretry", CTLFLAG_RW, &sc->sc_stats.err_ex_retry,
468                          0, "Excessive TX retries");
469         SYSCTL_ADD_UQUAD(&sc->sc_sysctl_ctx,
470                          SYSCTL_CHILDREN(sc->sc_sysctl_tree), OID_AUTO,
471                          "buf_oflow", CTLFLAG_RW, &sc->sc_stats.err_buf_oflow,
472                          0, "Buffer overflows");
473         SYSCTL_ADD_UQUAD(&sc->sc_sysctl_ctx,
474                          SYSCTL_CHILDREN(sc->sc_sysctl_tree), OID_AUTO,
475                          "dma_error", CTLFLAG_RW, &sc->sc_stats.err_dma,
476                          0, "DMA errors");
477         SYSCTL_ADD_UQUAD(&sc->sc_sysctl_ctx,
478                          SYSCTL_CHILDREN(sc->sc_sysctl_tree), OID_AUTO,
479                          "unkn_error", CTLFLAG_RW, &sc->sc_stats.err_unkn,
480                          0, "Unknown errors");
481
482         ifp->if_softc = sc;
483         ifp->if_init = acx_init;
484         ifp->if_ioctl = acx_ioctl;
485         ifp->if_start = acx_start;
486         ifp->if_watchdog = acx_watchdog;
487         ifp->if_flags = IFF_SIMPLEX | IFF_BROADCAST | IFF_MULTICAST;
488         ifq_set_maxlen(&ifp->if_snd, IFQ_MAXLEN);
489         ifq_set_ready(&ifp->if_snd);
490
491         /* Set channels */
492         for (i = 1; i <= 14; ++i) {
493                 ic->ic_channels[i].ic_freq =
494                         ieee80211_ieee2mhz(i, IEEE80211_CHAN_2GHZ);
495                 ic->ic_channels[i].ic_flags = sc->chip_chan_flags;
496         }
497
498         ic->ic_opmode = IEEE80211_M_STA;
499         ic->ic_state = IEEE80211_S_INIT;
500
501         /*
502          * NOTE: Don't overwrite ic_caps set by chip specific code
503          */
504         ic->ic_caps |= IEEE80211_C_WEP |        /* WEP */
505                        IEEE80211_C_HOSTAP |     /* HostAP mode */
506                        IEEE80211_C_MONITOR |    /* Monitor mode */
507                        IEEE80211_C_IBSS |       /* IBSS modes */
508                        IEEE80211_C_SHPREAMBLE;  /* Short preamble */
509         if (acx_enable_pbcc)
510                 ic->ic_caps_ext = IEEE80211_CEXT_PBCC;  /* PBCC modulation */
511
512         /* Get station id */
513         for (i = 0; i < IEEE80211_ADDR_LEN; ++i) {
514                 error = acx_read_eeprom(sc, sc->chip_ee_eaddr_ofs - i,
515                                         &ic->ic_myaddr[i]);
516         }
517
518         ieee80211_ifattach(ic);
519
520         /* Enable software beacon missing */
521         ic->ic_flags_ext |= IEEE80211_FEXT_SWBMISS;
522
523         /* Override newstate */
524         sc->sc_newstate = ic->ic_newstate;
525         ic->ic_newstate = acx_newstate;
526
527         ieee80211_media_init(ic, acx_media_change, ieee80211_media_status);
528
529         /*
530          * Radio tap attaching
531          */
532         bpfattach_dlt(ifp, DLT_IEEE802_11_RADIO,
533                       sizeof(struct ieee80211_frame) + sizeof(sc->sc_tx_th),
534                       &sc->sc_drvbpf);
535
536         sc->sc_tx_th_len = roundup(sizeof(sc->sc_tx_th), sizeof(uint32_t));
537         sc->sc_tx_th.wt_ihdr.it_len = htole16(sc->sc_tx_th_len);
538         sc->sc_tx_th.wt_ihdr.it_present = htole32(ACX_TX_RADIOTAP_PRESENT);
539
540         sc->sc_rx_th_len = roundup(sizeof(sc->sc_rx_th), sizeof(uint32_t));
541         sc->sc_rx_th.wr_ihdr.it_len = htole16(sc->sc_rx_th_len);
542         sc->sc_rx_th.wr_ihdr.it_present = htole32(ACX_RX_RADIOTAP_PRESENT);
543
544         error = bus_setup_intr(dev, sc->sc_irq_res, INTR_MPSAFE, acx_intr, sc,
545                                &sc->sc_irq_handle, ifp->if_serializer);
546         if (error) {
547                 device_printf(dev, "can't set up interrupt\n");
548                 bpfdetach(ifp);
549                 ieee80211_ifdetach(ic);
550                 goto fail;
551         }
552
553         ifp->if_cpuid = ithread_cpuid(rman_get_start(sc->sc_irq_res));
554         KKASSERT(ifp->if_cpuid >= 0 && ifp->if_cpuid < ncpus);
555
556         if (bootverbose)
557                 ieee80211_announce(ic);
558
559         return 0;
560 fail:
561         acx_detach(dev);
562         return error;
563 }
564
565 static int
566 acx_detach(device_t dev)
567 {
568         struct acx_softc *sc = device_get_softc(dev);
569
570         if (device_is_attached(dev)) {
571                 struct ieee80211com *ic = &sc->sc_ic;
572                 struct ifnet *ifp = &ic->ic_if;
573
574                 lwkt_serialize_enter(ifp->if_serializer);
575
576                 acx_stop(sc);
577                 acx_free_firmware(sc);
578                 bus_teardown_intr(dev, sc->sc_irq_res, sc->sc_irq_handle);
579
580                 lwkt_serialize_exit(ifp->if_serializer);
581
582                 bpfdetach(ifp);
583                 ieee80211_ifdetach(ic);
584         }
585
586         if (sc->sc_sysctl_tree != NULL)
587                 sysctl_ctx_free(&sc->sc_sysctl_ctx);
588
589         if (sc->sc_irq_res != NULL) {
590                 bus_release_resource(dev, SYS_RES_IRQ, sc->sc_irq_rid,
591                                      sc->sc_irq_res);
592         }
593         if (sc->sc_mem1_res != NULL) {
594                 bus_release_resource(dev, SYS_RES_MEMORY, sc->chip_mem1_rid,
595                                      sc->sc_mem1_res);
596         }
597         if (sc->sc_mem2_res != NULL) {
598                 bus_release_resource(dev, SYS_RES_MEMORY, sc->chip_mem2_rid,
599                                      sc->sc_mem2_res);
600         }
601
602         acx_dma_free(sc);
603         return 0;
604 }
605
606 static int
607 acx_shutdown(device_t dev)
608 {
609         struct acx_softc *sc = device_get_softc(dev);
610
611         lwkt_serialize_enter(sc->sc_ic.ic_if.if_serializer);
612         acx_stop(sc);
613         lwkt_serialize_exit(sc->sc_ic.ic_if.if_serializer);
614         return 0;
615 }
616
617 static void
618 acx_init(void *arg)
619 {
620         struct acx_softc *sc = arg;
621         struct ieee80211com *ic = &sc->sc_ic;
622         struct ifnet *ifp = &ic->ic_if;
623         struct acx_firmware *fw = &sc->sc_firmware;
624         int error;
625
626         error = acx_stop(sc);
627         if (error)
628                 return;
629
630         error = acx_alloc_firmware(sc);
631         if (error)
632                 return;
633
634         error = acx_init_tx_ring(sc);
635         if (error) {
636                 if_printf(ifp, "can't initialize TX ring\n");
637                 goto back;
638         }
639
640         error = acx_init_rx_ring(sc);
641         if (error) {
642                 if_printf(ifp, "can't initialize RX ring\n");
643                 goto back;
644         }
645
646         error = acx_load_base_firmware(sc, fw->base_fw, fw->base_fw_len);
647         if (error)
648                 goto back;
649
650         /*
651          * Initialize command and information registers
652          * NOTE: This should be done after base firmware is loaded
653          */
654         acx_init_cmd_reg(sc);
655         acx_init_info_reg(sc);
656
657         sc->sc_flags |= ACX_FLAG_FW_LOADED;
658
659 #if 0
660         if (sc->chip_post_basefw != NULL) {
661                 error = sc->chip_post_basefw(sc);
662                 if (error)
663                         goto back;
664         }
665 #endif
666
667         if (fw->radio_fw != NULL) {
668                 error = acx_load_radio_firmware(sc, fw->radio_fw,
669                                                 fw->radio_fw_len);
670                 if (error)
671                         goto back;
672         }
673
674         error = sc->chip_init(sc);
675         if (error)
676                 goto back;
677
678         /* Get and set device various configuration */
679         error = acx_config(sc);
680         if (error)
681                 goto back;
682
683         /* Setup crypto stuffs */
684         if (sc->sc_ic.ic_flags & IEEE80211_F_PRIVACY) {
685                 error = acx_set_crypt_keys(sc);
686                 if (error)
687                         goto back;
688                 sc->sc_ic.ic_flags &= ~IEEE80211_F_DROPUNENC;
689         }
690
691         /* Turn on power led */
692         CSR_CLRB_2(sc, ACXREG_GPIO_OUT, sc->chip_gpio_pled);
693
694         acx_enable_intr(sc);
695
696         ifp->if_flags |= IFF_RUNNING;
697         ifp->if_flags &= ~IFF_OACTIVE;
698
699         if (ic->ic_opmode != IEEE80211_M_MONITOR) {
700                 if (ic->ic_roaming != IEEE80211_ROAMING_MANUAL)
701                         ieee80211_new_state(&sc->sc_ic, IEEE80211_S_SCAN, -1);
702         } else {
703                 ieee80211_new_state(ic, IEEE80211_S_RUN, -1);
704         }
705 back:
706         if (error)
707                 acx_stop(sc);
708 }
709
710 static void
711 acx_init_info_reg(struct acx_softc *sc)
712 {
713         sc->sc_info = CSR_READ_4(sc, ACXREG_INFO_REG_OFFSET);
714         sc->sc_info_param = sc->sc_info + ACX_INFO_REG_SIZE;
715 }
716
717 static int
718 acx_set_crypt_keys(struct acx_softc *sc)
719 {
720         struct ieee80211com *ic = &sc->sc_ic;
721         struct acx_conf_wep_txkey wep_txkey;
722         int i, error, got_wk = 0;
723
724         for (i = 0; i < IEEE80211_WEP_NKID; ++i) {
725                 struct ieee80211_key *wk = &ic->ic_nw_keys[i];
726
727                 if (wk->wk_keylen == 0)
728                         continue;
729
730                 if (sc->chip_hw_crypt) {
731                         error = sc->chip_set_wepkey(sc, wk, i);
732                         if (error)
733                                 return error;
734                         got_wk = 1;
735                 } else if (wk->wk_flags & IEEE80211_KEY_XMIT) {
736                         wk->wk_flags |= IEEE80211_KEY_SWCRYPT;
737                 }
738         }
739
740         if (!got_wk || sc->chip_hw_crypt ||
741             ic->ic_def_txkey == IEEE80211_KEYIX_NONE)
742                 return 0;
743
744         /* Set current WEP key index */
745         wep_txkey.wep_txkey = ic->ic_def_txkey;
746         if (acx_set_wep_txkey_conf(sc, &wep_txkey) != 0) {
747                 if_printf(&ic->ic_if, "set WEP txkey failed\n");
748                 return ENXIO;
749         }
750         return 0;
751 }
752
753 static void
754 acx_next_scan(void *arg)
755 {
756         struct acx_softc *sc = arg;
757         struct ieee80211com *ic = &sc->sc_ic;
758         struct ifnet *ifp = &ic->ic_if;
759
760         lwkt_serialize_enter(ifp->if_serializer);
761
762         if (ic->ic_state == IEEE80211_S_SCAN)
763                 ieee80211_next_scan(ic);
764
765         lwkt_serialize_exit(ifp->if_serializer);
766 }
767
768 static int
769 acx_stop(struct acx_softc *sc)
770 {
771         struct ieee80211com *ic = &sc->sc_ic;
772         struct ifnet *ifp = &ic->ic_if;
773         struct acx_buf_data *bd = &sc->sc_buf_data;
774         struct acx_ring_data *rd = &sc->sc_ring_data;
775         int i, error;
776
777         ASSERT_SERIALIZED(ifp->if_serializer);
778
779         ieee80211_new_state(&sc->sc_ic, IEEE80211_S_INIT, -1);
780
781         sc->sc_firmware_ver = 0;
782         sc->sc_hardware_id = 0;
783
784         /* Reset hardware */
785         error = acx_reset(sc);
786         if (error)
787                 return error;
788
789         /* Firmware no longer functions after hardware reset */
790         sc->sc_flags &= ~ACX_FLAG_FW_LOADED;
791
792         acx_disable_intr(sc);
793
794         /* Stop backgroud scanning */
795         callout_stop(&sc->sc_scan_timer);
796
797         /* Turn off power led */
798         CSR_SETB_2(sc, ACXREG_GPIO_OUT, sc->chip_gpio_pled);
799
800         /* Free TX mbuf */
801         for (i = 0; i < ACX_TX_DESC_CNT; ++i) {
802                 struct acx_txbuf *buf;
803
804                 buf = &bd->tx_buf[i];
805
806                 if (buf->tb_mbuf != NULL) {
807                         bus_dmamap_unload(bd->mbuf_dma_tag,
808                                           buf->tb_mbuf_dmamap);
809                         m_freem(buf->tb_mbuf);
810                         buf->tb_mbuf = NULL;
811                 }
812
813                 if (buf->tb_node != NULL)
814                         ieee80211_free_node(buf->tb_node);
815                 buf->tb_node = NULL;
816         }
817
818         /* Clear TX host descriptors */
819         bzero(rd->tx_ring, ACX_TX_RING_SIZE);
820
821         /* Free RX mbuf */
822         for (i = 0; i < ACX_RX_DESC_CNT; ++i) {
823                 if (bd->rx_buf[i].rb_mbuf != NULL) {
824                         bus_dmamap_unload(bd->mbuf_dma_tag,
825                                           bd->rx_buf[i].rb_mbuf_dmamap);
826                         m_freem(bd->rx_buf[i].rb_mbuf);
827                         bd->rx_buf[i].rb_mbuf = NULL;
828                 }
829         }
830
831         /* Clear RX host descriptors */
832         bzero(rd->rx_ring, ACX_RX_RING_SIZE);
833
834         sc->sc_tx_timer = 0;
835         ifp->if_timer = 0;
836         ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
837
838         return 0;
839 }
840
841 static int
842 acx_config(struct acx_softc *sc)
843 {
844         struct acx_config conf;
845         int error;
846
847         error = acx_read_config(sc, &conf);
848         if (error)
849                 return error;
850
851         error = acx_write_config(sc, &conf);
852         if (error)
853                 return error;
854
855         error = acx_rx_config(sc, sc->sc_flags & ACX_FLAG_PROMISC);
856         if (error)
857                 return error;
858
859         if (acx_set_probe_req_tmplt(sc, "", 0) != 0) {
860                 if_printf(&sc->sc_ic.ic_if, "can't set probe req template "
861                           "(empty ssid)\n");
862                 return ENXIO;
863         }
864
865         /* XXX for PM?? */
866         if (acx_set_null_tmplt(sc) != 0) {
867                 if_printf(&sc->sc_ic.ic_if, "can't set null data template\n");
868                 return ENXIO;
869         }
870         return 0;
871 }
872
873 static int
874 acx_read_config(struct acx_softc *sc, struct acx_config *conf)
875 {
876         struct acx_conf_eaddr addr;
877         struct acx_conf_regdom reg_dom;
878         struct acx_conf_antenna ant;
879         struct acx_conf_fwrev fw_rev;
880         uint32_t fw_rev_no;
881         uint8_t sen;
882         int i, error;
883
884         /* Get station id */
885         if (acx_get_eaddr_conf(sc, &addr) != 0) {
886                 if_printf(&sc->sc_ic.ic_if, "can't get station id\n");
887                 return ENXIO;
888         }
889
890         /*
891          * Get and print station id in case that EEPROM station id's
892          * offset is not correct
893          */
894         for (i = 0; i < IEEE80211_ADDR_LEN; ++i)
895                 conf->eaddr[IEEE80211_ADDR_LEN - 1 - i] = addr.eaddr[i];
896         if_printf(&sc->sc_ic.ic_if, "MAC address (from firmware): %6D\n",
897                   conf->eaddr, ":");
898
899         /* Get region domain */
900         if (acx_get_regdom_conf(sc, &reg_dom) != 0) {
901                 if_printf(&sc->sc_ic.ic_if, "can't get region domain\n");
902                 return ENXIO;
903         }
904         conf->regdom = reg_dom.regdom;
905         DPRINTF((&sc->sc_ic.ic_if, "regdom %02x\n", reg_dom.regdom));
906
907         /* Get antenna */
908         if (acx_get_antenna_conf(sc, &ant) != 0) {
909                 if_printf(&sc->sc_ic.ic_if, "can't get antenna\n");
910                 return ENXIO;
911         }
912         conf->antenna = ant.antenna;
913         DPRINTF((&sc->sc_ic.ic_if, "antenna %02x\n", ant.antenna));
914
915         /* Get sensitivity XXX not used */
916         if (sc->sc_radio_type == ACX_RADIO_TYPE_MAXIM ||
917             sc->sc_radio_type == ACX_RADIO_TYPE_RFMD ||
918             sc->sc_radio_type == ACX_RADIO_TYPE_RALINK) {
919                 error = acx_read_phyreg(sc, ACXRV_PHYREG_SENSITIVITY, &sen);
920                 if (error) {
921                         if_printf(&sc->sc_ic.ic_if, "can't get sensitivity\n");
922                         return error;
923                 }
924         } else {
925                 sen = 0;
926         }
927         DPRINTF((&sc->sc_ic.ic_if, "sensitivity %02x\n", sen));
928
929         /* Get firmware revision */
930         if (acx_get_fwrev_conf(sc, &fw_rev) != 0) {
931                 if_printf(&sc->sc_ic.ic_if, "can't get firmware revision\n");
932                 return ENXIO;
933         }
934
935         if (strncmp(fw_rev.fw_rev, "Rev ", 4) != 0) {
936                 if_printf(&sc->sc_ic.ic_if, "strange revision string -- %s\n",
937                           fw_rev.fw_rev);
938                 fw_rev_no = 0x01090407;
939         } else {
940                 char *s, *endp;
941
942                 /*
943                  *  01234
944                  * "Rev xx.xx.xx.xx"
945                  *      ^ Start from here
946                  */
947                 s = &fw_rev.fw_rev[4];
948                 fw_rev_no = 0;
949                 for (i = 0; i < 4; ++i) {
950                         uint8_t val;
951
952                         val = strtoul(s, &endp, 16);
953                         fw_rev_no |= val << ((3 - i) * 8);
954
955                         if (*endp == '\0')
956                                 break;
957                         else
958                                 s = ++endp;
959                 }
960         }
961         sc->sc_firmware_ver = fw_rev_no;
962         sc->sc_hardware_id = le32toh(fw_rev.hw_id);
963         DPRINTF((&sc->sc_ic.ic_if, "fw rev %08x, hw id %08x\n",
964                  sc->sc_firmware_ver, sc->sc_hardware_id));
965
966         if (sc->chip_read_config != NULL) {
967                 error = sc->chip_read_config(sc, conf);
968                 if (error)
969                         return error;
970         }
971         return 0;
972 }
973
974 static int
975 acx_write_config(struct acx_softc *sc, struct acx_config *conf)
976 {
977         struct acx_conf_nretry_short sretry;
978         struct acx_conf_nretry_long lretry;
979         struct acx_conf_msdu_lifetime msdu_lifetime;
980         struct acx_conf_rate_fallback rate_fb;
981         struct acx_conf_antenna ant;
982         struct acx_conf_regdom reg_dom;
983         int error;
984
985         /* Set number of long/short retry */
986         KKASSERT(sc->chip_short_retry_limit > 0);
987         sretry.nretry = sc->chip_short_retry_limit;
988         if (acx_set_nretry_short_conf(sc, &sretry) != 0) {
989                 if_printf(&sc->sc_ic.ic_if, "can't set short retry limit\n");
990                 return ENXIO;
991         }
992
993         lretry.nretry = sc->sc_long_retry_limit;
994         if (acx_set_nretry_long_conf(sc, &lretry) != 0) {
995                 if_printf(&sc->sc_ic.ic_if, "can't set long retry limit\n");
996                 return ENXIO;
997         }
998
999         /* Set MSDU lifetime */
1000         msdu_lifetime.lifetime = htole32(sc->sc_msdu_lifetime);
1001         if (acx_set_msdu_lifetime_conf(sc, &msdu_lifetime) != 0) {
1002                 if_printf(&sc->sc_ic.ic_if, "can't set MSDU lifetime\n");
1003                 return ENXIO;
1004         }
1005
1006         /* Enable rate fallback */
1007         rate_fb.ratefb_enable = 1;
1008         if (acx_set_rate_fallback_conf(sc, &rate_fb) != 0) {
1009                 if_printf(&sc->sc_ic.ic_if, "can't enable rate fallback\n");
1010                 return ENXIO;
1011         }
1012
1013         /* Set antenna */
1014         ant.antenna = conf->antenna;
1015         if (acx_set_antenna_conf(sc, &ant) != 0) {
1016                 if_printf(&sc->sc_ic.ic_if, "can't set antenna\n");
1017                 return ENXIO;
1018         }
1019
1020         /* Set region domain */
1021         reg_dom.regdom = conf->regdom;
1022         if (acx_set_regdom_conf(sc, &reg_dom) != 0) {
1023                 if_printf(&sc->sc_ic.ic_if, "can't set region domain\n");
1024                 return ENXIO;
1025         }
1026
1027         if (sc->chip_write_config != NULL) {
1028                 error = sc->chip_write_config(sc, conf);
1029                 if (error)
1030                         return error;
1031         }
1032
1033         return 0;
1034 }
1035
1036 static int
1037 acx_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data, struct ucred *cr)
1038 {
1039         struct acx_softc *sc = ifp->if_softc;
1040         struct ieee80211com *ic = &sc->sc_ic;
1041         struct ifreq *req;
1042         int error;
1043
1044         error = 0;
1045         req = (struct ifreq *)data;
1046
1047         switch (cmd) {
1048         case SIOCSIFFLAGS:
1049                 if (ifp->if_flags & IFF_UP) {
1050                         if ((ifp->if_flags & IFF_RUNNING)) {
1051                                 int promisc = -1;
1052
1053                                 if ((ifp->if_flags & IFF_PROMISC) &&
1054                                     (sc->sc_flags & ACX_FLAG_PROMISC) == 0)
1055                                         promisc = 1;
1056                                 else if ((ifp->if_flags & IFF_PROMISC) == 0 &&
1057                                          (sc->sc_flags & ACX_FLAG_PROMISC))
1058                                         promisc = 0;
1059
1060                                 /*
1061                                  * Promisc mode is always enabled when
1062                                  * operation mode is Monitor.
1063                                  */
1064                                 if (ic->ic_opmode != IEEE80211_M_MONITOR &&
1065                                     promisc >= 0)
1066                                         error = acx_rx_config(sc, promisc);
1067                         } else {
1068                                 acx_init(sc);
1069                         }
1070                 } else {
1071                         if (ifp->if_flags & IFF_RUNNING)
1072                                 acx_stop(sc);
1073                 }
1074
1075                 if (ifp->if_flags & IFF_PROMISC)
1076                         sc->sc_flags |= ACX_FLAG_PROMISC;
1077                 else
1078                         sc->sc_flags &= ~ACX_FLAG_PROMISC;
1079                 break;
1080         case SIOCADDMULTI:
1081         case SIOCDELMULTI:
1082                 /* TODO */
1083                 break;
1084         default:
1085                 error = ieee80211_ioctl(ic, cmd, data, cr);
1086                 break;
1087         }
1088
1089         if (error == ENETRESET) {
1090                 if ((ifp->if_flags & (IFF_RUNNING | IFF_UP)) ==
1091                     (IFF_RUNNING | IFF_UP))
1092                         acx_init(sc);
1093                 error = 0;
1094         }
1095         return error;
1096 }
1097
1098 static void
1099 acx_start(struct ifnet *ifp)
1100 {
1101         struct acx_softc *sc = ifp->if_softc;
1102         struct ieee80211com *ic = &sc->sc_ic;
1103         struct acx_buf_data *bd = &sc->sc_buf_data;
1104         struct acx_txbuf *buf;
1105         int trans, idx;
1106
1107         ASSERT_SERIALIZED(ifp->if_serializer);
1108
1109         if ((sc->sc_flags & ACX_FLAG_FW_LOADED) == 0) {
1110                 ifq_purge(&ifp->if_snd);
1111                 ieee80211_drain_mgtq(&ic->ic_mgtq);
1112                 return;
1113         }
1114
1115         if ((ifp->if_flags & IFF_RUNNING) == 0 ||
1116             (ifp->if_flags & IFF_OACTIVE))
1117                 return;
1118
1119         /*
1120          * NOTE:
1121          * We can't start from a random position that TX descriptor
1122          * is free, since hardware will be confused by that.
1123          * We have to follow the order of the TX ring.
1124          */
1125         idx = bd->tx_free_start;
1126         trans = 0;
1127         for (buf = &bd->tx_buf[idx]; buf->tb_mbuf == NULL;
1128              buf = &bd->tx_buf[idx]) {
1129                 struct ieee80211_frame *f;
1130                 struct ieee80211_node *ni = NULL;
1131                 struct mbuf *m;
1132                 int mgmt_pkt = 0;
1133
1134                 if (!IF_QEMPTY(&ic->ic_mgtq)) {
1135                         IF_DEQUEUE(&ic->ic_mgtq, m);
1136
1137                         ni = (struct ieee80211_node *)m->m_pkthdr.rcvif;
1138                         m->m_pkthdr.rcvif = NULL;
1139
1140                         mgmt_pkt = 1;
1141
1142                         /*
1143                          * Don't transmit probe response firmware will
1144                          * do it for us.
1145                          */
1146                         f = mtod(m, struct ieee80211_frame *);
1147                         if ((f->i_fc[0] & IEEE80211_FC0_TYPE_MASK) ==
1148                             IEEE80211_FC0_TYPE_MGT &&
1149                             (f->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK) ==
1150                             IEEE80211_FC0_SUBTYPE_PROBE_RESP) {
1151                                 if (ni != NULL)
1152                                         ieee80211_free_node(ni);
1153                                 m_freem(m);
1154                                 continue;
1155                         }
1156                 } else if (!ifq_is_empty(&ifp->if_snd)) {
1157                         struct ether_header *eh;
1158
1159                         if (ic->ic_state != IEEE80211_S_RUN) {
1160                                 ifq_purge(&ifp->if_snd);
1161                                 break;
1162                         }
1163
1164                         m = ifq_dequeue(&ifp->if_snd, NULL);
1165                         if (m == NULL)
1166                                 break;
1167
1168                         if (m->m_len < sizeof(struct ether_header)) {
1169                                 m = m_pullup(m, sizeof(struct ether_header));
1170                                 if (m == NULL) {
1171                                         ifp->if_oerrors++;
1172                                         continue;
1173                                 }
1174                         }
1175                         eh = mtod(m, struct ether_header *);
1176
1177                         ni = ieee80211_find_txnode(ic, eh->ether_dhost);
1178                         if (ni == NULL) {
1179                                 m_freem(m);
1180                                 ifp->if_oerrors++;
1181                                 continue;
1182                         }
1183
1184                         /* TODO power save */
1185
1186                         BPF_MTAP(ifp, m);
1187
1188                         m = ieee80211_encap(ic, m, ni);
1189                         if (m == NULL) {
1190                                 ieee80211_free_node(ni);
1191                                 ifp->if_oerrors++;
1192                                 continue;
1193                         }
1194                 } else {
1195                         break;
1196                 }
1197
1198                 if (ic->ic_rawbpf != NULL)
1199                         bpf_mtap(ic->ic_rawbpf, m);
1200
1201                 f = mtod(m, struct ieee80211_frame *);
1202                 if ((f->i_fc[1] & IEEE80211_FC1_WEP) && !sc->chip_hw_crypt) {
1203                         KASSERT(ni != NULL, ("TX node is NULL (WEP)\n"));
1204                         if (ieee80211_crypto_encap(ic, ni, m) == NULL) {
1205                                 ieee80211_free_node(ni);
1206                                 m_freem(m);
1207                                 ifp->if_oerrors++;
1208                                 continue;
1209                         }
1210                 }
1211
1212                 /*
1213                  * Since mgmt data are transmitted at fixed rate
1214                  * they will not be used to do rate control.
1215                  */
1216                 if (mgmt_pkt && ni != NULL) {
1217                         ieee80211_free_node(ni);
1218                         ni = NULL;
1219                 }
1220
1221                 if (acx_encap(sc, buf, m, ni) != 0) {
1222                         /*
1223                          * NOTE: `m' will be freed in acx_encap()
1224                          * if we reach here.
1225                          */
1226                         if (ni != NULL)
1227                                 ieee80211_free_node(ni);
1228                         ifp->if_oerrors++;
1229                         continue;
1230                 }
1231
1232                 /*
1233                  * NOTE:
1234                  * 1) `m' should not be touched after acx_encap()
1235                  * 2) `node' will be used to do TX rate control during
1236                  *    acx_txeof(), so it is not freed here.  acx_txeof()
1237                  *    will free it for us
1238                  */
1239
1240                 trans = 1;
1241                 bd->tx_used_count++;
1242                 idx = (idx + 1) % ACX_TX_DESC_CNT;
1243         }
1244         bd->tx_free_start = idx;
1245
1246         if (bd->tx_used_count == ACX_TX_DESC_CNT)
1247                 ifp->if_flags |= IFF_OACTIVE;
1248
1249         if (trans && sc->sc_tx_timer == 0)
1250                 sc->sc_tx_timer = 5;
1251         ifp->if_timer = 1;
1252 }
1253
1254 static void
1255 acx_watchdog(struct ifnet *ifp)
1256 {
1257         struct acx_softc *sc = ifp->if_softc;
1258
1259         ifp->if_timer = 0;
1260
1261         if ((ifp->if_flags & IFF_RUNNING) == 0)
1262                 return;
1263
1264         if (sc->sc_tx_timer) {
1265                 if (--sc->sc_tx_timer == 0) {
1266                         if_printf(ifp, "watchdog timeout\n");
1267                         ifp->if_oerrors++;
1268                         acx_txeof(ifp->if_softc);
1269                 } else {
1270                         ifp->if_timer = 1;
1271                 }
1272         }
1273         ieee80211_watchdog(&sc->sc_ic);
1274 }
1275
1276 static void
1277 acx_intr(void *arg)
1278 {
1279         struct acx_softc *sc = arg;
1280         uint16_t intr_status;
1281
1282         if ((sc->sc_flags & ACX_FLAG_FW_LOADED) == 0)
1283                 return;
1284
1285         intr_status = CSR_READ_2(sc, ACXREG_INTR_STATUS_CLR);
1286         if (intr_status == ACXRV_INTR_ALL) {
1287                 /* not our interrupt */
1288                 return;
1289         }
1290
1291         intr_status &= sc->chip_intr_enable;
1292         if (intr_status == 0) {
1293                 /* not interrupts we care about */
1294                 return;
1295         }
1296
1297         /* Acknowledge all interrupts */
1298         CSR_WRITE_2(sc, ACXREG_INTR_ACK, ACXRV_INTR_ALL);
1299
1300         if (intr_status & ACXRV_INTR_TX_FINI)
1301                 acx_txeof(sc);
1302
1303         if (intr_status & ACXRV_INTR_RX_FINI)
1304                 acx_rxeof(sc);
1305 }
1306
1307 static void
1308 acx_disable_intr(struct acx_softc *sc)
1309 {
1310         CSR_WRITE_2(sc, ACXREG_INTR_MASK, sc->chip_intr_disable);
1311         CSR_WRITE_2(sc, ACXREG_EVENT_MASK, 0);
1312 }
1313
1314 static void
1315 acx_enable_intr(struct acx_softc *sc)
1316 {
1317         /* Mask out interrupts that are not in the enable set */
1318         CSR_WRITE_2(sc, ACXREG_INTR_MASK, ~sc->chip_intr_enable);
1319         CSR_WRITE_2(sc, ACXREG_EVENT_MASK, ACXRV_EVENT_DISABLE);
1320 }
1321
1322 static void
1323 acx_txeof(struct acx_softc *sc)
1324 {
1325         struct acx_buf_data *bd;
1326         struct acx_txbuf *buf;
1327         struct ifnet *ifp;
1328         int idx;
1329
1330         ifp = &sc->sc_ic.ic_if;
1331         ASSERT_SERIALIZED(ifp->if_serializer);
1332
1333         bd = &sc->sc_buf_data;
1334         idx = bd->tx_used_start;
1335         for (buf = &bd->tx_buf[idx]; buf->tb_mbuf != NULL;
1336              buf = &bd->tx_buf[idx]) {
1337                 uint8_t ctrl, error;
1338                 int frame_len;
1339
1340                 ctrl = FW_TXDESC_GETFIELD_1(sc, buf, f_tx_ctrl);
1341                 if ((ctrl & (DESC_CTRL_HOSTOWN | DESC_CTRL_ACXDONE)) !=
1342                     (DESC_CTRL_HOSTOWN | DESC_CTRL_ACXDONE))
1343                         break;
1344
1345                 bus_dmamap_unload(bd->mbuf_dma_tag, buf->tb_mbuf_dmamap);
1346                 frame_len = buf->tb_mbuf->m_pkthdr.len;
1347                 m_freem(buf->tb_mbuf);
1348                 buf->tb_mbuf = NULL;
1349
1350                 error = FW_TXDESC_GETFIELD_1(sc, buf, f_tx_error);
1351                 if (error) {
1352                         acx_txerr(sc, error);
1353                         ifp->if_oerrors++;
1354                 } else {
1355                         ifp->if_opackets++;
1356                 }
1357
1358                 if (buf->tb_node != NULL) {
1359                         sc->chip_tx_complete(sc, buf, frame_len, error);
1360                         ieee80211_free_node(buf->tb_node);
1361                         buf->tb_node = NULL;
1362                 }
1363
1364                 FW_TXDESC_SETFIELD_1(sc, buf, f_tx_ctrl, DESC_CTRL_HOSTOWN);
1365
1366                 bd->tx_used_count--;
1367
1368                 idx = (idx + 1) % ACX_TX_DESC_CNT;
1369         }
1370         bd->tx_used_start = idx;
1371
1372         sc->sc_tx_timer = bd->tx_used_count == 0 ? 0 : 5;
1373
1374         if (bd->tx_used_count != ACX_TX_DESC_CNT) {
1375                 ifp->if_flags &= ~IFF_OACTIVE;
1376                 ifp->if_start(ifp);
1377         }
1378 }
1379
1380 static void
1381 acx_txerr(struct acx_softc *sc, uint8_t err)
1382 {
1383         struct ifnet *ifp = &sc->sc_ic.ic_if;
1384         struct acx_stats *stats = &sc->sc_stats;
1385
1386         if (err == DESC_ERR_EXCESSIVE_RETRY) {
1387                 /*
1388                  * This a common error (see comment below),
1389                  * so print it using DPRINTF()
1390                  */
1391                 DPRINTF((ifp, "TX failed -- excessive retry\n"));
1392         } else {
1393                 if_printf(ifp, "TX failed -- ");
1394         }
1395
1396         /*
1397          * Although `err' looks like bitmask, it never
1398          * has multiple bits set.
1399          */
1400         switch (err) {
1401 #if 0
1402         case DESC_ERR_OTHER_FRAG:
1403                 /* XXX what's this */
1404                 kprintf("error in other fragment\n");
1405                 stats->err_oth_frag++;
1406                 break;
1407 #endif
1408         case DESC_ERR_ABORT:
1409                 kprintf("aborted\n");
1410                 stats->err_abort++;
1411                 break;
1412         case DESC_ERR_PARAM:
1413                 kprintf("wrong parameters in descriptor\n");
1414                 stats->err_param++;
1415                 break;
1416         case DESC_ERR_NO_WEPKEY:
1417                 kprintf("WEP key missing\n");
1418                 stats->err_no_wepkey++;
1419                 break;
1420         case DESC_ERR_MSDU_TIMEOUT:
1421                 kprintf("MSDU life timeout\n");
1422                 stats->err_msdu_timeout++;
1423                 break;
1424         case DESC_ERR_EXCESSIVE_RETRY:
1425                 /*
1426                  * Possible causes:
1427                  * 1) Distance is too long
1428                  * 2) Transmit failed (e.g. no MAC level ACK)
1429                  * 3) Chip overheated (this should be rare)
1430                  */
1431                 stats->err_ex_retry++;
1432                 break;
1433         case DESC_ERR_BUF_OVERFLOW:
1434                 kprintf("buffer overflow\n");
1435                 stats->err_buf_oflow++;
1436                 break;
1437         case DESC_ERR_DMA:
1438                 kprintf("DMA error\n");
1439                 stats->err_dma++;
1440                 break;
1441         default:
1442                 kprintf("unknown error %d\n", err);
1443                 stats->err_unkn++;
1444                 break;
1445         }
1446 }
1447
1448 static void
1449 acx_rxeof(struct acx_softc *sc)
1450 {
1451         struct ieee80211com *ic = &sc->sc_ic;
1452         struct acx_ring_data *rd = &sc->sc_ring_data;
1453         struct acx_buf_data *bd = &sc->sc_buf_data;
1454         struct ifnet *ifp = &ic->ic_if;
1455         int idx, ready;
1456
1457         ASSERT_SERIALIZED(ic->ic_if.if_serializer);
1458
1459         bus_dmamap_sync(rd->rx_ring_dma_tag, rd->rx_ring_dmamap,
1460                         BUS_DMASYNC_POSTREAD);
1461
1462         /*
1463          * Locate first "ready" rx buffer,
1464          * start from last stopped position
1465          */
1466         idx = bd->rx_scan_start;
1467         ready = 0;
1468         do {
1469                 struct acx_rxbuf *buf;
1470
1471                 buf = &bd->rx_buf[idx];
1472                 if ((buf->rb_desc->h_ctrl & htole16(DESC_CTRL_HOSTOWN)) &&
1473                     (buf->rb_desc->h_status & htole32(DESC_STATUS_FULL))) {
1474                         ready = 1;
1475                         break;
1476                 }
1477                 idx = (idx + 1) % ACX_RX_DESC_CNT;
1478         } while (idx != bd->rx_scan_start);
1479
1480         if (!ready)
1481                 return;
1482
1483         /*
1484          * NOTE: don't mess up `idx' here, it will
1485          * be used in the following code
1486          */
1487
1488         do {
1489                 struct acx_rxbuf_hdr *head;
1490                 struct acx_rxbuf *buf;
1491                 struct ieee80211_frame_min *wh;
1492                 struct mbuf *m;
1493                 uint32_t desc_status;
1494                 uint16_t desc_ctrl;
1495                 int len, error, rssi, is_priv;
1496
1497                 buf = &bd->rx_buf[idx];
1498
1499                 desc_ctrl = le16toh(buf->rb_desc->h_ctrl);
1500                 desc_status = le32toh(buf->rb_desc->h_status);
1501                 if (!(desc_ctrl & DESC_CTRL_HOSTOWN) ||
1502                     !(desc_status & DESC_STATUS_FULL))
1503                         break;
1504
1505                 bus_dmamap_sync(bd->mbuf_dma_tag, buf->rb_mbuf_dmamap,
1506                                 BUS_DMASYNC_POSTREAD);
1507
1508                 m = buf->rb_mbuf;
1509
1510                 error = acx_newbuf(sc, buf, 0);
1511                 if (error) {
1512                         ifp->if_ierrors++;
1513                         goto next;
1514                 }
1515
1516                 head = mtod(m, struct acx_rxbuf_hdr *);
1517                 len = le16toh(head->rbh_len) & ACX_RXBUF_LEN_MASK;
1518                 rssi = acx_get_rssi(sc, head->rbh_level);
1519
1520                 m_adj(m, sizeof(struct acx_rxbuf_hdr) + sc->chip_rxbuf_exhdr);
1521                 m->m_len = m->m_pkthdr.len = len;
1522                 m->m_pkthdr.rcvif = &ic->ic_if;
1523
1524                 wh = mtod(m, struct ieee80211_frame_min *);
1525                 is_priv = (wh->i_fc[1] & IEEE80211_FC1_WEP);
1526
1527                 if (sc->sc_drvbpf != NULL) {
1528                         sc->sc_rx_th.wr_tsf = htole32(head->rbh_time);
1529
1530                         sc->sc_rx_th.wr_flags = 0;
1531                         if (is_priv) {
1532                                 sc->sc_rx_th.wr_flags |=
1533                                         IEEE80211_RADIOTAP_F_WEP;
1534                         }
1535                         if (head->rbh_bbp_stat & ACX_RXBUF_STAT_SHPRE) {
1536                                 sc->sc_rx_th.wr_flags |=
1537                                         IEEE80211_RADIOTAP_F_SHORTPRE;
1538                         }
1539
1540                         if (sc->chip_phymode == IEEE80211_MODE_11G) {
1541                                 sc->sc_rx_th.wr_rate =
1542                                     ieee80211_plcp2rate(head->rbh_plcp,
1543                                     head->rbh_bbp_stat & ACX_RXBUF_STAT_OFDM);
1544                         } else {
1545                                 sc->sc_rx_th.wr_rate =
1546                                     ieee80211_plcp2rate(head->rbh_plcp, 0);
1547                         }
1548
1549                         sc->sc_rx_th.wr_antsignal = rssi;
1550
1551                         if (head->rbh_bbp_stat & ACX_RXBUF_STAT_ANT1)
1552                                 sc->sc_rx_th.wr_antenna = 1;
1553                         else
1554                                 sc->sc_rx_th.wr_antenna = 0;
1555
1556                         bpf_ptap(sc->sc_drvbpf, m, &sc->sc_rx_th,
1557                                  sc->sc_rx_th_len);
1558                 }
1559
1560                 if (len >= sizeof(struct ieee80211_frame_min) &&
1561                     len < MCLBYTES) {
1562                         struct ieee80211_node *ni;
1563
1564                         if (is_priv && sc->chip_hw_crypt) {
1565                                 /* Short circuit software WEP */
1566                                 wh->i_fc[1] &= ~IEEE80211_FC1_WEP;
1567
1568                                 /* Do chip specific RX buffer processing */
1569                                 if (sc->chip_proc_wep_rxbuf != NULL) {
1570                                         sc->chip_proc_wep_rxbuf(sc, m, &len);
1571                                         wh = mtod(m,
1572                                              struct ieee80211_frame_min *);
1573                                 }
1574                         }
1575                         m->m_len = m->m_pkthdr.len = len;
1576
1577                         ni = ieee80211_find_rxnode(ic, wh);
1578                         ieee80211_input(ic, m, ni, rssi,
1579                                         le32toh(head->rbh_time));
1580                         ieee80211_free_node(ni);
1581
1582                         ifp->if_ipackets++;
1583                 } else {
1584                         if (len < sizeof(struct ieee80211_frame_min)) {
1585                                 if (ic->ic_rawbpf != NULL &&
1586                                     len >= sizeof(struct ieee80211_frame_ack))
1587                                         bpf_mtap(ic->ic_rawbpf, m);
1588
1589                                 if (ic->ic_opmode != IEEE80211_M_MONITOR)
1590                                         ic->ic_stats.is_rx_tooshort++;
1591                         }
1592                         m_freem(m);
1593                 }
1594 next:
1595                 buf->rb_desc->h_ctrl = htole16(desc_ctrl & ~DESC_CTRL_HOSTOWN);
1596                 buf->rb_desc->h_status = 0;
1597                 bus_dmamap_sync(rd->rx_ring_dma_tag, rd->rx_ring_dmamap,
1598                                 BUS_DMASYNC_PREWRITE);
1599
1600                 idx = (idx + 1) % ACX_RX_DESC_CNT;
1601         } while (idx != bd->rx_scan_start);
1602
1603         /*
1604          * Record the position so that next
1605          * time we can start from it
1606          */
1607         bd->rx_scan_start = idx;
1608 }
1609
1610 static int
1611 acx_reset(struct acx_softc *sc)
1612 {
1613         uint16_t reg;
1614
1615         /* Halt ECPU */
1616         CSR_SETB_2(sc, ACXREG_ECPU_CTRL, ACXRV_ECPU_HALT);
1617
1618         /* Software reset */
1619         reg = CSR_READ_2(sc, ACXREG_SOFT_RESET);
1620         CSR_WRITE_2(sc, ACXREG_SOFT_RESET, reg | ACXRV_SOFT_RESET);
1621         DELAY(100);
1622         CSR_WRITE_2(sc, ACXREG_SOFT_RESET, reg);
1623
1624         /* Initialize EEPROM */
1625         CSR_SETB_2(sc, ACXREG_EEPROM_INIT, ACXRV_EEPROM_INIT);
1626         DELAY(50000);
1627
1628         /* Test whether ECPU is stopped */
1629         reg = CSR_READ_2(sc, ACXREG_ECPU_CTRL);
1630         if (!(reg & ACXRV_ECPU_HALT)) {
1631                 if_printf(&sc->sc_ic.ic_if, "can't halt ECPU\n");
1632                 return ENXIO;
1633         }
1634         return 0;
1635 }
1636
1637 static int
1638 acx_read_eeprom(struct acx_softc *sc, uint32_t offset, uint8_t *val)
1639 {
1640         int i;
1641
1642         CSR_WRITE_4(sc, ACXREG_EEPROM_CONF, 0);
1643         CSR_WRITE_4(sc, ACXREG_EEPROM_ADDR, offset);
1644         CSR_WRITE_4(sc, ACXREG_EEPROM_CTRL, ACXRV_EEPROM_READ);
1645
1646 #define EE_READ_RETRY_MAX       100
1647         for (i = 0; i < EE_READ_RETRY_MAX; ++i) {
1648                 if (CSR_READ_2(sc, ACXREG_EEPROM_CTRL) == 0)
1649                         break;
1650                 DELAY(10000);
1651         }
1652         if (i == EE_READ_RETRY_MAX) {
1653                 if_printf(&sc->sc_ic.ic_if, "can't read EEPROM offset %x "
1654                           "(timeout)\n", offset);
1655                 return ETIMEDOUT;
1656         }
1657 #undef EE_READ_RETRY_MAX
1658
1659         *val = CSR_READ_1(sc, ACXREG_EEPROM_DATA);
1660         return 0;
1661 }
1662
1663 static int
1664 acx_read_phyreg(struct acx_softc *sc, uint32_t reg, uint8_t *val)
1665 {
1666         int i;
1667
1668         CSR_WRITE_4(sc, ACXREG_PHY_ADDR, reg);
1669         CSR_WRITE_4(sc, ACXREG_PHY_CTRL, ACXRV_PHY_READ);
1670
1671 #define PHY_READ_RETRY_MAX      100
1672         for (i = 0; i < PHY_READ_RETRY_MAX; ++i) {
1673                 if (CSR_READ_4(sc, ACXREG_PHY_CTRL) == 0)
1674                         break;
1675                 DELAY(10000);
1676         }
1677         if (i == PHY_READ_RETRY_MAX) {
1678                 if_printf(&sc->sc_ic.ic_if, "can't read phy reg %x (timeout)\n",
1679                           reg);
1680                 return ETIMEDOUT;
1681         }
1682 #undef PHY_READ_RETRY_MAX
1683
1684         *val = CSR_READ_1(sc, ACXREG_PHY_DATA);
1685         return 0;
1686 }
1687
1688 void
1689 acx_write_phyreg(struct acx_softc *sc, uint32_t reg, uint8_t val)
1690 {
1691         CSR_WRITE_4(sc, ACXREG_PHY_DATA, val);
1692         CSR_WRITE_4(sc, ACXREG_PHY_ADDR, reg);
1693         CSR_WRITE_4(sc, ACXREG_PHY_CTRL, ACXRV_PHY_WRITE);
1694 }
1695
1696 static int
1697 acx_alloc_firmware(struct acx_softc *sc)
1698 {
1699         struct acx_firmware *fw = &sc->sc_firmware;
1700         struct ifnet *ifp = &sc->sc_ic.ic_if;
1701         struct fw_image *img;
1702         char filename[64];
1703         int error = 0;
1704
1705         /*
1706          * NB: serializer need to be released before loading firmware
1707          *     image to avoid possible dead lock
1708          */
1709         ASSERT_SERIALIZED(ifp->if_serializer);
1710
1711         if (fw->base_fw_image == NULL) {
1712                 if (fw->combined_radio_fw) {
1713                         ksnprintf(filename, sizeof(filename),
1714                                   ACX_BASE_RADIO_FW_PATH,
1715                                   fw->fwdir, sc->sc_radio_type);
1716                 } else {
1717                         ksnprintf(filename, sizeof(filename),
1718                                   ACX_BASE_FW_PATH, fw->fwdir);
1719                 }
1720
1721                 lwkt_serialize_exit(ifp->if_serializer);
1722                 img = firmware_image_load(filename, NULL);
1723                 lwkt_serialize_enter(ifp->if_serializer);
1724
1725                 fw->base_fw_image = img;
1726                 if (fw->base_fw_image == NULL) {
1727                         if_printf(ifp, "load %s base fw failed\n", filename);
1728                         error = EIO;
1729                         goto back;
1730                 }
1731
1732                 error = acx_setup_firmware(sc, fw->base_fw_image,
1733                                            &fw->base_fw, &fw->base_fw_len);
1734                 if (error)
1735                         goto back;
1736         }
1737
1738         if (!fw->combined_radio_fw && fw->radio_fw_image == NULL) {
1739                 ksnprintf(filename, sizeof(filename), ACX_RADIO_FW_PATH,
1740                           fw->fwdir, sc->sc_radio_type);
1741
1742                 lwkt_serialize_exit(ifp->if_serializer);
1743                 img = firmware_image_load(filename, NULL);
1744                 lwkt_serialize_enter(ifp->if_serializer);
1745
1746                 fw->radio_fw_image = img;
1747                 if (fw->radio_fw_image == NULL) {
1748                         if_printf(ifp, "load %s radio fw failed\n", filename);
1749                         error = EIO;
1750                         goto back;
1751                 }
1752
1753                 error = acx_setup_firmware(sc, fw->radio_fw_image,
1754                                            &fw->radio_fw, &fw->radio_fw_len);
1755         }
1756 back:
1757         if (error)
1758                 acx_free_firmware(sc);
1759         return error;
1760 }
1761
1762 static int
1763 acx_setup_firmware(struct acx_softc *sc, struct fw_image *img,
1764                    const uint8_t **ptr, int *len)
1765 {
1766         const struct acx_firmware_hdr *hdr;
1767         const uint8_t *p;
1768         uint32_t cksum;
1769         int i;
1770
1771         *ptr = NULL;
1772         *len = 0;
1773
1774         /*
1775          * Make sure that the firmware image contains more than just a header
1776          */
1777         if (img->fw_imglen <= sizeof(*hdr)) {
1778                 if_printf(&sc->sc_ic.ic_if, "%s is invalid image, "
1779                           "size %u (too small)\n",
1780                           img->fw_name, img->fw_imglen);
1781                 return EINVAL;
1782         }
1783         hdr = (const struct acx_firmware_hdr *)img->fw_image;
1784
1785         /*
1786          * Verify length
1787          */
1788         if (hdr->fwh_len != img->fw_imglen - sizeof(*hdr)) {
1789                 if_printf(&sc->sc_ic.ic_if, "%s is invalid image, "
1790                           "size in hdr %u and image size %u mismatches\n",
1791                           img->fw_name, hdr->fwh_len, img->fw_imglen);
1792                 return EINVAL;
1793         }
1794
1795         /*
1796          * Verify cksum
1797          */
1798         cksum = 0;
1799         for (i = 0, p = (const uint8_t *)&hdr->fwh_len;
1800              i < img->fw_imglen - sizeof(hdr->fwh_cksum); ++i, ++p)
1801                 cksum += *p;
1802         if (cksum != hdr->fwh_cksum) {
1803                 if_printf(&sc->sc_ic.ic_if, "%s is invalid image, "
1804                           "checksum mismatch\n", img->fw_name);
1805                 return EINVAL;
1806         }
1807
1808         *ptr = ((const uint8_t *)img->fw_image + sizeof(*hdr));
1809         *len = img->fw_imglen - sizeof(*hdr);
1810         return 0;
1811 }
1812
1813 static void
1814 acx_free_firmware(struct acx_softc *sc)
1815 {
1816         struct acx_firmware *fw = &sc->sc_firmware;
1817
1818         if (fw->base_fw_image != NULL) {
1819                 firmware_image_unload(fw->base_fw_image);
1820                 fw->base_fw_image = NULL;
1821                 fw->base_fw = NULL;
1822                 fw->base_fw_len = 0;
1823         }
1824         if (fw->radio_fw_image != NULL) {
1825                 firmware_image_unload(fw->radio_fw_image);
1826                 fw->radio_fw_image = NULL;
1827                 fw->radio_fw = NULL;
1828                 fw->radio_fw_len = 0;
1829         }
1830 }
1831
1832 static int
1833 acx_load_base_firmware(struct acx_softc *sc, const uint8_t *base_fw,
1834                        uint32_t base_fw_len)
1835 {
1836         int i, error;
1837
1838         /* Load base firmware */
1839         error = acx_load_firmware(sc, 0, base_fw, base_fw_len);
1840         if (error) {
1841                 if_printf(&sc->sc_ic.ic_if, "can't load base firmware\n");
1842                 return error;
1843         }
1844         DPRINTF((&sc->sc_ic.ic_if, "base firmware loaded\n"));
1845
1846         /* Start ECPU */
1847         CSR_WRITE_2(sc, ACXREG_ECPU_CTRL, ACXRV_ECPU_START);
1848
1849         /* Wait for ECPU to be up */
1850         for (i = 0; i < 500; ++i) {
1851                 uint16_t reg;
1852
1853                 reg = CSR_READ_2(sc, ACXREG_INTR_STATUS);
1854                 if (reg & ACXRV_INTR_FCS_THRESH) {
1855                         CSR_WRITE_2(sc, ACXREG_INTR_ACK, ACXRV_INTR_FCS_THRESH);
1856                         return 0;
1857                 }
1858                 DELAY(10000);
1859         }
1860
1861         if_printf(&sc->sc_ic.ic_if, "can't initialize ECPU (timeout)\n");
1862         return ENXIO;
1863 }
1864
1865 static int
1866 acx_load_radio_firmware(struct acx_softc *sc, const uint8_t *radio_fw,
1867                         uint32_t radio_fw_len)
1868 {
1869         struct acx_conf_mmap mem_map;
1870         uint32_t radio_fw_ofs;
1871         int error;
1872
1873         /*
1874          * Get the position, where base firmware is loaded, so that
1875          * radio firmware can be loaded after it.
1876          */
1877         if (acx_get_mmap_conf(sc, &mem_map) != 0)
1878                 return ENXIO;
1879         radio_fw_ofs = le32toh(mem_map.code_end);
1880
1881         /* Put ECPU into sleeping state, before loading radio firmware */
1882         if (acx_sleep(sc) != 0)
1883                 return ENXIO;
1884
1885         /* Load radio firmware */
1886         error = acx_load_firmware(sc, radio_fw_ofs, radio_fw, radio_fw_len);
1887         if (error) {
1888                 if_printf(&sc->sc_ic.ic_if, "can't load radio firmware\n");
1889                 return ENXIO;
1890         }
1891         DPRINTF((&sc->sc_ic.ic_if, "radio firmware loaded\n"));
1892
1893         /* Wake up sleeping ECPU, after radio firmware is loaded */
1894         if (acx_wakeup(sc) != 0)
1895                 return ENXIO;
1896
1897         /* Initialize radio */
1898         if (acx_init_radio(sc, radio_fw_ofs, radio_fw_len) != 0)
1899                 return ENXIO;
1900
1901         /* Verify radio firmware's loading position */
1902         if (acx_get_mmap_conf(sc, &mem_map) != 0)
1903                 return ENXIO;
1904         if (le32toh(mem_map.code_end) != radio_fw_ofs + radio_fw_len) {
1905                 if_printf(&sc->sc_ic.ic_if, "loaded radio firmware position "
1906                           "mismatch\n");
1907                 return ENXIO;
1908         }
1909
1910         DPRINTF((&sc->sc_ic.ic_if, "radio firmware initialized\n"));
1911         return 0;
1912 }
1913
1914 static int
1915 acx_load_firmware(struct acx_softc *sc, uint32_t offset, const uint8_t *data,
1916                   int data_len)
1917 {
1918         const uint32_t *fw;
1919         int i, fw_len;
1920
1921         fw = (const uint32_t *)data;
1922         fw_len = data_len / sizeof(uint32_t);
1923
1924         /*
1925          * LOADFW_AUTO_INC only works with some older firmware:
1926          * 1) acx100's firmware
1927          * 2) acx111's firmware whose rev is 0x00010011
1928          */
1929
1930         /* Load firmware */
1931         CSR_WRITE_4(sc, ACXREG_FWMEM_START, ACXRV_FWMEM_START_OP);
1932 #ifndef LOADFW_AUTO_INC
1933         CSR_WRITE_4(sc, ACXREG_FWMEM_CTRL, 0);
1934 #else
1935         CSR_WRITE_4(sc, ACXREG_FWMEM_CTRL, ACXRV_FWMEM_ADDR_AUTOINC);
1936         CSR_WRITE_4(sc, ACXREG_FWMEM_ADDR, offset);
1937 #endif
1938
1939         for (i = 0; i < fw_len; ++i) {
1940 #ifndef LOADFW_AUTO_INC
1941                 CSR_WRITE_4(sc, ACXREG_FWMEM_ADDR, offset + (i * 4));
1942 #endif
1943                 CSR_WRITE_4(sc, ACXREG_FWMEM_DATA, be32toh(fw[i]));
1944         }
1945
1946         /* Verify firmware */
1947         CSR_WRITE_4(sc, ACXREG_FWMEM_START, ACXRV_FWMEM_START_OP);
1948 #ifndef LOADFW_AUTO_INC
1949         CSR_WRITE_4(sc, ACXREG_FWMEM_CTRL, 0);
1950 #else
1951         CSR_WRITE_4(sc, ACXREG_FWMEM_CTRL, ACXRV_FWMEM_ADDR_AUTOINC);
1952         CSR_WRITE_4(sc, ACXREG_FWMEM_ADDR, offset);
1953 #endif
1954
1955         for (i = 0; i < fw_len; ++i) {
1956                 uint32_t val;
1957
1958 #ifndef LOADFW_AUTO_INC
1959                 CSR_WRITE_4(sc, ACXREG_FWMEM_ADDR, offset + (i * 4));
1960 #endif
1961                 val = CSR_READ_4(sc, ACXREG_FWMEM_DATA);
1962                 if (be32toh(fw[i]) != val) {
1963                         if_printf(&sc->sc_ic.ic_if, "fireware mismatch "
1964                                   "fw %08x  loaded %08x\n", fw[i], val);
1965                         return ENXIO;
1966                 }
1967         }
1968         return 0;
1969 }
1970
1971 static int
1972 acx_newstate(struct ieee80211com *ic, enum ieee80211_state nstate, int arg)
1973 {
1974         struct ifnet *ifp = &ic->ic_if;
1975         struct acx_softc *sc = ifp->if_softc;
1976         struct ieee80211_node *ni = NULL;
1977         struct ieee80211_channel *c = NULL;
1978         int error = 1, mode = 0;
1979
1980         ASSERT_SERIALIZED(ifp->if_serializer);
1981
1982         ieee80211_ratectl_newstate(ic, nstate);
1983         callout_stop(&sc->sc_scan_timer);
1984         callout_stop(&sc->sc_calibrate_timer);
1985
1986         switch (nstate) {
1987         case IEEE80211_S_SCAN:
1988                 acx_set_chan(sc, ic->ic_curchan);
1989                 callout_reset(&sc->sc_scan_timer,
1990                               (hz * sc->sc_scan_dwell) / 1000,
1991                               acx_next_scan, sc);
1992                 break;
1993         case IEEE80211_S_AUTH:
1994                 if (ic->ic_opmode == IEEE80211_M_STA) {
1995                         ni = ic->ic_bss;
1996                         c = ni->ni_chan;
1997                         mode = ACX_MODE_STA;
1998                 }
1999                 break;
2000         case IEEE80211_S_RUN:
2001                 if (ic->ic_opmode == IEEE80211_M_IBSS ||
2002                     ic->ic_opmode == IEEE80211_M_HOSTAP) {
2003                         ni = ic->ic_bss;
2004                         c = ni->ni_chan;
2005                         if (ic->ic_opmode == IEEE80211_M_IBSS)
2006                                 mode = ACX_MODE_ADHOC;
2007                         else
2008                                 mode = ACX_MODE_AP;
2009
2010                         if (acx_set_beacon_tmplt(sc, ni) != 0) {
2011                                 if_printf(ifp, "set bescon template failed\n");
2012                                 goto back;
2013                         }
2014                         if (acx_set_probe_resp_tmplt(sc, ni) != 0) {
2015                                 if_printf(ifp, "set probe response template"
2016                                           " failed\n");
2017                                 goto back;
2018                         }
2019                 } else if (ic->ic_opmode == IEEE80211_M_MONITOR) {
2020                         ni = ic->ic_bss;
2021                         c = ic->ic_curchan;
2022                         mode = ACX_MODE_STA;
2023                 }
2024                 break;
2025         default:
2026                 break;
2027         }
2028
2029         if (ni != NULL) {
2030                 KKASSERT(c != NULL);
2031
2032                 if (acx_set_chan(sc, c) != 0)
2033                         goto back;
2034
2035                 if (acx_join_bss(sc, mode, ni, c) != 0) {
2036                         if_printf(ifp, "join BSS failed\n");
2037                         goto back;
2038                 }
2039         }
2040
2041         if (nstate == IEEE80211_S_RUN) {
2042                 int interval = sc->sc_calib_intvl;
2043
2044                 if (sc->chip_calibrate != NULL) {
2045                         error = sc->chip_calibrate(sc);
2046                         if (error) {
2047                                 /*
2048                                  * Restart calibration some time later
2049                                  */
2050                                 interval = 10;
2051                         }
2052                         callout_reset(&sc->sc_calibrate_timer,
2053                                       hz * interval, acx_calibrate, sc);
2054                 }
2055         }
2056         error = 0;
2057 back:
2058         if (error) {
2059                 /* XXX */
2060                 nstate = IEEE80211_S_INIT;
2061                 arg = -1;
2062         }
2063         return sc->sc_newstate(ic, nstate, arg);
2064 }
2065
2066 int
2067 acx_init_tmplt_ordered(struct acx_softc *sc)
2068 {
2069 #define INIT_TMPLT(name)                        \
2070 do {                                            \
2071         if (acx_init_##name##_tmplt(sc) != 0)   \
2072                 return 1;                       \
2073 } while (0)
2074
2075         /*
2076          * NOTE:
2077          * Order of templates initialization:
2078          * 1) Probe request
2079          * 2) NULL data
2080          * 3) Beacon
2081          * 4) TIM
2082          * 5) Probe response
2083          * Above order is critical to get a correct memory map.
2084          */
2085         INIT_TMPLT(probe_req);
2086         INIT_TMPLT(null_data);
2087         INIT_TMPLT(beacon);
2088         INIT_TMPLT(tim);
2089         INIT_TMPLT(probe_resp);
2090
2091 #undef INIT_TMPLT
2092         return 0;
2093 }
2094
2095 static void
2096 acx_ring_dma_addr(void *arg, bus_dma_segment_t *seg, int nseg, int error)
2097 {
2098         *((uint32_t *)arg) = seg->ds_addr;
2099 }
2100
2101 static int
2102 acx_dma_alloc(struct acx_softc *sc)
2103 {
2104         struct acx_ring_data *rd = &sc->sc_ring_data;
2105         struct acx_buf_data *bd = &sc->sc_buf_data;
2106         int i, error;
2107
2108         /* Allocate DMA stuffs for RX descriptors  */
2109         error = bus_dma_tag_create(NULL, PAGE_SIZE, 0,
2110                                    BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR,
2111                                    NULL, NULL,
2112                                    ACX_RX_RING_SIZE, 1, ACX_RX_RING_SIZE,
2113                                    0, &rd->rx_ring_dma_tag);
2114         if (error) {
2115                 if_printf(&sc->sc_ic.ic_if, "can't create rx ring dma tag\n");
2116                 return error;
2117         }
2118
2119         error = bus_dmamem_alloc(rd->rx_ring_dma_tag, (void **)&rd->rx_ring,
2120                                  BUS_DMA_WAITOK | BUS_DMA_ZERO,
2121                                  &rd->rx_ring_dmamap);
2122         if (error) {
2123                 if_printf(&sc->sc_ic.ic_if,
2124                           "can't allocate rx ring dma memory\n");
2125                 bus_dma_tag_destroy(rd->rx_ring_dma_tag);
2126                 rd->rx_ring_dma_tag = NULL;
2127                 return error;
2128         }
2129
2130         error = bus_dmamap_load(rd->rx_ring_dma_tag, rd->rx_ring_dmamap,
2131                                 rd->rx_ring, ACX_RX_RING_SIZE,
2132                                 acx_ring_dma_addr, &rd->rx_ring_paddr,
2133                                 BUS_DMA_WAITOK);
2134         if (error) {
2135                 if_printf(&sc->sc_ic.ic_if, "can't get rx ring dma address\n");
2136                 bus_dmamem_free(rd->rx_ring_dma_tag, rd->rx_ring,
2137                                 rd->rx_ring_dmamap);
2138                 bus_dma_tag_destroy(rd->rx_ring_dma_tag);
2139                 rd->rx_ring_dma_tag = NULL;
2140                 return error;
2141         }
2142
2143         /* Allocate DMA stuffs for TX descriptors */
2144         error = bus_dma_tag_create(NULL, PAGE_SIZE, 0,
2145                                    BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR,
2146                                    NULL, NULL,
2147                                    ACX_TX_RING_SIZE, 1, ACX_TX_RING_SIZE,
2148                                    0, &rd->tx_ring_dma_tag);
2149         if (error) {
2150                 if_printf(&sc->sc_ic.ic_if, "can't create tx ring dma tag\n");
2151                 return error;
2152         }
2153
2154         error = bus_dmamem_alloc(rd->tx_ring_dma_tag, (void **)&rd->tx_ring,
2155                                  BUS_DMA_WAITOK | BUS_DMA_ZERO,
2156                                  &rd->tx_ring_dmamap);
2157         if (error) {
2158                 if_printf(&sc->sc_ic.ic_if,
2159                           "can't allocate tx ring dma memory\n");
2160                 bus_dma_tag_destroy(rd->tx_ring_dma_tag);
2161                 rd->tx_ring_dma_tag = NULL;
2162                 return error;
2163         }
2164
2165         error = bus_dmamap_load(rd->tx_ring_dma_tag, rd->tx_ring_dmamap,
2166                                 rd->tx_ring, ACX_TX_RING_SIZE,
2167                                 acx_ring_dma_addr, &rd->tx_ring_paddr,
2168                                 BUS_DMA_WAITOK);
2169         if (error) {
2170                 if_printf(&sc->sc_ic.ic_if, "can't get tx ring dma address\n");
2171                 bus_dmamem_free(rd->tx_ring_dma_tag, rd->tx_ring,
2172                                 rd->tx_ring_dmamap);
2173                 bus_dma_tag_destroy(rd->tx_ring_dma_tag);
2174                 rd->tx_ring_dma_tag = NULL;
2175                 return error;
2176         }
2177
2178         /* Create DMA tag for RX/TX mbuf map */
2179         error = bus_dma_tag_create(NULL, 1, 0,
2180                                    BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR,
2181                                    NULL, NULL,
2182                                    MCLBYTES, 1, MCLBYTES,
2183                                    0, &bd->mbuf_dma_tag);
2184         if (error) {
2185                 if_printf(&sc->sc_ic.ic_if, "can't create mbuf dma tag\n");
2186                 return error;
2187         }
2188
2189         /* Create a spare RX DMA map */
2190         error = bus_dmamap_create(bd->mbuf_dma_tag, 0, &bd->mbuf_tmp_dmamap);
2191         if (error) {
2192                 if_printf(&sc->sc_ic.ic_if, "can't create tmp mbuf dma map\n");
2193                 bus_dma_tag_destroy(bd->mbuf_dma_tag);
2194                 bd->mbuf_dma_tag = NULL;
2195                 return error;
2196         }
2197
2198         /* Create DMA map for RX mbufs */
2199         for (i = 0; i < ACX_RX_DESC_CNT; ++i) {
2200                 error = bus_dmamap_create(bd->mbuf_dma_tag, 0,
2201                                           &bd->rx_buf[i].rb_mbuf_dmamap);
2202                 if (error) {
2203                         if_printf(&sc->sc_ic.ic_if, "can't create rx mbuf "
2204                                   "dma map (%d)\n", i);
2205                         return error;
2206                 }
2207                 bd->rx_buf[i].rb_desc = &rd->rx_ring[i];
2208         }
2209
2210         /* Create DMA map for TX mbufs */
2211         for (i = 0; i < ACX_TX_DESC_CNT; ++i) {
2212                 error = bus_dmamap_create(bd->mbuf_dma_tag, 0,
2213                                           &bd->tx_buf[i].tb_mbuf_dmamap);
2214                 if (error) {
2215                         if_printf(&sc->sc_ic.ic_if, "can't create tx mbuf "
2216                                   "dma map (%d)\n", i);
2217                         return error;
2218                 }
2219                 bd->tx_buf[i].tb_desc1 = &rd->tx_ring[i * 2];
2220                 bd->tx_buf[i].tb_desc2 = &rd->tx_ring[(i * 2) + 1];
2221         }
2222
2223         return 0;
2224 }
2225
2226 static void
2227 acx_dma_free(struct acx_softc *sc)
2228 {
2229         struct acx_ring_data *rd = &sc->sc_ring_data;
2230         struct acx_buf_data *bd = &sc->sc_buf_data;
2231         int i;
2232
2233         if (rd->rx_ring_dma_tag != NULL) {
2234                 bus_dmamap_unload(rd->rx_ring_dma_tag, rd->rx_ring_dmamap);
2235                 bus_dmamem_free(rd->rx_ring_dma_tag, rd->rx_ring,
2236                                 rd->rx_ring_dmamap);
2237                 bus_dma_tag_destroy(rd->rx_ring_dma_tag);
2238         }
2239
2240         if (rd->tx_ring_dma_tag != NULL) {
2241                 bus_dmamap_unload(rd->tx_ring_dma_tag, rd->tx_ring_dmamap);
2242                 bus_dmamem_free(rd->tx_ring_dma_tag, rd->tx_ring,
2243                                 rd->tx_ring_dmamap);
2244                 bus_dma_tag_destroy(rd->tx_ring_dma_tag);
2245         }
2246
2247         for (i = 0; i < ACX_RX_DESC_CNT; ++i) {
2248                 if (bd->rx_buf[i].rb_desc != NULL) {
2249                         if (bd->rx_buf[i].rb_mbuf != NULL) {
2250                                 bus_dmamap_unload(bd->mbuf_dma_tag,
2251                                                   bd->rx_buf[i].rb_mbuf_dmamap);
2252                                 m_freem(bd->rx_buf[i].rb_mbuf);
2253                         }
2254                         bus_dmamap_destroy(bd->mbuf_dma_tag,
2255                                            bd->rx_buf[i].rb_mbuf_dmamap);
2256                 }
2257         }
2258
2259         for (i = 0; i < ACX_TX_DESC_CNT; ++i) {
2260                 if (bd->tx_buf[i].tb_desc1 != NULL) {
2261                         if (bd->tx_buf[i].tb_mbuf != NULL) {
2262                                 bus_dmamap_unload(bd->mbuf_dma_tag,
2263                                                   bd->tx_buf[i].tb_mbuf_dmamap);
2264                                 m_freem(bd->tx_buf[i].tb_mbuf);
2265                         }
2266                         bus_dmamap_destroy(bd->mbuf_dma_tag,
2267                                            bd->tx_buf[i].tb_mbuf_dmamap);
2268                 }
2269         }
2270
2271         if (bd->mbuf_dma_tag != NULL) {
2272                 bus_dmamap_destroy(bd->mbuf_dma_tag, bd->mbuf_tmp_dmamap);
2273                 bus_dma_tag_destroy(bd->mbuf_dma_tag);
2274         }
2275 }
2276
2277 static int
2278 acx_init_tx_ring(struct acx_softc *sc)
2279 {
2280         struct acx_ring_data *rd;
2281         struct acx_buf_data *bd;
2282         uint32_t paddr;
2283         int i;
2284
2285         rd = &sc->sc_ring_data;
2286         paddr = rd->tx_ring_paddr;
2287         for (i = 0; i < (ACX_TX_DESC_CNT * 2) - 1; ++i) {
2288                 paddr += sizeof(struct acx_host_desc);
2289
2290                 rd->tx_ring[i].h_ctrl = htole16(DESC_CTRL_HOSTOWN);
2291
2292                 if (i == (ACX_TX_DESC_CNT * 2) - 1)
2293                         rd->tx_ring[i].h_next_desc = htole32(rd->tx_ring_paddr);
2294                 else
2295                         rd->tx_ring[i].h_next_desc = htole32(paddr);
2296         }
2297
2298         bus_dmamap_sync(rd->tx_ring_dma_tag, rd->tx_ring_dmamap,
2299                         BUS_DMASYNC_PREWRITE);
2300
2301         bd = &sc->sc_buf_data;
2302         bd->tx_free_start = 0;
2303         bd->tx_used_start = 0;
2304         bd->tx_used_count = 0;
2305
2306         return 0;
2307 }
2308
2309 static int
2310 acx_init_rx_ring(struct acx_softc *sc)
2311 {
2312         struct acx_ring_data *rd;
2313         struct acx_buf_data *bd;
2314         uint32_t paddr;
2315         int i;
2316
2317         bd = &sc->sc_buf_data;
2318         rd = &sc->sc_ring_data;
2319         paddr = rd->rx_ring_paddr;
2320
2321         for (i = 0; i < ACX_RX_DESC_CNT; ++i) {
2322                 int error;
2323
2324                 paddr += sizeof(struct acx_host_desc);
2325
2326                 error = acx_newbuf(sc, &bd->rx_buf[i], 1);
2327                 if (error)
2328                         return error;
2329
2330                 if (i == ACX_RX_DESC_CNT - 1)
2331                         rd->rx_ring[i].h_next_desc = htole32(rd->rx_ring_paddr);
2332                 else
2333                         rd->rx_ring[i].h_next_desc = htole32(paddr);
2334         }
2335
2336         bus_dmamap_sync(rd->rx_ring_dma_tag, rd->rx_ring_dmamap,
2337                         BUS_DMASYNC_PREWRITE);
2338
2339         bd->rx_scan_start = 0;
2340         return 0;
2341 }
2342
2343 static void
2344 acx_buf_dma_addr(void *arg, bus_dma_segment_t *seg, int nseg,
2345                  bus_size_t mapsz, int error)
2346 {
2347         if (error)
2348                 return;
2349
2350         /* XXX */
2351         KASSERT(nseg == 1, ("too many RX dma segments\n"));
2352         *((uint32_t *)arg) = seg->ds_addr;
2353 }
2354
2355 static int
2356 acx_newbuf(struct acx_softc *sc, struct acx_rxbuf *rb, int wait)
2357 {
2358         struct acx_buf_data *bd;
2359         struct mbuf *m;
2360         bus_dmamap_t map;
2361         uint32_t paddr;
2362         int error;
2363
2364         bd = &sc->sc_buf_data;
2365
2366         m = m_getcl(wait ? MB_WAIT : MB_DONTWAIT, MT_DATA, M_PKTHDR);
2367         if (m == NULL)
2368                 return ENOBUFS;
2369
2370         m->m_len = m->m_pkthdr.len = MCLBYTES;
2371
2372         error = bus_dmamap_load_mbuf(bd->mbuf_dma_tag, bd->mbuf_tmp_dmamap,
2373                                      m, acx_buf_dma_addr, &paddr,
2374                                      wait ? BUS_DMA_WAITOK : BUS_DMA_NOWAIT);
2375         if (error) {
2376                 m_freem(m);
2377                 if_printf(&sc->sc_ic.ic_if, "can't map rx mbuf %d\n", error);
2378                 return error;
2379         }
2380
2381         /* Unload originally mapped mbuf */
2382         bus_dmamap_unload(bd->mbuf_dma_tag, rb->rb_mbuf_dmamap);
2383
2384         /* Swap this dmamap with tmp dmamap */
2385         map = rb->rb_mbuf_dmamap;
2386         rb->rb_mbuf_dmamap = bd->mbuf_tmp_dmamap;
2387         bd->mbuf_tmp_dmamap = map;
2388
2389         rb->rb_mbuf = m;
2390         rb->rb_desc->h_data_paddr = htole32(paddr);
2391         rb->rb_desc->h_data_len = htole16(m->m_len);
2392
2393         bus_dmamap_sync(bd->mbuf_dma_tag, rb->rb_mbuf_dmamap,
2394                         BUS_DMASYNC_PREREAD);
2395         return 0;
2396 }
2397
2398 static int
2399 acx_encap(struct acx_softc *sc, struct acx_txbuf *txbuf, struct mbuf *m,
2400           struct ieee80211_node *ni)
2401 {
2402         struct acx_buf_data *bd = &sc->sc_buf_data;
2403         struct acx_ring_data *rd = &sc->sc_ring_data;
2404         uint32_t paddr;
2405         uint8_t ctrl, rate;
2406         int error;
2407
2408         KASSERT(txbuf->tb_mbuf == NULL, ("free TX buf has mbuf installed\n"));
2409         error = 0;
2410
2411         if (m->m_pkthdr.len > MCLBYTES) {
2412                 if_printf(&sc->sc_ic.ic_if, "mbuf too big\n");
2413                 error = E2BIG;
2414                 goto back;
2415         } else if (m->m_pkthdr.len < ACX_FRAME_HDRLEN) {
2416                 if_printf(&sc->sc_ic.ic_if, "mbuf too small\n");
2417                 error = EINVAL;
2418                 goto back;
2419         }
2420
2421         error = bus_dmamap_load_mbuf(bd->mbuf_dma_tag, txbuf->tb_mbuf_dmamap,
2422                                      m, acx_buf_dma_addr, &paddr,
2423                                      BUS_DMA_NOWAIT);
2424         if (error && error != EFBIG) {
2425                 if_printf(&sc->sc_ic.ic_if, "can't map tx mbuf1 %d\n", error);
2426                 goto back;
2427         }
2428
2429         if (error) {    /* error == EFBIG */
2430                 struct mbuf *m_new;
2431
2432                 m_new = m_defrag(m, MB_DONTWAIT);
2433                 if (m_new == NULL) {
2434                         if_printf(&sc->sc_ic.ic_if, "can't defrag tx mbuf\n");
2435                         error = ENOBUFS;
2436                         goto back;
2437                 } else {
2438                         m = m_new;
2439                 }
2440
2441                 error = bus_dmamap_load_mbuf(bd->mbuf_dma_tag,
2442                                              txbuf->tb_mbuf_dmamap, m,
2443                                              acx_buf_dma_addr, &paddr,
2444                                              BUS_DMA_NOWAIT);
2445                 if (error) {
2446                         if_printf(&sc->sc_ic.ic_if, "can't map tx mbuf2 %d\n",
2447                                   error);
2448                         goto back;
2449                 }
2450         }
2451
2452         error = 0;
2453
2454         bus_dmamap_sync(bd->mbuf_dma_tag, txbuf->tb_mbuf_dmamap,
2455                         BUS_DMASYNC_PREWRITE);
2456
2457         txbuf->tb_mbuf = m;
2458         txbuf->tb_node = ni;
2459
2460         /*
2461          * TX buffers are accessed in following way:
2462          * acx_fw_txdesc -> acx_host_desc -> buffer
2463          *
2464          * It is quite strange that acx also querys acx_host_desc next to
2465          * the one we have assigned to acx_fw_txdesc even if first one's
2466          * acx_host_desc.h_data_len == acx_fw_txdesc.f_tx_len
2467          *
2468          * So we allocate two acx_host_desc for one acx_fw_txdesc and
2469          * assign the first acx_host_desc to acx_fw_txdesc
2470          *
2471          * For acx111
2472          * host_desc1.h_data_len = buffer_len
2473          * host_desc2.h_data_len = buffer_len - mac_header_len
2474          *
2475          * For acx100
2476          * host_desc1.h_data_len = mac_header_len
2477          * host_desc2.h_data_len = buffer_len - mac_header_len
2478          */
2479
2480         txbuf->tb_desc1->h_data_paddr = htole32(paddr);
2481         txbuf->tb_desc2->h_data_paddr = htole32(paddr + ACX_FRAME_HDRLEN);
2482
2483         txbuf->tb_desc1->h_data_len =
2484                 htole16(sc->chip_txdesc1_len ? sc->chip_txdesc1_len
2485                                              : m->m_pkthdr.len);
2486         txbuf->tb_desc2->h_data_len =
2487                 htole16(m->m_pkthdr.len - ACX_FRAME_HDRLEN);
2488
2489         /*
2490          * NOTE:
2491          * We can't simply assign f_tx_ctrl, we will first read it back
2492          * and change it bit by bit
2493          */
2494         ctrl = FW_TXDESC_GETFIELD_1(sc, txbuf, f_tx_ctrl);
2495         ctrl |= sc->chip_fw_txdesc_ctrl; /* extra chip specific flags */
2496         ctrl &= ~(DESC_CTRL_HOSTOWN | DESC_CTRL_ACXDONE);
2497
2498         FW_TXDESC_SETFIELD_2(sc, txbuf, f_tx_len, m->m_pkthdr.len);
2499         FW_TXDESC_SETFIELD_1(sc, txbuf, f_tx_error, 0);
2500         FW_TXDESC_SETFIELD_1(sc, txbuf, f_tx_data_nretry, 0);
2501         FW_TXDESC_SETFIELD_1(sc, txbuf, f_tx_rts_nretry, 0);
2502         FW_TXDESC_SETFIELD_1(sc, txbuf, f_tx_rts_ok, 0);
2503         rate = sc->chip_set_fw_txdesc_rate(sc, txbuf, ni, m->m_pkthdr.len);
2504
2505         if (sc->sc_drvbpf != NULL) {
2506                 struct ieee80211_frame_min *wh;
2507
2508                 wh = mtod(m, struct ieee80211_frame_min *);
2509                 sc->sc_tx_th.wt_flags = 0;
2510                 if (wh->i_fc[1] & IEEE80211_FC1_WEP)
2511                         sc->sc_tx_th.wt_flags |= IEEE80211_RADIOTAP_F_WEP;
2512                 sc->sc_tx_th.wt_rate = rate;
2513
2514                 bpf_ptap(sc->sc_drvbpf, m, &sc->sc_tx_th, sc->sc_tx_th_len);
2515         }
2516
2517         txbuf->tb_desc1->h_ctrl = 0;
2518         txbuf->tb_desc2->h_ctrl = 0;
2519         bus_dmamap_sync(rd->tx_ring_dma_tag, rd->tx_ring_dmamap,
2520                         BUS_DMASYNC_PREWRITE);
2521
2522         FW_TXDESC_SETFIELD_1(sc, txbuf, f_tx_ctrl2, 0);
2523         FW_TXDESC_SETFIELD_1(sc, txbuf, f_tx_ctrl, ctrl);
2524
2525         /* Tell chip to inform us about TX completion */
2526         CSR_WRITE_2(sc, ACXREG_INTR_TRIG, ACXRV_TRIG_TX_FINI);
2527 back:
2528         if (error)
2529                 m_freem(m);
2530         return error;
2531 }
2532
2533 static int
2534 acx_set_null_tmplt(struct acx_softc *sc)
2535 {
2536         struct acx_tmplt_null_data n;
2537         struct ieee80211_frame *f;
2538
2539         bzero(&n, sizeof(n));
2540
2541         f = &n.data;
2542         f->i_fc[0] = IEEE80211_FC0_VERSION_0 | IEEE80211_FC0_TYPE_DATA |
2543                      IEEE80211_FC0_SUBTYPE_NODATA;
2544         IEEE80211_ADDR_COPY(f->i_addr1, etherbroadcastaddr);
2545         IEEE80211_ADDR_COPY(f->i_addr2, IF_LLADDR(&sc->sc_ic.ic_if));
2546         IEEE80211_ADDR_COPY(f->i_addr3, etherbroadcastaddr);
2547
2548         return _acx_set_null_data_tmplt(sc, &n, sizeof(n));
2549 }
2550
2551 static int
2552 acx_set_probe_req_tmplt(struct acx_softc *sc, const char *ssid, int ssid_len)
2553 {
2554         struct acx_tmplt_probe_req req;
2555         struct ieee80211_frame *f;
2556         uint8_t *v;
2557         int vlen;
2558
2559         bzero(&req, sizeof(req));
2560
2561         f = &req.data.u_data.f;
2562         f->i_fc[0] = IEEE80211_FC0_VERSION_0 | IEEE80211_FC0_TYPE_MGT |
2563                      IEEE80211_FC0_SUBTYPE_PROBE_REQ;
2564         IEEE80211_ADDR_COPY(f->i_addr1, etherbroadcastaddr);
2565         IEEE80211_ADDR_COPY(f->i_addr2, IF_LLADDR(&sc->sc_ic.ic_if));
2566         IEEE80211_ADDR_COPY(f->i_addr3, etherbroadcastaddr);
2567
2568         v = req.data.u_data.var;
2569         v = ieee80211_add_ssid(v, ssid, ssid_len);
2570         v = ieee80211_add_rates(v, &sc->sc_ic.ic_sup_rates[sc->chip_phymode]);
2571         v = ieee80211_add_xrates(v, &sc->sc_ic.ic_sup_rates[sc->chip_phymode]);
2572         vlen = v - req.data.u_data.var;
2573
2574         return _acx_set_probe_req_tmplt(sc, &req,
2575                                         ACX_TMPLT_PROBE_REQ_SIZ(vlen));
2576 }
2577
2578 static int
2579 acx_set_probe_resp_tmplt(struct acx_softc *sc, struct ieee80211_node *ni)
2580 {
2581         struct ieee80211com *ic = &sc->sc_ic;
2582         struct acx_tmplt_probe_resp resp;
2583         struct ieee80211_frame *f;
2584         struct mbuf *m;
2585         int len;
2586
2587         m = ieee80211_probe_resp_alloc(ic, ni);
2588         if (m == NULL)
2589                 return 1;
2590         DPRINTF((&ic->ic_if, "%s alloc probe resp size %d\n", __func__,
2591                  m->m_pkthdr.len));
2592
2593         f = mtod(m, struct ieee80211_frame *);
2594         IEEE80211_ADDR_COPY(f->i_addr1, etherbroadcastaddr);
2595
2596         bzero(&resp, sizeof(resp));
2597         m_copydata(m, 0, m->m_pkthdr.len, (caddr_t)&resp.data);
2598         len = m->m_pkthdr.len + sizeof(resp.size);
2599         m_freem(m);
2600
2601         return _acx_set_probe_resp_tmplt(sc, &resp, len);
2602 }
2603
2604 static int
2605 acx_set_beacon_tmplt(struct acx_softc *sc, struct ieee80211_node *ni)
2606 {
2607         struct ieee80211com *ic = &sc->sc_ic;
2608         struct acx_tmplt_beacon beacon;
2609         struct acx_tmplt_tim tim;
2610         struct ieee80211_beacon_offsets bo;
2611         struct mbuf *m;
2612         int beacon_tmplt_len = 0, tim_tmplt_len = 0;
2613
2614         bzero(&bo, sizeof(bo));
2615         m = ieee80211_beacon_alloc(ic, ni, &bo);
2616         if (m == NULL)
2617                 return 1;
2618         DPRINTF((&ic->ic_if, "%s alloc beacon size %d\n", __func__,
2619                  m->m_pkthdr.len));
2620
2621         if (bo.bo_tim_len == 0) {
2622                 beacon_tmplt_len = m->m_pkthdr.len;
2623         } else {
2624                 beacon_tmplt_len = bo.bo_tim - mtod(m, uint8_t *);
2625                 tim_tmplt_len = m->m_pkthdr.len - beacon_tmplt_len;
2626         }
2627
2628         bzero(&beacon, sizeof(beacon));
2629         bzero(&tim, sizeof(tim));
2630
2631         m_copydata(m, 0, beacon_tmplt_len, (caddr_t)&beacon.data);
2632         if (tim_tmplt_len != 0) {
2633                 m_copydata(m, beacon_tmplt_len, tim_tmplt_len,
2634                            (caddr_t)&tim.data);
2635         }
2636         m_freem(m);
2637
2638         beacon_tmplt_len += sizeof(beacon.size);
2639         if (_acx_set_beacon_tmplt(sc, &beacon, beacon_tmplt_len) != 0)
2640                 return 1;
2641
2642         if (tim_tmplt_len != 0) {
2643                 tim_tmplt_len += sizeof(tim.size);
2644                 if (_acx_set_tim_tmplt(sc, &tim, tim_tmplt_len) != 0)
2645                         return 1;
2646         }
2647         return 0;
2648 }
2649
2650 static int
2651 acx_sysctl_msdu_lifetime(SYSCTL_HANDLER_ARGS)
2652 {
2653         struct acx_softc *sc = arg1;
2654         struct ifnet *ifp = &sc->sc_ic.ic_if;
2655         int error = 0, v;
2656
2657         lwkt_serialize_enter(ifp->if_serializer);
2658
2659         v = sc->sc_msdu_lifetime;
2660         error = sysctl_handle_int(oidp, &v, 0, req);
2661         if (error || req->newptr == NULL)
2662                 goto back;
2663         if (v <= 0) {
2664                 error = EINVAL;
2665                 goto back;
2666         }
2667
2668         if (sc->sc_flags & ACX_FLAG_FW_LOADED) {
2669                 struct acx_conf_msdu_lifetime msdu_lifetime;
2670
2671                 msdu_lifetime.lifetime = htole32(v);
2672                 if (acx_set_msdu_lifetime_conf(sc, &msdu_lifetime) != 0) {
2673                         if_printf(&sc->sc_ic.ic_if,
2674                                   "can't set MSDU lifetime\n");
2675                         error = ENXIO;
2676                         goto back;
2677                 }
2678         }
2679         sc->sc_msdu_lifetime = v;
2680 back:
2681         lwkt_serialize_exit(ifp->if_serializer);
2682         return error;
2683 }
2684
2685 static int
2686 acx_sysctl_free_firmware(SYSCTL_HANDLER_ARGS)
2687 {
2688         struct acx_softc *sc = arg1;
2689         struct ifnet *ifp = &sc->sc_ic.ic_if;
2690         int error = 0, v;
2691
2692         lwkt_serialize_enter(ifp->if_serializer);
2693
2694         v = 0;
2695         error = sysctl_handle_int(oidp, &v, 0, req);
2696         if (error || req->newptr == NULL)
2697                 goto back;
2698         if (v == 0)     /* Do nothing */
2699                 goto back;
2700
2701         acx_free_firmware(sc);
2702 back:
2703         lwkt_serialize_exit(ifp->if_serializer);
2704         return error;
2705 }
2706
2707 static int
2708 acx_media_change(struct ifnet *ifp)
2709 {
2710         int error;
2711
2712         error = ieee80211_media_change(ifp);
2713         if (error != ENETRESET)
2714                 return error;
2715
2716         if ((ifp->if_flags & (IFF_UP | IFF_RUNNING)) == (IFF_UP | IFF_RUNNING))
2717                 acx_init(ifp->if_softc);
2718         return 0;
2719 }
2720
2721 static int
2722 acx_rx_config(struct acx_softc *sc, int promisc)
2723 {
2724         struct acx_conf_rxopt rx_opt;
2725         struct ieee80211com *ic = &sc->sc_ic;
2726
2727         /*
2728          * What we want to receive and how to receive
2729          */
2730
2731         /* Common for all operational modes */
2732         rx_opt.opt1 = RXOPT1_INCL_RXBUF_HDR;
2733         rx_opt.opt2 = RXOPT2_RECV_ASSOC_REQ |
2734                       RXOPT2_RECV_AUTH |
2735                       RXOPT2_RECV_BEACON |
2736                       RXOPT2_RECV_CF |
2737                       RXOPT2_RECV_CTRL |
2738                       RXOPT2_RECV_DATA |
2739                       RXOPT2_RECV_MGMT |
2740                       RXOPT2_RECV_PROBE_REQ |
2741                       RXOPT2_RECV_PROBE_RESP |
2742                       RXOPT2_RECV_OTHER;
2743
2744         if (ic->ic_opmode == IEEE80211_M_MONITOR) {
2745                 rx_opt.opt1 |= RXOPT1_PROMISC;
2746                 rx_opt.opt2 |= RXOPT2_RECV_BROKEN | RXOPT2_RECV_ACK;
2747         } else {
2748                 rx_opt.opt1 |= promisc ? RXOPT1_PROMISC : RXOPT1_FILT_FDEST;
2749         }
2750
2751         if (acx_set_rxopt_conf(sc, &rx_opt) != 0) {
2752                 if_printf(&sc->sc_ic.ic_if, "can't config RX\n");
2753                 return ENXIO;
2754         }
2755         return 0;
2756 }
2757
2758 static int
2759 acx_set_chan(struct acx_softc *sc, struct ieee80211_channel *c)
2760 {
2761         struct ieee80211com *ic = &sc->sc_ic;
2762         uint16_t flags;
2763         uint8_t chan;
2764
2765         chan = ieee80211_chan2ieee(ic, c);
2766         if (acx_enable_txchan(sc, chan) != 0) {
2767                 if_printf(&ic->ic_if, "enable TX on channel %d failed\n", chan);
2768                 return EIO;
2769         }
2770         if (acx_enable_rxchan(sc, chan) != 0) {
2771                 if_printf(&ic->ic_if, "enable RX on channel %d failed\n", chan);
2772                 return EIO;
2773         }
2774
2775         if (IEEE80211_IS_CHAN_G(c))
2776                 flags = IEEE80211_CHAN_G;
2777         else
2778                 flags = IEEE80211_CHAN_B;
2779
2780         sc->sc_tx_th.wt_chan_freq = sc->sc_rx_th.wr_chan_freq =
2781                 htole16(c->ic_freq);
2782         sc->sc_tx_th.wt_chan_flags = sc->sc_rx_th.wr_chan_flags =
2783                 htole16(flags);
2784         return 0;
2785 }
2786
2787 static void
2788 acx_calibrate(void *xsc)
2789 {
2790         struct acx_softc *sc = xsc;
2791         struct ifnet *ifp = &sc->sc_ic.ic_if;
2792
2793         lwkt_serialize_enter(ifp->if_serializer);
2794         if (sc->chip_calibrate != NULL &&
2795             sc->sc_ic.ic_state == IEEE80211_S_RUN) {
2796                 sc->chip_calibrate(sc);
2797                 callout_reset(&sc->sc_calibrate_timer, hz * sc->sc_calib_intvl,
2798                               acx_calibrate, sc);
2799         }
2800         lwkt_serialize_exit(ifp->if_serializer);
2801 }