Use if_printf, especially for DPRINTF. Merge two DPRINTF statements
[dragonfly.git] / sys / dev / netif / wi / if_wi.c
1 /*      $NetBSD: wi.c,v 1.109 2003/01/09 08:52:19 dyoung Exp $  */
2
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  * $FreeBSD: src/sys/dev/wi/if_wi.c,v 1.166 2004/04/01 00:38:45 sam Exp $
35  * $DragonFly: src/sys/dev/netif/wi/if_wi.c,v 1.27 2005/06/30 15:57:27 joerg Exp $
36  */
37
38 /*
39  * Lucent WaveLAN/IEEE 802.11 PCMCIA driver.
40  *
41  * Original FreeBSD driver written by Bill Paul <wpaul@ctr.columbia.edu>
42  * Electrical Engineering Department
43  * Columbia University, New York City
44  */
45
46 /*
47  * The WaveLAN/IEEE adapter is the second generation of the WaveLAN
48  * from Lucent. Unlike the older cards, the new ones are programmed
49  * entirely via a firmware-driven controller called the Hermes.
50  * Unfortunately, Lucent will not release the Hermes programming manual
51  * without an NDA (if at all). What they do release is an API library
52  * called the HCF (Hardware Control Functions) which is supposed to
53  * do the device-specific operations of a device driver for you. The
54  * publically available version of the HCF library (the 'HCF Light') is 
55  * a) extremely gross, b) lacks certain features, particularly support
56  * for 802.11 frames, and c) is contaminated by the GNU Public License.
57  *
58  * This driver does not use the HCF or HCF Light at all. Instead, it
59  * programs the Hermes controller directly, using information gleaned
60  * from the HCF Light code and corresponding documentation.
61  *
62  * This driver supports the ISA, PCMCIA and PCI versions of the Lucent
63  * WaveLan cards (based on the Hermes chipset), as well as the newer
64  * Prism 2 chipsets with firmware from Intersil and Symbol.
65  */
66
67 #define WI_HERMES_AUTOINC_WAR   /* Work around data write autoinc bug. */
68 #define WI_HERMES_STATS_WAR     /* Work around stats counter bug. */
69
70 #include <sys/param.h>
71 #include <sys/endian.h>
72 #include <sys/systm.h>
73 #include <sys/sockio.h>
74 #include <sys/mbuf.h>
75 #include <sys/proc.h>
76 #include <sys/kernel.h>
77 #include <sys/socket.h>
78 #include <sys/module.h>
79 #include <sys/bus.h>
80 #include <sys/random.h>
81 #include <sys/syslog.h>
82 #include <sys/sysctl.h>
83 #include <sys/thread2.h>
84
85 #include <machine/bus.h>
86 #include <machine/resource.h>
87 #include <machine/atomic.h>
88 #include <sys/rman.h>
89
90 #include <net/if.h>
91 #include <net/if_arp.h>
92 #include <net/ethernet.h>
93 #include <net/if_dl.h>
94 #include <net/if_media.h>
95 #include <net/if_types.h>
96 #include <net/ifq_var.h>
97
98 #include <netproto/802_11/ieee80211_var.h>
99 #include <netproto/802_11/ieee80211_ioctl.h>
100 #include <netproto/802_11/ieee80211_radiotap.h>
101 #include <netproto/802_11/if_wavelan_ieee.h>
102
103 #include <netinet/in.h>
104 #include <netinet/in_systm.h>
105 #include <netinet/in_var.h>
106 #include <netinet/ip.h>
107 #include <netinet/if_ether.h>
108
109 #include <net/bpf.h>
110
111 #include <dev/netif/wi/if_wireg.h>
112 #include <dev/netif/wi/if_wivar.h>
113
114 static void wi_start(struct ifnet *);
115 static int  wi_reset(struct wi_softc *);
116 static void wi_watchdog(struct ifnet *);
117 static int  wi_ioctl(struct ifnet *, u_long, caddr_t, struct ucred *);
118 static int  wi_media_change(struct ifnet *);
119 static void wi_media_status(struct ifnet *, struct ifmediareq *);
120
121 static void wi_rx_intr(struct wi_softc *);
122 static void wi_tx_intr(struct wi_softc *);
123 static void wi_tx_ex_intr(struct wi_softc *);
124 static void wi_info_intr(struct wi_softc *);
125
126 static int  wi_get_cfg(struct ifnet *, u_long, caddr_t, struct ucred *);
127 static int  wi_set_cfg(struct ifnet *, u_long, caddr_t);
128 static int  wi_write_txrate(struct wi_softc *);
129 static int  wi_write_wep(struct wi_softc *);
130 static int  wi_write_multi(struct wi_softc *);
131 static int  wi_alloc_fid(struct wi_softc *, int, int *);
132 static void wi_read_nicid(struct wi_softc *);
133 static int  wi_write_ssid(struct wi_softc *, int, u_int8_t *, int);
134
135 static int  wi_cmd(struct wi_softc *, int, int, int, int);
136 static int  wi_seek_bap(struct wi_softc *, int, int);
137 static int  wi_read_bap(struct wi_softc *, int, int, void *, int);
138 static int  wi_write_bap(struct wi_softc *, int, int, void *, int);
139 static int  wi_mwrite_bap(struct wi_softc *, int, int, struct mbuf *, int);
140 static int  wi_read_rid(struct wi_softc *, int, void *, int *);
141 static int  wi_write_rid(struct wi_softc *, int, void *, int);
142
143 static int  wi_newstate(struct ieee80211com *, enum ieee80211_state, int);
144
145 static int  wi_scan_ap(struct wi_softc *, u_int16_t, u_int16_t);
146 static void wi_scan_result(struct wi_softc *, int, int);
147
148 static void wi_dump_pkt(struct wi_frame *, struct ieee80211_node *, int rssi);
149
150 static int wi_get_debug(struct wi_softc *, struct wi_req *);
151 static int wi_set_debug(struct wi_softc *, struct wi_req *);
152
153 /* support to download firmware for symbol CF card */
154 static int wi_symbol_write_firm(struct wi_softc *, const void *, int,
155                 const void *, int);
156 static int wi_symbol_set_hcr(struct wi_softc *, int);
157 #ifdef DEVICE_POLLING
158 static void wi_poll(struct ifnet *ifp, enum poll_cmd cmd, int count);
159 #endif
160
161 static __inline int
162 wi_write_val(struct wi_softc *sc, int rid, u_int16_t val)
163 {
164
165         val = htole16(val);
166         return wi_write_rid(sc, rid, &val, sizeof(val));
167 }
168
169 SYSCTL_NODE(_hw, OID_AUTO, wi, CTLFLAG_RD, 0, "Wireless driver parameters");
170
171 static  struct timeval lasttxerror;     /* time of last tx error msg */
172 static  int curtxeps;                   /* current tx error msgs/sec */
173 static  int wi_txerate = 0;             /* tx error rate: max msgs/sec */
174 SYSCTL_INT(_hw_wi, OID_AUTO, txerate, CTLFLAG_RW, &wi_txerate,
175             0, "max tx error msgs/sec; 0 to disable msgs");
176
177 #define WI_DEBUG
178 #ifdef WI_DEBUG
179 static  int wi_debug = 0;
180 SYSCTL_INT(_hw_wi, OID_AUTO, debug, CTLFLAG_RW, &wi_debug,
181             0, "control debugging printfs");
182
183 #define DPRINTF(X)      if (wi_debug) if_printf X
184 #define DPRINTF2(X)     if (wi_debug > 1) if_printf X
185 #define IFF_DUMPPKTS(_ifp) \
186         (((_ifp)->if_flags & (IFF_DEBUG|IFF_LINK2)) == (IFF_DEBUG|IFF_LINK2))
187 #else
188 #define DPRINTF(X)
189 #define DPRINTF2(X)
190 #define IFF_DUMPPKTS(_ifp)      0
191 #endif
192
193 #define WI_INTRS        (WI_EV_RX | WI_EV_ALLOC | WI_EV_INFO)
194
195 struct wi_card_ident wi_card_ident[] = {
196         /* CARD_ID                      CARD_NAME               FIRM_TYPE */
197         { WI_NIC_LUCENT_ID,             WI_NIC_LUCENT_STR,      WI_LUCENT },
198         { WI_NIC_SONY_ID,               WI_NIC_SONY_STR,        WI_LUCENT },
199         { WI_NIC_LUCENT_EMB_ID,         WI_NIC_LUCENT_EMB_STR,  WI_LUCENT },
200         { WI_NIC_EVB2_ID,               WI_NIC_EVB2_STR,        WI_INTERSIL },
201         { WI_NIC_HWB3763_ID,            WI_NIC_HWB3763_STR,     WI_INTERSIL },
202         { WI_NIC_HWB3163_ID,            WI_NIC_HWB3163_STR,     WI_INTERSIL },
203         { WI_NIC_HWB3163B_ID,           WI_NIC_HWB3163B_STR,    WI_INTERSIL },
204         { WI_NIC_EVB3_ID,               WI_NIC_EVB3_STR,        WI_INTERSIL },
205         { WI_NIC_HWB1153_ID,            WI_NIC_HWB1153_STR,     WI_INTERSIL },
206         { WI_NIC_P2_SST_ID,             WI_NIC_P2_SST_STR,      WI_INTERSIL },
207         { WI_NIC_EVB2_SST_ID,           WI_NIC_EVB2_SST_STR,    WI_INTERSIL },
208         { WI_NIC_3842_EVA_ID,           WI_NIC_3842_EVA_STR,    WI_INTERSIL },
209         { WI_NIC_3842_PCMCIA_AMD_ID,    WI_NIC_3842_PCMCIA_STR, WI_INTERSIL },
210         { WI_NIC_3842_PCMCIA_SST_ID,    WI_NIC_3842_PCMCIA_STR, WI_INTERSIL },
211         { WI_NIC_3842_PCMCIA_ATL_ID,    WI_NIC_3842_PCMCIA_STR, WI_INTERSIL },
212         { WI_NIC_3842_PCMCIA_ATS_ID,    WI_NIC_3842_PCMCIA_STR, WI_INTERSIL },
213         { WI_NIC_3842_MINI_AMD_ID,      WI_NIC_3842_MINI_STR,   WI_INTERSIL },
214         { WI_NIC_3842_MINI_SST_ID,      WI_NIC_3842_MINI_STR,   WI_INTERSIL },
215         { WI_NIC_3842_MINI_ATL_ID,      WI_NIC_3842_MINI_STR,   WI_INTERSIL },
216         { WI_NIC_3842_MINI_ATS_ID,      WI_NIC_3842_MINI_STR,   WI_INTERSIL },
217         { WI_NIC_3842_PCI_AMD_ID,       WI_NIC_3842_PCI_STR,    WI_INTERSIL },
218         { WI_NIC_3842_PCI_SST_ID,       WI_NIC_3842_PCI_STR,    WI_INTERSIL },
219         { WI_NIC_3842_PCI_ATS_ID,       WI_NIC_3842_PCI_STR,    WI_INTERSIL },
220         { WI_NIC_3842_PCI_ATL_ID,       WI_NIC_3842_PCI_STR,    WI_INTERSIL },
221         { WI_NIC_P3_PCMCIA_AMD_ID,      WI_NIC_P3_PCMCIA_STR,   WI_INTERSIL },
222         { WI_NIC_P3_PCMCIA_SST_ID,      WI_NIC_P3_PCMCIA_STR,   WI_INTERSIL },
223         { WI_NIC_P3_PCMCIA_ATL_ID,      WI_NIC_P3_PCMCIA_STR,   WI_INTERSIL },
224         { WI_NIC_P3_PCMCIA_ATS_ID,      WI_NIC_P3_PCMCIA_STR,   WI_INTERSIL },
225         { WI_NIC_P3_MINI_AMD_ID,        WI_NIC_P3_MINI_STR,     WI_INTERSIL },
226         { WI_NIC_P3_MINI_SST_ID,        WI_NIC_P3_MINI_STR,     WI_INTERSIL },
227         { WI_NIC_P3_MINI_ATL_ID,        WI_NIC_P3_MINI_STR,     WI_INTERSIL },
228         { WI_NIC_P3_MINI_ATS_ID,        WI_NIC_P3_MINI_STR,     WI_INTERSIL },
229         { 0,    NULL,   0 },
230 };
231
232 devclass_t wi_devclass;
233
234 int
235 wi_attach(device_t dev)
236 {
237         struct wi_softc *sc = device_get_softc(dev);
238         struct ieee80211com *ic = &sc->sc_ic;
239         struct ifnet *ifp = &ic->ic_if;
240         int i, nrates, buflen;
241         u_int16_t val;
242         u_int8_t ratebuf[2 + IEEE80211_RATE_SIZE];
243         struct ieee80211_rateset *rs;
244         static const u_int8_t empty_macaddr[IEEE80211_ADDR_LEN] = {
245                 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
246         };
247         int error;
248
249         ifp->if_softc = sc;
250         if_initname(ifp, device_get_name(dev), device_get_unit(dev));
251
252         /*
253          * NB: no locking is needed here; don't put it here
254          *     unless you can prove it!
255          */
256         error = bus_setup_intr(dev, sc->irq, INTR_TYPE_NET | INTR_MPSAFE,
257                                wi_intr, sc, &sc->wi_intrhand, NULL);
258
259         if (error) {
260                 device_printf(dev, "bus_setup_intr() failed! (%d)\n", error);
261                 wi_free(dev);
262                 return (error);
263         }
264
265         sc->wi_cmd_count = 500;
266         /* Reset the NIC. */
267         if (wi_reset(sc) != 0)
268                 return ENXIO;           /* XXX */
269
270         /*
271          * Read the station address.
272          * And do it twice. I've seen PRISM-based cards that return
273          * an error when trying to read it the first time, which causes
274          * the probe to fail.
275          */
276         buflen = IEEE80211_ADDR_LEN;
277         error = wi_read_rid(sc, WI_RID_MAC_NODE, ic->ic_myaddr, &buflen);
278         if (error != 0) {
279                 buflen = IEEE80211_ADDR_LEN;
280                 error = wi_read_rid(sc, WI_RID_MAC_NODE, ic->ic_myaddr, &buflen);
281         }
282         if (error || IEEE80211_ADDR_EQ(ic->ic_myaddr, empty_macaddr)) {
283                 if (error != 0)
284                         device_printf(dev, "mac read failed %d\n", error);
285                 else
286                         device_printf(dev, "mac read failed (all zeros)\n");
287                 wi_free(dev);
288                 return (error);
289         }
290
291         /* Read NIC identification */
292         wi_read_nicid(sc);
293
294         ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
295         ifp->if_ioctl = wi_ioctl;
296         ifp->if_start = wi_start;
297         ifp->if_watchdog = wi_watchdog;
298         ifp->if_init = wi_init;
299         ifq_set_maxlen(&ifp->if_snd, IFQ_MAXLEN);
300         ifq_set_ready(&ifp->if_snd);
301 #ifdef DEVICE_POLLING
302         ifp->if_poll = wi_poll;
303 #endif
304         ifp->if_capenable = ifp->if_capabilities;
305
306         ic->ic_phytype = IEEE80211_T_DS;
307         ic->ic_opmode = IEEE80211_M_STA;
308         ic->ic_caps = IEEE80211_C_PMGT | IEEE80211_C_AHDEMO;
309         ic->ic_state = IEEE80211_S_INIT;
310
311         /*
312          * Query the card for available channels and setup the
313          * channel table.  We assume these are all 11b channels.
314          */
315         buflen = sizeof(val);
316         if (wi_read_rid(sc, WI_RID_CHANNEL_LIST, &val, &buflen) != 0)
317                 val = htole16(0x1fff);  /* assume 1-11 */
318         KASSERT(val != 0, ("wi_attach: no available channels listed!"));
319
320         val <<= 1;                      /* shift for base 1 indices */
321         for (i = 1; i < 16; i++) {
322                 if (isset((u_int8_t*)&val, i)) {
323                         ic->ic_channels[i].ic_freq =
324                                 ieee80211_ieee2mhz(i, IEEE80211_CHAN_B);
325                         ic->ic_channels[i].ic_flags = IEEE80211_CHAN_B;
326                 }
327         }
328
329         /*
330          * Read the default channel from the NIC. This may vary
331          * depending on the country where the NIC was purchased, so
332          * we can't hard-code a default and expect it to work for
333          * everyone.
334          *
335          * If no channel is specified, let the 802.11 code select.
336          */
337         buflen = sizeof(val);
338         if (wi_read_rid(sc, WI_RID_OWN_CHNL, &val, &buflen) == 0) {
339                 val = le16toh(val);
340                 KASSERT(val < IEEE80211_CHAN_MAX &&
341                         ic->ic_channels[val].ic_flags != 0,
342                         ("wi_attach: invalid own channel %u!", val));
343                 ic->ic_ibss_chan = &ic->ic_channels[val];
344         } else {
345                 device_printf(dev,
346                         "WI_RID_OWN_CHNL failed, using first channel!\n");
347                 ic->ic_ibss_chan = &ic->ic_channels[0];
348         }
349
350         /*
351          * Set flags based on firmware version.
352          */
353         switch (sc->sc_firmware_type) {
354         case WI_LUCENT:
355                 sc->sc_ntxbuf = 1;
356                 sc->sc_flags |= WI_FLAGS_HAS_SYSSCALE;
357 #ifdef WI_HERMES_AUTOINC_WAR
358                 /* XXX: not confirmed, but never seen for recent firmware */
359                 if (sc->sc_sta_firmware_ver <  40000) {
360                         sc->sc_flags |= WI_FLAGS_BUG_AUTOINC;
361                 }
362 #endif
363                 if (sc->sc_sta_firmware_ver >= 60000)
364                         sc->sc_flags |= WI_FLAGS_HAS_MOR;
365                 if (sc->sc_sta_firmware_ver >= 60006) {
366                         ic->ic_caps |= IEEE80211_C_IBSS;
367                         ic->ic_caps |= IEEE80211_C_MONITOR;
368                 }
369                 sc->sc_ibss_port = htole16(1);
370
371                 sc->sc_min_rssi = WI_LUCENT_MIN_RSSI;
372                 sc->sc_max_rssi = WI_LUCENT_MAX_RSSI;
373                 sc->sc_dbm_offset = WI_LUCENT_DBM_OFFSET;
374                 break;
375
376         case WI_INTERSIL:
377                 sc->sc_ntxbuf = WI_NTXBUF;
378                 sc->sc_flags |= WI_FLAGS_HAS_FRAGTHR;
379                 sc->sc_flags |= WI_FLAGS_HAS_ROAMING;
380                 sc->sc_flags |= WI_FLAGS_HAS_SYSSCALE;
381                 /*
382                  * Old firmware are slow, so give peace a chance.
383                  */
384                 if (sc->sc_sta_firmware_ver < 10000)
385                         sc->wi_cmd_count = 5000;
386                 if (sc->sc_sta_firmware_ver > 10101)
387                         sc->sc_flags |= WI_FLAGS_HAS_DBMADJUST;
388                 if (sc->sc_sta_firmware_ver >= 800) {
389                         ic->ic_caps |= IEEE80211_C_IBSS;
390                         ic->ic_caps |= IEEE80211_C_MONITOR;
391                 }
392                 /*
393                  * version 0.8.3 and newer are the only ones that are known
394                  * to currently work.  Earlier versions can be made to work,
395                  * at least according to the Linux driver.
396                  */
397                 if (sc->sc_sta_firmware_ver >= 803)
398                         ic->ic_caps |= IEEE80211_C_HOSTAP;
399                 sc->sc_ibss_port = htole16(0);
400
401                 sc->sc_min_rssi = WI_PRISM_MIN_RSSI;
402                 sc->sc_max_rssi = WI_PRISM_MAX_RSSI;
403                 sc->sc_dbm_offset = WI_PRISM_DBM_OFFSET;
404                 break;
405
406         case WI_SYMBOL:
407                 sc->sc_ntxbuf = 1;
408                 sc->sc_flags |= WI_FLAGS_HAS_DIVERSITY;
409                 if (sc->sc_sta_firmware_ver >= 25000)
410                         ic->ic_caps |= IEEE80211_C_IBSS;
411                 sc->sc_ibss_port = htole16(4);
412
413                 sc->sc_min_rssi = WI_PRISM_MIN_RSSI;
414                 sc->sc_max_rssi = WI_PRISM_MAX_RSSI;
415                 sc->sc_dbm_offset = WI_PRISM_DBM_OFFSET;
416                 break;
417         }
418
419         /*
420          * Find out if we support WEP on this card.
421          */
422         buflen = sizeof(val);
423         if (wi_read_rid(sc, WI_RID_WEP_AVAIL, &val, &buflen) == 0 &&
424             val != htole16(0))
425                 ic->ic_caps |= IEEE80211_C_WEP;
426
427         /* Find supported rates. */
428         buflen = sizeof(ratebuf);
429         rs = &ic->ic_sup_rates[IEEE80211_MODE_11B];
430         if (wi_read_rid(sc, WI_RID_DATA_RATES, ratebuf, &buflen) == 0) {
431                 nrates = le16toh(*(u_int16_t *)ratebuf);
432                 if (nrates > IEEE80211_RATE_MAXSIZE)
433                         nrates = IEEE80211_RATE_MAXSIZE;
434                 rs->rs_nrates = 0;
435                 for (i = 0; i < nrates; i++)
436                         if (ratebuf[2+i])
437                                 rs->rs_rates[rs->rs_nrates++] = ratebuf[2+i];
438         } else {
439                 /* XXX fallback on error? */
440                 rs->rs_nrates = 0;
441         }
442
443         buflen = sizeof(val);
444         if ((sc->sc_flags & WI_FLAGS_HAS_DBMADJUST) &&
445             wi_read_rid(sc, WI_RID_DBM_ADJUST, &val, &buflen) == 0) {
446                 sc->sc_dbm_offset = le16toh(val);
447         }
448
449         sc->sc_max_datalen = 2304;
450         sc->sc_system_scale = 1;
451         sc->sc_cnfauthmode = IEEE80211_AUTH_OPEN;
452         sc->sc_roaming_mode = 1;
453
454         sc->sc_portnum = WI_DEFAULT_PORT;
455         sc->sc_authtype = WI_DEFAULT_AUTHTYPE;
456
457         bzero(sc->sc_nodename, sizeof(sc->sc_nodename));
458         sc->sc_nodelen = sizeof(WI_DEFAULT_NODENAME) - 1;
459         bcopy(WI_DEFAULT_NODENAME, sc->sc_nodename, sc->sc_nodelen);
460
461         bzero(sc->sc_net_name, sizeof(sc->sc_net_name));
462         bcopy(WI_DEFAULT_NETNAME, sc->sc_net_name,
463             sizeof(WI_DEFAULT_NETNAME) - 1);
464
465         /*
466          * Call MI attach routine.
467          */
468         ieee80211_ifattach(ifp);
469         /* override state transition method */
470         sc->sc_newstate = ic->ic_newstate;
471         ic->ic_newstate = wi_newstate;
472         ieee80211_media_init(ifp, wi_media_change, wi_media_status);
473
474         bpfattach_dlt(ifp, DLT_IEEE802_11_RADIO,
475                 sizeof(struct ieee80211_frame) + sizeof(sc->sc_tx_th),
476                 &sc->sc_drvbpf);
477         /*
478          * Initialize constant fields.
479          * XXX make header lengths a multiple of 32-bits so subsequent
480          *     headers are properly aligned; this is a kludge to keep
481          *     certain applications happy.
482          *
483          * NB: the channel is setup each time we transition to the
484          *     RUN state to avoid filling it in for each frame.
485          */
486         sc->sc_tx_th_len = roundup(sizeof(sc->sc_tx_th), sizeof(u_int32_t));
487         sc->sc_tx_th.wt_ihdr.it_len = htole16(sc->sc_tx_th_len);
488         sc->sc_tx_th.wt_ihdr.it_present = htole32(WI_TX_RADIOTAP_PRESENT);
489
490         sc->sc_rx_th_len = roundup(sizeof(sc->sc_rx_th), sizeof(u_int32_t));
491         sc->sc_rx_th.wr_ihdr.it_len = htole16(sc->sc_rx_th_len);
492         sc->sc_rx_th.wr_ihdr.it_present = htole32(WI_RX_RADIOTAP_PRESENT);
493
494         return (0);
495 }
496
497 int
498 wi_detach(device_t dev)
499 {
500         struct wi_softc *sc = device_get_softc(dev);
501         struct ifnet *ifp = &sc->sc_ic.ic_if;
502         WI_LOCK_DECL();
503
504         WI_LOCK(sc);
505
506         /* check if device was removed */
507         sc->wi_gone |= !bus_child_present(dev);
508
509         wi_stop(ifp, 0);
510
511         ieee80211_ifdetach(ifp);
512         bus_teardown_intr(dev, sc->irq, sc->wi_intrhand);
513         WI_UNLOCK(sc);
514         wi_free(dev);
515         return (0);
516 }
517
518 void
519 wi_shutdown(device_t dev)
520 {
521         struct wi_softc *sc = device_get_softc(dev);
522
523         wi_stop(&sc->sc_if, 1);
524 }
525
526 #ifdef DEVICE_POLLING
527
528 static void
529 wi_poll(struct ifnet *ifp, enum poll_cmd cmd, int count)
530 {
531         struct wi_softc *sc = ifp->if_softc;
532         uint16_t status;
533
534         switch(cmd) {
535         case POLL_REGISTER:
536                 /* disable interruptds */
537                 CSR_WRITE_2(sc, WI_INT_EN, 0);
538                 break;
539         case POLL_DEREGISTER:
540                 /* enable interrupts */
541                 CSR_WRITE_2(sc, WI_INT_EN, WI_INTRS);
542                 break;
543         default:
544                 status = CSR_READ_2(sc, WI_EVENT_STAT);
545
546                 if (status & WI_EV_RX)
547                         wi_rx_intr(sc);
548                 if (status & WI_EV_ALLOC)
549                         wi_tx_intr(sc);
550                 if (status & WI_EV_INFO)
551                         wi_info_intr(sc);
552
553                 if (cmd == POLL_AND_CHECK_STATUS) {
554                         if (status & WI_EV_INFO)
555                                 wi_info_intr(sc);
556                 }
557
558                 if ((ifp->if_flags & IFF_OACTIVE) == 0 &&
559                     (sc->sc_flags & WI_FLAGS_OUTRANGE) == 0 && !ifq_is_empty(&ifp->if_snd)) {
560                         wi_start(ifp);
561                 }
562                 break;
563         }
564 }
565 #endif /* DEVICE_POLLING */
566
567 void
568 wi_intr(void *arg)
569 {
570         struct wi_softc *sc = arg;
571         struct ifnet *ifp = &sc->sc_ic.ic_if;
572         u_int16_t status;
573         WI_LOCK_DECL();
574
575         if (sc->wi_gone || !sc->sc_enabled || (ifp->if_flags & IFF_UP) == 0) {
576                 CSR_WRITE_2(sc, WI_INT_EN, 0);
577                 CSR_WRITE_2(sc, WI_EVENT_ACK, 0xFFFF);
578                 return;
579         }
580
581         WI_LOCK(sc);
582
583         /* Disable interrupts. */
584         CSR_WRITE_2(sc, WI_INT_EN, 0);
585
586         status = CSR_READ_2(sc, WI_EVENT_STAT);
587         if (status & WI_EV_RX)
588                 wi_rx_intr(sc);
589         if (status & WI_EV_ALLOC)
590                 wi_tx_intr(sc);
591         if (status & WI_EV_TX_EXC)
592                 wi_tx_ex_intr(sc);
593         if (status & WI_EV_INFO)
594                 wi_info_intr(sc);
595         if ((ifp->if_flags & IFF_OACTIVE) == 0 &&
596             (sc->sc_flags & WI_FLAGS_OUTRANGE) == 0 &&
597             !ifq_is_empty(&ifp->if_snd))
598                 wi_start(ifp);
599
600         /* Re-enable interrupts. */
601         CSR_WRITE_2(sc, WI_INT_EN, WI_INTRS);
602
603         WI_UNLOCK(sc);
604
605         return;
606 }
607
608 void
609 wi_init(void *arg)
610 {
611         struct wi_softc *sc = arg;
612         struct ifnet *ifp = &sc->sc_if;
613         struct ieee80211com *ic = &sc->sc_ic;
614         struct wi_joinreq join;
615         int i;
616         int error = 0, wasenabled;
617         WI_LOCK_DECL();
618
619         WI_LOCK(sc);
620
621         if (sc->wi_gone) {
622                 WI_UNLOCK(sc);
623                 return;
624         }
625
626         if ((wasenabled = sc->sc_enabled))
627                 wi_stop(ifp, 1);
628         wi_reset(sc);
629
630         /* common 802.11 configuration */
631         ic->ic_flags &= ~IEEE80211_F_IBSSON;
632         sc->sc_flags &= ~WI_FLAGS_OUTRANGE;
633         switch (ic->ic_opmode) {
634         case IEEE80211_M_STA:
635                 wi_write_val(sc, WI_RID_PORTTYPE, WI_PORTTYPE_BSS);
636                 break;
637         case IEEE80211_M_IBSS:
638                 wi_write_val(sc, WI_RID_PORTTYPE, sc->sc_ibss_port);
639                 ic->ic_flags |= IEEE80211_F_IBSSON;
640                 break;
641         case IEEE80211_M_AHDEMO:
642                 wi_write_val(sc, WI_RID_PORTTYPE, WI_PORTTYPE_ADHOC);
643                 break;
644         case IEEE80211_M_HOSTAP:
645                 /*
646                  * For PRISM cards, override the empty SSID, because in
647                  * HostAP mode the controller will lock up otherwise.
648                  */
649                 if (sc->sc_firmware_type == WI_INTERSIL &&
650                     ic->ic_des_esslen == 0) {
651                         ic->ic_des_essid[0] = ' ';
652                         ic->ic_des_esslen = 1;
653                 }
654                 wi_write_val(sc, WI_RID_PORTTYPE, WI_PORTTYPE_HOSTAP);
655                 break;
656         case IEEE80211_M_MONITOR:
657                 if (sc->sc_firmware_type == WI_LUCENT)
658                         wi_write_val(sc, WI_RID_PORTTYPE, WI_PORTTYPE_ADHOC);
659                 wi_cmd(sc, WI_CMD_DEBUG | (WI_TEST_MONITOR << 8), 0, 0, 0);
660                 break;
661         }
662
663         /* Intersil interprets this RID as joining ESS even in IBSS mode */
664         if (sc->sc_firmware_type == WI_LUCENT &&
665             (ic->ic_flags & IEEE80211_F_IBSSON) && ic->ic_des_esslen > 0)
666                 wi_write_val(sc, WI_RID_CREATE_IBSS, 1);
667         else
668                 wi_write_val(sc, WI_RID_CREATE_IBSS, 0);
669         wi_write_val(sc, WI_RID_MAX_SLEEP, ic->ic_lintval);
670         wi_write_ssid(sc, WI_RID_DESIRED_SSID, ic->ic_des_essid,
671             ic->ic_des_esslen);
672         wi_write_val(sc, WI_RID_OWN_CHNL,
673                 ieee80211_chan2ieee(ic, ic->ic_ibss_chan));
674         wi_write_ssid(sc, WI_RID_OWN_SSID, ic->ic_des_essid, ic->ic_des_esslen);
675
676         IEEE80211_ADDR_COPY(ic->ic_myaddr, IF_LLADDR(ifp));
677         wi_write_rid(sc, WI_RID_MAC_NODE, ic->ic_myaddr, IEEE80211_ADDR_LEN);
678
679         wi_write_val(sc, WI_RID_PM_ENABLED,
680             (ic->ic_flags & IEEE80211_F_PMGTON) ? 1 : 0);
681
682         /* not yet common 802.11 configuration */
683         wi_write_val(sc, WI_RID_MAX_DATALEN, sc->sc_max_datalen);
684         wi_write_val(sc, WI_RID_RTS_THRESH, ic->ic_rtsthreshold);
685         if (sc->sc_flags & WI_FLAGS_HAS_FRAGTHR)
686                 wi_write_val(sc, WI_RID_FRAG_THRESH, ic->ic_fragthreshold);
687
688         /* driver specific 802.11 configuration */
689         if (sc->sc_flags & WI_FLAGS_HAS_SYSSCALE)
690                 wi_write_val(sc, WI_RID_SYSTEM_SCALE, sc->sc_system_scale);
691         if (sc->sc_flags & WI_FLAGS_HAS_ROAMING)
692                 wi_write_val(sc, WI_RID_ROAMING_MODE, sc->sc_roaming_mode);
693         if (sc->sc_flags & WI_FLAGS_HAS_MOR)
694                 wi_write_val(sc, WI_RID_MICROWAVE_OVEN, sc->sc_microwave_oven);
695         wi_write_txrate(sc);
696         wi_write_ssid(sc, WI_RID_NODENAME, sc->sc_nodename, sc->sc_nodelen);
697
698         if (ic->ic_opmode == IEEE80211_M_HOSTAP &&
699             sc->sc_firmware_type == WI_INTERSIL) {
700                 wi_write_val(sc, WI_RID_OWN_BEACON_INT, ic->ic_lintval);
701                 wi_write_val(sc, WI_RID_BASIC_RATE, 0x03);   /* 1, 2 */
702                 wi_write_val(sc, WI_RID_SUPPORT_RATE, 0x0f); /* 1, 2, 5.5, 11 */
703                 wi_write_val(sc, WI_RID_DTIM_PERIOD, 1);
704         }
705
706         /*
707          * Initialize promisc mode.
708          *      Being in the Host-AP mode causes a great
709          *      deal of pain if primisc mode is set.
710          *      Therefore we avoid confusing the firmware
711          *      and always reset promisc mode in Host-AP
712          *      mode.  Host-AP sees all the packets anyway.
713          */
714         if (ic->ic_opmode != IEEE80211_M_HOSTAP &&
715             (ifp->if_flags & IFF_PROMISC) != 0) {
716                 wi_write_val(sc, WI_RID_PROMISC, 1);
717         } else {
718                 wi_write_val(sc, WI_RID_PROMISC, 0);
719         }
720
721         /* Configure WEP. */
722         if (ic->ic_caps & IEEE80211_C_WEP)
723                 wi_write_wep(sc);
724
725         /* Set multicast filter. */
726         wi_write_multi(sc);
727
728         /* Allocate fids for the card */
729         if (sc->sc_firmware_type != WI_SYMBOL || !wasenabled) {
730                 sc->sc_buflen = IEEE80211_MAX_LEN + sizeof(struct wi_frame);
731                 if (sc->sc_firmware_type == WI_SYMBOL)
732                         sc->sc_buflen = 1585;   /* XXX */
733                 for (i = 0; i < sc->sc_ntxbuf; i++) {
734                         error = wi_alloc_fid(sc, sc->sc_buflen,
735                             &sc->sc_txd[i].d_fid);
736                         if (error) {
737                                 if_printf(ifp,
738                                     "tx buffer allocation failed (error %u)\n",
739                                     error);
740                                 goto out;
741                         }
742                         sc->sc_txd[i].d_len = 0;
743                 }
744         }
745         sc->sc_txcur = sc->sc_txnext = 0;
746
747         /* Enable desired port */
748         wi_cmd(sc, WI_CMD_ENABLE | sc->sc_portnum, 0, 0, 0);
749
750         sc->sc_enabled = 1;
751         ifp->if_flags |= IFF_RUNNING;
752         ifp->if_flags &= ~IFF_OACTIVE;
753         if (ic->ic_opmode == IEEE80211_M_AHDEMO ||
754             ic->ic_opmode == IEEE80211_M_MONITOR ||
755             ic->ic_opmode == IEEE80211_M_HOSTAP)
756                 ieee80211_new_state(ic, IEEE80211_S_RUN, -1);
757
758         /* Enable interrupts if not polling */
759 #ifdef DEVICE_POLLING
760         if ((ifp->if_flags & IFF_POLLING) == 0)
761 #endif
762                 CSR_WRITE_2(sc, WI_INT_EN, WI_INTRS);
763
764         if (!wasenabled &&
765             ic->ic_opmode == IEEE80211_M_HOSTAP &&
766             sc->sc_firmware_type == WI_INTERSIL) {
767                 /* XXX: some card need to be re-enabled for hostap */
768                 wi_cmd(sc, WI_CMD_DISABLE | WI_PORT0, 0, 0, 0);
769                 wi_cmd(sc, WI_CMD_ENABLE | WI_PORT0, 0, 0, 0);
770         }
771
772         if (ic->ic_opmode == IEEE80211_M_STA &&
773             ((ic->ic_flags & IEEE80211_F_DESBSSID) ||
774             ic->ic_des_chan != IEEE80211_CHAN_ANYC)) {
775                 memset(&join, 0, sizeof(join));
776                 if (ic->ic_flags & IEEE80211_F_DESBSSID)
777                         IEEE80211_ADDR_COPY(&join.wi_bssid, ic->ic_des_bssid);
778                 if (ic->ic_des_chan != IEEE80211_CHAN_ANYC)
779                         join.wi_chan = htole16(
780                                 ieee80211_chan2ieee(ic, ic->ic_des_chan));
781                 /* Lucent firmware does not support the JOIN RID. */
782                 if (sc->sc_firmware_type != WI_LUCENT)
783                         wi_write_rid(sc, WI_RID_JOIN_REQ, &join, sizeof(join));
784         }
785
786         WI_UNLOCK(sc);
787         return;
788 out:
789         if (error) {
790                 if_printf(ifp, "interface not running\n");
791                 wi_stop(ifp, 1);
792         }
793         WI_UNLOCK(sc);
794         DPRINTF((ifp, "wi_init: return %d\n", error));
795         return;
796 }
797
798 void
799 wi_stop(struct ifnet *ifp, int disable)
800 {
801         struct ieee80211com *ic = (struct ieee80211com *) ifp;
802         struct wi_softc *sc = ifp->if_softc;
803         WI_LOCK_DECL();
804
805         WI_LOCK(sc);
806
807         DELAY(100000);
808
809         ifp->if_flags &= ~(IFF_OACTIVE | IFF_RUNNING);
810         ieee80211_new_state(ic, IEEE80211_S_INIT, -1);
811         if (sc->sc_enabled && !sc->wi_gone) {
812                 CSR_WRITE_2(sc, WI_INT_EN, 0);
813                 wi_cmd(sc, WI_CMD_DISABLE | sc->sc_portnum, 0, 0, 0);
814                 if (disable) {
815 #ifdef __NetBSD__
816                         if (sc->sc_disable)
817                                 (*sc->sc_disable)(sc);
818 #endif
819                         sc->sc_enabled = 0;
820                 }
821         } else if (sc->wi_gone && disable)      /* gone --> not enabled */
822             sc->sc_enabled = 0;
823
824         sc->sc_tx_timer = 0;
825         sc->sc_scan_timer = 0;
826         sc->sc_syn_timer = 0;
827         sc->sc_false_syns = 0;
828         sc->sc_naps = 0;
829         ifp->if_timer = 0;
830
831         WI_UNLOCK(sc);
832 }
833
834 static void
835 wi_start(struct ifnet *ifp)
836 {
837         struct wi_softc *sc = ifp->if_softc;
838         struct ieee80211com *ic = &sc->sc_ic;
839         struct ieee80211_node *ni;
840         struct ieee80211_frame *wh;
841         struct mbuf *m0;
842         struct wi_frame frmhdr;
843         int cur, fid, off, error;
844         WI_LOCK_DECL();
845
846         WI_LOCK(sc);
847
848         if (sc->wi_gone) {
849                 WI_UNLOCK(sc);
850                 return;
851         }
852         if (sc->sc_flags & WI_FLAGS_OUTRANGE) {
853                 WI_UNLOCK(sc);
854                 return;
855         }
856
857         memset(&frmhdr, 0, sizeof(frmhdr));
858         cur = sc->sc_txnext;
859         for (;;) {
860                 IF_POLL(&ic->ic_mgtq, m0);
861                 if (m0 != NULL) {
862                         if (sc->sc_txd[cur].d_len != 0) {
863                                 ifp->if_flags |= IFF_OACTIVE;
864                                 break;
865                         }
866                         IF_DEQUEUE(&ic->ic_mgtq, m0);
867                         /*
868                          * Hack!  The referenced node pointer is in the
869                          * rcvif field of the packet header.  This is
870                          * placed there by ieee80211_mgmt_output because
871                          * we need to hold the reference with the frame
872                          * and there's no other way (other than packet
873                          * tags which we consider too expensive to use)
874                          * to pass it along.
875                          */
876                         ni = (struct ieee80211_node *) m0->m_pkthdr.rcvif;
877                         m0->m_pkthdr.rcvif = NULL;
878
879                         m_copydata(m0, 4, ETHER_ADDR_LEN * 2,
880                             (caddr_t)&frmhdr.wi_ehdr);
881                         frmhdr.wi_ehdr.ether_type = 0;
882                         wh = mtod(m0, struct ieee80211_frame *);
883                 } else {
884                         if (ic->ic_state != IEEE80211_S_RUN)
885                                 break;
886                         m0 = ifq_poll(&ifp->if_snd);
887                         if (m0 == NULL)
888                                 break;
889                         if (sc->sc_txd[cur].d_len != 0) {
890                                 ifp->if_flags |= IFF_OACTIVE;
891                                 break;
892                         }
893                         m0 = ifq_dequeue(&ifp->if_snd);
894                         ifp->if_opackets++;
895                         m_copydata(m0, 0, ETHER_HDR_LEN, 
896                             (caddr_t)&frmhdr.wi_ehdr);
897                         BPF_MTAP(ifp, m0);
898
899                         m0 = ieee80211_encap(ifp, m0, &ni);
900                         if (m0 == NULL) {
901                                 ifp->if_oerrors++;
902                                 continue;
903                         }
904                         wh = mtod(m0, struct ieee80211_frame *);
905                         if (ic->ic_flags & IEEE80211_F_WEPON)
906                                 wh->i_fc[1] |= IEEE80211_FC1_WEP;
907
908                 }
909
910                 if (ic->ic_rawbpf != NULL)
911                         bpf_mtap(ic->ic_rawbpf, m0);
912
913                 frmhdr.wi_tx_ctl = htole16(WI_ENC_TX_802_11|WI_TXCNTL_TX_EX);
914                 if (ic->ic_opmode == IEEE80211_M_HOSTAP &&
915                     (wh->i_fc[1] & IEEE80211_FC1_WEP)) {
916                         if ((m0 = ieee80211_wep_crypt(ifp, m0, 1)) == NULL) {
917                                 ifp->if_oerrors++;
918                                 if (ni && ni != ic->ic_bss)
919                                         ieee80211_free_node(ic, ni);
920                                 continue;
921                         }
922                         frmhdr.wi_tx_ctl |= htole16(WI_TXCNTL_NOCRYPT);
923                 }
924
925                 if (sc->sc_drvbpf) {
926                         sc->sc_tx_th.wt_rate =
927                                 ni->ni_rates.rs_rates[ni->ni_txrate];
928                         bpf_ptap(sc->sc_drvbpf, m0, &sc->sc_tx_th,
929                                  sc->sc_tx_th_len);
930                 }
931
932                 m_copydata(m0, 0, sizeof(struct ieee80211_frame),
933                     (caddr_t)&frmhdr.wi_whdr);
934                 m_adj(m0, sizeof(struct ieee80211_frame));
935                 frmhdr.wi_dat_len = htole16(m0->m_pkthdr.len);
936                 if (IFF_DUMPPKTS(ifp))
937                         wi_dump_pkt(&frmhdr, NULL, -1);
938                 fid = sc->sc_txd[cur].d_fid;
939                 off = sizeof(frmhdr);
940                 error = wi_write_bap(sc, fid, 0, &frmhdr, sizeof(frmhdr)) != 0
941                      || wi_mwrite_bap(sc, fid, off, m0, m0->m_pkthdr.len) != 0;
942                 m_freem(m0);
943                 if (ni && ni != ic->ic_bss)
944                         ieee80211_free_node(ic, ni);
945                 if (error) {
946                         ifp->if_oerrors++;
947                         continue;
948                 }
949                 sc->sc_txd[cur].d_len = off;
950                 if (sc->sc_txcur == cur) {
951                         if (wi_cmd(sc, WI_CMD_TX | WI_RECLAIM, fid, 0, 0)) {
952                                 if_printf(ifp, "xmit failed\n");
953                                 sc->sc_txd[cur].d_len = 0;
954                                 continue;
955                         }
956                         sc->sc_tx_timer = 5;
957                         ifp->if_timer = 1;
958                 }
959                 sc->sc_txnext = cur = (cur + 1) % sc->sc_ntxbuf;
960         }
961
962         WI_UNLOCK(sc);
963 }
964
965 static int
966 wi_reset(struct wi_softc *sc)
967 {
968         struct ieee80211com *ic = &sc->sc_ic;
969         struct ifnet *ifp = &ic->ic_if;
970 #define WI_INIT_TRIES 3
971         int i;
972         int error = 0;
973         int tries;
974         
975         /* Symbol firmware cannot be initialized more than once */
976         if (sc->sc_firmware_type == WI_SYMBOL && sc->sc_reset)
977                 return (0);
978         if (sc->sc_firmware_type == WI_SYMBOL)
979                 tries = 1;
980         else
981                 tries = WI_INIT_TRIES;
982
983         for (i = 0; i < tries; i++) {
984                 if ((error = wi_cmd(sc, WI_CMD_INI, 0, 0, 0)) == 0)
985                         break;
986                 DELAY(WI_DELAY * 1000);
987         }
988         sc->sc_reset = 1;
989
990         if (i == tries) {
991                 if_printf(ifp, "init failed\n");
992                 return (error);
993         }
994
995         CSR_WRITE_2(sc, WI_INT_EN, 0);
996         CSR_WRITE_2(sc, WI_EVENT_ACK, 0xFFFF);
997
998         /* Calibrate timer. */
999         wi_write_val(sc, WI_RID_TICK_TIME, 8);
1000
1001         return (0);
1002 #undef WI_INIT_TRIES
1003 }
1004
1005 static void
1006 wi_watchdog(struct ifnet *ifp)
1007 {
1008         struct wi_softc *sc = ifp->if_softc;
1009
1010         ifp->if_timer = 0;
1011         if (!sc->sc_enabled)
1012                 return;
1013
1014         if (sc->sc_tx_timer) {
1015                 if (--sc->sc_tx_timer == 0) {
1016                         if_printf(ifp, "device timeout\n");
1017                         ifp->if_oerrors++;
1018                         wi_init(ifp->if_softc);
1019                         return;
1020                 }
1021                 ifp->if_timer = 1;
1022         }
1023
1024         if (sc->sc_scan_timer) {
1025                 if (--sc->sc_scan_timer <= WI_SCAN_WAIT - WI_SCAN_INQWAIT &&
1026                     sc->sc_firmware_type == WI_INTERSIL) {
1027                         DPRINTF((ifp, "wi_watchdog: inquire scan\n"));
1028                         wi_cmd(sc, WI_CMD_INQUIRE, WI_INFO_SCAN_RESULTS, 0, 0);
1029                 }
1030                 if (sc->sc_scan_timer)
1031                         ifp->if_timer = 1;
1032         }
1033
1034         if (sc->sc_syn_timer) {
1035                 if (--sc->sc_syn_timer == 0) {
1036                         struct ieee80211com *ic = (struct ieee80211com *) ifp;
1037                         DPRINTF2((ifp, "wi_watchdog: %d false syns\n",
1038                             sc->sc_false_syns));
1039                         sc->sc_false_syns = 0;
1040                         ieee80211_new_state(ic, IEEE80211_S_RUN, -1);
1041                         sc->sc_syn_timer = 5;
1042                 }
1043                 ifp->if_timer = 1;
1044         }
1045
1046         /* TODO: rate control */
1047         ieee80211_watchdog(ifp);
1048 }
1049
1050 static int
1051 wi_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data, struct ucred *cr)
1052 {
1053         struct wi_softc *sc = ifp->if_softc;
1054         struct ieee80211com *ic = &sc->sc_ic;
1055         struct ifreq *ifr = (struct ifreq *)data;
1056         struct ieee80211req *ireq;
1057         u_int8_t nodename[IEEE80211_NWID_LEN];
1058         int error = 0;
1059         struct wi_req wreq;
1060         WI_LOCK_DECL();
1061
1062         WI_LOCK(sc);
1063
1064         if (sc->wi_gone) {
1065                 error = ENODEV;
1066                 goto out;
1067         }
1068
1069         switch (cmd) {
1070         case SIOCSIFFLAGS:
1071                 /*
1072                  * Can't do promisc and hostap at the same time.  If all that's
1073                  * changing is the promisc flag, try to short-circuit a call to
1074                  * wi_init() by just setting PROMISC in the hardware.
1075                  */
1076                 if (ifp->if_flags & IFF_UP) {
1077                         if (ic->ic_opmode != IEEE80211_M_HOSTAP &&
1078                             ifp->if_flags & IFF_RUNNING) {
1079                                 if (ifp->if_flags & IFF_PROMISC &&
1080                                     !(sc->sc_if_flags & IFF_PROMISC)) {
1081                                         wi_write_val(sc, WI_RID_PROMISC, 1);
1082                                 } else if (!(ifp->if_flags & IFF_PROMISC) &&
1083                                     sc->sc_if_flags & IFF_PROMISC) {
1084                                         wi_write_val(sc, WI_RID_PROMISC, 0);
1085                                 } else {
1086                                         wi_init(sc);
1087                                 }
1088                         } else {
1089                                 wi_init(sc);
1090                         }
1091                 } else {
1092                         if (ifp->if_flags & IFF_RUNNING) {
1093                                 wi_stop(ifp, 1);
1094                         }
1095                         sc->wi_gone = 0;
1096                 }
1097                 sc->sc_if_flags = ifp->if_flags;
1098                 error = 0;
1099                 break;
1100         case SIOCADDMULTI:
1101         case SIOCDELMULTI:
1102                 error = wi_write_multi(sc);
1103                 break;
1104         case SIOCGIFGENERIC:
1105                 error = wi_get_cfg(ifp, cmd, data, cr);
1106                 break;
1107         case SIOCSIFGENERIC:
1108                 error = suser_cred(cr, NULL_CRED_OKAY);
1109                 if (error)
1110                         break;
1111                 error = wi_set_cfg(ifp, cmd, data);
1112                 break;
1113         case SIOCGPRISM2DEBUG:
1114                 error = copyin(ifr->ifr_data, &wreq, sizeof(wreq));
1115                 if (error)
1116                         break;
1117                 if (!(ifp->if_flags & IFF_RUNNING) ||
1118                     sc->sc_firmware_type == WI_LUCENT) {
1119                         error = EIO;
1120                         break;
1121                 }
1122                 error = wi_get_debug(sc, &wreq);
1123                 if (error == 0)
1124                         error = copyout(&wreq, ifr->ifr_data, sizeof(wreq));
1125                 break;
1126         case SIOCSPRISM2DEBUG:
1127                 if ((error = suser_cred(cr, NULL_CRED_OKAY)))
1128                         goto out;
1129                 error = copyin(ifr->ifr_data, &wreq, sizeof(wreq));
1130                 if (error)
1131                         break;
1132                 error = wi_set_debug(sc, &wreq);
1133                 break;
1134         case SIOCG80211:
1135                 ireq = (struct ieee80211req *) data;
1136                 switch (ireq->i_type) {
1137                 case IEEE80211_IOC_STATIONNAME:
1138                         ireq->i_len = sc->sc_nodelen + 1;
1139                         error = copyout(sc->sc_nodename, ireq->i_data,
1140                                         ireq->i_len);
1141                         break;
1142                 default:
1143                         error = ieee80211_ioctl(ifp, cmd, data, cr);
1144                         break;
1145                 }
1146                 break;
1147         case SIOCS80211:
1148                 error = suser_cred(cr, NULL_CRED_OKAY);
1149                 if (error)
1150                         break;
1151                 ireq = (struct ieee80211req *) data;
1152                 switch (ireq->i_type) {
1153                 case IEEE80211_IOC_STATIONNAME:
1154                         if (ireq->i_val != 0 ||
1155                             ireq->i_len > IEEE80211_NWID_LEN) {
1156                                 error = EINVAL;
1157                                 break;
1158                         }
1159                         memset(nodename, 0, IEEE80211_NWID_LEN);
1160                         error = copyin(ireq->i_data, nodename, ireq->i_len);
1161                         if (error)
1162                                 break;
1163                         if (sc->sc_enabled) {
1164                                 error = wi_write_ssid(sc, WI_RID_NODENAME,
1165                                         nodename, ireq->i_len);
1166                                 if (error)
1167                                         break;
1168                         }
1169                         memcpy(sc->sc_nodename, nodename, IEEE80211_NWID_LEN);
1170                         sc->sc_nodelen = ireq->i_len;
1171                         break;
1172                 default:
1173                         error = ieee80211_ioctl(ifp, cmd, data, cr);
1174                         break;
1175                 }
1176                 break;
1177         case SIOCSIFCAP:
1178                 if (ifp->if_flags & IFF_RUNNING)
1179                         wi_init(sc);
1180                 break;
1181         default:
1182                 error = ieee80211_ioctl(ifp, cmd, data, cr);
1183                 break;
1184         }
1185         if (error == ENETRESET) {
1186                 if (sc->sc_enabled)
1187                         wi_init(sc);    /* XXX no error return */
1188                 error = 0;
1189         }
1190 out:
1191         WI_UNLOCK(sc);
1192
1193         return (error);
1194 }
1195
1196 static int
1197 wi_media_change(struct ifnet *ifp)
1198 {
1199         struct wi_softc *sc = ifp->if_softc;
1200         int error;
1201
1202         error = ieee80211_media_change(ifp);
1203         if (error == ENETRESET) {
1204                 if (sc->sc_enabled)
1205                         wi_init(sc);    /* XXX no error return */
1206                 error = 0;
1207         }
1208         return error;
1209 }
1210
1211 static void
1212 wi_media_status(struct ifnet *ifp, struct ifmediareq *imr)
1213 {
1214         struct wi_softc *sc = ifp->if_softc;
1215         struct ieee80211com *ic = &sc->sc_ic;
1216         u_int16_t val;
1217         int rate, len;
1218
1219         if (sc->wi_gone || !sc->sc_enabled) {
1220                 imr->ifm_active = IFM_IEEE80211 | IFM_NONE;
1221                 imr->ifm_status = 0;
1222                 return;
1223         }
1224
1225         imr->ifm_status = IFM_AVALID;
1226         imr->ifm_active = IFM_IEEE80211;
1227         if (ic->ic_state == IEEE80211_S_RUN &&
1228             (sc->sc_flags & WI_FLAGS_OUTRANGE) == 0)
1229                 imr->ifm_status |= IFM_ACTIVE;
1230         len = sizeof(val);
1231         if (wi_read_rid(sc, WI_RID_CUR_TX_RATE, &val, &len) != 0)
1232                 rate = 0;
1233         else {
1234                 /* convert to 802.11 rate */
1235                 rate = val * 2;
1236                 if (sc->sc_firmware_type == WI_LUCENT) {
1237                         if (rate == 4 * 2)
1238                                 rate = 11;      /* 5.5Mbps */
1239                         else if (rate == 5 * 2)
1240                                 rate = 22;      /* 11Mbps */
1241                 } else {
1242                         if (rate == 4*2)
1243                                 rate = 11;      /* 5.5Mbps */
1244                         else if (rate == 8*2)
1245                                 rate = 22;      /* 11Mbps */
1246                 }
1247         }
1248         imr->ifm_active |= ieee80211_rate2media(ic, rate, IEEE80211_MODE_11B);
1249         switch (ic->ic_opmode) {
1250         case IEEE80211_M_STA:
1251                 break;
1252         case IEEE80211_M_IBSS:
1253                 imr->ifm_active |= IFM_IEEE80211_ADHOC;
1254                 break;
1255         case IEEE80211_M_AHDEMO:
1256                 imr->ifm_active |= IFM_IEEE80211_ADHOC | IFM_FLAG0;
1257                 break;
1258         case IEEE80211_M_HOSTAP:
1259                 imr->ifm_active |= IFM_IEEE80211_HOSTAP;
1260                 break;
1261         case IEEE80211_M_MONITOR:
1262                 imr->ifm_active |= IFM_IEEE80211_MONITOR;
1263                 break;
1264         }
1265 }
1266
1267 static void
1268 wi_sync_bssid(struct wi_softc *sc, u_int8_t new_bssid[IEEE80211_ADDR_LEN])
1269 {
1270         struct ieee80211com *ic = &sc->sc_ic;
1271         struct ieee80211_node *ni = ic->ic_bss;
1272         struct ifnet *ifp = &ic->ic_if;
1273
1274         if (IEEE80211_ADDR_EQ(new_bssid, ni->ni_bssid))
1275                 return;
1276
1277         DPRINTF((ifp, "wi_sync_bssid: bssid %6D -> %6D ?\n", ni->ni_bssid, ":",
1278             new_bssid, ":"));
1279
1280         /* In promiscuous mode, the BSSID field is not a reliable
1281          * indicator of the firmware's BSSID. Damp spurious
1282          * change-of-BSSID indications.
1283          */
1284         if ((ifp->if_flags & IFF_PROMISC) != 0 &&
1285             sc->sc_false_syns >= WI_MAX_FALSE_SYNS)
1286                 return;
1287
1288         ieee80211_new_state(ic, IEEE80211_S_RUN, -1);
1289 }
1290
1291 static void
1292 wi_rx_monitor(struct wi_softc *sc, int fid)
1293 {
1294         struct ieee80211com *ic = &sc->sc_ic;
1295         struct ifnet *ifp = &ic->ic_if;
1296         struct wi_frame *rx_frame;
1297         struct mbuf *m;
1298         int datlen, hdrlen;
1299
1300         /* first allocate mbuf for packet storage */
1301         m = m_getcl(MB_DONTWAIT, MT_DATA, 0);
1302         if (m == NULL) {
1303                 ifp->if_ierrors++;
1304                 return;
1305         }
1306
1307         m->m_pkthdr.rcvif = ifp;
1308
1309         /* now read wi_frame first so we know how much data to read */
1310         if (wi_read_bap(sc, fid, 0, mtod(m, caddr_t), sizeof(*rx_frame))) {
1311                 ifp->if_ierrors++;
1312                 goto done;
1313         }
1314
1315         rx_frame = mtod(m, struct wi_frame *);
1316
1317         switch ((rx_frame->wi_status & WI_STAT_MAC_PORT) >> 8) {
1318         case 7:
1319                 switch (rx_frame->wi_whdr.i_fc[0] & IEEE80211_FC0_TYPE_MASK) {
1320                 case IEEE80211_FC0_TYPE_DATA:
1321                         hdrlen = WI_DATA_HDRLEN;
1322                         datlen = rx_frame->wi_dat_len + WI_FCS_LEN;
1323                         break;
1324                 case IEEE80211_FC0_TYPE_MGT:
1325                         hdrlen = WI_MGMT_HDRLEN;
1326                         datlen = rx_frame->wi_dat_len + WI_FCS_LEN;
1327                         break;
1328                 case IEEE80211_FC0_TYPE_CTL:
1329                         /*
1330                          * prism2 cards don't pass control packets
1331                          * down properly or consistently, so we'll only
1332                          * pass down the header.
1333                          */
1334                         hdrlen = WI_CTL_HDRLEN;
1335                         datlen = 0;
1336                         break;
1337                 default:
1338                         if_printf(ifp, "received packet of unknown type "
1339                                 "on port 7\n");
1340                         ifp->if_ierrors++;
1341                         goto done;
1342                 }
1343                 break;
1344         case 0:
1345                 hdrlen = WI_DATA_HDRLEN;
1346                 datlen = rx_frame->wi_dat_len + WI_FCS_LEN;
1347                 break;
1348         default:
1349                 if_printf(ifp, "received packet on invalid "
1350                     "port (wi_status=0x%x)\n", rx_frame->wi_status);
1351                 ifp->if_ierrors++;
1352                 goto done;
1353         }
1354
1355         if (hdrlen + datlen + 2 > MCLBYTES) {
1356                 if_printf(ifp, "oversized packet received "
1357                     "(wi_dat_len=%d, wi_status=0x%x)\n",
1358                     datlen, rx_frame->wi_status);
1359                 ifp->if_ierrors++;
1360                 goto done;
1361         }
1362
1363         if (wi_read_bap(sc, fid, hdrlen, mtod(m, caddr_t) + hdrlen,
1364             datlen + 2) == 0) {
1365                 m->m_pkthdr.len = m->m_len = hdrlen + datlen;
1366                 ifp->if_ipackets++;
1367                 BPF_MTAP(ifp, m);       /* Handle BPF listeners. */
1368         } else
1369                 ifp->if_ierrors++;
1370 done:
1371         m_freem(m);
1372 }
1373
1374 static void
1375 wi_rx_intr(struct wi_softc *sc)
1376 {
1377         struct ieee80211com *ic = &sc->sc_ic;
1378         struct ifnet *ifp = &ic->ic_if;
1379         struct wi_frame frmhdr;
1380         struct mbuf *m;
1381         struct ieee80211_frame *wh;
1382         struct ieee80211_node *ni;
1383         int fid, len, off, rssi;
1384         u_int8_t dir;
1385         u_int16_t status;
1386         u_int32_t rstamp;
1387
1388         fid = CSR_READ_2(sc, WI_RX_FID);
1389
1390         if (sc->wi_debug.wi_monitor) {
1391                 /*
1392                  * If we are in monitor mode just
1393                  * read the data from the device.
1394                  */
1395                 wi_rx_monitor(sc, fid);
1396                 CSR_WRITE_2(sc, WI_EVENT_ACK, WI_EV_RX);
1397                 return;
1398         }
1399
1400         /* First read in the frame header */
1401         if (wi_read_bap(sc, fid, 0, &frmhdr, sizeof(frmhdr))) {
1402                 CSR_WRITE_2(sc, WI_EVENT_ACK, WI_EV_RX);
1403                 ifp->if_ierrors++;
1404                 DPRINTF((ifp, "wi_rx_intr: read fid %x failed\n", fid));
1405                 return;
1406         }
1407
1408         if (IFF_DUMPPKTS(ifp))
1409                 wi_dump_pkt(&frmhdr, NULL, frmhdr.wi_rx_signal);
1410
1411         /*
1412          * Drop undecryptable or packets with receive errors here
1413          */
1414         status = le16toh(frmhdr.wi_status);
1415         if (status & WI_STAT_ERRSTAT) {
1416                 CSR_WRITE_2(sc, WI_EVENT_ACK, WI_EV_RX);
1417                 ifp->if_ierrors++;
1418                 DPRINTF((ifp, "wi_rx_intr: fid %x error status %x\n",
1419                          fid, status));
1420                 return;
1421         }
1422         rssi = frmhdr.wi_rx_signal;
1423         rstamp = (le16toh(frmhdr.wi_rx_tstamp0) << 16) |
1424             le16toh(frmhdr.wi_rx_tstamp1);
1425
1426         len = le16toh(frmhdr.wi_dat_len);
1427         off = ALIGN(sizeof(struct ieee80211_frame));
1428
1429         /*
1430          * Sometimes the PRISM2.x returns bogusly large frames. Except
1431          * in monitor mode, just throw them away.
1432          */
1433         if (off + len > MCLBYTES) {
1434                 if (ic->ic_opmode != IEEE80211_M_MONITOR) {
1435                         CSR_WRITE_2(sc, WI_EVENT_ACK, WI_EV_RX);
1436                         ifp->if_ierrors++;
1437                         DPRINTF((ifp, "wi_rx_intr: oversized packet\n"));
1438                         return;
1439                 } else
1440                         len = 0;
1441         }
1442
1443         m = m_getl(off + len, MB_DONTWAIT, MT_DATA, M_PKTHDR, NULL);
1444         if (m == NULL) {
1445                 CSR_WRITE_2(sc, WI_EVENT_ACK, WI_EV_RX);
1446                 ifp->if_ierrors++;
1447                 DPRINTF((ifp, "wi_rx_intr: m_getl failed\n"));
1448                 return;
1449         }
1450
1451         m->m_data += off - sizeof(struct ieee80211_frame);
1452         memcpy(m->m_data, &frmhdr.wi_whdr, sizeof(struct ieee80211_frame));
1453         wi_read_bap(sc, fid, sizeof(frmhdr),
1454             m->m_data + sizeof(struct ieee80211_frame), len);
1455         m->m_pkthdr.len = m->m_len = sizeof(struct ieee80211_frame) + len;
1456         m->m_pkthdr.rcvif = ifp;
1457
1458         CSR_WRITE_2(sc, WI_EVENT_ACK, WI_EV_RX);
1459
1460         if (sc->sc_drvbpf) {
1461                 /* XXX replace divide by table */
1462                 sc->sc_rx_th.wr_rate = frmhdr.wi_rx_rate / 5;
1463                 sc->sc_rx_th.wr_antsignal = frmhdr.wi_rx_signal;
1464                 sc->sc_rx_th.wr_antnoise = frmhdr.wi_rx_silence;
1465                 sc->sc_rx_th.wr_flags = 0;
1466                 if (frmhdr.wi_status & WI_STAT_PCF)
1467                         sc->sc_rx_th.wr_flags |= IEEE80211_RADIOTAP_F_CFP;
1468                 bpf_ptap(sc->sc_drvbpf, m, &sc->sc_rx_th, sc->sc_rx_th_len);
1469         }
1470
1471         wh = mtod(m, struct ieee80211_frame *);
1472         if (wh->i_fc[1] & IEEE80211_FC1_WEP) {
1473                 /*
1474                  * WEP is decrypted by hardware. Clear WEP bit
1475                  * header for ieee80211_input().
1476                  */
1477                 wh->i_fc[1] &= ~IEEE80211_FC1_WEP;
1478         }
1479
1480         /* synchronize driver's BSSID with firmware's BSSID */
1481         dir = wh->i_fc[1] & IEEE80211_FC1_DIR_MASK;
1482         if (ic->ic_opmode == IEEE80211_M_IBSS && dir == IEEE80211_FC1_DIR_NODS)
1483                 wi_sync_bssid(sc, wh->i_addr3);
1484
1485         /*
1486          * Locate the node for sender, track state, and
1487          * then pass this node (referenced) up to the 802.11
1488          * layer for its use.  We are required to pass
1489          * something so we fallback to ic_bss when this frame
1490          * is from an unknown sender.
1491          */
1492         if (ic->ic_opmode != IEEE80211_M_STA) {
1493                 ni = ieee80211_find_node(ic, wh->i_addr2);
1494                 if (ni == NULL)
1495                         ni = ieee80211_ref_node(ic->ic_bss);
1496         } else
1497                 ni = ieee80211_ref_node(ic->ic_bss);
1498         /*
1499          * Send frame up for processing.
1500          */
1501         ieee80211_input(ifp, m, ni, rssi, rstamp);
1502         /*
1503          * The frame may have caused the node to be marked for
1504          * reclamation (e.g. in response to a DEAUTH message)
1505          * so use free_node here instead of unref_node.
1506          */
1507         if (ni == ic->ic_bss)
1508                 ieee80211_unref_node(&ni);
1509         else
1510                 ieee80211_free_node(ic, ni);
1511 }
1512
1513 static void
1514 wi_tx_ex_intr(struct wi_softc *sc)
1515 {
1516         struct ieee80211com *ic = &sc->sc_ic;
1517         struct ifnet *ifp = &ic->ic_if;
1518         struct wi_frame frmhdr;
1519         int fid;
1520
1521         fid = CSR_READ_2(sc, WI_TX_CMP_FID);
1522         /* Read in the frame header */
1523         if (wi_read_bap(sc, fid, 0, &frmhdr, sizeof(frmhdr)) == 0) {
1524                 u_int16_t status = le16toh(frmhdr.wi_status);
1525
1526                 /*
1527                  * Spontaneous station disconnects appear as xmit
1528                  * errors.  Don't announce them and/or count them
1529                  * as an output error.
1530                  */
1531                 if ((status & WI_TXSTAT_DISCONNECT) == 0) {
1532                         if (ppsratecheck(&lasttxerror, &curtxeps, wi_txerate)) {
1533                                 if_printf(ifp, "tx failed");
1534                                 if (status & WI_TXSTAT_RET_ERR)
1535                                         printf(", retry limit exceeded");
1536                                 if (status & WI_TXSTAT_AGED_ERR)
1537                                         printf(", max transmit lifetime exceeded");
1538                                 if (status & WI_TXSTAT_DISCONNECT)
1539                                         printf(", port disconnected");
1540                                 if (status & WI_TXSTAT_FORM_ERR)
1541                                         printf(", invalid format (data len %u src %6D)",
1542                                                 le16toh(frmhdr.wi_dat_len),
1543                                                 frmhdr.wi_ehdr.ether_shost, ":");
1544                                 if (status & ~0xf)
1545                                         printf(", status=0x%x", status);
1546                                 printf("\n");
1547                         }
1548                         ifp->if_oerrors++;
1549                 } else {
1550                         DPRINTF((ifp, "port disconnected\n"));
1551                         ifp->if_collisions++;   /* XXX */
1552                 }
1553         } else
1554                 DPRINTF((ifp, "wi_tx_ex_intr: read fid %x failed\n", fid));
1555         CSR_WRITE_2(sc, WI_EVENT_ACK, WI_EV_TX_EXC);
1556 }
1557
1558 static void
1559 wi_tx_intr(struct wi_softc *sc)
1560 {
1561         struct ieee80211com *ic = &sc->sc_ic;
1562         struct ifnet *ifp = &ic->ic_if;
1563         int fid, cur;
1564
1565         if (sc->wi_gone)
1566                 return;
1567
1568         fid = CSR_READ_2(sc, WI_ALLOC_FID);
1569         CSR_WRITE_2(sc, WI_EVENT_ACK, WI_EV_ALLOC);
1570
1571         cur = sc->sc_txcur;
1572         if (sc->sc_txd[cur].d_fid != fid) {
1573                 if_printf(ifp, "bad alloc %x != %x, cur %d nxt %d\n",
1574                     fid, sc->sc_txd[cur].d_fid, cur, sc->sc_txnext);
1575                 return;
1576         }
1577         sc->sc_tx_timer = 0;
1578         sc->sc_txd[cur].d_len = 0;
1579         sc->sc_txcur = cur = (cur + 1) % sc->sc_ntxbuf;
1580         if (sc->sc_txd[cur].d_len == 0)
1581                 ifp->if_flags &= ~IFF_OACTIVE;
1582         else {
1583                 if (wi_cmd(sc, WI_CMD_TX | WI_RECLAIM, sc->sc_txd[cur].d_fid,
1584                     0, 0)) {
1585                         if_printf(ifp, "xmit failed\n");
1586                         sc->sc_txd[cur].d_len = 0;
1587                 } else {
1588                         sc->sc_tx_timer = 5;
1589                         ifp->if_timer = 1;
1590                 }
1591         }
1592 }
1593
1594 static void
1595 wi_info_intr(struct wi_softc *sc)
1596 {
1597         struct ieee80211com *ic = &sc->sc_ic;
1598         struct ifnet *ifp = &ic->ic_if;
1599         int i, fid, len, off;
1600         u_int16_t ltbuf[2];
1601         u_int16_t stat;
1602         u_int32_t *ptr;
1603
1604         fid = CSR_READ_2(sc, WI_INFO_FID);
1605         wi_read_bap(sc, fid, 0, ltbuf, sizeof(ltbuf));
1606
1607         switch (le16toh(ltbuf[1])) {
1608
1609         case WI_INFO_LINK_STAT:
1610                 wi_read_bap(sc, fid, sizeof(ltbuf), &stat, sizeof(stat));
1611                 DPRINTF((ifp, "wi_info_intr: LINK_STAT 0x%x\n", le16toh(stat)));
1612                 switch (le16toh(stat)) {
1613                 case WI_INFO_LINK_STAT_CONNECTED:
1614                         sc->sc_flags &= ~WI_FLAGS_OUTRANGE;
1615                         if (ic->ic_state == IEEE80211_S_RUN &&
1616                             ic->ic_opmode != IEEE80211_M_IBSS)
1617                                 break;
1618                         /* FALLTHROUGH */
1619                 case WI_INFO_LINK_STAT_AP_CHG:
1620                         ieee80211_new_state(ic, IEEE80211_S_RUN, -1);
1621                         break;
1622                 case WI_INFO_LINK_STAT_AP_INR:
1623                         sc->sc_flags &= ~WI_FLAGS_OUTRANGE;
1624                         break;
1625                 case WI_INFO_LINK_STAT_AP_OOR:
1626                         if (sc->sc_firmware_type == WI_SYMBOL &&
1627                             sc->sc_scan_timer > 0) {
1628                                 if (wi_cmd(sc, WI_CMD_INQUIRE,
1629                                     WI_INFO_HOST_SCAN_RESULTS, 0, 0) != 0)
1630                                         sc->sc_scan_timer = 0;
1631                                 break;
1632                         }
1633                         if (ic->ic_opmode == IEEE80211_M_STA)
1634                                 sc->sc_flags |= WI_FLAGS_OUTRANGE;
1635                         break;
1636                 case WI_INFO_LINK_STAT_DISCONNECTED:
1637                 case WI_INFO_LINK_STAT_ASSOC_FAILED:
1638                         if (ic->ic_opmode == IEEE80211_M_STA)
1639                                 ieee80211_new_state(ic, IEEE80211_S_INIT, -1);
1640                         break;
1641                 }
1642                 break;
1643
1644         case WI_INFO_COUNTERS:
1645                 /* some card versions have a larger stats structure */
1646                 len = min(le16toh(ltbuf[0]) - 1, sizeof(sc->sc_stats) / 4);
1647                 ptr = (u_int32_t *)&sc->sc_stats;
1648                 off = sizeof(ltbuf);
1649                 for (i = 0; i < len; i++, off += 2, ptr++) {
1650                         wi_read_bap(sc, fid, off, &stat, sizeof(stat));
1651 #ifdef WI_HERMES_STATS_WAR
1652                         if (stat & 0xf000)
1653                                 stat = ~stat;
1654 #endif
1655                         *ptr += stat;
1656                 }
1657                 ifp->if_collisions = sc->sc_stats.wi_tx_single_retries +
1658                     sc->sc_stats.wi_tx_multi_retries +
1659                     sc->sc_stats.wi_tx_retry_limit;
1660                 break;
1661
1662         case WI_INFO_SCAN_RESULTS:
1663         case WI_INFO_HOST_SCAN_RESULTS:
1664                 wi_scan_result(sc, fid, le16toh(ltbuf[0]));
1665                 break;
1666
1667         default:
1668                 DPRINTF((ifp, "wi_info_intr: got fid %x type %x len %d\n", fid,
1669                     le16toh(ltbuf[1]), le16toh(ltbuf[0])));
1670                 break;
1671         }
1672         CSR_WRITE_2(sc, WI_EVENT_ACK, WI_EV_INFO);
1673 }
1674
1675 static int
1676 wi_write_multi(struct wi_softc *sc)
1677 {
1678         struct ifnet *ifp = &sc->sc_ic.ic_if;
1679         int n;
1680         struct ifmultiaddr *ifma;
1681         struct wi_mcast mlist;
1682
1683         if (ifp->if_flags & IFF_ALLMULTI || ifp->if_flags & IFF_PROMISC) {
1684 allmulti:
1685                 memset(&mlist, 0, sizeof(mlist));
1686                 return wi_write_rid(sc, WI_RID_MCAST_LIST, &mlist,
1687                     sizeof(mlist));
1688         }
1689
1690         n = 0;
1691         LIST_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
1692                 if (ifma->ifma_addr->sa_family != AF_LINK)
1693                         continue;
1694                 if (n >= 16)
1695                         goto allmulti;
1696                 IEEE80211_ADDR_COPY(&mlist.wi_mcast[n],
1697                     (LLADDR((struct sockaddr_dl *)ifma->ifma_addr)));
1698                 n++;
1699         }
1700         return wi_write_rid(sc, WI_RID_MCAST_LIST, &mlist,
1701             IEEE80211_ADDR_LEN * n);
1702 }
1703
1704 static void
1705 wi_read_nicid(struct wi_softc *sc)
1706 {
1707         struct wi_card_ident *id;
1708         char *p;
1709         int len;
1710         u_int16_t ver[4];
1711
1712         /* getting chip identity */
1713         memset(ver, 0, sizeof(ver));
1714         len = sizeof(ver);
1715         wi_read_rid(sc, WI_RID_CARD_ID, ver, &len);
1716         if_printf(&sc->sc_ic.ic_if, "using ");
1717
1718         sc->sc_firmware_type = WI_NOTYPE;
1719         for (id = wi_card_ident; id->card_name != NULL; id++) {
1720                 if (le16toh(ver[0]) == id->card_id) {
1721                         printf("%s", id->card_name);
1722                         sc->sc_firmware_type = id->firm_type;
1723                         break;
1724                 }
1725         }
1726         if (sc->sc_firmware_type == WI_NOTYPE) {
1727                 if (le16toh(ver[0]) & 0x8000) {
1728                         printf("Unknown PRISM2 chip");
1729                         sc->sc_firmware_type = WI_INTERSIL;
1730                 } else {
1731                         printf("Unknown Lucent chip");
1732                         sc->sc_firmware_type = WI_LUCENT;
1733                 }
1734         }
1735
1736         /* get primary firmware version (Only Prism chips) */
1737         if (sc->sc_firmware_type != WI_LUCENT) {
1738                 memset(ver, 0, sizeof(ver));
1739                 len = sizeof(ver);
1740                 wi_read_rid(sc, WI_RID_PRI_IDENTITY, ver, &len);
1741                 sc->sc_pri_firmware_ver = le16toh(ver[2]) * 10000 +
1742                     le16toh(ver[3]) * 100 + le16toh(ver[1]);
1743         }
1744
1745         /* get station firmware version */
1746         memset(ver, 0, sizeof(ver));
1747         len = sizeof(ver);
1748         wi_read_rid(sc, WI_RID_STA_IDENTITY, ver, &len);
1749         sc->sc_sta_firmware_ver = le16toh(ver[2]) * 10000 +
1750             le16toh(ver[3]) * 100 + le16toh(ver[1]);
1751         if (sc->sc_firmware_type == WI_INTERSIL &&
1752             (sc->sc_sta_firmware_ver == 10102 ||
1753              sc->sc_sta_firmware_ver == 20102)) {
1754                 char ident[12];
1755                 memset(ident, 0, sizeof(ident));
1756                 len = sizeof(ident);
1757                 /* value should be the format like "V2.00-11" */
1758                 if (wi_read_rid(sc, WI_RID_SYMBOL_IDENTITY, ident, &len) == 0 &&
1759                     *(p = (char *)ident) >= 'A' &&
1760                     p[2] == '.' && p[5] == '-' && p[8] == '\0') {
1761                         sc->sc_firmware_type = WI_SYMBOL;
1762                         sc->sc_sta_firmware_ver = (p[1] - '0') * 10000 +
1763                             (p[3] - '0') * 1000 + (p[4] - '0') * 100 +
1764                             (p[6] - '0') * 10 + (p[7] - '0');
1765                 }
1766         }
1767         printf("\n");
1768         if_printf(&sc->sc_ic.ic_if, "%s Firmware: ",
1769              sc->sc_firmware_type == WI_LUCENT ? "Lucent" :
1770             (sc->sc_firmware_type == WI_SYMBOL ? "Symbol" : "Intersil"));
1771         if (sc->sc_firmware_type != WI_LUCENT)  /* XXX */
1772                 printf("Primary (%u.%u.%u), ",
1773                     sc->sc_pri_firmware_ver / 10000,
1774                     (sc->sc_pri_firmware_ver % 10000) / 100,
1775                     sc->sc_pri_firmware_ver % 100);
1776         printf("Station (%u.%u.%u)\n",
1777             sc->sc_sta_firmware_ver / 10000,
1778             (sc->sc_sta_firmware_ver % 10000) / 100,
1779             sc->sc_sta_firmware_ver % 100);
1780 }
1781
1782 static int
1783 wi_write_ssid(struct wi_softc *sc, int rid, u_int8_t *buf, int buflen)
1784 {
1785         struct wi_ssid ssid;
1786
1787         if (buflen > IEEE80211_NWID_LEN)
1788                 return ENOBUFS;
1789         memset(&ssid, 0, sizeof(ssid));
1790         ssid.wi_len = htole16(buflen);
1791         memcpy(ssid.wi_ssid, buf, buflen);
1792         return wi_write_rid(sc, rid, &ssid, sizeof(ssid));
1793 }
1794
1795 static int
1796 wi_get_cfg(struct ifnet *ifp, u_long cmd, caddr_t data, struct ucred *cr)
1797 {
1798         struct wi_softc *sc = ifp->if_softc;
1799         struct ieee80211com *ic = &sc->sc_ic;
1800         struct ifreq *ifr = (struct ifreq *)data;
1801         struct wi_req wreq;
1802         struct wi_scan_res *res;
1803         size_t reslen;
1804         int len, n, error, mif, val, off, i;
1805
1806         error = copyin(ifr->ifr_data, &wreq, sizeof(wreq));
1807         if (error)
1808                 return error;
1809         len = (wreq.wi_len - 1) * 2;
1810         if (len < sizeof(u_int16_t))
1811                 return ENOSPC;
1812         if (len > sizeof(wreq.wi_val))
1813                 len = sizeof(wreq.wi_val);
1814
1815         switch (wreq.wi_type) {
1816
1817         case WI_RID_IFACE_STATS:
1818                 memcpy(wreq.wi_val, &sc->sc_stats, sizeof(sc->sc_stats));
1819                 if (len < sizeof(sc->sc_stats))
1820                         error = ENOSPC;
1821                 else
1822                         len = sizeof(sc->sc_stats);
1823                 break;
1824
1825         case WI_RID_ENCRYPTION:
1826         case WI_RID_TX_CRYPT_KEY:
1827         case WI_RID_DEFLT_CRYPT_KEYS:
1828         case WI_RID_TX_RATE:
1829                 return ieee80211_cfgget(ifp, cmd, data, cr);
1830
1831         case WI_RID_MICROWAVE_OVEN:
1832                 if (sc->sc_enabled && (sc->sc_flags & WI_FLAGS_HAS_MOR)) {
1833                         error = wi_read_rid(sc, wreq.wi_type, wreq.wi_val,
1834                             &len);
1835                         break;
1836                 }
1837                 wreq.wi_val[0] = htole16(sc->sc_microwave_oven);
1838                 len = sizeof(u_int16_t);
1839                 break;
1840
1841         case WI_RID_DBM_ADJUST:
1842                 if (sc->sc_enabled && (sc->sc_flags & WI_FLAGS_HAS_DBMADJUST)) {
1843                         error = wi_read_rid(sc, wreq.wi_type, wreq.wi_val,
1844                             &len);
1845                         break;
1846                 }
1847                 wreq.wi_val[0] = htole16(sc->sc_dbm_offset);
1848                 len = sizeof(u_int16_t);
1849                 break;
1850
1851         case WI_RID_ROAMING_MODE:
1852                 if (sc->sc_enabled && (sc->sc_flags & WI_FLAGS_HAS_ROAMING)) {
1853                         error = wi_read_rid(sc, wreq.wi_type, wreq.wi_val,
1854                             &len);
1855                         break;
1856                 }
1857                 wreq.wi_val[0] = htole16(sc->sc_roaming_mode);
1858                 len = sizeof(u_int16_t);
1859                 break;
1860
1861         case WI_RID_SYSTEM_SCALE:
1862                 if (sc->sc_enabled && (sc->sc_flags & WI_FLAGS_HAS_SYSSCALE)) {
1863                         error = wi_read_rid(sc, wreq.wi_type, wreq.wi_val,
1864                             &len);
1865                         break;
1866                 }
1867                 wreq.wi_val[0] = htole16(sc->sc_system_scale);
1868                 len = sizeof(u_int16_t);
1869                 break;
1870
1871         case WI_RID_FRAG_THRESH:
1872                 if (sc->sc_enabled && (sc->sc_flags & WI_FLAGS_HAS_FRAGTHR)) {
1873                         error = wi_read_rid(sc, wreq.wi_type, wreq.wi_val,
1874                             &len);
1875                         break;
1876                 }
1877                 wreq.wi_val[0] = htole16(ic->ic_fragthreshold);
1878                 len = sizeof(u_int16_t);
1879                 break;
1880
1881         case WI_RID_READ_APS:
1882                 if (ic->ic_opmode == IEEE80211_M_HOSTAP)
1883                         return ieee80211_cfgget(ifp, cmd, data, cr);
1884                 if (sc->sc_scan_timer > 0) {
1885                         error = EINPROGRESS;
1886                         break;
1887                 }
1888                 n = sc->sc_naps;
1889                 if (len < sizeof(n)) {
1890                         error = ENOSPC;
1891                         break;
1892                 }
1893                 if (len < sizeof(n) + sizeof(struct wi_apinfo) * n)
1894                         n = (len - sizeof(n)) / sizeof(struct wi_apinfo);
1895                 len = sizeof(n) + sizeof(struct wi_apinfo) * n;
1896                 memcpy(wreq.wi_val, &n, sizeof(n));
1897                 memcpy((caddr_t)wreq.wi_val + sizeof(n), sc->sc_aps,
1898                     sizeof(struct wi_apinfo) * n);
1899                 break;
1900
1901         case WI_RID_PRISM2:
1902                 wreq.wi_val[0] = sc->sc_firmware_type != WI_LUCENT;
1903                 len = sizeof(u_int16_t);
1904                 break;
1905
1906         case WI_RID_MIF:
1907                 mif = wreq.wi_val[0];
1908                 error = wi_cmd(sc, WI_CMD_READMIF, mif, 0, 0);
1909                 val = CSR_READ_2(sc, WI_RESP0);
1910                 wreq.wi_val[0] = val;
1911                 len = sizeof(u_int16_t);
1912                 break;
1913
1914         case WI_RID_ZERO_CACHE:
1915         case WI_RID_PROCFRAME:          /* ignore for compatibility */
1916                 /* XXX ??? */
1917                 break;
1918
1919         case WI_RID_READ_CACHE:
1920                 return ieee80211_cfgget(ifp, cmd, data, cr);
1921
1922         case WI_RID_SCAN_RES:           /* compatibility interface */
1923                 if (ic->ic_opmode == IEEE80211_M_HOSTAP)
1924                         return ieee80211_cfgget(ifp, cmd, data, cr);
1925                 if (sc->sc_scan_timer > 0) {
1926                         error = EINPROGRESS;
1927                         break;
1928                 }
1929                 n = sc->sc_naps;
1930                 if (sc->sc_firmware_type == WI_LUCENT) {
1931                         off = 0;
1932                         reslen = WI_WAVELAN_RES_SIZE;
1933                 } else {
1934                         off = sizeof(struct wi_scan_p2_hdr);
1935                         reslen = WI_PRISM2_RES_SIZE;
1936                 }
1937                 if (len < off + reslen * n)
1938                         n = (len - off) / reslen;
1939                 len = off + reslen * n;
1940                 if (off != 0) {
1941                         struct wi_scan_p2_hdr *p2 = (struct wi_scan_p2_hdr *)wreq.wi_val;
1942                         /*
1943                          * Prepend Prism-specific header.
1944                          */
1945                         if (len < sizeof(struct wi_scan_p2_hdr)) {
1946                                 error = ENOSPC;
1947                                 break;
1948                         }
1949                         p2 = (struct wi_scan_p2_hdr *)wreq.wi_val;
1950                         p2->wi_rsvd = 0;
1951                         p2->wi_reason = n;      /* XXX */
1952                 }
1953                 for (i = 0; i < n; i++, off += reslen) {
1954                         const struct wi_apinfo *ap = &sc->sc_aps[i];
1955
1956                         res = (struct wi_scan_res *)((char *)wreq.wi_val + off);
1957                         res->wi_chan = ap->channel;
1958                         res->wi_noise = ap->noise;
1959                         res->wi_signal = ap->signal;
1960                         IEEE80211_ADDR_COPY(res->wi_bssid, ap->bssid);
1961                         res->wi_interval = ap->interval;
1962                         res->wi_capinfo = ap->capinfo;
1963                         res->wi_ssid_len = ap->namelen;
1964                         memcpy(res->wi_ssid, ap->name,
1965                                 IEEE80211_NWID_LEN);
1966                         if (sc->sc_firmware_type != WI_LUCENT) {
1967                                 /* XXX not saved from Prism cards */
1968                                 memset(res->wi_srates, 0,
1969                                         sizeof(res->wi_srates));
1970                                 res->wi_rate = ap->rate;
1971                                 res->wi_rsvd = 0;
1972                         }
1973                 }
1974                 break;
1975
1976         default:
1977                 if (sc->sc_enabled) {
1978                         error = wi_read_rid(sc, wreq.wi_type, wreq.wi_val,
1979                             &len);
1980                         break;
1981                 }
1982                 switch (wreq.wi_type) {
1983                 case WI_RID_MAX_DATALEN:
1984                         wreq.wi_val[0] = htole16(sc->sc_max_datalen);
1985                         len = sizeof(u_int16_t);
1986                         break;
1987                 case WI_RID_RTS_THRESH:
1988                         wreq.wi_val[0] = htole16(ic->ic_rtsthreshold);
1989                         len = sizeof(u_int16_t);
1990                         break;
1991                 case WI_RID_CNFAUTHMODE:
1992                         wreq.wi_val[0] = htole16(sc->sc_cnfauthmode);
1993                         len = sizeof(u_int16_t);
1994                         break;
1995                 case WI_RID_NODENAME:
1996                         if (len < sc->sc_nodelen + sizeof(u_int16_t)) {
1997                                 error = ENOSPC;
1998                                 break;
1999                         }
2000                         len = sc->sc_nodelen + sizeof(u_int16_t);
2001                         wreq.wi_val[0] = htole16((sc->sc_nodelen + 1) / 2);
2002                         memcpy(&wreq.wi_val[1], sc->sc_nodename,
2003                             sc->sc_nodelen);
2004                         break;
2005                 default:
2006                         return ieee80211_cfgget(ifp, cmd, data, cr);
2007                 }
2008                 break;
2009         }
2010         if (error)
2011                 return error;
2012         wreq.wi_len = (len + 1) / 2 + 1;
2013         return copyout(&wreq, ifr->ifr_data, (wreq.wi_len + 1) * 2);
2014 }
2015
2016 static int
2017 wi_set_cfg(struct ifnet *ifp, u_long cmd, caddr_t data)
2018 {
2019         struct wi_softc *sc = ifp->if_softc;
2020         struct ieee80211com *ic = &sc->sc_ic;
2021         struct ifreq *ifr = (struct ifreq *)data;
2022         struct wi_req wreq;
2023         struct mbuf *m;
2024         int i, len, error, mif, val;
2025         struct ieee80211_rateset *rs;
2026
2027         error = copyin(ifr->ifr_data, &wreq, sizeof(wreq));
2028         if (error)
2029                 return error;
2030         len = wreq.wi_len ? (wreq.wi_len - 1) * 2 : 0;
2031         switch (wreq.wi_type) {
2032         case WI_RID_DBM_ADJUST:
2033                 return ENODEV;
2034
2035         case WI_RID_NODENAME:
2036                 if (le16toh(wreq.wi_val[0]) * 2 > len ||
2037                     le16toh(wreq.wi_val[0]) > sizeof(sc->sc_nodename)) {
2038                         error = ENOSPC;
2039                         break;
2040                 }
2041                 if (sc->sc_enabled) {
2042                         error = wi_write_rid(sc, wreq.wi_type, wreq.wi_val,
2043                             len);
2044                         if (error)
2045                                 break;
2046                 }
2047                 sc->sc_nodelen = le16toh(wreq.wi_val[0]) * 2;
2048                 memcpy(sc->sc_nodename, &wreq.wi_val[1], sc->sc_nodelen);
2049                 break;
2050
2051         case WI_RID_MICROWAVE_OVEN:
2052         case WI_RID_ROAMING_MODE:
2053         case WI_RID_SYSTEM_SCALE:
2054         case WI_RID_FRAG_THRESH:
2055                 if (wreq.wi_type == WI_RID_MICROWAVE_OVEN &&
2056                     (sc->sc_flags & WI_FLAGS_HAS_MOR) == 0)
2057                         break;
2058                 if (wreq.wi_type == WI_RID_ROAMING_MODE &&
2059                     (sc->sc_flags & WI_FLAGS_HAS_ROAMING) == 0)
2060                         break;
2061                 if (wreq.wi_type == WI_RID_SYSTEM_SCALE &&
2062                     (sc->sc_flags & WI_FLAGS_HAS_SYSSCALE) == 0)
2063                         break;
2064                 if (wreq.wi_type == WI_RID_FRAG_THRESH &&
2065                     (sc->sc_flags & WI_FLAGS_HAS_FRAGTHR) == 0)
2066                         break;
2067                 /* FALLTHROUGH */
2068         case WI_RID_RTS_THRESH:
2069         case WI_RID_CNFAUTHMODE:
2070         case WI_RID_MAX_DATALEN:
2071                 if (sc->sc_enabled) {
2072                         error = wi_write_rid(sc, wreq.wi_type, wreq.wi_val,
2073                             sizeof(u_int16_t));
2074                         if (error)
2075                                 break;
2076                 }
2077                 switch (wreq.wi_type) {
2078                 case WI_RID_FRAG_THRESH:
2079                         ic->ic_fragthreshold = le16toh(wreq.wi_val[0]);
2080                         break;
2081                 case WI_RID_RTS_THRESH:
2082                         ic->ic_rtsthreshold = le16toh(wreq.wi_val[0]);
2083                         break;
2084                 case WI_RID_MICROWAVE_OVEN:
2085                         sc->sc_microwave_oven = le16toh(wreq.wi_val[0]);
2086                         break;
2087                 case WI_RID_ROAMING_MODE:
2088                         sc->sc_roaming_mode = le16toh(wreq.wi_val[0]);
2089                         break;
2090                 case WI_RID_SYSTEM_SCALE:
2091                         sc->sc_system_scale = le16toh(wreq.wi_val[0]);
2092                         break;
2093                 case WI_RID_CNFAUTHMODE:
2094                         sc->sc_cnfauthmode = le16toh(wreq.wi_val[0]);
2095                         break;
2096                 case WI_RID_MAX_DATALEN:
2097                         sc->sc_max_datalen = le16toh(wreq.wi_val[0]);
2098                         break;
2099                 }
2100                 break;
2101
2102         case WI_RID_TX_RATE:
2103                 switch (le16toh(wreq.wi_val[0])) {
2104                 case 3:
2105                         ic->ic_fixed_rate = -1;
2106                         break;
2107                 default:
2108                         rs = &ic->ic_sup_rates[IEEE80211_MODE_11B];
2109                         for (i = 0; i < rs->rs_nrates; i++) {
2110                                 if ((rs->rs_rates[i] & IEEE80211_RATE_VAL)
2111                                     / 2 == le16toh(wreq.wi_val[0]))
2112                                         break;
2113                         }
2114                         if (i == rs->rs_nrates)
2115                                 return EINVAL;
2116                         ic->ic_fixed_rate = i;
2117                 }
2118                 if (sc->sc_enabled)
2119                         error = wi_write_txrate(sc);
2120                 break;
2121
2122         case WI_RID_SCAN_APS:
2123                 if (sc->sc_enabled && ic->ic_opmode != IEEE80211_M_HOSTAP)
2124                         error = wi_scan_ap(sc, 0x3fff, 0x000f);
2125                 break;
2126
2127         case WI_RID_SCAN_REQ:           /* compatibility interface */
2128                 if (sc->sc_enabled && ic->ic_opmode != IEEE80211_M_HOSTAP)
2129                         error = wi_scan_ap(sc, wreq.wi_val[0], wreq.wi_val[1]);
2130                 break;
2131
2132         case WI_RID_MGMT_XMIT:
2133                 if (!sc->sc_enabled) {
2134                         error = ENETDOWN;
2135                         break;
2136                 }
2137                 if (ic->ic_mgtq.ifq_len > 5) {
2138                         error = EAGAIN;
2139                         break;
2140                 }
2141                 /* XXX wi_len looks in u_int8_t, not in u_int16_t */
2142                 m = m_devget((char *)&wreq.wi_val, wreq.wi_len, 0, ifp, NULL);
2143                 if (m == NULL) {
2144                         error = ENOMEM;
2145                         break;
2146                 }
2147                 IF_ENQUEUE(&ic->ic_mgtq, m);
2148                 break;
2149
2150         case WI_RID_MIF:
2151                 mif = wreq.wi_val[0];
2152                 val = wreq.wi_val[1];
2153                 error = wi_cmd(sc, WI_CMD_WRITEMIF, mif, val, 0);
2154                 break;
2155
2156         case WI_RID_PROCFRAME:          /* ignore for compatibility */
2157                 break;
2158
2159         case WI_RID_OWN_SSID:
2160                 if (le16toh(wreq.wi_val[0]) * 2 > len ||
2161                     le16toh(wreq.wi_val[0]) > IEEE80211_NWID_LEN) {
2162                         error = ENOSPC;
2163                         break;
2164                 }
2165                 memset(ic->ic_des_essid, 0, IEEE80211_NWID_LEN);
2166                 ic->ic_des_esslen = le16toh(wreq.wi_val[0]) * 2;
2167                 memcpy(ic->ic_des_essid, &wreq.wi_val[1], ic->ic_des_esslen);
2168                 error = ENETRESET;
2169                 break;
2170
2171         default:
2172                 if (sc->sc_enabled) {
2173                         error = wi_write_rid(sc, wreq.wi_type, wreq.wi_val,
2174                             len);
2175                         if (error)
2176                                 break;
2177                 }
2178                 error = ieee80211_cfgset(ifp, cmd, data);
2179                 break;
2180         }
2181         return error;
2182 }
2183
2184 static int
2185 wi_write_txrate(struct wi_softc *sc)
2186 {
2187         struct ieee80211com *ic = &sc->sc_ic;
2188         int i;
2189         u_int16_t rate;
2190
2191         if (ic->ic_fixed_rate < 0)
2192                 rate = 0;       /* auto */
2193         else
2194                 rate = (ic->ic_sup_rates[IEEE80211_MODE_11B].rs_rates[ic->ic_fixed_rate] &
2195                     IEEE80211_RATE_VAL) / 2;
2196
2197         /* rate: 0, 1, 2, 5, 11 */
2198
2199         switch (sc->sc_firmware_type) {
2200         case WI_LUCENT:
2201                 switch (rate) {
2202                 case 0:                 /* auto == 11mbps auto */
2203                         rate = 3;
2204                         break;
2205                 /* case 1, 2 map to 1, 2*/
2206                 case 5:                 /* 5.5Mbps -> 4 */
2207                         rate = 4;
2208                         break;
2209                 case 11:                /* 11mbps -> 5 */
2210                         rate = 5;
2211                         break;
2212                 default:
2213                         break;
2214                 }
2215                 break;
2216         default:
2217                 /* Choose a bit according to this table.
2218                  *
2219                  * bit | data rate
2220                  * ----+-------------------
2221                  * 0   | 1Mbps
2222                  * 1   | 2Mbps
2223                  * 2   | 5.5Mbps
2224                  * 3   | 11Mbps
2225                  */
2226                 for (i = 8; i > 0; i >>= 1) {
2227                         if (rate >= i)
2228                                 break;
2229                 }
2230                 if (i == 0)
2231                         rate = 0xf;     /* auto */
2232                 else
2233                         rate = i;
2234                 break;
2235         }
2236         return wi_write_val(sc, WI_RID_TX_RATE, rate);
2237 }
2238
2239 static int
2240 wi_write_wep(struct wi_softc *sc)
2241 {
2242         struct ieee80211com *ic = &sc->sc_ic;
2243         int error = 0;
2244         int i, keylen;
2245         u_int16_t val;
2246         struct wi_key wkey[IEEE80211_WEP_NKID];
2247
2248         switch (sc->sc_firmware_type) {
2249         case WI_LUCENT:
2250                 val = (ic->ic_flags & IEEE80211_F_WEPON) ? 1 : 0;
2251                 error = wi_write_val(sc, WI_RID_ENCRYPTION, val);
2252                 if (error)
2253                         break;
2254                 error = wi_write_val(sc, WI_RID_TX_CRYPT_KEY, ic->ic_wep_txkey);
2255                 if (error)
2256                         break;
2257                 memset(wkey, 0, sizeof(wkey));
2258                 for (i = 0; i < IEEE80211_WEP_NKID; i++) {
2259                         keylen = ic->ic_nw_keys[i].wk_len;
2260                         wkey[i].wi_keylen = htole16(keylen);
2261                         memcpy(wkey[i].wi_keydat, ic->ic_nw_keys[i].wk_key,
2262                             keylen);
2263                 }
2264                 error = wi_write_rid(sc, WI_RID_DEFLT_CRYPT_KEYS,
2265                     wkey, sizeof(wkey));
2266                 break;
2267
2268         case WI_INTERSIL:
2269         case WI_SYMBOL:
2270                 if (ic->ic_flags & IEEE80211_F_WEPON) {
2271                         /*
2272                          * ONLY HWB3163 EVAL-CARD Firmware version
2273                          * less than 0.8 variant2
2274                          *
2275                          *   If promiscuous mode disable, Prism2 chip
2276                          *  does not work with WEP .
2277                          * It is under investigation for details.
2278                          * (ichiro@netbsd.org)
2279                          */
2280                         if (sc->sc_firmware_type == WI_INTERSIL &&
2281                             sc->sc_sta_firmware_ver < 802 ) {
2282                                 /* firm ver < 0.8 variant 2 */
2283                                 wi_write_val(sc, WI_RID_PROMISC, 1);
2284                         }
2285                         wi_write_val(sc, WI_RID_CNFAUTHMODE,
2286                             sc->sc_cnfauthmode);
2287                         val = PRIVACY_INVOKED | EXCLUDE_UNENCRYPTED;
2288                         /*
2289                          * Encryption firmware has a bug for HostAP mode.
2290                          */
2291                         if (sc->sc_firmware_type == WI_INTERSIL &&
2292                             ic->ic_opmode == IEEE80211_M_HOSTAP)
2293                                 val |= HOST_ENCRYPT;
2294                 } else {
2295                         wi_write_val(sc, WI_RID_CNFAUTHMODE,
2296                             IEEE80211_AUTH_OPEN);
2297                         val = HOST_ENCRYPT | HOST_DECRYPT;
2298                 }
2299                 error = wi_write_val(sc, WI_RID_P2_ENCRYPTION, val);
2300                 if (error)
2301                         break;
2302                 error = wi_write_val(sc, WI_RID_P2_TX_CRYPT_KEY,
2303                     ic->ic_wep_txkey);
2304                 if (error)
2305                         break;
2306                 /*
2307                  * It seems that the firmware accept 104bit key only if
2308                  * all the keys have 104bit length.  We get the length of
2309                  * the transmit key and use it for all other keys.
2310                  * Perhaps we should use software WEP for such situation.
2311                  */
2312                 keylen = ic->ic_nw_keys[ic->ic_wep_txkey].wk_len;
2313                 if (keylen > IEEE80211_WEP_KEYLEN)
2314                         keylen = 13;    /* 104bit keys */
2315                 else
2316                         keylen = IEEE80211_WEP_KEYLEN;
2317                 for (i = 0; i < IEEE80211_WEP_NKID; i++) {
2318                         error = wi_write_rid(sc, WI_RID_P2_CRYPT_KEY0 + i,
2319                             ic->ic_nw_keys[i].wk_key, keylen);
2320                         if (error)
2321                                 break;
2322                 }
2323                 break;
2324         }
2325         return error;
2326 }
2327
2328 static int
2329 wi_cmd(struct wi_softc *sc, int cmd, int val0, int val1, int val2)
2330 {
2331         int                     i, s = 0;
2332         static volatile int count  = 0;
2333         
2334         if (sc->wi_gone)
2335                 return (ENODEV);
2336
2337         if (count > 0)
2338                 panic("Hey partner, hold on there!");
2339         count++;
2340
2341         /* wait for the busy bit to clear */
2342         for (i = sc->wi_cmd_count; i > 0; i--) {        /* 500ms */
2343                 if (!(CSR_READ_2(sc, WI_COMMAND) & WI_CMD_BUSY))
2344                         break;
2345                 DELAY(1*1000);  /* 1ms */
2346         }
2347         if (i == 0) {
2348                 if_printf(&sc->sc_ic.ic_if, "wi_cmd: busy bit won't clear.\n" );
2349                 sc->wi_gone = 1;
2350                 count--;
2351                 return(ETIMEDOUT);
2352         }
2353
2354         CSR_WRITE_2(sc, WI_PARAM0, val0);
2355         CSR_WRITE_2(sc, WI_PARAM1, val1);
2356         CSR_WRITE_2(sc, WI_PARAM2, val2);
2357         CSR_WRITE_2(sc, WI_COMMAND, cmd);
2358
2359         if (cmd == WI_CMD_INI) {
2360                 /* XXX: should sleep here. */
2361                 DELAY(100*1000);                /* 100ms delay for init */
2362         }
2363         for (i = 0; i < WI_TIMEOUT; i++) {
2364                 /*
2365                  * Wait for 'command complete' bit to be
2366                  * set in the event status register.
2367                  */
2368                 s = CSR_READ_2(sc, WI_EVENT_STAT);
2369                 if (s & WI_EV_CMD) {
2370                         /* Ack the event and read result code. */
2371                         s = CSR_READ_2(sc, WI_STATUS);
2372                         CSR_WRITE_2(sc, WI_EVENT_ACK, WI_EV_CMD);
2373                         if (s & WI_STAT_CMD_RESULT) {
2374                                 count--;
2375                                 return(EIO);
2376                         }
2377                         break;
2378                 }
2379                 DELAY(WI_DELAY);
2380         }
2381
2382         count--;
2383         if (i == WI_TIMEOUT) {
2384                 if_printf(&sc->sc_ic.ic_if,
2385                     "timeout in wi_cmd 0x%04x; event status 0x%04x\n", cmd, s);
2386                 if (s == 0xffff)
2387                         sc->wi_gone = 1;
2388                 return(ETIMEDOUT);
2389         }
2390         return (0);
2391 }
2392
2393 static int
2394 wi_seek_bap(struct wi_softc *sc, int id, int off)
2395 {
2396         int i, status;
2397
2398         CSR_WRITE_2(sc, WI_SEL0, id);
2399         CSR_WRITE_2(sc, WI_OFF0, off);
2400
2401         for (i = 0; ; i++) {
2402                 status = CSR_READ_2(sc, WI_OFF0);
2403                 if ((status & WI_OFF_BUSY) == 0)
2404                         break;
2405                 if (i == WI_TIMEOUT) {
2406                         if_printf(&sc->sc_ic.ic_if,
2407                                   "timeout in wi_seek to %x/%x\n", id, off);
2408                         sc->sc_bap_off = WI_OFF_ERR;    /* invalidate */
2409                         if (status == 0xffff)
2410                                 sc->wi_gone = 1;
2411                         return ETIMEDOUT;
2412                 }
2413                 DELAY(1);
2414         }
2415         if (status & WI_OFF_ERR) {
2416                 if_printf(&sc->sc_ic.ic_if, "failed in wi_seek to %x/%x\n",
2417                           id, off);
2418                 sc->sc_bap_off = WI_OFF_ERR;    /* invalidate */
2419                 return EIO;
2420         }
2421         sc->sc_bap_id = id;
2422         sc->sc_bap_off = off;
2423         return 0;
2424 }
2425
2426 static int
2427 wi_read_bap(struct wi_softc *sc, int id, int off, void *buf, int buflen)
2428 {
2429         u_int16_t *ptr;
2430         int i, error, cnt;
2431
2432         if (buflen == 0)
2433                 return 0;
2434         if (id != sc->sc_bap_id || off != sc->sc_bap_off) {
2435                 if ((error = wi_seek_bap(sc, id, off)) != 0)
2436                         return error;
2437         }
2438         cnt = (buflen + 1) / 2;
2439         ptr = (u_int16_t *)buf;
2440         for (i = 0; i < cnt; i++)
2441                 *ptr++ = CSR_READ_2(sc, WI_DATA0);
2442         sc->sc_bap_off += cnt * 2;
2443         return 0;
2444 }
2445
2446 static int
2447 wi_write_bap(struct wi_softc *sc, int id, int off, void *buf, int buflen)
2448 {
2449         u_int16_t *ptr;
2450         int i, error, cnt;
2451
2452         if (buflen == 0)
2453                 return 0;
2454
2455 #ifdef WI_HERMES_AUTOINC_WAR
2456   again:
2457 #endif
2458         if (id != sc->sc_bap_id || off != sc->sc_bap_off) {
2459                 if ((error = wi_seek_bap(sc, id, off)) != 0)
2460                         return error;
2461         }
2462         cnt = (buflen + 1) / 2;
2463         ptr = (u_int16_t *)buf;
2464         for (i = 0; i < cnt; i++)
2465                 CSR_WRITE_2(sc, WI_DATA0, ptr[i]);
2466         sc->sc_bap_off += cnt * 2;
2467
2468 #ifdef WI_HERMES_AUTOINC_WAR
2469         /*
2470          * According to the comments in the HCF Light code, there is a bug
2471          * in the Hermes (or possibly in certain Hermes firmware revisions)
2472          * where the chip's internal autoincrement counter gets thrown off
2473          * during data writes:  the autoincrement is missed, causing one
2474          * data word to be overwritten and subsequent words to be written to
2475          * the wrong memory locations. The end result is that we could end
2476          * up transmitting bogus frames without realizing it. The workaround
2477          * for this is to write a couple of extra guard words after the end
2478          * of the transfer, then attempt to read then back. If we fail to
2479          * locate the guard words where we expect them, we preform the
2480          * transfer over again.
2481          */
2482         if ((sc->sc_flags & WI_FLAGS_BUG_AUTOINC) && (id & 0xf000) == 0) {
2483                 CSR_WRITE_2(sc, WI_DATA0, 0x1234);
2484                 CSR_WRITE_2(sc, WI_DATA0, 0x5678);
2485                 wi_seek_bap(sc, id, sc->sc_bap_off);
2486                 sc->sc_bap_off = WI_OFF_ERR;    /* invalidate */
2487                 if (CSR_READ_2(sc, WI_DATA0) != 0x1234 ||
2488                     CSR_READ_2(sc, WI_DATA0) != 0x5678) {
2489                         if_printf(&sc->sc_ic.ic_if,
2490                                   "detect auto increment bug, try again\n");
2491                         goto again;
2492                 }
2493         }
2494 #endif
2495         return 0;
2496 }
2497
2498 static int
2499 wi_mwrite_bap(struct wi_softc *sc, int id, int off, struct mbuf *m0, int totlen)
2500 {
2501         int error, len;
2502         struct mbuf *m;
2503
2504         for (m = m0; m != NULL && totlen > 0; m = m->m_next) {
2505                 if (m->m_len == 0)
2506                         continue;
2507
2508                 len = min(m->m_len, totlen);
2509
2510                 if (((u_long)m->m_data) % 2 != 0 || len % 2 != 0) {
2511                         m_copydata(m, 0, totlen, (caddr_t)&sc->sc_txbuf);
2512                         return wi_write_bap(sc, id, off, (caddr_t)&sc->sc_txbuf,
2513                             totlen);
2514                 }
2515
2516                 if ((error = wi_write_bap(sc, id, off, m->m_data, len)) != 0)
2517                         return error;
2518
2519                 off += m->m_len;
2520                 totlen -= len;
2521         }
2522         return 0;
2523 }
2524
2525 static int
2526 wi_alloc_fid(struct wi_softc *sc, int len, int *idp)
2527 {
2528         int i;
2529
2530         if (wi_cmd(sc, WI_CMD_ALLOC_MEM, len, 0, 0)) {
2531                 if_printf(&sc->sc_ic.ic_if,
2532                           "failed to allocate %d bytes on NIC\n", len);
2533                 return ENOMEM;
2534         }
2535
2536         for (i = 0; i < WI_TIMEOUT; i++) {
2537                 if (CSR_READ_2(sc, WI_EVENT_STAT) & WI_EV_ALLOC)
2538                         break;
2539                 if (i == WI_TIMEOUT) {
2540                         if_printf(&sc->sc_ic.ic_if, "timeout in alloc\n");
2541                         return ETIMEDOUT;
2542                 }
2543                 DELAY(1);
2544         }
2545         *idp = CSR_READ_2(sc, WI_ALLOC_FID);
2546         CSR_WRITE_2(sc, WI_EVENT_ACK, WI_EV_ALLOC);
2547         return 0;
2548 }
2549
2550 static int
2551 wi_read_rid(struct wi_softc *sc, int rid, void *buf, int *buflenp)
2552 {
2553         int error, len;
2554         u_int16_t ltbuf[2];
2555
2556         /* Tell the NIC to enter record read mode. */
2557         error = wi_cmd(sc, WI_CMD_ACCESS | WI_ACCESS_READ, rid, 0, 0);
2558         if (error)
2559                 return error;
2560
2561         error = wi_read_bap(sc, rid, 0, ltbuf, sizeof(ltbuf));
2562         if (error)
2563                 return error;
2564
2565         if (le16toh(ltbuf[1]) != rid) {
2566                 if_printf(&sc->sc_ic.ic_if,
2567                           "record read mismatch, rid=%x, got=%x\n",
2568                           rid, le16toh(ltbuf[1]));
2569                 return EIO;
2570         }
2571         len = (le16toh(ltbuf[0]) - 1) * 2;       /* already got rid */
2572         if (*buflenp < len) {
2573                 if_printf(&sc->sc_ic.ic_if, "record buffer is too small, "
2574                           "rid=%x, size=%d, len=%d\n", rid, *buflenp, len);
2575                 return ENOSPC;
2576         }
2577         *buflenp = len;
2578         return wi_read_bap(sc, rid, sizeof(ltbuf), buf, len);
2579 }
2580
2581 static int
2582 wi_write_rid(struct wi_softc *sc, int rid, void *buf, int buflen)
2583 {
2584         int error;
2585         u_int16_t ltbuf[2];
2586
2587         ltbuf[0] = htole16((buflen + 1) / 2 + 1);        /* includes rid */
2588         ltbuf[1] = htole16(rid);
2589
2590         error = wi_write_bap(sc, rid, 0, ltbuf, sizeof(ltbuf));
2591         if (error)
2592                 return error;
2593         error = wi_write_bap(sc, rid, sizeof(ltbuf), buf, buflen);
2594         if (error)
2595                 return error;
2596
2597         return wi_cmd(sc, WI_CMD_ACCESS | WI_ACCESS_WRITE, rid, 0, 0);
2598 }
2599
2600 static int
2601 wi_newstate(struct ieee80211com *ic, enum ieee80211_state nstate, int arg)
2602 {
2603         struct ifnet *ifp = &ic->ic_if;
2604         struct wi_softc *sc = ifp->if_softc;
2605         struct ieee80211_node *ni = ic->ic_bss;
2606         int buflen;
2607         u_int16_t val;
2608         struct wi_ssid ssid;
2609         u_int8_t old_bssid[IEEE80211_ADDR_LEN];
2610
2611         DPRINTF((ifp, "%s: %s -> %s\n", __func__,
2612                 ieee80211_state_name[ic->ic_state],
2613                 ieee80211_state_name[nstate]));
2614
2615         switch (nstate) {
2616         case IEEE80211_S_INIT:
2617                 ic->ic_flags &= ~IEEE80211_F_SIBSS;
2618                 sc->sc_flags &= ~WI_FLAGS_OUTRANGE;
2619                 return (*sc->sc_newstate)(ic, nstate, arg);
2620
2621         case IEEE80211_S_RUN:
2622                 sc->sc_flags &= ~WI_FLAGS_OUTRANGE;
2623                 buflen = IEEE80211_ADDR_LEN;
2624                 wi_read_rid(sc, WI_RID_CURRENT_BSSID, ni->ni_bssid, &buflen);
2625                 IEEE80211_ADDR_COPY(ni->ni_macaddr, ni->ni_bssid);
2626                 buflen = sizeof(val);
2627                 wi_read_rid(sc, WI_RID_CURRENT_CHAN, &val, &buflen);
2628                 /* XXX validate channel */
2629                 ni->ni_chan = &ic->ic_channels[le16toh(val)];
2630                 sc->sc_tx_th.wt_chan_freq = sc->sc_rx_th.wr_chan_freq =
2631                         htole16(ni->ni_chan->ic_freq);
2632                 sc->sc_tx_th.wt_chan_flags = sc->sc_rx_th.wr_chan_flags =
2633                         htole16(ni->ni_chan->ic_flags);
2634
2635                 if (IEEE80211_ADDR_EQ(old_bssid, ni->ni_bssid))
2636                         sc->sc_false_syns++;
2637                 else
2638                         sc->sc_false_syns = 0;
2639
2640                 if (ic->ic_opmode == IEEE80211_M_HOSTAP) {
2641                         ni->ni_esslen = ic->ic_des_esslen;
2642                         memcpy(ni->ni_essid, ic->ic_des_essid, ni->ni_esslen);
2643                         ni->ni_rates = ic->ic_sup_rates[IEEE80211_MODE_11B];
2644                         ni->ni_intval = ic->ic_lintval;
2645                         ni->ni_capinfo = IEEE80211_CAPINFO_ESS;
2646                         if (ic->ic_flags & IEEE80211_F_WEPON)
2647                                 ni->ni_capinfo |= IEEE80211_CAPINFO_PRIVACY;
2648                 } else {
2649                         /* XXX check return value */
2650                         buflen = sizeof(ssid);
2651                         wi_read_rid(sc, WI_RID_CURRENT_SSID, &ssid, &buflen);
2652                         ni->ni_esslen = le16toh(ssid.wi_len);
2653                         if (ni->ni_esslen > IEEE80211_NWID_LEN)
2654                                 ni->ni_esslen = IEEE80211_NWID_LEN;     /*XXX*/
2655                         memcpy(ni->ni_essid, ssid.wi_ssid, ni->ni_esslen);
2656                 }
2657                 break;
2658
2659         case IEEE80211_S_SCAN:
2660         case IEEE80211_S_AUTH:
2661         case IEEE80211_S_ASSOC:
2662                 break;
2663         }
2664
2665         ic->ic_state = nstate;          /* NB: skip normal ieee80211 handling */
2666         return 0;
2667 }
2668
2669 static int
2670 wi_scan_ap(struct wi_softc *sc, u_int16_t chanmask, u_int16_t txrate)
2671 {
2672         int error = 0;
2673         u_int16_t val[2];
2674
2675         if (!sc->sc_enabled)
2676                 return ENXIO;
2677         switch (sc->sc_firmware_type) {
2678         case WI_LUCENT:
2679                 (void)wi_cmd(sc, WI_CMD_INQUIRE, WI_INFO_SCAN_RESULTS, 0, 0);
2680                 break;
2681         case WI_INTERSIL:
2682                 val[0] = chanmask;      /* channel */
2683                 val[1] = txrate;        /* tx rate */
2684                 error = wi_write_rid(sc, WI_RID_SCAN_REQ, val, sizeof(val));
2685                 break;
2686         case WI_SYMBOL:
2687                 /*
2688                  * XXX only supported on 3.x ?
2689                  */
2690                 val[0] = BSCAN_BCAST | BSCAN_ONETIME;
2691                 error = wi_write_rid(sc, WI_RID_BCAST_SCAN_REQ,
2692                     val, sizeof(val[0]));
2693                 break;
2694         }
2695         if (error == 0) {
2696                 sc->sc_scan_timer = WI_SCAN_WAIT;
2697                 sc->sc_ic.ic_if.if_timer = 1;
2698                 DPRINTF((&sc->sc_ic.ic_if, "wi_scan_ap: start scanning, "
2699                         "chamask 0x%x txrate 0x%x\n", chanmask, txrate));
2700         }
2701         return error;
2702 }
2703
2704 static void
2705 wi_scan_result(struct wi_softc *sc, int fid, int cnt)
2706 {
2707 #define N(a)    (sizeof (a) / sizeof (a[0]))
2708         int i, naps, off, szbuf;
2709         struct wi_scan_header ws_hdr;   /* Prism2 header */
2710         struct wi_scan_data_p2 ws_dat;  /* Prism2 scantable*/
2711         struct wi_apinfo *ap;
2712
2713         off = sizeof(u_int16_t) * 2;
2714         memset(&ws_hdr, 0, sizeof(ws_hdr));
2715         switch (sc->sc_firmware_type) {
2716         case WI_INTERSIL:
2717                 wi_read_bap(sc, fid, off, &ws_hdr, sizeof(ws_hdr));
2718                 off += sizeof(ws_hdr);
2719                 szbuf = sizeof(struct wi_scan_data_p2);
2720                 break;
2721         case WI_SYMBOL:
2722                 szbuf = sizeof(struct wi_scan_data_p2) + 6;
2723                 break;
2724         case WI_LUCENT:
2725                 szbuf = sizeof(struct wi_scan_data);
2726                 break;
2727         default:
2728                 if_printf(&sc->sc_ic.ic_if,
2729                           "wi_scan_result: unknown firmware type %u\n",
2730                           sc->sc_firmware_type);
2731                 naps = 0;
2732                 goto done;
2733         }
2734         naps = (cnt * 2 + 2 - off) / szbuf;
2735         if (naps > N(sc->sc_aps))
2736                 naps = N(sc->sc_aps);
2737         sc->sc_naps = naps;
2738         /* Read Data */
2739         ap = sc->sc_aps;
2740         memset(&ws_dat, 0, sizeof(ws_dat));
2741         for (i = 0; i < naps; i++, ap++) {
2742                 wi_read_bap(sc, fid, off, &ws_dat,
2743                     (sizeof(ws_dat) < szbuf ? sizeof(ws_dat) : szbuf));
2744                 DPRINTF2((&sc->sc_ic.ic_if,
2745                           "wi_scan_result: #%d: off %d bssid %6D\n",
2746                           i, off, ws_dat.wi_bssid, ":"));
2747                 off += szbuf;
2748                 ap->scanreason = le16toh(ws_hdr.wi_reason);
2749                 memcpy(ap->bssid, ws_dat.wi_bssid, sizeof(ap->bssid));
2750                 ap->channel = le16toh(ws_dat.wi_chid);
2751                 ap->signal  = le16toh(ws_dat.wi_signal);
2752                 ap->noise   = le16toh(ws_dat.wi_noise);
2753                 ap->quality = ap->signal - ap->noise;
2754                 ap->capinfo = le16toh(ws_dat.wi_capinfo);
2755                 ap->interval = le16toh(ws_dat.wi_interval);
2756                 ap->rate    = le16toh(ws_dat.wi_rate);
2757                 ap->namelen = le16toh(ws_dat.wi_namelen);
2758                 if (ap->namelen > sizeof(ap->name))
2759                         ap->namelen = sizeof(ap->name);
2760                 memcpy(ap->name, ws_dat.wi_name, ap->namelen);
2761         }
2762 done:
2763         /* Done scanning */
2764         sc->sc_scan_timer = 0;
2765         DPRINTF((&sc->sc_ic.ic_if, "wi_scan_result: scan complete: ap %d\n",
2766                  naps));
2767 #undef N
2768 }
2769
2770 static void
2771 wi_dump_pkt(struct wi_frame *wh, struct ieee80211_node *ni, int rssi)
2772 {
2773         ieee80211_dump_pkt((u_int8_t *) &wh->wi_whdr, sizeof(wh->wi_whdr),
2774             ni ? ni->ni_rates.rs_rates[ni->ni_txrate] & IEEE80211_RATE_VAL : -1, rssi);
2775         printf(" status 0x%x rx_tstamp1 %u rx_tstamp0 0x%u rx_silence %u\n",
2776                 le16toh(wh->wi_status), le16toh(wh->wi_rx_tstamp1),
2777                 le16toh(wh->wi_rx_tstamp0), wh->wi_rx_silence);
2778         printf(" rx_signal %u rx_rate %u rx_flow %u\n",
2779                 wh->wi_rx_signal, wh->wi_rx_rate, wh->wi_rx_flow);
2780         printf(" tx_rtry %u tx_rate %u tx_ctl 0x%x dat_len %u\n",
2781                 wh->wi_tx_rtry, wh->wi_tx_rate,
2782                 le16toh(wh->wi_tx_ctl), le16toh(wh->wi_dat_len));
2783         printf(" ehdr dst %6D src %6D type 0x%x\n",
2784                 wh->wi_ehdr.ether_dhost, ":", wh->wi_ehdr.ether_shost, ":",
2785                 wh->wi_ehdr.ether_type);
2786 }
2787
2788 int
2789 wi_alloc(device_t dev, int rid)
2790 {
2791         struct wi_softc *sc = device_get_softc(dev);
2792
2793         if (sc->wi_bus_type != WI_BUS_PCI_NATIVE) {
2794                 sc->iobase_rid = rid;
2795                 sc->iobase = bus_alloc_resource(dev, SYS_RES_IOPORT,
2796                     &sc->iobase_rid, 0, ~0, (1 << 6),
2797                     rman_make_alignment_flags(1 << 6) | RF_ACTIVE);
2798                 if (!sc->iobase) {
2799                         device_printf(dev, "No I/O space?!\n");
2800                         return (ENXIO);
2801                 }
2802
2803                 sc->wi_io_addr = rman_get_start(sc->iobase);
2804                 sc->wi_btag = rman_get_bustag(sc->iobase);
2805                 sc->wi_bhandle = rman_get_bushandle(sc->iobase);
2806         } else {
2807                 sc->mem_rid = rid;
2808                 sc->mem = bus_alloc_resource_any(dev, SYS_RES_MEMORY,
2809                     &sc->mem_rid, RF_ACTIVE);
2810
2811                 if (!sc->mem) {
2812                         device_printf(dev, "No Mem space on prism2.5?\n");
2813                         return (ENXIO);
2814                 }
2815
2816                 sc->wi_btag = rman_get_bustag(sc->mem);
2817                 sc->wi_bhandle = rman_get_bushandle(sc->mem);
2818         }
2819
2820
2821         sc->irq_rid = 0;
2822         sc->irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &sc->irq_rid,
2823             RF_ACTIVE |
2824             ((sc->wi_bus_type == WI_BUS_PCCARD) ? 0 : RF_SHAREABLE));
2825
2826         if (!sc->irq) {
2827                 wi_free(dev);
2828                 device_printf(dev, "No irq?!\n");
2829                 return (ENXIO);
2830         }
2831
2832         return (0);
2833 }
2834
2835 void
2836 wi_free(device_t dev)
2837 {
2838         struct wi_softc *sc = device_get_softc(dev);
2839
2840         if (sc->iobase != NULL) {
2841                 bus_release_resource(dev, SYS_RES_IOPORT, sc->iobase_rid, sc->iobase);
2842                 sc->iobase = NULL;
2843         }
2844         if (sc->irq != NULL) {
2845                 bus_release_resource(dev, SYS_RES_IRQ, sc->irq_rid, sc->irq);
2846                 sc->irq = NULL;
2847         }
2848         if (sc->mem != NULL) {
2849                 bus_release_resource(dev, SYS_RES_MEMORY, sc->mem_rid, sc->mem);
2850                 sc->mem = NULL;
2851         }
2852 }
2853
2854 static int
2855 wi_get_debug(struct wi_softc *sc, struct wi_req *wreq)
2856 {
2857         int error = 0;
2858
2859         wreq->wi_len = 1;
2860
2861         switch (wreq->wi_type) {
2862         case WI_DEBUG_SLEEP:
2863                 wreq->wi_len++;
2864                 wreq->wi_val[0] = sc->wi_debug.wi_sleep;
2865                 break;
2866         case WI_DEBUG_DELAYSUPP:
2867                 wreq->wi_len++;
2868                 wreq->wi_val[0] = sc->wi_debug.wi_delaysupp;
2869                 break;
2870         case WI_DEBUG_TXSUPP:
2871                 wreq->wi_len++;
2872                 wreq->wi_val[0] = sc->wi_debug.wi_txsupp;
2873                 break;
2874         case WI_DEBUG_MONITOR:
2875                 wreq->wi_len++;
2876                 wreq->wi_val[0] = sc->wi_debug.wi_monitor;
2877                 break;
2878         case WI_DEBUG_LEDTEST:
2879                 wreq->wi_len += 3;
2880                 wreq->wi_val[0] = sc->wi_debug.wi_ledtest;
2881                 wreq->wi_val[1] = sc->wi_debug.wi_ledtest_param0;
2882                 wreq->wi_val[2] = sc->wi_debug.wi_ledtest_param1;
2883                 break;
2884         case WI_DEBUG_CONTTX:
2885                 wreq->wi_len += 2;
2886                 wreq->wi_val[0] = sc->wi_debug.wi_conttx;
2887                 wreq->wi_val[1] = sc->wi_debug.wi_conttx_param0;
2888                 break;
2889         case WI_DEBUG_CONTRX:
2890                 wreq->wi_len++;
2891                 wreq->wi_val[0] = sc->wi_debug.wi_contrx;
2892                 break;
2893         case WI_DEBUG_SIGSTATE:
2894                 wreq->wi_len += 2;
2895                 wreq->wi_val[0] = sc->wi_debug.wi_sigstate;
2896                 wreq->wi_val[1] = sc->wi_debug.wi_sigstate_param0;
2897                 break;
2898         case WI_DEBUG_CONFBITS:
2899                 wreq->wi_len += 2;
2900                 wreq->wi_val[0] = sc->wi_debug.wi_confbits;
2901                 wreq->wi_val[1] = sc->wi_debug.wi_confbits_param0;
2902                 break;
2903         default:
2904                 error = EIO;
2905                 break;
2906         }
2907
2908         return (error);
2909 }
2910
2911 static int
2912 wi_set_debug(struct wi_softc *sc, struct wi_req *wreq)
2913 {
2914         int error = 0;
2915         u_int16_t               cmd, param0 = 0, param1 = 0;
2916
2917         switch (wreq->wi_type) {
2918         case WI_DEBUG_RESET:
2919         case WI_DEBUG_INIT:
2920         case WI_DEBUG_CALENABLE:
2921                 break;
2922         case WI_DEBUG_SLEEP:
2923                 sc->wi_debug.wi_sleep = 1;
2924                 break;
2925         case WI_DEBUG_WAKE:
2926                 sc->wi_debug.wi_sleep = 0;
2927                 break;
2928         case WI_DEBUG_CHAN:
2929                 param0 = wreq->wi_val[0];
2930                 break;
2931         case WI_DEBUG_DELAYSUPP:
2932                 sc->wi_debug.wi_delaysupp = 1;
2933                 break;
2934         case WI_DEBUG_TXSUPP:
2935                 sc->wi_debug.wi_txsupp = 1;
2936                 break;
2937         case WI_DEBUG_MONITOR:
2938                 sc->wi_debug.wi_monitor = 1;
2939                 break;
2940         case WI_DEBUG_LEDTEST:
2941                 param0 = wreq->wi_val[0];
2942                 param1 = wreq->wi_val[1];
2943                 sc->wi_debug.wi_ledtest = 1;
2944                 sc->wi_debug.wi_ledtest_param0 = param0;
2945                 sc->wi_debug.wi_ledtest_param1 = param1;
2946                 break;
2947         case WI_DEBUG_CONTTX:
2948                 param0 = wreq->wi_val[0];
2949                 sc->wi_debug.wi_conttx = 1;
2950                 sc->wi_debug.wi_conttx_param0 = param0;
2951                 break;
2952         case WI_DEBUG_STOPTEST:
2953                 sc->wi_debug.wi_delaysupp = 0;
2954                 sc->wi_debug.wi_txsupp = 0;
2955                 sc->wi_debug.wi_monitor = 0;
2956                 sc->wi_debug.wi_ledtest = 0;
2957                 sc->wi_debug.wi_ledtest_param0 = 0;
2958                 sc->wi_debug.wi_ledtest_param1 = 0;
2959                 sc->wi_debug.wi_conttx = 0;
2960                 sc->wi_debug.wi_conttx_param0 = 0;
2961                 sc->wi_debug.wi_contrx = 0;
2962                 sc->wi_debug.wi_sigstate = 0;
2963                 sc->wi_debug.wi_sigstate_param0 = 0;
2964                 break;
2965         case WI_DEBUG_CONTRX:
2966                 sc->wi_debug.wi_contrx = 1;
2967                 break;
2968         case WI_DEBUG_SIGSTATE:
2969                 param0 = wreq->wi_val[0];
2970                 sc->wi_debug.wi_sigstate = 1;
2971                 sc->wi_debug.wi_sigstate_param0 = param0;
2972                 break;
2973         case WI_DEBUG_CONFBITS:
2974                 param0 = wreq->wi_val[0];
2975                 param1 = wreq->wi_val[1];
2976                 sc->wi_debug.wi_confbits = param0;
2977                 sc->wi_debug.wi_confbits_param0 = param1;
2978                 break;
2979         default:
2980                 error = EIO;
2981                 break;
2982         }
2983
2984         if (error)
2985                 return (error);
2986
2987         cmd = WI_CMD_DEBUG | (wreq->wi_type << 8);
2988         error = wi_cmd(sc, cmd, param0, param1, 0);
2989
2990         return (error);
2991 }
2992
2993 /*
2994  * Special routines to download firmware for Symbol CF card.
2995  * XXX: This should be modified generic into any PRISM-2 based card.
2996  */
2997
2998 #define WI_SBCF_PDIADDR         0x3100
2999
3000 /* unaligned load little endian */
3001 #define GETLE32(p)      ((p)[0] | ((p)[1]<<8) | ((p)[2]<<16) | ((p)[3]<<24))
3002 #define GETLE16(p)      ((p)[0] | ((p)[1]<<8))
3003
3004 int
3005 wi_symbol_load_firm(struct wi_softc *sc, const void *primsym, int primlen,
3006     const void *secsym, int seclen)
3007 {
3008         uint8_t ebuf[256];
3009         int i;
3010
3011         /* load primary code and run it */
3012         wi_symbol_set_hcr(sc, WI_HCR_EEHOLD);
3013         if (wi_symbol_write_firm(sc, primsym, primlen, NULL, 0))
3014                 return EIO;
3015         wi_symbol_set_hcr(sc, WI_HCR_RUN);
3016         for (i = 0; ; i++) {
3017                 if (i == 10)
3018                         return ETIMEDOUT;
3019                 tsleep(sc, 0, "wiinit", 1);
3020                 if (CSR_READ_2(sc, WI_CNTL) == WI_CNTL_AUX_ENA_STAT)
3021                         break;
3022                 /* write the magic key value to unlock aux port */
3023                 CSR_WRITE_2(sc, WI_PARAM0, WI_AUX_KEY0);
3024                 CSR_WRITE_2(sc, WI_PARAM1, WI_AUX_KEY1);
3025                 CSR_WRITE_2(sc, WI_PARAM2, WI_AUX_KEY2);
3026                 CSR_WRITE_2(sc, WI_CNTL, WI_CNTL_AUX_ENA_CNTL);
3027         }
3028
3029         /* issue read EEPROM command: XXX copied from wi_cmd() */
3030         CSR_WRITE_2(sc, WI_PARAM0, 0);
3031         CSR_WRITE_2(sc, WI_PARAM1, 0);
3032         CSR_WRITE_2(sc, WI_PARAM2, 0);
3033         CSR_WRITE_2(sc, WI_COMMAND, WI_CMD_READEE);
3034         for (i = 0; i < WI_TIMEOUT; i++) {
3035                 if (CSR_READ_2(sc, WI_EVENT_STAT) & WI_EV_CMD)
3036                         break;
3037                 DELAY(1);
3038         }
3039         CSR_WRITE_2(sc, WI_EVENT_ACK, WI_EV_CMD);
3040
3041         CSR_WRITE_2(sc, WI_AUX_PAGE, WI_SBCF_PDIADDR / WI_AUX_PGSZ);
3042         CSR_WRITE_2(sc, WI_AUX_OFFSET, WI_SBCF_PDIADDR % WI_AUX_PGSZ);
3043         CSR_READ_MULTI_STREAM_2(sc, WI_AUX_DATA,
3044             (uint16_t *)ebuf, sizeof(ebuf) / 2);
3045         if (GETLE16(ebuf) > sizeof(ebuf))
3046                 return EIO;
3047         if (wi_symbol_write_firm(sc, secsym, seclen, ebuf + 4, GETLE16(ebuf)))
3048                 return EIO;
3049         return 0;
3050 }
3051
3052 static int
3053 wi_symbol_write_firm(struct wi_softc *sc, const void *buf, int buflen,
3054     const void *ebuf, int ebuflen)
3055 {
3056         const uint8_t *p, *ep, *q, *eq;
3057         char *tp;
3058         uint32_t addr, id, eid;
3059         int i, len, elen, nblk, pdrlen;
3060
3061         /*
3062          * Parse the header of the firmware image.
3063          */
3064         p = buf;
3065         ep = p + buflen;
3066         while (p < ep && *p++ != ' ');  /* FILE: */
3067         while (p < ep && *p++ != ' ');  /* filename */
3068         while (p < ep && *p++ != ' ');  /* type of the firmware */
3069         nblk = strtoul(p, &tp, 10);
3070         p = tp;
3071         pdrlen = strtoul(p + 1, &tp, 10);
3072         p = tp;
3073         while (p < ep && *p++ != 0x1a); /* skip rest of header */
3074
3075         /*
3076          * Block records: address[4], length[2], data[length];
3077          */
3078         for (i = 0; i < nblk; i++) {
3079                 addr = GETLE32(p);      p += 4;
3080                 len  = GETLE16(p);      p += 2;
3081                 CSR_WRITE_2(sc, WI_AUX_PAGE, addr / WI_AUX_PGSZ);
3082                 CSR_WRITE_2(sc, WI_AUX_OFFSET, addr % WI_AUX_PGSZ);
3083                 CSR_WRITE_MULTI_STREAM_2(sc, WI_AUX_DATA,
3084                     (const uint16_t *)p, len / 2);
3085                 p += len;
3086         }
3087         
3088         /*
3089          * PDR: id[4], address[4], length[4];
3090          */
3091         for (i = 0; i < pdrlen; ) {
3092                 id   = GETLE32(p);      p += 4; i += 4;
3093                 addr = GETLE32(p);      p += 4; i += 4;
3094                 len  = GETLE32(p);      p += 4; i += 4;
3095                 /* replace PDR entry with the values from EEPROM, if any */
3096                 for (q = ebuf, eq = q + ebuflen; q < eq; q += elen * 2) {
3097                         elen = GETLE16(q);      q += 2;
3098                         eid  = GETLE16(q);      q += 2;
3099                         elen--;         /* elen includes eid */
3100                         if (eid == 0)
3101                                 break;
3102                         if (eid != id)
3103                                 continue;
3104                         CSR_WRITE_2(sc, WI_AUX_PAGE, addr / WI_AUX_PGSZ);
3105                         CSR_WRITE_2(sc, WI_AUX_OFFSET, addr % WI_AUX_PGSZ);
3106                         CSR_WRITE_MULTI_STREAM_2(sc, WI_AUX_DATA,
3107                             (const uint16_t *)q, len / 2);
3108                         break;
3109                 }
3110         }
3111         return 0;
3112 }
3113
3114 static int
3115 wi_symbol_set_hcr(struct wi_softc *sc, int mode)
3116 {
3117         uint16_t hcr;
3118
3119         CSR_WRITE_2(sc, WI_COR, WI_COR_RESET);
3120         tsleep(sc, 0, "wiinit", 1);
3121         hcr = CSR_READ_2(sc, WI_HCR);
3122         hcr = (hcr & WI_HCR_4WIRE) | (mode & ~WI_HCR_4WIRE);
3123         CSR_WRITE_2(sc, WI_HCR, hcr);
3124         tsleep(sc, 0, "wiinit", 1);
3125         CSR_WRITE_2(sc, WI_COR, WI_COR_IOMODE);
3126         tsleep(sc, 0, "wiinit", 1);
3127         return 0;
3128 }