Merge from vendor branch SENDMAIL:
[dragonfly.git] / sys / dev / netif / an / if_an.c
1 /*
2  * Copyright (c) 1997, 1998, 1999
3  *      Bill Paul <wpaul@ctr.columbia.edu>.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by Bill Paul.
16  * 4. Neither the name of the author nor the names of any co-contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
24  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30  * THE POSSIBILITY OF SUCH DAMAGE.
31  *
32  * $FreeBSD: src/sys/dev/an/if_an.c,v 1.2.2.13 2003/02/11 03:32:48 ambrisko Exp $
33  * $DragonFly: src/sys/dev/netif/an/if_an.c,v 1.42 2007/04/07 11:01:06 swildner Exp $
34  */
35
36 /*
37  * Aironet 4500/4800 802.11 PCMCIA/ISA/PCI driver for FreeBSD.
38  *
39  * Written by Bill Paul <wpaul@ctr.columbia.edu>
40  * Electrical Engineering Department
41  * Columbia University, New York City
42  */
43
44 /*
45  * The Aironet 4500/4800 series cards come in PCMCIA, ISA and PCI form.
46  * This driver supports all three device types (PCI devices are supported
47  * through an extra PCI shim: /sys/dev/an/if_an_pci.c). ISA devices can be
48  * supported either using hard-coded IO port/IRQ settings or via Plug
49  * and Play. The 4500 series devices support 1Mbps and 2Mbps data rates.
50  * The 4800 devices support 1, 2, 5.5 and 11Mbps rates.
51  *
52  * Like the WaveLAN/IEEE cards, the Aironet NICs are all essentially
53  * PCMCIA devices. The ISA and PCI cards are a combination of a PCMCIA
54  * device and a PCMCIA to ISA or PCMCIA to PCI adapter card. There are
55  * a couple of important differences though:
56  *
57  * - Lucent ISA card looks to the host like a PCMCIA controller with
58  *   a PCMCIA WaveLAN card inserted. This means that even desktop
59  *   machines need to be configured with PCMCIA support in order to
60  *   use WaveLAN/IEEE ISA cards. The Aironet cards on the other hand
61  *   actually look like normal ISA and PCI devices to the host, so
62  *   no PCMCIA controller support is needed
63  *
64  * The latter point results in a small gotcha. The Aironet PCMCIA
65  * cards can be configured for one of two operating modes depending
66  * on how the Vpp1 and Vpp2 programming voltages are set when the
67  * card is activated. In order to put the card in proper PCMCIA
68  * operation (where the CIS table is visible and the interface is
69  * programmed for PCMCIA operation), both Vpp1 and Vpp2 have to be
70  * set to 5 volts. FreeBSD by default doesn't set the Vpp voltages,
71  * which leaves the card in ISA/PCI mode, which prevents it from
72  * being activated as an PCMCIA device.
73  *
74  * Note that some PCMCIA controller software packages for Windows NT
75  * fail to set the voltages as well.
76  *
77  * The Aironet devices can operate in both station mode and access point
78  * mode. Typically, when programmed for station mode, the card can be set
79  * to automatically perform encapsulation/decapsulation of Ethernet II
80  * and 802.3 frames within 802.11 frames so that the host doesn't have
81  * to do it itself. This driver doesn't program the card that way: the
82  * driver handles all of the encapsulation/decapsulation itself.
83  */
84
85 #include "opt_inet.h"
86
87 #ifdef INET
88 #define ANCACHE                 /* enable signal strength cache */
89 #endif
90
91 #include <sys/param.h>
92 #include <sys/systm.h>
93 #include <sys/sockio.h>
94 #include <sys/mbuf.h>
95 #include <sys/kernel.h>
96 #include <sys/proc.h>
97 #include <sys/ucred.h>
98 #include <sys/socket.h>
99 #ifdef ANCACHE
100 #include <sys/syslog.h>
101 #endif
102 #include <sys/sysctl.h>
103 #include <sys/thread2.h>
104
105 #include <sys/module.h>
106 #include <sys/sysctl.h>
107 #include <sys/bus.h>
108 #include <sys/rman.h>
109 #include <sys/malloc.h>
110
111 #include <net/if.h>
112 #include <net/ifq_var.h>
113 #include <net/if_arp.h>
114 #include <net/ethernet.h>
115 #include <net/if_dl.h>
116 #include <net/if_types.h>
117 #include <net/if_media.h>
118 #include <netproto/802_11/ieee80211.h>
119 #include <netproto/802_11/ieee80211_ioctl.h>
120
121 #ifdef INET
122 #include <netinet/in.h>
123 #include <netinet/in_systm.h>
124 #include <netinet/in_var.h>
125 #include <netinet/ip.h>
126 #endif
127
128 #include <net/bpf.h>
129
130 #include <machine/md_var.h>
131
132 #include "if_aironet_ieee.h"
133 #include "if_anreg.h"
134
135 /* These are global because we need them in sys/pci/if_an_p.c. */
136 static void an_reset            (struct an_softc *);
137 static int an_init_mpi350_desc  (struct an_softc *);
138 static int an_ioctl             (struct ifnet *, u_long, caddr_t,
139                                         struct ucred *);
140 static void an_init             (void *);
141 static int an_init_tx_ring      (struct an_softc *);
142 static void an_start            (struct ifnet *);
143 static void an_watchdog         (struct ifnet *);
144 static void an_rxeof            (struct an_softc *);
145 static void an_txeof            (struct an_softc *, int);
146
147 static void an_promisc          (struct an_softc *, int);
148 static int an_cmd               (struct an_softc *, int, int);
149 static int an_cmd_struct        (struct an_softc *, struct an_command *,
150                                         struct an_reply *);
151 static int an_read_record       (struct an_softc *, struct an_ltv_gen *);
152 static int an_write_record      (struct an_softc *, struct an_ltv_gen *);
153 static int an_read_data         (struct an_softc *, int,
154                                         int, caddr_t, int);
155 static int an_write_data        (struct an_softc *, int,
156                                         int, caddr_t, int);
157 static int an_seek              (struct an_softc *, int, int, int);
158 static int an_alloc_nicmem      (struct an_softc *, int, int *);
159 static int an_dma_malloc        (struct an_softc *, bus_size_t,
160                                         struct an_dma_alloc *, int);
161 static void an_dma_free         (struct an_softc *, 
162                                         struct an_dma_alloc *);
163 static void an_dma_malloc_cb    (void *, bus_dma_segment_t *, int, int);
164 static void an_stats_update     (void *);
165 static void an_setdef           (struct an_softc *, struct an_req *);
166 #ifdef ANCACHE
167 static void an_cache_store      (struct an_softc *, struct mbuf *,
168                                  uint8_t, uint8_t);
169 #endif
170
171 /* function definitions for use with the Cisco's Linux configuration
172    utilities
173 */
174
175 static int readrids             (struct ifnet*, struct aironet_ioctl*);
176 static int writerids            (struct ifnet*, struct aironet_ioctl*);
177 static int flashcard            (struct ifnet*, struct aironet_ioctl*);
178
179 static int cmdreset             (struct ifnet *);
180 static int setflashmode         (struct ifnet *);
181 static int flashgchar           (struct ifnet *,int,int);
182 static int flashpchar           (struct ifnet *,int,int);
183 static int flashputbuf          (struct ifnet *);
184 static int flashrestart         (struct ifnet *);
185 static int WaitBusy             (struct ifnet *, int);
186 static int unstickbusy          (struct ifnet *);
187
188 static void an_dump_record      (struct an_softc *,struct an_ltv_gen *,
189                                     char *);
190
191 static int an_media_change      (struct ifnet *);
192 static void an_media_status     (struct ifnet *, struct ifmediareq *);
193
194 static int      an_dump = 0;
195 static int      an_cache_mode = 0;
196
197 #define DBM 0
198 #define PERCENT 1
199 #define RAW 2
200
201 static char an_conf[256];
202 static char an_conf_cache[256];
203
204 DECLARE_DUMMY_MODULE(if_an);
205
206 /* sysctl vars */
207
208 SYSCTL_NODE(_hw, OID_AUTO, an, CTLFLAG_RD, 0, "Wireless driver parameters");
209
210 static int
211 sysctl_an_dump(SYSCTL_HANDLER_ARGS)
212 {
213         int     error, r, last;
214         char    *s = an_conf;
215
216         last = an_dump;
217
218         switch (an_dump) {
219         case 0:
220                 strcpy(an_conf, "off");
221                 break;
222         case 1:
223                 strcpy(an_conf, "type");
224                 break;
225         case 2:
226                 strcpy(an_conf, "dump");
227                 break;
228         default:
229                 ksnprintf(an_conf, 5, "%x", an_dump);
230                 break;
231         }
232
233         error = sysctl_handle_string(oidp, an_conf, sizeof(an_conf), req);
234
235         if (strncmp(an_conf,"off", 3) == 0) {
236                 an_dump = 0;
237         }
238         if (strncmp(an_conf,"dump", 4) == 0) {
239                 an_dump = 1;
240         }
241         if (strncmp(an_conf,"type", 4) == 0) {
242                 an_dump = 2;
243         }
244         if (*s == 'f') {
245                 r = 0;
246                 for (;;s++) {
247                         if ((*s >= '0') && (*s <= '9')) {
248                                 r = r * 16 + (*s - '0');
249                         } else if ((*s >= 'a') && (*s <= 'f')) {
250                                 r = r * 16 + (*s - 'a' + 10);
251                         } else {
252                                 break;
253                         }
254                 }
255                 an_dump = r;
256         }
257         if (an_dump != last)
258                 kprintf("Sysctl changed for Aironet driver\n");
259
260         return error;
261 }
262
263 SYSCTL_PROC(_hw_an, OID_AUTO, an_dump, CTLTYPE_STRING | CTLFLAG_RW,
264             0, sizeof(an_conf), sysctl_an_dump, "A", "");
265
266 static int
267 sysctl_an_cache_mode(SYSCTL_HANDLER_ARGS)
268 {
269         int     error, last;
270
271         last = an_cache_mode;
272
273         switch (an_cache_mode) {
274         case 1:
275                 strcpy(an_conf_cache, "per");
276                 break;
277         case 2:
278                 strcpy(an_conf_cache, "raw");
279                 break;
280         default:
281                 strcpy(an_conf_cache, "dbm");
282                 break;
283         }
284
285         error = sysctl_handle_string(oidp, an_conf_cache, 
286                         sizeof(an_conf_cache), req);
287
288         if (strncmp(an_conf_cache,"dbm", 3) == 0) {
289                 an_cache_mode = 0;
290         }
291         if (strncmp(an_conf_cache,"per", 3) == 0) {
292                 an_cache_mode = 1;
293         }
294         if (strncmp(an_conf_cache,"raw", 3) == 0) {
295                 an_cache_mode = 2;
296         }
297
298         return error;
299 }
300
301 SYSCTL_PROC(_hw_an, OID_AUTO, an_cache_mode, CTLTYPE_STRING | CTLFLAG_RW,
302             0, sizeof(an_conf_cache), sysctl_an_cache_mode, "A", "");
303
304 /*
305  * We probe for an Aironet 4500/4800 card by attempting to
306  * read the default SSID list. On reset, the first entry in
307  * the SSID list will contain the name "tsunami." If we don't
308  * find this, then there's no card present.
309  */
310 int
311 an_probe(device_t dev)
312 {
313         struct an_softc *sc = device_get_softc(dev);
314         struct an_ltv_ssidlist_new ssid;
315         int     error;
316
317         bzero((char *)&ssid, sizeof(ssid));
318
319         error = an_alloc_port(dev, 0, AN_IOSIZ);
320         if (error)
321                 return (error);
322
323         /* can't do autoprobing */
324         if (rman_get_start(sc->port_res) == -1)
325                 return(ENXIO);
326
327         /*
328          * We need to fake up a softc structure long enough
329          * to be able to issue commands and call some of the
330          * other routines.
331          */
332         sc->an_bhandle = rman_get_bushandle(sc->port_res);
333         sc->an_btag = rman_get_bustag(sc->port_res);
334
335         ssid.an_len = sizeof(ssid);
336         ssid.an_type = AN_RID_SSIDLIST;
337
338         /* Make sure interrupts are disabled. */
339         sc->mpi350 = 0;
340         CSR_WRITE_2(sc, AN_INT_EN(sc->mpi350), 0);
341         CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), 0xFFFF);
342
343         if_initname(&sc->arpcom.ac_if, device_get_name(dev),
344                     device_get_unit(dev));
345         an_reset(sc);
346
347         if (an_cmd(sc, AN_CMD_READCFG, 0))
348                 return(ENXIO);
349
350         if (an_read_record(sc, (struct an_ltv_gen *)&ssid))
351                 return(ENXIO);
352
353         /* See if the ssid matches what we expect ... but doesn't have to */
354         if (strcmp(ssid.an_entry[0].an_ssid, AN_DEF_SSID))
355                 return(ENXIO);
356
357         return(0);
358 }
359
360 /*
361  * Allocate a port resource with the given resource id.
362  */
363 int
364 an_alloc_port(device_t dev, int rid, int size)
365 {
366         struct an_softc *sc = device_get_softc(dev);
367         struct resource *res;
368
369         res = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid,
370                                  0ul, ~0ul, size, RF_ACTIVE);
371         if (res) {
372                 sc->port_rid = rid;
373                 sc->port_res = res;
374                 return (0);
375         } else {
376                 return (ENOENT);
377         }
378 }
379
380 /*
381  * Allocate a memory resource with the given resource id.
382  */
383 int
384 an_alloc_memory(device_t dev, int rid, int size)
385 {
386         struct an_softc *sc = device_get_softc(dev);
387         struct resource *res;
388
389         res = bus_alloc_resource(dev, SYS_RES_MEMORY, &rid,
390                                  0ul, ~0ul, size, RF_ACTIVE);
391         if (res) {
392                 sc->mem_rid = rid;
393                 sc->mem_res = res;
394                 sc->mem_used = size;
395                 return (0);
396         } else {
397                 return (ENOENT);
398         }
399 }
400
401 /*
402  * Allocate a auxilary memory resource with the given resource id.
403  */
404 int
405 an_alloc_aux_memory(device_t dev, int rid, int size)
406 {
407         struct an_softc *sc = device_get_softc(dev);
408         struct resource *res;
409
410         res = bus_alloc_resource(dev, SYS_RES_MEMORY, &rid,
411                                  0ul, ~0ul, size, RF_ACTIVE);
412         if (res) {
413                 sc->mem_aux_rid = rid;
414                 sc->mem_aux_res = res;
415                 sc->mem_aux_used = size;
416                 return (0);
417         } else {
418                 return (ENOENT);
419         }
420 }
421
422 /*
423  * Allocate an irq resource with the given resource id.
424  */
425 int
426 an_alloc_irq(device_t dev, int rid, int flags)
427 {
428         struct an_softc *sc = device_get_softc(dev);
429         struct resource *res;
430
431         res = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
432             (RF_ACTIVE | flags));
433         if (res) {
434                 sc->irq_rid = rid;
435                 sc->irq_res = res;
436                 return (0);
437         } else {
438                 return (ENOENT);
439         }
440 }
441
442 static void
443 an_dma_malloc_cb(void *arg, bus_dma_segment_t *segs, int nseg, int error)
444 {
445         bus_addr_t *paddr = (bus_addr_t*) arg;
446         *paddr = segs->ds_addr;
447 }
448
449 /*
450  * Alloc DMA memory and set the pointer to it
451  */
452 static int
453 an_dma_malloc(struct an_softc *sc, bus_size_t size, struct an_dma_alloc *dma,
454               int mapflags)
455 {
456         int r;
457
458         r = bus_dmamap_create(sc->an_dtag, 0, &dma->an_dma_map);
459         if (r != 0)
460                 goto fail_0;
461
462         r = bus_dmamem_alloc(sc->an_dtag, (void**) &dma->an_dma_vaddr,
463                              BUS_DMA_WAITOK, &dma->an_dma_map);
464         if (r != 0)
465                 goto fail_1;
466
467         r = bus_dmamap_load(sc->an_dtag, dma->an_dma_map, dma->an_dma_vaddr,
468                             size,
469                             an_dma_malloc_cb,
470                             &dma->an_dma_paddr,
471                             mapflags);
472         if (r != 0)
473                 goto fail_2;
474
475         dma->an_dma_size = size;
476         return (0);
477
478 fail_2:
479         bus_dmamap_unload(sc->an_dtag, dma->an_dma_map);
480 fail_1:
481         bus_dmamem_free(sc->an_dtag, dma->an_dma_vaddr, dma->an_dma_map);
482 fail_0:
483         bus_dmamap_destroy(sc->an_dtag, dma->an_dma_map);
484         dma->an_dma_map = NULL;
485         return (r);
486 }
487
488 static void
489 an_dma_free(struct an_softc *sc, struct an_dma_alloc *dma)
490 {
491         bus_dmamap_unload(sc->an_dtag, dma->an_dma_map);
492         bus_dmamem_free(sc->an_dtag, dma->an_dma_vaddr, dma->an_dma_map);
493         dma->an_dma_vaddr = NULL;
494         bus_dmamap_destroy(sc->an_dtag, dma->an_dma_map);
495 }
496
497 /*
498  * Release all resources
499  */
500 void
501 an_release_resources(device_t dev)
502 {
503         struct an_softc *sc = device_get_softc(dev);
504         int i;
505
506         if (sc->port_res) {
507                 bus_release_resource(dev, SYS_RES_IOPORT,
508                                      sc->port_rid, sc->port_res);
509                 sc->port_res = 0;
510         }
511         if (sc->mem_res) {
512                 bus_release_resource(dev, SYS_RES_MEMORY,
513                                      sc->mem_rid, sc->mem_res);
514                 sc->mem_res = 0;
515         }
516         if (sc->mem_aux_res) {
517                 bus_release_resource(dev, SYS_RES_MEMORY,
518                                      sc->mem_aux_rid, sc->mem_aux_res);
519                 sc->mem_aux_res = 0;
520         }
521         if (sc->irq_res) {
522                 bus_release_resource(dev, SYS_RES_IRQ,
523                                      sc->irq_rid, sc->irq_res);
524                 sc->irq_res = 0;
525         }
526         if (sc->an_rid_buffer.an_dma_paddr) {
527                 an_dma_free(sc, &sc->an_rid_buffer);
528         }
529         for (i = 0; i < AN_MAX_RX_DESC; i++)
530                 if (sc->an_rx_buffer[i].an_dma_paddr) {
531                         an_dma_free(sc, &sc->an_rx_buffer[i]);
532                 }
533         for (i = 0; i < AN_MAX_TX_DESC; i++)
534                 if (sc->an_tx_buffer[i].an_dma_paddr) {
535                         an_dma_free(sc, &sc->an_tx_buffer[i]);
536                 }
537         if (sc->an_dtag) {
538                 bus_dma_tag_destroy(sc->an_dtag);
539         }
540
541 }
542
543 int
544 an_init_mpi350_desc(struct an_softc *sc)
545 {
546         struct an_command       cmd_struct;
547         struct an_reply         reply;
548         struct an_card_rid_desc an_rid_desc;
549         struct an_card_rx_desc  an_rx_desc;
550         struct an_card_tx_desc  an_tx_desc;
551         int                     i, desc;
552
553         if(!sc->an_rid_buffer.an_dma_paddr)
554                 an_dma_malloc(sc, AN_RID_BUFFER_SIZE,
555                                  &sc->an_rid_buffer, 0);
556         for (i = 0; i < AN_MAX_RX_DESC; i++)
557                 if(!sc->an_rx_buffer[i].an_dma_paddr)
558                         an_dma_malloc(sc, AN_RX_BUFFER_SIZE,
559                                       &sc->an_rx_buffer[i], 0);
560         for (i = 0; i < AN_MAX_TX_DESC; i++)
561                 if(!sc->an_tx_buffer[i].an_dma_paddr)
562                         an_dma_malloc(sc, AN_TX_BUFFER_SIZE,
563                                       &sc->an_tx_buffer[i], 0);
564
565         /*
566          * Allocate RX descriptor
567          */
568         bzero(&reply,sizeof(reply));
569         cmd_struct.an_cmd   = AN_CMD_ALLOC_DESC;
570         cmd_struct.an_parm0 = AN_DESCRIPTOR_RX;
571         cmd_struct.an_parm1 = AN_RX_DESC_OFFSET;
572         cmd_struct.an_parm2 = AN_MAX_RX_DESC;
573         if (an_cmd_struct(sc, &cmd_struct, &reply)) {
574                 if_printf(&sc->arpcom.ac_if,
575                           "failed to allocate RX descriptor\n");
576                 return(EIO);
577         }
578
579         for (desc = 0; desc < AN_MAX_RX_DESC; desc++) {
580                 bzero(&an_rx_desc, sizeof(an_rx_desc));
581                 an_rx_desc.an_valid = 1;
582                 an_rx_desc.an_len = AN_RX_BUFFER_SIZE;
583                 an_rx_desc.an_done = 0;
584                 an_rx_desc.an_phys = sc->an_rx_buffer[desc].an_dma_paddr;
585
586                 for (i = 0; i < sizeof(an_rx_desc) / 4; i++)
587                         CSR_MEM_AUX_WRITE_4(sc, AN_RX_DESC_OFFSET 
588                                             + (desc * sizeof(an_rx_desc))
589                                             + (i * 4),
590                                             ((u_int32_t*)&an_rx_desc)[i]);
591         }
592
593         /*
594          * Allocate TX descriptor
595          */
596
597         bzero(&reply,sizeof(reply));
598         cmd_struct.an_cmd   = AN_CMD_ALLOC_DESC;
599         cmd_struct.an_parm0 = AN_DESCRIPTOR_TX;
600         cmd_struct.an_parm1 = AN_TX_DESC_OFFSET;
601         cmd_struct.an_parm2 = AN_MAX_TX_DESC;
602         if (an_cmd_struct(sc, &cmd_struct, &reply)) {
603                 if_printf(&sc->arpcom.ac_if,
604                           "failed to allocate TX descriptor\n");
605                 return(EIO);
606         }
607
608         for (desc = 0; desc < AN_MAX_TX_DESC; desc++) {
609                 bzero(&an_tx_desc, sizeof(an_tx_desc));
610                 an_tx_desc.an_offset = 0;
611                 an_tx_desc.an_eoc = 0;
612                 an_tx_desc.an_valid = 0;
613                 an_tx_desc.an_len = 0;
614                 an_tx_desc.an_phys = sc->an_tx_buffer[desc].an_dma_paddr;
615
616                 for (i = 0; i < sizeof(an_tx_desc) / 4; i++)
617                         CSR_MEM_AUX_WRITE_4(sc, AN_TX_DESC_OFFSET
618                                             + (desc * sizeof(an_tx_desc))
619                                             + (i * 4),
620                                             ((u_int32_t*)&an_tx_desc)[i]);
621         }
622
623         /*
624          * Allocate RID descriptor
625          */
626
627         bzero(&reply,sizeof(reply));
628         cmd_struct.an_cmd   = AN_CMD_ALLOC_DESC;
629         cmd_struct.an_parm0 = AN_DESCRIPTOR_HOSTRW;
630         cmd_struct.an_parm1 = AN_HOST_DESC_OFFSET;
631         cmd_struct.an_parm2 = 1;
632         if (an_cmd_struct(sc, &cmd_struct, &reply)) {
633                 if_printf(&sc->arpcom.ac_if,
634                           "failed to allocate host descriptor\n");
635                 return(EIO);
636         }
637
638         bzero(&an_rid_desc, sizeof(an_rid_desc));
639         an_rid_desc.an_valid = 1;
640         an_rid_desc.an_len = AN_RID_BUFFER_SIZE;
641         an_rid_desc.an_rid = 0;
642         an_rid_desc.an_phys = sc->an_rid_buffer.an_dma_paddr;
643
644         for (i = 0; i < sizeof(an_rid_desc) / 4; i++)
645                 CSR_MEM_AUX_WRITE_4(sc, AN_HOST_DESC_OFFSET + i * 4, 
646                                     ((u_int32_t*)&an_rid_desc)[i]);
647
648         return(0);
649 }
650
651 int
652 an_attach(struct an_softc *sc, device_t dev, int flags)
653 {
654         struct ifnet            *ifp = &sc->arpcom.ac_if;
655         int                     error;
656
657         callout_init(&sc->an_stat_timer);
658         sc->an_associated = 0;
659         sc->an_monitor = 0;
660         sc->an_was_monitor = 0;
661         sc->an_flash_buffer = NULL;
662
663         ifp->if_softc = sc;
664         if_initname(ifp, device_get_name(dev), device_get_unit(dev));
665
666         /* Reset the NIC. */
667         an_reset(sc);
668         if (sc->mpi350) {
669                 error = an_init_mpi350_desc(sc);
670                 if (error)
671                         return(error);
672         }
673
674         /* Load factory config */
675         if (an_cmd(sc, AN_CMD_READCFG, 0)) {
676                 device_printf(dev, "failed to load config data\n");
677                 return(EIO);
678         }
679
680         /* Read the current configuration */
681         sc->an_config.an_type = AN_RID_GENCONFIG;
682         sc->an_config.an_len = sizeof(struct an_ltv_genconfig);
683         if (an_read_record(sc, (struct an_ltv_gen *)&sc->an_config)) {
684                 device_printf(dev, "read record failed\n");
685                 return(EIO);
686         }
687
688         /* Read the card capabilities */
689         sc->an_caps.an_type = AN_RID_CAPABILITIES;
690         sc->an_caps.an_len = sizeof(struct an_ltv_caps);
691         if (an_read_record(sc, (struct an_ltv_gen *)&sc->an_caps)) {
692                 device_printf(dev, "read record failed\n");
693                 return(EIO);
694         }
695
696         /* Read ssid list */
697         sc->an_ssidlist.an_type = AN_RID_SSIDLIST;
698         sc->an_ssidlist.an_len = sizeof(struct an_ltv_ssidlist_new);
699         if (an_read_record(sc, (struct an_ltv_gen *)&sc->an_ssidlist)) {
700                 device_printf(dev, "read record failed\n");
701                 return(EIO);
702         }
703
704         /* Read AP list */
705         sc->an_aplist.an_type = AN_RID_APLIST;
706         sc->an_aplist.an_len = sizeof(struct an_ltv_aplist);
707         if (an_read_record(sc, (struct an_ltv_gen *)&sc->an_aplist)) {
708                 device_printf(dev, "read record failed\n");
709                 return(EIO);
710         }
711
712 #ifdef ANCACHE
713         /* Read the RSSI <-> dBm map */
714         sc->an_have_rssimap = 0;
715         if (sc->an_caps.an_softcaps & 8) {
716                 sc->an_rssimap.an_type = AN_RID_RSSI_MAP;
717                 sc->an_rssimap.an_len = sizeof(struct an_ltv_rssi_map);
718                 if (an_read_record(sc, (struct an_ltv_gen *)&sc->an_rssimap)) {
719                         device_printf(dev, "unable to get RSSI <-> dBM map\n");
720                 } else {
721                         device_printf(dev, "got RSSI <-> dBM map\n");
722                         sc->an_have_rssimap = 1;
723                 }
724         } else {
725                 device_printf(dev, "no RSSI <-> dBM map\n");
726         }
727 #endif
728
729         ifp->if_mtu = ETHERMTU;
730         ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
731         ifp->if_ioctl = an_ioctl;
732         ifp->if_start = an_start;
733         ifp->if_watchdog = an_watchdog;
734         ifp->if_init = an_init;
735         ifp->if_baudrate = 10000000;
736         ifq_set_maxlen(&ifp->if_snd, IFQ_MAXLEN);
737         ifq_set_ready(&ifp->if_snd);
738
739         bzero(sc->an_config.an_nodename, sizeof(sc->an_config.an_nodename));
740         bcopy(AN_DEFAULT_NODENAME, sc->an_config.an_nodename,
741             sizeof(AN_DEFAULT_NODENAME) - 1);
742
743         bzero(sc->an_ssidlist.an_entry[0].an_ssid,
744               sizeof(sc->an_ssidlist.an_entry[0].an_ssid));
745         bcopy(AN_DEFAULT_NETNAME, sc->an_ssidlist.an_entry[0].an_ssid,
746               sizeof(AN_DEFAULT_NETNAME) - 1);
747         sc->an_ssidlist.an_entry[0].an_len = strlen(AN_DEFAULT_NETNAME);
748
749         sc->an_config.an_opmode =
750             AN_OPMODE_INFRASTRUCTURE_STATION;
751
752         sc->an_tx_rate = 0;
753         bzero((char *)&sc->an_stats, sizeof(sc->an_stats));
754
755         ifmedia_init(&sc->an_ifmedia, 0, an_media_change, an_media_status);
756 #define ADD(m, c)       ifmedia_add(&sc->an_ifmedia, (m), (c), NULL)
757         ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS1,
758             IFM_IEEE80211_ADHOC, 0), 0);
759         ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS1, 0, 0), 0);
760         ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS2,
761             IFM_IEEE80211_ADHOC, 0), 0);
762         ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS2, 0, 0), 0);
763         if (sc->an_caps.an_rates[2] == AN_RATE_5_5MBPS) {
764                 ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS5,
765                     IFM_IEEE80211_ADHOC, 0), 0);
766                 ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS5, 0, 0), 0);
767         }
768         if (sc->an_caps.an_rates[3] == AN_RATE_11MBPS) {
769                 ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS11,
770                     IFM_IEEE80211_ADHOC, 0), 0);
771                 ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS11, 0, 0), 0);
772         }
773         ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_AUTO,
774             IFM_IEEE80211_ADHOC, 0), 0);
775         ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_AUTO, 0, 0), 0);
776 #undef  ADD
777         ifmedia_set(&sc->an_ifmedia, IFM_MAKEWORD(IFM_IEEE80211, IFM_AUTO,
778             0, 0));
779
780         /*
781          * Call MI attach routine.
782          */
783         ether_ifattach(ifp, sc->an_caps.an_oemaddr, NULL);
784
785         return(0);
786 }
787
788 int
789 an_detach(device_t dev)
790 {
791         struct an_softc *sc = device_get_softc(dev);
792         struct ifnet *ifp = &sc->arpcom.ac_if;
793
794         lwkt_serialize_enter(ifp->if_serializer);
795         an_stop(sc);
796         bus_teardown_intr(dev, sc->irq_res, sc->irq_handle);
797         lwkt_serialize_exit(ifp->if_serializer);
798
799         ifmedia_removeall(&sc->an_ifmedia);
800         ether_ifdetach(ifp);
801         an_release_resources(dev);
802         return 0;
803 }
804
805 static void
806 an_rxeof(struct an_softc *sc)
807 {
808         struct ifnet   *ifp;
809         struct ether_header *eh;
810         struct ieee80211_frame *ih;
811         struct an_rxframe rx_frame;
812         struct an_rxframe_802_3 rx_frame_802_3;
813         struct mbuf    *m;
814         int             len, id, error = 0, i, count = 0;
815         int             ieee80211_header_len;
816         u_char          *bpf_buf;
817         u_short         fc1;
818         struct an_card_rx_desc an_rx_desc;
819         u_int8_t        *buf;
820
821         ifp = &sc->arpcom.ac_if;
822
823         if (!sc->mpi350) {
824                 id = CSR_READ_2(sc, AN_RX_FID);
825
826                 if (sc->an_monitor && (ifp->if_flags & IFF_PROMISC)) {
827                         /* read raw 802.11 packet */
828                         bpf_buf = sc->buf_802_11;
829
830                         /* read header */
831                         if (an_read_data(sc, id, 0x0, (caddr_t)&rx_frame,
832                                          sizeof(rx_frame))) {
833                                 ifp->if_ierrors++;
834                                 return;
835                         }
836
837                         /*
838                          * skip beacon by default since this increases the
839                          * system load a lot
840                          */
841
842                         if (!(sc->an_monitor & AN_MONITOR_INCLUDE_BEACON) &&
843                             (rx_frame.an_frame_ctl & 
844                              IEEE80211_FC0_SUBTYPE_BEACON)) {
845                                 return;
846                         }
847
848                         if (sc->an_monitor & AN_MONITOR_AIRONET_HEADER) {
849                                 len = rx_frame.an_rx_payload_len
850                                         + sizeof(rx_frame);
851                                 /* Check for insane frame length */
852                                 if (len > sizeof(sc->buf_802_11)) {
853                                         if_printf(ifp,
854                                                   "oversized packet received "
855                                                   "(%d, %d)\n", len, MCLBYTES);
856                                         ifp->if_ierrors++;
857                                         return;
858                                 }
859
860                                 bcopy((char *)&rx_frame,
861                                       bpf_buf, sizeof(rx_frame));
862
863                                 error = an_read_data(sc, id, sizeof(rx_frame),
864                                             (caddr_t)bpf_buf+sizeof(rx_frame),
865                                             rx_frame.an_rx_payload_len);
866                         } else {
867                                 fc1=rx_frame.an_frame_ctl >> 8;
868                                 ieee80211_header_len = 
869                                         sizeof(struct ieee80211_frame);
870                                 if ((fc1 & IEEE80211_FC1_DIR_TODS) &&
871                                     (fc1 & IEEE80211_FC1_DIR_FROMDS)) {
872                                         ieee80211_header_len += ETHER_ADDR_LEN;
873                                 }
874
875                                 len = rx_frame.an_rx_payload_len
876                                         + ieee80211_header_len;
877                                 /* Check for insane frame length */
878                                 if (len > sizeof(sc->buf_802_11)) {
879                                         if_printf(ifp,
880                                                   "oversized packet received "
881                                                   "(%d, %d)\n", len, MCLBYTES);
882                                         ifp->if_ierrors++;
883                                         return;
884                                 }
885
886                                 ih = (struct ieee80211_frame *)bpf_buf;
887
888                                 bcopy((char *)&rx_frame.an_frame_ctl,
889                                       (char *)ih, ieee80211_header_len);
890
891                                 error = an_read_data(sc, id, sizeof(rx_frame) +
892                                             rx_frame.an_gaplen,
893                                             (caddr_t)ih +ieee80211_header_len,
894                                             rx_frame.an_rx_payload_len);
895                         }
896                         BPF_TAP(ifp, bpf_buf, len);
897                 } else {
898                         m = m_getcl(MB_DONTWAIT, MT_DATA, M_PKTHDR);
899                         if (m == NULL) {
900                                 ifp->if_ierrors++;
901                                 return;
902                         }
903                         m->m_pkthdr.rcvif = ifp;
904                         /* Read Ethernet encapsulated packet */
905
906 #ifdef ANCACHE
907                         /* Read NIC frame header */
908                         if (an_read_data(sc, id, 0, (caddr_t)&rx_frame, 
909                                          sizeof(rx_frame))) {
910                                 ifp->if_ierrors++;
911                                 return;
912                         }
913 #endif
914                         /* Read in the 802_3 frame header */
915                         if (an_read_data(sc, id, 0x34, 
916                                          (caddr_t)&rx_frame_802_3,
917                                          sizeof(rx_frame_802_3))) {
918                                 ifp->if_ierrors++;
919                                 return;
920                         }
921                         if (rx_frame_802_3.an_rx_802_3_status != 0) {
922                                 ifp->if_ierrors++;
923                                 return;
924                         }
925                         /* Check for insane frame length */
926                         len = rx_frame_802_3.an_rx_802_3_payload_len;
927                         if (len > sizeof(sc->buf_802_11)) {
928                                 if_printf(ifp,
929                                     "oversized packet received (%d, %d)\n",
930                                     len, MCLBYTES);
931                                 ifp->if_ierrors++;
932                                 return;
933                         }
934                         m->m_pkthdr.len = m->m_len =
935                                 rx_frame_802_3.an_rx_802_3_payload_len + 12;
936
937                         eh = mtod(m, struct ether_header *);
938
939                         bcopy((char *)&rx_frame_802_3.an_rx_dst_addr,
940                               (char *)&eh->ether_dhost, ETHER_ADDR_LEN);
941                         bcopy((char *)&rx_frame_802_3.an_rx_src_addr,
942                               (char *)&eh->ether_shost, ETHER_ADDR_LEN);
943
944                         /* in mbuf header type is just before payload */
945                         error = an_read_data(sc, id, 0x44, 
946                                     (caddr_t)&(eh->ether_type),
947                                     rx_frame_802_3.an_rx_802_3_payload_len);
948
949                         if (error) {
950                                 m_freem(m);
951                                 ifp->if_ierrors++;
952                                 return;
953                         }
954                         ifp->if_ipackets++;
955
956 #ifdef ANCACHE
957                         an_cache_store(sc, m,
958                                 rx_frame.an_rx_signal_strength,
959                                 rx_frame.an_rsvd0);
960 #endif
961                         ifp->if_input(ifp, m);
962                 }
963
964         } else { /* MPI-350 */
965                 for (count = 0; count < AN_MAX_RX_DESC; count++){
966                         for (i = 0; i < sizeof(an_rx_desc) / 4; i++)
967                                 ((u_int32_t*)&an_rx_desc)[i] 
968                                         = CSR_MEM_AUX_READ_4(sc, 
969                                                 AN_RX_DESC_OFFSET 
970                                                 + (count * sizeof(an_rx_desc))
971                                                 + (i * 4));
972
973                         if (an_rx_desc.an_done && !an_rx_desc.an_valid) {
974                                 buf = sc->an_rx_buffer[count].an_dma_vaddr;
975
976                                 m = m_getcl(MB_DONTWAIT, MT_DATA, M_PKTHDR);
977                                 if (m == NULL) {
978                                         ifp->if_ierrors++;
979                                         return;
980                                 }
981                                 m->m_pkthdr.rcvif = ifp;
982                                 /* Read Ethernet encapsulated packet */
983
984                                 /* 
985                                  * No ANCACHE support since we just get back
986                                  * an Ethernet packet no 802.11 info
987                                  */
988 #if 0
989 #ifdef ANCACHE
990                                 /* Read NIC frame header */
991                                 bcopy(buf, (caddr_t)&rx_frame, 
992                                       sizeof(rx_frame));
993 #endif
994 #endif
995                                 /* Check for insane frame length */
996                                 len = an_rx_desc.an_len + 12;
997                                 if (len > MCLBYTES) {
998                                         if_printf(ifp,
999                                                   "oversized packet received "
1000                                                   "(%d, %d)\n", len, MCLBYTES);
1001                                         ifp->if_ierrors++;
1002                                         return;
1003                                 }
1004
1005                                 m->m_pkthdr.len = m->m_len =
1006                                         an_rx_desc.an_len + 12;
1007                                 
1008                                 eh = mtod(m, struct ether_header *);
1009                                 
1010                                 bcopy(buf, (char *)eh,
1011                                       m->m_pkthdr.len);
1012                                 
1013                                 ifp->if_ipackets++;
1014                                 
1015 #if 0
1016 #ifdef ANCACHE
1017                                 an_cache_store(sc, m, 
1018                                         rx_frame.an_rx_signal_strength,
1019                                         rx_frame.an_rsvd0);
1020 #endif
1021 #endif
1022                                 ifp->if_input(ifp, m);
1023                         
1024                                 an_rx_desc.an_valid = 1;
1025                                 an_rx_desc.an_len = AN_RX_BUFFER_SIZE;
1026                                 an_rx_desc.an_done = 0;
1027                                 an_rx_desc.an_phys = 
1028                                         sc->an_rx_buffer[count].an_dma_paddr;
1029                         
1030                                 for (i = 0; i < sizeof(an_rx_desc) / 4; i++)
1031                                         CSR_MEM_AUX_WRITE_4(sc, 
1032                                                 AN_RX_DESC_OFFSET 
1033                                                 + (count * sizeof(an_rx_desc))
1034                                                 + (i * 4),
1035                                                 ((u_int32_t*)&an_rx_desc)[i]);
1036                                 
1037                         } else {
1038                                 if_printf(ifp, "Didn't get valid RX packet "
1039                                           "%x %x %d\n",
1040                                           an_rx_desc.an_done,
1041                                           an_rx_desc.an_valid,
1042                                           an_rx_desc.an_len);
1043                         }
1044                 }
1045         }
1046 }
1047
1048 static void
1049 an_txeof(struct an_softc *sc, int status)
1050 {
1051         struct ifnet            *ifp;
1052         int                     id, i;
1053
1054         ifp = &sc->arpcom.ac_if;
1055
1056         ifp->if_timer = 0;
1057         ifp->if_flags &= ~IFF_OACTIVE;
1058
1059         if (!sc->mpi350) {
1060                 id = CSR_READ_2(sc, AN_TX_CMP_FID(sc->mpi350));
1061
1062                 if (status & AN_EV_TX_EXC) {
1063                         ifp->if_oerrors++;
1064                 } else
1065                         ifp->if_opackets++;
1066
1067                 for (i = 0; i < AN_TX_RING_CNT; i++) {
1068                         if (id == sc->an_rdata.an_tx_ring[i]) {
1069                                 sc->an_rdata.an_tx_ring[i] = 0;
1070                                 break;
1071                         }
1072                 }
1073
1074                 AN_INC(sc->an_rdata.an_tx_cons, AN_TX_RING_CNT);
1075         } else { /* MPI 350 */
1076                 id = CSR_READ_2(sc, AN_TX_CMP_FID(sc->mpi350));
1077                 if (!sc->an_rdata.an_tx_empty){
1078                         if (status & AN_EV_TX_EXC) {
1079                                 ifp->if_oerrors++;
1080                         } else
1081                                 ifp->if_opackets++;
1082                         AN_INC(sc->an_rdata.an_tx_cons, AN_MAX_TX_DESC);
1083                         if (sc->an_rdata.an_tx_prod ==
1084                             sc->an_rdata.an_tx_cons)
1085                                 sc->an_rdata.an_tx_empty = 1;
1086                 }
1087         }
1088 }
1089
1090 /*
1091  * We abuse the stats updater to check the current NIC status. This
1092  * is important because we don't want to allow transmissions until
1093  * the NIC has synchronized to the current cell (either as the master
1094  * in an ad-hoc group, or as a station connected to an access point).
1095  */
1096 static void
1097 an_stats_update(void *xsc)
1098 {
1099         struct an_softc         *sc;
1100         struct ifnet            *ifp;
1101
1102         sc = xsc;
1103         ifp = &sc->arpcom.ac_if;
1104
1105         lwkt_serialize_enter(sc->arpcom.ac_if.if_serializer);
1106
1107         sc->an_status.an_type = AN_RID_STATUS;
1108         sc->an_status.an_len = sizeof(struct an_ltv_status);
1109         an_read_record(sc, (struct an_ltv_gen *)&sc->an_status);
1110
1111         if (sc->an_status.an_opmode & AN_STATUS_OPMODE_IN_SYNC)
1112                 sc->an_associated = 1;
1113         else
1114                 sc->an_associated = 0;
1115
1116         /* Don't do this while we're not transmitting */
1117         if ((ifp->if_flags & IFF_OACTIVE) == 0) {
1118                 sc->an_stats.an_len = sizeof(struct an_ltv_stats);
1119                 sc->an_stats.an_type = AN_RID_32BITS_CUM;
1120                 an_read_record(sc, (struct an_ltv_gen *)&sc->an_stats.an_len);
1121         }
1122
1123         callout_reset(&sc->an_stat_timer, hz, an_stats_update, sc);
1124
1125         lwkt_serialize_exit(sc->arpcom.ac_if.if_serializer);
1126 }
1127
1128 void
1129 an_intr(void *xsc)
1130 {
1131         struct an_softc         *sc;
1132         struct ifnet            *ifp;
1133         u_int16_t               status;
1134
1135         sc = (struct an_softc*)xsc;
1136
1137         ifp = &sc->arpcom.ac_if;
1138
1139         /* Disable interrupts. */
1140         CSR_WRITE_2(sc, AN_INT_EN(sc->mpi350), 0);
1141
1142         status = CSR_READ_2(sc, AN_EVENT_STAT(sc->mpi350));
1143         CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), ~AN_INTRS(sc->mpi350));
1144
1145         if (status & AN_EV_MIC)
1146                 CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), AN_EV_MIC);
1147
1148         if (status & AN_EV_LINKSTAT) {
1149                 if (CSR_READ_2(sc, AN_LINKSTAT(sc->mpi350)) 
1150                     == AN_LINKSTAT_ASSOCIATED)
1151                         sc->an_associated = 1;
1152                 else
1153                         sc->an_associated = 0;
1154                 CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), AN_EV_LINKSTAT);
1155         }
1156
1157         if (status & AN_EV_RX) {
1158                 an_rxeof(sc);
1159                 CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), AN_EV_RX);
1160         }
1161
1162         if (sc->mpi350 && status & AN_EV_TX_CPY) {
1163                 an_txeof(sc, status);
1164                 CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), AN_EV_TX_CPY);
1165         }
1166
1167         if (status & AN_EV_TX) {
1168                 an_txeof(sc, status);
1169                 CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), AN_EV_TX);
1170         }
1171
1172         if (status & AN_EV_TX_EXC) {
1173                 an_txeof(sc, status);
1174                 CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), AN_EV_TX_EXC);
1175         }
1176
1177         if (status & AN_EV_ALLOC)
1178                 CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), AN_EV_ALLOC);
1179
1180         /* Re-enable interrupts. */
1181         CSR_WRITE_2(sc, AN_INT_EN(sc->mpi350), AN_INTRS(sc->mpi350));
1182
1183         if ((ifp->if_flags & IFF_UP) && !ifq_is_empty(&ifp->if_snd))
1184                 an_start(ifp);
1185
1186         return;
1187 }
1188
1189 static int
1190 an_cmd_struct(struct an_softc *sc, struct an_command *cmd,
1191               struct an_reply *reply)
1192 {
1193         int                     i;
1194
1195         for (i = 0; i != AN_TIMEOUT; i++) {
1196                 if (CSR_READ_2(sc, AN_COMMAND(sc->mpi350)) & AN_CMD_BUSY) {
1197                         DELAY(1000);
1198                 } else
1199                         break;
1200         }
1201         if( i == AN_TIMEOUT) {
1202                 kprintf("BUSY\n");
1203                 return(ETIMEDOUT);
1204         }
1205
1206         CSR_WRITE_2(sc, AN_PARAM0(sc->mpi350), cmd->an_parm0);
1207         CSR_WRITE_2(sc, AN_PARAM1(sc->mpi350), cmd->an_parm1);
1208         CSR_WRITE_2(sc, AN_PARAM2(sc->mpi350), cmd->an_parm2);
1209         CSR_WRITE_2(sc, AN_COMMAND(sc->mpi350), cmd->an_cmd);
1210
1211         for (i = 0; i < AN_TIMEOUT; i++) {
1212                 if (CSR_READ_2(sc, AN_EVENT_STAT(sc->mpi350)) & AN_EV_CMD)
1213                         break;
1214                 DELAY(1000);
1215         }
1216
1217         reply->an_resp0 = CSR_READ_2(sc, AN_RESP0(sc->mpi350));
1218         reply->an_resp1 = CSR_READ_2(sc, AN_RESP1(sc->mpi350));
1219         reply->an_resp2 = CSR_READ_2(sc, AN_RESP2(sc->mpi350));
1220         reply->an_status = CSR_READ_2(sc, AN_STATUS(sc->mpi350));
1221
1222         if (CSR_READ_2(sc, AN_COMMAND(sc->mpi350)) & AN_CMD_BUSY)
1223                 CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), AN_EV_CLR_STUCK_BUSY);
1224
1225         /* Ack the command */
1226         CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), AN_EV_CMD);
1227
1228         if (i == AN_TIMEOUT)
1229                 return(ETIMEDOUT);
1230
1231         return(0);
1232 }
1233
1234 static int
1235 an_cmd(struct an_softc *sc, int cmd, int val)
1236 {
1237         int                     i, s = 0;
1238
1239         CSR_WRITE_2(sc, AN_PARAM0(sc->mpi350), val);
1240         CSR_WRITE_2(sc, AN_PARAM1(sc->mpi350), 0);
1241         CSR_WRITE_2(sc, AN_PARAM2(sc->mpi350), 0);
1242         CSR_WRITE_2(sc, AN_COMMAND(sc->mpi350), cmd);
1243
1244         for (i = 0; i < AN_TIMEOUT; i++) {
1245                 if (CSR_READ_2(sc, AN_EVENT_STAT(sc->mpi350)) & AN_EV_CMD)
1246                         break;
1247                 else {
1248                         if (CSR_READ_2(sc, AN_COMMAND(sc->mpi350)) == cmd)
1249                                 CSR_WRITE_2(sc, AN_COMMAND(sc->mpi350), cmd);
1250                 }
1251         }
1252
1253         for (i = 0; i < AN_TIMEOUT; i++) {
1254                 CSR_READ_2(sc, AN_RESP0(sc->mpi350));
1255                 CSR_READ_2(sc, AN_RESP1(sc->mpi350));
1256                 CSR_READ_2(sc, AN_RESP2(sc->mpi350));
1257                 s = CSR_READ_2(sc, AN_STATUS(sc->mpi350));
1258                 if ((s & AN_STAT_CMD_CODE) == (cmd & AN_STAT_CMD_CODE))
1259                         break;
1260         }
1261
1262         /* Ack the command */
1263         CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), AN_EV_CMD);
1264
1265         if (CSR_READ_2(sc, AN_COMMAND(sc->mpi350)) & AN_CMD_BUSY)
1266                 CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), AN_EV_CLR_STUCK_BUSY);
1267
1268         if (i == AN_TIMEOUT)
1269                 return(ETIMEDOUT);
1270
1271         return(0);
1272 }
1273
1274 /*
1275  * This reset sequence may look a little strange, but this is the
1276  * most reliable method I've found to really kick the NIC in the
1277  * head and force it to reboot correctly.
1278  */
1279 static void
1280 an_reset(struct an_softc *sc)
1281 {
1282         an_cmd(sc, AN_CMD_ENABLE, 0);
1283         an_cmd(sc, AN_CMD_FW_RESTART, 0);
1284         an_cmd(sc, AN_CMD_NOOP2, 0);
1285
1286         if (an_cmd(sc, AN_CMD_FORCE_SYNCLOSS, 0) == ETIMEDOUT)
1287                 if_printf(&sc->arpcom.ac_if, "reset failed\n");
1288
1289         an_cmd(sc, AN_CMD_DISABLE, 0);
1290
1291         return;
1292 }
1293
1294 /*
1295  * Read an LTV record from the NIC.
1296  */
1297 static int
1298 an_read_record(struct an_softc *sc, struct an_ltv_gen *ltv)
1299 {
1300         struct an_ltv_gen       *an_ltv;
1301         struct an_card_rid_desc an_rid_desc;
1302         struct an_command       cmd;
1303         struct an_reply         reply;
1304         u_int16_t               *ptr;
1305         u_int8_t                *ptr2;
1306         int                     i, len;
1307
1308         if (ltv->an_len < 4 || ltv->an_type == 0)
1309                 return(EINVAL);
1310
1311         if (!sc->mpi350){
1312                 /* Tell the NIC to enter record read mode. */
1313                 if (an_cmd(sc, AN_CMD_ACCESS|AN_ACCESS_READ, ltv->an_type)) {
1314                         if_printf(&sc->arpcom.ac_if, "RID access failed\n");
1315                         return(EIO);
1316                 }
1317
1318                 /* Seek to the record. */
1319                 if (an_seek(sc, ltv->an_type, 0, AN_BAP1)) {
1320                         if_printf(&sc->arpcom.ac_if, "seek to record failed\n");
1321                         return(EIO);
1322                 }
1323
1324                 /*
1325                  * Read the length and record type and make sure they
1326                  * match what we expect (this verifies that we have enough
1327                  * room to hold all of the returned data).
1328                  * Length includes type but not length.
1329                  */
1330                 len = CSR_READ_2(sc, AN_DATA1);
1331                 if (len > (ltv->an_len - 2)) {
1332                         if_printf(&sc->arpcom.ac_if,
1333                                   "record length mismatch -- expected %d, "
1334                                   "got %d for Rid %x\n",
1335                                   ltv->an_len - 2, len, ltv->an_type);
1336                         len = ltv->an_len - 2;
1337                 } else {
1338                         ltv->an_len = len + 2;
1339                 }
1340
1341                 /* Now read the data. */
1342                 len -= 2;       /* skip the type */
1343                 ptr = &ltv->an_val;
1344                 for (i = len; i > 1; i -= 2)
1345                         *ptr++ = CSR_READ_2(sc, AN_DATA1);
1346                 if (i) {
1347                         ptr2 = (u_int8_t *)ptr;
1348                         *ptr2 = CSR_READ_1(sc, AN_DATA1);
1349                 }
1350         } else { /* MPI-350 */
1351                 if (sc->an_rid_buffer.an_dma_vaddr == NULL)
1352                         return(EIO);
1353                 an_rid_desc.an_valid = 1;
1354                 an_rid_desc.an_len = AN_RID_BUFFER_SIZE;
1355                 an_rid_desc.an_rid = 0;
1356                 an_rid_desc.an_phys = sc->an_rid_buffer.an_dma_paddr;
1357                 bzero(sc->an_rid_buffer.an_dma_vaddr, AN_RID_BUFFER_SIZE);
1358
1359                 bzero(&cmd, sizeof(cmd));
1360                 bzero(&reply, sizeof(reply));
1361                 cmd.an_cmd = AN_CMD_ACCESS|AN_ACCESS_READ;
1362                 cmd.an_parm0 = ltv->an_type;
1363
1364                 for (i = 0; i < sizeof(an_rid_desc) / 4; i++)
1365                         CSR_MEM_AUX_WRITE_4(sc, AN_HOST_DESC_OFFSET + i * 4, 
1366                                             ((u_int32_t*)&an_rid_desc)[i]);
1367
1368                 if (an_cmd_struct(sc, &cmd, &reply)
1369                     || reply.an_status & AN_CMD_QUAL_MASK) {
1370                         if_printf(&sc->arpcom.ac_if,
1371                                   "failed to read RID %x %x %x %x %x, %d\n", 
1372                                   ltv->an_type,
1373                                   reply.an_status,
1374                                   reply.an_resp0,
1375                                   reply.an_resp1,
1376                                   reply.an_resp2,
1377                                   i);
1378                         return(EIO);
1379                 }
1380
1381                 an_ltv = (struct an_ltv_gen *)sc->an_rid_buffer.an_dma_vaddr;
1382                 if (an_ltv->an_len + 2 < an_rid_desc.an_len) {
1383                         an_rid_desc.an_len = an_ltv->an_len;
1384                 }
1385
1386                 len = an_rid_desc.an_len;
1387                 if (len > (ltv->an_len - 2)) {
1388                         if_printf(&sc->arpcom.ac_if,
1389                                   "record length mismatch -- expected %d, "
1390                                   "got %d for Rid %x\n",
1391                                   ltv->an_len - 2, len, ltv->an_type);
1392                         len = ltv->an_len - 2;
1393                 } else {
1394                         ltv->an_len = len + 2;
1395                 }
1396                 bcopy(&an_ltv->an_type, &ltv->an_val, len);
1397         }
1398
1399         if (an_dump)
1400                 an_dump_record(sc, ltv, "Read");
1401
1402         return(0);
1403 }
1404
1405 /*
1406  * Same as read, except we inject data instead of reading it.
1407  */
1408 static int
1409 an_write_record(struct an_softc *sc, struct an_ltv_gen *ltv)
1410 {
1411         struct an_card_rid_desc an_rid_desc;
1412         struct an_command       cmd;
1413         struct an_reply         reply;
1414         u_int16_t               *ptr;
1415         u_int8_t                *ptr2;
1416         int                     i, len;
1417
1418         if (an_dump)
1419                 an_dump_record(sc, ltv, "Write");
1420
1421         if (!sc->mpi350){
1422                 if (an_cmd(sc, AN_CMD_ACCESS|AN_ACCESS_READ, ltv->an_type))
1423                         return(EIO);
1424
1425                 if (an_seek(sc, ltv->an_type, 0, AN_BAP1))
1426                         return(EIO);
1427
1428                 /*
1429                  * Length includes type but not length.
1430                  */
1431                 len = ltv->an_len - 2;
1432                 CSR_WRITE_2(sc, AN_DATA1, len);
1433
1434                 len -= 2;       /* skip the type */
1435                 ptr = &ltv->an_val;
1436                 for (i = len; i > 1; i -= 2)
1437                         CSR_WRITE_2(sc, AN_DATA1, *ptr++);
1438                 if (i) {
1439                         ptr2 = (u_int8_t *)ptr;
1440                         CSR_WRITE_1(sc, AN_DATA0, *ptr2);
1441                 }
1442
1443                 if (an_cmd(sc, AN_CMD_ACCESS|AN_ACCESS_WRITE, ltv->an_type))
1444                         return(EIO);
1445         } else { 
1446                 /* MPI-350 */
1447
1448                 for (i = 0; i != AN_TIMEOUT; i++) {
1449                         if (CSR_READ_2(sc, AN_COMMAND(sc->mpi350)) 
1450                             & AN_CMD_BUSY) {
1451                                 DELAY(10);
1452                         } else
1453                                 break;
1454                 }
1455                 if (i == AN_TIMEOUT) {
1456                         kprintf("BUSY\n");
1457                 }
1458
1459                 an_rid_desc.an_valid = 1;
1460                 an_rid_desc.an_len = ltv->an_len - 2;
1461                 an_rid_desc.an_rid = ltv->an_type;
1462                 an_rid_desc.an_phys = sc->an_rid_buffer.an_dma_paddr;
1463
1464                 bcopy(&ltv->an_type, sc->an_rid_buffer.an_dma_vaddr,
1465                       an_rid_desc.an_len);
1466
1467                 bzero(&cmd,sizeof(cmd));
1468                 bzero(&reply,sizeof(reply));
1469                 cmd.an_cmd = AN_CMD_ACCESS|AN_ACCESS_WRITE;
1470                 cmd.an_parm0 = ltv->an_type;
1471
1472                 for (i = 0; i < sizeof(an_rid_desc) / 4; i++)
1473                         CSR_MEM_AUX_WRITE_4(sc, AN_HOST_DESC_OFFSET + i * 4, 
1474                                             ((u_int32_t*)&an_rid_desc)[i]);
1475
1476                 if ((i = an_cmd_struct(sc, &cmd, &reply))) {
1477                         if_printf(&sc->arpcom.ac_if,
1478                             "failed to write RID 1 %x %x %x %x %x, %d\n", 
1479                             ltv->an_type, 
1480                             reply.an_status,
1481                             reply.an_resp0,
1482                             reply.an_resp1,
1483                             reply.an_resp2,
1484                             i);
1485                         return(EIO);
1486                 }
1487
1488                 if (reply.an_status & AN_CMD_QUAL_MASK) {
1489                         if_printf(&sc->arpcom.ac_if,
1490                             "failed to write RID 2 %x %x %x %x %x, %d\n", 
1491                             ltv->an_type, 
1492                             reply.an_status,
1493                             reply.an_resp0,
1494                             reply.an_resp1,
1495                             reply.an_resp2,
1496                             i);
1497                         return(EIO);
1498                 }
1499         }
1500
1501         return(0);
1502 }
1503
1504 static void
1505 an_dump_record(struct an_softc *sc, struct an_ltv_gen *ltv, char *string)
1506 {
1507         u_int8_t                *ptr2;
1508         int                     len;
1509         int                     i;
1510         int                     count = 0;
1511         char                    buf[17], temp;
1512
1513         len = ltv->an_len - 4;
1514         if_printf(&sc->arpcom.ac_if, "RID %4x, Length %4d, Mode %s\n",
1515                   ltv->an_type, ltv->an_len - 4, string);
1516
1517         if (an_dump == 1 || (an_dump == ltv->an_type)) {
1518                 if_printf(&sc->arpcom.ac_if, "\t");
1519                 bzero(buf,sizeof(buf));
1520
1521                 ptr2 = (u_int8_t *)&ltv->an_val;
1522                 for (i = len; i > 0; i--) {
1523                         kprintf("%02x ", *ptr2);
1524
1525                         temp = *ptr2++;
1526                         if (temp >= ' ' && temp <= '~')
1527                                 buf[count] = temp;
1528                         else if (temp >= 'A' && temp <= 'Z')
1529                                 buf[count] = temp;
1530                         else
1531                                 buf[count] = '.';
1532                         if (++count == 16) {
1533                                 count = 0;
1534                                 kprintf("%s\n",buf);
1535                                 if_printf(&sc->arpcom.ac_if, "\t");
1536                                 bzero(buf,sizeof(buf));
1537                         }
1538                 }
1539                 for (; count != 16; count++) {
1540                         kprintf("   ");
1541                 }
1542                 kprintf(" %s\n",buf);
1543         }
1544 }
1545
1546 static int
1547 an_seek(struct an_softc *sc, int id, int off, int chan)
1548 {
1549         int                     i;
1550         int                     selreg, offreg;
1551
1552         switch (chan) {
1553         case AN_BAP0:
1554                 selreg = AN_SEL0;
1555                 offreg = AN_OFF0;
1556                 break;
1557         case AN_BAP1:
1558                 selreg = AN_SEL1;
1559                 offreg = AN_OFF1;
1560                 break;
1561         default:
1562                 if_printf(&sc->arpcom.ac_if, "invalid data path: %x\n", chan);
1563                 return(EIO);
1564         }
1565
1566         CSR_WRITE_2(sc, selreg, id);
1567         CSR_WRITE_2(sc, offreg, off);
1568
1569         for (i = 0; i < AN_TIMEOUT; i++) {
1570                 if (!(CSR_READ_2(sc, offreg) & (AN_OFF_BUSY|AN_OFF_ERR)))
1571                         break;
1572         }
1573
1574         if (i == AN_TIMEOUT)
1575                 return(ETIMEDOUT);
1576
1577         return(0);
1578 }
1579
1580 static int
1581 an_read_data(struct an_softc *sc, int id, int off, caddr_t buf, int len)
1582 {
1583         int                     i;
1584         u_int16_t               *ptr;
1585         u_int8_t                *ptr2;
1586
1587         if (off != -1) {
1588                 if (an_seek(sc, id, off, AN_BAP1))
1589                         return(EIO);
1590         }
1591
1592         ptr = (u_int16_t *)buf;
1593         for (i = len; i > 1; i -= 2)
1594                 *ptr++ = CSR_READ_2(sc, AN_DATA1);
1595         if (i) {
1596                 ptr2 = (u_int8_t *)ptr;
1597                 *ptr2 = CSR_READ_1(sc, AN_DATA1);
1598         }
1599
1600         return(0);
1601 }
1602
1603 static int
1604 an_write_data(struct an_softc *sc, int id, int off, caddr_t buf, int len)
1605 {
1606         int                     i;
1607         u_int16_t               *ptr;
1608         u_int8_t                *ptr2;
1609
1610         if (off != -1) {
1611                 if (an_seek(sc, id, off, AN_BAP0))
1612                         return(EIO);
1613         }
1614
1615         ptr = (u_int16_t *)buf;
1616         for (i = len; i > 1; i -= 2)
1617                 CSR_WRITE_2(sc, AN_DATA0, *ptr++);
1618         if (i) {
1619                 ptr2 = (u_int8_t *)ptr;
1620                 CSR_WRITE_1(sc, AN_DATA0, *ptr2);
1621         }
1622
1623         return(0);
1624 }
1625
1626 /*
1627  * Allocate a region of memory inside the NIC and zero
1628  * it out.
1629  */
1630 static int
1631 an_alloc_nicmem(struct an_softc *sc, int len, int *id)
1632 {
1633         int                     i;
1634
1635         if (an_cmd(sc, AN_CMD_ALLOC_MEM, len)) {
1636                 if_printf(&sc->arpcom.ac_if,
1637                           "failed to allocate %d bytes on NIC\n", len);
1638                 return(ENOMEM);
1639         }
1640
1641         for (i = 0; i < AN_TIMEOUT; i++) {
1642                 if (CSR_READ_2(sc, AN_EVENT_STAT(sc->mpi350)) & AN_EV_ALLOC)
1643                         break;
1644         }
1645
1646         if (i == AN_TIMEOUT)
1647                 return(ETIMEDOUT);
1648
1649         CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), AN_EV_ALLOC);
1650         *id = CSR_READ_2(sc, AN_ALLOC_FID);
1651
1652         if (an_seek(sc, *id, 0, AN_BAP0))
1653                 return(EIO);
1654
1655         for (i = 0; i < len / 2; i++)
1656                 CSR_WRITE_2(sc, AN_DATA0, 0);
1657
1658         return(0);
1659 }
1660
1661 static void
1662 an_setdef(struct an_softc *sc, struct an_req *areq)
1663 {
1664         struct ifnet            *ifp;
1665         struct an_ltv_genconfig *cfg;
1666         struct an_ltv_ssidlist_new *ssid;
1667         struct an_ltv_aplist    *ap;
1668         struct an_ltv_gen       *sp;
1669
1670         ifp = &sc->arpcom.ac_if;
1671
1672         switch (areq->an_type) {
1673         case AN_RID_GENCONFIG:
1674                 cfg = (struct an_ltv_genconfig *)areq;
1675
1676                 bcopy((char *)&cfg->an_macaddr, (char *)&sc->arpcom.ac_enaddr,
1677                     ETHER_ADDR_LEN);
1678                 bcopy((char *)&cfg->an_macaddr, IF_LLADDR(ifp), ETHER_ADDR_LEN);
1679
1680                 bcopy((char *)cfg, (char *)&sc->an_config,
1681                         sizeof(struct an_ltv_genconfig));
1682                 break;
1683         case AN_RID_SSIDLIST:
1684                 ssid = (struct an_ltv_ssidlist_new *)areq;
1685                 bcopy((char *)ssid, (char *)&sc->an_ssidlist,
1686                       sizeof(struct an_ltv_ssidlist_new));
1687                 break;
1688         case AN_RID_APLIST:
1689                 ap = (struct an_ltv_aplist *)areq;
1690                 bcopy((char *)ap, (char *)&sc->an_aplist,
1691                         sizeof(struct an_ltv_aplist));
1692                 break;
1693         case AN_RID_TX_SPEED:
1694                 sp = (struct an_ltv_gen *)areq;
1695                 sc->an_tx_rate = sp->an_val;
1696
1697                 /* Read the current configuration */
1698                 sc->an_config.an_type = AN_RID_GENCONFIG;
1699                 sc->an_config.an_len = sizeof(struct an_ltv_genconfig);
1700                 an_read_record(sc, (struct an_ltv_gen *)&sc->an_config);
1701                 cfg = &sc->an_config;
1702
1703                 /* clear other rates and set the only one we want */
1704                 bzero(cfg->an_rates, sizeof(cfg->an_rates));
1705                 cfg->an_rates[0] = sc->an_tx_rate;
1706
1707                 /* Save the new rate */
1708                 sc->an_config.an_type = AN_RID_GENCONFIG;
1709                 sc->an_config.an_len = sizeof(struct an_ltv_genconfig);
1710                 break;
1711         case AN_RID_WEP_TEMP:
1712                 /* Cache the temp keys */
1713                 bcopy(areq, 
1714                     &sc->an_temp_keys[((struct an_ltv_key *)areq)->kindex], 
1715                     sizeof(struct an_ltv_key));
1716         case AN_RID_WEP_PERM:
1717         case AN_RID_LEAPUSERNAME:
1718         case AN_RID_LEAPPASSWORD:
1719                 an_init(sc);
1720
1721                 /* Disable the MAC. */
1722                 an_cmd(sc, AN_CMD_DISABLE, 0);
1723
1724                 /* Write the key */
1725                 an_write_record(sc, (struct an_ltv_gen *)areq);
1726
1727                 /* Turn the MAC back on. */
1728                 an_cmd(sc, AN_CMD_ENABLE, 0);
1729
1730                 break;
1731         case AN_RID_MONITOR_MODE:
1732                 cfg = (struct an_ltv_genconfig *)areq;
1733                 bpfdetach(ifp);
1734                 if (ng_ether_detach_p != NULL)
1735                         (*ng_ether_detach_p) (ifp);
1736                 sc->an_monitor = cfg->an_len;
1737
1738                 if (sc->an_monitor & AN_MONITOR) {
1739                         if (sc->an_monitor & AN_MONITOR_AIRONET_HEADER) {
1740                                 bpfattach(ifp, DLT_AIRONET_HEADER,
1741                                         sizeof(struct ether_header));
1742                         } else {
1743                                 bpfattach(ifp, DLT_IEEE802_11,
1744                                         sizeof(struct ether_header));
1745                         }
1746                 } else {
1747                         bpfattach(ifp, DLT_EN10MB,
1748                                   sizeof(struct ether_header));
1749                         if (ng_ether_attach_p != NULL)
1750                                 (*ng_ether_attach_p) (ifp);
1751                 }
1752                 break;
1753         default:
1754                 if_printf(ifp, "unknown RID: %x\n", areq->an_type);
1755                 return;
1756         }
1757
1758
1759         /* Reinitialize the card. */
1760         if (ifp->if_flags)
1761                 an_init(sc);
1762
1763         return;
1764 }
1765
1766 /*
1767  * Derived from Linux driver to enable promiscious mode.
1768  */
1769
1770 static void
1771 an_promisc(struct an_softc *sc, int promisc)
1772 {
1773         if (sc->an_was_monitor)
1774                 an_reset(sc);
1775         if (sc->mpi350)
1776                 an_init_mpi350_desc(sc);        
1777         if (sc->an_monitor || sc->an_was_monitor)
1778                 an_init(sc);
1779
1780         sc->an_was_monitor = sc->an_monitor;
1781         an_cmd(sc, AN_CMD_SET_MODE, promisc ? 0xffff : 0);
1782
1783         return;
1784 }
1785
1786 static int
1787 an_ioctl(struct ifnet *ifp, u_long command, caddr_t data, struct ucred *cr)
1788 {
1789         int                     error = 0;
1790         int                     len;
1791         int                     i, max;
1792         struct an_softc         *sc;
1793         struct ifreq            *ifr;
1794         struct ieee80211req     *ireq;
1795         u_int8_t                tmpstr[IEEE80211_NWID_LEN*2];
1796         u_int8_t                *tmpptr;
1797         struct an_ltv_genconfig *config;
1798         struct an_ltv_key       *key;
1799         struct an_ltv_status    *status;
1800         struct an_ltv_ssidlist_new *ssids;
1801         int                     mode;
1802         struct aironet_ioctl    l_ioctl;
1803
1804         sc = ifp->if_softc;
1805         ifr = (struct ifreq *)data;
1806         ireq = (struct ieee80211req *)data;
1807
1808         config = (struct an_ltv_genconfig *)&sc->areq;
1809         key = (struct an_ltv_key *)&sc->areq;
1810         status = (struct an_ltv_status *)&sc->areq;
1811         ssids = (struct an_ltv_ssidlist_new *)&sc->areq;
1812
1813         switch (command) {
1814         case SIOCSIFFLAGS:
1815                 if (ifp->if_flags & IFF_UP) {
1816                         if (ifp->if_flags & IFF_RUNNING &&
1817                             ifp->if_flags & IFF_PROMISC &&
1818                             !(sc->an_if_flags & IFF_PROMISC)) {
1819                                 an_promisc(sc, 1);
1820                         } else if (ifp->if_flags & IFF_RUNNING &&
1821                             !(ifp->if_flags & IFF_PROMISC) &&
1822                             sc->an_if_flags & IFF_PROMISC) {
1823                                 an_promisc(sc, 0);
1824                         } else
1825                                 an_init(sc);
1826                 } else {
1827                         if (ifp->if_flags & IFF_RUNNING)
1828                                 an_stop(sc);
1829                 }
1830                 sc->an_if_flags = ifp->if_flags;
1831                 error = 0;
1832                 break;
1833         case SIOCSIFMEDIA:
1834         case SIOCGIFMEDIA:
1835                 error = ifmedia_ioctl(ifp, ifr, &sc->an_ifmedia, command);
1836                 break;
1837         case SIOCADDMULTI:
1838         case SIOCDELMULTI:
1839                 /* The Aironet has no multicast filter. */
1840                 error = 0;
1841                 break;
1842         case SIOCGAIRONET:
1843                 error = copyin(ifr->ifr_data, &sc->areq, sizeof(sc->areq));
1844                 if (error != 0)
1845                         break;
1846 #ifdef ANCACHE
1847                 if (sc->areq.an_type == AN_RID_ZERO_CACHE) {
1848                         error = suser_cred(cr, NULL_CRED_OKAY);
1849                         if (error)
1850                                 break;
1851                         sc->an_sigitems = sc->an_nextitem = 0;
1852                         break;
1853                 } else if (sc->areq.an_type == AN_RID_READ_CACHE) {
1854                         char *pt = (char *)&sc->areq.an_val;
1855                         bcopy((char *)&sc->an_sigitems, (char *)pt,
1856                             sizeof(int));
1857                         pt += sizeof(int);
1858                         sc->areq.an_len = sizeof(int) / 2;
1859                         bcopy((char *)&sc->an_sigcache, (char *)pt,
1860                             sizeof(struct an_sigcache) * sc->an_sigitems);
1861                         sc->areq.an_len += ((sizeof(struct an_sigcache) *
1862                             sc->an_sigitems) / 2) + 1;
1863                 } else
1864 #endif
1865                 if (an_read_record(sc, (struct an_ltv_gen *)&sc->areq)) {
1866                         error = EINVAL;
1867                         break;
1868                 }
1869                 error = copyout(&sc->areq, ifr->ifr_data, sizeof(sc->areq));
1870                 break;
1871         case SIOCSAIRONET:
1872                 if ((error = suser_cred(cr, NULL_CRED_OKAY)))
1873                         break;
1874                 error = copyin(ifr->ifr_data, &sc->areq, sizeof(sc->areq));
1875                 if (error != 0)
1876                         break;
1877                 an_setdef(sc, &sc->areq);
1878                 break;
1879         case SIOCGPRIVATE_0:              /* used by Cisco client utility */
1880                 if ((error = suser_cred(cr, NULL_CRED_OKAY)))
1881                         break;
1882                 copyin(ifr->ifr_data, &l_ioctl, sizeof(l_ioctl));
1883                 mode = l_ioctl.command;
1884
1885                 if (mode >= AIROGCAP && mode <= AIROGSTATSD32) {
1886                         error = readrids(ifp, &l_ioctl);
1887                 } else if (mode >= AIROPCAP && mode <= AIROPLEAPUSR) {
1888                         error = writerids(ifp, &l_ioctl);
1889                 } else if (mode >= AIROFLSHRST && mode <= AIRORESTART) {
1890                         error = flashcard(ifp, &l_ioctl);
1891                 } else {
1892                         error =-1;
1893                 }
1894
1895                 /* copy out the updated command info */
1896                 copyout(&l_ioctl, ifr->ifr_data, sizeof(l_ioctl));
1897
1898                 break;
1899         case SIOCGPRIVATE_1:              /* used by Cisco client utility */
1900                 if ((error = suser_cred(cr, NULL_CRED_OKAY)))
1901                         break;
1902                 copyin(ifr->ifr_data, &l_ioctl, sizeof(l_ioctl));
1903                 l_ioctl.command = 0;
1904                 error = AIROMAGIC;
1905                 copyout(&error, l_ioctl.data, sizeof(error));
1906                 error = 0;
1907                 break;
1908         case SIOCG80211:
1909                 sc->areq.an_len = sizeof(sc->areq);
1910                 /* was that a good idea DJA we are doing a short-cut */
1911                 switch (ireq->i_type) {
1912                 case IEEE80211_IOC_SSID:
1913                         if (ireq->i_val == -1) {
1914                                 sc->areq.an_type = AN_RID_STATUS;
1915                                 if (an_read_record(sc,
1916                                     (struct an_ltv_gen *)&sc->areq)) {
1917                                         error = EINVAL;
1918                                         break;
1919                                 }
1920                                 len = status->an_ssidlen;
1921                                 tmpptr = status->an_ssid;
1922                         } else if (ireq->i_val >= 0) {
1923                                 sc->areq.an_type = AN_RID_SSIDLIST;
1924                                 if (an_read_record(sc,
1925                                     (struct an_ltv_gen *)&sc->areq)) {
1926                                         error = EINVAL;
1927                                         break;
1928                                 }
1929                                 max = (sc->areq.an_len - 4)
1930                                     / sizeof(struct an_ltv_ssid_entry);
1931                                 if ( max > MAX_SSIDS ) {
1932                                         kprintf("To many SSIDs only using "
1933                                             "%d of %d\n",
1934                                             MAX_SSIDS, max);
1935                                         max = MAX_SSIDS;
1936                                 }
1937                                 if (ireq->i_val > max) {
1938                                         error = EINVAL;
1939                                         break;
1940                                 } else {
1941                                         len = ssids->an_entry[ireq->i_val].an_len;
1942                                         tmpptr = ssids->an_entry[ireq->i_val].an_ssid;
1943                                 }
1944                         } else {
1945                                 error = EINVAL;
1946                                 break;
1947                         }
1948                         if (len > IEEE80211_NWID_LEN) {
1949                                 error = EINVAL;
1950                                 break;
1951                         }
1952                         ireq->i_len = len;
1953                         bzero(tmpstr, IEEE80211_NWID_LEN);
1954                         bcopy(tmpptr, tmpstr, len);
1955                         error = copyout(tmpstr, ireq->i_data,
1956                             IEEE80211_NWID_LEN);
1957                         break;
1958                 case IEEE80211_IOC_NUMSSIDS:
1959                         sc->areq.an_len = sizeof(sc->areq);
1960                         sc->areq.an_type = AN_RID_SSIDLIST;
1961                         if (an_read_record(sc,
1962                             (struct an_ltv_gen *)&sc->areq)) {
1963                                 error = EINVAL;
1964                                 break;
1965                         }
1966                         max = (sc->areq.an_len - 4)
1967                             / sizeof(struct an_ltv_ssid_entry);
1968                         if (max > MAX_SSIDS) {
1969                                 kprintf("To many SSIDs only using "
1970                                     "%d of %d\n",
1971                                     MAX_SSIDS, max);
1972                                 max = MAX_SSIDS;
1973                         }
1974                         ireq->i_val = max;
1975                         break;
1976                 case IEEE80211_IOC_WEP:
1977                         sc->areq.an_type = AN_RID_ACTUALCFG;
1978                         if (an_read_record(sc,
1979                             (struct an_ltv_gen *)&sc->areq)) {
1980                                 error = EINVAL;
1981                                 break;
1982                         }
1983                         if (config->an_authtype & AN_AUTHTYPE_PRIVACY_IN_USE) {
1984                                 if (config->an_authtype &
1985                                     AN_AUTHTYPE_ALLOW_UNENCRYPTED)
1986                                         ireq->i_val = IEEE80211_WEP_MIXED;
1987                                 else
1988                                         ireq->i_val = IEEE80211_WEP_ON;
1989                         } else {
1990                                 ireq->i_val = IEEE80211_WEP_OFF;
1991                         }
1992                         break;
1993                 case IEEE80211_IOC_WEPKEY:
1994                         /*
1995                          * XXX: I'm not entierly convinced this is
1996                          * correct, but it's what is implemented in
1997                          * ancontrol so it will have to do until we get
1998                          * access to actual Cisco code.
1999                          */
2000                         if (ireq->i_val < 0 || ireq->i_val > 8) {
2001                                 error = EINVAL;
2002                                 break;
2003                         }
2004                         len = 0;
2005                         if (ireq->i_val < 5) {
2006                                 sc->areq.an_type = AN_RID_WEP_TEMP;
2007                                 for (i = 0; i < 5; i++) {
2008                                         if (an_read_record(sc,
2009                                             (struct an_ltv_gen *)&sc->areq)) {
2010                                                 error = EINVAL;
2011                                                 break;
2012                                         }
2013                                         if (key->kindex == 0xffff)
2014                                                 break;
2015                                         if (key->kindex == ireq->i_val)
2016                                                 len = key->klen;
2017                                         /* Required to get next entry */
2018                                         sc->areq.an_type = AN_RID_WEP_PERM;
2019                                 }
2020                                 if (error != 0)
2021                                         break;
2022                         }
2023                         /* We aren't allowed to read the value of the
2024                          * key from the card so we just output zeros
2025                          * like we would if we could read the card, but
2026                          * denied the user access.
2027                          */
2028                         bzero(tmpstr, len);
2029                         ireq->i_len = len;
2030                         error = copyout(tmpstr, ireq->i_data, len);
2031                         break;
2032                 case IEEE80211_IOC_NUMWEPKEYS:
2033                         ireq->i_val = 9; /* include home key */
2034                         break;
2035                 case IEEE80211_IOC_WEPTXKEY:
2036                         /*
2037                          * For some strange reason, you have to read all
2038                          * keys before you can read the txkey.
2039                          */
2040                         sc->areq.an_type = AN_RID_WEP_TEMP;
2041                         for (i = 0; i < 5; i++) {
2042                                 if (an_read_record(sc,
2043                                     (struct an_ltv_gen *) &sc->areq)) {
2044                                         error = EINVAL;
2045                                         break;
2046                                 }
2047                                 if (key->kindex == 0xffff)
2048                                         break;
2049                                 /* Required to get next entry */
2050                                 sc->areq.an_type = AN_RID_WEP_PERM;
2051                         }
2052                         if (error != 0)
2053                                 break;
2054
2055                         sc->areq.an_type = AN_RID_WEP_PERM;
2056                         key->kindex = 0xffff;
2057                         if (an_read_record(sc,
2058                             (struct an_ltv_gen *)&sc->areq)) {
2059                                 error = EINVAL;
2060                                 break;
2061                         }
2062                         ireq->i_val = key->mac[0];
2063                         /*
2064                          * Check for home mode.  Map home mode into
2065                          * 5th key since that is how it is stored on
2066                          * the card
2067                          */
2068                         sc->areq.an_len  = sizeof(struct an_ltv_genconfig);
2069                         sc->areq.an_type = AN_RID_GENCONFIG;
2070                         if (an_read_record(sc,
2071                             (struct an_ltv_gen *)&sc->areq)) {
2072                                 error = EINVAL;
2073                                 break;
2074                         }
2075                         if (config->an_home_product & AN_HOME_NETWORK)
2076                                 ireq->i_val = 4;
2077                         break;
2078                 case IEEE80211_IOC_AUTHMODE:
2079                         sc->areq.an_type = AN_RID_ACTUALCFG;
2080                         if (an_read_record(sc,
2081                             (struct an_ltv_gen *)&sc->areq)) {
2082                                 error = EINVAL;
2083                                 break;
2084                         }
2085                         if ((config->an_authtype & AN_AUTHTYPE_MASK) ==
2086                             AN_AUTHTYPE_NONE) {
2087                             ireq->i_val = IEEE80211_AUTH_NONE;
2088                         } else if ((config->an_authtype & AN_AUTHTYPE_MASK) ==
2089                             AN_AUTHTYPE_OPEN) {
2090                             ireq->i_val = IEEE80211_AUTH_OPEN;
2091                         } else if ((config->an_authtype & AN_AUTHTYPE_MASK) ==
2092                             AN_AUTHTYPE_SHAREDKEY) {
2093                             ireq->i_val = IEEE80211_AUTH_SHARED;
2094                         } else
2095                                 error = EINVAL;
2096                         break;
2097                 case IEEE80211_IOC_STATIONNAME:
2098                         sc->areq.an_type = AN_RID_ACTUALCFG;
2099                         if (an_read_record(sc,
2100                             (struct an_ltv_gen *)&sc->areq)) {
2101                                 error = EINVAL;
2102                                 break;
2103                         }
2104                         ireq->i_len = sizeof(config->an_nodename);
2105                         tmpptr = config->an_nodename;
2106                         bzero(tmpstr, IEEE80211_NWID_LEN);
2107                         bcopy(tmpptr, tmpstr, ireq->i_len);
2108                         error = copyout(tmpstr, ireq->i_data,
2109                             IEEE80211_NWID_LEN);
2110                         break;
2111                 case IEEE80211_IOC_CHANNEL:
2112                         sc->areq.an_type = AN_RID_STATUS;
2113                         if (an_read_record(sc,
2114                             (struct an_ltv_gen *)&sc->areq)) {
2115                                 error = EINVAL;
2116                                 break;
2117                         }
2118                         ireq->i_val = status->an_cur_channel;
2119                         break;
2120                 case IEEE80211_IOC_POWERSAVE:
2121                         sc->areq.an_type = AN_RID_ACTUALCFG;
2122                         if (an_read_record(sc,
2123                             (struct an_ltv_gen *)&sc->areq)) {
2124                                 error = EINVAL;
2125                                 break;
2126                         }
2127                         if (config->an_psave_mode == AN_PSAVE_NONE) {
2128                                 ireq->i_val = IEEE80211_POWERSAVE_OFF;
2129                         } else if (config->an_psave_mode == AN_PSAVE_CAM) {
2130                                 ireq->i_val = IEEE80211_POWERSAVE_CAM;
2131                         } else if (config->an_psave_mode == AN_PSAVE_PSP) {
2132                                 ireq->i_val = IEEE80211_POWERSAVE_PSP;
2133                         } else if (config->an_psave_mode == AN_PSAVE_PSP_CAM) {
2134                                 ireq->i_val = IEEE80211_POWERSAVE_PSP_CAM;
2135                         } else
2136                                 error = EINVAL;
2137                         break;
2138                 case IEEE80211_IOC_POWERSAVESLEEP:
2139                         sc->areq.an_type = AN_RID_ACTUALCFG;
2140                         if (an_read_record(sc,
2141                             (struct an_ltv_gen *)&sc->areq)) {
2142                                 error = EINVAL;
2143                                 break;
2144                         }
2145                         ireq->i_val = config->an_listen_interval;
2146                         break;
2147                 }
2148                 break;
2149         case SIOCS80211:
2150                 if ((error = suser_cred(cr, NULL_CRED_OKAY)))
2151                         break;
2152                 sc->areq.an_len = sizeof(sc->areq);
2153                 /*
2154                  * We need a config structure for everything but the WEP
2155                  * key management and SSIDs so we get it now so avoid
2156                  * duplicating this code every time.
2157                  */
2158                 if (ireq->i_type != IEEE80211_IOC_SSID &&
2159                     ireq->i_type != IEEE80211_IOC_WEPKEY &&
2160                     ireq->i_type != IEEE80211_IOC_WEPTXKEY) {
2161                         sc->areq.an_type = AN_RID_GENCONFIG;
2162                         if (an_read_record(sc,
2163                             (struct an_ltv_gen *)&sc->areq)) {
2164                                 error = EINVAL;
2165                                 break;
2166                         }
2167                 }
2168                 switch (ireq->i_type) {
2169                 case IEEE80211_IOC_SSID:
2170                         sc->areq.an_len = sizeof(sc->areq);
2171                         sc->areq.an_type = AN_RID_SSIDLIST;
2172                         if (an_read_record(sc,
2173                             (struct an_ltv_gen *)&sc->areq)) {
2174                                 error = EINVAL;
2175                                 break;
2176                         }
2177                         if (ireq->i_len > IEEE80211_NWID_LEN) {
2178                                 error = EINVAL;
2179                                 break;
2180                         }
2181                         max = (sc->areq.an_len - 4)
2182                             / sizeof(struct an_ltv_ssid_entry);
2183                         if (max > MAX_SSIDS) {
2184                                 kprintf("To many SSIDs only using "
2185                                     "%d of %d\n",
2186                                     MAX_SSIDS, max);
2187                                 max = MAX_SSIDS;
2188                         }
2189                         if (ireq->i_val > max) {
2190                                 error = EINVAL;
2191                                 break;
2192                         } else {
2193                                 error = copyin(ireq->i_data,
2194                                     ssids->an_entry[ireq->i_val].an_ssid, 
2195                                     ireq->i_len);
2196                                 ssids->an_entry[ireq->i_val].an_len 
2197                                     = ireq->i_len;
2198                                 break;
2199                         }
2200                         break;
2201                 case IEEE80211_IOC_WEP:
2202                         switch (ireq->i_val) {
2203                         case IEEE80211_WEP_OFF:
2204                                 config->an_authtype &=
2205                                     ~(AN_AUTHTYPE_PRIVACY_IN_USE |
2206                                     AN_AUTHTYPE_ALLOW_UNENCRYPTED);
2207                                 break;
2208                         case IEEE80211_WEP_ON:
2209                                 config->an_authtype |=
2210                                     AN_AUTHTYPE_PRIVACY_IN_USE;
2211                                 config->an_authtype &=
2212                                     ~AN_AUTHTYPE_ALLOW_UNENCRYPTED;
2213                                 break;
2214                         case IEEE80211_WEP_MIXED:
2215                                 config->an_authtype |=
2216                                     AN_AUTHTYPE_PRIVACY_IN_USE |
2217                                     AN_AUTHTYPE_ALLOW_UNENCRYPTED;
2218                                 break;
2219                         default:
2220                                 error = EINVAL;
2221                                 break;
2222                         }
2223                         break;
2224                 case IEEE80211_IOC_WEPKEY:
2225                         if (ireq->i_val < 0 || ireq->i_val > 8 ||
2226                             ireq->i_len > 13) {
2227                                 error = EINVAL;
2228                                 break;
2229                         }
2230                         error = copyin(ireq->i_data, tmpstr, 13);
2231                         if (error != 0)
2232                                 break;
2233                         /*
2234                          * Map the 9th key into the home mode
2235                          * since that is how it is stored on
2236                          * the card
2237                          */
2238                         bzero(&sc->areq, sizeof(struct an_ltv_key));
2239                         sc->areq.an_len = sizeof(struct an_ltv_key);
2240                         key->mac[0] = 1;        /* The others are 0. */
2241                         if (ireq->i_val < 4) {
2242                                 sc->areq.an_type = AN_RID_WEP_TEMP;
2243                                 key->kindex = ireq->i_val;
2244                         } else {
2245                                 sc->areq.an_type = AN_RID_WEP_PERM;
2246                                 key->kindex = ireq->i_val - 4;
2247                         }
2248                         key->klen = ireq->i_len;
2249                         bcopy(tmpstr, key->key, key->klen);
2250                         break;
2251                 case IEEE80211_IOC_WEPTXKEY:
2252                         if (ireq->i_val < 0 || ireq->i_val > 4) {
2253                                 error = EINVAL;
2254                                 break;
2255                         }
2256
2257                         /*
2258                          * Map the 5th key into the home mode
2259                          * since that is how it is stored on
2260                          * the card
2261                          */
2262                         sc->areq.an_len  = sizeof(struct an_ltv_genconfig);
2263                         sc->areq.an_type = AN_RID_ACTUALCFG;
2264                         if (an_read_record(sc,
2265                             (struct an_ltv_gen *)&sc->areq)) {
2266                                 error = EINVAL;
2267                                 break;
2268                         }
2269                         if (ireq->i_val ==  4) {
2270                                 config->an_home_product |= AN_HOME_NETWORK;
2271                                 ireq->i_val = 0;
2272                         } else {
2273                                 config->an_home_product &= ~AN_HOME_NETWORK;
2274                         }
2275
2276                         sc->an_config.an_home_product
2277                                 = config->an_home_product;
2278
2279                         /* update configuration */
2280                         an_init(sc);
2281
2282                         bzero(&sc->areq, sizeof(struct an_ltv_key));
2283                         sc->areq.an_len = sizeof(struct an_ltv_key);
2284                         sc->areq.an_type = AN_RID_WEP_PERM;
2285                         key->kindex = 0xffff;
2286                         key->mac[0] = ireq->i_val;
2287                         break;
2288                 case IEEE80211_IOC_AUTHMODE:
2289                         switch (ireq->i_val) {
2290                         case IEEE80211_AUTH_NONE:
2291                                 config->an_authtype = AN_AUTHTYPE_NONE |
2292                                     (config->an_authtype & ~AN_AUTHTYPE_MASK);
2293                                 break;
2294                         case IEEE80211_AUTH_OPEN:
2295                                 config->an_authtype = AN_AUTHTYPE_OPEN |
2296                                     (config->an_authtype & ~AN_AUTHTYPE_MASK);
2297                                 break;
2298                         case IEEE80211_AUTH_SHARED:
2299                                 config->an_authtype = AN_AUTHTYPE_SHAREDKEY |
2300                                     (config->an_authtype & ~AN_AUTHTYPE_MASK);
2301                                 break;
2302                         default:
2303                                 error = EINVAL;
2304                         }
2305                         break;
2306                 case IEEE80211_IOC_STATIONNAME:
2307                         if (ireq->i_len > 16) {
2308                                 error = EINVAL;
2309                                 break;
2310                         }
2311                         bzero(config->an_nodename, 16);
2312                         error = copyin(ireq->i_data,
2313                             config->an_nodename, ireq->i_len);
2314                         break;
2315                 case IEEE80211_IOC_CHANNEL:
2316                         /*
2317                          * The actual range is 1-14, but if you set it
2318                          * to 0 you get the default so we let that work
2319                          * too.
2320                          */
2321                         if (ireq->i_val < 0 || ireq->i_val >14) {
2322                                 error = EINVAL;
2323                                 break;
2324                         }
2325                         config->an_ds_channel = ireq->i_val;
2326                         break;
2327                 case IEEE80211_IOC_POWERSAVE:
2328                         switch (ireq->i_val) {
2329                         case IEEE80211_POWERSAVE_OFF:
2330                                 config->an_psave_mode = AN_PSAVE_NONE;
2331                                 break;
2332                         case IEEE80211_POWERSAVE_CAM:
2333                                 config->an_psave_mode = AN_PSAVE_CAM;
2334                                 break;
2335                         case IEEE80211_POWERSAVE_PSP:
2336                                 config->an_psave_mode = AN_PSAVE_PSP;
2337                                 break;
2338                         case IEEE80211_POWERSAVE_PSP_CAM:
2339                                 config->an_psave_mode = AN_PSAVE_PSP_CAM;
2340                                 break;
2341                         default:
2342                                 error = EINVAL;
2343                                 break;
2344                         }
2345                         break;
2346                 case IEEE80211_IOC_POWERSAVESLEEP:
2347                         config->an_listen_interval = ireq->i_val;
2348                         break;
2349                 }
2350
2351                 if (!error)
2352                         an_setdef(sc, &sc->areq);
2353                 break;
2354         default:
2355                 error = ether_ioctl(ifp, command, data);
2356                 break;
2357         }
2358
2359         return(error != 0);
2360 }
2361
2362 static int
2363 an_init_tx_ring(struct an_softc *sc)
2364 {
2365         int                     i;
2366         int                     id;
2367
2368         if (!sc->mpi350) {
2369                 for (i = 0; i < AN_TX_RING_CNT; i++) {
2370                         if (an_alloc_nicmem(sc, 1518 +
2371                             0x44, &id))
2372                                 return(ENOMEM);
2373                         sc->an_rdata.an_tx_fids[i] = id;
2374                         sc->an_rdata.an_tx_ring[i] = 0;
2375                 }
2376         }
2377
2378         sc->an_rdata.an_tx_prod = 0;
2379         sc->an_rdata.an_tx_cons = 0;
2380         sc->an_rdata.an_tx_empty = 1;
2381
2382         return(0);
2383 }
2384
2385 static void
2386 an_init(void *xsc)
2387 {
2388         struct an_softc         *sc = xsc;
2389         struct ifnet            *ifp = &sc->arpcom.ac_if;
2390
2391         if (ifp->if_flags & IFF_RUNNING)
2392                 an_stop(sc);
2393
2394         sc->an_associated = 0;
2395
2396         /* Allocate the TX buffers */
2397         if (an_init_tx_ring(sc)) {
2398                 an_reset(sc);
2399                 if (sc->mpi350)
2400                         an_init_mpi350_desc(sc);        
2401                 if (an_init_tx_ring(sc)) {
2402                         if_printf(ifp, "tx buffer allocation failed\n");
2403                         return;
2404                 }
2405         }
2406
2407         /* Set our MAC address. */
2408         bcopy((char *)&sc->arpcom.ac_enaddr,
2409             (char *)&sc->an_config.an_macaddr, ETHER_ADDR_LEN);
2410
2411         if (ifp->if_flags & IFF_BROADCAST)
2412                 sc->an_config.an_rxmode = AN_RXMODE_BC_ADDR;
2413         else
2414                 sc->an_config.an_rxmode = AN_RXMODE_ADDR;
2415
2416         if (ifp->if_flags & IFF_MULTICAST)
2417                 sc->an_config.an_rxmode = AN_RXMODE_BC_MC_ADDR;
2418
2419         if (ifp->if_flags & IFF_PROMISC) {
2420                 if (sc->an_monitor & AN_MONITOR) {
2421                         if (sc->an_monitor & AN_MONITOR_ANY_BSS) {
2422                                 sc->an_config.an_rxmode |=
2423                                     AN_RXMODE_80211_MONITOR_ANYBSS |
2424                                     AN_RXMODE_NO_8023_HEADER;
2425                         } else {
2426                                 sc->an_config.an_rxmode |=
2427                                     AN_RXMODE_80211_MONITOR_CURBSS |
2428                                     AN_RXMODE_NO_8023_HEADER;
2429                         }
2430                 }
2431         }
2432
2433         if (sc->an_have_rssimap)
2434                 sc->an_config.an_rxmode |= AN_RXMODE_NORMALIZED_RSSI;
2435
2436         /* Set the ssid list */
2437         sc->an_ssidlist.an_type = AN_RID_SSIDLIST;
2438         sc->an_ssidlist.an_len = sizeof(struct an_ltv_ssidlist_new);
2439         if (an_write_record(sc, (struct an_ltv_gen *)&sc->an_ssidlist)) {
2440                 if_printf(ifp, "failed to set ssid list\n");
2441                 return;
2442         }
2443
2444         /* Set the AP list */
2445         sc->an_aplist.an_type = AN_RID_APLIST;
2446         sc->an_aplist.an_len = sizeof(struct an_ltv_aplist);
2447         if (an_write_record(sc, (struct an_ltv_gen *)&sc->an_aplist)) {
2448                 if_printf(ifp, "failed to set AP list\n");
2449                 return;
2450         }
2451
2452         /* Set the configuration in the NIC */
2453         sc->an_config.an_len = sizeof(struct an_ltv_genconfig);
2454         sc->an_config.an_type = AN_RID_GENCONFIG;
2455         if (an_write_record(sc, (struct an_ltv_gen *)&sc->an_config)) {
2456                 if_printf(ifp, "failed to set configuration\n");
2457                 return;
2458         }
2459
2460         /* Enable the MAC */
2461         if (an_cmd(sc, AN_CMD_ENABLE, 0)) {
2462                 if_printf(ifp, "failed to enable MAC\n");
2463                 return;
2464         }
2465
2466         if (ifp->if_flags & IFF_PROMISC)
2467                 an_cmd(sc, AN_CMD_SET_MODE, 0xffff);
2468
2469         /* enable interrupts */
2470         CSR_WRITE_2(sc, AN_INT_EN(sc->mpi350), AN_INTRS(sc->mpi350));
2471
2472         ifp->if_flags |= IFF_RUNNING;
2473         ifp->if_flags &= ~IFF_OACTIVE;
2474
2475         callout_reset(&sc->an_stat_timer, hz, an_stats_update, sc);
2476 }
2477
2478 static void
2479 an_start(struct ifnet *ifp)
2480 {
2481         struct an_softc         *sc;
2482         struct mbuf             *m0 = NULL;
2483         struct an_txframe_802_3 tx_frame_802_3;
2484         struct ether_header     *eh;
2485         int                     id, idx, i;
2486         unsigned char           txcontrol;
2487         struct an_card_tx_desc an_tx_desc;
2488         u_int8_t                *buf;
2489
2490         sc = ifp->if_softc;
2491
2492         if (ifp->if_flags & IFF_OACTIVE)
2493                 return;
2494
2495         if (!sc->an_associated)
2496                 return;
2497
2498         /* We can't send in monitor mode so toss any attempts. */
2499         if (sc->an_monitor && (ifp->if_flags & IFF_PROMISC)) {
2500                 ifq_purge(&ifp->if_snd);
2501                 return;
2502         }
2503
2504         idx = sc->an_rdata.an_tx_prod;
2505
2506         if (!sc->mpi350) {
2507                 bzero((char *)&tx_frame_802_3, sizeof(tx_frame_802_3));
2508
2509                 while (sc->an_rdata.an_tx_ring[idx] == 0) {
2510                         m0 = ifq_dequeue(&ifp->if_snd, NULL);
2511                         if (m0 == NULL)
2512                                 break;
2513
2514                         id = sc->an_rdata.an_tx_fids[idx];
2515                         eh = mtod(m0, struct ether_header *);
2516
2517                         bcopy((char *)&eh->ether_dhost,
2518                               (char *)&tx_frame_802_3.an_tx_dst_addr, 
2519                               ETHER_ADDR_LEN);
2520                         bcopy((char *)&eh->ether_shost,
2521                               (char *)&tx_frame_802_3.an_tx_src_addr, 
2522                               ETHER_ADDR_LEN);
2523
2524                         /* minus src/dest mac & type */
2525                         tx_frame_802_3.an_tx_802_3_payload_len =
2526                                 m0->m_pkthdr.len - 12;  
2527
2528                         m_copydata(m0, sizeof(struct ether_header) - 2 ,
2529                                    tx_frame_802_3.an_tx_802_3_payload_len,
2530                                    (caddr_t)&sc->an_txbuf);
2531
2532                         txcontrol = AN_TXCTL_8023;
2533                         /* write the txcontrol only */
2534                         an_write_data(sc, id, 0x08, (caddr_t)&txcontrol,
2535                                       sizeof(txcontrol));
2536
2537                         /* 802_3 header */
2538                         an_write_data(sc, id, 0x34, (caddr_t)&tx_frame_802_3,
2539                                       sizeof(struct an_txframe_802_3));
2540
2541                         /* in mbuf header type is just before payload */
2542                         an_write_data(sc, id, 0x44, (caddr_t)&sc->an_txbuf,
2543                                       tx_frame_802_3.an_tx_802_3_payload_len);
2544
2545                         BPF_MTAP(ifp, m0);
2546
2547                         m_freem(m0);
2548                         m0 = NULL;
2549
2550                         sc->an_rdata.an_tx_ring[idx] = id;
2551                         if (an_cmd(sc, AN_CMD_TX, id))
2552                                 if_printf(ifp, "xmit failed\n");
2553
2554                         AN_INC(idx, AN_TX_RING_CNT);
2555
2556                         /*
2557                          * Set a timeout in case the chip goes out to lunch.
2558                          */
2559                         ifp->if_timer = 5;
2560                 }
2561         } else { /* MPI-350 */
2562                 /* Disable interrupts. */
2563                 CSR_WRITE_2(sc, AN_INT_EN(sc->mpi350), 0);
2564
2565                 while (sc->an_rdata.an_tx_empty ||
2566                     idx != sc->an_rdata.an_tx_cons) {
2567                         m0 = ifq_dequeue(&ifp->if_snd, NULL);
2568                         if (m0 == NULL) {
2569                                 break;
2570                         }
2571                         buf = sc->an_tx_buffer[idx].an_dma_vaddr;
2572
2573                         eh = mtod(m0, struct ether_header *);
2574
2575                         /* DJA optimize this to limit bcopy */
2576                         bcopy((char *)&eh->ether_dhost,
2577                               (char *)&tx_frame_802_3.an_tx_dst_addr, 
2578                               ETHER_ADDR_LEN);
2579                         bcopy((char *)&eh->ether_shost,
2580                               (char *)&tx_frame_802_3.an_tx_src_addr, 
2581                               ETHER_ADDR_LEN);
2582
2583                         /* minus src/dest mac & type */
2584                         tx_frame_802_3.an_tx_802_3_payload_len =
2585                                 m0->m_pkthdr.len - 12; 
2586
2587                         m_copydata(m0, sizeof(struct ether_header) - 2 ,
2588                                    tx_frame_802_3.an_tx_802_3_payload_len,
2589                                    (caddr_t)&sc->an_txbuf);
2590
2591                         txcontrol = AN_TXCTL_8023;
2592                         /* write the txcontrol only */
2593                         bcopy((caddr_t)&txcontrol, &buf[0x08],
2594                               sizeof(txcontrol));
2595
2596                         /* 802_3 header */
2597                         bcopy((caddr_t)&tx_frame_802_3, &buf[0x34],
2598                               sizeof(struct an_txframe_802_3));
2599
2600                         /* in mbuf header type is just before payload */
2601                         bcopy((caddr_t)&sc->an_txbuf, &buf[0x44],
2602                               tx_frame_802_3.an_tx_802_3_payload_len);
2603
2604
2605                         bzero(&an_tx_desc, sizeof(an_tx_desc));
2606                         an_tx_desc.an_offset = 0;
2607                         an_tx_desc.an_eoc = 1;
2608                         an_tx_desc.an_valid = 1;
2609                         an_tx_desc.an_len =  0x44 +
2610                                 tx_frame_802_3.an_tx_802_3_payload_len;
2611                         an_tx_desc.an_phys = sc->an_tx_buffer[idx].an_dma_paddr;
2612                         for (i = 0; i < sizeof(an_tx_desc) / 4 ; i++) {
2613                                 CSR_MEM_AUX_WRITE_4(sc, AN_TX_DESC_OFFSET
2614                                     /* zero for now */ 
2615                                     + (0 * sizeof(an_tx_desc))
2616                                     + (i * 4),
2617                                     ((u_int32_t*)&an_tx_desc)[i]);
2618                         }
2619
2620                         BPF_MTAP(ifp, m0);
2621
2622                         m_freem(m0);
2623                         m0 = NULL;
2624
2625                         AN_INC(idx, AN_MAX_TX_DESC);
2626                         sc->an_rdata.an_tx_empty = 0;
2627
2628                         CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), AN_EV_ALLOC);
2629
2630                         /*
2631                          * Set a timeout in case the chip goes out to lunch.
2632                          */
2633                         ifp->if_timer = 5;
2634                 }
2635
2636                 /* Re-enable interrupts. */
2637                 CSR_WRITE_2(sc, AN_INT_EN(sc->mpi350), AN_INTRS(sc->mpi350));
2638         }
2639
2640         if (m0 != NULL)
2641                 ifp->if_flags |= IFF_OACTIVE;
2642
2643         sc->an_rdata.an_tx_prod = idx;
2644 }
2645
2646 void
2647 an_stop(struct an_softc *sc)
2648 {
2649         struct ifnet            *ifp;
2650         int                     i;
2651
2652         ifp = &sc->arpcom.ac_if;
2653
2654         an_cmd(sc, AN_CMD_FORCE_SYNCLOSS, 0);
2655         CSR_WRITE_2(sc, AN_INT_EN(sc->mpi350), 0);
2656         an_cmd(sc, AN_CMD_DISABLE, 0);
2657
2658         for (i = 0; i < AN_TX_RING_CNT; i++)
2659                 an_cmd(sc, AN_CMD_DEALLOC_MEM, sc->an_rdata.an_tx_fids[i]);
2660
2661         callout_stop(&sc->an_stat_timer);
2662
2663         ifp->if_flags &= ~(IFF_RUNNING|IFF_OACTIVE);
2664
2665         if (sc->an_flash_buffer) {
2666                 kfree(sc->an_flash_buffer, M_DEVBUF);
2667                 sc->an_flash_buffer = NULL;
2668         }
2669 }
2670
2671 static void
2672 an_watchdog(struct ifnet *ifp)
2673 {
2674         struct an_softc         *sc;
2675
2676         sc = ifp->if_softc;
2677
2678         an_reset(sc);
2679         if (sc->mpi350)
2680                 an_init_mpi350_desc(sc);        
2681         an_init(sc);
2682
2683         ifp->if_oerrors++;
2684
2685         if_printf(ifp, "device timeout\n");
2686 }
2687
2688 void
2689 an_shutdown(device_t dev)
2690 {
2691         struct an_softc         *sc;
2692
2693         sc = device_get_softc(dev);
2694         an_stop(sc);
2695
2696         return;
2697 }
2698
2699 void
2700 an_resume(device_t dev)
2701 {
2702         struct an_softc         *sc;
2703         struct ifnet            *ifp;
2704         int                     i;
2705
2706         sc = device_get_softc(dev);
2707         ifp = &sc->arpcom.ac_if;
2708
2709         an_reset(sc);
2710         if (sc->mpi350)
2711                 an_init_mpi350_desc(sc);        
2712         an_init(sc);
2713
2714         /* Recovery temporary keys */
2715         for (i = 0; i < 4; i++) {
2716                 sc->areq.an_type = AN_RID_WEP_TEMP;
2717                 sc->areq.an_len = sizeof(struct an_ltv_key);            
2718                 bcopy(&sc->an_temp_keys[i],
2719                     &sc->areq, sizeof(struct an_ltv_key));
2720                 an_setdef(sc, &sc->areq);
2721         }
2722
2723         if (ifp->if_flags & IFF_UP)
2724                 an_start(ifp);
2725
2726         return;
2727 }
2728
2729 #ifdef ANCACHE
2730 /* Aironet signal strength cache code.
2731  * store signal/noise/quality on per MAC src basis in
2732  * a small fixed cache.  The cache wraps if > MAX slots
2733  * used.  The cache may be zeroed out to start over.
2734  * Two simple filters exist to reduce computation:
2735  * 1. ip only (literally 0x800, ETHERTYPE_IP) which may be used
2736  * to ignore some packets.  It defaults to ip only.
2737  * it could be used to focus on broadcast, non-IP 802.11 beacons.
2738  * 2. multicast/broadcast only.  This may be used to
2739  * ignore unicast packets and only cache signal strength
2740  * for multicast/broadcast packets (beacons); e.g., Mobile-IP
2741  * beacons and not unicast traffic.
2742  *
2743  * The cache stores (MAC src(index), IP src (major clue), signal,
2744  *      quality, noise)
2745  *
2746  * No apologies for storing IP src here.  It's easy and saves much
2747  * trouble elsewhere.  The cache is assumed to be INET dependent,
2748  * although it need not be.
2749  *
2750  * Note: the Aironet only has a single byte of signal strength value
2751  * in the rx frame header, and it's not scaled to anything sensible.
2752  * This is kind of lame, but it's all we've got.
2753  */
2754
2755 #ifdef documentation
2756
2757 int an_sigitems;                                /* number of cached entries */
2758 struct an_sigcache an_sigcache[MAXANCACHE];  /*  array of cache entries */
2759 int an_nextitem;                                /*  index/# of entries */
2760
2761
2762 #endif
2763
2764 /* control variables for cache filtering.  Basic idea is
2765  * to reduce cost (e.g., to only Mobile-IP agent beacons
2766  * which are broadcast or multicast).  Still you might
2767  * want to measure signal strength anth unicast ping packets
2768  * on a pt. to pt. ant. setup.
2769  */
2770 /* set true if you want to limit cache items to broadcast/mcast
2771  * only packets (not unicast).  Useful for mobile-ip beacons which
2772  * are broadcast/multicast at network layer.  Default is all packets
2773  * so ping/unicast anll work say anth pt. to pt. antennae setup.
2774  */
2775 static int an_cache_mcastonly = 0;
2776 SYSCTL_INT(_hw_an, OID_AUTO, an_cache_mcastonly, CTLFLAG_RW,
2777         &an_cache_mcastonly, 0, "");
2778
2779 /* set true if you want to limit cache items to IP packets only
2780 */
2781 static int an_cache_iponly = 1;
2782 SYSCTL_INT(_hw_an, OID_AUTO, an_cache_iponly, CTLFLAG_RW,
2783         &an_cache_iponly, 0, "");
2784
2785 /*
2786  * an_cache_store, per rx packet store signal
2787  * strength in MAC (src) indexed cache.
2788  */
2789 static void
2790 an_cache_store (struct an_softc *sc, struct mbuf *m, u_int8_t rx_rssi,
2791                 u_int8_t rx_quality)
2792 {
2793         struct ether_header *eh = mtod(m, struct ether_header *);
2794         struct ip *ip = NULL;
2795         int i;
2796         static int cache_slot = 0;      /* use this cache entry */
2797         static int wrapindex = 0;       /* next "free" cache entry */
2798
2799         /* filters:
2800          * 1. ip only
2801          * 2. configurable filter to throw out unicast packets,
2802          * keep multicast only.
2803          */
2804
2805         if ((ntohs(eh->ether_type) == ETHERTYPE_IP))
2806                 ip = (struct ip *)(mtod(m, uint8_t *) + ETHER_HDR_LEN);
2807         else if (an_cache_iponly)
2808                 return;
2809
2810         /* filter for broadcast/multicast only
2811          */
2812         if (an_cache_mcastonly && ((eh->ether_dhost[0] & 1) == 0)) {
2813                 return;
2814         }
2815
2816 #ifdef SIGDEBUG
2817         if_printf(&sc->arpcom.ac_if, "q value %x (MSB=0x%x, LSB=0x%x)\n",
2818                   rx_rssi & 0xffff, rx_rssi >> 8, rx_rssi & 0xff);
2819 #endif
2820
2821         /* do a linear search for a matching MAC address
2822          * in the cache table
2823          * . MAC address is 6 bytes,
2824          * . var w_nextitem holds total number of entries already cached
2825          */
2826         for (i = 0; i < sc->an_nextitem; i++) {
2827                 if (! bcmp(eh->ether_shost , sc->an_sigcache[i].macsrc,  6 )) {
2828                         /* Match!,
2829                          * so we already have this entry,
2830                          * update the data
2831                          */
2832                         break;
2833                 }
2834         }
2835
2836         /* did we find a matching mac address?
2837          * if yes, then overwrite a previously existing cache entry
2838          */
2839         if (i < sc->an_nextitem )   {
2840                 cache_slot = i;
2841         }
2842         /* else, have a new address entry,so
2843          * add this new entry,
2844          * if table full, then we need to replace LRU entry
2845          */
2846         else    {
2847
2848                 /* check for space in cache table
2849                  * note: an_nextitem also holds number of entries
2850                  * added in the cache table
2851                  */
2852                 if ( sc->an_nextitem < MAXANCACHE ) {
2853                         cache_slot = sc->an_nextitem;
2854                         sc->an_nextitem++;
2855                         sc->an_sigitems = sc->an_nextitem;
2856                 }
2857                 /* no space found, so simply wrap anth wrap index
2858                  * and "zap" the next entry
2859                  */
2860                 else {
2861                         if (wrapindex == MAXANCACHE) {
2862                                 wrapindex = 0;
2863                         }
2864                         cache_slot = wrapindex++;
2865                 }
2866         }
2867
2868         /* invariant: cache_slot now points at some slot
2869          * in cache.
2870          */
2871         if (cache_slot < 0 || cache_slot >= MAXANCACHE) {
2872                 log(LOG_ERR, "an_cache_store, bad index: %d of "
2873                     "[0..%d], gross cache error\n",
2874                     cache_slot, MAXANCACHE);
2875                 return;
2876         }
2877
2878         /*  store items in cache
2879          *  .ip source address
2880          *  .mac src
2881          *  .signal, etc.
2882          */
2883         if (ip != NULL) {
2884                 sc->an_sigcache[cache_slot].ipsrc = ip->ip_src.s_addr;
2885         }
2886         bcopy( eh->ether_shost, sc->an_sigcache[cache_slot].macsrc,  6);
2887
2888
2889         switch (an_cache_mode) {
2890         case DBM:
2891                 if (sc->an_have_rssimap) {
2892                         sc->an_sigcache[cache_slot].signal = 
2893                                 - sc->an_rssimap.an_entries[rx_rssi].an_rss_dbm;
2894                         sc->an_sigcache[cache_slot].quality = 
2895                                 - sc->an_rssimap.an_entries[rx_quality].an_rss_dbm;
2896                 } else {
2897                         sc->an_sigcache[cache_slot].signal = rx_rssi - 100;
2898                         sc->an_sigcache[cache_slot].quality = rx_quality - 100;
2899                 }
2900                 break;
2901         case PERCENT:
2902                 if (sc->an_have_rssimap) {
2903                         sc->an_sigcache[cache_slot].signal = 
2904                                 sc->an_rssimap.an_entries[rx_rssi].an_rss_pct;
2905                         sc->an_sigcache[cache_slot].quality = 
2906                                 sc->an_rssimap.an_entries[rx_quality].an_rss_pct;
2907                 } else {
2908                         if (rx_rssi > 100)
2909                                 rx_rssi = 100;
2910                         if (rx_quality > 100)
2911                                 rx_quality = 100;
2912                         sc->an_sigcache[cache_slot].signal = rx_rssi;
2913                         sc->an_sigcache[cache_slot].quality = rx_quality;
2914                 }
2915                 break;
2916         case RAW:
2917                 sc->an_sigcache[cache_slot].signal = rx_rssi;
2918                 sc->an_sigcache[cache_slot].quality = rx_quality;
2919                 break;
2920         }
2921
2922         sc->an_sigcache[cache_slot].noise = 0;
2923
2924         return;
2925 }
2926 #endif
2927
2928 static int
2929 an_media_change(struct ifnet *ifp)
2930 {
2931         struct an_softc *sc = ifp->if_softc;
2932         struct an_ltv_genconfig *cfg;
2933         int otype = sc->an_config.an_opmode;
2934         int orate = sc->an_tx_rate;
2935
2936         switch (IFM_SUBTYPE(sc->an_ifmedia.ifm_cur->ifm_media)) {
2937         case IFM_IEEE80211_DS1:
2938                 sc->an_tx_rate = AN_RATE_1MBPS;
2939                 break;
2940         case IFM_IEEE80211_DS2:
2941                 sc->an_tx_rate = AN_RATE_2MBPS;
2942                 break;
2943         case IFM_IEEE80211_DS5:
2944                 sc->an_tx_rate = AN_RATE_5_5MBPS;
2945                 break;
2946         case IFM_IEEE80211_DS11:
2947                 sc->an_tx_rate = AN_RATE_11MBPS;
2948                 break;
2949         case IFM_AUTO:
2950                 sc->an_tx_rate = 0;
2951                 break;
2952         }
2953
2954         if (orate != sc->an_tx_rate) {
2955                 /* Read the current configuration */
2956                 sc->an_config.an_type = AN_RID_GENCONFIG;
2957                 sc->an_config.an_len = sizeof(struct an_ltv_genconfig);
2958                 an_read_record(sc, (struct an_ltv_gen *)&sc->an_config);
2959                 cfg = &sc->an_config;
2960
2961                 /* clear other rates and set the only one we want */
2962                 bzero(cfg->an_rates, sizeof(cfg->an_rates));
2963                 cfg->an_rates[0] = sc->an_tx_rate;
2964
2965                 /* Save the new rate */
2966                 sc->an_config.an_type = AN_RID_GENCONFIG;
2967                 sc->an_config.an_len = sizeof(struct an_ltv_genconfig);
2968         }
2969
2970         if ((sc->an_ifmedia.ifm_cur->ifm_media & IFM_IEEE80211_ADHOC) != 0)
2971                 sc->an_config.an_opmode &= ~AN_OPMODE_INFRASTRUCTURE_STATION;
2972         else
2973                 sc->an_config.an_opmode |= AN_OPMODE_INFRASTRUCTURE_STATION;
2974
2975         if (otype != sc->an_config.an_opmode ||
2976             orate != sc->an_tx_rate)
2977                 an_init(sc);
2978
2979         return(0);
2980 }
2981
2982 static void
2983 an_media_status(struct ifnet *ifp, struct ifmediareq *imr)
2984 {
2985         struct an_ltv_status    status;
2986         struct an_softc         *sc = ifp->if_softc;
2987
2988         status.an_len = sizeof(status);
2989         status.an_type = AN_RID_STATUS;
2990         if (an_read_record(sc, (struct an_ltv_gen *)&status)) {
2991                 /* If the status read fails, just lie. */
2992                 imr->ifm_active = sc->an_ifmedia.ifm_cur->ifm_media;
2993                 imr->ifm_status = IFM_AVALID|IFM_ACTIVE;
2994         }
2995
2996         if (sc->an_tx_rate == 0) {
2997                 imr->ifm_active = IFM_IEEE80211|IFM_AUTO;
2998                 if (sc->an_config.an_opmode == AN_OPMODE_IBSS_ADHOC)
2999                         imr->ifm_active |= IFM_IEEE80211_ADHOC;
3000                 switch (status.an_current_tx_rate) {
3001                 case AN_RATE_1MBPS:
3002                         imr->ifm_active |= IFM_IEEE80211_DS1;
3003                         break;
3004                 case AN_RATE_2MBPS:
3005                         imr->ifm_active |= IFM_IEEE80211_DS2;
3006                         break;
3007                 case AN_RATE_5_5MBPS:
3008                         imr->ifm_active |= IFM_IEEE80211_DS5;
3009                         break;
3010                 case AN_RATE_11MBPS:
3011                         imr->ifm_active |= IFM_IEEE80211_DS11;
3012                         break;
3013                 }
3014         } else {
3015                 imr->ifm_active = sc->an_ifmedia.ifm_cur->ifm_media;
3016         }
3017
3018         imr->ifm_status = IFM_AVALID;
3019         if (status.an_opmode & AN_STATUS_OPMODE_ASSOCIATED)
3020                 imr->ifm_status |= IFM_ACTIVE;
3021 }
3022
3023 /********************** Cisco utility support routines *************/
3024
3025 /*
3026  * ReadRids & WriteRids derived from Cisco driver additions to Ben Reed's
3027  * Linux driver
3028  */
3029
3030 static int
3031 readrids(struct ifnet *ifp, struct aironet_ioctl *l_ioctl)
3032 {
3033         unsigned short  rid;
3034         struct an_softc *sc;
3035
3036         switch (l_ioctl->command) {
3037         case AIROGCAP:
3038                 rid = AN_RID_CAPABILITIES;
3039                 break;
3040         case AIROGCFG:
3041                 rid = AN_RID_GENCONFIG;
3042                 break;
3043         case AIROGSLIST:
3044                 rid = AN_RID_SSIDLIST;
3045                 break;
3046         case AIROGVLIST:
3047                 rid = AN_RID_APLIST;
3048                 break;
3049         case AIROGDRVNAM:
3050                 rid = AN_RID_DRVNAME;
3051                 break;
3052         case AIROGEHTENC:
3053                 rid = AN_RID_ENCAPPROTO;
3054                 break;
3055         case AIROGWEPKTMP:
3056                 rid = AN_RID_WEP_TEMP;
3057                 break;
3058         case AIROGWEPKNV:
3059                 rid = AN_RID_WEP_PERM;
3060                 break;
3061         case AIROGSTAT:
3062                 rid = AN_RID_STATUS;
3063                 break;
3064         case AIROGSTATSD32:
3065                 rid = AN_RID_32BITS_DELTA;
3066                 break;
3067         case AIROGSTATSC32:
3068                 rid = AN_RID_32BITS_CUM;
3069                 break;
3070         default:
3071                 rid = 999;
3072                 break;
3073         }
3074
3075         if (rid == 999) /* Is bad command */
3076                 return -EINVAL;
3077
3078         sc = ifp->if_softc;
3079         sc->areq.an_len  = AN_MAX_DATALEN;
3080         sc->areq.an_type = rid;
3081
3082         an_read_record(sc, (struct an_ltv_gen *)&sc->areq);
3083
3084         l_ioctl->len = sc->areq.an_len - 4;     /* just data */
3085
3086         /* the data contains the length at first */
3087         if (copyout(&(sc->areq.an_len), l_ioctl->data,
3088                     sizeof(sc->areq.an_len))) {
3089                 return -EFAULT;
3090         }
3091         /* Just copy the data back */
3092         if (copyout(&(sc->areq.an_val), l_ioctl->data + 2,
3093                     l_ioctl->len)) {
3094                 return -EFAULT;
3095         }
3096         return 0;
3097 }
3098
3099 static int
3100 writerids(struct ifnet *ifp, struct aironet_ioctl *l_ioctl)
3101 {
3102         struct an_softc *sc;
3103         int             rid, command;
3104
3105         sc = ifp->if_softc;
3106         rid = 0;
3107         command = l_ioctl->command;
3108
3109         switch (command) {
3110         case AIROPSIDS:
3111                 rid = AN_RID_SSIDLIST;
3112                 break;
3113         case AIROPCAP:
3114                 rid = AN_RID_CAPABILITIES;
3115                 break;
3116         case AIROPAPLIST:
3117                 rid = AN_RID_APLIST;
3118                 break;
3119         case AIROPCFG:
3120                 rid = AN_RID_GENCONFIG;
3121                 break;
3122         case AIROPMACON:
3123                 an_cmd(sc, AN_CMD_ENABLE, 0);
3124                 return 0;
3125                 break;
3126         case AIROPMACOFF:
3127                 an_cmd(sc, AN_CMD_DISABLE, 0);
3128                 return 0;
3129                 break;
3130         case AIROPSTCLR:
3131                 /*
3132                  * This command merely clears the counts does not actually
3133                  * store any data only reads rid. But as it changes the cards
3134                  * state, I put it in the writerid routines.
3135                  */
3136
3137                 rid = AN_RID_32BITS_DELTACLR;
3138                 sc = ifp->if_softc;
3139                 sc->areq.an_len = AN_MAX_DATALEN;
3140                 sc->areq.an_type = rid;
3141
3142                 an_read_record(sc, (struct an_ltv_gen *)&sc->areq);
3143                 l_ioctl->len = sc->areq.an_len - 4;     /* just data */
3144
3145                 /* the data contains the length at first */
3146                 if (copyout(&(sc->areq.an_len), l_ioctl->data,
3147                             sizeof(sc->areq.an_len))) {
3148                         return -EFAULT;
3149                 }
3150                 /* Just copy the data */
3151                 if (copyout(&(sc->areq.an_val), l_ioctl->data + 2,
3152                             l_ioctl->len)) {
3153                         return -EFAULT;
3154                 }
3155                 return 0;
3156                 break;
3157         case AIROPWEPKEY:
3158                 rid = AN_RID_WEP_TEMP;
3159                 break;
3160         case AIROPWEPKEYNV:
3161                 rid = AN_RID_WEP_PERM;
3162                 break;
3163         case AIROPLEAPUSR:
3164                 rid = AN_RID_LEAPUSERNAME;
3165                 break;
3166         case AIROPLEAPPWD:
3167                 rid = AN_RID_LEAPPASSWORD;
3168                 break;
3169         default:
3170                 return -EOPNOTSUPP;
3171         }
3172
3173         if (rid) {
3174                 if (l_ioctl->len > sizeof(sc->areq.an_val) + 4)
3175                         return -EINVAL;
3176                 sc->areq.an_len = l_ioctl->len + 4;     /* add type & length */
3177                 sc->areq.an_type = rid;
3178
3179                 /* Just copy the data back */
3180                 copyin((l_ioctl->data) + 2, &sc->areq.an_val,
3181                        l_ioctl->len);
3182
3183                 an_cmd(sc, AN_CMD_DISABLE, 0);
3184                 an_write_record(sc, (struct an_ltv_gen *)&sc->areq);
3185                 an_cmd(sc, AN_CMD_ENABLE, 0);
3186                 return 0;
3187         }
3188         return -EOPNOTSUPP;
3189 }
3190
3191 /*
3192  * General Flash utilities derived from Cisco driver additions to Ben Reed's
3193  * Linux driver
3194  */
3195
3196 #define FLASH_DELAY(x)  tsleep(ifp, 0, "flash", ((x) / hz) + 1);
3197 #define FLASH_COMMAND   0x7e7e
3198 #define FLASH_SIZE      32 * 1024
3199
3200 static int
3201 unstickbusy(struct ifnet *ifp)
3202 {
3203         struct an_softc *sc = ifp->if_softc;
3204
3205         if (CSR_READ_2(sc, AN_COMMAND(sc->mpi350)) & AN_CMD_BUSY) {
3206                 CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), 
3207                             AN_EV_CLR_STUCK_BUSY);
3208                 return 1;
3209         }
3210         return 0;
3211 }
3212
3213 /*
3214  * Wait for busy completion from card wait for delay uSec's Return true for
3215  * success meaning command reg is clear
3216  */
3217
3218 static int
3219 WaitBusy(struct ifnet *ifp, int uSec)
3220 {
3221         int             statword = 0xffff;
3222         int             delay = 0;
3223         struct an_softc *sc = ifp->if_softc;
3224
3225         while ((statword & AN_CMD_BUSY) && delay <= (1000 * 100)) {
3226                 FLASH_DELAY(10);
3227                 delay += 10;
3228                 statword = CSR_READ_2(sc, AN_COMMAND(sc->mpi350));
3229
3230                 if ((AN_CMD_BUSY & statword) && (delay % 200)) {
3231                         unstickbusy(ifp);
3232                 }
3233         }
3234
3235         return 0 == (AN_CMD_BUSY & statword);
3236 }
3237
3238 /*
3239  * STEP 1) Disable MAC and do soft reset on card.
3240  */
3241
3242 static int
3243 cmdreset(struct ifnet *ifp)
3244 {
3245         int             status;
3246         struct an_softc *sc = ifp->if_softc;
3247
3248         an_stop(sc);
3249
3250         an_cmd(sc, AN_CMD_DISABLE, 0);
3251
3252         if (!(status = WaitBusy(ifp, AN_TIMEOUT))) {
3253                 if_printf(ifp, "Waitbusy hang b4 RESET =%d\n", status);
3254                 return -EBUSY;
3255         }
3256         CSR_WRITE_2(sc, AN_COMMAND(sc->mpi350), AN_CMD_FW_RESTART);
3257
3258         FLASH_DELAY(1000);      /* WAS 600 12/7/00 */
3259
3260
3261         if (!(status = WaitBusy(ifp, 100))) {
3262                 if_printf(ifp, "Waitbusy hang AFTER RESET =%d\n", status);
3263                 return -EBUSY;
3264         }
3265         return 0;
3266 }
3267
3268 /*
3269  * STEP 2) Put the card in legendary flash mode
3270  */
3271
3272 static int
3273 setflashmode(struct ifnet *ifp)
3274 {
3275         int             status;
3276         struct an_softc *sc = ifp->if_softc;
3277
3278         CSR_WRITE_2(sc, AN_SW0(sc->mpi350), FLASH_COMMAND);
3279         CSR_WRITE_2(sc, AN_SW1(sc->mpi350), FLASH_COMMAND);
3280         CSR_WRITE_2(sc, AN_SW0(sc->mpi350), FLASH_COMMAND);
3281         CSR_WRITE_2(sc, AN_COMMAND(sc->mpi350), FLASH_COMMAND);
3282
3283         /*
3284          * mdelay(500); // 500ms delay
3285          */
3286
3287         FLASH_DELAY(500);
3288
3289         if (!(status = WaitBusy(ifp, AN_TIMEOUT))) {
3290                 kprintf("Waitbusy hang after setflash mode\n");
3291                 return -EIO;
3292         }
3293         return 0;
3294 }
3295
3296 /*
3297  * Get a character from the card matching matchbyte Step 3)
3298  */
3299
3300 static int
3301 flashgchar(struct ifnet *ifp, int matchbyte, int dwelltime)
3302 {
3303         int             rchar;
3304         unsigned char   rbyte = 0;
3305         int             success = -1;
3306         struct an_softc *sc = ifp->if_softc;
3307
3308
3309         do {
3310                 rchar = CSR_READ_2(sc, AN_SW1(sc->mpi350));
3311
3312                 if (dwelltime && !(0x8000 & rchar)) {
3313                         dwelltime -= 10;
3314                         FLASH_DELAY(10);
3315                         continue;
3316                 }
3317                 rbyte = 0xff & rchar;
3318
3319                 if ((rbyte == matchbyte) && (0x8000 & rchar)) {
3320                         CSR_WRITE_2(sc, AN_SW1(sc->mpi350), 0);
3321                         success = 1;
3322                         break;
3323                 }
3324                 if (rbyte == 0x81 || rbyte == 0x82 || rbyte == 0x83 || rbyte == 0x1a || 0xffff == rchar)
3325                         break;
3326                 CSR_WRITE_2(sc, AN_SW1(sc->mpi350), 0);
3327
3328         } while (dwelltime > 0);
3329         return success;
3330 }
3331
3332 /*
3333  * Put character to SWS0 wait for dwelltime x 50us for  echo .
3334  */
3335
3336 static int
3337 flashpchar(struct ifnet *ifp, int byte, int dwelltime)
3338 {
3339         int             echo;
3340         int             pollbusy, waittime;
3341         struct an_softc *sc = ifp->if_softc;
3342
3343         byte |= 0x8000;
3344
3345         if (dwelltime == 0)
3346                 dwelltime = 200;
3347
3348         waittime = dwelltime;
3349
3350         /*
3351          * Wait for busy bit d15 to go false indicating buffer empty
3352          */
3353         do {
3354                 pollbusy = CSR_READ_2(sc, AN_SW0(sc->mpi350));
3355
3356                 if (pollbusy & 0x8000) {
3357                         FLASH_DELAY(50);
3358                         waittime -= 50;
3359                         continue;
3360                 } else
3361                         break;
3362         }
3363         while (waittime >= 0);
3364
3365         /* timeout for busy clear wait */
3366
3367         if (waittime <= 0) {
3368                 if_printf(ifp, "flash putchar busywait timeout!\n");
3369                 return -1;
3370         }
3371         /*
3372          * Port is clear now write byte and wait for it to echo back
3373          */
3374         do {
3375                 CSR_WRITE_2(sc, AN_SW0(sc->mpi350), byte);
3376                 FLASH_DELAY(50);
3377                 dwelltime -= 50;
3378                 echo = CSR_READ_2(sc, AN_SW1(sc->mpi350));
3379         } while (dwelltime >= 0 && echo != byte);
3380
3381
3382         CSR_WRITE_2(sc, AN_SW1(sc->mpi350), 0);
3383
3384         return echo == byte;
3385 }
3386
3387 /*
3388  * Transfer 32k of firmware data from user buffer to our buffer and send to
3389  * the card
3390  */
3391
3392 static int
3393 flashputbuf(struct ifnet *ifp)
3394 {
3395         unsigned short *bufp;
3396         int             nwords;
3397         struct an_softc *sc = ifp->if_softc;
3398
3399         /* Write stuff */
3400
3401         bufp = sc->an_flash_buffer;
3402
3403         if (!sc->mpi350) {
3404                 CSR_WRITE_2(sc, AN_AUX_PAGE, 0x100);
3405                 CSR_WRITE_2(sc, AN_AUX_OFFSET, 0);
3406
3407                 for (nwords = 0; nwords != FLASH_SIZE / 2; nwords++) {
3408                         CSR_WRITE_2(sc, AN_AUX_DATA, bufp[nwords] & 0xffff);
3409                 }
3410         } else {
3411                 for (nwords = 0; nwords != FLASH_SIZE / 4; nwords++) {
3412                         CSR_MEM_AUX_WRITE_4(sc, 0x8000, 
3413                                 ((u_int32_t *)bufp)[nwords] & 0xffff);
3414                 }
3415         }
3416
3417         CSR_WRITE_2(sc, AN_SW0(sc->mpi350), 0x8000);
3418
3419         return 0;
3420 }
3421
3422 /*
3423  * After flashing restart the card.
3424  */
3425
3426 static int
3427 flashrestart(struct ifnet *ifp)
3428 {
3429         int             status = 0;
3430         struct an_softc *sc = ifp->if_softc;
3431
3432         FLASH_DELAY(1024);              /* Added 12/7/00 */
3433
3434         an_init(sc);
3435
3436         FLASH_DELAY(1024);              /* Added 12/7/00 */
3437         return status;
3438 }
3439
3440 /*
3441  * Entry point for flash ioclt.
3442  */
3443
3444 static int
3445 flashcard(struct ifnet *ifp, struct aironet_ioctl *l_ioctl)
3446 {
3447         int             z = 0, status;
3448         struct an_softc *sc;
3449
3450         sc = ifp->if_softc;
3451         if (sc->mpi350) {
3452                 if_printf(ifp, "flashing not supported on MPI 350 yet\n");
3453                 return(-1);
3454         }
3455         status = l_ioctl->command;
3456
3457         switch (l_ioctl->command) {
3458         case AIROFLSHRST:
3459                 return cmdreset(ifp);
3460                 break;
3461         case AIROFLSHSTFL:
3462                 if (sc->an_flash_buffer) {
3463                         kfree(sc->an_flash_buffer, M_DEVBUF);
3464                         sc->an_flash_buffer = NULL;
3465                 }
3466                 sc->an_flash_buffer = kmalloc(FLASH_SIZE, M_DEVBUF, 0);
3467                 if (sc->an_flash_buffer)
3468                         return setflashmode(ifp);
3469                 else
3470                         return ENOBUFS;
3471                 break;
3472         case AIROFLSHGCHR:      /* Get char from aux */
3473                 copyin(l_ioctl->data, &sc->areq, l_ioctl->len);
3474                 z = *(int *)&sc->areq;
3475                 if ((status = flashgchar(ifp, z, 8000)) == 1)
3476                         return 0;
3477                 else
3478                         return -1;
3479                 break;
3480         case AIROFLSHPCHR:      /* Send char to card. */
3481                 copyin(l_ioctl->data, &sc->areq, l_ioctl->len);
3482                 z = *(int *)&sc->areq;
3483                 if ((status = flashpchar(ifp, z, 8000)) == -1)
3484                         return -EIO;
3485                 else
3486                         return 0;
3487                 break;
3488         case AIROFLPUTBUF:      /* Send 32k to card */
3489                 if (l_ioctl->len > FLASH_SIZE) {
3490                         if_printf(ifp, "Buffer to big, %x %x\n",
3491                                   l_ioctl->len, FLASH_SIZE);
3492                         return -EINVAL;
3493                 }
3494                 copyin(l_ioctl->data, sc->an_flash_buffer, l_ioctl->len);
3495
3496                 if ((status = flashputbuf(ifp)) != 0)
3497                         return -EIO;
3498                 else
3499                         return 0;
3500                 break;
3501         case AIRORESTART:
3502                 if ((status = flashrestart(ifp)) != 0) {
3503                         if_printf(ifp, "FLASHRESTART returned %d\n", status);
3504                         return -EIO;
3505                 } else
3506                         return 0;
3507
3508                 break;
3509         default:
3510                 return -EINVAL;
3511         }
3512
3513         return -EINVAL;
3514 }