The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/dev/an/if_an.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

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

Cache object: dde02941819acfdcd96fb41d0ce71199


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.