2 * Copyright (c) 1997, 1998, 1999
3 * Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by Bill Paul.
16 * 4. Neither the name of the author nor the names of any co-contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30 * THE POSSIBILITY OF SUCH DAMAGE.
32 * $FreeBSD: src/sys/dev/an/if_an.c,v 1.2.2.13 2003/02/11 03:32:48 ambrisko Exp $
33 * $DragonFly: src/sys/dev/netif/an/if_an.c,v 1.44 2008/05/23 15:34:03 sephe Exp $
37 * Aironet 4500/4800 802.11 PCMCIA/ISA/PCI driver for FreeBSD.
39 * Written by Bill Paul <wpaul@ctr.columbia.edu>
40 * Electrical Engineering Department
41 * Columbia University, New York City
45 * The Aironet 4500/4800 series cards come in PCMCIA, ISA and PCI form.
46 * This driver supports all three device types (PCI devices are supported
47 * through an extra PCI shim: /sys/dev/an/if_an_pci.c). ISA devices can be
48 * supported either using hard-coded IO port/IRQ settings or via Plug
49 * and Play. The 4500 series devices support 1Mbps and 2Mbps data rates.
50 * The 4800 devices support 1, 2, 5.5 and 11Mbps rates.
52 * Like the WaveLAN/IEEE cards, the Aironet NICs are all essentially
53 * PCMCIA devices. The ISA and PCI cards are a combination of a PCMCIA
54 * device and a PCMCIA to ISA or PCMCIA to PCI adapter card. There are
55 * a couple of important differences though:
57 * - Lucent ISA card looks to the host like a PCMCIA controller with
58 * a PCMCIA WaveLAN card inserted. This means that even desktop
59 * machines need to be configured with PCMCIA support in order to
60 * use WaveLAN/IEEE ISA cards. The Aironet cards on the other hand
61 * actually look like normal ISA and PCI devices to the host, so
62 * no PCMCIA controller support is needed
64 * The latter point results in a small gotcha. The Aironet PCMCIA
65 * cards can be configured for one of two operating modes depending
66 * on how the Vpp1 and Vpp2 programming voltages are set when the
67 * card is activated. In order to put the card in proper PCMCIA
68 * operation (where the CIS table is visible and the interface is
69 * programmed for PCMCIA operation), both Vpp1 and Vpp2 have to be
70 * set to 5 volts. FreeBSD by default doesn't set the Vpp voltages,
71 * which leaves the card in ISA/PCI mode, which prevents it from
72 * being activated as an PCMCIA device.
74 * Note that some PCMCIA controller software packages for Windows NT
75 * fail to set the voltages as well.
77 * The Aironet devices can operate in both station mode and access point
78 * mode. Typically, when programmed for station mode, the card can be set
79 * to automatically perform encapsulation/decapsulation of Ethernet II
80 * and 802.3 frames within 802.11 frames so that the host doesn't have
81 * to do it itself. This driver doesn't program the card that way: the
82 * driver handles all of the encapsulation/decapsulation itself.
88 #define ANCACHE /* enable signal strength cache */
91 #include <sys/param.h>
92 #include <sys/systm.h>
93 #include <sys/sockio.h>
95 #include <sys/kernel.h>
97 #include <sys/ucred.h>
98 #include <sys/socket.h>
100 #include <sys/syslog.h>
102 #include <sys/sysctl.h>
103 #include <sys/thread2.h>
105 #include <sys/module.h>
106 #include <sys/sysctl.h>
108 #include <sys/rman.h>
109 #include <sys/malloc.h>
112 #include <net/ifq_var.h>
113 #include <net/if_arp.h>
114 #include <net/ethernet.h>
115 #include <net/if_dl.h>
116 #include <net/if_types.h>
117 #include <net/if_media.h>
118 #include <netproto/802_11/ieee80211.h>
119 #include <netproto/802_11/ieee80211_ioctl.h>
122 #include <netinet/in.h>
123 #include <netinet/in_systm.h>
124 #include <netinet/in_var.h>
125 #include <netinet/ip.h>
130 #include <machine/md_var.h>
132 #include "if_aironet_ieee.h"
133 #include "if_anreg.h"
135 /* These are global because we need them in sys/pci/if_an_p.c. */
136 static void an_reset (struct an_softc *);
137 static int an_init_mpi350_desc (struct an_softc *);
138 static int an_ioctl (struct ifnet *, u_long, caddr_t,
140 static void an_init (void *);
141 static int an_init_tx_ring (struct an_softc *);
142 static void an_start (struct ifnet *);
143 static void an_watchdog (struct ifnet *);
144 static void an_rxeof (struct an_softc *);
145 static void an_txeof (struct an_softc *, int);
147 static void an_promisc (struct an_softc *, int);
148 static int an_cmd (struct an_softc *, int, int);
149 static int an_cmd_struct (struct an_softc *, struct an_command *,
151 static int an_read_record (struct an_softc *, struct an_ltv_gen *);
152 static int an_write_record (struct an_softc *, struct an_ltv_gen *);
153 static int an_read_data (struct an_softc *, int,
155 static int an_write_data (struct an_softc *, int,
157 static int an_seek (struct an_softc *, int, int, int);
158 static int an_alloc_nicmem (struct an_softc *, int, int *);
159 static int an_dma_malloc (struct an_softc *, bus_size_t,
160 struct an_dma_alloc *, int);
161 static void an_dma_free (struct an_softc *,
162 struct an_dma_alloc *);
163 static void an_dma_malloc_cb (void *, bus_dma_segment_t *, int, int);
164 static void an_stats_update (void *);
165 static void an_setdef (struct an_softc *, struct an_req *);
167 static void an_cache_store (struct an_softc *, struct mbuf *,
171 /* function definitions for use with the Cisco's Linux configuration
175 static int readrids (struct ifnet*, struct aironet_ioctl*);
176 static int writerids (struct ifnet*, struct aironet_ioctl*);
177 static int flashcard (struct ifnet*, struct aironet_ioctl*);
179 static int cmdreset (struct ifnet *);
180 static int setflashmode (struct ifnet *);
181 static int flashgchar (struct ifnet *,int,int);
182 static int flashpchar (struct ifnet *,int,int);
183 static int flashputbuf (struct ifnet *);
184 static int flashrestart (struct ifnet *);
185 static int WaitBusy (struct ifnet *, int);
186 static int unstickbusy (struct ifnet *);
188 static void an_dump_record (struct an_softc *,struct an_ltv_gen *,
191 static int an_media_change (struct ifnet *);
192 static void an_media_status (struct ifnet *, struct ifmediareq *);
194 static int an_dump = 0;
195 static int an_cache_mode = 0;
201 static char an_conf[256];
202 static char an_conf_cache[256];
204 DECLARE_DUMMY_MODULE(if_an);
208 SYSCTL_NODE(_hw, OID_AUTO, an, CTLFLAG_RD, 0, "Wireless driver parameters");
211 sysctl_an_dump(SYSCTL_HANDLER_ARGS)
220 strcpy(an_conf, "off");
223 strcpy(an_conf, "type");
226 strcpy(an_conf, "dump");
229 ksnprintf(an_conf, 5, "%x", an_dump);
233 error = sysctl_handle_string(oidp, an_conf, sizeof(an_conf), req);
235 if (strncmp(an_conf,"off", 3) == 0) {
238 if (strncmp(an_conf,"dump", 4) == 0) {
241 if (strncmp(an_conf,"type", 4) == 0) {
247 if ((*s >= '0') && (*s <= '9')) {
248 r = r * 16 + (*s - '0');
249 } else if ((*s >= 'a') && (*s <= 'f')) {
250 r = r * 16 + (*s - 'a' + 10);
258 kprintf("Sysctl changed for Aironet driver\n");
263 SYSCTL_PROC(_hw_an, OID_AUTO, an_dump, CTLTYPE_STRING | CTLFLAG_RW,
264 0, sizeof(an_conf), sysctl_an_dump, "A", "");
267 sysctl_an_cache_mode(SYSCTL_HANDLER_ARGS)
271 last = an_cache_mode;
273 switch (an_cache_mode) {
275 strcpy(an_conf_cache, "per");
278 strcpy(an_conf_cache, "raw");
281 strcpy(an_conf_cache, "dbm");
285 error = sysctl_handle_string(oidp, an_conf_cache,
286 sizeof(an_conf_cache), req);
288 if (strncmp(an_conf_cache,"dbm", 3) == 0) {
291 if (strncmp(an_conf_cache,"per", 3) == 0) {
294 if (strncmp(an_conf_cache,"raw", 3) == 0) {
301 SYSCTL_PROC(_hw_an, OID_AUTO, an_cache_mode, CTLTYPE_STRING | CTLFLAG_RW,
302 0, sizeof(an_conf_cache), sysctl_an_cache_mode, "A", "");
305 * We probe for an Aironet 4500/4800 card by attempting to
306 * read the default SSID list. On reset, the first entry in
307 * the SSID list will contain the name "tsunami." If we don't
308 * find this, then there's no card present.
311 an_probe(device_t dev)
313 struct an_softc *sc = device_get_softc(dev);
314 struct an_ltv_ssidlist_new ssid;
317 bzero((char *)&ssid, sizeof(ssid));
319 error = an_alloc_port(dev, 0, AN_IOSIZ);
323 /* can't do autoprobing */
324 if (rman_get_start(sc->port_res) == -1)
328 * We need to fake up a softc structure long enough
329 * to be able to issue commands and call some of the
332 sc->an_bhandle = rman_get_bushandle(sc->port_res);
333 sc->an_btag = rman_get_bustag(sc->port_res);
335 ssid.an_len = sizeof(ssid);
336 ssid.an_type = AN_RID_SSIDLIST;
338 /* Make sure interrupts are disabled. */
340 CSR_WRITE_2(sc, AN_INT_EN(sc->mpi350), 0);
341 CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), 0xFFFF);
343 if_initname(&sc->arpcom.ac_if, device_get_name(dev),
344 device_get_unit(dev));
347 if (an_cmd(sc, AN_CMD_READCFG, 0))
350 if (an_read_record(sc, (struct an_ltv_gen *)&ssid))
353 /* See if the ssid matches what we expect ... but doesn't have to */
354 if (strcmp(ssid.an_entry[0].an_ssid, AN_DEF_SSID))
361 * Allocate a port resource with the given resource id.
364 an_alloc_port(device_t dev, int rid, int size)
366 struct an_softc *sc = device_get_softc(dev);
367 struct resource *res;
369 res = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid,
370 0ul, ~0ul, size, RF_ACTIVE);
381 * Allocate a memory resource with the given resource id.
384 an_alloc_memory(device_t dev, int rid, int size)
386 struct an_softc *sc = device_get_softc(dev);
387 struct resource *res;
389 res = bus_alloc_resource(dev, SYS_RES_MEMORY, &rid,
390 0ul, ~0ul, size, RF_ACTIVE);
402 * Allocate a auxilary memory resource with the given resource id.
405 an_alloc_aux_memory(device_t dev, int rid, int size)
407 struct an_softc *sc = device_get_softc(dev);
408 struct resource *res;
410 res = bus_alloc_resource(dev, SYS_RES_MEMORY, &rid,
411 0ul, ~0ul, size, RF_ACTIVE);
413 sc->mem_aux_rid = rid;
414 sc->mem_aux_res = res;
415 sc->mem_aux_used = size;
423 * Allocate an irq resource with the given resource id.
426 an_alloc_irq(device_t dev, int rid, int flags)
428 struct an_softc *sc = device_get_softc(dev);
429 struct resource *res;
431 res = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
432 (RF_ACTIVE | flags));
443 an_dma_malloc_cb(void *arg, bus_dma_segment_t *segs, int nseg, int error)
445 bus_addr_t *paddr = (bus_addr_t*) arg;
446 *paddr = segs->ds_addr;
450 * Alloc DMA memory and set the pointer to it
453 an_dma_malloc(struct an_softc *sc, bus_size_t size, struct an_dma_alloc *dma,
458 r = bus_dmamap_create(sc->an_dtag, 0, &dma->an_dma_map);
462 r = bus_dmamem_alloc(sc->an_dtag, (void**) &dma->an_dma_vaddr,
463 BUS_DMA_WAITOK, &dma->an_dma_map);
467 r = bus_dmamap_load(sc->an_dtag, dma->an_dma_map, dma->an_dma_vaddr,
475 dma->an_dma_size = size;
479 bus_dmamap_unload(sc->an_dtag, dma->an_dma_map);
481 bus_dmamem_free(sc->an_dtag, dma->an_dma_vaddr, dma->an_dma_map);
483 bus_dmamap_destroy(sc->an_dtag, dma->an_dma_map);
484 dma->an_dma_map = NULL;
489 an_dma_free(struct an_softc *sc, struct an_dma_alloc *dma)
491 bus_dmamap_unload(sc->an_dtag, dma->an_dma_map);
492 bus_dmamem_free(sc->an_dtag, dma->an_dma_vaddr, dma->an_dma_map);
493 dma->an_dma_vaddr = NULL;
494 bus_dmamap_destroy(sc->an_dtag, dma->an_dma_map);
498 * Release all resources
501 an_release_resources(device_t dev)
503 struct an_softc *sc = device_get_softc(dev);
507 bus_release_resource(dev, SYS_RES_IOPORT,
508 sc->port_rid, sc->port_res);
512 bus_release_resource(dev, SYS_RES_MEMORY,
513 sc->mem_rid, sc->mem_res);
516 if (sc->mem_aux_res) {
517 bus_release_resource(dev, SYS_RES_MEMORY,
518 sc->mem_aux_rid, sc->mem_aux_res);
522 bus_release_resource(dev, SYS_RES_IRQ,
523 sc->irq_rid, sc->irq_res);
526 if (sc->an_rid_buffer.an_dma_paddr) {
527 an_dma_free(sc, &sc->an_rid_buffer);
529 for (i = 0; i < AN_MAX_RX_DESC; i++)
530 if (sc->an_rx_buffer[i].an_dma_paddr) {
531 an_dma_free(sc, &sc->an_rx_buffer[i]);
533 for (i = 0; i < AN_MAX_TX_DESC; i++)
534 if (sc->an_tx_buffer[i].an_dma_paddr) {
535 an_dma_free(sc, &sc->an_tx_buffer[i]);
538 bus_dma_tag_destroy(sc->an_dtag);
544 an_init_mpi350_desc(struct an_softc *sc)
546 struct an_command cmd_struct;
547 struct an_reply reply;
548 struct an_card_rid_desc an_rid_desc;
549 struct an_card_rx_desc an_rx_desc;
550 struct an_card_tx_desc an_tx_desc;
553 if(!sc->an_rid_buffer.an_dma_paddr)
554 an_dma_malloc(sc, AN_RID_BUFFER_SIZE,
555 &sc->an_rid_buffer, 0);
556 for (i = 0; i < AN_MAX_RX_DESC; i++)
557 if(!sc->an_rx_buffer[i].an_dma_paddr)
558 an_dma_malloc(sc, AN_RX_BUFFER_SIZE,
559 &sc->an_rx_buffer[i], 0);
560 for (i = 0; i < AN_MAX_TX_DESC; i++)
561 if(!sc->an_tx_buffer[i].an_dma_paddr)
562 an_dma_malloc(sc, AN_TX_BUFFER_SIZE,
563 &sc->an_tx_buffer[i], 0);
566 * Allocate RX descriptor
568 bzero(&reply,sizeof(reply));
569 cmd_struct.an_cmd = AN_CMD_ALLOC_DESC;
570 cmd_struct.an_parm0 = AN_DESCRIPTOR_RX;
571 cmd_struct.an_parm1 = AN_RX_DESC_OFFSET;
572 cmd_struct.an_parm2 = AN_MAX_RX_DESC;
573 if (an_cmd_struct(sc, &cmd_struct, &reply)) {
574 if_printf(&sc->arpcom.ac_if,
575 "failed to allocate RX descriptor\n");
579 for (desc = 0; desc < AN_MAX_RX_DESC; desc++) {
580 bzero(&an_rx_desc, sizeof(an_rx_desc));
581 an_rx_desc.an_valid = 1;
582 an_rx_desc.an_len = AN_RX_BUFFER_SIZE;
583 an_rx_desc.an_done = 0;
584 an_rx_desc.an_phys = sc->an_rx_buffer[desc].an_dma_paddr;
586 for (i = 0; i < sizeof(an_rx_desc) / 4; i++)
587 CSR_MEM_AUX_WRITE_4(sc, AN_RX_DESC_OFFSET
588 + (desc * sizeof(an_rx_desc))
590 ((u_int32_t*)&an_rx_desc)[i]);
594 * Allocate TX descriptor
597 bzero(&reply,sizeof(reply));
598 cmd_struct.an_cmd = AN_CMD_ALLOC_DESC;
599 cmd_struct.an_parm0 = AN_DESCRIPTOR_TX;
600 cmd_struct.an_parm1 = AN_TX_DESC_OFFSET;
601 cmd_struct.an_parm2 = AN_MAX_TX_DESC;
602 if (an_cmd_struct(sc, &cmd_struct, &reply)) {
603 if_printf(&sc->arpcom.ac_if,
604 "failed to allocate TX descriptor\n");
608 for (desc = 0; desc < AN_MAX_TX_DESC; desc++) {
609 bzero(&an_tx_desc, sizeof(an_tx_desc));
610 an_tx_desc.an_offset = 0;
611 an_tx_desc.an_eoc = 0;
612 an_tx_desc.an_valid = 0;
613 an_tx_desc.an_len = 0;
614 an_tx_desc.an_phys = sc->an_tx_buffer[desc].an_dma_paddr;
616 for (i = 0; i < sizeof(an_tx_desc) / 4; i++)
617 CSR_MEM_AUX_WRITE_4(sc, AN_TX_DESC_OFFSET
618 + (desc * sizeof(an_tx_desc))
620 ((u_int32_t*)&an_tx_desc)[i]);
624 * Allocate RID descriptor
627 bzero(&reply,sizeof(reply));
628 cmd_struct.an_cmd = AN_CMD_ALLOC_DESC;
629 cmd_struct.an_parm0 = AN_DESCRIPTOR_HOSTRW;
630 cmd_struct.an_parm1 = AN_HOST_DESC_OFFSET;
631 cmd_struct.an_parm2 = 1;
632 if (an_cmd_struct(sc, &cmd_struct, &reply)) {
633 if_printf(&sc->arpcom.ac_if,
634 "failed to allocate host descriptor\n");
638 bzero(&an_rid_desc, sizeof(an_rid_desc));
639 an_rid_desc.an_valid = 1;
640 an_rid_desc.an_len = AN_RID_BUFFER_SIZE;
641 an_rid_desc.an_rid = 0;
642 an_rid_desc.an_phys = sc->an_rid_buffer.an_dma_paddr;
644 for (i = 0; i < sizeof(an_rid_desc) / 4; i++)
645 CSR_MEM_AUX_WRITE_4(sc, AN_HOST_DESC_OFFSET + i * 4,
646 ((u_int32_t*)&an_rid_desc)[i]);
652 an_attach(struct an_softc *sc, device_t dev, int flags)
654 struct ifnet *ifp = &sc->arpcom.ac_if;
657 callout_init(&sc->an_stat_timer);
658 sc->an_associated = 0;
660 sc->an_was_monitor = 0;
661 sc->an_flash_buffer = NULL;
664 if_initname(ifp, device_get_name(dev), device_get_unit(dev));
669 error = an_init_mpi350_desc(sc);
674 /* Load factory config */
675 if (an_cmd(sc, AN_CMD_READCFG, 0)) {
676 device_printf(dev, "failed to load config data\n");
680 /* Read the current configuration */
681 sc->an_config.an_type = AN_RID_GENCONFIG;
682 sc->an_config.an_len = sizeof(struct an_ltv_genconfig);
683 if (an_read_record(sc, (struct an_ltv_gen *)&sc->an_config)) {
684 device_printf(dev, "read record failed\n");
688 /* Read the card capabilities */
689 sc->an_caps.an_type = AN_RID_CAPABILITIES;
690 sc->an_caps.an_len = sizeof(struct an_ltv_caps);
691 if (an_read_record(sc, (struct an_ltv_gen *)&sc->an_caps)) {
692 device_printf(dev, "read record failed\n");
697 sc->an_ssidlist.an_type = AN_RID_SSIDLIST;
698 sc->an_ssidlist.an_len = sizeof(struct an_ltv_ssidlist_new);
699 if (an_read_record(sc, (struct an_ltv_gen *)&sc->an_ssidlist)) {
700 device_printf(dev, "read record failed\n");
705 sc->an_aplist.an_type = AN_RID_APLIST;
706 sc->an_aplist.an_len = sizeof(struct an_ltv_aplist);
707 if (an_read_record(sc, (struct an_ltv_gen *)&sc->an_aplist)) {
708 device_printf(dev, "read record failed\n");
713 /* Read the RSSI <-> dBm map */
714 sc->an_have_rssimap = 0;
715 if (sc->an_caps.an_softcaps & 8) {
716 sc->an_rssimap.an_type = AN_RID_RSSI_MAP;
717 sc->an_rssimap.an_len = sizeof(struct an_ltv_rssi_map);
718 if (an_read_record(sc, (struct an_ltv_gen *)&sc->an_rssimap)) {
719 device_printf(dev, "unable to get RSSI <-> dBM map\n");
721 device_printf(dev, "got RSSI <-> dBM map\n");
722 sc->an_have_rssimap = 1;
725 device_printf(dev, "no RSSI <-> dBM map\n");
729 ifp->if_mtu = ETHERMTU;
730 ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
731 ifp->if_ioctl = an_ioctl;
732 ifp->if_start = an_start;
733 ifp->if_watchdog = an_watchdog;
734 ifp->if_init = an_init;
735 ifp->if_baudrate = 10000000;
736 ifq_set_maxlen(&ifp->if_snd, IFQ_MAXLEN);
737 ifq_set_ready(&ifp->if_snd);
739 bzero(sc->an_config.an_nodename, sizeof(sc->an_config.an_nodename));
740 bcopy(AN_DEFAULT_NODENAME, sc->an_config.an_nodename,
741 sizeof(AN_DEFAULT_NODENAME) - 1);
743 bzero(sc->an_ssidlist.an_entry[0].an_ssid,
744 sizeof(sc->an_ssidlist.an_entry[0].an_ssid));
745 bcopy(AN_DEFAULT_NETNAME, sc->an_ssidlist.an_entry[0].an_ssid,
746 sizeof(AN_DEFAULT_NETNAME) - 1);
747 sc->an_ssidlist.an_entry[0].an_len = strlen(AN_DEFAULT_NETNAME);
749 sc->an_config.an_opmode =
750 AN_OPMODE_INFRASTRUCTURE_STATION;
753 bzero((char *)&sc->an_stats, sizeof(sc->an_stats));
755 ifmedia_init(&sc->an_ifmedia, 0, an_media_change, an_media_status);
756 #define ADD(m, c) ifmedia_add(&sc->an_ifmedia, (m), (c), NULL)
757 ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS1,
758 IFM_IEEE80211_ADHOC, 0), 0);
759 ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS1, 0, 0), 0);
760 ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS2,
761 IFM_IEEE80211_ADHOC, 0), 0);
762 ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS2, 0, 0), 0);
763 if (sc->an_caps.an_rates[2] == AN_RATE_5_5MBPS) {
764 ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS5,
765 IFM_IEEE80211_ADHOC, 0), 0);
766 ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS5, 0, 0), 0);
768 if (sc->an_caps.an_rates[3] == AN_RATE_11MBPS) {
769 ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS11,
770 IFM_IEEE80211_ADHOC, 0), 0);
771 ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_DS11, 0, 0), 0);
773 ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_AUTO,
774 IFM_IEEE80211_ADHOC, 0), 0);
775 ADD(IFM_MAKEWORD(IFM_IEEE80211, IFM_AUTO, 0, 0), 0);
777 ifmedia_set(&sc->an_ifmedia, IFM_MAKEWORD(IFM_IEEE80211, IFM_AUTO,
781 * Call MI attach routine.
783 ether_ifattach(ifp, sc->an_caps.an_oemaddr, NULL);
789 an_detach(device_t dev)
791 struct an_softc *sc = device_get_softc(dev);
792 struct ifnet *ifp = &sc->arpcom.ac_if;
794 lwkt_serialize_enter(ifp->if_serializer);
796 bus_teardown_intr(dev, sc->irq_res, sc->irq_handle);
797 lwkt_serialize_exit(ifp->if_serializer);
799 ifmedia_removeall(&sc->an_ifmedia);
801 an_release_resources(dev);
806 an_rxeof(struct an_softc *sc)
809 struct ether_header *eh;
810 struct ieee80211_frame *ih;
811 struct an_rxframe rx_frame;
812 struct an_rxframe_802_3 rx_frame_802_3;
814 int len, id, error = 0, i, count = 0;
815 int ieee80211_header_len;
818 struct an_card_rx_desc an_rx_desc;
821 ifp = &sc->arpcom.ac_if;
824 id = CSR_READ_2(sc, AN_RX_FID);
826 if (sc->an_monitor && (ifp->if_flags & IFF_PROMISC)) {
827 /* read raw 802.11 packet */
828 bpf_buf = sc->buf_802_11;
831 if (an_read_data(sc, id, 0x0, (caddr_t)&rx_frame,
838 * skip beacon by default since this increases the
842 if (!(sc->an_monitor & AN_MONITOR_INCLUDE_BEACON) &&
843 (rx_frame.an_frame_ctl &
844 IEEE80211_FC0_SUBTYPE_BEACON)) {
848 if (sc->an_monitor & AN_MONITOR_AIRONET_HEADER) {
849 len = rx_frame.an_rx_payload_len
851 /* Check for insane frame length */
852 if (len > sizeof(sc->buf_802_11)) {
854 "oversized packet received "
855 "(%d, %d)\n", len, MCLBYTES);
860 bcopy((char *)&rx_frame,
861 bpf_buf, sizeof(rx_frame));
863 error = an_read_data(sc, id, sizeof(rx_frame),
864 (caddr_t)bpf_buf+sizeof(rx_frame),
865 rx_frame.an_rx_payload_len);
867 fc1=rx_frame.an_frame_ctl >> 8;
868 ieee80211_header_len =
869 sizeof(struct ieee80211_frame);
870 if ((fc1 & IEEE80211_FC1_DIR_TODS) &&
871 (fc1 & IEEE80211_FC1_DIR_FROMDS)) {
872 ieee80211_header_len += ETHER_ADDR_LEN;
875 len = rx_frame.an_rx_payload_len
876 + ieee80211_header_len;
877 /* Check for insane frame length */
878 if (len > sizeof(sc->buf_802_11)) {
880 "oversized packet received "
881 "(%d, %d)\n", len, MCLBYTES);
886 ih = (struct ieee80211_frame *)bpf_buf;
888 bcopy((char *)&rx_frame.an_frame_ctl,
889 (char *)ih, ieee80211_header_len);
891 error = an_read_data(sc, id, sizeof(rx_frame) +
893 (caddr_t)ih +ieee80211_header_len,
894 rx_frame.an_rx_payload_len);
896 BPF_TAP(ifp, bpf_buf, len);
898 m = m_getcl(MB_DONTWAIT, MT_DATA, M_PKTHDR);
903 m->m_pkthdr.rcvif = ifp;
904 /* Read Ethernet encapsulated packet */
907 /* Read NIC frame header */
908 if (an_read_data(sc, id, 0, (caddr_t)&rx_frame,
914 /* Read in the 802_3 frame header */
915 if (an_read_data(sc, id, 0x34,
916 (caddr_t)&rx_frame_802_3,
917 sizeof(rx_frame_802_3))) {
921 if (rx_frame_802_3.an_rx_802_3_status != 0) {
925 /* Check for insane frame length */
926 len = rx_frame_802_3.an_rx_802_3_payload_len;
927 if (len > sizeof(sc->buf_802_11)) {
929 "oversized packet received (%d, %d)\n",
934 m->m_pkthdr.len = m->m_len =
935 rx_frame_802_3.an_rx_802_3_payload_len + 12;
937 eh = mtod(m, struct ether_header *);
939 bcopy((char *)&rx_frame_802_3.an_rx_dst_addr,
940 (char *)&eh->ether_dhost, ETHER_ADDR_LEN);
941 bcopy((char *)&rx_frame_802_3.an_rx_src_addr,
942 (char *)&eh->ether_shost, ETHER_ADDR_LEN);
944 /* in mbuf header type is just before payload */
945 error = an_read_data(sc, id, 0x44,
946 (caddr_t)&(eh->ether_type),
947 rx_frame_802_3.an_rx_802_3_payload_len);
957 an_cache_store(sc, m,
958 rx_frame.an_rx_signal_strength,
961 ifp->if_input(ifp, m);
964 } else { /* MPI-350 */
965 for (count = 0; count < AN_MAX_RX_DESC; count++){
966 for (i = 0; i < sizeof(an_rx_desc) / 4; i++)
967 ((u_int32_t*)&an_rx_desc)[i]
968 = CSR_MEM_AUX_READ_4(sc,
970 + (count * sizeof(an_rx_desc))
973 if (an_rx_desc.an_done && !an_rx_desc.an_valid) {
974 buf = sc->an_rx_buffer[count].an_dma_vaddr;
976 m = m_getcl(MB_DONTWAIT, MT_DATA, M_PKTHDR);
981 m->m_pkthdr.rcvif = ifp;
982 /* Read Ethernet encapsulated packet */
985 * No ANCACHE support since we just get back
986 * an Ethernet packet no 802.11 info
990 /* Read NIC frame header */
991 bcopy(buf, (caddr_t)&rx_frame,
995 /* Check for insane frame length */
996 len = an_rx_desc.an_len + 12;
997 if (len > MCLBYTES) {
999 "oversized packet received "
1000 "(%d, %d)\n", len, MCLBYTES);
1005 m->m_pkthdr.len = m->m_len =
1006 an_rx_desc.an_len + 12;
1008 eh = mtod(m, struct ether_header *);
1010 bcopy(buf, (char *)eh,
1017 an_cache_store(sc, m,
1018 rx_frame.an_rx_signal_strength,
1022 ifp->if_input(ifp, m);
1024 an_rx_desc.an_valid = 1;
1025 an_rx_desc.an_len = AN_RX_BUFFER_SIZE;
1026 an_rx_desc.an_done = 0;
1027 an_rx_desc.an_phys =
1028 sc->an_rx_buffer[count].an_dma_paddr;
1030 for (i = 0; i < sizeof(an_rx_desc) / 4; i++)
1031 CSR_MEM_AUX_WRITE_4(sc,
1033 + (count * sizeof(an_rx_desc))
1035 ((u_int32_t*)&an_rx_desc)[i]);
1038 if_printf(ifp, "Didn't get valid RX packet "
1041 an_rx_desc.an_valid,
1049 an_txeof(struct an_softc *sc, int status)
1054 ifp = &sc->arpcom.ac_if;
1057 ifp->if_flags &= ~IFF_OACTIVE;
1060 id = CSR_READ_2(sc, AN_TX_CMP_FID(sc->mpi350));
1062 if (status & AN_EV_TX_EXC) {
1067 for (i = 0; i < AN_TX_RING_CNT; i++) {
1068 if (id == sc->an_rdata.an_tx_ring[i]) {
1069 sc->an_rdata.an_tx_ring[i] = 0;
1074 AN_INC(sc->an_rdata.an_tx_cons, AN_TX_RING_CNT);
1075 } else { /* MPI 350 */
1076 id = CSR_READ_2(sc, AN_TX_CMP_FID(sc->mpi350));
1077 if (!sc->an_rdata.an_tx_empty){
1078 if (status & AN_EV_TX_EXC) {
1082 AN_INC(sc->an_rdata.an_tx_cons, AN_MAX_TX_DESC);
1083 if (sc->an_rdata.an_tx_prod ==
1084 sc->an_rdata.an_tx_cons)
1085 sc->an_rdata.an_tx_empty = 1;
1091 * We abuse the stats updater to check the current NIC status. This
1092 * is important because we don't want to allow transmissions until
1093 * the NIC has synchronized to the current cell (either as the master
1094 * in an ad-hoc group, or as a station connected to an access point).
1097 an_stats_update(void *xsc)
1099 struct an_softc *sc;
1103 ifp = &sc->arpcom.ac_if;
1105 lwkt_serialize_enter(sc->arpcom.ac_if.if_serializer);
1107 sc->an_status.an_type = AN_RID_STATUS;
1108 sc->an_status.an_len = sizeof(struct an_ltv_status);
1109 an_read_record(sc, (struct an_ltv_gen *)&sc->an_status);
1111 if (sc->an_status.an_opmode & AN_STATUS_OPMODE_IN_SYNC)
1112 sc->an_associated = 1;
1114 sc->an_associated = 0;
1116 /* Don't do this while we're not transmitting */
1117 if ((ifp->if_flags & IFF_OACTIVE) == 0) {
1118 sc->an_stats.an_len = sizeof(struct an_ltv_stats);
1119 sc->an_stats.an_type = AN_RID_32BITS_CUM;
1120 an_read_record(sc, (struct an_ltv_gen *)&sc->an_stats.an_len);
1123 callout_reset(&sc->an_stat_timer, hz, an_stats_update, sc);
1125 lwkt_serialize_exit(sc->arpcom.ac_if.if_serializer);
1131 struct an_softc *sc;
1135 sc = (struct an_softc*)xsc;
1137 ifp = &sc->arpcom.ac_if;
1139 /* Disable interrupts. */
1140 CSR_WRITE_2(sc, AN_INT_EN(sc->mpi350), 0);
1142 status = CSR_READ_2(sc, AN_EVENT_STAT(sc->mpi350));
1143 CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), ~AN_INTRS(sc->mpi350));
1145 if (status & AN_EV_MIC)
1146 CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), AN_EV_MIC);
1148 if (status & AN_EV_LINKSTAT) {
1149 if (CSR_READ_2(sc, AN_LINKSTAT(sc->mpi350))
1150 == AN_LINKSTAT_ASSOCIATED)
1151 sc->an_associated = 1;
1153 sc->an_associated = 0;
1154 CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), AN_EV_LINKSTAT);
1157 if (status & AN_EV_RX) {
1159 CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), AN_EV_RX);
1162 if (sc->mpi350 && status & AN_EV_TX_CPY) {
1163 an_txeof(sc, status);
1164 CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), AN_EV_TX_CPY);
1167 if (status & AN_EV_TX) {
1168 an_txeof(sc, status);
1169 CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), AN_EV_TX);
1172 if (status & AN_EV_TX_EXC) {
1173 an_txeof(sc, status);
1174 CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), AN_EV_TX_EXC);
1177 if (status & AN_EV_ALLOC)
1178 CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), AN_EV_ALLOC);
1180 /* Re-enable interrupts. */
1181 CSR_WRITE_2(sc, AN_INT_EN(sc->mpi350), AN_INTRS(sc->mpi350));
1183 if ((ifp->if_flags & IFF_UP) && !ifq_is_empty(&ifp->if_snd))
1188 an_cmd_struct(struct an_softc *sc, struct an_command *cmd,
1189 struct an_reply *reply)
1193 for (i = 0; i != AN_TIMEOUT; i++) {
1194 if (CSR_READ_2(sc, AN_COMMAND(sc->mpi350)) & AN_CMD_BUSY) {
1199 if( i == AN_TIMEOUT) {
1204 CSR_WRITE_2(sc, AN_PARAM0(sc->mpi350), cmd->an_parm0);
1205 CSR_WRITE_2(sc, AN_PARAM1(sc->mpi350), cmd->an_parm1);
1206 CSR_WRITE_2(sc, AN_PARAM2(sc->mpi350), cmd->an_parm2);
1207 CSR_WRITE_2(sc, AN_COMMAND(sc->mpi350), cmd->an_cmd);
1209 for (i = 0; i < AN_TIMEOUT; i++) {
1210 if (CSR_READ_2(sc, AN_EVENT_STAT(sc->mpi350)) & AN_EV_CMD)
1215 reply->an_resp0 = CSR_READ_2(sc, AN_RESP0(sc->mpi350));
1216 reply->an_resp1 = CSR_READ_2(sc, AN_RESP1(sc->mpi350));
1217 reply->an_resp2 = CSR_READ_2(sc, AN_RESP2(sc->mpi350));
1218 reply->an_status = CSR_READ_2(sc, AN_STATUS(sc->mpi350));
1220 if (CSR_READ_2(sc, AN_COMMAND(sc->mpi350)) & AN_CMD_BUSY)
1221 CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), AN_EV_CLR_STUCK_BUSY);
1223 /* Ack the command */
1224 CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), AN_EV_CMD);
1226 if (i == AN_TIMEOUT)
1233 an_cmd(struct an_softc *sc, int cmd, int val)
1237 CSR_WRITE_2(sc, AN_PARAM0(sc->mpi350), val);
1238 CSR_WRITE_2(sc, AN_PARAM1(sc->mpi350), 0);
1239 CSR_WRITE_2(sc, AN_PARAM2(sc->mpi350), 0);
1240 CSR_WRITE_2(sc, AN_COMMAND(sc->mpi350), cmd);
1242 for (i = 0; i < AN_TIMEOUT; i++) {
1243 if (CSR_READ_2(sc, AN_EVENT_STAT(sc->mpi350)) & AN_EV_CMD)
1246 if (CSR_READ_2(sc, AN_COMMAND(sc->mpi350)) == cmd)
1247 CSR_WRITE_2(sc, AN_COMMAND(sc->mpi350), cmd);
1251 for (i = 0; i < AN_TIMEOUT; i++) {
1252 CSR_READ_2(sc, AN_RESP0(sc->mpi350));
1253 CSR_READ_2(sc, AN_RESP1(sc->mpi350));
1254 CSR_READ_2(sc, AN_RESP2(sc->mpi350));
1255 s = CSR_READ_2(sc, AN_STATUS(sc->mpi350));
1256 if ((s & AN_STAT_CMD_CODE) == (cmd & AN_STAT_CMD_CODE))
1260 /* Ack the command */
1261 CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), AN_EV_CMD);
1263 if (CSR_READ_2(sc, AN_COMMAND(sc->mpi350)) & AN_CMD_BUSY)
1264 CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), AN_EV_CLR_STUCK_BUSY);
1266 if (i == AN_TIMEOUT)
1273 * This reset sequence may look a little strange, but this is the
1274 * most reliable method I've found to really kick the NIC in the
1275 * head and force it to reboot correctly.
1278 an_reset(struct an_softc *sc)
1280 an_cmd(sc, AN_CMD_ENABLE, 0);
1281 an_cmd(sc, AN_CMD_FW_RESTART, 0);
1282 an_cmd(sc, AN_CMD_NOOP2, 0);
1284 if (an_cmd(sc, AN_CMD_FORCE_SYNCLOSS, 0) == ETIMEDOUT)
1285 if_printf(&sc->arpcom.ac_if, "reset failed\n");
1287 an_cmd(sc, AN_CMD_DISABLE, 0);
1293 * Read an LTV record from the NIC.
1296 an_read_record(struct an_softc *sc, struct an_ltv_gen *ltv)
1298 struct an_ltv_gen *an_ltv;
1299 struct an_card_rid_desc an_rid_desc;
1300 struct an_command cmd;
1301 struct an_reply reply;
1306 if (ltv->an_len < 4 || ltv->an_type == 0)
1310 /* Tell the NIC to enter record read mode. */
1311 if (an_cmd(sc, AN_CMD_ACCESS|AN_ACCESS_READ, ltv->an_type)) {
1312 if_printf(&sc->arpcom.ac_if, "RID access failed\n");
1316 /* Seek to the record. */
1317 if (an_seek(sc, ltv->an_type, 0, AN_BAP1)) {
1318 if_printf(&sc->arpcom.ac_if, "seek to record failed\n");
1323 * Read the length and record type and make sure they
1324 * match what we expect (this verifies that we have enough
1325 * room to hold all of the returned data).
1326 * Length includes type but not length.
1328 len = CSR_READ_2(sc, AN_DATA1);
1329 if (len > (ltv->an_len - 2)) {
1330 if_printf(&sc->arpcom.ac_if,
1331 "record length mismatch -- expected %d, "
1332 "got %d for Rid %x\n",
1333 ltv->an_len - 2, len, ltv->an_type);
1334 len = ltv->an_len - 2;
1336 ltv->an_len = len + 2;
1339 /* Now read the data. */
1340 len -= 2; /* skip the type */
1342 for (i = len; i > 1; i -= 2)
1343 *ptr++ = CSR_READ_2(sc, AN_DATA1);
1345 ptr2 = (u_int8_t *)ptr;
1346 *ptr2 = CSR_READ_1(sc, AN_DATA1);
1348 } else { /* MPI-350 */
1349 if (sc->an_rid_buffer.an_dma_vaddr == NULL)
1351 an_rid_desc.an_valid = 1;
1352 an_rid_desc.an_len = AN_RID_BUFFER_SIZE;
1353 an_rid_desc.an_rid = 0;
1354 an_rid_desc.an_phys = sc->an_rid_buffer.an_dma_paddr;
1355 bzero(sc->an_rid_buffer.an_dma_vaddr, AN_RID_BUFFER_SIZE);
1357 bzero(&cmd, sizeof(cmd));
1358 bzero(&reply, sizeof(reply));
1359 cmd.an_cmd = AN_CMD_ACCESS|AN_ACCESS_READ;
1360 cmd.an_parm0 = ltv->an_type;
1362 for (i = 0; i < sizeof(an_rid_desc) / 4; i++)
1363 CSR_MEM_AUX_WRITE_4(sc, AN_HOST_DESC_OFFSET + i * 4,
1364 ((u_int32_t*)&an_rid_desc)[i]);
1366 if (an_cmd_struct(sc, &cmd, &reply)
1367 || reply.an_status & AN_CMD_QUAL_MASK) {
1368 if_printf(&sc->arpcom.ac_if,
1369 "failed to read RID %x %x %x %x %x, %d\n",
1379 an_ltv = (struct an_ltv_gen *)sc->an_rid_buffer.an_dma_vaddr;
1380 if (an_ltv->an_len + 2 < an_rid_desc.an_len) {
1381 an_rid_desc.an_len = an_ltv->an_len;
1384 len = an_rid_desc.an_len;
1385 if (len > (ltv->an_len - 2)) {
1386 if_printf(&sc->arpcom.ac_if,
1387 "record length mismatch -- expected %d, "
1388 "got %d for Rid %x\n",
1389 ltv->an_len - 2, len, ltv->an_type);
1390 len = ltv->an_len - 2;
1392 ltv->an_len = len + 2;
1394 bcopy(&an_ltv->an_type, <v->an_val, len);
1398 an_dump_record(sc, ltv, "Read");
1404 * Same as read, except we inject data instead of reading it.
1407 an_write_record(struct an_softc *sc, struct an_ltv_gen *ltv)
1409 struct an_card_rid_desc an_rid_desc;
1410 struct an_command cmd;
1411 struct an_reply reply;
1417 an_dump_record(sc, ltv, "Write");
1420 if (an_cmd(sc, AN_CMD_ACCESS|AN_ACCESS_READ, ltv->an_type))
1423 if (an_seek(sc, ltv->an_type, 0, AN_BAP1))
1427 * Length includes type but not length.
1429 len = ltv->an_len - 2;
1430 CSR_WRITE_2(sc, AN_DATA1, len);
1432 len -= 2; /* skip the type */
1434 for (i = len; i > 1; i -= 2)
1435 CSR_WRITE_2(sc, AN_DATA1, *ptr++);
1437 ptr2 = (u_int8_t *)ptr;
1438 CSR_WRITE_1(sc, AN_DATA0, *ptr2);
1441 if (an_cmd(sc, AN_CMD_ACCESS|AN_ACCESS_WRITE, ltv->an_type))
1446 for (i = 0; i != AN_TIMEOUT; i++) {
1447 if (CSR_READ_2(sc, AN_COMMAND(sc->mpi350))
1453 if (i == AN_TIMEOUT) {
1457 an_rid_desc.an_valid = 1;
1458 an_rid_desc.an_len = ltv->an_len - 2;
1459 an_rid_desc.an_rid = ltv->an_type;
1460 an_rid_desc.an_phys = sc->an_rid_buffer.an_dma_paddr;
1462 bcopy(<v->an_type, sc->an_rid_buffer.an_dma_vaddr,
1463 an_rid_desc.an_len);
1465 bzero(&cmd,sizeof(cmd));
1466 bzero(&reply,sizeof(reply));
1467 cmd.an_cmd = AN_CMD_ACCESS|AN_ACCESS_WRITE;
1468 cmd.an_parm0 = ltv->an_type;
1470 for (i = 0; i < sizeof(an_rid_desc) / 4; i++)
1471 CSR_MEM_AUX_WRITE_4(sc, AN_HOST_DESC_OFFSET + i * 4,
1472 ((u_int32_t*)&an_rid_desc)[i]);
1474 if ((i = an_cmd_struct(sc, &cmd, &reply))) {
1475 if_printf(&sc->arpcom.ac_if,
1476 "failed to write RID 1 %x %x %x %x %x, %d\n",
1486 if (reply.an_status & AN_CMD_QUAL_MASK) {
1487 if_printf(&sc->arpcom.ac_if,
1488 "failed to write RID 2 %x %x %x %x %x, %d\n",
1503 an_dump_record(struct an_softc *sc, struct an_ltv_gen *ltv, char *string)
1511 len = ltv->an_len - 4;
1512 if_printf(&sc->arpcom.ac_if, "RID %4x, Length %4d, Mode %s\n",
1513 ltv->an_type, ltv->an_len - 4, string);
1515 if (an_dump == 1 || (an_dump == ltv->an_type)) {
1516 if_printf(&sc->arpcom.ac_if, "\t");
1517 bzero(buf,sizeof(buf));
1519 ptr2 = (u_int8_t *)<v->an_val;
1520 for (i = len; i > 0; i--) {
1521 kprintf("%02x ", *ptr2);
1524 if (temp >= ' ' && temp <= '~')
1526 else if (temp >= 'A' && temp <= 'Z')
1530 if (++count == 16) {
1532 kprintf("%s\n",buf);
1533 if_printf(&sc->arpcom.ac_if, "\t");
1534 bzero(buf,sizeof(buf));
1537 for (; count != 16; count++) {
1540 kprintf(" %s\n",buf);
1545 an_seek(struct an_softc *sc, int id, int off, int chan)
1560 if_printf(&sc->arpcom.ac_if, "invalid data path: %x\n", chan);
1564 CSR_WRITE_2(sc, selreg, id);
1565 CSR_WRITE_2(sc, offreg, off);
1567 for (i = 0; i < AN_TIMEOUT; i++) {
1568 if (!(CSR_READ_2(sc, offreg) & (AN_OFF_BUSY|AN_OFF_ERR)))
1572 if (i == AN_TIMEOUT)
1579 an_read_data(struct an_softc *sc, int id, int off, caddr_t buf, int len)
1586 if (an_seek(sc, id, off, AN_BAP1))
1590 ptr = (u_int16_t *)buf;
1591 for (i = len; i > 1; i -= 2)
1592 *ptr++ = CSR_READ_2(sc, AN_DATA1);
1594 ptr2 = (u_int8_t *)ptr;
1595 *ptr2 = CSR_READ_1(sc, AN_DATA1);
1602 an_write_data(struct an_softc *sc, int id, int off, caddr_t buf, int len)
1609 if (an_seek(sc, id, off, AN_BAP0))
1613 ptr = (u_int16_t *)buf;
1614 for (i = len; i > 1; i -= 2)
1615 CSR_WRITE_2(sc, AN_DATA0, *ptr++);
1617 ptr2 = (u_int8_t *)ptr;
1618 CSR_WRITE_1(sc, AN_DATA0, *ptr2);
1625 * Allocate a region of memory inside the NIC and zero
1629 an_alloc_nicmem(struct an_softc *sc, int len, int *id)
1633 if (an_cmd(sc, AN_CMD_ALLOC_MEM, len)) {
1634 if_printf(&sc->arpcom.ac_if,
1635 "failed to allocate %d bytes on NIC\n", len);
1639 for (i = 0; i < AN_TIMEOUT; i++) {
1640 if (CSR_READ_2(sc, AN_EVENT_STAT(sc->mpi350)) & AN_EV_ALLOC)
1644 if (i == AN_TIMEOUT)
1647 CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), AN_EV_ALLOC);
1648 *id = CSR_READ_2(sc, AN_ALLOC_FID);
1650 if (an_seek(sc, *id, 0, AN_BAP0))
1653 for (i = 0; i < len / 2; i++)
1654 CSR_WRITE_2(sc, AN_DATA0, 0);
1660 an_setdef(struct an_softc *sc, struct an_req *areq)
1663 struct an_ltv_genconfig *cfg;
1664 struct an_ltv_ssidlist_new *ssid;
1665 struct an_ltv_aplist *ap;
1666 struct an_ltv_gen *sp;
1668 ifp = &sc->arpcom.ac_if;
1670 switch (areq->an_type) {
1671 case AN_RID_GENCONFIG:
1672 cfg = (struct an_ltv_genconfig *)areq;
1674 bcopy((char *)&cfg->an_macaddr, (char *)&sc->arpcom.ac_enaddr,
1676 bcopy((char *)&cfg->an_macaddr, IF_LLADDR(ifp), ETHER_ADDR_LEN);
1678 bcopy((char *)cfg, (char *)&sc->an_config,
1679 sizeof(struct an_ltv_genconfig));
1681 case AN_RID_SSIDLIST:
1682 ssid = (struct an_ltv_ssidlist_new *)areq;
1683 bcopy((char *)ssid, (char *)&sc->an_ssidlist,
1684 sizeof(struct an_ltv_ssidlist_new));
1687 ap = (struct an_ltv_aplist *)areq;
1688 bcopy((char *)ap, (char *)&sc->an_aplist,
1689 sizeof(struct an_ltv_aplist));
1691 case AN_RID_TX_SPEED:
1692 sp = (struct an_ltv_gen *)areq;
1693 sc->an_tx_rate = sp->an_val;
1695 /* Read the current configuration */
1696 sc->an_config.an_type = AN_RID_GENCONFIG;
1697 sc->an_config.an_len = sizeof(struct an_ltv_genconfig);
1698 an_read_record(sc, (struct an_ltv_gen *)&sc->an_config);
1699 cfg = &sc->an_config;
1701 /* clear other rates and set the only one we want */
1702 bzero(cfg->an_rates, sizeof(cfg->an_rates));
1703 cfg->an_rates[0] = sc->an_tx_rate;
1705 /* Save the new rate */
1706 sc->an_config.an_type = AN_RID_GENCONFIG;
1707 sc->an_config.an_len = sizeof(struct an_ltv_genconfig);
1709 case AN_RID_WEP_TEMP:
1710 /* Cache the temp keys */
1712 &sc->an_temp_keys[((struct an_ltv_key *)areq)->kindex],
1713 sizeof(struct an_ltv_key));
1714 case AN_RID_WEP_PERM:
1715 case AN_RID_LEAPUSERNAME:
1716 case AN_RID_LEAPPASSWORD:
1719 /* Disable the MAC. */
1720 an_cmd(sc, AN_CMD_DISABLE, 0);
1723 an_write_record(sc, (struct an_ltv_gen *)areq);
1725 /* Turn the MAC back on. */
1726 an_cmd(sc, AN_CMD_ENABLE, 0);
1729 case AN_RID_MONITOR_MODE:
1730 cfg = (struct an_ltv_genconfig *)areq;
1732 if (ng_ether_detach_p != NULL)
1733 (*ng_ether_detach_p) (ifp);
1734 sc->an_monitor = cfg->an_len;
1736 if (sc->an_monitor & AN_MONITOR) {
1737 if (sc->an_monitor & AN_MONITOR_AIRONET_HEADER) {
1738 bpfattach(ifp, DLT_AIRONET_HEADER,
1739 sizeof(struct ether_header));
1741 bpfattach(ifp, DLT_IEEE802_11,
1742 sizeof(struct ether_header));
1745 bpfattach(ifp, DLT_EN10MB,
1746 sizeof(struct ether_header));
1747 if (ng_ether_attach_p != NULL)
1748 (*ng_ether_attach_p) (ifp);
1752 if_printf(ifp, "unknown RID: %x\n", areq->an_type);
1757 /* Reinitialize the card. */
1765 * Derived from Linux driver to enable promiscious mode.
1769 an_promisc(struct an_softc *sc, int promisc)
1771 if (sc->an_was_monitor)
1774 an_init_mpi350_desc(sc);
1775 if (sc->an_monitor || sc->an_was_monitor)
1778 sc->an_was_monitor = sc->an_monitor;
1779 an_cmd(sc, AN_CMD_SET_MODE, promisc ? 0xffff : 0);
1785 an_ioctl(struct ifnet *ifp, u_long command, caddr_t data, struct ucred *cr)
1790 struct an_softc *sc;
1792 struct ieee80211req *ireq;
1793 u_int8_t tmpstr[IEEE80211_NWID_LEN*2];
1795 struct an_ltv_genconfig *config;
1796 struct an_ltv_key *key;
1797 struct an_ltv_status *status;
1798 struct an_ltv_ssidlist_new *ssids;
1800 struct aironet_ioctl l_ioctl;
1803 ifr = (struct ifreq *)data;
1804 ireq = (struct ieee80211req *)data;
1806 config = (struct an_ltv_genconfig *)&sc->areq;
1807 key = (struct an_ltv_key *)&sc->areq;
1808 status = (struct an_ltv_status *)&sc->areq;
1809 ssids = (struct an_ltv_ssidlist_new *)&sc->areq;
1813 if (ifp->if_flags & IFF_UP) {
1814 if (ifp->if_flags & IFF_RUNNING &&
1815 ifp->if_flags & IFF_PROMISC &&
1816 !(sc->an_if_flags & IFF_PROMISC)) {
1818 } else if (ifp->if_flags & IFF_RUNNING &&
1819 !(ifp->if_flags & IFF_PROMISC) &&
1820 sc->an_if_flags & IFF_PROMISC) {
1825 if (ifp->if_flags & IFF_RUNNING)
1828 sc->an_if_flags = ifp->if_flags;
1833 error = ifmedia_ioctl(ifp, ifr, &sc->an_ifmedia, command);
1837 /* The Aironet has no multicast filter. */
1841 error = copyin(ifr->ifr_data, &sc->areq, sizeof(sc->areq));
1845 if (sc->areq.an_type == AN_RID_ZERO_CACHE) {
1846 error = suser_cred(cr, NULL_CRED_OKAY);
1849 sc->an_sigitems = sc->an_nextitem = 0;
1851 } else if (sc->areq.an_type == AN_RID_READ_CACHE) {
1852 char *pt = (char *)&sc->areq.an_val;
1853 bcopy((char *)&sc->an_sigitems, (char *)pt,
1856 sc->areq.an_len = sizeof(int) / 2;
1857 bcopy((char *)&sc->an_sigcache, (char *)pt,
1858 sizeof(struct an_sigcache) * sc->an_sigitems);
1859 sc->areq.an_len += ((sizeof(struct an_sigcache) *
1860 sc->an_sigitems) / 2) + 1;
1863 if (an_read_record(sc, (struct an_ltv_gen *)&sc->areq)) {
1867 error = copyout(&sc->areq, ifr->ifr_data, sizeof(sc->areq));
1870 if ((error = suser_cred(cr, NULL_CRED_OKAY)))
1872 error = copyin(ifr->ifr_data, &sc->areq, sizeof(sc->areq));
1875 an_setdef(sc, &sc->areq);
1877 case SIOCGPRIVATE_0: /* used by Cisco client utility */
1878 if ((error = suser_cred(cr, NULL_CRED_OKAY)))
1880 copyin(ifr->ifr_data, &l_ioctl, sizeof(l_ioctl));
1881 mode = l_ioctl.command;
1883 if (mode >= AIROGCAP && mode <= AIROGSTATSD32) {
1884 error = readrids(ifp, &l_ioctl);
1885 } else if (mode >= AIROPCAP && mode <= AIROPLEAPUSR) {
1886 error = writerids(ifp, &l_ioctl);
1887 } else if (mode >= AIROFLSHRST && mode <= AIRORESTART) {
1888 error = flashcard(ifp, &l_ioctl);
1893 /* copy out the updated command info */
1894 copyout(&l_ioctl, ifr->ifr_data, sizeof(l_ioctl));
1897 case SIOCGPRIVATE_1: /* used by Cisco client utility */
1898 if ((error = suser_cred(cr, NULL_CRED_OKAY)))
1900 copyin(ifr->ifr_data, &l_ioctl, sizeof(l_ioctl));
1901 l_ioctl.command = 0;
1903 copyout(&error, l_ioctl.data, sizeof(error));
1907 sc->areq.an_len = sizeof(sc->areq);
1908 /* was that a good idea DJA we are doing a short-cut */
1909 switch (ireq->i_type) {
1910 case IEEE80211_IOC_SSID:
1911 if (ireq->i_val == -1) {
1912 sc->areq.an_type = AN_RID_STATUS;
1913 if (an_read_record(sc,
1914 (struct an_ltv_gen *)&sc->areq)) {
1918 len = status->an_ssidlen;
1919 tmpptr = status->an_ssid;
1920 } else if (ireq->i_val >= 0) {
1921 sc->areq.an_type = AN_RID_SSIDLIST;
1922 if (an_read_record(sc,
1923 (struct an_ltv_gen *)&sc->areq)) {
1927 max = (sc->areq.an_len - 4)
1928 / sizeof(struct an_ltv_ssid_entry);
1929 if ( max > MAX_SSIDS ) {
1930 kprintf("To many SSIDs only using "
1935 if (ireq->i_val > max) {
1939 len = ssids->an_entry[ireq->i_val].an_len;
1940 tmpptr = ssids->an_entry[ireq->i_val].an_ssid;
1946 if (len > IEEE80211_NWID_LEN) {
1951 bzero(tmpstr, IEEE80211_NWID_LEN);
1952 bcopy(tmpptr, tmpstr, len);
1953 error = copyout(tmpstr, ireq->i_data,
1954 IEEE80211_NWID_LEN);
1956 case IEEE80211_IOC_NUMSSIDS:
1957 sc->areq.an_len = sizeof(sc->areq);
1958 sc->areq.an_type = AN_RID_SSIDLIST;
1959 if (an_read_record(sc,
1960 (struct an_ltv_gen *)&sc->areq)) {
1964 max = (sc->areq.an_len - 4)
1965 / sizeof(struct an_ltv_ssid_entry);
1966 if (max > MAX_SSIDS) {
1967 kprintf("To many SSIDs only using "
1974 case IEEE80211_IOC_WEP:
1975 sc->areq.an_type = AN_RID_ACTUALCFG;
1976 if (an_read_record(sc,
1977 (struct an_ltv_gen *)&sc->areq)) {
1981 if (config->an_authtype & AN_AUTHTYPE_PRIVACY_IN_USE) {
1982 if (config->an_authtype &
1983 AN_AUTHTYPE_ALLOW_UNENCRYPTED)
1984 ireq->i_val = IEEE80211_WEP_MIXED;
1986 ireq->i_val = IEEE80211_WEP_ON;
1988 ireq->i_val = IEEE80211_WEP_OFF;
1991 case IEEE80211_IOC_WEPKEY:
1993 * XXX: I'm not entierly convinced this is
1994 * correct, but it's what is implemented in
1995 * ancontrol so it will have to do until we get
1996 * access to actual Cisco code.
1998 if (ireq->i_val < 0 || ireq->i_val > 8) {
2003 if (ireq->i_val < 5) {
2004 sc->areq.an_type = AN_RID_WEP_TEMP;
2005 for (i = 0; i < 5; i++) {
2006 if (an_read_record(sc,
2007 (struct an_ltv_gen *)&sc->areq)) {
2011 if (key->kindex == 0xffff)
2013 if (key->kindex == ireq->i_val)
2015 /* Required to get next entry */
2016 sc->areq.an_type = AN_RID_WEP_PERM;
2021 /* We aren't allowed to read the value of the
2022 * key from the card so we just output zeros
2023 * like we would if we could read the card, but
2024 * denied the user access.
2028 error = copyout(tmpstr, ireq->i_data, len);
2030 case IEEE80211_IOC_NUMWEPKEYS:
2031 ireq->i_val = 9; /* include home key */
2033 case IEEE80211_IOC_WEPTXKEY:
2035 * For some strange reason, you have to read all
2036 * keys before you can read the txkey.
2038 sc->areq.an_type = AN_RID_WEP_TEMP;
2039 for (i = 0; i < 5; i++) {
2040 if (an_read_record(sc,
2041 (struct an_ltv_gen *) &sc->areq)) {
2045 if (key->kindex == 0xffff)
2047 /* Required to get next entry */
2048 sc->areq.an_type = AN_RID_WEP_PERM;
2053 sc->areq.an_type = AN_RID_WEP_PERM;
2054 key->kindex = 0xffff;
2055 if (an_read_record(sc,
2056 (struct an_ltv_gen *)&sc->areq)) {
2060 ireq->i_val = key->mac[0];
2062 * Check for home mode. Map home mode into
2063 * 5th key since that is how it is stored on
2066 sc->areq.an_len = sizeof(struct an_ltv_genconfig);
2067 sc->areq.an_type = AN_RID_GENCONFIG;
2068 if (an_read_record(sc,
2069 (struct an_ltv_gen *)&sc->areq)) {
2073 if (config->an_home_product & AN_HOME_NETWORK)
2076 case IEEE80211_IOC_AUTHMODE:
2077 sc->areq.an_type = AN_RID_ACTUALCFG;
2078 if (an_read_record(sc,
2079 (struct an_ltv_gen *)&sc->areq)) {
2083 if ((config->an_authtype & AN_AUTHTYPE_MASK) ==
2085 ireq->i_val = IEEE80211_AUTH_NONE;
2086 } else if ((config->an_authtype & AN_AUTHTYPE_MASK) ==
2088 ireq->i_val = IEEE80211_AUTH_OPEN;
2089 } else if ((config->an_authtype & AN_AUTHTYPE_MASK) ==
2090 AN_AUTHTYPE_SHAREDKEY) {
2091 ireq->i_val = IEEE80211_AUTH_SHARED;
2095 case IEEE80211_IOC_STATIONNAME:
2096 sc->areq.an_type = AN_RID_ACTUALCFG;
2097 if (an_read_record(sc,
2098 (struct an_ltv_gen *)&sc->areq)) {
2102 ireq->i_len = sizeof(config->an_nodename);
2103 tmpptr = config->an_nodename;
2104 bzero(tmpstr, IEEE80211_NWID_LEN);
2105 bcopy(tmpptr, tmpstr, ireq->i_len);
2106 error = copyout(tmpstr, ireq->i_data,
2107 IEEE80211_NWID_LEN);
2109 case IEEE80211_IOC_CHANNEL:
2110 sc->areq.an_type = AN_RID_STATUS;
2111 if (an_read_record(sc,
2112 (struct an_ltv_gen *)&sc->areq)) {
2116 ireq->i_val = status->an_cur_channel;
2118 case IEEE80211_IOC_POWERSAVE:
2119 sc->areq.an_type = AN_RID_ACTUALCFG;
2120 if (an_read_record(sc,
2121 (struct an_ltv_gen *)&sc->areq)) {
2125 if (config->an_psave_mode == AN_PSAVE_NONE) {
2126 ireq->i_val = IEEE80211_POWERSAVE_OFF;
2127 } else if (config->an_psave_mode == AN_PSAVE_CAM) {
2128 ireq->i_val = IEEE80211_POWERSAVE_CAM;
2129 } else if (config->an_psave_mode == AN_PSAVE_PSP) {
2130 ireq->i_val = IEEE80211_POWERSAVE_PSP;
2131 } else if (config->an_psave_mode == AN_PSAVE_PSP_CAM) {
2132 ireq->i_val = IEEE80211_POWERSAVE_PSP_CAM;
2136 case IEEE80211_IOC_POWERSAVESLEEP:
2137 sc->areq.an_type = AN_RID_ACTUALCFG;
2138 if (an_read_record(sc,
2139 (struct an_ltv_gen *)&sc->areq)) {
2143 ireq->i_val = config->an_listen_interval;
2148 if ((error = suser_cred(cr, NULL_CRED_OKAY)))
2150 sc->areq.an_len = sizeof(sc->areq);
2152 * We need a config structure for everything but the WEP
2153 * key management and SSIDs so we get it now so avoid
2154 * duplicating this code every time.
2156 if (ireq->i_type != IEEE80211_IOC_SSID &&
2157 ireq->i_type != IEEE80211_IOC_WEPKEY &&
2158 ireq->i_type != IEEE80211_IOC_WEPTXKEY) {
2159 sc->areq.an_type = AN_RID_GENCONFIG;
2160 if (an_read_record(sc,
2161 (struct an_ltv_gen *)&sc->areq)) {
2166 switch (ireq->i_type) {
2167 case IEEE80211_IOC_SSID:
2168 sc->areq.an_len = sizeof(sc->areq);
2169 sc->areq.an_type = AN_RID_SSIDLIST;
2170 if (an_read_record(sc,
2171 (struct an_ltv_gen *)&sc->areq)) {
2175 if (ireq->i_len > IEEE80211_NWID_LEN) {
2179 max = (sc->areq.an_len - 4)
2180 / sizeof(struct an_ltv_ssid_entry);
2181 if (max > MAX_SSIDS) {
2182 kprintf("To many SSIDs only using "
2187 if (ireq->i_val > max) {
2191 error = copyin(ireq->i_data,
2192 ssids->an_entry[ireq->i_val].an_ssid,
2194 ssids->an_entry[ireq->i_val].an_len
2199 case IEEE80211_IOC_WEP:
2200 switch (ireq->i_val) {
2201 case IEEE80211_WEP_OFF:
2202 config->an_authtype &=
2203 ~(AN_AUTHTYPE_PRIVACY_IN_USE |
2204 AN_AUTHTYPE_ALLOW_UNENCRYPTED);
2206 case IEEE80211_WEP_ON:
2207 config->an_authtype |=
2208 AN_AUTHTYPE_PRIVACY_IN_USE;
2209 config->an_authtype &=
2210 ~AN_AUTHTYPE_ALLOW_UNENCRYPTED;
2212 case IEEE80211_WEP_MIXED:
2213 config->an_authtype |=
2214 AN_AUTHTYPE_PRIVACY_IN_USE |
2215 AN_AUTHTYPE_ALLOW_UNENCRYPTED;
2222 case IEEE80211_IOC_WEPKEY:
2223 if (ireq->i_val < 0 || ireq->i_val > 8 ||
2228 error = copyin(ireq->i_data, tmpstr, 13);
2232 * Map the 9th key into the home mode
2233 * since that is how it is stored on
2236 bzero(&sc->areq, sizeof(struct an_ltv_key));
2237 sc->areq.an_len = sizeof(struct an_ltv_key);
2238 key->mac[0] = 1; /* The others are 0. */
2239 if (ireq->i_val < 4) {
2240 sc->areq.an_type = AN_RID_WEP_TEMP;
2241 key->kindex = ireq->i_val;
2243 sc->areq.an_type = AN_RID_WEP_PERM;
2244 key->kindex = ireq->i_val - 4;
2246 key->klen = ireq->i_len;
2247 bcopy(tmpstr, key->key, key->klen);
2249 case IEEE80211_IOC_WEPTXKEY:
2250 if (ireq->i_val < 0 || ireq->i_val > 4) {
2256 * Map the 5th key into the home mode
2257 * since that is how it is stored on
2260 sc->areq.an_len = sizeof(struct an_ltv_genconfig);
2261 sc->areq.an_type = AN_RID_ACTUALCFG;
2262 if (an_read_record(sc,
2263 (struct an_ltv_gen *)&sc->areq)) {
2267 if (ireq->i_val == 4) {
2268 config->an_home_product |= AN_HOME_NETWORK;
2271 config->an_home_product &= ~AN_HOME_NETWORK;
2274 sc->an_config.an_home_product
2275 = config->an_home_product;
2277 /* update configuration */
2280 bzero(&sc->areq, sizeof(struct an_ltv_key));
2281 sc->areq.an_len = sizeof(struct an_ltv_key);
2282 sc->areq.an_type = AN_RID_WEP_PERM;
2283 key->kindex = 0xffff;
2284 key->mac[0] = ireq->i_val;
2286 case IEEE80211_IOC_AUTHMODE:
2287 switch (ireq->i_val) {
2288 case IEEE80211_AUTH_NONE:
2289 config->an_authtype = AN_AUTHTYPE_NONE |
2290 (config->an_authtype & ~AN_AUTHTYPE_MASK);
2292 case IEEE80211_AUTH_OPEN:
2293 config->an_authtype = AN_AUTHTYPE_OPEN |
2294 (config->an_authtype & ~AN_AUTHTYPE_MASK);
2296 case IEEE80211_AUTH_SHARED:
2297 config->an_authtype = AN_AUTHTYPE_SHAREDKEY |
2298 (config->an_authtype & ~AN_AUTHTYPE_MASK);
2304 case IEEE80211_IOC_STATIONNAME:
2305 if (ireq->i_len > 16) {
2309 bzero(config->an_nodename, 16);
2310 error = copyin(ireq->i_data,
2311 config->an_nodename, ireq->i_len);
2313 case IEEE80211_IOC_CHANNEL:
2315 * The actual range is 1-14, but if you set it
2316 * to 0 you get the default so we let that work
2319 if (ireq->i_val < 0 || ireq->i_val >14) {
2323 config->an_ds_channel = ireq->i_val;
2325 case IEEE80211_IOC_POWERSAVE:
2326 switch (ireq->i_val) {
2327 case IEEE80211_POWERSAVE_OFF:
2328 config->an_psave_mode = AN_PSAVE_NONE;
2330 case IEEE80211_POWERSAVE_CAM:
2331 config->an_psave_mode = AN_PSAVE_CAM;
2333 case IEEE80211_POWERSAVE_PSP:
2334 config->an_psave_mode = AN_PSAVE_PSP;
2336 case IEEE80211_POWERSAVE_PSP_CAM:
2337 config->an_psave_mode = AN_PSAVE_PSP_CAM;
2344 case IEEE80211_IOC_POWERSAVESLEEP:
2345 config->an_listen_interval = ireq->i_val;
2350 an_setdef(sc, &sc->areq);
2353 error = ether_ioctl(ifp, command, data);
2361 an_init_tx_ring(struct an_softc *sc)
2367 for (i = 0; i < AN_TX_RING_CNT; i++) {
2368 if (an_alloc_nicmem(sc, 1518 +
2371 sc->an_rdata.an_tx_fids[i] = id;
2372 sc->an_rdata.an_tx_ring[i] = 0;
2376 sc->an_rdata.an_tx_prod = 0;
2377 sc->an_rdata.an_tx_cons = 0;
2378 sc->an_rdata.an_tx_empty = 1;
2386 struct an_softc *sc = xsc;
2387 struct ifnet *ifp = &sc->arpcom.ac_if;
2389 if (ifp->if_flags & IFF_RUNNING)
2392 sc->an_associated = 0;
2394 /* Allocate the TX buffers */
2395 if (an_init_tx_ring(sc)) {
2398 an_init_mpi350_desc(sc);
2399 if (an_init_tx_ring(sc)) {
2400 if_printf(ifp, "tx buffer allocation failed\n");
2405 /* Set our MAC address. */
2406 bcopy((char *)&sc->arpcom.ac_enaddr,
2407 (char *)&sc->an_config.an_macaddr, ETHER_ADDR_LEN);
2409 if (ifp->if_flags & IFF_BROADCAST)
2410 sc->an_config.an_rxmode = AN_RXMODE_BC_ADDR;
2412 sc->an_config.an_rxmode = AN_RXMODE_ADDR;
2414 if (ifp->if_flags & IFF_MULTICAST)
2415 sc->an_config.an_rxmode = AN_RXMODE_BC_MC_ADDR;
2417 if (ifp->if_flags & IFF_PROMISC) {
2418 if (sc->an_monitor & AN_MONITOR) {
2419 if (sc->an_monitor & AN_MONITOR_ANY_BSS) {
2420 sc->an_config.an_rxmode |=
2421 AN_RXMODE_80211_MONITOR_ANYBSS |
2422 AN_RXMODE_NO_8023_HEADER;
2424 sc->an_config.an_rxmode |=
2425 AN_RXMODE_80211_MONITOR_CURBSS |
2426 AN_RXMODE_NO_8023_HEADER;
2431 if (sc->an_have_rssimap)
2432 sc->an_config.an_rxmode |= AN_RXMODE_NORMALIZED_RSSI;
2434 /* Set the ssid list */
2435 sc->an_ssidlist.an_type = AN_RID_SSIDLIST;
2436 sc->an_ssidlist.an_len = sizeof(struct an_ltv_ssidlist_new);
2437 if (an_write_record(sc, (struct an_ltv_gen *)&sc->an_ssidlist)) {
2438 if_printf(ifp, "failed to set ssid list\n");
2442 /* Set the AP list */
2443 sc->an_aplist.an_type = AN_RID_APLIST;
2444 sc->an_aplist.an_len = sizeof(struct an_ltv_aplist);
2445 if (an_write_record(sc, (struct an_ltv_gen *)&sc->an_aplist)) {
2446 if_printf(ifp, "failed to set AP list\n");
2450 /* Set the configuration in the NIC */
2451 sc->an_config.an_len = sizeof(struct an_ltv_genconfig);
2452 sc->an_config.an_type = AN_RID_GENCONFIG;
2453 if (an_write_record(sc, (struct an_ltv_gen *)&sc->an_config)) {
2454 if_printf(ifp, "failed to set configuration\n");
2458 /* Enable the MAC */
2459 if (an_cmd(sc, AN_CMD_ENABLE, 0)) {
2460 if_printf(ifp, "failed to enable MAC\n");
2464 if (ifp->if_flags & IFF_PROMISC)
2465 an_cmd(sc, AN_CMD_SET_MODE, 0xffff);
2467 /* enable interrupts */
2468 CSR_WRITE_2(sc, AN_INT_EN(sc->mpi350), AN_INTRS(sc->mpi350));
2470 ifp->if_flags |= IFF_RUNNING;
2471 ifp->if_flags &= ~IFF_OACTIVE;
2473 callout_reset(&sc->an_stat_timer, hz, an_stats_update, sc);
2477 an_start(struct ifnet *ifp)
2479 struct an_softc *sc;
2480 struct mbuf *m0 = NULL;
2481 struct an_txframe_802_3 tx_frame_802_3;
2482 struct ether_header *eh;
2483 int id, idx, i, ready;
2484 unsigned char txcontrol;
2485 struct an_card_tx_desc an_tx_desc;
2490 if (ifp->if_flags & IFF_OACTIVE)
2493 if (!sc->an_associated) {
2494 ifq_purge(&ifp->if_snd);
2498 /* We can't send in monitor mode so toss any attempts. */
2499 if (sc->an_monitor && (ifp->if_flags & IFF_PROMISC)) {
2500 ifq_purge(&ifp->if_snd);
2505 idx = sc->an_rdata.an_tx_prod;
2508 bzero((char *)&tx_frame_802_3, sizeof(tx_frame_802_3));
2510 while (sc->an_rdata.an_tx_ring[idx] == 0) {
2512 m0 = ifq_dequeue(&ifp->if_snd, NULL);
2516 id = sc->an_rdata.an_tx_fids[idx];
2517 eh = mtod(m0, struct ether_header *);
2519 bcopy((char *)&eh->ether_dhost,
2520 (char *)&tx_frame_802_3.an_tx_dst_addr,
2522 bcopy((char *)&eh->ether_shost,
2523 (char *)&tx_frame_802_3.an_tx_src_addr,
2526 /* minus src/dest mac & type */
2527 tx_frame_802_3.an_tx_802_3_payload_len =
2528 m0->m_pkthdr.len - 12;
2530 m_copydata(m0, sizeof(struct ether_header) - 2 ,
2531 tx_frame_802_3.an_tx_802_3_payload_len,
2532 (caddr_t)&sc->an_txbuf);
2534 txcontrol = AN_TXCTL_8023 | AN_TXCTL_HW(sc->mpi350);
2535 /* write the txcontrol only */
2536 an_write_data(sc, id, 0x08, (caddr_t)&txcontrol,
2540 an_write_data(sc, id, 0x34, (caddr_t)&tx_frame_802_3,
2541 sizeof(struct an_txframe_802_3));
2543 /* in mbuf header type is just before payload */
2544 an_write_data(sc, id, 0x44, (caddr_t)&sc->an_txbuf,
2545 tx_frame_802_3.an_tx_802_3_payload_len);
2552 sc->an_rdata.an_tx_ring[idx] = id;
2553 if (an_cmd(sc, AN_CMD_TX, id))
2554 if_printf(ifp, "xmit failed\n");
2556 AN_INC(idx, AN_TX_RING_CNT);
2559 * Set a timeout in case the chip goes out to lunch.
2563 } else { /* MPI-350 */
2564 /* Disable interrupts. */
2565 CSR_WRITE_2(sc, AN_INT_EN(sc->mpi350), 0);
2567 while (sc->an_rdata.an_tx_empty ||
2568 idx != sc->an_rdata.an_tx_cons) {
2570 m0 = ifq_dequeue(&ifp->if_snd, NULL);
2574 buf = sc->an_tx_buffer[idx].an_dma_vaddr;
2576 eh = mtod(m0, struct ether_header *);
2578 /* DJA optimize this to limit bcopy */
2579 bcopy((char *)&eh->ether_dhost,
2580 (char *)&tx_frame_802_3.an_tx_dst_addr,
2582 bcopy((char *)&eh->ether_shost,
2583 (char *)&tx_frame_802_3.an_tx_src_addr,
2586 /* minus src/dest mac & type */
2587 tx_frame_802_3.an_tx_802_3_payload_len =
2588 m0->m_pkthdr.len - 12;
2590 m_copydata(m0, sizeof(struct ether_header) - 2 ,
2591 tx_frame_802_3.an_tx_802_3_payload_len,
2592 (caddr_t)&sc->an_txbuf);
2594 txcontrol = AN_TXCTL_8023 | AN_TXCTL_HW(sc->mpi350);
2595 /* write the txcontrol only */
2596 bcopy((caddr_t)&txcontrol, &buf[0x08],
2600 bcopy((caddr_t)&tx_frame_802_3, &buf[0x34],
2601 sizeof(struct an_txframe_802_3));
2603 /* in mbuf header type is just before payload */
2604 bcopy((caddr_t)&sc->an_txbuf, &buf[0x44],
2605 tx_frame_802_3.an_tx_802_3_payload_len);
2608 bzero(&an_tx_desc, sizeof(an_tx_desc));
2609 an_tx_desc.an_offset = 0;
2610 an_tx_desc.an_eoc = 1;
2611 an_tx_desc.an_valid = 1;
2612 an_tx_desc.an_len = 0x44 +
2613 tx_frame_802_3.an_tx_802_3_payload_len;
2614 an_tx_desc.an_phys = sc->an_tx_buffer[idx].an_dma_paddr;
2615 for (i = sizeof(an_tx_desc) / 4 - 1; i >= 0 ; --i) {
2616 CSR_MEM_AUX_WRITE_4(sc, AN_TX_DESC_OFFSET
2618 + (0 * sizeof(an_tx_desc))
2620 ((u_int32_t*)&an_tx_desc)[i]);
2628 AN_INC(idx, AN_MAX_TX_DESC);
2629 sc->an_rdata.an_tx_empty = 0;
2631 CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350), AN_EV_ALLOC);
2634 * Set a timeout in case the chip goes out to lunch.
2639 /* Re-enable interrupts. */
2640 CSR_WRITE_2(sc, AN_INT_EN(sc->mpi350), AN_INTRS(sc->mpi350));
2644 ifp->if_flags |= IFF_OACTIVE;
2646 sc->an_rdata.an_tx_prod = idx;
2650 an_stop(struct an_softc *sc)
2655 ifp = &sc->arpcom.ac_if;
2657 an_cmd(sc, AN_CMD_FORCE_SYNCLOSS, 0);
2658 CSR_WRITE_2(sc, AN_INT_EN(sc->mpi350), 0);
2659 an_cmd(sc, AN_CMD_DISABLE, 0);
2661 for (i = 0; i < AN_TX_RING_CNT; i++)
2662 an_cmd(sc, AN_CMD_DEALLOC_MEM, sc->an_rdata.an_tx_fids[i]);
2664 callout_stop(&sc->an_stat_timer);
2666 ifp->if_flags &= ~(IFF_RUNNING|IFF_OACTIVE);
2668 if (sc->an_flash_buffer) {
2669 kfree(sc->an_flash_buffer, M_DEVBUF);
2670 sc->an_flash_buffer = NULL;
2675 an_watchdog(struct ifnet *ifp)
2677 struct an_softc *sc;
2683 an_init_mpi350_desc(sc);
2688 if_printf(ifp, "device timeout\n");
2692 an_shutdown(device_t dev)
2694 struct an_softc *sc;
2696 sc = device_get_softc(dev);
2703 an_resume(device_t dev)
2705 struct an_softc *sc = device_get_softc(dev);
2706 struct ifnet *ifp = &sc->arpcom.ac_if;
2709 lwkt_serialize_enter(ifp->if_serializer);
2713 an_init_mpi350_desc(sc);
2716 /* Recovery temporary keys */
2717 for (i = 0; i < 4; i++) {
2718 sc->areq.an_type = AN_RID_WEP_TEMP;
2719 sc->areq.an_len = sizeof(struct an_ltv_key);
2720 bcopy(&sc->an_temp_keys[i],
2721 &sc->areq, sizeof(struct an_ltv_key));
2722 an_setdef(sc, &sc->areq);
2725 if (ifp->if_flags & IFF_UP)
2728 lwkt_serialize_exit(ifp->if_serializer);
2732 /* Aironet signal strength cache code.
2733 * store signal/noise/quality on per MAC src basis in
2734 * a small fixed cache. The cache wraps if > MAX slots
2735 * used. The cache may be zeroed out to start over.
2736 * Two simple filters exist to reduce computation:
2737 * 1. ip only (literally 0x800, ETHERTYPE_IP) which may be used
2738 * to ignore some packets. It defaults to ip only.
2739 * it could be used to focus on broadcast, non-IP 802.11 beacons.
2740 * 2. multicast/broadcast only. This may be used to
2741 * ignore unicast packets and only cache signal strength
2742 * for multicast/broadcast packets (beacons); e.g., Mobile-IP
2743 * beacons and not unicast traffic.
2745 * The cache stores (MAC src(index), IP src (major clue), signal,
2748 * No apologies for storing IP src here. It's easy and saves much
2749 * trouble elsewhere. The cache is assumed to be INET dependent,
2750 * although it need not be.
2752 * Note: the Aironet only has a single byte of signal strength value
2753 * in the rx frame header, and it's not scaled to anything sensible.
2754 * This is kind of lame, but it's all we've got.
2757 #ifdef documentation
2759 int an_sigitems; /* number of cached entries */
2760 struct an_sigcache an_sigcache[MAXANCACHE]; /* array of cache entries */
2761 int an_nextitem; /* index/# of entries */
2766 /* control variables for cache filtering. Basic idea is
2767 * to reduce cost (e.g., to only Mobile-IP agent beacons
2768 * which are broadcast or multicast). Still you might
2769 * want to measure signal strength anth unicast ping packets
2770 * on a pt. to pt. ant. setup.
2772 /* set true if you want to limit cache items to broadcast/mcast
2773 * only packets (not unicast). Useful for mobile-ip beacons which
2774 * are broadcast/multicast at network layer. Default is all packets
2775 * so ping/unicast anll work say anth pt. to pt. antennae setup.
2777 static int an_cache_mcastonly = 0;
2778 SYSCTL_INT(_hw_an, OID_AUTO, an_cache_mcastonly, CTLFLAG_RW,
2779 &an_cache_mcastonly, 0, "");
2781 /* set true if you want to limit cache items to IP packets only
2783 static int an_cache_iponly = 1;
2784 SYSCTL_INT(_hw_an, OID_AUTO, an_cache_iponly, CTLFLAG_RW,
2785 &an_cache_iponly, 0, "");
2788 * an_cache_store, per rx packet store signal
2789 * strength in MAC (src) indexed cache.
2792 an_cache_store (struct an_softc *sc, struct mbuf *m, u_int8_t rx_rssi,
2793 u_int8_t rx_quality)
2795 struct ether_header *eh = mtod(m, struct ether_header *);
2796 struct ip *ip = NULL;
2798 static int cache_slot = 0; /* use this cache entry */
2799 static int wrapindex = 0; /* next "free" cache entry */
2803 * 2. configurable filter to throw out unicast packets,
2804 * keep multicast only.
2807 if ((ntohs(eh->ether_type) == ETHERTYPE_IP))
2808 ip = (struct ip *)(mtod(m, uint8_t *) + ETHER_HDR_LEN);
2809 else if (an_cache_iponly)
2812 /* filter for broadcast/multicast only
2814 if (an_cache_mcastonly && ((eh->ether_dhost[0] & 1) == 0)) {
2819 if_printf(&sc->arpcom.ac_if, "q value %x (MSB=0x%x, LSB=0x%x)\n",
2820 rx_rssi & 0xffff, rx_rssi >> 8, rx_rssi & 0xff);
2823 /* do a linear search for a matching MAC address
2824 * in the cache table
2825 * . MAC address is 6 bytes,
2826 * . var w_nextitem holds total number of entries already cached
2828 for (i = 0; i < sc->an_nextitem; i++) {
2829 if (! bcmp(eh->ether_shost , sc->an_sigcache[i].macsrc, 6 )) {
2831 * so we already have this entry,
2838 /* did we find a matching mac address?
2839 * if yes, then overwrite a previously existing cache entry
2841 if (i < sc->an_nextitem ) {
2844 /* else, have a new address entry,so
2845 * add this new entry,
2846 * if table full, then we need to replace LRU entry
2850 /* check for space in cache table
2851 * note: an_nextitem also holds number of entries
2852 * added in the cache table
2854 if ( sc->an_nextitem < MAXANCACHE ) {
2855 cache_slot = sc->an_nextitem;
2857 sc->an_sigitems = sc->an_nextitem;
2859 /* no space found, so simply wrap anth wrap index
2860 * and "zap" the next entry
2863 if (wrapindex == MAXANCACHE) {
2866 cache_slot = wrapindex++;
2870 /* invariant: cache_slot now points at some slot
2873 if (cache_slot < 0 || cache_slot >= MAXANCACHE) {
2874 log(LOG_ERR, "an_cache_store, bad index: %d of "
2875 "[0..%d], gross cache error\n",
2876 cache_slot, MAXANCACHE);
2880 /* store items in cache
2881 * .ip source address
2886 sc->an_sigcache[cache_slot].ipsrc = ip->ip_src.s_addr;
2888 bcopy( eh->ether_shost, sc->an_sigcache[cache_slot].macsrc, 6);
2891 switch (an_cache_mode) {
2893 if (sc->an_have_rssimap) {
2894 sc->an_sigcache[cache_slot].signal =
2895 - sc->an_rssimap.an_entries[rx_rssi].an_rss_dbm;
2896 sc->an_sigcache[cache_slot].quality =
2897 - sc->an_rssimap.an_entries[rx_quality].an_rss_dbm;
2899 sc->an_sigcache[cache_slot].signal = rx_rssi - 100;
2900 sc->an_sigcache[cache_slot].quality = rx_quality - 100;
2904 if (sc->an_have_rssimap) {
2905 sc->an_sigcache[cache_slot].signal =
2906 sc->an_rssimap.an_entries[rx_rssi].an_rss_pct;
2907 sc->an_sigcache[cache_slot].quality =
2908 sc->an_rssimap.an_entries[rx_quality].an_rss_pct;
2912 if (rx_quality > 100)
2914 sc->an_sigcache[cache_slot].signal = rx_rssi;
2915 sc->an_sigcache[cache_slot].quality = rx_quality;
2919 sc->an_sigcache[cache_slot].signal = rx_rssi;
2920 sc->an_sigcache[cache_slot].quality = rx_quality;
2924 sc->an_sigcache[cache_slot].noise = 0;
2931 an_media_change(struct ifnet *ifp)
2933 struct an_softc *sc = ifp->if_softc;
2934 struct an_ltv_genconfig *cfg;
2935 int otype = sc->an_config.an_opmode;
2936 int orate = sc->an_tx_rate;
2938 switch (IFM_SUBTYPE(sc->an_ifmedia.ifm_cur->ifm_media)) {
2939 case IFM_IEEE80211_DS1:
2940 sc->an_tx_rate = AN_RATE_1MBPS;
2942 case IFM_IEEE80211_DS2:
2943 sc->an_tx_rate = AN_RATE_2MBPS;
2945 case IFM_IEEE80211_DS5:
2946 sc->an_tx_rate = AN_RATE_5_5MBPS;
2948 case IFM_IEEE80211_DS11:
2949 sc->an_tx_rate = AN_RATE_11MBPS;
2956 if (orate != sc->an_tx_rate) {
2957 /* Read the current configuration */
2958 sc->an_config.an_type = AN_RID_GENCONFIG;
2959 sc->an_config.an_len = sizeof(struct an_ltv_genconfig);
2960 an_read_record(sc, (struct an_ltv_gen *)&sc->an_config);
2961 cfg = &sc->an_config;
2963 /* clear other rates and set the only one we want */
2964 bzero(cfg->an_rates, sizeof(cfg->an_rates));
2965 cfg->an_rates[0] = sc->an_tx_rate;
2967 /* Save the new rate */
2968 sc->an_config.an_type = AN_RID_GENCONFIG;
2969 sc->an_config.an_len = sizeof(struct an_ltv_genconfig);
2972 if ((sc->an_ifmedia.ifm_cur->ifm_media & IFM_IEEE80211_ADHOC) != 0)
2973 sc->an_config.an_opmode &= ~AN_OPMODE_INFRASTRUCTURE_STATION;
2975 sc->an_config.an_opmode |= AN_OPMODE_INFRASTRUCTURE_STATION;
2977 if (otype != sc->an_config.an_opmode ||
2978 orate != sc->an_tx_rate)
2985 an_media_status(struct ifnet *ifp, struct ifmediareq *imr)
2987 struct an_ltv_status status;
2988 struct an_softc *sc = ifp->if_softc;
2990 status.an_len = sizeof(status);
2991 status.an_type = AN_RID_STATUS;
2992 if (an_read_record(sc, (struct an_ltv_gen *)&status)) {
2993 /* If the status read fails, just lie. */
2994 imr->ifm_active = sc->an_ifmedia.ifm_cur->ifm_media;
2995 imr->ifm_status = IFM_AVALID|IFM_ACTIVE;
2998 if (sc->an_tx_rate == 0) {
2999 imr->ifm_active = IFM_IEEE80211|IFM_AUTO;
3000 if (sc->an_config.an_opmode == AN_OPMODE_IBSS_ADHOC)
3001 imr->ifm_active |= IFM_IEEE80211_ADHOC;
3002 switch (status.an_current_tx_rate) {
3004 imr->ifm_active |= IFM_IEEE80211_DS1;
3007 imr->ifm_active |= IFM_IEEE80211_DS2;
3009 case AN_RATE_5_5MBPS:
3010 imr->ifm_active |= IFM_IEEE80211_DS5;
3012 case AN_RATE_11MBPS:
3013 imr->ifm_active |= IFM_IEEE80211_DS11;
3017 imr->ifm_active = sc->an_ifmedia.ifm_cur->ifm_media;
3020 imr->ifm_status = IFM_AVALID;
3021 if (status.an_opmode & AN_STATUS_OPMODE_ASSOCIATED)
3022 imr->ifm_status |= IFM_ACTIVE;
3025 /********************** Cisco utility support routines *************/
3028 * ReadRids & WriteRids derived from Cisco driver additions to Ben Reed's
3033 readrids(struct ifnet *ifp, struct aironet_ioctl *l_ioctl)
3036 struct an_softc *sc;
3038 switch (l_ioctl->command) {
3040 rid = AN_RID_CAPABILITIES;
3043 rid = AN_RID_GENCONFIG;
3046 rid = AN_RID_SSIDLIST;
3049 rid = AN_RID_APLIST;
3052 rid = AN_RID_DRVNAME;
3055 rid = AN_RID_ENCAPPROTO;
3058 rid = AN_RID_WEP_TEMP;
3061 rid = AN_RID_WEP_PERM;
3064 rid = AN_RID_STATUS;
3067 rid = AN_RID_32BITS_DELTA;
3070 rid = AN_RID_32BITS_CUM;
3077 if (rid == 999) /* Is bad command */
3081 sc->areq.an_len = AN_MAX_DATALEN;
3082 sc->areq.an_type = rid;
3084 an_read_record(sc, (struct an_ltv_gen *)&sc->areq);
3086 l_ioctl->len = sc->areq.an_len - 4; /* just data */
3088 /* the data contains the length at first */
3089 if (copyout(&(sc->areq.an_len), l_ioctl->data,
3090 sizeof(sc->areq.an_len))) {
3093 /* Just copy the data back */
3094 if (copyout(&(sc->areq.an_val), l_ioctl->data + 2,
3102 writerids(struct ifnet *ifp, struct aironet_ioctl *l_ioctl)
3104 struct an_softc *sc;
3109 command = l_ioctl->command;
3113 rid = AN_RID_SSIDLIST;
3116 rid = AN_RID_CAPABILITIES;
3119 rid = AN_RID_APLIST;
3122 rid = AN_RID_GENCONFIG;
3125 an_cmd(sc, AN_CMD_ENABLE, 0);
3129 an_cmd(sc, AN_CMD_DISABLE, 0);
3134 * This command merely clears the counts does not actually
3135 * store any data only reads rid. But as it changes the cards
3136 * state, I put it in the writerid routines.
3139 rid = AN_RID_32BITS_DELTACLR;
3141 sc->areq.an_len = AN_MAX_DATALEN;
3142 sc->areq.an_type = rid;
3144 an_read_record(sc, (struct an_ltv_gen *)&sc->areq);
3145 l_ioctl->len = sc->areq.an_len - 4; /* just data */
3147 /* the data contains the length at first */
3148 if (copyout(&(sc->areq.an_len), l_ioctl->data,
3149 sizeof(sc->areq.an_len))) {
3152 /* Just copy the data */
3153 if (copyout(&(sc->areq.an_val), l_ioctl->data + 2,
3160 rid = AN_RID_WEP_TEMP;
3163 rid = AN_RID_WEP_PERM;
3166 rid = AN_RID_LEAPUSERNAME;
3169 rid = AN_RID_LEAPPASSWORD;
3176 if (l_ioctl->len > sizeof(sc->areq.an_val) + 4)
3178 sc->areq.an_len = l_ioctl->len + 4; /* add type & length */
3179 sc->areq.an_type = rid;
3181 /* Just copy the data back */
3182 copyin((l_ioctl->data) + 2, &sc->areq.an_val,
3185 an_cmd(sc, AN_CMD_DISABLE, 0);
3186 an_write_record(sc, (struct an_ltv_gen *)&sc->areq);
3187 an_cmd(sc, AN_CMD_ENABLE, 0);
3194 * General Flash utilities derived from Cisco driver additions to Ben Reed's
3198 #define FLASH_DELAY(x) tsleep(ifp, 0, "flash", ((x) / hz) + 1);
3199 #define FLASH_COMMAND 0x7e7e
3200 #define FLASH_SIZE 32 * 1024
3203 unstickbusy(struct ifnet *ifp)
3205 struct an_softc *sc = ifp->if_softc;
3207 if (CSR_READ_2(sc, AN_COMMAND(sc->mpi350)) & AN_CMD_BUSY) {
3208 CSR_WRITE_2(sc, AN_EVENT_ACK(sc->mpi350),
3209 AN_EV_CLR_STUCK_BUSY);
3216 * Wait for busy completion from card wait for delay uSec's Return true for
3217 * success meaning command reg is clear
3221 WaitBusy(struct ifnet *ifp, int uSec)
3223 int statword = 0xffff;
3225 struct an_softc *sc = ifp->if_softc;
3227 while ((statword & AN_CMD_BUSY) && delay <= (1000 * 100)) {
3230 statword = CSR_READ_2(sc, AN_COMMAND(sc->mpi350));
3232 if ((AN_CMD_BUSY & statword) && (delay % 200)) {
3237 return 0 == (AN_CMD_BUSY & statword);
3241 * STEP 1) Disable MAC and do soft reset on card.
3245 cmdreset(struct ifnet *ifp)
3248 struct an_softc *sc = ifp->if_softc;
3252 an_cmd(sc, AN_CMD_DISABLE, 0);
3254 if (!(status = WaitBusy(ifp, AN_TIMEOUT))) {
3255 if_printf(ifp, "Waitbusy hang b4 RESET =%d\n", status);
3258 CSR_WRITE_2(sc, AN_COMMAND(sc->mpi350), AN_CMD_FW_RESTART);
3260 FLASH_DELAY(1000); /* WAS 600 12/7/00 */
3263 if (!(status = WaitBusy(ifp, 100))) {
3264 if_printf(ifp, "Waitbusy hang AFTER RESET =%d\n", status);
3271 * STEP 2) Put the card in legendary flash mode
3275 setflashmode(struct ifnet *ifp)
3278 struct an_softc *sc = ifp->if_softc;
3280 CSR_WRITE_2(sc, AN_SW0(sc->mpi350), FLASH_COMMAND);
3281 CSR_WRITE_2(sc, AN_SW1(sc->mpi350), FLASH_COMMAND);
3282 CSR_WRITE_2(sc, AN_SW0(sc->mpi350), FLASH_COMMAND);
3283 CSR_WRITE_2(sc, AN_COMMAND(sc->mpi350), FLASH_COMMAND);
3286 * mdelay(500); // 500ms delay
3291 if (!(status = WaitBusy(ifp, AN_TIMEOUT))) {
3292 kprintf("Waitbusy hang after setflash mode\n");
3299 * Get a character from the card matching matchbyte Step 3)
3303 flashgchar(struct ifnet *ifp, int matchbyte, int dwelltime)
3306 unsigned char rbyte = 0;
3308 struct an_softc *sc = ifp->if_softc;
3312 rchar = CSR_READ_2(sc, AN_SW1(sc->mpi350));
3314 if (dwelltime && !(0x8000 & rchar)) {
3319 rbyte = 0xff & rchar;
3321 if ((rbyte == matchbyte) && (0x8000 & rchar)) {
3322 CSR_WRITE_2(sc, AN_SW1(sc->mpi350), 0);
3326 if (rbyte == 0x81 || rbyte == 0x82 || rbyte == 0x83 || rbyte == 0x1a || 0xffff == rchar)
3328 CSR_WRITE_2(sc, AN_SW1(sc->mpi350), 0);
3330 } while (dwelltime > 0);
3335 * Put character to SWS0 wait for dwelltime x 50us for echo .
3339 flashpchar(struct ifnet *ifp, int byte, int dwelltime)
3342 int pollbusy, waittime;
3343 struct an_softc *sc = ifp->if_softc;
3350 waittime = dwelltime;
3353 * Wait for busy bit d15 to go false indicating buffer empty
3356 pollbusy = CSR_READ_2(sc, AN_SW0(sc->mpi350));
3358 if (pollbusy & 0x8000) {
3365 while (waittime >= 0);
3367 /* timeout for busy clear wait */
3369 if (waittime <= 0) {
3370 if_printf(ifp, "flash putchar busywait timeout!\n");
3374 * Port is clear now write byte and wait for it to echo back
3377 CSR_WRITE_2(sc, AN_SW0(sc->mpi350), byte);
3380 echo = CSR_READ_2(sc, AN_SW1(sc->mpi350));
3381 } while (dwelltime >= 0 && echo != byte);
3384 CSR_WRITE_2(sc, AN_SW1(sc->mpi350), 0);
3386 return echo == byte;
3390 * Transfer 32k of firmware data from user buffer to our buffer and send to
3395 flashputbuf(struct ifnet *ifp)
3397 unsigned short *bufp;
3399 struct an_softc *sc = ifp->if_softc;
3403 bufp = sc->an_flash_buffer;
3406 CSR_WRITE_2(sc, AN_AUX_PAGE, 0x100);
3407 CSR_WRITE_2(sc, AN_AUX_OFFSET, 0);
3409 for (nwords = 0; nwords != FLASH_SIZE / 2; nwords++) {
3410 CSR_WRITE_2(sc, AN_AUX_DATA, bufp[nwords] & 0xffff);
3413 for (nwords = 0; nwords != FLASH_SIZE / 4; nwords++) {
3414 CSR_MEM_AUX_WRITE_4(sc, 0x8000,
3415 ((u_int32_t *)bufp)[nwords] & 0xffff);
3419 CSR_WRITE_2(sc, AN_SW0(sc->mpi350), 0x8000);
3425 * After flashing restart the card.
3429 flashrestart(struct ifnet *ifp)
3432 struct an_softc *sc = ifp->if_softc;
3434 FLASH_DELAY(1024); /* Added 12/7/00 */
3438 FLASH_DELAY(1024); /* Added 12/7/00 */
3443 * Entry point for flash ioclt.
3447 flashcard(struct ifnet *ifp, struct aironet_ioctl *l_ioctl)
3450 struct an_softc *sc;
3454 if_printf(ifp, "flashing not supported on MPI 350 yet\n");
3457 status = l_ioctl->command;
3459 switch (l_ioctl->command) {
3461 return cmdreset(ifp);
3464 if (sc->an_flash_buffer) {
3465 kfree(sc->an_flash_buffer, M_DEVBUF);
3466 sc->an_flash_buffer = NULL;
3468 sc->an_flash_buffer = kmalloc(FLASH_SIZE, M_DEVBUF, 0);
3469 if (sc->an_flash_buffer)
3470 return setflashmode(ifp);
3474 case AIROFLSHGCHR: /* Get char from aux */
3475 copyin(l_ioctl->data, &sc->areq, l_ioctl->len);
3476 z = *(int *)&sc->areq;
3477 if ((status = flashgchar(ifp, z, 8000)) == 1)
3482 case AIROFLSHPCHR: /* Send char to card. */
3483 copyin(l_ioctl->data, &sc->areq, l_ioctl->len);
3484 z = *(int *)&sc->areq;
3485 if ((status = flashpchar(ifp, z, 8000)) == -1)
3490 case AIROFLPUTBUF: /* Send 32k to card */
3491 if (l_ioctl->len > FLASH_SIZE) {
3492 if_printf(ifp, "Buffer to big, %x %x\n",
3493 l_ioctl->len, FLASH_SIZE);
3496 copyin(l_ioctl->data, sc->an_flash_buffer, l_ioctl->len);
3498 if ((status = flashputbuf(ifp)) != 0)
3504 if ((status = flashrestart(ifp)) != 0) {
3505 if_printf(ifp, "FLASHRESTART returned %d\n", status);