Merge from vendor branch GCC:
[dragonfly.git] / sys / dev / netif / ray / if_ray.c
1 /*
2  * Copyright (C) 2000
3  * Dr. Duncan McLennan Barclay, dmlb@ragnet.demon.co.uk.
4  *
5  * 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. Neither the name of the author nor the names of any co-contributors
16  *    may be used to endorse or promote products derived from this software
17  *    without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY DUNCAN BARCLAY AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL DUNCAN BARCLAY OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  *
31  * $FreeBSD: src/sys/dev/ray/if_ray.c,v 1.47.2.4 2001/08/14 22:54:05 dmlb Exp $
32  * $DragonFly: src/sys/dev/netif/ray/Attic/if_ray.c,v 1.20 2005/05/27 15:36:10 joerg Exp $
33  *
34  */
35
36 /*      $NetBSD: if_ray.c,v 1.12 2000/02/07 09:36:27 augustss Exp $     */
37 /* 
38  * Copyright (c) 2000 Christian E. Hopps
39  * All rights reserved.
40  * 
41  * Redistribution and use in source and binary forms, with or without
42  * modification, are permitted provided that the following conditions
43  * are met:
44  * 1. Redistributions of source code must retain the above copyright
45  *    notice, this list of conditions and the following disclaimer.
46  * 2. Redistributions in binary form must reproduce the above copyright
47  *    notice, this list of conditions and the following disclaimer in the
48  *    documentation and/or other materials provided with the distribution.
49  * 3. Neither the name of the author nor the names of any co-contributors
50  *    may be used to endorse or promote products derived from this software
51  *    without specific prior written permission.
52  *
53  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
54  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
55  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
56  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
57  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
58  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
59  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
60  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
61  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
62  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
63  * SUCH DAMAGE.
64  */
65
66 /*
67  * Card configuration
68  * ==================
69  *
70  * This card is unusual in that it uses both common and attribute
71  * memory whilst working. It should use common memory and an IO port.
72  *
73  * The bus resource allocations need to work around the brain deadness
74  * of pccardd (where it reads the CIS for common memory, sets it all
75  * up and then throws it all away assuming the card is an ed
76  * driver...). Note that this could be dangerous (because it doesn't
77  * interact with pccardd) if you use other memory mapped cards in the
78  * same pccard slot as currently old mappings are not cleaned up very well
79  * by the bus_release_resource methods or pccardd.
80  *
81  * There is no support for running this driver on 4.0.
82  *
83  * Ad-hoc and infra-structure modes
84  * ================================
85  * 
86  * The driver supports ad-hoc mode for V4 firmware and infrastructure
87  * mode for V5 firmware. V5 firmware in ad-hoc mode is untested and should
88  * work.
89  *
90  * The Linux driver also seems to have the capability to act as an AP.
91  * I wonder what facilities the "AP" can provide within a driver? We can
92  * probably use the BRIDGE code to form an ESS but I don't think
93  * power saving etc. is easy.
94  *
95  *
96  * Packet framing/encapsulation/translation
97  * ========================================
98  * 
99  * Currently we support the Webgear encapsulation:
100  *      802.11  header <net/if_ieee80211.h>struct ieee80211_frame
101  *      802.3   header <net/ethernet.h>struct ether_header
102  *      IP/ARP  payload
103  *
104  * and RFC1042 encapsulation of IP datagrams (translation):
105  *      802.11  header <net/if_ieee80211.h>struct ieee80211_frame
106  *      802.2   LLC header
107  *      802.2   SNAP header
108  *      802.3   Ethertype
109  *      IP/ARP  payload
110  *
111  * Framing should be selected via if_media stuff or link types but
112  * is currently hardcoded to:
113  *      V4      encapsulation
114  *      V5      translation
115  *
116  *
117  * Authentication
118  * ==============
119  *
120  * 802.11 provides two authentication mechanisms. The first is a very
121  * simple host based mechanism (like xhost) called Open System and the
122  * second is a more complex challenge/response called Shared Key built
123  * ontop of WEP.
124  *
125  * This driver only supports Open System and does not implement any
126  * host based control lists. In otherwords authentication is always
127  * granted to hosts wanting to authenticate with this station. This is
128  * the only sensible behaviour as the Open System mechanism uses MAC
129  * addresses to identify hosts. Send me patches if you need it!
130  */
131
132 /*
133  * ***check all XXX_INFRA code - reassoc not done well at all!
134  * ***watchdog to catch screwed up removals?
135  * ***error handling of RAY_COM_RUNQ
136  * ***error handling of ECF command completions
137  * ***can't seem to create a n/w that Win95 wants to see.
138  * ***remove panic in ray_com_ecf by re-quing or timeout
139  * ***use new ioctl stuff - probably need to change RAY_COM_FCHKRUNNING things?
140  *      consider user doing:
141  *              ifconfig ray0 192.168.200.38 -bssid "freed"
142  *              ifconfig ray0 192.168.200.38 -bssid "fred"
143  *      here the second one would be missed in this code
144  * check that v5 needs timeouts on ecf commands
145  * write up driver structure in comments above
146  * UPDATE_PARAMS seems to return via an interrupt - maybe the timeout
147  *      is needed for wrong values?
148  * proper setting of mib_hop_seq_len with country code for v4 firmware
149  *      best done with raycontrol?
150  * countrycode setting is broken I think
151  *      userupdate should trap and do via startjoin etc.
152  * fragmentation when rx level drops?
153  * v5 might not need download
154  *      defaults are as documented apart from hop_seq_length
155  *      settings are sane for ad-hoc not infra
156  *
157  * driver state
158  *      most state is implied by the sequence of commands in the runq
159  *      but in fact any of the rx and tx path that uses variables
160  *      in the sc_c are potentially going to get screwed?
161  *
162  * infra mode stuff
163  *      proper handling of the basic rate set - see the manual
164  *      all ray_sj, ray_assoc sequencues need a "nicer" solution as we
165  *              remember association and authentication
166  *      need to consider WEP
167  *      acting as ap - should be able to get working from the manual
168  *      need to finish RAY_ECMD_REJOIN_DONE
169  *      finish authenitcation code, it doesn't handle errors/timeouts/
170  *      REJOIN etc.
171  *
172  * ray_nw_param
173  *      promisc in here too? - done
174  *      should be able to update the parameters before we download to the
175  *              device. This means we must attach a desired struct to the
176  *              runq entry and maybe have another big case statement to
177  *              move these desired into current when not running.
178  *              init must then use the current settings (pre-loaded
179  *              in attach now!) and pass to download. But we can't access
180  *              current nw params outside of the runq - ahhh
181  *      differeniate between parameters set in attach and init
182  *      sc_station_addr in here too (for changing mac address)
183  *      move desired into the command structure?
184  *      take downloaded MIB from a complete nw_param?
185  *      longer term need to attach a desired nw params to the runq entry
186  *
187  *
188  * RAY_COM_RUNQ errors
189  *
190  * if sleeping in ccs_alloc with eintr/erestart/enxio/enodev
191  *      erestart        try again from the top
192  *                      XXX do not malloc more comqs
193  *                      XXX ccs allocation hard
194  *      eintr           clean up and return
195  *      enxio           clean up and return - done in macro
196  *
197  * if sleeping in runq_arr itself with eintr/erestart/enxio/enodev
198  *      erestart        try again from the top
199  *                      XXX do not malloc more comqs
200  *                      XXX ccs allocation hard
201  *                      XXX reinsert comqs at head of list
202  *      eintr           clean up and return
203  *      enxio           clean up and return - done in macro
204  */
205
206 #define XXX             0
207 #define XXX_ACTING_AP   0
208 #define XXX_INFRA       0
209 #define RAY_DEBUG       (                               \
210                         /* RAY_DBG_AUTH         | */    \
211                         /* RAY_DBG_SUBR         | */    \
212                         /* RAY_DBG_BOOTPARAM    | */    \
213                         /* RAY_DBG_STARTJOIN    | */    \
214                         /* RAY_DBG_CCS          | */    \
215                         /* RAY_DBG_IOCTL        | */    \
216                         /* RAY_DBG_MBUF         | */    \
217                         /* RAY_DBG_RX           | */    \
218                         /* RAY_DBG_CM           | */    \
219                         /* RAY_DBG_COM          | */    \
220                         /* RAY_DBG_STOP         | */    \
221                         /* RAY_DBG_CTL          | */    \
222                         /* RAY_DBG_MGT          | */    \
223                         /* RAY_DBG_TX           | */    \
224                         /* RAY_DBG_DCOM         | */    \
225                         0                               \
226                         )
227
228 /*
229  * XXX build options - move to LINT
230  */
231 #define RAY_CM_RID              0       /* pccardd abuses windows 0 and 1 */
232 #define RAY_AM_RID              3       /* pccardd abuses windows 0 and 1 */
233 #define RAY_COM_TIMEOUT         (hz/2)  /* Timeout for CCS commands */
234 #define RAY_TX_TIMEOUT          (hz/2)  /* Timeout for rescheduling TX */
235 #define RAY_ECF_SPIN_DELAY      1000    /* Wait 1ms before checking ECF ready */
236 #define RAY_ECF_SPIN_TRIES      10      /* Wait this many times for ECF ready */
237 /*
238  * XXX build options - move to LINT
239  */
240
241 #ifndef RAY_DEBUG
242 #define RAY_DEBUG               0x0000
243 #endif /* RAY_DEBUG */
244
245 #include <sys/param.h>
246 #include <sys/systm.h>
247 #include <sys/malloc.h>
248 #include <sys/kernel.h>
249
250 #include <machine/bus.h>
251 #include <machine/resource.h>
252 #include <machine/clock.h>
253 #include <sys/bus.h>
254 #include <sys/rman.h>
255
256 #include <sys/mbuf.h>
257 #include <sys/socket.h>
258 #include <sys/sockio.h>
259
260 #include <net/bpf.h>
261 #include <net/ethernet.h>
262 #include <net/if.h>
263 #include <net/ifq_var.h>
264 #include <net/if_arp.h>
265 #include <net/if_dl.h>
266 #include <net/if_llc.h>
267
268 #include <netproto/802_11/ieee80211.h>
269 #include <netproto/802_11/ieee80211_ioctl.h>
270
271 #include <machine/limits.h>
272
273 #include <bus/pccard/pccardvar.h>
274 #include "card_if.h"
275
276 #include "if_rayreg.h"
277 #include "if_raymib.h"
278 #include "if_raydbg.h"
279 #include "if_rayvar.h"
280
281 /*
282  * Prototyping
283  */
284 static int      ray_attach              (device_t);
285 static int      ray_ccs_alloc           (struct ray_softc *sc, size_t *ccsp, char *wmesg);
286 static void     ray_ccs_fill            (struct ray_softc *sc, size_t ccs, u_int cmd);
287 static void     ray_ccs_free            (struct ray_softc *sc, size_t ccs);
288 static int      ray_ccs_tx              (struct ray_softc *sc, size_t *ccsp, size_t *bufpp);
289 static void     ray_com_ecf             (struct ray_softc *sc, struct ray_comq_entry *com);
290 static void     ray_com_ecf_done        (struct ray_softc *sc);
291 static void     ray_com_ecf_timo        (void *xsc);
292 static struct ray_comq_entry *
293                 ray_com_init            (struct ray_comq_entry *com, ray_comqfn_t function, int flags, char *mesg);
294 static struct ray_comq_entry *
295                 ray_com_malloc          (ray_comqfn_t function, int flags, char *mesg);
296 static void     ray_com_runq            (struct ray_softc *sc);
297 static int      ray_com_runq_add        (struct ray_softc *sc, struct ray_comq_entry *com[], int ncom, char *wmesg);
298 static void     ray_com_runq_done       (struct ray_softc *sc);
299 static int      ray_detach              (device_t);
300 static void     ray_init                (void *xsc);
301 static int      ray_init_user           (struct ray_softc *sc);
302 static void     ray_init_assoc          (struct ray_softc *sc, struct ray_comq_entry *com);
303 static void     ray_init_assoc_done     (struct ray_softc *sc, u_int8_t status, size_t ccs);
304 static void     ray_init_auth           (struct ray_softc *sc, struct ray_comq_entry *com);
305 static int      ray_init_auth_send      (struct ray_softc *sc, u_int8_t *dst, int sequence);
306 static void     ray_init_auth_done      (struct ray_softc *sc, u_int8_t status);
307 static void     ray_init_download       (struct ray_softc *sc, struct ray_comq_entry *com);
308 static void     ray_init_download_done  (struct ray_softc *sc, u_int8_t status, size_t ccs);
309 static void     ray_init_download_v4    (struct ray_softc *sc, struct ray_comq_entry *com);
310 static void     ray_init_download_v5    (struct ray_softc *sc, struct ray_comq_entry *com);
311 static void     ray_init_mcast          (struct ray_softc *sc, struct ray_comq_entry *com);
312 static void     ray_init_sj             (struct ray_softc *sc, struct ray_comq_entry *com);
313 static void     ray_init_sj_done        (struct ray_softc *sc, u_int8_t status, size_t ccs);
314 static void     ray_intr                (void *xsc);
315 static void     ray_intr_ccs            (struct ray_softc *sc, u_int8_t cmd, u_int8_t status, size_t ccs);
316 static void     ray_intr_rcs            (struct ray_softc *sc, u_int8_t cmd, size_t ccs);
317 static void     ray_intr_updt_errcntrs  (struct ray_softc *sc);
318 static int      ray_ioctl               (struct ifnet *ifp, u_long command, caddr_t data, struct ucred *cr);
319 static void     ray_mcast               (struct ray_softc *sc, struct ray_comq_entry *com); 
320 static void     ray_mcast_done          (struct ray_softc *sc, u_int8_t status, size_t ccs); 
321 static int      ray_mcast_user          (struct ray_softc *sc); 
322 static int      ray_probe               (device_t);
323 static void     ray_promisc             (struct ray_softc *sc, struct ray_comq_entry *com); 
324 static void     ray_repparams           (struct ray_softc *sc, struct ray_comq_entry *com);
325 static void     ray_repparams_done      (struct ray_softc *sc, u_int8_t status, size_t ccs);
326 static int      ray_repparams_user      (struct ray_softc *sc, struct ray_param_req *pr);
327 static int      ray_repstats_user       (struct ray_softc *sc, struct ray_stats_req *sr);
328 static int      ray_res_alloc_am        (struct ray_softc *sc);
329 static int      ray_res_alloc_cm        (struct ray_softc *sc);
330 static int      ray_res_alloc_irq       (struct ray_softc *sc);
331 static void     ray_res_release         (struct ray_softc *sc);
332 static void     ray_rx                  (struct ray_softc *sc, size_t rcs);
333 static void     ray_rx_ctl              (struct ray_softc *sc, struct mbuf *m0);
334 static void     ray_rx_data             (struct ray_softc *sc, struct mbuf *m0, u_int8_t siglev, u_int8_t antenna);
335 static void     ray_rx_mgt              (struct ray_softc *sc, struct mbuf *m0);
336 static void     ray_rx_mgt_auth         (struct ray_softc *sc, struct mbuf *m0);
337 static void     ray_rx_mgt_beacon       (struct ray_softc *sc, struct mbuf *m0);
338 static void     ray_rx_mgt_info         (struct ray_softc *sc, struct mbuf *m0, struct ieee80211_information *elements);
339 static void     ray_rx_update_cache     (struct ray_softc *sc, u_int8_t *src, u_int8_t siglev, u_int8_t antenna);
340 static void     ray_stop                (struct ray_softc *sc, struct ray_comq_entry *com);
341 static int      ray_stop_user           (struct ray_softc *sc);
342 static void     ray_tx                  (struct ifnet *ifp);
343 static void     ray_tx_done             (struct ray_softc *sc, u_int8_t status, size_t ccs);
344 static void     ray_tx_timo             (void *xsc);
345 static int      ray_tx_send             (struct ray_softc *sc, size_t ccs, int pktlen, u_int8_t *dst);
346 static size_t   ray_tx_wrhdr            (struct ray_softc *sc, size_t bufp, u_int8_t type, u_int8_t fc1, u_int8_t *addr1, u_int8_t *addr2, u_int8_t *addr3);
347 static void     ray_upparams            (struct ray_softc *sc, struct ray_comq_entry *com);
348 static void     ray_upparams_done       (struct ray_softc *sc, u_int8_t status, size_t ccs);
349 static int      ray_upparams_user       (struct ray_softc *sc, struct ray_param_req *pr);
350 static void     ray_watchdog            (struct ifnet *ifp);
351 static u_int8_t ray_tx_best_antenna     (struct ray_softc *sc, u_int8_t *dst);
352
353 #if RAY_DEBUG & RAY_DBG_COM
354 static void     ray_com_ecf_check       (struct ray_softc *sc, size_t ccs, char *mesg);
355 #endif /* RAY_DEBUG & RAY_DBG_COM */
356 #if RAY_DEBUG & RAY_DBG_MBUF
357 static void     ray_dump_mbuf           (struct ray_softc *sc, struct mbuf *m, char *s);
358 #endif /* RAY_DEBUG & RAY_DBG_MBUF */
359
360 /*
361  * PC-Card (PCMCIA) driver definition
362  */
363 static device_method_t ray_methods[] = {
364         /* Device interface */
365         DEVMETHOD(device_probe,         ray_probe),
366         DEVMETHOD(device_attach,        ray_attach),
367         DEVMETHOD(device_detach,        ray_detach),
368
369         { 0, 0 }
370 };
371
372 static driver_t ray_driver = {
373         "ray",
374         ray_methods,
375         sizeof(struct ray_softc)
376 };
377
378 static devclass_t ray_devclass;
379
380 DECLARE_DUMMY_MODULE(if_ray);
381 DRIVER_MODULE(if_ray, pccard, ray_driver, ray_devclass, 0, 0);
382
383 /* 
384  * Probe for the card by checking its startup results.
385  *
386  * Fixup any bugs/quirks for different firmware.
387  */
388 static int
389 ray_probe(device_t dev)
390 {
391         struct ray_softc *sc = device_get_softc(dev);
392         struct ray_ecf_startup_v5 *ep = &sc->sc_ecf_startup;
393         int error;
394
395         sc->dev = dev;
396         RAY_DPRINTF(sc, RAY_DBG_SUBR, "");
397
398         /*
399          * Read startup results from the card.
400          */
401         error = ray_res_alloc_cm(sc);
402         if (error)
403                 return (error);
404         error = ray_res_alloc_am(sc);
405         if (error) {
406                 ray_res_release(sc);
407                 return (error);
408         }
409         RAY_MAP_CM(sc);
410         SRAM_READ_REGION(sc, RAY_ECF_TO_HOST_BASE, ep,
411             sizeof(sc->sc_ecf_startup));
412         ray_res_release(sc);
413
414         /*
415          * Check the card is okay and work out what version we are using.
416          */
417         if (ep->e_status != RAY_ECFS_CARD_OK) {
418                 RAY_PRINTF(sc, "card failed self test 0x%b",
419                     ep->e_status, RAY_ECFS_PRINTFB);
420                 return (ENXIO);
421         }
422         if (sc->sc_version != RAY_ECFS_BUILD_4 &&
423             sc->sc_version != RAY_ECFS_BUILD_5) {
424                 RAY_PRINTF(sc, "unsupported firmware version 0x%0x",
425                     ep->e_fw_build_string);
426                 return (ENXIO);
427         }
428         RAY_DPRINTF(sc, RAY_DBG_BOOTPARAM, "found a card");
429         sc->sc_gone = 0;
430
431         /*
432          * Fixup tib size to be correct - on build 4 it is garbage
433          */
434         if (sc->sc_version == RAY_ECFS_BUILD_4 && sc->sc_tibsize == 0x55)
435                 sc->sc_tibsize = sizeof(struct ray_tx_tib);
436
437         return (0);
438 }
439
440 /*
441  * Attach the card into the kernel
442  */
443 static int
444 ray_attach(device_t dev)
445 {
446         struct ray_softc *sc = device_get_softc(dev);
447         struct ray_ecf_startup_v5 *ep = &sc->sc_ecf_startup;
448         struct ifnet *ifp = &sc->arpcom.ac_if;
449         size_t ccs;
450         int i, error;
451
452         RAY_DPRINTF(sc, RAY_DBG_SUBR, "");
453
454         if ((sc == NULL) || (sc->sc_gone))
455                 return (ENXIO);
456
457         /*
458          * Grab the resources I need
459          */
460         error = ray_res_alloc_cm(sc);
461         if (error)
462                 return (error);
463         error = ray_res_alloc_am(sc);
464         if (error) {
465                 ray_res_release(sc);
466                 return (error);
467         }
468         error = ray_res_alloc_irq(sc);
469         if (error) {
470                 ray_res_release(sc);
471                 return (error);
472         }
473
474         /*
475          * Reset any pending interrupts
476          */
477         RAY_HCS_CLEAR_INTR(sc);
478
479         /*
480          * Set the parameters that will survive stop/init and
481          * reset a few things on the card.
482          *
483          * Do not update these in ray_init_download's parameter setup
484          *
485          * XXX see the ray_init_download section for stuff to move
486          */
487         RAY_MAP_CM(sc);
488         bzero(&sc->sc_d, sizeof(struct ray_nw_param));
489         bzero(&sc->sc_c, sizeof(struct ray_nw_param));
490
491         /* Clear statistics counters */
492         sc->sc_rxoverflow = 0;
493         sc->sc_rxcksum = 0;
494         sc->sc_rxhcksum = 0;
495         sc->sc_rxnoise = 0;
496
497         /* Clear signal and antenna cache */
498         bzero(sc->sc_siglevs, sizeof(sc->sc_siglevs));
499
500         /* Set all ccs to be free */
501         bzero(sc->sc_ccsinuse, sizeof(sc->sc_ccsinuse));
502         ccs = RAY_CCS_ADDRESS(0);
503         for (i = 0; i < RAY_CCS_LAST; ccs += RAY_CCS_SIZE, i++)
504                 RAY_CCS_FREE(sc, ccs);
505
506         /*
507          * Initialise the network interface structure
508          */
509         if_initname(ifp, "ray", device_get_unit(dev));
510         ifp->if_softc = sc;
511         ifp->if_timer = 0;
512         ifp->if_flags = (IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST);
513         ifp->if_hdrlen = sizeof(struct ieee80211_frame) + 
514             sizeof(struct ether_header);
515         ifp->if_baudrate = 1000000; /* Is this baud or bps ;-) */
516         ifp->if_start = ray_tx;
517         ifp->if_ioctl = ray_ioctl;
518         ifp->if_watchdog = ray_watchdog;
519         ifp->if_init = ray_init;
520         ifq_set_maxlen(&ifp->if_snd, IFQ_MAXLEN);
521         ifq_set_ready(&ifp->if_snd);
522
523         /*
524          * Initialise the timers and driver
525          */
526         callout_init(&sc->com_timer);
527         callout_init(&sc->tx_timer);
528         TAILQ_INIT(&sc->sc_comq);
529
530         ether_ifattach(ifp, ep->e_station_addr);
531
532         /*
533          * Print out some useful information
534          */
535         if (bootverbose || (RAY_DEBUG & RAY_DBG_BOOTPARAM)) {
536                 RAY_PRINTF(sc, "start up results");
537                 if (sc->sc_version == RAY_ECFS_BUILD_4)
538                         printf(".  Firmware version 4\n");
539                 else
540                         printf(".  Firmware version 5\n");
541                 printf(".  Status 0x%b\n", ep->e_status, RAY_ECFS_PRINTFB);
542                 if (sc->sc_version == RAY_ECFS_BUILD_4) {
543                         printf(".  Program checksum %0x\n", ep->e_resv0);
544                         printf(".  CIS checksum %0x\n", ep->e_rates[0]);
545                 } else {
546                         printf(".  (reserved word) %0x\n", ep->e_resv0);
547                         printf(".  Supported rates %8D\n", ep->e_rates, ":");
548                 }
549                 printf(".  Japan call sign %12D\n", ep->e_japan_callsign, ":");
550                 if (sc->sc_version == RAY_ECFS_BUILD_5) {
551                         printf(".  Program checksum %0x\n", ep->e_prg_cksum);
552                         printf(".  CIS checksum %0x\n", ep->e_cis_cksum);
553                         printf(".  Firmware version %0x\n",
554                             ep->e_fw_build_string);
555                         printf(".  Firmware revision %0x\n", ep->e_fw_build);
556                         printf(".  (reserved word) %0x\n", ep->e_fw_resv);
557                         printf(".  ASIC version %0x\n", ep->e_asic_version);
558                         printf(".  TIB size %0x\n", ep->e_tibsize);
559                 }
560         }
561
562         return (0);
563 }
564
565 /*
566  * Detach the card
567  *
568  * This is usually called when the card is ejected, but
569  * can be caused by a modunload of a controller driver.
570  * The idea is to reset the driver's view of the device
571  * and ensure that any driver entry points such as
572  * read and write do not hang.
573  */
574 static int
575 ray_detach(device_t dev)
576 {
577         struct ray_softc *sc = device_get_softc(dev);
578         struct ifnet *ifp = &sc->arpcom.ac_if;
579         struct ray_comq_entry *com;
580         int s;
581
582         s = splimp();
583
584         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_STOP, "");
585
586         if ((sc == NULL) || (sc->sc_gone))
587                 return (0);
588
589         /*
590          * Mark as not running and detach the interface.
591          *
592          * N.B. if_detach can trigger ioctls so we do it first and
593          * then clean the runq.
594          */
595         sc->sc_gone = 1;
596         sc->sc_c.np_havenet = 0;
597         ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
598         ether_ifdetach(ifp);
599
600         /*
601          * Stop the runq and wake up anyone sleeping for us.
602          */
603         callout_stop(&sc->com_timer);
604         callout_stop(&sc->tx_timer);
605         com = TAILQ_FIRST(&sc->sc_comq);
606         for (com = TAILQ_FIRST(&sc->sc_comq); com != NULL;
607             com = TAILQ_NEXT(com, c_chain)) {
608                 com->c_flags |= RAY_COM_FDETACHED;
609                 com->c_retval = 0;
610                 RAY_DPRINTF(sc, RAY_DBG_STOP, "looking at com %p %b",
611                     com, com->c_flags, RAY_COM_FLAGS_PRINTFB);
612                 if (com->c_flags & RAY_COM_FWOK) {
613                         RAY_DPRINTF(sc, RAY_DBG_STOP, "waking com %p", com);
614                         wakeup(com->c_wakeup);
615                 }
616         }
617         
618         /*
619          * Release resources
620          */
621         ray_res_release(sc);
622         RAY_DPRINTF(sc, RAY_DBG_STOP, "unloading complete");
623
624         splx(s);
625
626         return (0);
627 }
628
629 /*
630  * Network ioctl request.
631  */
632 static int
633 ray_ioctl(register struct ifnet *ifp, u_long command, caddr_t data,
634     struct ucred *cr)
635 {
636         struct ray_softc *sc = ifp->if_softc;
637         struct ray_param_req pr;
638         struct ray_stats_req sr;
639         struct ifreq *ifr = (struct ifreq *)data;
640         int s, error, error2;
641
642         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_IOCTL, "");
643
644         if ((sc == NULL) || (sc->sc_gone))
645                 return (ENXIO);
646
647         error = error2 = 0;
648         s = splimp();
649
650         switch (command) {
651         case SIOCSIFFLAGS:
652                 RAY_DPRINTF(sc, RAY_DBG_IOCTL, "SIFFLAGS 0x%0x", ifp->if_flags);
653                 /*
654                  * If the interface is marked up we call ray_init_user.
655                  * This will deal with mcast and promisc flags as well as
656                  * initialising the hardware if it needs it.
657                  */
658                 if (ifp->if_flags & IFF_UP)
659                         error = ray_init_user(sc);
660                 else
661                         error = ray_stop_user(sc);
662                 break;
663
664         case SIOCADDMULTI:
665         case SIOCDELMULTI:
666                 RAY_DPRINTF(sc, RAY_DBG_IOCTL, "ADDMULTI/DELMULTI");
667                 error = ray_mcast_user(sc);
668                 break;
669
670         case SIOCSRAYPARAM:
671                 RAY_DPRINTF(sc, RAY_DBG_IOCTL, "SRAYPARAM");
672                 if ((error = copyin(ifr->ifr_data, &pr, sizeof(pr))))
673                         break;
674                 error = ray_upparams_user(sc, &pr);
675                 error2 = copyout(&pr, ifr->ifr_data, sizeof(pr));
676                 error = error2 ? error2 : error;
677                 break;
678
679         case SIOCGRAYPARAM:
680                 RAY_DPRINTF(sc, RAY_DBG_IOCTL, "GRAYPARAM");
681                 if ((error = copyin(ifr->ifr_data, &pr, sizeof(pr))))
682                         break;
683                 error = ray_repparams_user(sc, &pr);
684                 error2 = copyout(&pr, ifr->ifr_data, sizeof(pr));
685                 error = error2 ? error2 : error;
686                 break;
687
688         case SIOCGRAYSTATS:
689                 RAY_DPRINTF(sc, RAY_DBG_IOCTL, "GRAYSTATS");
690                 error = ray_repstats_user(sc, &sr);
691                 error2 = copyout(&sr, ifr->ifr_data, sizeof(sr));
692                 error = error2 ? error2 : error;
693                 break;
694
695         case SIOCGRAYSIGLEV:
696                 RAY_DPRINTF(sc, RAY_DBG_IOCTL, "GRAYSIGLEV");
697                 error = copyout(sc->sc_siglevs, ifr->ifr_data,
698                     sizeof(sc->sc_siglevs));
699                 break;
700
701         case SIOCGIFFLAGS:
702                 RAY_DPRINTF(sc, RAY_DBG_IOCTL, "GIFFLAGS");
703                 error = EINVAL;
704                 break;
705
706         case SIOCGIFMETRIC:
707                 RAY_DPRINTF(sc, RAY_DBG_IOCTL, "GIFMETRIC");
708                 error = EINVAL;
709                 break;
710
711         case SIOCGIFMTU:
712                 RAY_DPRINTF(sc, RAY_DBG_IOCTL, "GIFMTU");
713                 error = EINVAL;
714                 break;
715
716         case SIOCGIFPHYS:
717                 RAY_DPRINTF(sc, RAY_DBG_IOCTL, "GIFPYHS");
718                 error = EINVAL;
719                 break;
720
721         case SIOCSIFMEDIA:
722                 RAY_DPRINTF(sc, RAY_DBG_IOCTL, "SIFMEDIA");
723                 error = EINVAL;
724                 break;
725
726         case SIOCGIFMEDIA:
727                 RAY_DPRINTF(sc, RAY_DBG_IOCTL, "GIFMEDIA");
728                 error = EINVAL;
729                 break;
730
731         default:
732                 error = ether_ioctl(ifp, command, data);
733                 break;
734         }
735
736         splx(s);
737
738         return (error);
739 }
740
741 /*
742  * Ethernet layer entry to ray_init - discard errors
743  */
744 static void
745 ray_init(void *xsc)
746 {
747         struct ray_softc *sc = (struct ray_softc *)xsc;
748
749         ray_init_user(sc);
750 }
751
752 /*
753  * User land entry to network initialisation and changes in interface flags.
754  * 
755  * We do a very little work here, just creating runq entries to
756  * processes the actions needed to cope with interface flags. We do it
757  * this way in case there are runq entries outstanding from earlier
758  * ioctls that modify the interface flags.
759  *
760  * Returns values are either 0 for success, a varity of resource allocation
761  * failures or errors in the command sent to the card.
762  *
763  * Note, IFF_RUNNING is eventually set by init_sj_done or init_assoc_done
764  */
765 static int
766 ray_init_user(struct ray_softc *sc)
767 {
768         struct ray_comq_entry *com[6];
769         int error, ncom;
770
771         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_STARTJOIN, "");
772
773         /*
774          * Create the following runq entries to bring the card up.
775          *
776          *              init_download   - download the network to the card
777          *              init_mcast      - reset multicast list
778          *              init_sj         - find or start a BSS
779          *              init_auth       - authenticate with a ESSID if needed
780          *              init_assoc      - associate with a ESSID if needed
781          *
782          * They are only actually executed if the card is not running.
783          * We may enter this routine from a simple change of IP
784          * address and do not need to get the card to do these things.
785          * However, we cannot perform the check here as there may be
786          * commands in the runq that change the IFF_RUNNING state of
787          * the interface.
788          */
789         ncom = 0;
790         com[ncom++] = RAY_COM_MALLOC(ray_init_download, RAY_COM_FCHKRUNNING);
791         com[ncom++] = RAY_COM_MALLOC(ray_init_mcast, RAY_COM_FCHKRUNNING);
792         com[ncom++] = RAY_COM_MALLOC(ray_init_sj, RAY_COM_FCHKRUNNING);
793         com[ncom++] = RAY_COM_MALLOC(ray_init_auth, RAY_COM_FCHKRUNNING);
794         com[ncom++] = RAY_COM_MALLOC(ray_init_assoc, RAY_COM_FCHKRUNNING);
795
796         /*
797          * Create runq entries to process flags
798          *
799          *              promisc         - set/reset PROMISC and ALLMULTI flags
800          *
801          * They are only actually executed if the card is running
802          */
803         com[ncom++] = RAY_COM_MALLOC(ray_promisc, 0);
804
805         RAY_COM_RUNQ(sc, com, ncom, "rayinit", error);
806
807         /* XXX no real error processing from anything yet! */
808
809         RAY_COM_FREE(com, ncom);
810
811         return (error);
812 }
813
814 /*
815  * Runq entry for resetting driver and downloading start up structures to card
816  */
817 static void
818 ray_init_download(struct ray_softc *sc, struct ray_comq_entry *com)
819 {
820         struct ifnet *ifp = &sc->arpcom.ac_if;
821
822         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_STARTJOIN, "");
823
824         /* If the card already running we might not need to download */
825         RAY_COM_CHKRUNNING(sc, com, ifp);
826
827         /*
828          * Reset instance variables
829          *
830          * The first set are network parameters that are read back when
831          * the card starts or joins the network.
832          *
833          * The second set are network parameters that are downloaded to
834          * the card.
835          *
836          * The third set are driver parameters.
837          *
838          * All of the variables in these sets can be updated by the
839          * card or ioctls.
840          *
841          * XXX see the ray_attach section for stuff to move
842          */
843         sc->sc_d.np_upd_param = 0;
844         bzero(sc->sc_d.np_bss_id, ETHER_ADDR_LEN);
845         sc->sc_d.np_inited = 0;
846         sc->sc_d.np_def_txrate = RAY_MIB_BASIC_RATE_SET_DEFAULT;
847         sc->sc_d.np_encrypt = 0;
848
849         bzero(sc->sc_d.np_ssid, IEEE80211_NWID_LEN);
850         if (sc->sc_version == RAY_ECFS_BUILD_4) {
851                 sc->sc_d.np_net_type = RAY_MIB_NET_TYPE_V4;
852                 strncpy(sc->sc_d.np_ssid, RAY_MIB_SSID_V4, IEEE80211_NWID_LEN);
853                 sc->sc_d.np_ap_status = RAY_MIB_AP_STATUS_V4;
854                 sc->sc_d.np_framing = RAY_FRAMING_ENCAPSULATION;
855         } else {
856                 sc->sc_d.np_net_type = RAY_MIB_NET_TYPE_V5;
857                 strncpy(sc->sc_d.np_ssid, RAY_MIB_SSID_V5, IEEE80211_NWID_LEN);
858                 sc->sc_d.np_ap_status = RAY_MIB_AP_STATUS_V5;
859                 sc->sc_d.np_framing = RAY_FRAMING_TRANSLATION;
860         }
861         sc->sc_d.np_priv_start = RAY_MIB_PRIVACY_MUST_START_DEFAULT;
862         sc->sc_d.np_priv_join = RAY_MIB_PRIVACY_CAN_JOIN_DEFAULT;
863         sc->sc_d.np_promisc = !!(ifp->if_flags & (IFF_PROMISC | IFF_ALLMULTI));
864
865 /* XXX this is a hack whilst I transition the code. The instance
866  * XXX variables above should be set somewhere else. This is needed for
867  * XXX start_join */
868 bcopy(&sc->sc_d, &com->c_desired, sizeof(struct ray_nw_param));
869             
870         /*
871          * Download the right firmware defaults
872          */
873         if (sc->sc_version == RAY_ECFS_BUILD_4)
874                 ray_init_download_v4(sc, com);
875         else
876                 ray_init_download_v5(sc, com);
877
878         /*
879          * Kick the card
880          */
881         ray_ccs_fill(sc, com->c_ccs, RAY_CMD_DOWNLOAD_PARAMS);
882         ray_com_ecf(sc, com);
883 }
884
885 #define PUT2(p, v)      \
886     do { (p)[0] = ((v >> 8) & 0xff); (p)[1] = (v & 0xff); } while(0)
887 /*
888  * Firmware version 4 defaults - see if_raymib.h for details
889  */
890 static void
891 ray_init_download_v4(struct ray_softc *sc, struct ray_comq_entry *com)
892 {
893         struct ray_mib_4 ray_mib_4_default;
894
895         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_STARTJOIN, "");
896         RAY_MAP_CM(sc);
897
898 #define MIB4(m)         ray_mib_4_default.m
899
900         MIB4(mib_net_type)              = com->c_desired.np_net_type;
901         MIB4(mib_ap_status)             = com->c_desired.np_ap_status;
902         bcopy(com->c_desired.np_ssid, MIB4(mib_ssid), IEEE80211_NWID_LEN);
903         MIB4(mib_scan_mode)             = RAY_MIB_SCAN_MODE_V4;
904         MIB4(mib_apm_mode)              = RAY_MIB_APM_MODE_V4;
905         bcopy(sc->sc_station_addr, MIB4(mib_mac_addr), ETHER_ADDR_LEN);
906    PUT2(MIB4(mib_frag_thresh),            RAY_MIB_FRAG_THRESH_V4);
907    PUT2(MIB4(mib_dwell_time),             RAY_MIB_DWELL_TIME_V4);
908    PUT2(MIB4(mib_beacon_period),          RAY_MIB_BEACON_PERIOD_V4);
909         MIB4(mib_dtim_interval)         = RAY_MIB_DTIM_INTERVAL_V4;
910         MIB4(mib_max_retry)             = RAY_MIB_MAX_RETRY_V4;
911         MIB4(mib_ack_timo)              = RAY_MIB_ACK_TIMO_V4;
912         MIB4(mib_sifs)                  = RAY_MIB_SIFS_V4;
913         MIB4(mib_difs)                  = RAY_MIB_DIFS_V4;
914         MIB4(mib_pifs)                  = RAY_MIB_PIFS_V4;
915    PUT2(MIB4(mib_rts_thresh),             RAY_MIB_RTS_THRESH_V4);
916    PUT2(MIB4(mib_scan_dwell),             RAY_MIB_SCAN_DWELL_V4);
917    PUT2(MIB4(mib_scan_max_dwell),         RAY_MIB_SCAN_MAX_DWELL_V4);
918         MIB4(mib_assoc_timo)            = RAY_MIB_ASSOC_TIMO_V4;
919         MIB4(mib_adhoc_scan_cycle)      = RAY_MIB_ADHOC_SCAN_CYCLE_V4;
920         MIB4(mib_infra_scan_cycle)      = RAY_MIB_INFRA_SCAN_CYCLE_V4;
921         MIB4(mib_infra_super_scan_cycle)
922                                         = RAY_MIB_INFRA_SUPER_SCAN_CYCLE_V4;
923         MIB4(mib_promisc)               = com->c_desired.np_promisc;
924    PUT2(MIB4(mib_uniq_word),              RAY_MIB_UNIQ_WORD_V4);
925         MIB4(mib_slot_time)             = RAY_MIB_SLOT_TIME_V4;
926         MIB4(mib_roam_low_snr_thresh)   = RAY_MIB_ROAM_LOW_SNR_THRESH_V4;
927         MIB4(mib_low_snr_count)         = RAY_MIB_LOW_SNR_COUNT_V4;
928         MIB4(mib_infra_missed_beacon_count)
929                                         = RAY_MIB_INFRA_MISSED_BEACON_COUNT_V4;
930         MIB4(mib_adhoc_missed_beacon_count)     
931                                         = RAY_MIB_ADHOC_MISSED_BEACON_COUNT_V4;
932         MIB4(mib_country_code)          = RAY_MIB_COUNTRY_CODE_V4;
933         MIB4(mib_hop_seq)               = RAY_MIB_HOP_SEQ_V4;
934         MIB4(mib_hop_seq_len)           = RAY_MIB_HOP_SEQ_LEN_V4;
935         MIB4(mib_cw_max)                = RAY_MIB_CW_MAX_V4;
936         MIB4(mib_cw_min)                = RAY_MIB_CW_MIN_V4;
937         MIB4(mib_noise_filter_gain)     = RAY_MIB_NOISE_FILTER_GAIN_DEFAULT;
938         MIB4(mib_noise_limit_offset)    = RAY_MIB_NOISE_LIMIT_OFFSET_DEFAULT;
939         MIB4(mib_rssi_thresh_offset)    = RAY_MIB_RSSI_THRESH_OFFSET_DEFAULT;
940         MIB4(mib_busy_thresh_offset)    = RAY_MIB_BUSY_THRESH_OFFSET_DEFAULT;
941         MIB4(mib_sync_thresh)           = RAY_MIB_SYNC_THRESH_DEFAULT;
942         MIB4(mib_test_mode)             = RAY_MIB_TEST_MODE_DEFAULT;
943         MIB4(mib_test_min_chan)         = RAY_MIB_TEST_MIN_CHAN_DEFAULT;
944         MIB4(mib_test_max_chan)         = RAY_MIB_TEST_MAX_CHAN_DEFAULT;
945 #undef MIB4
946
947         SRAM_WRITE_REGION(sc, RAY_HOST_TO_ECF_BASE,
948             &ray_mib_4_default, sizeof(ray_mib_4_default));
949 }
950
951 /*
952  * Firmware version 5 defaults - see if_raymib.h for details
953  */
954 static void
955 ray_init_download_v5(struct ray_softc *sc, struct ray_comq_entry *com)
956 {
957         struct ray_mib_5 ray_mib_5_default;
958
959         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_STARTJOIN, "");
960         RAY_MAP_CM(sc);
961
962 #define MIB5(m)         ray_mib_5_default.m
963         MIB5(mib_net_type)              = com->c_desired.np_net_type;
964         MIB5(mib_ap_status)             = com->c_desired.np_ap_status;
965         bcopy(com->c_desired.np_ssid, MIB5(mib_ssid), IEEE80211_NWID_LEN);
966         MIB5(mib_scan_mode)             = RAY_MIB_SCAN_MODE_V5;
967         MIB5(mib_apm_mode)              = RAY_MIB_APM_MODE_V5;
968         bcopy(sc->sc_station_addr, MIB5(mib_mac_addr), ETHER_ADDR_LEN);
969    PUT2(MIB5(mib_frag_thresh),            RAY_MIB_FRAG_THRESH_V5);
970    PUT2(MIB5(mib_dwell_time),             RAY_MIB_DWELL_TIME_V5);
971    PUT2(MIB5(mib_beacon_period),          RAY_MIB_BEACON_PERIOD_V5);
972         MIB5(mib_dtim_interval)         = RAY_MIB_DTIM_INTERVAL_V5;
973         MIB5(mib_max_retry)             = RAY_MIB_MAX_RETRY_V5;
974         MIB5(mib_ack_timo)              = RAY_MIB_ACK_TIMO_V5;
975         MIB5(mib_sifs)                  = RAY_MIB_SIFS_V5;
976         MIB5(mib_difs)                  = RAY_MIB_DIFS_V5;
977         MIB5(mib_pifs)                  = RAY_MIB_PIFS_V5;
978    PUT2(MIB5(mib_rts_thresh),             RAY_MIB_RTS_THRESH_V5);
979    PUT2(MIB5(mib_scan_dwell),             RAY_MIB_SCAN_DWELL_V5);
980    PUT2(MIB5(mib_scan_max_dwell),         RAY_MIB_SCAN_MAX_DWELL_V5);
981         MIB5(mib_assoc_timo)            = RAY_MIB_ASSOC_TIMO_V5;
982         MIB5(mib_adhoc_scan_cycle)      = RAY_MIB_ADHOC_SCAN_CYCLE_V5;
983         MIB5(mib_infra_scan_cycle)      = RAY_MIB_INFRA_SCAN_CYCLE_V5;
984         MIB5(mib_infra_super_scan_cycle)
985                                         = RAY_MIB_INFRA_SUPER_SCAN_CYCLE_V5;
986         MIB5(mib_promisc)               = com->c_desired.np_promisc;
987    PUT2(MIB5(mib_uniq_word),              RAY_MIB_UNIQ_WORD_V5);
988         MIB5(mib_slot_time)             = RAY_MIB_SLOT_TIME_V5;
989         MIB5(mib_roam_low_snr_thresh)   = RAY_MIB_ROAM_LOW_SNR_THRESH_V5;
990         MIB5(mib_low_snr_count) = RAY_MIB_LOW_SNR_COUNT_V5;
991         MIB5(mib_infra_missed_beacon_count)
992                                         = RAY_MIB_INFRA_MISSED_BEACON_COUNT_V5;
993         MIB5(mib_adhoc_missed_beacon_count)
994                                         = RAY_MIB_ADHOC_MISSED_BEACON_COUNT_V5;
995         MIB5(mib_country_code)          = RAY_MIB_COUNTRY_CODE_V5;
996         MIB5(mib_hop_seq)               = RAY_MIB_HOP_SEQ_V5;
997         MIB5(mib_hop_seq_len)           = RAY_MIB_HOP_SEQ_LEN_V5;
998    PUT2(MIB5(mib_cw_max),                 RAY_MIB_CW_MAX_V5);
999    PUT2(MIB5(mib_cw_min),                 RAY_MIB_CW_MIN_V5);
1000         MIB5(mib_noise_filter_gain)     = RAY_MIB_NOISE_FILTER_GAIN_DEFAULT;
1001         MIB5(mib_noise_limit_offset)    = RAY_MIB_NOISE_LIMIT_OFFSET_DEFAULT;
1002         MIB5(mib_rssi_thresh_offset)    = RAY_MIB_RSSI_THRESH_OFFSET_DEFAULT;
1003         MIB5(mib_busy_thresh_offset)    = RAY_MIB_BUSY_THRESH_OFFSET_DEFAULT;
1004         MIB5(mib_sync_thresh)           = RAY_MIB_SYNC_THRESH_DEFAULT;
1005         MIB5(mib_test_mode)             = RAY_MIB_TEST_MODE_DEFAULT;
1006         MIB5(mib_test_min_chan)         = RAY_MIB_TEST_MIN_CHAN_DEFAULT;
1007         MIB5(mib_test_max_chan)         = RAY_MIB_TEST_MAX_CHAN_DEFAULT;
1008         MIB5(mib_allow_probe_resp)      = RAY_MIB_ALLOW_PROBE_RESP_DEFAULT;
1009         MIB5(mib_privacy_must_start)    = com->c_desired.np_priv_start;
1010         MIB5(mib_privacy_can_join)      = com->c_desired.np_priv_join;
1011         MIB5(mib_basic_rate_set[0])     = com->c_desired.np_def_txrate;
1012 #undef MIB5
1013
1014         SRAM_WRITE_REGION(sc, RAY_HOST_TO_ECF_BASE,
1015             &ray_mib_5_default, sizeof(ray_mib_5_default));
1016 }
1017 #undef PUT2
1018
1019 /*
1020  * Download completion routine
1021  */
1022 static void
1023 ray_init_download_done(struct ray_softc *sc, u_int8_t status, size_t ccs)
1024 {
1025         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_STARTJOIN, "");
1026         RAY_COM_CHECK(sc, ccs);
1027
1028         RAY_CCSERR(sc, status, if_oerrors); /* XXX error counter */
1029
1030         ray_com_ecf_done(sc);
1031 }
1032
1033 /*
1034  * Runq entry to empty the multicast filter list
1035  */
1036 static void
1037 ray_init_mcast(struct ray_softc *sc, struct ray_comq_entry *com)
1038 {
1039         struct ifnet *ifp = &sc->arpcom.ac_if;
1040
1041         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_STARTJOIN, "");
1042         RAY_MAP_CM(sc);
1043
1044         /* If the card already running we might not need to reset the list */
1045         RAY_COM_CHKRUNNING(sc, com, ifp);
1046
1047         /*
1048          * Kick the card
1049          */
1050         ray_ccs_fill(sc, com->c_ccs, RAY_CMD_UPDATE_MCAST);
1051         SRAM_WRITE_FIELD_1(sc, com->c_ccs, ray_cmd_update_mcast, c_nmcast, 0);
1052
1053         ray_com_ecf(sc, com);
1054 }
1055
1056 /*
1057  * Runq entry to starting or joining a network
1058  */
1059 static void
1060 ray_init_sj(struct ray_softc *sc, struct ray_comq_entry *com)
1061 {
1062         struct ifnet *ifp = &sc->arpcom.ac_if;
1063         struct ray_net_params np;
1064         int update;
1065
1066         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_STARTJOIN, "");
1067         RAY_MAP_CM(sc);
1068
1069         /* If the card already running we might not need to start the n/w */
1070         RAY_COM_CHKRUNNING(sc, com, ifp);
1071
1072         /*
1073          * Set up the right start or join command and determine
1074          * whether we should tell the card about a change in operating
1075          * parameters.
1076          */
1077         sc->sc_c.np_havenet = 0;
1078         if (sc->sc_d.np_net_type == RAY_MIB_NET_TYPE_ADHOC)
1079                 ray_ccs_fill(sc, com->c_ccs, RAY_CMD_START_NET);
1080         else
1081                 ray_ccs_fill(sc, com->c_ccs, RAY_CMD_JOIN_NET);
1082
1083         update = 0;
1084         if (sc->sc_c.np_net_type != sc->sc_d.np_net_type)
1085                 update++;
1086         if (bcmp(sc->sc_c.np_ssid, sc->sc_d.np_ssid, IEEE80211_NWID_LEN))
1087                 update++;
1088         if (sc->sc_c.np_priv_join != sc->sc_d.np_priv_join)
1089                 update++;
1090         if (sc->sc_c.np_priv_start != sc->sc_d.np_priv_start)
1091                 update++;
1092         RAY_DPRINTF(sc, RAY_DBG_STARTJOIN,
1093             "%s updating nw params", update?"is":"not");
1094         if (update) {
1095                 bzero(&np, sizeof(np));
1096                 np.p_net_type = sc->sc_d.np_net_type;
1097                 bcopy(sc->sc_d.np_ssid, np.p_ssid,  IEEE80211_NWID_LEN);
1098                 np.p_privacy_must_start = sc->sc_d.np_priv_start;
1099                 np.p_privacy_can_join = sc->sc_d.np_priv_join;
1100                 SRAM_WRITE_REGION(sc, RAY_HOST_TO_ECF_BASE, &np, sizeof(np));
1101                 SRAM_WRITE_FIELD_1(sc, com->c_ccs, ray_cmd_net, c_upd_param, 1);
1102         } else
1103                 SRAM_WRITE_FIELD_1(sc, com->c_ccs, ray_cmd_net, c_upd_param, 0);
1104
1105         /*
1106          * Kick the card
1107          */
1108         ray_com_ecf(sc, com);
1109 }
1110
1111 /*
1112  * Complete start command or intermediate step in assoc command
1113  */
1114 static void
1115 ray_init_sj_done(struct ray_softc *sc, u_int8_t status, size_t ccs)
1116 {
1117         struct ifnet *ifp = &sc->arpcom.ac_if;
1118
1119         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_STARTJOIN, "");
1120         RAY_MAP_CM(sc);
1121         RAY_COM_CHECK(sc, ccs);
1122
1123         RAY_CCSERR(sc, status, if_oerrors); /* XXX error counter */
1124
1125         /*
1126          * Read back network parameters that the ECF sets
1127          */
1128         SRAM_READ_REGION(sc, ccs, &sc->sc_c.p_1, sizeof(struct ray_cmd_net));
1129
1130         /* Adjust values for buggy firmware */
1131         if (sc->sc_c.np_inited == 0x55)
1132                 sc->sc_c.np_inited = 0;
1133         if (sc->sc_c.np_def_txrate == 0x55)
1134                 sc->sc_c.np_def_txrate = sc->sc_d.np_def_txrate;
1135         if (sc->sc_c.np_encrypt == 0x55)
1136                 sc->sc_c.np_encrypt = sc->sc_d.np_encrypt;
1137
1138         /*
1139          * Update our local state if we updated the network parameters
1140          * when the START_NET or JOIN_NET was issued.
1141          */
1142         if (sc->sc_c.np_upd_param) {
1143                 RAY_DPRINTF(sc, RAY_DBG_STARTJOIN, "updated parameters");
1144                 SRAM_READ_REGION(sc, RAY_HOST_TO_ECF_BASE,
1145                     &sc->sc_c.p_2, sizeof(struct ray_net_params));
1146         }
1147
1148         /*
1149          * Hurrah! The network is now active.
1150          *
1151          * Clearing IFF_OACTIVE will ensure that the system will send us
1152          * packets. Just before we return from the interrupt context
1153          * we check to see if packets have been queued.
1154          */
1155         if (SRAM_READ_FIELD_1(sc, ccs, ray_cmd, c_cmd) == RAY_CMD_START_NET) {
1156                 sc->sc_c.np_havenet = 1;
1157                 sc->sc_c.np_framing = sc->sc_d.np_framing;
1158                 ifp->if_flags |= IFF_RUNNING;
1159                 ifp->if_flags &= ~IFF_OACTIVE;
1160         }
1161
1162         ray_com_ecf_done(sc);
1163 }
1164
1165 /*
1166  * Runq entry to authenticate with an access point or another station
1167  */
1168 static void
1169 ray_init_auth(struct ray_softc *sc, struct ray_comq_entry *com)
1170 {
1171         struct ifnet *ifp = &sc->arpcom.ac_if;
1172
1173         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_STARTJOIN | RAY_DBG_AUTH, "");
1174
1175         /* If card already running we might not need to authenticate */
1176         RAY_COM_CHKRUNNING(sc, com, ifp);
1177
1178         /*
1179          * XXX Don't do anything if we are not in a managed network
1180          *
1181          * XXX V4 adhoc does not need this, V5 adhoc unknown
1182          */
1183         if (sc->sc_c.np_net_type != RAY_MIB_NET_TYPE_INFRA) {
1184                 ray_com_runq_done(sc);
1185                 return;
1186         }
1187
1188 /*
1189  * XXX_AUTH need to think of run queue when doing auths from request i.e. would
1190  * XXX_AUTH need to have auth at top of runq?
1191  * XXX_AUTH ditto for sending any auth response packets...what about timeouts?
1192  */
1193
1194         /*
1195          * Kick the card
1196          */
1197 /* XXX_AUTH check exit status and retry or fail as we can't associate without this */
1198         ray_init_auth_send(sc, sc->sc_c.np_bss_id, IEEE80211_AUTH_OPEN_REQUEST);
1199 }
1200
1201 /*
1202  * Build and send an authentication packet
1203  *
1204  * If an error occurs, returns 1 else returns 0.
1205  */
1206 static int
1207 ray_init_auth_send(struct ray_softc *sc, u_int8_t *dst, int sequence)
1208 {
1209         size_t ccs, bufp;
1210         int pktlen = 0;
1211
1212         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_STARTJOIN | RAY_DBG_AUTH, "");
1213
1214         /* Get a control block */
1215         if (ray_ccs_tx(sc, &ccs, &bufp)) {
1216                 RAY_RECERR(sc, "could not obtain a ccs");
1217                 return (1);
1218         }
1219
1220         /* Fill the header in */
1221         bufp = ray_tx_wrhdr(sc, bufp,
1222             IEEE80211_FC0_TYPE_MGT | IEEE80211_FC0_SUBTYPE_AUTH,
1223             IEEE80211_FC1_DIR_NODS,
1224             dst,
1225             sc->arpcom.ac_enaddr,
1226             sc->sc_c.np_bss_id);
1227
1228         /* Add algorithm number */
1229         SRAM_WRITE_1(sc, bufp + pktlen++, IEEE80211_AUTH_ALG_OPEN);
1230         SRAM_WRITE_1(sc, bufp + pktlen++, 0);
1231
1232         /* Add sequence number */
1233         SRAM_WRITE_1(sc, bufp + pktlen++, sequence);
1234         SRAM_WRITE_1(sc, bufp + pktlen++, 0);
1235
1236         /* Add status code */
1237         SRAM_WRITE_1(sc, bufp + pktlen++, 0);
1238         SRAM_WRITE_1(sc, bufp + pktlen++, 0);
1239         pktlen += sizeof(struct ieee80211_frame);
1240
1241         return (ray_tx_send(sc, ccs, pktlen, dst));
1242 }
1243
1244 /*
1245  * Complete authentication runq
1246  */
1247 static void
1248 ray_init_auth_done(struct ray_softc *sc, u_int8_t status)
1249 {
1250         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_STARTJOIN | RAY_DBG_AUTH, "");
1251
1252         if (status != IEEE80211_STATUS_SUCCESS)
1253                 RAY_RECERR(sc, "authentication failed with status %d", status);
1254 /*
1255  * XXX_AUTH retry? if not just recall ray_init_auth_send and dont clear runq?
1256  * XXX_AUTH association requires that authenitcation is successful
1257  * XXX_AUTH before we associate, and the runq is the only way to halt the
1258  * XXX_AUTH progress of associate.
1259  * XXX_AUTH In this case I might not need the RAY_AUTH_NEEDED state
1260  */
1261         ray_com_runq_done(sc);
1262 }
1263
1264 /*
1265  * Runq entry to starting an association with an access point
1266  */
1267 static void
1268 ray_init_assoc(struct ray_softc *sc, struct ray_comq_entry *com)
1269 {
1270         struct ifnet *ifp = &sc->arpcom.ac_if;
1271
1272         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_STARTJOIN, "");
1273
1274         /* If the card already running we might not need to associate */
1275         RAY_COM_CHKRUNNING(sc, com, ifp);
1276
1277         /*
1278          * Don't do anything if we are not in a managed network
1279          */
1280         if (sc->sc_c.np_net_type != RAY_MIB_NET_TYPE_INFRA) {
1281                 ray_com_runq_done(sc);
1282                 return;
1283         }
1284
1285         /*
1286          * Kick the card
1287          */
1288         ray_ccs_fill(sc, com->c_ccs, RAY_CMD_START_ASSOC);
1289         ray_com_ecf(sc, com);
1290 }
1291
1292 /*
1293  * Complete association
1294  */
1295 static void
1296 ray_init_assoc_done(struct ray_softc *sc, u_int8_t status, size_t ccs)
1297 {
1298         struct ifnet *ifp = &sc->arpcom.ac_if;
1299
1300         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_STARTJOIN, "");
1301         RAY_COM_CHECK(sc, ccs);
1302
1303         RAY_CCSERR(sc, status, if_oerrors); /* XXX error counter */
1304         
1305         /*
1306          * Hurrah! The network is now active.
1307          *
1308          * Clearing IFF_OACTIVE will ensure that the system will send us
1309          * packets. Just before we return from the interrupt context
1310          * we check to see if packets have been queued.
1311          */
1312         sc->sc_c.np_havenet = 1;
1313         sc->sc_c.np_framing = sc->sc_d.np_framing;
1314         ifp->if_flags |= IFF_RUNNING;
1315         ifp->if_flags &= ~IFF_OACTIVE;
1316
1317         ray_com_ecf_done(sc);
1318 }
1319
1320 /*
1321  * Network stop.
1322  *
1323  * Inhibit card - if we can't prevent reception then do not worry;
1324  * stopping a NIC only guarantees no TX.
1325  *
1326  * The change to the interface flags is done via the runq so that any
1327  * existing commands can execute normally.
1328  */
1329 static int
1330 ray_stop_user(struct ray_softc *sc)
1331 {
1332         struct ray_comq_entry *com[1];
1333         int error, ncom;
1334
1335         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_STOP, "");
1336
1337         /*
1338          * Schedule the real stop routine
1339          */
1340         ncom = 0;
1341         com[ncom++] = RAY_COM_MALLOC(ray_stop, 0);
1342
1343         RAY_COM_RUNQ(sc, com, ncom, "raystop", error);
1344
1345         /* XXX no real error processing from anything yet! */
1346
1347         RAY_COM_FREE(com, ncom);
1348
1349         return (error);
1350 }
1351
1352 /*
1353  * Runq entry for stopping the interface activity
1354  */
1355 static void
1356 ray_stop(struct ray_softc *sc, struct ray_comq_entry *com)
1357 {
1358         struct ifnet *ifp = &sc->arpcom.ac_if;
1359
1360         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_STOP, "");
1361
1362         /*
1363          * Mark as not running and drain output queue
1364          */
1365         ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
1366         ifp->if_timer = 0;
1367         ifq_purge(&ifp->if_snd);
1368         ray_com_runq_done(sc);
1369 }
1370
1371 static void
1372 ray_watchdog(struct ifnet *ifp)
1373 {
1374         struct ray_softc *sc = ifp->if_softc;
1375
1376         RAY_DPRINTF(sc, RAY_DBG_SUBR, "");
1377         RAY_MAP_CM(sc);
1378
1379         if ((sc == NULL) || (sc->sc_gone))
1380                 return;
1381
1382         RAY_PRINTF(sc, "watchdog timeout");
1383 }
1384
1385 /*
1386  * Transmit packet handling
1387  */
1388
1389 /*
1390  * Send a packet.
1391  *
1392  * We make two assumptions here:
1393  *  1) That the current priority is set to splimp _before_ this code
1394  *     is called *and* is returned to the appropriate priority after
1395  *     return
1396  *  2) That the IFF_OACTIVE flag is checked before this code is called
1397  *     (i.e. that the output part of the interface is idle)
1398  *
1399  * A simple one packet at a time TX routine is used - we don't bother
1400  * chaining TX buffers. Performance is sufficient to max out the
1401  * wireless link on a P75.
1402  *
1403  * AST J30 Windows 95A (100MHz Pentium) to
1404  *   Libretto 50CT FreeBSD-3.1 (75MHz Pentium)          167.37kB/s
1405  *   Nonname box FreeBSD-3.4 (233MHz AMD K6)            161.82kB/s
1406  *
1407  * Libretto 50CT FreeBSD-3.1 (75MHz Pentium) to
1408  *   AST J30 Windows 95A (100MHz Pentium)               167.37kB/s
1409  *   Nonname box FreeBSD-3.4 (233MHz AMD K6)            161.38kB/s
1410  *
1411  * Given that 160kB/s is saturating the 2Mb/s wireless link we
1412  * are about there.
1413  *
1414  * In short I'm happy that the added complexity of chaining TX
1415  * packets together isn't worth it for my machines.
1416  */
1417 static void
1418 ray_tx(struct ifnet *ifp)
1419 {
1420         struct ray_softc *sc = ifp->if_softc;
1421         struct mbuf *m0, *m;
1422         struct ether_header *eh;
1423         struct llc *llc;
1424         size_t ccs, bufp;
1425         int pktlen, len;
1426
1427         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_TX, "");
1428         RAY_MAP_CM(sc);
1429
1430         /*
1431          * Some simple checks first - some are overkill
1432          */
1433         if ((sc == NULL) || (sc->sc_gone))
1434                 return;
1435         if (!(ifp->if_flags & IFF_RUNNING)) {
1436                 RAY_RECERR(sc, "cannot transmit - not running");
1437                 return;
1438         }
1439         if (!sc->sc_c.np_havenet) {
1440                 RAY_RECERR(sc, "cannot transmit - no network");
1441                 return;
1442         }
1443         if (!RAY_ECF_READY(sc)) {
1444                 /* Can't assume that the ECF is busy because of this driver */
1445                 if (!callout_active(&sc->tx_timer)) {
1446                         callout_reset(&sc->tx_timer, RAY_TX_TIMEOUT,
1447                                       ray_tx_timo, sc);
1448                         return;
1449                 }
1450         } else
1451                 callout_stop(&sc->tx_timer);
1452
1453         /*
1454          * We find a ccs before we process the mbuf so that we are sure it
1455          * is worthwhile processing the packet. All errors in the mbuf
1456          * processing are either errors in the mbuf or gross configuration
1457          * errors and the packet wouldn't get through anyway.
1458          */
1459         if (ray_ccs_tx(sc, &ccs, &bufp)) {
1460                 ifp->if_flags |= IFF_OACTIVE;
1461                 return;
1462         }
1463     
1464         /*
1465          * Get the mbuf and process it - we have to remember to free the
1466          * ccs if there are any errors.
1467          */
1468         m0 = ifq_dequeue(&ifp->if_snd);
1469         if (m0 == NULL) {
1470                 RAY_CCS_FREE(sc, ccs);
1471                 return;
1472         }
1473
1474         pktlen = m0->m_pkthdr.len;
1475         if (pktlen > ETHER_MAX_LEN - ETHER_CRC_LEN) {
1476                 RAY_RECERR(sc, "mbuf too long %d", pktlen);
1477                 RAY_CCS_FREE(sc, ccs);
1478                 ifp->if_oerrors++;
1479                 m_freem(m0);
1480                 return;
1481         }
1482
1483         m0 = m_pullup(m0, sizeof(struct ether_header));
1484         if (m0 == NULL) {
1485                 RAY_RECERR(sc, "could not pullup ether");
1486                 RAY_CCS_FREE(sc, ccs);
1487                 ifp->if_oerrors++;
1488                 return;
1489         }
1490         eh = mtod(m0, struct ether_header *);
1491
1492         /*
1493          * Write the 802.11 header according to network type etc.
1494          */
1495         if (sc->sc_c.np_net_type == RAY_MIB_NET_TYPE_ADHOC)
1496                 bufp = ray_tx_wrhdr(sc, bufp,
1497                     IEEE80211_FC0_TYPE_DATA,
1498                     IEEE80211_FC1_DIR_NODS,
1499                     eh->ether_dhost,
1500                     eh->ether_shost,
1501                     sc->sc_c.np_bss_id);
1502         else
1503                 if (sc->sc_c.np_ap_status == RAY_MIB_AP_STATUS_TERMINAL)
1504                         bufp = ray_tx_wrhdr(sc, bufp,
1505                             IEEE80211_FC0_TYPE_DATA,
1506                             IEEE80211_FC1_DIR_TODS,
1507                             sc->sc_c.np_bss_id,
1508                             eh->ether_shost,
1509                             eh->ether_dhost);
1510                 else
1511                         bufp = ray_tx_wrhdr(sc, bufp,
1512                             IEEE80211_FC0_TYPE_DATA,
1513                             IEEE80211_FC1_DIR_FROMDS,
1514                             eh->ether_dhost,
1515                             sc->sc_c.np_bss_id,
1516                             eh->ether_shost);
1517
1518         /*
1519          * Framing
1520          *
1521          * Add to the mbuf.
1522          */
1523         switch (sc->sc_c.np_framing) {
1524
1525         case RAY_FRAMING_ENCAPSULATION:
1526                 /* Nice and easy - nothing! (just add an 802.11 header) */
1527                 break;
1528
1529         case RAY_FRAMING_TRANSLATION:
1530                 /*
1531                  * Drop the first address in the ethernet header and
1532                  * write an LLC and SNAP header over the second.
1533                  */
1534                 m_adj(m0, ETHER_ADDR_LEN);
1535                 if (m0 == NULL) {
1536                         RAY_RECERR(sc, "could not get space for 802.2 header");
1537                         RAY_CCS_FREE(sc, ccs);
1538                         ifp->if_oerrors++;
1539                         return;
1540                 }
1541                 llc = mtod(m0, struct llc *);
1542                 llc->llc_dsap = LLC_SNAP_LSAP;
1543                 llc->llc_ssap = LLC_SNAP_LSAP;
1544                 llc->llc_control = LLC_UI;
1545                 llc->llc_un.type_snap.org_code[0] = 0;
1546                 llc->llc_un.type_snap.org_code[1] = 0;
1547                 llc->llc_un.type_snap.org_code[2] = 0;
1548                 break;
1549
1550         default:
1551                 RAY_RECERR(sc, "unknown framing type %d", sc->sc_c.np_framing);
1552                 RAY_CCS_FREE(sc, ccs);
1553                 ifp->if_oerrors++;
1554                 m_freem(m0);
1555                 return;
1556
1557         }
1558         if (m0 == NULL) {
1559                 RAY_RECERR(sc, "could not frame packet");
1560                 RAY_CCS_FREE(sc, ccs);
1561                 ifp->if_oerrors++;
1562                 return;
1563         }
1564         RAY_MBUF_DUMP(sc, RAY_DBG_TX, m0, "framed packet");
1565
1566         /*
1567          * Copy the mbuf to the buffer in common memory
1568          *
1569          * We drop and don't bother wrapping as Ethernet packets are 1518
1570          * bytes, we checked the mbuf earlier, and our TX buffers are 2048
1571          * bytes. We don't have 530 bytes of headers etc. so something
1572          * must be fubar.
1573          */
1574         pktlen = sizeof(struct ieee80211_frame);
1575         for (m = m0; m != NULL; m = m->m_next) {
1576                 pktlen += m->m_len;
1577                 if ((len = m->m_len) == 0)
1578                         continue;
1579                 if ((bufp + len) < RAY_TX_END)
1580                         SRAM_WRITE_REGION(sc, bufp, mtod(m, u_int8_t *), len);
1581                 else {
1582                         RAY_RECERR(sc, "tx buffer overflow");
1583                         RAY_CCS_FREE(sc, ccs);
1584                         ifp->if_oerrors++;
1585                         m_freem(m0);
1586                         return;
1587                 }
1588                 bufp += len;
1589         }
1590
1591         /*
1592          * Send it off
1593          */
1594         if (ray_tx_send(sc, ccs, pktlen, eh->ether_dhost))
1595                 ifp->if_oerrors++;
1596         else
1597                 ifp->if_opackets++;
1598         m_freem(m0);
1599 }
1600
1601 /*
1602  * Start timeout routine.
1603  *
1604  * Used when card was busy but we needed to send a packet.
1605  */
1606 static void
1607 ray_tx_timo(void *xsc)
1608 {
1609         struct ray_softc *sc = (struct ray_softc *)xsc;
1610         struct ifnet *ifp = &sc->arpcom.ac_if;
1611         int s;
1612
1613         RAY_DPRINTF(sc, RAY_DBG_SUBR, "");
1614
1615         if ((ifp->if_flags & IFF_OACTIVE) == 0 && !ifq_is_empty(&ifp->if_snd)) {
1616                 s = splimp();
1617                 ray_tx(ifp);
1618                 splx(s);
1619         }
1620 }
1621
1622 /*
1623  * Write an 802.11 header into the Tx buffer space and return the
1624  * adjusted buffer pointer.
1625  */
1626 static size_t
1627 ray_tx_wrhdr(struct ray_softc *sc, size_t bufp, u_int8_t type, u_int8_t fc1, u_int8_t *addr1, u_int8_t *addr2, u_int8_t *addr3)
1628 {
1629         struct ieee80211_frame header;
1630
1631         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_TX, "");
1632         RAY_MAP_CM(sc);
1633
1634         bzero(&header, sizeof(struct ieee80211_frame));
1635         header.i_fc[0] = (IEEE80211_FC0_VERSION_0 | type);
1636         header.i_fc[1] = fc1;
1637         bcopy(addr1, header.i_addr1, ETHER_ADDR_LEN);
1638         bcopy(addr2, header.i_addr2, ETHER_ADDR_LEN);
1639         bcopy(addr3, header.i_addr3, ETHER_ADDR_LEN);
1640
1641         SRAM_WRITE_REGION(sc, bufp, (u_int8_t *)&header,
1642             sizeof(struct ieee80211_frame));
1643
1644         return (bufp + sizeof(struct ieee80211_frame));
1645 }
1646
1647 /*
1648  * Fill in a few loose ends and kick the card to send the packet
1649  *
1650  * Returns 0 on success, 1 on failure
1651  */
1652 static int
1653 ray_tx_send(struct ray_softc *sc, size_t ccs, int pktlen, u_int8_t *dst)
1654 {
1655         int i = 0;
1656
1657         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_TX, "");
1658         RAY_MAP_CM(sc);
1659
1660         while (!RAY_ECF_READY(sc)) {
1661                 DELAY(RAY_ECF_SPIN_DELAY);
1662                 if (++i > RAY_ECF_SPIN_TRIES) {
1663                         RAY_RECERR(sc, "ECF busy, dropping packet");
1664                         RAY_CCS_FREE(sc, ccs);
1665                         return (1);
1666                 }
1667         }
1668         if (i != 0)
1669                 RAY_RECERR(sc, "spun %d times", i);
1670
1671         SRAM_WRITE_FIELD_2(sc, ccs, ray_cmd_tx, c_len, pktlen);
1672         SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_tx, c_antenna,
1673             ray_tx_best_antenna(sc, dst));
1674         SRAM_WRITE_1(sc, RAY_SCB_CCSI, RAY_CCS_INDEX(ccs));
1675         RAY_ECF_START_CMD(sc);
1676
1677         return (0);
1678 }
1679
1680 /*
1681  * Determine best antenna to use from rx level and antenna cache
1682  */
1683 static u_int8_t
1684 ray_tx_best_antenna(struct ray_softc *sc, u_int8_t *dst)
1685 {
1686         struct ray_siglev *sl;
1687         int i;
1688         u_int8_t antenna;
1689
1690         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_TX, "");
1691
1692         if (sc->sc_version == RAY_ECFS_BUILD_4) 
1693                 return (0);
1694
1695         /* try to find host */
1696         for (i = 0; i < RAY_NSIGLEVRECS; i++) {
1697                 sl = &sc->sc_siglevs[i];
1698                 if (bcmp(sl->rsl_host, dst, ETHER_ADDR_LEN) == 0)
1699                         goto found;
1700         }
1701         /* not found, return default setting */
1702         return (0);
1703
1704 found:
1705         /* This is a simple thresholding scheme that takes the mean
1706          * of the best antenna history. This is okay but as it is a
1707          * filter, it adds a bit of lag in situations where the
1708          * best antenna swaps from one side to the other slowly. Don't know
1709          * how likely this is given the horrible fading though.
1710          */
1711         antenna = 0;
1712         for (i = 0; i < RAY_NANTENNA; i++) {
1713                 antenna += sl->rsl_antennas[i];
1714         }
1715
1716         return (antenna > (RAY_NANTENNA >> 1));
1717 }
1718
1719 /*
1720  * Transmit now complete so clear ccs and network flags.
1721  */
1722 static void
1723 ray_tx_done(struct ray_softc *sc, u_int8_t status, size_t ccs)
1724 {
1725         struct ifnet *ifp = &sc->arpcom.ac_if;
1726
1727         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_TX, "");
1728
1729         RAY_CCSERR(sc, status, if_oerrors);
1730
1731         RAY_CCS_FREE(sc, ccs);
1732         ifp->if_timer = 0;
1733         if (ifp->if_flags & IFF_OACTIVE)
1734             ifp->if_flags &= ~IFF_OACTIVE;
1735 }
1736
1737 /*
1738  * Receiver packet handling
1739  */
1740
1741 /*
1742  * Receive a packet from the card
1743  */
1744 static void
1745 ray_rx(struct ray_softc *sc, size_t rcs)
1746 {
1747         struct ieee80211_frame *header;
1748         struct ifnet *ifp = &sc->arpcom.ac_if;
1749         struct mbuf *m0;
1750         size_t pktlen, fraglen, readlen, tmplen;
1751         size_t bufp, ebufp;
1752         u_int8_t siglev, antenna;
1753         u_int first, ni, i;
1754         u_int8_t *mp;
1755
1756         RAY_DPRINTF(sc, RAY_DBG_SUBR, "");
1757         RAY_MAP_CM(sc);
1758
1759         RAY_DPRINTF(sc, RAY_DBG_CCS, "using rcs 0x%x", rcs);
1760
1761         m0 = NULL;
1762         readlen = 0;
1763
1764         /*
1765          * Get first part of packet and the length. Do some sanity checks
1766          * and get a mbuf.
1767          */
1768         first = RAY_CCS_INDEX(rcs);
1769         pktlen = SRAM_READ_FIELD_2(sc, rcs, ray_cmd_rx, c_pktlen);
1770         siglev = SRAM_READ_FIELD_1(sc, rcs, ray_cmd_rx, c_siglev);
1771         antenna = SRAM_READ_FIELD_1(sc, rcs, ray_cmd_rx, c_antenna);
1772
1773         if ((pktlen > MCLBYTES) || (pktlen < sizeof(struct ieee80211_frame))) {
1774                 RAY_RECERR(sc, "packet too big or too small");
1775                 ifp->if_ierrors++;
1776                 goto skip_read;
1777         }
1778
1779         MGETHDR(m0, MB_DONTWAIT, MT_DATA);
1780         if (m0 == NULL) {
1781                 RAY_RECERR(sc, "MGETHDR failed");
1782                 ifp->if_ierrors++;
1783                 goto skip_read;
1784         }
1785         if (pktlen > MHLEN) {
1786                 MCLGET(m0, MB_DONTWAIT);
1787                 if (!(m0->m_flags & M_EXT)) {
1788                         RAY_RECERR(sc, "MCLGET failed");
1789                         ifp->if_ierrors++;
1790                         m_freem(m0);
1791                         m0 = NULL;
1792                         goto skip_read;
1793                 }
1794         }
1795         m0->m_pkthdr.rcvif = ifp;
1796         m0->m_pkthdr.len = pktlen;
1797         m0->m_len = pktlen;
1798         mp = mtod(m0, u_int8_t *);
1799
1800         /*
1801          * Walk the fragment chain to build the complete packet.
1802          *
1803          * The use of two index variables removes a race with the
1804          * hardware. If one index were used the clearing of the CCS would
1805          * happen before reading the next pointer and the hardware can get in.
1806          * Not my idea but verbatim from the NetBSD driver.
1807          */
1808         i = ni = first;
1809         while ((i = ni) && (i != RAY_CCS_LINK_NULL)) {
1810                 rcs = RAY_CCS_ADDRESS(i);
1811                 ni = SRAM_READ_FIELD_1(sc, rcs, ray_cmd_rx, c_nextfrag);
1812                 bufp = SRAM_READ_FIELD_2(sc, rcs, ray_cmd_rx, c_bufp);
1813                 fraglen = SRAM_READ_FIELD_2(sc, rcs, ray_cmd_rx, c_len);
1814                 if (fraglen + readlen > pktlen) {
1815                         RAY_RECERR(sc, "bad length current 0x%x pktlen 0x%x",
1816                             fraglen + readlen, pktlen);
1817                         ifp->if_ierrors++;
1818                         m_freem(m0);
1819                         m0 = NULL;
1820                         goto skip_read;
1821                 }
1822                 if ((i < RAY_RCS_FIRST) || (i > RAY_RCS_LAST)) {
1823                         RAY_RECERR(sc, "bad rcs index 0x%x", i);
1824                         ifp->if_ierrors++;
1825                         m_freem(m0);
1826                         m0 = NULL;
1827                         goto skip_read;
1828                 }
1829
1830                 ebufp = bufp + fraglen;
1831                 if (ebufp <= RAY_RX_END)
1832                         SRAM_READ_REGION(sc, bufp, mp, fraglen);
1833                 else {
1834                         SRAM_READ_REGION(sc, bufp, mp,
1835                             (tmplen = RAY_RX_END - bufp));
1836                         SRAM_READ_REGION(sc, RAY_RX_BASE, mp + tmplen,
1837                             ebufp - RAY_RX_END);
1838                 }
1839                 mp += fraglen;
1840                 readlen += fraglen;
1841         }
1842
1843 skip_read:
1844
1845         /*
1846          * Walk the chain again to free the rcss.
1847          */
1848         i = ni = first;
1849         while ((i = ni) && (i != RAY_CCS_LINK_NULL)) {
1850                 rcs = RAY_CCS_ADDRESS(i);
1851                 ni = SRAM_READ_FIELD_1(sc, rcs, ray_cmd_rx, c_nextfrag);
1852                 RAY_CCS_FREE(sc, rcs);
1853         }
1854
1855         if (m0 == NULL)
1856                 return;
1857
1858         /*
1859          * Check the 802.11 packet type and hand off to
1860          * appropriate functions.
1861          */
1862         header = mtod(m0, struct ieee80211_frame *);
1863         if ((header->i_fc[0] & IEEE80211_FC0_VERSION_MASK)
1864             != IEEE80211_FC0_VERSION_0) {
1865                 RAY_RECERR(sc, "header not version 0 fc0 0x%x",
1866                     header->i_fc[0]);
1867                 ifp->if_ierrors++;
1868                 m_freem(m0);
1869                 return;
1870         }
1871         switch (header->i_fc[0] & IEEE80211_FC0_TYPE_MASK) {
1872
1873         case IEEE80211_FC0_TYPE_DATA:
1874                 ray_rx_data(sc, m0, siglev, antenna);
1875                 break;
1876
1877         case IEEE80211_FC0_TYPE_MGT:
1878                 ray_rx_mgt(sc, m0);
1879                 break;
1880
1881         case IEEE80211_FC0_TYPE_CTL:
1882                 ray_rx_ctl(sc, m0);
1883                 break;
1884
1885         default:
1886                 RAY_RECERR(sc, "unknown packet fc0 0x%x", header->i_fc[0]);
1887                 ifp->if_ierrors++;
1888                 m_freem(m0);
1889         }
1890 }
1891
1892 /*
1893  * Deal with DATA packet types
1894  */
1895 static void
1896 ray_rx_data(struct ray_softc *sc, struct mbuf *m0, u_int8_t siglev, u_int8_t antenna)
1897 {
1898         struct ifnet *ifp = &sc->arpcom.ac_if;
1899         struct ieee80211_frame *header = mtod(m0, struct ieee80211_frame *);
1900         struct ether_header *eh;
1901         struct llc *llc;
1902         u_int8_t *sa = NULL, *da = NULL, *ra = NULL, *ta = NULL;
1903         int trim = 0;
1904
1905         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_RX, "");
1906
1907         /*
1908          * Check the the data packet subtype, some packets have
1909          * nothing in them so we will drop them here.
1910          */
1911         switch (header->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK) {
1912
1913         case IEEE80211_FC0_SUBTYPE_DATA:
1914         case IEEE80211_FC0_SUBTYPE_CF_ACK:
1915         case IEEE80211_FC0_SUBTYPE_CF_POLL:
1916         case IEEE80211_FC0_SUBTYPE_CF_ACPL:
1917                 RAY_DPRINTF(sc, RAY_DBG_RX, "DATA packet");
1918                 break;
1919
1920         case IEEE80211_FC0_SUBTYPE_NODATA:
1921         case IEEE80211_FC0_SUBTYPE_CFACK:
1922         case IEEE80211_FC0_SUBTYPE_CFPOLL:
1923         case IEEE80211_FC0_SUBTYPE_CF_ACK_CF_ACK:
1924                 RAY_DPRINTF(sc, RAY_DBG_RX, "NULL packet");
1925                 m_freem(m0);
1926                 return;
1927                 break;
1928
1929         default:
1930                 RAY_RECERR(sc, "reserved DATA packet subtype 0x%x",
1931                     header->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK);
1932                 ifp->if_ierrors++;
1933                 m_freem(m0);
1934                 return;
1935         }
1936
1937         /*
1938          * Parse the To DS and From DS fields to determine the length
1939          * of the 802.11 header for use later on.
1940          *
1941          * Additionally, furtle out the right destination and
1942          * source MAC addresses for the packet. Packets may come via
1943          * APs so the MAC addresses of the immediate node may be
1944          * different from the node that actually sent us the packet.
1945          *
1946          *      da      destination address of final recipient
1947          *      sa      source address of orginator
1948          *      ra      receiver address of immediate recipient
1949          *      ta      transmitter address of immediate orginator
1950          *
1951          * Address matching is performed on da or sa with the AP or
1952          * BSSID in ra and ta.
1953          */
1954         RAY_MBUF_DUMP(sc, RAY_DBG_RX, m0, "(1) packet before framing");
1955         switch (header->i_fc[1] & IEEE80211_FC1_DIR_MASK) {
1956
1957         case IEEE80211_FC1_DIR_NODS:
1958                 da = ra = header->i_addr1;
1959                 sa = ta = header->i_addr2;
1960                 trim = sizeof(struct ieee80211_frame);
1961                 RAY_DPRINTF(sc, RAY_DBG_RX, "from %6D to %6D",
1962                     sa, ":", da, ":");
1963                 break;
1964
1965         case IEEE80211_FC1_DIR_FROMDS:
1966                 da = ra = header->i_addr1;
1967                 ta = header->i_addr2;
1968                 sa = header->i_addr3;
1969                 trim = sizeof(struct ieee80211_frame);
1970                 RAY_DPRINTF(sc, RAY_DBG_RX, "ap %6D from %6D to %6D",
1971                     ta, ":", sa, ":", da, ":");
1972                 break;
1973
1974         case IEEE80211_FC1_DIR_TODS:
1975                 ra = header->i_addr1;
1976                 sa = ta = header->i_addr2;
1977                 da = header->i_addr3;
1978                 trim = sizeof(struct ieee80211_frame);
1979                 RAY_DPRINTF(sc, RAY_DBG_RX, "from %6D to %6D ap %6D",
1980                     sa, ":", da, ":", ra, ":");
1981                 break;
1982
1983         case IEEE80211_FC1_DIR_DSTODS:
1984                 ra = header->i_addr1;
1985                 ta = header->i_addr2;
1986                 da = header->i_addr3;
1987                 sa = (u_int8_t *)header+1;
1988                 trim = sizeof(struct ieee80211_frame) + ETHER_ADDR_LEN;
1989                 RAY_DPRINTF(sc, RAY_DBG_RX, "from %6D to %6D ap %6D to %6D",
1990                     sa, ":", da, ":", ta, ":", ra, ":");
1991                 break;
1992         }
1993
1994         /*
1995          * Framing
1996          *
1997          * Each case must leave an Ethernet header and adjust trim.
1998          */
1999         switch (sc->sc_c.np_framing) {
2000
2001         case RAY_FRAMING_ENCAPSULATION:
2002                 /* A NOP as the Ethernet header is in the packet */
2003                 break;
2004
2005         case RAY_FRAMING_TRANSLATION:
2006                 /* Check that we have an LLC and SNAP sequence */
2007                 llc = (struct llc *)((u_int8_t *)header + trim);
2008                 if (llc->llc_dsap == LLC_SNAP_LSAP &&
2009                     llc->llc_ssap == LLC_SNAP_LSAP &&
2010                     llc->llc_control == LLC_UI &&
2011                     llc->llc_un.type_snap.org_code[0] == 0 &&
2012                     llc->llc_un.type_snap.org_code[1] == 0 &&
2013                     llc->llc_un.type_snap.org_code[2] == 0) {
2014                         /*
2015                          * This is not magic. RFC1042 header is 8
2016                          * bytes, with the last two bytes being the
2017                          * ether type. So all we need is another
2018                          * ETHER_ADDR_LEN bytes to write the
2019                          * destination into.
2020                          */
2021                         trim -= ETHER_ADDR_LEN;
2022                         eh = (struct ether_header *)((u_int8_t *)header + trim);
2023
2024                         /*
2025                          * Copy carefully to avoid mashing the MAC
2026                          * addresses. The address layout in the .11 header
2027                          * does make sense, honest, but it is a pain.
2028                          * 
2029                          * NODS         da sa           no risk              
2030                          * FROMDS       da ta sa        sa then da           
2031                          * DSTODS       ra ta da sa     sa then da           
2032                          * TODS         ra sa da        da then sa           
2033                          */
2034                         if (sa > da) {
2035                                 /* Copy sa first */
2036                                 bcopy(sa, eh->ether_shost, ETHER_ADDR_LEN);
2037                                 bcopy(da, eh->ether_dhost, ETHER_ADDR_LEN);
2038                         } else {
2039                                 /* Copy da first */
2040                                 bcopy(da, eh->ether_dhost, ETHER_ADDR_LEN);
2041                                 bcopy(sa, eh->ether_shost, ETHER_ADDR_LEN);
2042                         }
2043
2044                 } else {
2045
2046                         /* Assume RAY_FRAMING_ENCAPSULATION */
2047                         RAY_RECERR(sc,
2048                             "got encapsulated packet but in translation mode");
2049
2050                 }
2051                 break;
2052
2053         default:
2054                 RAY_RECERR(sc, "unknown framing type %d", sc->sc_c.np_framing);
2055                 ifp->if_ierrors++;
2056                 m_freem(m0);
2057                 return;
2058         }
2059         RAY_MBUF_DUMP(sc, RAY_DBG_RX, m0, "(2) packet after framing");
2060
2061         /*
2062          * Finally, do a bit of house keeping before sending the packet
2063          * up the stack.
2064          */
2065         m_adj(m0, trim);
2066         RAY_MBUF_DUMP(sc, RAY_DBG_RX, m0, "(3) packet after trimming");
2067         ifp->if_ipackets++;
2068         ray_rx_update_cache(sc, header->i_addr2, siglev, antenna);
2069         (*ifp->if_input)(ifp, m0);
2070 }
2071
2072 /*
2073  * Deal with MGT packet types
2074  */
2075 static void
2076 ray_rx_mgt(struct ray_softc *sc, struct mbuf *m0)
2077 {
2078         struct ifnet *ifp = &sc->arpcom.ac_if;
2079         struct ieee80211_frame *header = mtod(m0, struct ieee80211_frame *);
2080
2081         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_MGT, "");
2082
2083         if ((header->i_fc[1] & IEEE80211_FC1_DIR_MASK) !=
2084             IEEE80211_FC1_DIR_NODS) {
2085                 RAY_RECERR(sc, "MGT TODS/FROMDS wrong fc1 0x%x",
2086                     header->i_fc[1] & IEEE80211_FC1_DIR_MASK);
2087                 ifp->if_ierrors++;
2088                 m_freem(m0);
2089                 return;
2090         }
2091
2092         /*
2093          * Check the the mgt packet subtype, some packets should be
2094          * dropped depending on the mode the station is in. See pg
2095          * 52(60) of docs
2096          *
2097          * P - proccess, J - Junk, E - ECF deals with, I - Illegal
2098          * ECF Proccesses
2099          *  AHDOC procces or junk
2100          *   INFRA STA process or junk
2101          *    INFRA AP process or jumk
2102          * 
2103          * +PPP IEEE80211_FC0_SUBTYPE_BEACON
2104          * +EEE IEEE80211_FC0_SUBTYPE_PROBE_REQ
2105          * +EEE IEEE80211_FC0_SUBTYPE_PROBE_RESP
2106          *  PPP IEEE80211_FC0_SUBTYPE_AUTH
2107          *  PPP IEEE80211_FC0_SUBTYPE_DEAUTH
2108          *  JJP IEEE80211_FC0_SUBTYPE_ASSOC_REQ
2109          *  JPJ IEEE80211_FC0_SUBTYPE_ASSOC_RESP
2110          *  JPP IEEE80211_FC0_SUBTYPE_DISASSOC
2111          *  JJP IEEE80211_FC0_SUBTYPE_REASSOC_REQ
2112          *  JPJ IEEE80211_FC0_SUBTYPE_REASSOC_RESP
2113          * +EEE IEEE80211_FC0_SUBTYPE_ATIM
2114          */
2115         RAY_MBUF_DUMP(sc, RAY_DBG_MGT, m0, "MGT packet");
2116         switch (header->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK) {
2117
2118         case IEEE80211_FC0_SUBTYPE_BEACON:
2119                 RAY_DPRINTF(sc, RAY_DBG_MGT, "BEACON MGT packet");
2120                 ray_rx_mgt_beacon(sc, m0);
2121                 break;
2122
2123         case IEEE80211_FC0_SUBTYPE_AUTH:
2124                 RAY_DPRINTF(sc, RAY_DBG_MGT, "AUTH MGT packet");
2125                 ray_rx_mgt_auth(sc, m0);
2126                 break;
2127
2128         case IEEE80211_FC0_SUBTYPE_DEAUTH:
2129                 RAY_DPRINTF(sc, RAY_DBG_MGT, "DEAUTH MGT packet");
2130                 /* XXX ray_rx_mgt_deauth(sc, m0); */
2131                 break;
2132
2133         case IEEE80211_FC0_SUBTYPE_ASSOC_REQ:
2134         case IEEE80211_FC0_SUBTYPE_REASSOC_REQ:
2135                 RAY_DPRINTF(sc, RAY_DBG_MGT, "(RE)ASSOC_REQ MGT packet");
2136                 if ((sc->sc_c.np_net_type == RAY_MIB_NET_TYPE_INFRA) &&
2137                     (sc->sc_c.np_ap_status == RAY_MIB_AP_STATUS_AP))
2138                         RAY_RECERR(sc, "can't be an AP yet"); /* XXX_ACTING_AP */
2139                 break;
2140                         
2141         case IEEE80211_FC0_SUBTYPE_ASSOC_RESP:
2142         case IEEE80211_FC0_SUBTYPE_REASSOC_RESP:
2143                 RAY_DPRINTF(sc, RAY_DBG_MGT, "(RE)ASSOC_RESP MGT packet");
2144                 if ((sc->sc_c.np_net_type == RAY_MIB_NET_TYPE_INFRA) &&
2145                     (sc->sc_c.np_ap_status == RAY_MIB_AP_STATUS_TERMINAL))
2146                         RAY_RECERR(sc, "can't be in INFRA yet"); /* XXX_INFRA */
2147                 break;
2148
2149         case IEEE80211_FC0_SUBTYPE_DISASSOC:
2150                 RAY_DPRINTF(sc, RAY_DBG_MGT, "DISASSOC MGT packet");
2151                 if (sc->sc_c.np_net_type == RAY_MIB_NET_TYPE_INFRA)
2152                         RAY_RECERR(sc, "can't be in INFRA yet"); /* XXX_INFRA */
2153                 break;
2154
2155         case IEEE80211_FC0_SUBTYPE_PROBE_REQ:
2156         case IEEE80211_FC0_SUBTYPE_PROBE_RESP:
2157         case IEEE80211_FC0_SUBTYPE_ATIM:
2158                 RAY_RECERR(sc, "unexpected MGT packet subtype 0x%0x",
2159                     header->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK);
2160                 ifp->if_ierrors++;
2161                 break;
2162                 
2163         default:
2164                 RAY_RECERR(sc, "reserved MGT packet subtype 0x%x",
2165                     header->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK);
2166                 ifp->if_ierrors++;
2167         }
2168
2169         m_freem(m0);
2170 }
2171
2172 /*
2173  * Deal with BEACON management packet types
2174  * XXX furtle anything interesting out
2175  * XXX Note that there are rules governing what beacons to read
2176  * XXX see 8802 S7.2.3, S11.1.2.3
2177  * XXX is this actually useful?
2178  */
2179 static void
2180 ray_rx_mgt_beacon(struct ray_softc *sc, struct mbuf *m0)
2181 {
2182         struct ieee80211_frame *header = mtod(m0, struct ieee80211_frame *);
2183         ieee80211_mgt_beacon_t beacon = (u_int8_t *)(header+1);
2184         struct ieee80211_information elements;
2185
2186         u_int64_t *timestamp;
2187
2188         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_MGT, "");
2189
2190         timestamp = (u_int64_t *)beacon;
2191
2192 RAY_DPRINTF(sc, RAY_DBG_MGT, "timestamp\t0x%x", *timestamp);
2193 RAY_DPRINTF(sc, RAY_DBG_MGT, "interval\t\t0x%x", IEEE80211_BEACON_INTERVAL(beacon));
2194 RAY_DPRINTF(sc, RAY_DBG_MGT, "capability\t0x%x", IEEE80211_BEACON_CAPABILITY(beacon));
2195
2196         ray_rx_mgt_info(sc, m0, &elements);
2197
2198 }
2199
2200 static void
2201 ray_rx_mgt_info(struct ray_softc *sc, struct mbuf *m0, struct ieee80211_information *elements)
2202 {
2203         struct ifnet *ifp = &sc->arpcom.ac_if;
2204         struct ieee80211_frame *header = mtod(m0, struct ieee80211_frame *);
2205         ieee80211_mgt_beacon_t beacon = (u_int8_t *)(header+1);
2206         ieee80211_mgt_beacon_t bp, be;
2207         int len;
2208
2209         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_MGT, "");
2210
2211         bp = beacon + 12;
2212         be = mtod(m0, u_int8_t *) + m0->m_len;
2213         
2214         while (bp < be) {
2215                 len = *(bp + 1);
2216                 RAY_DPRINTF(sc, RAY_DBG_MGT, "id 0x%02x length %d", *bp, len);
2217
2218                 switch (*bp) {
2219
2220                 case IEEE80211_ELEMID_SSID:
2221                         if (len  > IEEE80211_NWID_LEN) {
2222                                 RAY_RECERR(sc, "bad SSD length: %d from %6D",
2223                                     len, header->i_addr2, ":");
2224                         }
2225                         strncpy(elements->ssid, bp + 2, len);
2226                         elements->ssid[len] = 0;
2227                         RAY_DPRINTF(sc, RAY_DBG_MGT,
2228                             "beacon ssid %s", elements->ssid);
2229                         break; 
2230
2231                 case IEEE80211_ELEMID_RATES:
2232                         RAY_DPRINTF(sc, RAY_DBG_MGT, "rates");
2233                         break;
2234
2235                 case IEEE80211_ELEMID_FHPARMS:
2236                         elements->fh.dwell = bp[2] + (bp[3] << 8);
2237                         elements->fh.set = bp[4];
2238                         elements->fh.pattern = bp[5];
2239                         elements->fh.index = bp[6];
2240                         RAY_DPRINTF(sc, RAY_DBG_MGT,
2241                             "fhparams dwell\t0x%04x", elements->fh.dwell);
2242                         RAY_DPRINTF(sc, RAY_DBG_MGT,
2243                             "fhparams set\t0x%02x", elements->fh.set);
2244                         RAY_DPRINTF(sc, RAY_DBG_MGT,
2245                             "fhparams pattern\t0x%02x", elements->fh.pattern);
2246                         RAY_DPRINTF(sc, RAY_DBG_MGT,
2247                             "fhparams index\t0x%02x", elements->fh.index);
2248                         break;
2249
2250                 case IEEE80211_ELEMID_DSPARMS:
2251                         RAY_RECERR(sc, "got direct sequence params!");
2252                         break;
2253
2254                 case IEEE80211_ELEMID_CFPARMS:
2255                         RAY_DPRINTF(sc, RAY_DBG_MGT, "cfparams");
2256                         break;
2257
2258                 case IEEE80211_ELEMID_TIM:
2259                         elements->tim.count = bp[2];
2260                         elements->tim.period = bp[3];
2261                         elements->tim.bitctl = bp[4];
2262                         RAY_DPRINTF(sc, RAY_DBG_MGT,
2263                             "tim count\t0x%02x", elements->tim.count);
2264                         RAY_DPRINTF(sc, RAY_DBG_MGT,
2265                             "tim period\t0x%02x", elements->tim.period);
2266                         RAY_DPRINTF(sc, RAY_DBG_MGT,
2267                             "tim bitctl\t0x%02x", elements->tim.bitctl);
2268 #if RAY_DEBUG & RAY_DBG_MGT
2269                         {
2270                                 int i;
2271                                 for (i = 5; i < len + 1; i++)
2272                                         RAY_DPRINTF(sc, RAY_DBG_MGT,
2273                                             "tim pvt[%03d]\t0x%02x", i-5, bp[i]);
2274                         }
2275 #endif
2276                         break;
2277                         
2278                 case IEEE80211_ELEMID_IBSSPARMS:
2279                         elements->ibss.atim = bp[2] + (bp[3] << 8);
2280                         RAY_DPRINTF(sc, RAY_DBG_MGT,
2281                             "ibssparams atim\t0x%02x", elements->ibss.atim);
2282                         break;
2283
2284                 case IEEE80211_ELEMID_CHALLENGE:
2285                         RAY_DPRINTF(sc, RAY_DBG_MGT, "challenge");
2286                         break;
2287
2288                 default:
2289                         RAY_RECERR(sc, "reserved MGT element id 0x%x", *bp);
2290                         ifp->if_ierrors++;break;
2291                 }
2292                 bp += bp[1] + 2; 
2293         }
2294 }
2295
2296 /*
2297  * Deal with AUTH management packet types
2298  */
2299 static void
2300 ray_rx_mgt_auth(struct ray_softc *sc, struct mbuf *m0)
2301 {
2302         struct ieee80211_frame *header = mtod(m0, struct ieee80211_frame *);
2303         ieee80211_mgt_auth_t auth = (u_int8_t *)(header+1);
2304
2305         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_AUTH, "");
2306
2307         switch (IEEE80211_AUTH_ALGORITHM(auth)) {
2308             
2309         case IEEE80211_AUTH_ALG_OPEN:
2310                 RAY_DPRINTF(sc, RAY_DBG_AUTH,
2311                     "open system authentication sequence number %d",
2312                     IEEE80211_AUTH_TRANSACTION(auth));
2313                 if (IEEE80211_AUTH_TRANSACTION(auth) ==
2314                     IEEE80211_AUTH_OPEN_REQUEST) {
2315
2316 /* XXX_AUTH use ray_init_auth_send */
2317
2318                 } else if (IEEE80211_AUTH_TRANSACTION(auth) == 
2319                     IEEE80211_AUTH_OPEN_RESPONSE)
2320                         ray_init_auth_done(sc, IEEE80211_AUTH_STATUS(auth));
2321                 break;
2322
2323         case IEEE80211_AUTH_ALG_SHARED:
2324                 RAY_RECERR(sc,
2325                     "shared key authentication sequence number %d",
2326                     IEEE80211_AUTH_TRANSACTION(auth));
2327                 break;
2328         
2329         default:
2330                 RAY_RECERR(sc,
2331                     "reserved authentication subtype 0x%04hx",
2332                     IEEE80211_AUTH_ALGORITHM(auth));
2333                 break;
2334         }
2335 }
2336
2337 /*
2338  * Deal with CTL packet types
2339  */
2340 static void
2341 ray_rx_ctl(struct ray_softc *sc, struct mbuf *m0)
2342 {
2343         struct ifnet *ifp = &sc->arpcom.ac_if;
2344         struct ieee80211_frame *header = mtod(m0, struct ieee80211_frame *);
2345
2346         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_CTL, "");
2347
2348         if ((header->i_fc[1] & IEEE80211_FC1_DIR_MASK) !=
2349             IEEE80211_FC1_DIR_NODS) {
2350                 RAY_RECERR(sc, "CTL TODS/FROMDS wrong fc1 0x%x",
2351                     header->i_fc[1] & IEEE80211_FC1_DIR_MASK);
2352                 ifp->if_ierrors++;
2353                 m_freem(m0);
2354                 return;
2355         }
2356
2357         /*
2358          * Check the the ctl packet subtype, some packets should be
2359          * dropped depending on the mode the station is in. The ECF
2360          * should deal with everything but the power save poll to an
2361          * AP. See pg 52(60) of docs.
2362          */
2363         RAY_MBUF_DUMP(sc, RAY_DBG_CTL, m0, "CTL packet");
2364         switch (header->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK) {
2365
2366         case IEEE80211_FC0_SUBTYPE_PS_POLL:
2367                 RAY_DPRINTF(sc, RAY_DBG_CTL, "PS_POLL CTL packet");
2368                 if ((sc->sc_d.np_net_type == RAY_MIB_NET_TYPE_INFRA) &&
2369                     (sc->sc_c.np_ap_status == RAY_MIB_AP_STATUS_AP))
2370                         RAY_RECERR(sc, "can't be an AP yet"); /* XXX_ACTING_AP */
2371                 break;
2372
2373         case IEEE80211_FC0_SUBTYPE_RTS:
2374         case IEEE80211_FC0_SUBTYPE_CTS:
2375         case IEEE80211_FC0_SUBTYPE_ACK:
2376         case IEEE80211_FC0_SUBTYPE_CF_END:
2377         case IEEE80211_FC0_SUBTYPE_CF_END_ACK:
2378                 RAY_RECERR(sc, "unexpected CTL packet subtype 0x%0x",
2379                     header->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK);
2380                 ifp->if_ierrors++;
2381                 break;
2382
2383         default:
2384                 RAY_RECERR(sc, "reserved CTL packet subtype 0x%x",
2385                     header->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK);
2386                 ifp->if_ierrors++;
2387         }
2388
2389         m_freem(m0);
2390 }
2391
2392 /*
2393  * Update rx level and antenna cache
2394  */
2395 static void
2396 ray_rx_update_cache(struct ray_softc *sc, u_int8_t *src, u_int8_t siglev, u_int8_t antenna)
2397 {
2398         struct timeval mint;
2399         struct ray_siglev *sl;
2400         int i, mini;
2401
2402         RAY_DPRINTF(sc, RAY_DBG_SUBR, "");
2403
2404         /* Try to find host */
2405         for (i = 0; i < RAY_NSIGLEVRECS; i++) {
2406                 sl = &sc->sc_siglevs[i];
2407                 if (bcmp(sl->rsl_host, src, ETHER_ADDR_LEN) == 0)
2408                         goto found;
2409         }
2410         /* Not found, find oldest slot */
2411         mini = 0;
2412         mint.tv_sec = LONG_MAX;
2413         mint.tv_usec = 0;
2414         for (i = 0; i < RAY_NSIGLEVRECS; i++) {
2415                 sl = &sc->sc_siglevs[i];
2416                 if (timevalcmp(&sl->rsl_time, &mint, <)) {
2417                         mini = i;
2418                         mint = sl->rsl_time;
2419                 }
2420         }
2421         sl = &sc->sc_siglevs[mini];
2422         bzero(sl->rsl_siglevs, RAY_NSIGLEV);
2423         bzero(sl->rsl_antennas, RAY_NANTENNA);
2424         bcopy(src, sl->rsl_host, ETHER_ADDR_LEN);
2425
2426 found:
2427         microtime(&sl->rsl_time);
2428         bcopy(sl->rsl_siglevs, &sl->rsl_siglevs[1], RAY_NSIGLEV-1);
2429         sl->rsl_siglevs[0] = siglev;
2430         if (sc->sc_version != RAY_ECFS_BUILD_4) {
2431                 bcopy(sl->rsl_antennas, &sl->rsl_antennas[1], RAY_NANTENNA-1);
2432                 sl->rsl_antennas[0] = antenna;
2433         }
2434 }
2435
2436 /*
2437  * Interrupt handling
2438  */
2439
2440 /*
2441  * Process an interrupt
2442  */
2443 static void
2444 ray_intr(void *xsc)
2445 {
2446         struct ray_softc *sc = (struct ray_softc *)xsc;
2447         struct ifnet *ifp = &sc->arpcom.ac_if;
2448         size_t ccs;
2449         u_int8_t cmd, status;
2450         int ccsi;
2451
2452         RAY_DPRINTF(sc, RAY_DBG_SUBR, "");
2453         RAY_MAP_CM(sc);
2454
2455         if ((sc == NULL) || (sc->sc_gone))
2456                 return;
2457
2458         /*
2459          * Check that the interrupt was for us, if so get the rcs/ccs
2460          * and vector on the command contained within it.
2461          */
2462         if (RAY_HCS_INTR(sc)) {
2463                 ccsi = SRAM_READ_1(sc, RAY_SCB_RCSI);
2464                 ccs = RAY_CCS_ADDRESS(ccsi);
2465                 cmd = SRAM_READ_FIELD_1(sc, ccs, ray_cmd, c_cmd);
2466                 status = SRAM_READ_FIELD_1(sc, ccs, ray_cmd, c_status);
2467                 if (ccsi <= RAY_CCS_LAST)
2468                         ray_intr_ccs(sc, cmd, status, ccs);
2469                 else if (ccsi <= RAY_RCS_LAST)
2470                         ray_intr_rcs(sc, cmd, ccs);
2471                 else
2472                     RAY_RECERR(sc, "bad ccs index 0x%x", ccsi);
2473                 RAY_HCS_CLEAR_INTR(sc);
2474         }
2475
2476         /* Send any packets lying around and update error counters */
2477         if ((ifp->if_flags & IFF_OACTIVE) == 0 && !ifq_is_empty(&ifp->if_snd))
2478                 ray_tx(ifp);
2479         if ((++sc->sc_checkcounters % 32) == 0)
2480                 ray_intr_updt_errcntrs(sc);
2481 }
2482
2483 /*
2484  * Read the error counters.
2485  */
2486 static void
2487 ray_intr_updt_errcntrs(struct ray_softc *sc)
2488 {
2489         size_t csc;
2490
2491         RAY_DPRINTF(sc, RAY_DBG_SUBR, "");
2492         RAY_MAP_CM(sc);
2493
2494         /*
2495          * The card implements the following protocol to keep the
2496          * values from being changed while read: It checks the `own'
2497          * bit and if zero writes the current internal counter value,
2498          * it then sets the `own' bit to 1. If the `own' bit was 1 it
2499          * incremenets its internal counter. The user thus reads the
2500          * counter if the `own' bit is one and then sets the own bit
2501          * to 0.
2502          */
2503         csc = RAY_STATUS_BASE;
2504         if (SRAM_READ_FIELD_1(sc, csc, ray_csc, csc_mrxo_own)) {
2505                 sc->sc_rxoverflow +=
2506                     SRAM_READ_FIELD_2(sc, csc, ray_csc, csc_mrx_overflow);
2507                 SRAM_WRITE_FIELD_1(sc, csc, ray_csc, csc_mrxo_own, 0);
2508         }
2509         if (SRAM_READ_FIELD_1(sc, csc, ray_csc, csc_mrxc_own)) {
2510                 sc->sc_rxcksum +=
2511                     SRAM_READ_FIELD_2(sc, csc, ray_csc, csc_mrx_overflow);
2512                 SRAM_WRITE_FIELD_1(sc, csc, ray_csc, csc_mrxc_own, 0);
2513         }
2514         if (SRAM_READ_FIELD_1(sc, csc, ray_csc, csc_rxhc_own)) {
2515                 sc->sc_rxhcksum +=
2516                     SRAM_READ_FIELD_2(sc, csc, ray_csc, csc_rx_hcksum);
2517                 SRAM_WRITE_FIELD_1(sc, csc, ray_csc, csc_rxhc_own, 0);
2518         }
2519         sc->sc_rxnoise = SRAM_READ_FIELD_1(sc, csc, ray_csc, csc_rx_noise);
2520 }
2521
2522 /*
2523  * Process CCS command completion
2524  */
2525 static void
2526 ray_intr_ccs(struct ray_softc *sc, u_int8_t cmd, u_int8_t status, size_t ccs)
2527 {
2528         RAY_DPRINTF(sc, RAY_DBG_SUBR, "");
2529
2530         switch (cmd) {
2531
2532         case RAY_CMD_DOWNLOAD_PARAMS:
2533                 RAY_DPRINTF(sc, RAY_DBG_COM, "START_PARAMS");
2534                 ray_init_download_done(sc, status, ccs);
2535                 break;
2536
2537         case RAY_CMD_UPDATE_PARAMS:
2538                 RAY_DPRINTF(sc, RAY_DBG_COM, "UPDATE_PARAMS");
2539                 ray_upparams_done(sc, status, ccs);
2540                 break;
2541
2542         case RAY_CMD_REPORT_PARAMS:
2543                 RAY_DPRINTF(sc, RAY_DBG_COM, "REPORT_PARAMS");
2544                 ray_repparams_done(sc, status, ccs);
2545                 break;
2546
2547         case RAY_CMD_UPDATE_MCAST:
2548                 RAY_DPRINTF(sc, RAY_DBG_COM, "UPDATE_MCAST");
2549                 ray_mcast_done(sc, status, ccs);
2550                 break;
2551
2552         case RAY_CMD_START_NET:
2553         case RAY_CMD_JOIN_NET:
2554                 RAY_DPRINTF(sc, RAY_DBG_COM, "START|JOIN_NET");
2555                 ray_init_sj_done(sc, status, ccs);
2556                 break;
2557
2558         case RAY_CMD_TX_REQ:
2559                 RAY_DPRINTF(sc, RAY_DBG_COM, "TX_REQ");
2560                 ray_tx_done(sc, status, ccs);
2561                 break;
2562
2563         case RAY_CMD_START_ASSOC:
2564                 RAY_DPRINTF(sc, RAY_DBG_COM, "START_ASSOC");
2565                 ray_init_assoc_done(sc, status, ccs);
2566                 break;
2567
2568         case RAY_CMD_UPDATE_APM:
2569                 RAY_RECERR(sc, "unexpected UPDATE_APM");
2570                 break;
2571
2572         case RAY_CMD_TEST_MEM:
2573                 RAY_RECERR(sc, "unexpected TEST_MEM");
2574                 break;
2575
2576         case RAY_CMD_SHUTDOWN:
2577                 RAY_RECERR(sc, "unexpected SHUTDOWN");
2578                 break;
2579
2580         case RAY_CMD_DUMP_MEM:
2581                 RAY_RECERR(sc, "unexpected DUMP_MEM");
2582                 break;
2583
2584         case RAY_CMD_START_TIMER:
2585                 RAY_RECERR(sc, "unexpected START_TIMER");
2586                 break;
2587
2588         default:
2589                 RAY_RECERR(sc, "unknown command 0x%x", cmd);
2590                 break;
2591         }
2592 }
2593
2594 /*
2595  * Process ECF command request
2596  */
2597 static void
2598 ray_intr_rcs(struct ray_softc *sc, u_int8_t cmd, size_t rcs)
2599 {
2600         RAY_DPRINTF(sc, RAY_DBG_SUBR, "");
2601
2602         switch (cmd) {
2603
2604         case RAY_ECMD_RX_DONE:
2605                 RAY_DPRINTF(sc, RAY_DBG_RX, "RX_DONE");
2606                 ray_rx(sc, rcs);
2607                 break;
2608
2609         case RAY_ECMD_REJOIN_DONE:
2610                 RAY_DPRINTF(sc, RAY_DBG_RX, "REJOIN_DONE");
2611                 sc->sc_c.np_havenet = 1; /* XXX Should not be here but in function */
2612                 break;
2613
2614         case RAY_ECMD_ROAM_START:
2615                 RAY_DPRINTF(sc, RAY_DBG_RX, "ROAM_START");
2616                 sc->sc_c.np_havenet = 0; /* XXX Should not be here but in function */
2617                 break;
2618
2619         case RAY_ECMD_JAPAN_CALL_SIGNAL:
2620                 RAY_RECERR(sc, "unexpected JAPAN_CALL_SIGNAL");
2621                 break;
2622
2623         default:
2624                 RAY_RECERR(sc, "unknown command 0x%x", cmd);
2625                 break;
2626         }
2627
2628         RAY_CCS_FREE(sc, rcs);
2629 }
2630
2631 /*
2632  * User land entry to multicast list changes
2633  */
2634 static int
2635 ray_mcast_user(struct ray_softc *sc)
2636 {
2637         struct ray_comq_entry *com[2];
2638         int error, ncom;
2639
2640         RAY_DPRINTF(sc, RAY_DBG_SUBR, "");
2641
2642         /*
2643          * Do all checking in the runq to preserve ordering.
2644          *
2645          * We run promisc to pick up changes to the ALL_MULTI
2646          * interface flag.
2647          */
2648         ncom = 0;
2649         com[ncom++] = RAY_COM_MALLOC(ray_mcast, 0);
2650         com[ncom++] = RAY_COM_MALLOC(ray_promisc, 0);
2651
2652         RAY_COM_RUNQ(sc, com, ncom, "raymcast", error);
2653
2654         /* XXX no real error processing from anything yet! */
2655
2656         RAY_COM_FREE(com, ncom);
2657
2658         return (error);
2659 }
2660
2661 /*
2662  * Runq entry to setting the multicast filter list
2663  *
2664  * MUST always be followed by a call to ray_promisc to pick up changes
2665  * to promisc flag
2666  */
2667 static void
2668 ray_mcast(struct ray_softc *sc, struct ray_comq_entry *com)
2669 {
2670         struct ifnet *ifp = &sc->arpcom.ac_if;
2671         struct ifmultiaddr *ifma;
2672         size_t bufp;
2673         int count = 0;
2674
2675         RAY_DPRINTF(sc, RAY_DBG_SUBR, "");
2676         RAY_MAP_CM(sc);
2677
2678         /*
2679          * If card is not running we don't need to update this.
2680          */
2681         if (!(ifp->if_flags & IFF_RUNNING)) {
2682                 RAY_DPRINTF(sc, RAY_DBG_IOCTL, "not running");
2683                 ray_com_runq_done(sc);
2684                 return;
2685         }
2686
2687         /*
2688          * The multicast list is only 16 items long so use promiscuous
2689          * mode and don't bother updating the multicast list.
2690          */
2691         for (ifma = ifp->if_multiaddrs.lh_first; ifma != NULL;
2692             ifma = ifma->ifma_link.le_next)
2693                 count++;
2694         if (count == 0) {
2695                 ray_com_runq_done(sc);
2696                 return;
2697         } else if (count > 16) {
2698                 ifp->if_flags |= IFF_ALLMULTI;
2699                 ray_com_runq_done(sc);
2700                 return;
2701         } else if (ifp->if_flags & IFF_ALLMULTI)
2702                 ifp->if_flags &= ~IFF_ALLMULTI;
2703
2704         /*
2705          * Kick the card
2706          */
2707         ray_ccs_fill(sc, com->c_ccs, RAY_CMD_UPDATE_MCAST);
2708         SRAM_WRITE_FIELD_1(sc, com->c_ccs,
2709             ray_cmd_update_mcast, c_nmcast, count);
2710         bufp = RAY_HOST_TO_ECF_BASE;
2711         for (ifma = ifp->if_multiaddrs.lh_first; ifma != NULL;
2712             ifma = ifma->ifma_link.le_next) {
2713                 SRAM_WRITE_REGION(
2714                     sc,
2715                     bufp,
2716                     LLADDR((struct sockaddr_dl *)ifma->ifma_addr),
2717                     ETHER_ADDR_LEN
2718                 );
2719                 bufp += ETHER_ADDR_LEN;
2720         }
2721
2722         ray_com_ecf(sc, com);
2723 }
2724
2725 /*
2726  * Complete the multicast filter list update
2727  */
2728 static void
2729 ray_mcast_done(struct ray_softc *sc, u_int8_t status, size_t ccs)
2730 {
2731         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_STARTJOIN, "");
2732         RAY_COM_CHECK(sc, ccs);
2733
2734         RAY_CCSERR(sc, status, if_oerrors); /* XXX error counter */
2735
2736         ray_com_ecf_done(sc);
2737 }
2738
2739 /*
2740  * Runq entry to set/reset promiscuous mode
2741  */
2742 static void
2743 ray_promisc(struct ray_softc *sc, struct ray_comq_entry *com)
2744 {
2745         struct ifnet *ifp = &sc->arpcom.ac_if;
2746
2747         RAY_DPRINTF(sc, RAY_DBG_SUBR, "");
2748         RAY_MAP_CM(sc);
2749
2750         /*
2751          * If card not running or we already have the right flags
2752          * we don't need to update this
2753          */
2754         sc->sc_d.np_promisc = !!(ifp->if_flags & (IFF_PROMISC | IFF_ALLMULTI));
2755         if (!(ifp->if_flags & IFF_RUNNING) ||
2756             (sc->sc_c.np_promisc == sc->sc_d.np_promisc)) {
2757                 ray_com_runq_done(sc);
2758                 return;
2759         }
2760
2761         /*
2762          * Kick the card
2763          */
2764         ray_ccs_fill(sc, com->c_ccs, RAY_CMD_UPDATE_PARAMS);
2765         SRAM_WRITE_FIELD_1(sc, com->c_ccs,
2766             ray_cmd_update, c_paramid, RAY_MIB_PROMISC);
2767         SRAM_WRITE_FIELD_1(sc, com->c_ccs, ray_cmd_update, c_nparam, 1);
2768         SRAM_WRITE_1(sc, RAY_HOST_TO_ECF_BASE, sc->sc_d.np_promisc);
2769
2770         ray_com_ecf(sc, com);
2771 }
2772
2773 /*
2774  * User land entry to parameter reporting
2775  *
2776  * As we by pass the runq to report current parameters this function
2777  * only provides a snap shot of the driver's state.
2778  */
2779 static int
2780 ray_repparams_user(struct ray_softc *sc, struct ray_param_req *pr)
2781 {
2782         struct ray_comq_entry *com[1];
2783         int error, ncom;
2784
2785         RAY_DPRINTF(sc, RAY_DBG_SUBR, "");
2786
2787         /*
2788          * Test for illegal values or immediate responses
2789          */
2790         if (pr->r_paramid > RAY_MIB_MAX)
2791                 return (EINVAL);
2792         if ((sc->sc_version == RAY_ECFS_BUILD_4) &&
2793             !(mib_info[pr->r_paramid][0] & RAY_V4))
2794                 return (EINVAL);
2795         if ((sc->sc_version == RAY_ECFS_BUILD_5) &&
2796             !(mib_info[pr->r_paramid][0] & RAY_V5))
2797                 return (EINVAL);
2798         if (pr->r_paramid > RAY_MIB_LASTUSER) {
2799                 switch (pr->r_paramid) {
2800
2801                 case  RAY_MIB_VERSION:
2802                         if (sc->sc_version == RAY_ECFS_BUILD_4)
2803                             *pr->r_data = RAY_V4;
2804                         else
2805                             *pr->r_data = RAY_V5;
2806                         break;
2807                 case  RAY_MIB_CUR_BSSID:
2808                         bcopy(sc->sc_c.np_bss_id, pr->r_data, ETHER_ADDR_LEN);
2809                         break;
2810                 case  RAY_MIB_CUR_INITED:
2811                         *pr->r_data = sc->sc_c.np_inited;
2812                         break;
2813                 case  RAY_MIB_CUR_DEF_TXRATE:
2814                         *pr->r_data = sc->sc_c.np_def_txrate;
2815                         break;
2816                 case  RAY_MIB_CUR_ENCRYPT:
2817                         *pr->r_data = sc->sc_c.np_encrypt;
2818                         break;
2819                 case  RAY_MIB_CUR_NET_TYPE:
2820                         *pr->r_data = sc->sc_c.np_net_type;
2821                         break;
2822                 case  RAY_MIB_CUR_SSID:
2823                         bcopy(sc->sc_c.np_ssid, pr->r_data, IEEE80211_NWID_LEN);
2824                         break;
2825                 case  RAY_MIB_CUR_PRIV_START:
2826                         *pr->r_data = sc->sc_c.np_priv_start;
2827                         break;
2828                 case  RAY_MIB_CUR_PRIV_JOIN:
2829                         *pr->r_data = sc->sc_c.np_priv_join;
2830                         break;
2831                 case  RAY_MIB_DES_BSSID:
2832                         bcopy(sc->sc_d.np_bss_id, pr->r_data, ETHER_ADDR_LEN);
2833                         break;
2834                 case  RAY_MIB_DES_INITED:
2835                         *pr->r_data = sc->sc_d.np_inited;
2836                         break;
2837                 case  RAY_MIB_DES_DEF_TXRATE:
2838                         *pr->r_data = sc->sc_d.np_def_txrate;
2839                         break;
2840                 case  RAY_MIB_DES_ENCRYPT:
2841                         *pr->r_data = sc->sc_d.np_encrypt;
2842                         break;
2843                 case  RAY_MIB_DES_NET_TYPE:
2844                         *pr->r_data = sc->sc_d.np_net_type;
2845                         break;
2846                 case  RAY_MIB_DES_SSID:
2847                         bcopy(sc->sc_d.np_ssid, pr->r_data, IEEE80211_NWID_LEN);
2848                         break;
2849                 case  RAY_MIB_DES_PRIV_START:
2850                         *pr->r_data = sc->sc_d.np_priv_start;
2851                         break;
2852                 case  RAY_MIB_DES_PRIV_JOIN:
2853                         *pr->r_data = sc->sc_d.np_priv_join;
2854                         break;
2855                 case  RAY_MIB_CUR_AP_STATUS:
2856                         *pr->r_data = sc->sc_c.np_ap_status;
2857                         break;
2858                 case  RAY_MIB_CUR_PROMISC:
2859                         *pr->r_data = sc->sc_c.np_promisc;
2860                         break;
2861                 case  RAY_MIB_DES_AP_STATUS:
2862                         *pr->r_data = sc->sc_d.np_ap_status;
2863                         break;
2864                 case  RAY_MIB_DES_PROMISC:
2865                         *pr->r_data = sc->sc_d.np_promisc;
2866                         break;
2867                 case RAY_MIB_CUR_FRAMING:
2868                         *pr->r_data = sc->sc_c.np_framing;
2869                         break;
2870                 case RAY_MIB_DES_FRAMING:
2871                         *pr->r_data = sc->sc_d.np_framing;
2872                         break;
2873
2874                 default:
2875                         return (EINVAL);
2876                         break;
2877                 }
2878                 pr->r_failcause = 0;
2879                 if (sc->sc_version == RAY_ECFS_BUILD_4)
2880                     pr->r_len = mib_info[pr->r_paramid][RAY_MIB_INFO_SIZ4];
2881                 else if (sc->sc_version == RAY_ECFS_BUILD_5)
2882                     pr->r_len = mib_info[pr->r_paramid][RAY_MIB_INFO_SIZ5];
2883                 return (0);
2884         }
2885
2886         pr->r_failcause = 0;
2887         ncom = 0;
2888         com[ncom++] = RAY_COM_MALLOC(ray_repparams, RAY_COM_FWOK);
2889         com[ncom-1]->c_pr = pr;
2890
2891         RAY_COM_RUNQ(sc, com, ncom, "rayrparm", error);
2892
2893         /* XXX no real error processing from anything yet! */
2894         if (!com[0]->c_retval && pr->r_failcause)
2895                 error = EINVAL;
2896
2897         RAY_COM_FREE(com, ncom);
2898
2899         return (error);
2900 }
2901
2902 /*
2903  * Runq entry to read the required parameter
2904  *
2905  * The card and driver are happy for parameters to be read
2906  * whenever the card is plugged in
2907  */
2908 static void
2909 ray_repparams(struct ray_softc *sc, struct ray_comq_entry *com)
2910 {
2911         RAY_DPRINTF(sc, RAY_DBG_SUBR, "");
2912         RAY_MAP_CM(sc);
2913
2914         /*
2915          * Kick the card
2916          */
2917         ray_ccs_fill(sc, com->c_ccs, RAY_CMD_REPORT_PARAMS);
2918         SRAM_WRITE_FIELD_1(sc, com->c_ccs,
2919             ray_cmd_report, c_paramid, com->c_pr->r_paramid);
2920         SRAM_WRITE_FIELD_1(sc, com->c_ccs, ray_cmd_report, c_nparam, 1);
2921
2922         ray_com_ecf(sc, com);
2923 }
2924
2925 /*
2926  * Complete the parameter reporting
2927  */
2928 static void
2929 ray_repparams_done(struct ray_softc *sc, u_int8_t status, size_t ccs)
2930 {
2931         struct ray_comq_entry *com;
2932
2933         RAY_DPRINTF(sc, RAY_DBG_SUBR, "");
2934         RAY_MAP_CM(sc);
2935         RAY_COM_CHECK(sc, ccs);
2936
2937         RAY_CCSERR(sc, status, if_oerrors); /* XXX error counter */
2938
2939         com = TAILQ_FIRST(&sc->sc_comq);
2940         com->c_pr->r_failcause =
2941             SRAM_READ_FIELD_1(sc, ccs, ray_cmd_report, c_failcause);
2942         com->c_pr->r_len =
2943             SRAM_READ_FIELD_1(sc, ccs, ray_cmd_report, c_len);
2944         SRAM_READ_REGION(sc, RAY_ECF_TO_HOST_BASE,
2945             com->c_pr->r_data, com->c_pr->r_len);
2946
2947         ray_com_ecf_done(sc);
2948 }
2949
2950 /*
2951  * User land entry (and exit) to the error counters
2952  */
2953 static int
2954 ray_repstats_user(struct ray_softc *sc, struct ray_stats_req *sr)
2955 {
2956         RAY_DPRINTF(sc, RAY_DBG_SUBR, "");
2957
2958         sr->rxoverflow = sc->sc_rxoverflow;
2959         sr->rxcksum = sc->sc_rxcksum;
2960         sr->rxhcksum = sc->sc_rxhcksum;
2961         sr->rxnoise = sc->sc_rxnoise;
2962
2963         return (0);
2964 }
2965
2966 /*
2967  * User land entry to parameter update changes
2968  *
2969  * As a parameter change can cause the network parameters to be
2970  * invalid we have to re-start/join.
2971  */
2972 static int
2973 ray_upparams_user(struct ray_softc *sc, struct ray_param_req *pr)
2974 {
2975         struct ray_comq_entry *com[4];
2976         int error, ncom, todo;
2977 #define RAY_UPP_SJ      0x1
2978 #define RAY_UPP_PARAMS  0x2
2979
2980         RAY_DPRINTF(sc, RAY_DBG_SUBR, "");
2981
2982         /*
2983          * Check that the parameter is available based on firmware version
2984          */
2985         pr->r_failcause = 0;
2986         if (pr->r_paramid > RAY_MIB_LASTUSER)
2987                 return (EINVAL);
2988         if ((sc->sc_version == RAY_ECFS_BUILD_4) &&
2989             !(mib_info[pr->r_paramid][0] & RAY_V4))
2990                 return (EINVAL);
2991         if ((sc->sc_version == RAY_ECFS_BUILD_5) &&
2992             !(mib_info[pr->r_paramid][0] & RAY_V5))
2993                 return (EINVAL);
2994
2995         /*
2996          * Handle certain parameters specially
2997          */
2998         todo = 0;
2999         switch (pr->r_paramid) {
3000         case RAY_MIB_NET_TYPE:          /* Updated via START_NET JOIN_NET  */
3001                 sc->sc_d.np_net_type = *pr->r_data;
3002                 todo |= RAY_UPP_SJ;
3003                 break;
3004
3005         case RAY_MIB_SSID:              /* Updated via START_NET JOIN_NET  */
3006                 bcopy(pr->r_data, sc->sc_d.np_ssid, IEEE80211_NWID_LEN);
3007                 todo |= RAY_UPP_SJ;
3008                 break;
3009
3010         case RAY_MIB_PRIVACY_MUST_START:/* Updated via START_NET */
3011                 if (sc->sc_c.np_net_type != RAY_MIB_NET_TYPE_ADHOC)
3012                         return (EINVAL);
3013                 sc->sc_d.np_priv_start = *pr->r_data;
3014                 todo |= RAY_UPP_SJ;
3015                 break;
3016
3017         case RAY_MIB_PRIVACY_CAN_JOIN:  /* Updated via START_NET JOIN_NET  */
3018                 sc->sc_d.np_priv_join = *pr->r_data;
3019                 todo |= RAY_UPP_SJ;
3020                 break;
3021
3022         case RAY_MIB_BASIC_RATE_SET:
3023                 sc->sc_d.np_def_txrate = *pr->r_data;
3024                 todo |= RAY_UPP_PARAMS;
3025                 break;
3026
3027         case RAY_MIB_AP_STATUS: /* Unsupported */
3028         case RAY_MIB_MAC_ADDR:  /* XXX Need interface up but could be done */
3029         case RAY_MIB_PROMISC:   /* BPF */
3030                 return (EINVAL);
3031                 break;
3032
3033         default:
3034                 todo |= RAY_UPP_PARAMS;
3035                 todo |= RAY_UPP_SJ;
3036                 break;
3037         }
3038
3039         /*
3040          * Generate the runq entries as needed
3041          */
3042         ncom = 0;
3043         if (todo & RAY_UPP_PARAMS) {
3044                 com[ncom++] = RAY_COM_MALLOC(ray_upparams, 0);
3045                 com[ncom-1]->c_pr = pr;
3046         }
3047         if (todo & RAY_UPP_SJ) {
3048                 com[ncom++] = RAY_COM_MALLOC(ray_init_sj, 0);
3049                 com[ncom++] = RAY_COM_MALLOC(ray_init_auth, 0);
3050                 com[ncom++] = RAY_COM_MALLOC(ray_init_assoc, 0);
3051         }
3052
3053         RAY_COM_RUNQ(sc, com, ncom, "rayuparam", error);
3054
3055         /* XXX no real error processing from anything yet! */
3056         if (!com[0]->c_retval && pr->r_failcause)
3057                 error = EINVAL;
3058
3059         RAY_COM_FREE(com, ncom);
3060
3061         return (error);
3062 }
3063
3064 /*
3065  * Runq entry to update a parameter
3066  *
3067  * The card and driver are happy for parameters to be updated
3068  * whenever the card is plugged in
3069  *
3070  * XXX the above is a little bit of a lie until _download is sorted out and we
3071  * XXX keep local copies of things
3072  */
3073 static void
3074 ray_upparams(struct ray_softc *sc, struct ray_comq_entry *com)
3075 {
3076         RAY_DPRINTF(sc, RAY_DBG_SUBR, "");
3077         RAY_MAP_CM(sc);
3078
3079         ray_ccs_fill(sc, com->c_ccs, RAY_CMD_UPDATE_PARAMS);
3080
3081         SRAM_WRITE_FIELD_1(sc, com->c_ccs,
3082             ray_cmd_update, c_paramid, com->c_pr->r_paramid);
3083         SRAM_WRITE_FIELD_1(sc, com->c_ccs, ray_cmd_update, c_nparam, 1);
3084         SRAM_WRITE_REGION(sc, RAY_HOST_TO_ECF_BASE,
3085             com->c_pr->r_data, com->c_pr->r_len);
3086
3087         ray_com_ecf(sc, com);
3088 }
3089
3090 /*
3091  * Complete the parameter update, note that promisc finishes up here too
3092  */
3093 static void
3094 ray_upparams_done(struct ray_softc *sc, u_int8_t status, size_t ccs)
3095 {
3096         struct ray_comq_entry *com;
3097
3098         RAY_DPRINTF(sc, RAY_DBG_SUBR, "");
3099         RAY_MAP_CM(sc);
3100         RAY_COM_CHECK(sc, ccs);
3101
3102         RAY_CCSERR(sc, status, if_oerrors); /* XXX error counter */
3103
3104         com = TAILQ_FIRST(&sc->sc_comq);
3105
3106         switch (SRAM_READ_FIELD_1(sc, ccs, ray_cmd_update, c_paramid)) {
3107
3108         case RAY_MIB_PROMISC:
3109                 sc->sc_c.np_promisc = SRAM_READ_1(sc, RAY_HOST_TO_ECF_BASE);
3110                 RAY_DPRINTF(sc, RAY_DBG_IOCTL,
3111                     "promisc value %d", sc->sc_c.np_promisc);
3112                 break;
3113
3114         default:
3115                 com->c_pr->r_failcause =
3116                     SRAM_READ_FIELD_1(sc, ccs, ray_cmd_update, c_failcause);
3117                 break;
3118
3119         }
3120
3121         ray_com_ecf_done(sc);
3122 }
3123
3124 /*
3125  * Command queuing and execution
3126  */
3127
3128 /*
3129  * Set up a comq entry struct
3130  */
3131 static struct ray_comq_entry *
3132 ray_com_init(struct ray_comq_entry *com, ray_comqfn_t function, int flags, char *mesg)
3133 {
3134         com->c_function = function;
3135         com->c_flags = flags;
3136         com->c_retval = 0;
3137         com->c_ccs = NULL;
3138         com->c_wakeup = NULL;
3139         com->c_pr = NULL;
3140         com->c_mesg = mesg;
3141
3142         return (com);
3143 }
3144
3145 /*
3146  * Malloc and set up a comq entry struct
3147  */
3148 static struct ray_comq_entry *
3149 ray_com_malloc(ray_comqfn_t function, int flags, char *mesg)
3150 {
3151         struct ray_comq_entry *com;
3152
3153         MALLOC(com, struct ray_comq_entry *,
3154             sizeof(struct ray_comq_entry), M_RAYCOM, M_WAITOK);
3155     
3156         return (ray_com_init(com, function, flags, mesg));
3157 }
3158
3159 /*
3160  * Add an array of commands to the runq, get some ccs's for them and
3161  * then run, waiting on the last command.
3162  *
3163  * We add the commands to the queue first to preserve ioctl ordering.
3164  *
3165  * On recoverable errors, this routine removes the entries from the
3166  * runq. A caller can requeue the commands (and still preserve its own
3167  * processes ioctl ordering) but doesn't have to. When the card is
3168  * detached we get out quickly to prevent panics and don't bother
3169  * about the runq.
3170  */
3171 static int
3172 ray_com_runq_add(struct ray_softc *sc, struct ray_comq_entry *com[], int ncom, char *wmesg)
3173 {
3174         int i, error;
3175
3176         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_COM, "");
3177
3178         error = 0;
3179         /*
3180          * Add the commands to the runq but don't let it run until
3181          * the ccs's are allocated successfully
3182          */
3183         com[0]->c_flags |= RAY_COM_FWAIT;
3184         for (i = 0; i < ncom; i++) {
3185                 com[i]->c_wakeup = com[ncom-1];
3186                 RAY_DPRINTF(sc, RAY_DBG_COM, "adding %p", com[i]);
3187                 RAY_DCOM(sc, RAY_DBG_DCOM, com[i], "adding");
3188                 TAILQ_INSERT_TAIL(&sc->sc_comq, com[i], c_chain);
3189         }
3190         com[ncom-1]->c_flags |= RAY_COM_FWOK;
3191
3192         /*
3193          * Allocate ccs's for each command.
3194          */
3195         for (i = 0; i < ncom; i++) {
3196                 error = ray_ccs_alloc(sc, &com[i]->c_ccs, wmesg);
3197                 if (error == ENXIO)
3198                         return (ENXIO);
3199                 else if (error)
3200                         goto cleanup;
3201         }
3202
3203         /*
3204          * Allow the queue to run and sleep if needed.
3205          *
3206          * Iff the FDETACHED flag is set in the com entry we waited on
3207          * the driver is in a zombie state! The softc structure has been
3208          * freed by the generic bus detach methods - eek. We tread very
3209          * carefully!
3210          */
3211         com[0]->c_flags &= ~RAY_COM_FWAIT;
3212         ray_com_runq(sc);
3213         if (TAILQ_FIRST(&sc->sc_comq) != NULL) {
3214                 RAY_DPRINTF(sc, RAY_DBG_COM, "sleeping");
3215                 error = tsleep(com[ncom-1], PCATCH, wmesg, 0);
3216                 if (com[ncom-1]->c_flags & RAY_COM_FDETACHED)
3217                         return (ENXIO);
3218                 RAY_DPRINTF(sc, RAY_DBG_COM,
3219                     "awakened, tsleep returned 0x%x", error);
3220         } else
3221                 error = 0;
3222
3223 cleanup:
3224         /*
3225          * Only clean the queue on real errors - we don't care about it
3226          * when we detach as the queue entries are freed by the callers.
3227          */
3228         if (error && (error != ENXIO))
3229                 for (i = 0; i < ncom; i++)
3230                         if (!(com[i]->c_flags & RAY_COM_FCOMPLETED)) {
3231                                 RAY_DPRINTF(sc, RAY_DBG_COM, "removing %p",
3232                                     com[i]);
3233                                 RAY_DCOM(sc, RAY_DBG_DCOM, com[i], "removing");
3234                                 TAILQ_REMOVE(&sc->sc_comq, com[i], c_chain);
3235                                 ray_ccs_free(sc, com[i]->c_ccs);
3236                                 com[i]->c_ccs = NULL;
3237                         }
3238
3239         return (error);
3240 }
3241
3242 /*
3243  * Run the command at the head of the queue (if not already running)
3244  */
3245 static void
3246 ray_com_runq(struct ray_softc *sc)
3247 {
3248         struct ray_comq_entry *com;
3249
3250         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_COM, "");
3251
3252         com = TAILQ_FIRST(&sc->sc_comq);
3253         if ((com == NULL) ||
3254             (com->c_flags & RAY_COM_FRUNNING) ||
3255             (com->c_flags & RAY_COM_FWAIT) ||
3256             (com->c_flags & RAY_COM_FDETACHED))
3257                 return;
3258
3259         com->c_flags |= RAY_COM_FRUNNING;
3260         RAY_DPRINTF(sc, RAY_DBG_COM, "running %p", com);
3261         RAY_DCOM(sc, RAY_DBG_DCOM, com, "running");
3262         com->c_function(sc, com);
3263 }
3264
3265 /*
3266  * Remove run command, free ccs and wakeup caller.
3267  *
3268  * Minimal checks are done here as we ensure that the com and command
3269  * handler were matched up earlier. Must be called at splnet or higher
3270  * so that entries on the command queue are correctly removed.
3271  *
3272  * Remove the com from the comq, and wakeup the caller if it requested
3273  * to be woken. This is used for ensuring a sequence of commands
3274  * completes. Finally, re-run the queue.
3275  */
3276 static void
3277 ray_com_runq_done(struct ray_softc *sc)
3278 {
3279         struct ray_comq_entry *com;
3280
3281         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_COM, "");
3282
3283         com = TAILQ_FIRST(&sc->sc_comq); /* XXX shall we check this as below */
3284         RAY_DPRINTF(sc, RAY_DBG_COM, "removing %p", com);
3285         RAY_DCOM(sc, RAY_DBG_DCOM, com, "removing");
3286         TAILQ_REMOVE(&sc->sc_comq, com, c_chain);
3287
3288         com->c_flags &= ~RAY_COM_FRUNNING;
3289         com->c_flags |= RAY_COM_FCOMPLETED;
3290         com->c_retval = 0;
3291         ray_ccs_free(sc, com->c_ccs);
3292         com->c_ccs = NULL;
3293
3294         if (com->c_flags & RAY_COM_FWOK)
3295                 wakeup(com->c_wakeup);
3296
3297         ray_com_runq(sc);
3298
3299         /* XXX what about error on completion then? deal with when i fix
3300          * XXX the status checking
3301          *
3302          * XXX all the runq_done calls from IFF_RUNNING checks in runq
3303          * XXX routines should return EIO but shouldn't abort the runq
3304          */
3305 }
3306
3307 /*
3308  * Send a command to the ECF.
3309  */
3310 static void
3311 ray_com_ecf(struct ray_softc *sc, struct ray_comq_entry *com)
3312 {
3313         int i = 0;
3314
3315         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_COM, "");
3316         RAY_MAP_CM(sc);
3317
3318         while (!RAY_ECF_READY(sc)) {
3319                 DELAY(RAY_ECF_SPIN_DELAY);
3320                 if (++i > RAY_ECF_SPIN_TRIES)
3321                         RAY_PANIC(sc, "spun too long");
3322         }
3323         if (i != 0)
3324                 RAY_RECERR(sc, "spun %d times", i);
3325
3326         RAY_DPRINTF(sc, RAY_DBG_COM, "sending %p", com);
3327         RAY_DCOM(sc, RAY_DBG_DCOM, com, "sending");
3328         SRAM_WRITE_1(sc, RAY_SCB_CCSI, RAY_CCS_INDEX(com->c_ccs));
3329         RAY_ECF_START_CMD(sc);
3330
3331         if (RAY_COM_NEEDS_TIMO(
3332             SRAM_READ_FIELD_1(sc, com->c_ccs, ray_cmd, c_cmd))) {
3333                 RAY_DPRINTF(sc, RAY_DBG_COM, "adding timeout");
3334                 callout_reset(&sc->com_timer, RAY_COM_TIMEOUT,
3335                               ray_com_ecf_timo, sc);
3336         }
3337 }
3338
3339 /*
3340  * Deal with commands that require a timeout to test completion.
3341  *
3342  * This routine is coded to only expect one outstanding request for the
3343  * timed out requests at a time, but thats all that can be outstanding
3344  * per hardware limitations and all that we issue anyway.
3345  *
3346  * We don't do any fancy testing of the command currently issued as we
3347  * know it must be a timeout based one...unless I've got this wrong!
3348  */
3349 static void
3350 ray_com_ecf_timo(void *xsc)
3351 {
3352         struct ray_softc *sc = (struct ray_softc *)xsc;
3353         struct ray_comq_entry *com;
3354         u_int8_t cmd, status;
3355         int s;
3356
3357         s = splnet();
3358
3359         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_COM, "");
3360         RAY_MAP_CM(sc);
3361
3362         com = TAILQ_FIRST(&sc->sc_comq);
3363
3364         cmd = SRAM_READ_FIELD_1(sc, com->c_ccs, ray_cmd, c_cmd);
3365         status = SRAM_READ_FIELD_1(sc, com->c_ccs, ray_cmd, c_status);
3366         switch (status) {
3367
3368         case RAY_CCS_STATUS_COMPLETE:
3369         case RAY_CCS_STATUS_FREE:                       /* Buggy firmware */
3370                 ray_intr_ccs(sc, cmd, status, com->c_ccs);
3371                 break;
3372
3373         case RAY_CCS_STATUS_BUSY:
3374                 callout_reset(&sc->com_timer, RAY_COM_TIMEOUT,
3375                               ray_com_ecf_timo, sc);
3376                 break;
3377
3378         default:                                        /* Replicates NetBSD */
3379                 if (sc->sc_ccsinuse[RAY_CCS_INDEX(com->c_ccs)] == 1) {
3380                         /* give a chance for the interrupt to occur */
3381                         sc->sc_ccsinuse[RAY_CCS_INDEX(com->c_ccs)] = 2;
3382                         callout_reset(&sc->com_timer, RAY_COM_TIMEOUT,
3383                                       ray_com_ecf_timo, sc);
3384                 } else
3385                         ray_intr_ccs(sc, cmd, status, com->c_ccs);
3386                 break;
3387
3388         }
3389
3390         splx(s);
3391 }
3392
3393 /*
3394  * Called when interrupt handler for the command has done all it
3395  * needs to. Will be called at splnet.
3396  */
3397 static void
3398 ray_com_ecf_done(struct ray_softc *sc)
3399 {
3400         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_COM, "");
3401
3402         callout_stop(&sc->com_timer);
3403
3404         ray_com_runq_done(sc);
3405 }
3406
3407 #if RAY_DEBUG & RAY_DBG_COM
3408 /*
3409  * Process completed ECF commands that probably came from the command queue
3410  *
3411  * This routine is called after vectoring the completed ECF command
3412  * to the appropriate _done routine. It helps check everything is okay.
3413  */
3414 static void
3415 ray_com_ecf_check(struct ray_softc *sc, size_t ccs, char *mesg)
3416 {
3417         struct ray_comq_entry *com;
3418
3419         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_COM, "%s", mesg);
3420
3421         com = TAILQ_FIRST(&sc->sc_comq);
3422
3423         if (com == NULL)
3424                 RAY_PANIC(sc, "no command queue");
3425         if (com->c_ccs != ccs)
3426                 RAY_PANIC(sc, "ccs's don't match");
3427 }
3428 #endif /* RAY_DEBUG & RAY_DBG_COM */
3429
3430 /*
3431  * CCS allocators
3432  */
3433
3434 /*
3435  * Obtain a ccs for a commmand
3436  *
3437  * Returns 0 and in `ccsp' the bus offset of the free ccs. Will block
3438  * awaiting free ccs if needed - if the sleep is interrupted
3439  * EINTR/ERESTART is returned, if the card is ejected we return ENXIO.
3440  */
3441 static int
3442 ray_ccs_alloc(struct ray_softc *sc, size_t *ccsp, char *wmesg)
3443 {
3444         size_t ccs;
3445         u_int i;
3446         int error;
3447
3448         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_CCS, "");
3449         RAY_MAP_CM(sc);
3450
3451         for (;;) {
3452                 for (i = RAY_CCS_CMD_FIRST; i <= RAY_CCS_CMD_LAST; i++) {
3453                         /* we probe here to make the card go */
3454                         (void)SRAM_READ_FIELD_1(sc, RAY_CCS_ADDRESS(i), ray_cmd,
3455                             c_status);
3456                         if (!sc->sc_ccsinuse[i])
3457                                 break;
3458                 }
3459                 if (i > RAY_CCS_CMD_LAST) {
3460                         RAY_DPRINTF(sc, RAY_DBG_CCS, "sleeping");
3461                         error = tsleep(ray_ccs_alloc, PCATCH, wmesg, 0);
3462                         if ((sc == NULL) || (sc->sc_gone))
3463                                 return (ENXIO);
3464                         RAY_DPRINTF(sc, RAY_DBG_CCS,
3465                             "awakened, tsleep returned 0x%x", error);
3466                         if (error)
3467                                 return (error);
3468                 } else
3469                         break;
3470         }
3471         RAY_DPRINTF(sc, RAY_DBG_CCS, "allocated 0x%02x", i);
3472         sc->sc_ccsinuse[i] = 1;
3473         ccs = RAY_CCS_ADDRESS(i);
3474         *ccsp = ccs;
3475
3476         return (0);
3477 }
3478
3479 /*
3480  * Fill the easy bits in of a pre-allocated CCS
3481  */
3482 static void
3483 ray_ccs_fill(struct ray_softc *sc, size_t ccs, u_int cmd)
3484 {
3485         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_CCS, "");
3486         RAY_MAP_CM(sc);
3487
3488         if (ccs == NULL)
3489                 RAY_PANIC(sc, "ccs not allocated");
3490
3491         SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd, c_status, RAY_CCS_STATUS_BUSY);
3492         SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd, c_cmd, cmd);
3493         SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd, c_link, RAY_CCS_LINK_NULL);
3494 }
3495
3496 /*
3497  * Free up a ccs allocated via ray_ccs_alloc
3498  *
3499  * Return the old status. This routine is only used for ccs allocated via
3500  * ray_ccs_alloc (not tx, rx or ECF command requests).
3501  */
3502 static void
3503 ray_ccs_free(struct ray_softc *sc, size_t ccs)
3504 {
3505         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_CCS, "");
3506         RAY_MAP_CM(sc);
3507
3508 #if 1 | (RAY_DEBUG & RAY_DBG_CCS)
3509         if (!sc->sc_ccsinuse[RAY_CCS_INDEX(ccs)])
3510                 RAY_RECERR(sc, "freeing free ccs 0x%02x", RAY_CCS_INDEX(ccs));
3511 #endif /* RAY_DEBUG & RAY_DBG_CCS */
3512         if (!sc->sc_gone)
3513                 RAY_CCS_FREE(sc, ccs);
3514         sc->sc_ccsinuse[RAY_CCS_INDEX(ccs)] = 0;
3515         RAY_DPRINTF(sc, RAY_DBG_CCS, "freed 0x%02x", RAY_CCS_INDEX(ccs));
3516         wakeup(ray_ccs_alloc);
3517 }
3518
3519 /*
3520  * Obtain a ccs and tx buffer to transmit with and fill them in.
3521  *
3522  * Returns 0 and in `ccsp' the bus offset of the free ccs. Will not block
3523  * and if none available and will returns EAGAIN.
3524  *
3525  * The caller must fill in the length later.
3526  * The caller must clear the ccs on errors.
3527  */
3528 static int
3529 ray_ccs_tx(struct ray_softc *sc, size_t *ccsp, size_t *bufpp)
3530 {
3531         size_t ccs, bufp;
3532         int i;
3533         u_int8_t status;
3534
3535         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_CCS, "");
3536         RAY_MAP_CM(sc);
3537
3538         i = RAY_CCS_TX_FIRST;
3539         do {
3540                 status = SRAM_READ_FIELD_1(sc, RAY_CCS_ADDRESS(i),
3541                     ray_cmd, c_status);
3542                 if (status == RAY_CCS_STATUS_FREE)
3543                         break;
3544                 i++;
3545         } while (i <= RAY_CCS_TX_LAST);
3546         if (i > RAY_CCS_TX_LAST) {
3547                 return (EAGAIN);
3548         }
3549         RAY_DPRINTF(sc, RAY_DBG_CCS, "allocated 0x%02x", i);
3550
3551         /*
3552          * Reserve and fill the ccs - must do the length later.
3553          *
3554          * Even though build 4 and build 5 have different fields all these
3555          * are common apart from tx_rate. Neither the NetBSD driver or Linux
3556          * driver bother to overwrite this for build 4 cards.
3557          *
3558          * The start of the buffer must be aligned to a 256 byte boundary
3559          * (least significant byte of address = 0x00).
3560          */
3561         ccs = RAY_CCS_ADDRESS(i);
3562         bufp = RAY_TX_BASE + i * RAY_TX_BUF_SIZE;
3563         bufp += sc->sc_tibsize;
3564         SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_tx, c_status, RAY_CCS_STATUS_BUSY);
3565         SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_tx, c_cmd, RAY_CMD_TX_REQ);
3566         SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_tx, c_link, RAY_CCS_LINK_NULL);
3567         SRAM_WRITE_FIELD_2(sc, ccs, ray_cmd_tx, c_bufp, bufp);
3568         SRAM_WRITE_FIELD_1(sc,
3569             ccs, ray_cmd_tx, c_tx_rate, sc->sc_c.np_def_txrate);
3570         SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_tx, c_apm_mode, 0);
3571         bufp += sizeof(struct ray_tx_phy_header);
3572
3573         *ccsp = ccs;
3574         *bufpp = bufp;
3575         return (0);
3576 }
3577
3578 /*
3579  * Routines to obtain resources for the card
3580  */
3581
3582 /*
3583  * Allocate the attribute memory on the card
3584  *
3585  * The attribute memory space is abused by these devices as IO space. As such
3586  * the OS card services don't have a chance of knowing that they need to keep
3587  * the attribute space mapped. We have to do it manually.
3588  */
3589 static int
3590 ray_res_alloc_am(struct ray_softc *sc)
3591 {
3592         int error;
3593
3594         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_CM, "");
3595
3596         sc->am_rid = RAY_AM_RID;
3597         sc->am_res = bus_alloc_resource(sc->dev, SYS_RES_MEMORY,
3598             &sc->am_rid, 0UL, ~0UL, 0x1000, RF_ACTIVE);
3599         if (!sc->am_res) {
3600                 RAY_PRINTF(sc, "Cannot allocate attribute memory");
3601                 return (ENOMEM);
3602         }
3603         error = CARD_SET_MEMORY_OFFSET(device_get_parent(sc->dev), sc->dev,
3604             sc->am_rid, 0, NULL);
3605         if (error) {
3606                 RAY_PRINTF(sc, "CARD_SET_MEMORY_OFFSET returned 0x%0x", error);
3607                 return (error);
3608         }
3609         error = CARD_SET_RES_FLAGS(device_get_parent(sc->dev), sc->dev,
3610             SYS_RES_MEMORY, sc->am_rid, PCCARD_A_MEM_ATTR);
3611         if (error) {
3612                 RAY_PRINTF(sc, "CARD_SET_RES_FLAGS returned 0x%0x", error);
3613                 return (error);
3614         }
3615         error = CARD_SET_RES_FLAGS(device_get_parent(sc->dev), sc->dev,
3616             SYS_RES_MEMORY, sc->am_rid, PCCARD_A_MEM_8BIT);
3617         if (error) {
3618                 RAY_PRINTF(sc, "CARD_SET_RES_FLAGS returned 0x%0x", error);
3619                 return (error);
3620         }
3621         sc->am_bsh = rman_get_bushandle(sc->am_res);
3622         sc->am_bst = rman_get_bustag(sc->am_res);
3623
3624 #if RAY_DEBUG & (RAY_DBG_CM | RAY_DBG_BOOTPARAM)
3625 {
3626         u_long flags;
3627         u_int32_t offset;
3628         CARD_GET_RES_FLAGS(device_get_parent(sc->dev), sc->dev,
3629             SYS_RES_MEMORY, sc->am_rid, &flags);
3630         CARD_GET_MEMORY_OFFSET(device_get_parent(sc->dev), sc->dev,
3631             sc->am_rid, &offset);
3632         RAY_PRINTF(sc, "allocated attribute memory:\n"
3633             ".  start 0x%0lx count 0x%0lx flags 0x%0lx offset 0x%0x",
3634             bus_get_resource_start(sc->dev, SYS_RES_MEMORY, sc->am_rid),
3635             bus_get_resource_count(sc->dev, SYS_RES_MEMORY, sc->am_rid),
3636             flags, offset);
3637 }
3638 #endif /* RAY_DEBUG & (RAY_DBG_CM | RAY_DBG_BOOTPARAM) */
3639
3640         return (0);
3641 }
3642
3643 /*
3644  * Allocate the common memory on the card
3645  *
3646  * As this memory is described in the CIS, the OS card services should
3647  * have set the map up okay, but the card uses 8 bit RAM. This is not
3648  * described in the CIS.
3649  */
3650 static int
3651 ray_res_alloc_cm(struct ray_softc *sc)
3652 {
3653         u_long start, count, end;
3654         int error;
3655
3656         RAY_DPRINTF(sc, RAY_DBG_SUBR | RAY_DBG_CM, "");
3657
3658         RAY_DPRINTF(sc,RAY_DBG_CM | RAY_DBG_BOOTPARAM,
3659             "cm start 0x%0lx count 0x%0lx",
3660             bus_get_resource_start(sc->dev, SYS_RES_MEMORY, RAY_CM_RID),
3661             bus_get_resource_count(sc->dev, SYS_RES_MEMORY, RAY_CM_RID));
3662
3663         sc->cm_rid = RAY_CM_RID;
3664         start = bus_get_resource_start(sc->dev, SYS_RES_MEMORY, sc->cm_rid);
3665         count = bus_get_resource_count(sc->dev, SYS_RES_MEMORY, sc->cm_rid);
3666         end = start + count - 1;
3667         sc->cm_res = bus_alloc_resource(sc->dev, SYS_RES_MEMORY,
3668             &sc->cm_rid, start, end, count, RF_ACTIVE);
3669         if (!sc->cm_res) {
3670                 RAY_PRINTF(sc, "Cannot allocate common memory");
3671                 return (ENOMEM);
3672         }
3673         error = CARD_SET_MEMORY_OFFSET(device_get_parent(sc->dev), sc->dev,
3674             sc->cm_rid, 0, NULL);
3675         if (error) {
3676                 RAY_PRINTF(sc, "CARD_SET_MEMORY_OFFSET returned 0x%0x", error);
3677                 return (error);
3678         }
3679         error = CARD_SET_RES_FLAGS(device_get_parent(sc->dev), sc->dev,
3680             SYS_RES_MEMORY, sc->cm_rid, PCCARD_A_MEM_COM);
3681         if (error) {
3682                 RAY_PRINTF(sc, "CARD_SET_RES_FLAGS returned 0x%0x", error);
3683                 return (error);
3684         }
3685         error = CARD_SET_RES_FLAGS(device_get_parent(sc->dev), sc->dev,
3686             SYS_RES_MEMORY, sc->cm_rid, PCCARD_A_MEM_8BIT);
3687         if (error) {
3688                 RAY_PRINTF(sc, "CARD_SET_RES_FLAGS returned 0x%0x", error);
3689                 return (error);
3690         }
3691         sc->cm_bsh = rman_get_bushandle(sc->cm_res);
3692         sc->cm_bst = rman_get_bustag(sc->cm_res);
3693
3694 #if RAY_DEBUG & (RAY_DBG_CM | RAY_DBG_BOOTPARAM)
3695 {
3696         u_long flags;
3697         u_int32_t offset;
3698         CARD_GET_RES_FLAGS(device_get_parent(sc->dev), sc->dev,
3699             SYS_RES_MEMORY, sc->cm_rid, &flags);
3700         CARD_GET_MEMORY_OFFSET(device_get_parent(sc->dev), sc->dev,
3701             sc->cm_rid, &offset);
3702         RAY_PRINTF(sc, "allocated common memory:\n"
3703             ".  start 0x%0lx count 0x%0lx flags 0x%0lx offset 0x%0x",
3704             bus_get_resource_start(sc->dev, SYS_RES_MEMORY, sc->cm_rid),
3705             bus_get_resource_count(sc->dev, SYS_RES_MEMORY, sc->cm_rid),
3706             flags, offset);
3707 }
3708 #endif /* RAY_DEBUG & (RAY_DBG_CM | RAY_DBG_BOOTPARAM) */
3709
3710         return (0);
3711 }
3712
3713 /*
3714  * Get an irq and attach it to the bus
3715  */
3716 static int
3717 ray_res_alloc_irq(struct ray_softc *sc)
3718 {
3719         int error;
3720
3721         RAY_DPRINTF(sc, RAY_DBG_SUBR, "");
3722
3723         RAY_DPRINTF(sc,RAY_DBG_CM | RAY_DBG_BOOTPARAM,
3724             "irq start 0x%0lx count 0x%0lx",
3725             bus_get_resource_start(sc->dev, SYS_RES_IRQ, 0),
3726             bus_get_resource_count(sc->dev, SYS_RES_IRQ, 0));
3727
3728         sc->irq_rid = 0;
3729         sc->irq_res = bus_alloc_resource_any(sc->dev, SYS_RES_IRQ,
3730             &sc->irq_rid, RF_ACTIVE);
3731         if (!sc->irq_res) {
3732                 RAY_PRINTF(sc, "Cannot allocate irq");
3733                 return (ENOMEM);
3734         }
3735         error = bus_setup_intr(sc->dev, sc->irq_res, INTR_TYPE_NET,
3736                                ray_intr, sc, &sc->irq_handle, NULL);
3737         if (error) {
3738                 RAY_PRINTF(sc, "Failed to setup irq");
3739                 return (error);
3740         }
3741         RAY_DPRINTF(sc, RAY_DBG_CM | RAY_DBG_BOOTPARAM, "allocated irq:\n"
3742             ".  start 0x%0lx count 0x%0lx",
3743             bus_get_resource_start(sc->dev, SYS_RES_IRQ, sc->irq_rid),
3744             bus_get_resource_count(sc->dev, SYS_RES_IRQ, sc->irq_rid));
3745
3746         return (0);
3747 }
3748
3749 /*
3750  * Release all of the card's resources
3751  */
3752 static void
3753 ray_res_release(struct ray_softc *sc)
3754 {
3755         if (sc->irq_res != 0) {
3756                 bus_teardown_intr(sc->dev, sc->irq_res, sc->irq_handle);
3757                 bus_release_resource(sc->dev, SYS_RES_IRQ,
3758                     sc->irq_rid, sc->irq_res);
3759                 sc->irq_res = 0;
3760         }
3761         if (sc->am_res != 0) {
3762                 bus_release_resource(sc->dev, SYS_RES_MEMORY,
3763                     sc->am_rid, sc->am_res);
3764                 sc->am_res = 0;
3765         }
3766         if (sc->cm_res != 0) {
3767                 bus_release_resource(sc->dev, SYS_RES_MEMORY,
3768                     sc->cm_rid, sc->cm_res);
3769                 sc->cm_res = 0;
3770         }
3771 }
3772
3773 /*
3774  * mbuf dump
3775  */
3776 #if RAY_DEBUG & RAY_DBG_MBUF
3777 static void
3778 ray_dump_mbuf(struct ray_softc *sc, struct mbuf *m, char *s)
3779 {
3780         u_int8_t *d, *ed;
3781         u_int i;
3782         char p[17];
3783
3784         RAY_PRINTF(sc, "%s", s);
3785         RAY_PRINTF(sc, "\nm0->data\t0x%p\nm_pkthdr.len\t%d\nm_len\t%d",
3786             mtod(m, u_int8_t *), m->m_pkthdr.len, m->m_len);
3787         i = 0;
3788         bzero(p, 17);
3789         for (; m; m = m->m_next) {
3790                 d = mtod(m, u_int8_t *);
3791                 ed = d + m->m_len;
3792
3793                 for (; d < ed; i++, d++) {
3794                         if ((i % 16) == 0) {
3795                                 printf("  %s\n\t", p);
3796                         } else if ((i % 8) == 0)
3797                                 printf("  ");
3798                         printf(" %02x", *d);
3799                         p[i % 16] = ((*d >= 0x20) && (*d < 0x80)) ? *d : '.';
3800                 }
3801         }
3802         if ((i - 1) % 16)
3803                 printf("  %s\n", p);
3804 }
3805 #endif /* RAY_DEBUG & RAY_DBG_MBUF */