1/*	$NetBSD: if_ray.c,v 1.79 2010/04/05 07:21:47 joerg Exp $	*/
2
3/*
4 * Copyright (c) 2000 Christian E. Hopps
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 THE AUTHOR 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 THE AUTHOR 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
32/*
33 * Driver for the Raylink (Raytheon) / WebGear IEEE 802.11 (FH) WLANs
34 *
35 *	2-way communication with the card is through command structures
36 *	stored in shared ram.  To communicate with the card a free
37 *	command structure is filled in and then the card is interrupted.
38 *	The card does the same with a different set of command structures.
39 *	Only one command can be processed at a time.  This is indicated
40 *	by the interrupt having not been cleared since it was last set.
41 *	The bit is cleared when the command has been processed (although
42 *	it may not yet be complete).
43 *
44 *	This driver was only tested with the Aviator 2.4 wireless
45 *	The author didn't have the pro version or raylink to test
46 *	with.
47 *
48 *	N.B. Its unclear yet whether the Aviator 2.4 cards interoperate
49 *	with other 802.11 FH 2Mbps cards, since this was also untested.
50 *	Given the nature of the buggy build 4 firmware there may be problems.
51 *
52 *	Authentication added by Steve Weiss <srw@alum.mit.edu> based on
53 *	advice from Corey Thomas (author of the Linux RayLink driver).
54 *	Authentication is currently limited to adhoc networks, and was
55 *	added to support a requirement of the newest Windows drivers for
56 *	the RayLink.  Tested with Aviator Pro (firmware 5.63) on Win98.
57 */
58
59#include <sys/cdefs.h>
60__KERNEL_RCSID(0, "$NetBSD: if_ray.c,v 1.79 2010/04/05 07:21:47 joerg Exp $");
61
62#include "opt_inet.h"
63
64#include <sys/param.h>
65#include <sys/systm.h>
66#include <sys/callout.h>
67#include <sys/mbuf.h>
68#include <sys/socket.h>
69#include <sys/ioctl.h>
70#include <sys/errno.h>
71#include <sys/device.h>
72#include <sys/kernel.h>
73#include <sys/proc.h>
74
75#include <net/if.h>
76#include <net/if_dl.h>
77#include <net/if_ether.h>
78#include <net/if_media.h>
79#include <net/if_llc.h>
80#include <net80211/ieee80211.h>
81#include <net80211/ieee80211_ioctl.h>
82#include <net/if_media.h>
83
84#ifdef INET
85#include <netinet/in.h>
86#include <netinet/in_systm.h>
87#include <netinet/in_var.h>
88#include <netinet/ip.h>
89#include <netinet/if_inarp.h>
90#endif
91
92#include <net/bpf.h>
93#include <net/bpfdesc.h>
94
95#include <sys/cpu.h>
96#include <sys/bus.h>
97#include <sys/intr.h>
98
99#include <dev/pcmcia/pcmciareg.h>
100#include <dev/pcmcia/pcmciavar.h>
101#include <dev/pcmcia/pcmciadevs.h>
102
103#include <dev/pcmcia/if_rayreg.h>
104
105#define	RAY_DEBUG
106
107#ifndef	RAY_PID_COUNTRY_CODE_DEFAULT
108#define	RAY_PID_COUNTRY_CODE_DEFAULT	RAY_PID_COUNTRY_CODE_USA
109#endif
110
111/* amount of time to poll for non-return of certain command status */
112#ifndef	RAY_CHECK_CCS_TIMEOUT
113#define	RAY_CHECK_CCS_TIMEOUT	(hz / 2)
114#endif
115
116/* ammount of time to consider start/join failed */
117#ifndef	RAY_START_TIMEOUT
118#define	RAY_START_TIMEOUT	(30 * hz)
119#endif
120
121/*
122 * if a command cannot execute because device is busy try later
123 * this is also done after interrupts and other command timeouts
124 * so we can use a large value safely.
125 */
126#ifndef	RAY_CHECK_SCHED_TIMEOUT
127#define	RAY_CHECK_SCHED_TIMEOUT	(hz)	/* XXX 5 */
128#endif
129
130#ifndef	RAY_MODE_DEFAULT
131#define	RAY_MODE_DEFAULT	SC_MODE_ADHOC
132#endif
133
134#ifndef	RAY_DEF_NWID
135#define	RAY_DEF_NWID	"NETWORK_NAME"
136#endif
137
138/*
139 * The number of times the HW is reset in 30s before disabling.
140 * This is needed because resets take ~2s and currently pcmcia
141 * spins for the reset.
142 */
143#ifndef	RAY_MAX_RESETS
144#define	RAY_MAX_RESETS	3
145#endif
146
147/*
148 * Types
149 */
150
151struct ray_softc {
152	struct device	sc_dev;
153	struct ethercom	sc_ec;
154	struct ifmedia	sc_media;
155
156	struct pcmcia_function		*sc_pf;
157	void				*sc_ih;
158	int				sc_attached;
159
160	int				sc_resetloop;
161
162	struct callout			sc_check_ccs_ch;
163	struct callout			sc_check_scheduled_ch;
164	struct callout			sc_reset_resetloop_ch;
165	struct callout			sc_disable_ch;
166	struct callout			sc_start_join_timo_ch;
167
168	struct ray_ecf_startup		sc_ecf_startup;
169	struct ray_startup_params_head	sc_startup;
170	union {
171		struct ray_startup_params_tail_5	u_params_5;
172		struct ray_startup_params_tail_4	u_params_4;
173	} sc_u;
174
175	u_int8_t	sc_ccsinuse[64];	/* ccs in use -- not for tx */
176	u_int		sc_txfree;	/* a free count for efficiency */
177
178	u_int8_t	sc_bssid[ETHER_ADDR_LEN];	/* current net values */
179	u_int8_t	sc_authid[ETHER_ADDR_LEN];	/* ID of authenticating
180							   station */
181	struct ieee80211_nwid	sc_cnwid;	/* last nwid */
182	struct ieee80211_nwid	sc_dnwid;	/* desired nwid */
183	u_int8_t	sc_omode;	/* old operating mode SC_MODE_xx */
184	u_int8_t	sc_mode;	/* current operating mode SC_MODE_xx */
185	u_int8_t	sc_countrycode;	/* current country code */
186	u_int8_t	sc_dcountrycode; /* desired country code */
187	int		sc_havenet;	/* true if we have acquired a network */
188	bus_size_t	sc_txpad;	/* tib size plus "phy" size */
189	u_int8_t	sc_deftxrate;	/* default transfer rate */
190	u_int8_t	sc_encrypt;
191	u_int8_t	sc_authstate;	/* authentication state */
192
193	int		sc_promisc;	/* current set value */
194	int		sc_running;	/* things we are doing */
195	int		sc_scheduled;	/* things we need to do */
196	int		sc_timoneed;	/* set if timeout is sched */
197	int		sc_timocheck;	/* set if timeout is sched */
198	bus_size_t	sc_startccs;	/* ccs of start/join */
199	u_int		sc_startcmd;	/* cmd (start | join) */
200
201	int		sc_checkcounters;
202	u_int64_t	sc_rxoverflow;
203	u_int64_t	sc_rxcksum;
204	u_int64_t	sc_rxhcksum;
205	u_int8_t	sc_rxnoise;
206
207	/* use to return values to the user */
208	struct ray_param_req	*sc_repreq;
209	struct ray_param_req	*sc_updreq;
210
211	bus_space_tag_t	sc_memt;
212	bus_space_handle_t sc_memh;
213
214#ifdef RAY_DO_SIGLEV
215	struct ray_siglev	sc_siglevs[RAY_NSIGLEVRECS];
216#endif
217};
218#define	sc_ccrt	sc_pf->pf_ccrt
219#define	sc_ccrh	sc_pf->pf_ccrh
220#define	sc_ccroff sc_pf->pf_ccr_offset
221#define	sc_startup_4	sc_u.u_params_4
222#define	sc_startup_5	sc_u.u_params_5
223#define	sc_version	sc_ecf_startup.e_fw_build_string
224#define	sc_tibsize	sc_ecf_startup.e_tib_size
225#define	sc_if		sc_ec.ec_if
226
227/* modes of operation */
228#define	SC_MODE_ADHOC	0	/* ad-hoc mode */
229#define	SC_MODE_INFRA	1	/* infrastructure mode */
230
231/* commands -- priority given to LSB */
232#define	SCP_FIRST		0x0001
233#define	SCP_UPDATESUBCMD	0x0001
234#define	SCP_STARTASSOC		0x0002
235#define	SCP_REPORTPARAMS	0x0004
236#define	SCP_IFSTART		0x0008
237
238/* update sub commands -- issues are serialized priority to LSB */
239#define	SCP_UPD_FIRST		0x0100
240#define	SCP_UPD_STARTUP		0x0100
241#define	SCP_UPD_STARTJOIN	0x0200
242#define	SCP_UPD_PROMISC		0x0400
243#define	SCP_UPD_MCAST		0x0800
244#define	SCP_UPD_UPDATEPARAMS	0x1000
245#define	SCP_UPD_SHIFT		8
246#define	SCP_UPD_MASK		0xff00
247
248/* these command (a subset of the update set) require timeout checking */
249#define	SCP_TIMOCHECK_CMD_MASK	\
250	(SCP_UPD_UPDATEPARAMS | SCP_UPD_STARTUP | SCP_UPD_MCAST | \
251	SCP_UPD_PROMISC)
252
253
254#define	IFM_ADHOC	\
255	IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_FH2, IFM_IEEE80211_ADHOC, 0)
256#define	IFM_INFRA	\
257	IFM_MAKEWORD(IFM_IEEE80211, IFM_IEEE80211_FH2, 0, 0)
258
259typedef	void (*ray_cmd_func_t)(struct ray_softc *);
260
261#define	SC_BUILD_5	0x5
262#define	SC_BUILD_4	0x55
263
264/* sc_authstate */
265#define	RAY_AUTH_UNAUTH		0
266#define	RAY_AUTH_WAITING	1
267#define	RAY_AUTH_AUTH		2
268#define	RAY_AUTH_NEEDED		3
269
270#define	OPEN_AUTH_REQUEST	1
271#define	OPEN_AUTH_RESPONSE	2
272#define	BROADCAST_DEAUTH	0xc0
273
274static int ray_alloc_ccs(struct ray_softc *, bus_size_t *, u_int, u_int);
275static bus_size_t ray_fill_in_tx_ccs(struct ray_softc *, size_t,
276    u_int, u_int);
277static int ray_validate_config(struct pcmcia_config_entry *);
278static void ray_attach(device_t, device_t, void *);
279static ray_cmd_func_t ray_ccs_done(struct ray_softc *, bus_size_t);
280static void ray_check_ccs(void *);
281static void ray_check_scheduled(void *);
282static void ray_cmd_cancel(struct ray_softc *, int);
283static void ray_cmd_schedule(struct ray_softc *, int);
284static void ray_cmd_ran(struct ray_softc *, int);
285static int ray_cmd_is_running(struct ray_softc *, int);
286static int ray_cmd_is_scheduled(struct ray_softc *, int);
287static void ray_cmd_done(struct ray_softc *, int);
288static int ray_detach(device_t, int);
289static int ray_activate(device_t, enum devact);
290static void ray_disable(struct ray_softc *);
291static void ray_download_params(struct ray_softc *);
292static int ray_enable(struct ray_softc *);
293static u_int ray_find_free_tx_ccs(struct ray_softc *, u_int);
294static u_int8_t ray_free_ccs(struct ray_softc *, bus_size_t);
295static void ray_free_ccs_chain(struct ray_softc *, u_int);
296static void ray_if_start(struct ifnet *);
297static void ray_if_stop(struct ifnet *, int);
298static int ray_init(struct ray_softc *);
299static int ray_intr(void *);
300static void ray_intr_start(struct ray_softc *);
301static int ray_ioctl(struct ifnet *, u_long, void *);
302static int ray_issue_cmd(struct ray_softc *, bus_size_t, u_int);
303static int ray_match(device_t, cfdata_t, void *);
304static int ray_media_change(struct ifnet *);
305static void ray_media_status(struct ifnet *, struct ifmediareq *);
306static ray_cmd_func_t ray_rccs_intr(struct ray_softc *, bus_size_t);
307static void ray_read_region(struct ray_softc *, bus_size_t,void *,size_t);
308static void ray_recv(struct ray_softc *, bus_size_t);
309static void ray_recv_auth(struct ray_softc *, struct ieee80211_frame *);
310static void ray_report_params(struct ray_softc *);
311static void ray_reset(struct ray_softc *);
312static void ray_reset_resetloop(void *);
313static int ray_send_auth(struct ray_softc *, u_int8_t *, u_int8_t);
314static void ray_set_pending(struct ray_softc *, u_int);
315static int ray_simple_cmd(struct ray_softc *, u_int, u_int);
316static void ray_start_assoc(struct ray_softc *);
317static void ray_start_join_net(struct ray_softc *);
318static ray_cmd_func_t ray_start_join_net_done(struct ray_softc *,
319    u_int, bus_size_t, u_int);
320static void ray_start_join_timo(void *);
321static void ray_stop(struct ray_softc *);
322static void ray_update_error_counters(struct ray_softc *);
323static void ray_update_mcast(struct ray_softc *);
324static ray_cmd_func_t ray_update_params_done(struct ray_softc *,
325    bus_size_t, u_int);
326static void ray_update_params(struct ray_softc *);
327static void ray_update_promisc(struct ray_softc *);
328static void ray_update_subcmd(struct ray_softc *);
329static int ray_user_report_params(struct ray_softc *,
330    struct ray_param_req *);
331static int ray_user_update_params(struct ray_softc *,
332    struct ray_param_req *);
333static void ray_write_region(struct ray_softc *,bus_size_t,void *,size_t);
334
335#ifdef RAY_DO_SIGLEV
336static void ray_update_siglev(struct ray_softc *, u_int8_t *, u_int8_t);
337#endif
338
339#ifdef RAY_DEBUG
340static int ray_debug = 0;
341static int ray_debug_xmit_sum = 0;
342static int ray_debug_dump_desc = 0;
343static int ray_debug_dump_rx = 0;
344static int ray_debug_dump_tx = 0;
345static struct timeval rtv, tv1, tv2, *ttp, *ltp;
346#define	RAY_DPRINTF(x)	do { if (ray_debug) {	\
347	struct timeval *ttmp;			\
348	microtime(ttp);				\
349	timersub(ttp, ltp, &rtv);		\
350	ttmp = ttp; ttp = ltp; ltp = ttmp;	\
351	printf("%ld:%ld %ld:%06ld: ",		\
352	    (long int)ttp->tv_sec,		\
353	    (long int)ttp->tv_usec,		\
354	    (long int)rtv.tv_sec,		\
355	    (long int)rtv.tv_usec);		\
356	printf x ;				\
357	} } while (0)
358#define	RAY_DPRINTF_XMIT(x)	do { if (ray_debug_xmit_sum) {	\
359	struct timeval *ttmp;			\
360	microtime(ttp);				\
361	timersub(ttp, ltp, &rtv);		\
362	ttmp = ttp; ttp = ltp; ltp = ttmp;	\
363	printf("%ld:%ld %ld:%06ld: ",		\
364	    (long int)ttp->tv_sec,		\
365	    (long int)ttp->tv_usec,		\
366	    (long int)rtv.tv_sec,		\
367	    (long int)rtv.tv_usec);		\
368	printf x ;				\
369	} } while (0)
370
371#define	HEXDF_NOCOMPRESS	0x1
372#define	HEXDF_NOOFFSET		0x2
373#define HEXDF_NOASCII		0x4
374void hexdump(const u_int8_t *, int, int, int, int);
375static void ray_dump_mbuf(struct ray_softc *, struct mbuf *);
376
377#else	/* !RAY_DEBUG */
378
379#define	RAY_DPRINTF(x)
380#define	RAY_DPRINTF_XMIT(x)
381
382#endif	/* !RAY_DEBUG */
383
384/*
385 * macros for writing to various regions in the mapped memory space
386 */
387
388	/* use already mapped ccrt */
389#define	REG_WRITE(sc, off, val) \
390	bus_space_write_1((sc)->sc_ccrt, (sc)->sc_ccrh, ((sc)->sc_ccroff + (off)), (val))
391
392#define	REG_READ(sc, off) \
393	bus_space_read_1((sc)->sc_ccrt, (sc)->sc_ccrh, ((sc)->sc_ccroff + (off)))
394
395#define	SRAM_READ_1(sc, off) \
396	((u_int8_t)bus_space_read_1((sc)->sc_memt, (sc)->sc_memh, (off)))
397
398#define	SRAM_READ_FIELD_1(sc, off, s, f) \
399	SRAM_READ_1(sc, (off) + offsetof(struct s, f))
400
401#define	SRAM_READ_FIELD_2(sc, off, s, f)			\
402	((((u_int16_t)SRAM_READ_1(sc, (off) + offsetof(struct s, f)) << 8) \
403	|(SRAM_READ_1(sc, (off) + 1 + offsetof(struct s, f)))))
404
405#define	SRAM_READ_FIELD_N(sc, off, s, f, p, n)	\
406	ray_read_region(sc, (off) + offsetof(struct s, f), (p), (n))
407
408#define	SRAM_WRITE_1(sc, off, val)	\
409	bus_space_write_1((sc)->sc_memt, (sc)->sc_memh, (off), (val))
410
411#define	SRAM_WRITE_FIELD_1(sc, off, s, f, v) 	\
412	SRAM_WRITE_1(sc, (off) + offsetof(struct s, f), (v))
413
414#define	SRAM_WRITE_FIELD_2(sc, off, s, f, v) do {	\
415	SRAM_WRITE_1(sc, (off) + offsetof(struct s, f), (((v) >> 8 ) & 0xff)); \
416	SRAM_WRITE_1(sc, (off) + 1 + offsetof(struct s, f), ((v) & 0xff)); \
417    } while (0)
418
419#define	SRAM_WRITE_FIELD_N(sc, off, s, f, p, n)	\
420	ray_write_region(sc, (off) + offsetof(struct s, f), (p), (n))
421
422/*
423 * Macros of general usefulness
424 */
425
426#define	M_PULLUP(m, s) do {	\
427	if ((m)->m_len < (s))	\
428		(m) = m_pullup((m), (s)); \
429    } while (0)
430
431#define	RAY_ECF_READY(sc)	(!(REG_READ(sc, RAY_ECFIR) & RAY_ECSIR_IRQ))
432#define	RAY_ECF_START_CMD(sc)	REG_WRITE(sc, RAY_ECFIR, RAY_ECSIR_IRQ)
433#define	RAY_GET_INDEX(ccs)	(((ccs) - RAY_CCS_BASE) / RAY_CCS_SIZE)
434#define	RAY_GET_CCS(i)		(RAY_CCS_BASE + (i) * RAY_CCS_SIZE)
435
436/*
437 * Globals
438 */
439
440static u_int8_t llc_snapid[6] = { LLC_SNAP_LSAP, LLC_SNAP_LSAP, LLC_UI, };
441
442/* based on bit index in SCP_xx */
443static ray_cmd_func_t ray_cmdtab[] = {
444	ray_update_subcmd,	/* SCP_UPDATESUBCMD */
445	ray_start_assoc,	/* SCP_STARTASSOC */
446	ray_report_params,	/* SCP_REPORTPARAMS */
447	ray_intr_start		/* SCP_IFSTART */
448};
449static int ray_ncmdtab = sizeof(ray_cmdtab) / sizeof(*ray_cmdtab);
450
451static ray_cmd_func_t ray_subcmdtab[] = {
452	ray_download_params,	/* SCP_UPD_STARTUP */
453	ray_start_join_net,	/* SCP_UPD_STARTJOIN */
454	ray_update_promisc,	/* SCP_UPD_PROMISC */
455	ray_update_mcast,	/* SCP_UPD_MCAST */
456	ray_update_params	/* SCP_UPD_UPDATEPARAMS */
457};
458static int ray_nsubcmdtab = sizeof(ray_subcmdtab) / sizeof(*ray_subcmdtab);
459
460/* autoconf information */
461CFATTACH_DECL(ray, sizeof(struct ray_softc),
462    ray_match, ray_attach, ray_detach, ray_activate);
463
464/*
465 * Config Routines
466 */
467
468static int
469ray_match(device_t parent, cfdata_t match,
470    void *aux)
471{
472	struct pcmcia_attach_args *pa = aux;
473
474#ifdef RAY_DEBUG
475	if (!ltp) {
476		/* initialize timestamp XXX */
477		ttp = &tv1;
478		ltp = &tv2;
479		microtime(ltp);
480	}
481#endif
482	return (pa->manufacturer == PCMCIA_VENDOR_RAYTHEON
483	    && pa->product == PCMCIA_PRODUCT_RAYTHEON_WLAN);
484}
485
486static int
487ray_validate_config(struct pcmcia_config_entry *cfe)
488{
489	if (cfe->iftype != PCMCIA_IFTYPE_IO ||
490	    cfe->num_memspace != 1 ||
491	    cfe->num_iospace != 0 ||
492	    cfe->memspace[0].length != RAY_SRAM_MEM_SIZE)
493		return (EINVAL);
494	return (0);
495}
496
497static void
498ray_attach(device_t parent, device_t self, void *aux)
499{
500	struct ray_softc *sc = (void *)self;
501	struct pcmcia_attach_args *pa = aux;
502	struct ifnet *ifp = &sc->sc_if;
503	struct pcmcia_config_entry *cfe;
504	struct ray_ecf_startup *ep;
505	int error;
506
507	sc->sc_pf = pa->pf;
508
509	/*XXXmem8|common*/
510	error = pcmcia_function_configure(pa->pf, ray_validate_config);
511	if (error) {
512		aprint_error_dev(self, "configure failed, error=%d\n",
513		    error);
514		return;
515	}
516
517	cfe = pa->pf->cfe;
518	sc->sc_memt = cfe->memspace[0].handle.memt;
519	sc->sc_memh = cfe->memspace[0].handle.memh;
520
521	callout_init(&sc->sc_reset_resetloop_ch, 0);
522	callout_init(&sc->sc_disable_ch, 0);
523	callout_init(&sc->sc_start_join_timo_ch, 0);
524
525	error = ray_enable(sc);
526	if (error)
527		goto fail;
528
529	/* get startup results */
530	ep = &sc->sc_ecf_startup;
531	ray_read_region(sc, RAY_ECF_TO_HOST_BASE, ep,
532	    sizeof(sc->sc_ecf_startup));
533
534	/* check to see that card initialized properly */
535	if (ep->e_status != RAY_ECFS_CARD_OK) {
536		aprint_error_dev(self, "card failed self test: status %d\n",
537		    sc->sc_ecf_startup.e_status);
538		goto fail2;
539	}
540
541	/* check firmware version */
542	if (sc->sc_version != SC_BUILD_4 && sc->sc_version != SC_BUILD_5) {
543		aprint_error_dev(self, "unsupported firmware version %d\n",
544		    ep->e_fw_build_string);
545		goto fail2;
546	}
547
548	/* clear any interrupt if present */
549	REG_WRITE(sc, RAY_HCSIR, 0);
550
551	/*
552	 * set the parameters that will survive stop/init
553	 */
554	memset(&sc->sc_dnwid, 0, sizeof(sc->sc_dnwid));
555	sc->sc_dnwid.i_len = strlen(RAY_DEF_NWID);
556	if (sc->sc_dnwid.i_len > IEEE80211_NWID_LEN)
557		sc->sc_dnwid.i_len = IEEE80211_NWID_LEN;
558	if (sc->sc_dnwid.i_len > 0)
559		memcpy(sc->sc_dnwid.i_nwid, RAY_DEF_NWID, sc->sc_dnwid.i_len);
560	memcpy(&sc->sc_cnwid, &sc->sc_dnwid, sizeof(sc->sc_cnwid));
561	sc->sc_omode = sc->sc_mode = RAY_MODE_DEFAULT;
562	sc->sc_countrycode = sc->sc_dcountrycode =
563	    RAY_PID_COUNTRY_CODE_DEFAULT;
564
565	/*
566	 * attach the interface
567	 */
568	/* The version isn't the most accurate way, but it's easy. */
569	aprint_normal_dev(self, "firmware version %d\n",
570	    sc->sc_version);
571	if (sc->sc_version != SC_BUILD_4)
572		aprint_normal_dev(self, "supported rates %0x:%0x:%0x:%0x:%0x:%0x:%0x:%0x\n",
573		    ep->e_rates[0], ep->e_rates[1],
574		    ep->e_rates[2], ep->e_rates[3], ep->e_rates[4],
575		    ep->e_rates[5], ep->e_rates[6], ep->e_rates[7]);
576	aprint_normal_dev(self, "802.11 address %s\n",
577	    ether_sprintf(ep->e_station_addr));
578
579	memcpy(ifp->if_xname, device_xname(self), IFNAMSIZ);
580	ifp->if_softc = sc;
581	ifp->if_start = ray_if_start;
582	ifp->if_stop = ray_if_stop;
583	ifp->if_ioctl = ray_ioctl;
584	ifp->if_mtu = ETHERMTU;
585	ifp->if_flags = IFF_BROADCAST|IFF_SIMPLEX|IFF_MULTICAST;
586	IFQ_SET_READY(&ifp->if_snd);
587
588	if_attach(ifp);
589	ether_ifattach(ifp, ep->e_station_addr);
590	/* need enough space for ieee80211_header + (snap or e2) */
591	ifp->if_hdrlen =
592	    sizeof(struct ieee80211_frame) + sizeof(struct ether_header);
593
594	ifmedia_init(&sc->sc_media, 0, ray_media_change, ray_media_status);
595	ifmedia_add(&sc->sc_media, IFM_ADHOC, 0, 0);
596	ifmedia_add(&sc->sc_media, IFM_INFRA, 0, 0);
597	if (sc->sc_mode == SC_MODE_ADHOC)
598		ifmedia_set(&sc->sc_media, IFM_ADHOC);
599	else
600		ifmedia_set(&sc->sc_media, IFM_INFRA);
601
602	if (pmf_device_register(self, NULL, NULL))
603		pmf_class_network_register(self, ifp);
604	else
605		aprint_error_dev(self, "couldn't establish power handler\n");
606
607	/* The attach is successful. */
608	sc->sc_attached = 1;
609	ray_disable(sc);
610	return;
611
612fail2:
613	ray_disable(sc);
614fail:
615	pcmcia_function_unconfigure(pa->pf);
616}
617
618static int
619ray_activate(device_t self, enum devact act)
620{
621	struct ray_softc *sc = device_private(self);
622	struct ifnet *ifp = &sc->sc_if;
623
624	RAY_DPRINTF(("%s: activate\n", device_xname(self)));
625
626	switch (act) {
627	case DVACT_DEACTIVATE:
628		if_deactivate(ifp);
629		return 0;
630	default:
631		return EOPNOTSUPP;
632	}
633}
634
635static int
636ray_detach(device_t self, int flags)
637{
638	struct ray_softc *sc;
639	struct ifnet *ifp;
640
641	sc = device_private(self);
642	ifp = &sc->sc_if;
643	RAY_DPRINTF(("%s: detach\n", device_xname(&sc->sc_dev)));
644
645	if (!sc->sc_attached)
646                return (0);
647
648	pmf_device_deregister(self);
649
650	if (sc->sc_if.if_flags & IFF_UP)
651		ray_disable(sc);
652
653	ifmedia_delete_instance(&sc->sc_media, IFM_INST_ANY);
654	ether_ifdetach(ifp);
655	if_detach(ifp);
656
657	pcmcia_function_unconfigure(sc->sc_pf);
658
659	return (0);
660}
661
662/*
663 * start the card running
664 */
665static int
666ray_enable(struct ray_softc *sc)
667{
668	int error;
669
670	RAY_DPRINTF(("%s: enable\n", device_xname(&sc->sc_dev)));
671
672	sc->sc_ih = pcmcia_intr_establish(sc->sc_pf, IPL_NET,
673	    ray_intr, sc);
674	if (!sc->sc_ih)
675		return (EIO);
676
677	error = ray_init(sc);
678	if (error) {
679		pcmcia_intr_disestablish(sc->sc_pf, sc->sc_ih);
680		sc->sc_ih = 0;
681	}
682
683	return (error);
684}
685
686/*
687 * stop the card running
688 */
689static void
690ray_disable(struct ray_softc *sc)
691{
692	RAY_DPRINTF(("%s: disable\n", device_xname(&sc->sc_dev)));
693
694	ray_stop(sc);
695
696	sc->sc_resetloop = 0;
697	sc->sc_rxoverflow = 0;
698	sc->sc_rxcksum = 0;
699	sc->sc_rxhcksum = 0;
700	sc->sc_rxnoise = 0;
701
702	if (sc->sc_ih) {
703		pcmcia_intr_disestablish(sc->sc_pf, sc->sc_ih);
704		sc->sc_ih = 0;
705	}
706}
707
708/*
709 * start the card running
710 */
711static int
712ray_init(struct ray_softc *sc)
713{
714	struct ray_ecf_startup *ep;
715	bus_size_t ccs;
716	int i;
717
718	RAY_DPRINTF(("%s: init\n", device_xname(&sc->sc_dev)));
719
720	if ((sc->sc_if.if_flags & IFF_RUNNING))
721		ray_stop(sc);
722
723	if (pcmcia_function_enable(sc->sc_pf))
724		return (EIO);
725
726	RAY_DPRINTF(("%s: init post-enable\n", device_xname(&sc->sc_dev)));
727
728	/* reset some values */
729	memset(sc->sc_ccsinuse, 0, sizeof(sc->sc_ccsinuse));
730	sc->sc_havenet = 0;
731	memset(sc->sc_bssid, 0, sizeof(sc->sc_bssid));
732	sc->sc_deftxrate = 0;
733	sc->sc_encrypt = 0;
734	sc->sc_txpad = 0;
735	sc->sc_promisc = 0;
736	sc->sc_scheduled = 0;
737	sc->sc_running = 0;
738	sc->sc_txfree = RAY_CCS_NTX;
739	sc->sc_checkcounters = 0;
740	sc->sc_authstate = RAY_AUTH_UNAUTH;
741
742	/* get startup results */
743	ep = &sc->sc_ecf_startup;
744	ray_read_region(sc, RAY_ECF_TO_HOST_BASE, ep,
745	    sizeof(sc->sc_ecf_startup));
746
747	/* check to see that card initialized properly */
748	if (ep->e_status != RAY_ECFS_CARD_OK) {
749		pcmcia_function_disable(sc->sc_pf);
750		printf("%s: card failed self test: status %d\n",
751		    device_xname(&sc->sc_dev), sc->sc_ecf_startup.e_status);
752		return (EIO);
753	}
754
755	/* fixup tib size to be correct */
756	if (sc->sc_version == SC_BUILD_4 && sc->sc_tibsize == 0x55)
757		sc->sc_tibsize = 32;
758	sc->sc_txpad = sc->sc_tibsize;
759
760	/* set all ccs to be free */
761	ccs = RAY_GET_CCS(0);
762	for (i = 0; i < RAY_CCS_LAST; ccs += RAY_CCS_SIZE, i++)
763		SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd, c_status,
764		    RAY_CCS_STATUS_FREE);
765
766	/* clear the interrupt if present */
767	REG_WRITE(sc, RAY_HCSIR, 0);
768
769	callout_init(&sc->sc_check_ccs_ch, 0);
770	callout_init(&sc->sc_check_scheduled_ch, 0);
771
772	/* we are now up and running -- and are busy until download is cplt */
773	sc->sc_if.if_flags |= IFF_RUNNING | IFF_OACTIVE;
774
775	/* set this now so it gets set in the download */
776	if (sc->sc_if.if_flags & IFF_ALLMULTI)
777		sc->sc_if.if_flags |= IFF_PROMISC;
778	else if (sc->sc_if.if_pcount == 0)
779		sc->sc_if.if_flags &= ~IFF_PROMISC;
780	sc->sc_promisc = !!(sc->sc_if.if_flags & IFF_PROMISC);
781
782	/* call after we mark ourselves running */
783	ray_download_params(sc);
784
785	return (0);
786}
787
788/*
789 * stop the card running
790 */
791static void
792ray_stop(struct ray_softc *sc)
793{
794	RAY_DPRINTF(("%s: stop\n", device_xname(&sc->sc_dev)));
795
796	callout_stop(&sc->sc_check_ccs_ch);
797	sc->sc_timocheck = 0;
798
799	callout_stop(&sc->sc_check_scheduled_ch);
800	sc->sc_timoneed = 0;
801
802	if (sc->sc_repreq) {
803		sc->sc_repreq->r_failcause = RAY_FAILCAUSE_EDEVSTOP;
804		wakeup(ray_report_params);
805	}
806	if (sc->sc_updreq) {
807		sc->sc_updreq->r_failcause = RAY_FAILCAUSE_EDEVSTOP;
808		wakeup(ray_update_params);
809	}
810
811	sc->sc_if.if_flags &= ~IFF_RUNNING;
812	pcmcia_function_disable(sc->sc_pf);
813}
814
815/*
816 * reset the card
817 */
818static void
819ray_reset(struct ray_softc *sc)
820{
821	if (++sc->sc_resetloop >= RAY_MAX_RESETS) {
822		if (sc->sc_resetloop == RAY_MAX_RESETS) {
823			aprint_error_dev(&sc->sc_dev, "unable to correct, disabling\n");
824			callout_stop(&sc->sc_reset_resetloop_ch);
825			callout_reset(&sc->sc_disable_ch, 1,
826			    (void (*)(void *))ray_disable, sc);
827		}
828	} else {
829		aprint_error_dev(&sc->sc_dev, "unexpected failure resetting hw [%d more]\n",
830		    RAY_MAX_RESETS - sc->sc_resetloop);
831		callout_stop(&sc->sc_reset_resetloop_ch);
832		ray_init(sc);
833		callout_reset(&sc->sc_reset_resetloop_ch, 30 * hz,
834		    ray_reset_resetloop, sc);
835	}
836}
837
838/*
839 * return resetloop to zero (enough time has expired to allow user to
840 * disable a whacked interface)  the main reason for all this nonesense
841 * is that resets take ~2 seconds and currently the pcmcia code spins
842 * on these resets
843 */
844static void
845ray_reset_resetloop(void *arg)
846{
847	struct ray_softc *sc;
848
849	sc = arg;
850	sc->sc_resetloop = 0;
851}
852
853static int
854ray_ioctl(struct ifnet *ifp, u_long cmd, void *data)
855{
856	struct ieee80211_nwid nwid;
857	struct ray_param_req pr;
858	struct ray_softc *sc;
859	struct ifreq *ifr;
860	struct ifaddr *ifa;
861	int error, error2, s, i;
862
863	sc = ifp->if_softc;
864	error = 0;
865
866	ifr = (struct ifreq *)data;
867
868	s = splnet();
869
870	RAY_DPRINTF(("%s: ioctl: cmd 0x%lx data 0x%lx\n", ifp->if_xname,
871	    cmd, (long)data));
872	switch (cmd) {
873	case SIOCINITIFADDR:
874		RAY_DPRINTF(("%s: ioctl: cmd SIOCINITIFADDR\n", ifp->if_xname));
875		if ((ifp->if_flags & IFF_RUNNING) == 0)
876			if ((error = ray_enable(sc)))
877				break;
878		ifp->if_flags |= IFF_UP;
879		ifa = (struct ifaddr *)data;
880		switch (ifa->ifa_addr->sa_family) {
881#ifdef INET
882		case AF_INET:
883			arp_ifinit(&sc->sc_if, ifa);
884			break;
885#endif
886		default:
887			break;
888		}
889		break;
890	case SIOCSIFFLAGS:
891		RAY_DPRINTF(("%s: ioctl: cmd SIOCSIFFLAGS\n", ifp->if_xname));
892		if ((error = ifioctl_common(ifp, cmd, data)) != 0)
893			break;
894		if (ifp->if_flags & IFF_UP) {
895			if ((ifp->if_flags & IFF_RUNNING) == 0) {
896				if ((error = ray_enable(sc)))
897					break;
898			} else
899				ray_update_promisc(sc);
900		} else if (ifp->if_flags & IFF_RUNNING)
901			ray_disable(sc);
902		break;
903	case SIOCADDMULTI:
904		RAY_DPRINTF(("%s: ioctl: cmd SIOCADDMULTI\n", ifp->if_xname));
905	case SIOCDELMULTI:
906		if (cmd == SIOCDELMULTI)
907			RAY_DPRINTF(("%s: ioctl: cmd SIOCDELMULTI\n",
908			    ifp->if_xname));
909		if ((error = ether_ioctl(ifp, cmd, data)) == ENETRESET) {
910			if (ifp->if_flags & IFF_RUNNING)
911				ray_update_mcast(sc);
912			error = 0;
913		}
914		break;
915	case SIOCSIFMEDIA:
916		RAY_DPRINTF(("%s: ioctl: cmd SIOCSIFMEDIA\n", ifp->if_xname));
917	case SIOCGIFMEDIA:
918		if (cmd == SIOCGIFMEDIA)
919			RAY_DPRINTF(("%s: ioctl: cmd SIOCGIFMEDIA\n",
920			    ifp->if_xname));
921		error = ifmedia_ioctl(ifp, ifr, &sc->sc_media, cmd);
922		break;
923	case SIOCSRAYPARAM:
924		RAY_DPRINTF(("%s: ioctl: cmd SIOCSRAYPARAM\n", ifp->if_xname));
925		if ((error = copyin(ifr->ifr_data, &pr, sizeof(pr))))
926			break;
927		/* disallow certain command that have another interface */
928		switch (pr.r_paramid) {
929		case RAY_PID_NET_TYPE:	/* through media opt */
930		case RAY_PID_AP_STATUS:	/* unsupported */
931		case RAY_PID_SSID:	/* use SIOC80211[GS]NWID */
932		case RAY_PID_MAC_ADDR:	/* XXX need interface? */
933		case RAY_PID_PROMISC:	/* bpf */
934			error = EINVAL;
935			break;
936		}
937		error = ray_user_update_params(sc, &pr);
938		error2 = copyout(&pr, ifr->ifr_data, sizeof(pr));
939		error = error2 ? error2 : error;
940		break;
941	case SIOCGRAYPARAM:
942		RAY_DPRINTF(("%s: ioctl: cmd SIOCGRAYPARAM\n", ifp->if_xname));
943		if ((error = copyin(ifr->ifr_data, &pr, sizeof(pr))))
944			break;
945		error = ray_user_report_params(sc, &pr);
946		error2 = copyout(&pr, ifr->ifr_data, sizeof(pr));
947		error = error2 ? error2 : error;
948		break;
949	case SIOCS80211NWID:
950		RAY_DPRINTF(("%s: ioctl: cmd SIOCS80211NWID\n", ifp->if_xname));
951		/*
952		 * if later people overwrite thats ok -- the latest version
953		 * will always get start/joined even if it was set by
954		 * a previous command
955		 */
956		if ((error = copyin(ifr->ifr_data, &nwid, sizeof(nwid))))
957			break;
958		if (nwid.i_len > IEEE80211_NWID_LEN) {
959			error = EINVAL;
960			break;
961		}
962		/* clear trailing garbages */
963		for (i = nwid.i_len; i < IEEE80211_NWID_LEN; i++)
964			nwid.i_nwid[i] = 0;
965		if (!memcmp(&sc->sc_dnwid, &nwid, sizeof(nwid)))
966			break;
967		memcpy(&sc->sc_dnwid, &nwid, sizeof(nwid));
968		if (ifp->if_flags & IFF_RUNNING)
969			ray_start_join_net(sc);
970		break;
971	case SIOCG80211NWID:
972		RAY_DPRINTF(("%s: ioctl: cmd SIOCG80211NWID\n", ifp->if_xname));
973		error = copyout(&sc->sc_cnwid, ifr->ifr_data,
974		    sizeof(sc->sc_cnwid));
975		break;
976#ifdef RAY_DO_SIGLEV
977	case SIOCGRAYSIGLEV:
978		error = copyout(sc->sc_siglevs, ifr->ifr_data,
979			    sizeof sc->sc_siglevs);
980		break;
981#endif
982	default:
983		RAY_DPRINTF(("%s: ioctl: unknown\n", ifp->if_xname));
984		error = ether_ioctl(ifp, cmd, data);
985		break;
986	}
987
988	RAY_DPRINTF(("%s: ioctl: returns %d\n", ifp->if_xname, error));
989
990	splx(s);
991
992	return (error);
993}
994
995/*
996 * ifnet interface to start transmission on the interface
997 */
998static void
999ray_if_start(struct ifnet *ifp)
1000{
1001	struct ray_softc *sc;
1002
1003	sc = ifp->if_softc;
1004	ray_intr_start(sc);
1005}
1006
1007static void
1008ray_if_stop(struct ifnet *ifp, int disable)
1009{
1010	struct ray_softc *sc = ifp->if_softc;
1011
1012	ray_stop(sc);
1013}
1014
1015static int
1016ray_media_change(struct ifnet *ifp)
1017{
1018	struct ray_softc *sc;
1019
1020	sc = ifp->if_softc;
1021	RAY_DPRINTF(("%s: media change cur %d\n", ifp->if_xname,
1022	    sc->sc_media.ifm_cur->ifm_media));
1023	if (sc->sc_media.ifm_cur->ifm_media & IFM_IEEE80211_ADHOC)
1024		sc->sc_mode = SC_MODE_ADHOC;
1025	else
1026		sc->sc_mode = SC_MODE_INFRA;
1027	if (sc->sc_mode != sc->sc_omode)
1028		ray_start_join_net(sc);
1029	return (0);
1030}
1031
1032static void
1033ray_media_status(struct ifnet *ifp, struct ifmediareq *imr)
1034{
1035	struct ray_softc *sc;
1036
1037	sc = ifp->if_softc;
1038
1039	RAY_DPRINTF(("%s: media status\n", ifp->if_xname));
1040
1041	imr->ifm_status = IFM_AVALID;
1042	if (sc->sc_havenet)
1043		imr->ifm_status |= IFM_ACTIVE;
1044
1045	if (sc->sc_mode == SC_MODE_ADHOC)
1046		imr->ifm_active = IFM_ADHOC;
1047	else
1048		imr->ifm_active = IFM_INFRA;
1049}
1050
1051/*
1052 * called to start from ray_intr.  We don't check for pending
1053 * interrupt as a result
1054 */
1055static void
1056ray_intr_start(struct ray_softc *sc)
1057{
1058	struct ieee80211_frame *iframe;
1059	struct ether_header *eh;
1060	size_t len, pktlen, tmplen;
1061	bus_size_t bufp, ebufp;
1062	struct mbuf *m0, *m;
1063	struct ifnet *ifp;
1064	u_int firsti, hinti, previ, i, pcount;
1065	u_int16_t et;
1066	u_int8_t *d;
1067
1068	ifp = &sc->sc_if;
1069
1070	RAY_DPRINTF(("%s: start free %d\n",
1071	    ifp->if_xname, sc->sc_txfree));
1072
1073	ray_cmd_cancel(sc, SCP_IFSTART);
1074
1075	if ((ifp->if_flags & IFF_RUNNING) == 0 || !sc->sc_havenet)
1076		return;
1077
1078	if (IFQ_IS_EMPTY(&ifp->if_snd))
1079		return;
1080
1081	firsti = i = previ = RAY_CCS_LINK_NULL;
1082	hinti = RAY_CCS_TX_FIRST;
1083
1084	if (!RAY_ECF_READY(sc)) {
1085		ray_cmd_schedule(sc, SCP_IFSTART);
1086		return;
1087	}
1088
1089	/* Check to see if we need to authenticate before sending packets. */
1090	if (sc->sc_authstate == RAY_AUTH_NEEDED) {
1091		RAY_DPRINTF(("%s: Sending auth request.\n", ifp->if_xname));
1092		sc->sc_authstate = RAY_AUTH_WAITING;
1093		ray_send_auth(sc, sc->sc_authid, OPEN_AUTH_REQUEST);
1094		return;
1095	}
1096
1097	pcount = 0;
1098	for (;;) {
1099		/* if we have no descriptors be done */
1100		if (i == RAY_CCS_LINK_NULL) {
1101			i = ray_find_free_tx_ccs(sc, hinti);
1102			if (i == RAY_CCS_LINK_NULL) {
1103				RAY_DPRINTF(("%s: no descriptors.\n",
1104				    ifp->if_xname));
1105				ifp->if_flags |= IFF_OACTIVE;
1106				break;
1107			}
1108		}
1109
1110		IFQ_DEQUEUE(&ifp->if_snd, m0);
1111		if (!m0) {
1112			RAY_DPRINTF(("%s: dry queue.\n", ifp->if_xname));
1113			break;
1114		}
1115		RAY_DPRINTF(("%s: gotmbuf 0x%lx\n", ifp->if_xname, (long)m0));
1116		pktlen = m0->m_pkthdr.len;
1117		if (pktlen > ETHER_MAX_LEN - ETHER_CRC_LEN) {
1118			RAY_DPRINTF((
1119			    "%s: mbuf too long %ld\n", ifp->if_xname,
1120			    (u_long)pktlen));
1121			ifp->if_oerrors++;
1122			m_freem(m0);
1123			continue;
1124		}
1125		RAY_DPRINTF(("%s: mbuf.m_pkthdr.len %d\n", ifp->if_xname,
1126		    (int)pktlen));
1127
1128		/* we need the ether_header now for pktlen adjustments */
1129		M_PULLUP(m0, sizeof(struct ether_header));
1130		if (!m0) {
1131			RAY_DPRINTF(( "%s: couldn\'t pullup ether header\n",
1132			    ifp->if_xname));
1133			ifp->if_oerrors++;
1134			continue;
1135		}
1136		RAY_DPRINTF(("%s: got pulled up mbuf 0x%lx\n", ifp->if_xname,
1137		    (long)m0));
1138
1139		/* first peek at the type of packet and figure out what to do */
1140		eh = mtod(m0, struct ether_header *);
1141		et = ntohs(eh->ether_type);
1142		if (ifp->if_flags & IFF_LINK0) {
1143			/* don't support llc for windows compat operation */
1144			if (et <= ETHERMTU) {
1145				m_freem(m0);
1146				ifp->if_oerrors++;
1147				continue;
1148			}
1149			tmplen = sizeof(struct ieee80211_frame);
1150		} else if (et > ETHERMTU) {
1151			/* adjust for LLC/SNAP header */
1152			tmplen = sizeof(struct ieee80211_frame) - ETHER_ADDR_LEN;
1153		} else {
1154			tmplen = 0;
1155		}
1156		/* now get our space for the 802.11 frame */
1157		M_PREPEND(m0, tmplen, M_DONTWAIT);
1158		if (m0)
1159			M_PULLUP(m0, sizeof(struct ether_header) + tmplen);
1160		if (!m0) {
1161			RAY_DPRINTF(("%s: couldn\'t prepend header\n",
1162			    ifp->if_xname));
1163			ifp->if_oerrors++;
1164			continue;
1165		}
1166		/* copy the frame into the mbuf for tapping */
1167		iframe = mtod(m0, struct ieee80211_frame *);
1168		eh = (struct ether_header *)((u_int8_t *)iframe + tmplen);
1169		iframe->i_fc[0] =
1170		    (IEEE80211_FC0_VERSION_0 | IEEE80211_FC0_TYPE_DATA);
1171		if (sc->sc_mode == SC_MODE_ADHOC) {
1172			iframe->i_fc[1] = IEEE80211_FC1_DIR_NODS;
1173			memcpy(iframe->i_addr1, eh->ether_dhost,ETHER_ADDR_LEN);
1174			memcpy(iframe->i_addr2, eh->ether_shost,ETHER_ADDR_LEN);
1175			memcpy(iframe->i_addr3, sc->sc_bssid, ETHER_ADDR_LEN);
1176		} else {
1177			iframe->i_fc[1] = IEEE80211_FC1_DIR_TODS;
1178			memcpy(iframe->i_addr1, sc->sc_bssid,ETHER_ADDR_LEN);
1179			memcpy(iframe->i_addr2, eh->ether_shost,ETHER_ADDR_LEN);
1180			memmove(iframe->i_addr3,eh->ether_dhost,ETHER_ADDR_LEN);
1181		}
1182		iframe->i_dur[0] = iframe->i_dur[1] = 0;
1183		iframe->i_seq[0] = iframe->i_seq[1] = 0;
1184
1185		/* if not using crummy E2 in 802.11 make it LLC/SNAP */
1186		if ((ifp->if_flags & IFF_LINK0) == 0 && et > ETHERMTU)
1187			memcpy(iframe + 1, llc_snapid, sizeof(llc_snapid));
1188
1189		RAY_DPRINTF(("%s: i %d previ %d\n", ifp->if_xname, i, previ));
1190
1191		if (firsti == RAY_CCS_LINK_NULL)
1192			firsti = i;
1193
1194		pktlen = m0->m_pkthdr.len;
1195		bufp = ray_fill_in_tx_ccs(sc, pktlen, i, previ);
1196		previ = hinti = i;
1197		i = RAY_CCS_LINK_NULL;
1198
1199		RAY_DPRINTF(("%s: bufp 0x%lx new pktlen %d\n",
1200		    ifp->if_xname, (long)bufp, (int)pktlen));
1201
1202		/* copy out mbuf */
1203		for (m = m0; m; m = m->m_next) {
1204			if ((len = m->m_len) == 0)
1205				continue;
1206			RAY_DPRINTF((
1207			    "%s: copying mbuf 0x%lx bufp 0x%lx len %d\n",
1208			    ifp->if_xname, (long)m, (long)bufp, (int)len));
1209			d = mtod(m, u_int8_t *);
1210			ebufp = bufp + len;
1211			if (ebufp <= RAY_TX_END)
1212				ray_write_region(sc, bufp, d, len);
1213			else {
1214				panic("ray_intr_start");	/* XXX */
1215				/* wrapping */
1216				tmplen = ebufp - bufp;
1217				len -= tmplen;
1218				ray_write_region(sc, bufp, d, tmplen);
1219				d += tmplen;
1220				bufp = RAY_TX_BASE;
1221				ray_write_region(sc, bufp, d, len);
1222			}
1223			bufp += len;
1224		}
1225		if (ifp->if_bpf) {
1226			if (ifp->if_flags & IFF_LINK0) {
1227				m0->m_data += sizeof(struct ieee80211_frame);
1228				m0->m_len -=  sizeof(struct ieee80211_frame);
1229				m0->m_pkthdr.len -=  sizeof(struct ieee80211_frame);
1230			}
1231			bpf_mtap(ifp, m0);
1232			if (ifp->if_flags & IFF_LINK0) {
1233				m0->m_data -= sizeof(struct ieee80211_frame);
1234				m0->m_len +=  sizeof(struct ieee80211_frame);
1235				m0->m_pkthdr.len +=  sizeof(struct ieee80211_frame);
1236			}
1237		}
1238
1239#ifdef RAY_DEBUG
1240		if (ray_debug && ray_debug_dump_tx)
1241			ray_dump_mbuf(sc, m0);
1242#endif
1243		pcount++;
1244		m_freem(m0);
1245
1246		RAY_DPRINTF_XMIT(("%s: sent packet: len %ld\n", device_xname(&sc->sc_dev),
1247		    (u_long)pktlen));
1248	}
1249
1250	if (firsti == RAY_CCS_LINK_NULL)
1251		return;
1252	i = 0;
1253	if (!RAY_ECF_READY(sc)) {
1254		/*
1255		 * if this can really happen perhaps we need to save
1256		 * the chain and use it later.  I think this might
1257		 * be a confused state though because we check above
1258		 * and don't issue any commands between.
1259		 */
1260		printf("%s: dropping tx packets device busy\n", device_xname(&sc->sc_dev));
1261		ray_free_ccs_chain(sc, firsti);
1262		ifp->if_oerrors += pcount;
1263		return;
1264	}
1265
1266	/* send it off */
1267	RAY_DPRINTF(("%s: ray_start issuing %d \n", device_xname(&sc->sc_dev), firsti));
1268	SRAM_WRITE_1(sc, RAY_SCB_CCSI, firsti);
1269	RAY_ECF_START_CMD(sc);
1270
1271	ifp->if_opackets += pcount;
1272}
1273
1274/*
1275 * recevice a packet from the card
1276 */
1277static void
1278ray_recv(struct ray_softc *sc, bus_size_t ccs)
1279{
1280	struct ieee80211_frame *frame;
1281	struct ether_header *eh;
1282	struct mbuf *m;
1283	size_t pktlen, fudge, len, lenread = 0;
1284	bus_size_t bufp, ebufp, tmp;
1285	struct ifnet *ifp;
1286	u_int8_t *src, *d;
1287	u_int frag = 0, ni, i, issnap, first;
1288	u_int8_t fc0;
1289#ifdef RAY_DO_SIGLEV
1290	u_int8_t siglev;
1291#endif
1292
1293#ifdef RAY_DEBUG
1294	/* have a look if you want to see how the card rx works :) */
1295	if (ray_debug && ray_debug_dump_desc)
1296		hexdump((char *)sc->sc_memh + RAY_RCS_BASE, 0x400,
1297		    16, 4, 0);
1298#endif
1299
1300	m = 0;
1301	ifp = &sc->sc_if;
1302
1303	/*
1304	 * If we're expecting the E2-in-802.11 encapsulation that the
1305	 * WebGear Windows driver produces, fudge the packet forward
1306	 * in the mbuf by 2 bytes so that the payload after the
1307	 * Ethernet header will be aligned.  If we end up getting a
1308	 * packet that's not of this type, we'll just drop it anyway.
1309	 */
1310	if (ifp->if_flags & IFF_LINK0)
1311		fudge = 2;
1312	else
1313		fudge = 0;
1314
1315	/* it looks like at least with build 4 there is no CRC in length */
1316	first = RAY_GET_INDEX(ccs);
1317	pktlen = SRAM_READ_FIELD_2(sc, ccs, ray_cmd_rx, c_pktlen);
1318#ifdef RAY_DO_SIGLEV
1319	siglev = SRAM_READ_FIELD_1(sc, ccs, ray_cmd_rx, c_siglev);
1320#endif
1321
1322	RAY_DPRINTF(("%s: recv pktlen %ld frag %d\n", device_xname(&sc->sc_dev),
1323	    (u_long)pktlen, frag));
1324	RAY_DPRINTF_XMIT(("%s: received packet: len %ld\n", device_xname(&sc->sc_dev),
1325	    (u_long)pktlen));
1326	if (pktlen > MCLBYTES || pktlen < sizeof(*frame)) {
1327		RAY_DPRINTF(("%s: PKTLEN TOO BIG OR TOO SMALL\n",
1328		    device_xname(&sc->sc_dev)));
1329		ifp->if_ierrors++;
1330		goto done;
1331	}
1332	MGETHDR(m, M_DONTWAIT, MT_DATA);
1333	if (!m) {
1334		RAY_DPRINTF(("%s: MGETHDR FAILED\n", device_xname(&sc->sc_dev)));
1335		ifp->if_ierrors++;
1336		goto done;
1337	}
1338	if ((pktlen + fudge) > MHLEN) {
1339		/* XXX should allow chaining? */
1340		MCLGET(m, M_DONTWAIT);
1341		if ((m->m_flags & M_EXT) == 0) {
1342			RAY_DPRINTF(("%s: MCLGET FAILED\n", device_xname(&sc->sc_dev)));
1343			ifp->if_ierrors++;
1344			m_freem(m);
1345			m = 0;
1346			goto done;
1347		}
1348	}
1349	m->m_pkthdr.rcvif = ifp;
1350	m->m_pkthdr.len = pktlen;
1351	m->m_len = pktlen;
1352	m->m_data += fudge;
1353	d = mtod(m, u_int8_t *);
1354
1355	RAY_DPRINTF(("%s: recv ccs index %d\n", device_xname(&sc->sc_dev), first));
1356	i = ni = first;
1357	while ((i = ni) && i != RAY_CCS_LINK_NULL) {
1358		ccs = RAY_GET_CCS(i);
1359		bufp = SRAM_READ_FIELD_2(sc, ccs, ray_cmd_rx, c_bufp);
1360		len = SRAM_READ_FIELD_2(sc, ccs, ray_cmd_rx, c_len);
1361		/* remove the CRC */
1362#if 0
1363		/* at least with build 4 no crc seems to be here */
1364		if (frag++ == 0)
1365			len -= 4;
1366#endif
1367		ni = SRAM_READ_FIELD_1(sc, ccs, ray_cmd_rx, c_nextfrag);
1368		RAY_DPRINTF((
1369		    "%s: recv frag index %d len %ld bufp 0x%llx ni %d\n",
1370		    device_xname(&sc->sc_dev), i, (u_long)len, (unsigned long long)bufp,
1371		    ni));
1372		if (len + lenread > pktlen) {
1373			RAY_DPRINTF(("%s: BAD LEN current 0x%lx pktlen 0x%lx\n",
1374			    device_xname(&sc->sc_dev), (u_long)(len + lenread),
1375			    (u_long)pktlen));
1376			ifp->if_ierrors++;
1377			m_freem(m);
1378			m = 0;
1379			goto done;
1380		}
1381		if (i < RAY_RCCS_FIRST) {
1382			printf("ray_recv: bad ccs index 0x%x\n", i);
1383			m_freem(m);
1384			m = 0;
1385			goto done;
1386		}
1387
1388		ebufp = bufp + len;
1389		if (ebufp <= RAY_RX_END)
1390			ray_read_region(sc, bufp, d, len);
1391		else {
1392			/* wrapping */
1393			ray_read_region(sc, bufp, d, (tmp = RAY_RX_END - bufp));
1394			ray_read_region(sc, RAY_RX_BASE, d + tmp, ebufp - RAY_RX_END);
1395		}
1396		d += len;
1397		lenread += len;
1398	}
1399done:
1400
1401	RAY_DPRINTF(("%s: recv frag count %d\n", device_xname(&sc->sc_dev), frag));
1402
1403	/* free the rcss */
1404	ni = first;
1405	while ((i = ni) && (i != RAY_CCS_LINK_NULL)) {
1406		ccs = RAY_GET_CCS(i);
1407		ni = SRAM_READ_FIELD_1(sc, ccs, ray_cmd_rx, c_nextfrag);
1408		SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd, c_status,
1409		    RAY_CCS_STATUS_FREE);
1410	}
1411
1412	if (!m)
1413		return;
1414
1415	RAY_DPRINTF(("%s: recv got packet pktlen %ld actual %ld\n",
1416	    device_xname(&sc->sc_dev), (u_long)pktlen, (u_long)lenread));
1417#ifdef RAY_DEBUG
1418	if (ray_debug && ray_debug_dump_rx)
1419		ray_dump_mbuf(sc, m);
1420#endif
1421	/* receivce the packet */
1422	frame = mtod(m, struct ieee80211_frame *);
1423	fc0 = frame->i_fc[0]
1424	   & (IEEE80211_FC0_VERSION_MASK|IEEE80211_FC0_TYPE_MASK);
1425	if ((fc0 & IEEE80211_FC0_VERSION_MASK) != IEEE80211_FC0_VERSION_0) {
1426		RAY_DPRINTF(("%s: pkt not version 0 fc 0x%x\n",
1427		    device_xname(&sc->sc_dev), fc0));
1428		m_freem(m);
1429		return;
1430	}
1431	if ((fc0 & IEEE80211_FC0_TYPE_MASK) == IEEE80211_FC0_TYPE_MGT) {
1432		switch (frame->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK) {
1433		case IEEE80211_FC0_SUBTYPE_BEACON:
1434			/* Ignore beacon silently. */
1435			break;
1436		case IEEE80211_FC0_SUBTYPE_AUTH:
1437			ray_recv_auth(sc, frame);
1438			break;
1439		case IEEE80211_FC0_SUBTYPE_DEAUTH:
1440			sc->sc_authstate = RAY_AUTH_UNAUTH;
1441			break;
1442		default:
1443			RAY_DPRINTF(("%s: mgt packet not supported\n",
1444			    device_xname(&sc->sc_dev)));
1445#ifdef RAY_DEBUG
1446			hexdump((const u_int8_t*)frame, pktlen, 16, 4, 0);
1447#endif
1448			RAY_DPRINTF(("\n"));
1449			break;
1450		}
1451		m_freem(m);
1452		return;
1453	} else if ((fc0 & IEEE80211_FC0_TYPE_MASK) != IEEE80211_FC0_TYPE_DATA) {
1454		RAY_DPRINTF(("%s: pkt not type data fc0 0x%x\n",
1455		    device_xname(&sc->sc_dev), fc0));
1456		m_freem(m);
1457		return;
1458	}
1459
1460	if (pktlen < sizeof(*frame) + sizeof(struct llc)) {
1461		RAY_DPRINTF(("%s: pkt too small for llc (%ld)\n",
1462		    device_xname(&sc->sc_dev), (u_long)pktlen));
1463		m_freem(m);
1464		return;
1465	}
1466
1467	if (!memcmp(frame + 1, llc_snapid, sizeof(llc_snapid)))
1468		issnap = 1;
1469	else {
1470		/*
1471		 * if user has link0 flag set we allow the weird
1472		 * Ethernet2 in 802.11 encapsulation produced by
1473		 * the windows driver for the WebGear card
1474		 */
1475		RAY_DPRINTF(("%s: pkt not snap 0\n", device_xname(&sc->sc_dev)));
1476		if ((ifp->if_flags & IFF_LINK0) == 0) {
1477			m_freem(m);
1478			return;
1479		}
1480		issnap = 0;
1481	}
1482	switch (frame->i_fc[1] & IEEE80211_FC1_DIR_MASK) {
1483	case IEEE80211_FC1_DIR_NODS:
1484		src = frame->i_addr2;
1485		break;
1486	case IEEE80211_FC1_DIR_FROMDS:
1487		src = frame->i_addr3;
1488		break;
1489	case IEEE80211_FC1_DIR_TODS:
1490		RAY_DPRINTF(("%s: pkt ap2ap\n", device_xname(&sc->sc_dev)));
1491		m_freem(m);
1492		return;
1493	default:
1494		RAY_DPRINTF(("%s: pkt type unknown\n", device_xname(&sc->sc_dev)));
1495		m_freem(m);
1496		return;
1497	}
1498
1499#ifdef RAY_DO_SIGLEV
1500	ray_update_siglev(sc, src, siglev);
1501#endif
1502
1503	/*
1504	 * This is a mess.. we should support other LLC frame types
1505	 */
1506	if (issnap) {
1507		/* create an ether_header over top of the 802.11+SNAP header */
1508		eh = (struct ether_header *)((char *)(frame + 1) - 6);
1509		memcpy(eh->ether_shost, src, ETHER_ADDR_LEN);
1510		memcpy(eh->ether_dhost, frame->i_addr1, ETHER_ADDR_LEN);
1511	} else {
1512		/* this is the weird e2 in 802.11 encapsulation */
1513		eh = (struct ether_header *)(frame + 1);
1514	}
1515	m_adj(m, (char *)eh - (char *)frame);
1516	bpf_mtap(ifp, m);
1517	/* XXX doesn't appear to be included m->m_flags |= M_HASFCS; */
1518	ifp->if_ipackets++;
1519	(*ifp->if_input)(ifp, m);
1520}
1521
1522/*
1523 * receive an auth packet
1524 */
1525static void
1526ray_recv_auth(struct ray_softc *sc, struct ieee80211_frame *frame)
1527{
1528	u_int8_t *var = (u_int8_t *)(frame + 1);
1529
1530	if (sc->sc_mode == SC_MODE_ADHOC) {
1531		RAY_DPRINTF(("%s: recv auth packet:\n", device_xname(&sc->sc_dev)));
1532#ifdef RAY_DEBUG
1533		hexdump((const u_int8_t *)frame, sizeof(*frame) + 6, 16, 4, 0);
1534#endif
1535		RAY_DPRINTF(("\n"));
1536
1537		if (var[2] == OPEN_AUTH_REQUEST) {
1538			RAY_DPRINTF(("%s: Sending authentication response.\n",
1539			    device_xname(&sc->sc_dev)));
1540			if (ray_send_auth(sc, frame->i_addr2,
1541			    OPEN_AUTH_RESPONSE) == 0) {
1542				sc->sc_authstate = RAY_AUTH_NEEDED;
1543				memcpy(sc->sc_authid, frame->i_addr2,
1544				    ETHER_ADDR_LEN);
1545			}
1546		} else if (var[2] == OPEN_AUTH_RESPONSE) {
1547			RAY_DPRINTF(("%s: Authenticated!\n",
1548			    device_xname(&sc->sc_dev)));
1549			sc->sc_authstate = RAY_AUTH_AUTH;
1550		}
1551	}
1552}
1553
1554/*
1555 * send an auth packet
1556 */
1557static int
1558ray_send_auth(struct ray_softc *sc, u_int8_t *dest, u_int8_t auth_type)
1559{
1560	u_int8_t packet[sizeof(struct ieee80211_frame) + ETHER_ADDR_LEN], *var;
1561	struct ieee80211_frame *frame;
1562	bus_size_t bufp;
1563	int ccsindex;
1564
1565	ccsindex = ray_find_free_tx_ccs(sc, RAY_CCS_TX_FIRST);
1566	if (ccsindex == RAY_CCS_LINK_NULL) {
1567		RAY_DPRINTF(("%s: send auth failed -- no free tx slots\n",
1568		    device_xname(&sc->sc_dev)));
1569		return (ENOMEM);
1570	}
1571
1572	bufp = ray_fill_in_tx_ccs(sc, sizeof(packet), ccsindex,
1573	    RAY_CCS_LINK_NULL);
1574	frame = (struct ieee80211_frame *) packet;
1575	frame->i_fc[0] = IEEE80211_FC0_VERSION_0 | IEEE80211_FC0_SUBTYPE_AUTH;
1576	frame->i_fc[1] = 0;
1577	memcpy(frame->i_addr1, dest, ETHER_ADDR_LEN);
1578	memcpy(frame->i_addr2, sc->sc_ecf_startup.e_station_addr,
1579	    ETHER_ADDR_LEN);
1580	memcpy(frame->i_addr3, sc->sc_bssid, ETHER_ADDR_LEN);
1581
1582	var = (u_int8_t *)(frame + 1);
1583	memset(var, 0, ETHER_ADDR_LEN);
1584	var[2] = auth_type;
1585
1586	ray_write_region(sc, bufp, packet, sizeof(packet));
1587
1588	SRAM_WRITE_1(sc, RAY_SCB_CCSI, ccsindex);
1589	RAY_ECF_START_CMD(sc);
1590
1591	RAY_DPRINTF_XMIT(("%s: sent auth packet: len %lu\n",
1592	    device_xname(&sc->sc_dev), (u_long) sizeof(packet)));
1593
1594	return (0);
1595}
1596
1597/*
1598 * scan for free buffers
1599 *
1600 * Note: do _not_ try to optimize this away, there is some kind of
1601 * horrible interaction with receiving tx interrupts and they
1602 * have to be done as fast as possible, which means zero processing.
1603 * this took ~ever to figure out, don't make someone do it again!
1604 */
1605static u_int
1606ray_find_free_tx_ccs(struct ray_softc *sc, u_int hint)
1607{
1608	u_int i, stat;
1609
1610	for (i = hint; i <= RAY_CCS_TX_LAST; i++) {
1611		stat = SRAM_READ_FIELD_1(sc, RAY_GET_CCS(i), ray_cmd, c_status);
1612		if (stat == RAY_CCS_STATUS_FREE)
1613			return (i);
1614	}
1615
1616	if (hint == RAY_CCS_TX_FIRST)
1617		return (RAY_CCS_LINK_NULL);
1618
1619	for (i = RAY_CCS_TX_FIRST; i < hint; i++) {
1620		stat = SRAM_READ_FIELD_1(sc, RAY_GET_CCS(i), ray_cmd, c_status);
1621		if (stat == RAY_CCS_STATUS_FREE)
1622			return (i);
1623	}
1624	return (RAY_CCS_LINK_NULL);
1625}
1626
1627/*
1628 * allocate, initialize and link in a tx ccs for the given
1629 * page and the current chain values
1630 */
1631static bus_size_t
1632ray_fill_in_tx_ccs(struct ray_softc *sc, size_t pktlen, u_int i, u_int pi)
1633{
1634	bus_size_t ccs, bufp;
1635
1636	/* pktlen += RAY_TX_PHY_SIZE; */
1637	bufp = RAY_TX_BASE + i * RAY_TX_BUF_SIZE;
1638	bufp += sc->sc_txpad;
1639	ccs = RAY_GET_CCS(i);
1640	SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_tx, c_status, RAY_CCS_STATUS_BUSY);
1641	SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_tx, c_cmd, RAY_CMD_TX_REQ);
1642	SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_tx, c_link, RAY_CCS_LINK_NULL);
1643	SRAM_WRITE_FIELD_2(sc, ccs, ray_cmd_tx, c_bufp, bufp);
1644	SRAM_WRITE_FIELD_2(sc, ccs, ray_cmd_tx, c_len, pktlen);
1645	SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_tx, c_tx_rate, sc->sc_deftxrate);
1646	SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_tx, c_apm_mode, 0);
1647	SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_tx, c_antenna, 0);
1648
1649	/* link us in */
1650	if (pi != RAY_CCS_LINK_NULL)
1651		SRAM_WRITE_FIELD_1(sc, RAY_GET_CCS(pi), ray_cmd_tx, c_link, i);
1652
1653	RAY_DPRINTF(("%s: ray_alloc_tx_ccs bufp 0x%llx idx %u pidx %u\n",
1654	    device_xname(&sc->sc_dev), (unsigned long long)bufp, i, pi));
1655
1656	return (bufp + RAY_TX_PHY_SIZE);
1657}
1658
1659/*
1660 * an update params command has completed lookup which command and
1661 * the status
1662 */
1663static ray_cmd_func_t
1664ray_update_params_done(struct ray_softc *sc, bus_size_t ccs, u_int stat)
1665{
1666	ray_cmd_func_t rcmd;
1667
1668	rcmd = 0;
1669
1670	RAY_DPRINTF(("%s: ray_update_params_done stat %d\n",
1671	   device_xname(&sc->sc_dev), stat));
1672
1673	/* this will get more complex as we add commands */
1674	if (stat == RAY_CCS_STATUS_FAIL) {
1675		printf("%s: failed to update a promisc\n", device_xname(&sc->sc_dev));
1676		/* XXX should probably reset */
1677		/* rcmd = ray_reset; */
1678	}
1679
1680	if (sc->sc_running & SCP_UPD_PROMISC) {
1681		ray_cmd_done(sc, SCP_UPD_PROMISC);
1682		sc->sc_promisc = SRAM_READ_1(sc, RAY_HOST_TO_ECF_BASE);
1683		RAY_DPRINTF(("%s: new promisc value %d\n", device_xname(&sc->sc_dev),
1684		    sc->sc_promisc));
1685	} else if (sc->sc_updreq) {
1686		ray_cmd_done(sc, SCP_UPD_UPDATEPARAMS);
1687		/* get the update parameter */
1688		sc->sc_updreq->r_failcause =
1689		    SRAM_READ_FIELD_1(sc, ccs, ray_cmd_update, c_failcause);
1690		sc->sc_updreq = 0;
1691		wakeup(ray_update_params);
1692
1693		rcmd = ray_start_join_net;
1694	}
1695	return (rcmd);
1696}
1697
1698/*
1699 *  check too see if we have any pending commands.
1700 */
1701static void
1702ray_check_scheduled(void *arg)
1703{
1704	struct ray_softc *sc;
1705	int s, i, mask;
1706
1707	s = splnet();
1708
1709	sc = arg;
1710	RAY_DPRINTF((
1711	    "%s: ray_check_scheduled enter schd 0x%x running 0x%x ready %d\n",
1712	    device_xname(&sc->sc_dev), sc->sc_scheduled, sc->sc_running, RAY_ECF_READY(sc)));
1713
1714	if (sc->sc_timoneed) {
1715		callout_stop(&sc->sc_check_scheduled_ch);
1716		sc->sc_timoneed = 0;
1717	}
1718
1719	/* if update subcmd is running -- clear it in scheduled */
1720	if (sc->sc_running & SCP_UPDATESUBCMD)
1721		sc->sc_scheduled &= ~SCP_UPDATESUBCMD;
1722
1723	mask = SCP_FIRST;
1724	for (i = 0; i < ray_ncmdtab; mask <<= 1, i++) {
1725		if ((sc->sc_scheduled & ~SCP_UPD_MASK) == 0)
1726			break;
1727		if (!RAY_ECF_READY(sc))
1728			break;
1729		if (sc->sc_scheduled & mask)
1730			(*ray_cmdtab[i])(sc);
1731	}
1732
1733	RAY_DPRINTF((
1734	    "%s: ray_check_scheduled exit sched 0x%x running 0x%x ready %d\n",
1735	    device_xname(&sc->sc_dev), sc->sc_scheduled, sc->sc_running, RAY_ECF_READY(sc)));
1736
1737	if (sc->sc_scheduled & ~SCP_UPD_MASK)
1738		ray_set_pending(sc, sc->sc_scheduled);
1739
1740	splx(s);
1741}
1742
1743/*
1744 * check for unreported returns
1745 *
1746 * this routine is coded to only expect one outstanding request for the
1747 * timed out requests at a time, but thats all that can be outstanding
1748 * per hardware limitations
1749 */
1750static void
1751ray_check_ccs(void *arg)
1752{
1753	ray_cmd_func_t fp;
1754	struct ray_softc *sc;
1755	u_int i, cmd, stat = 0;
1756	bus_size_t ccs = 0;
1757	int s;
1758
1759	s = splnet();
1760	sc = arg;
1761
1762	RAY_DPRINTF(("%s: ray_check_ccs\n", device_xname(&sc->sc_dev)));
1763
1764	sc->sc_timocheck = 0;
1765	for (i = RAY_CCS_CMD_FIRST; i <= RAY_CCS_CMD_LAST; i++) {
1766		if (!sc->sc_ccsinuse[i])
1767			continue;
1768		ccs = RAY_GET_CCS(i);
1769		cmd = SRAM_READ_FIELD_1(sc, ccs, ray_cmd, c_cmd);
1770		switch (cmd) {
1771		case RAY_CMD_START_PARAMS:
1772		case RAY_CMD_UPDATE_MCAST:
1773		case RAY_CMD_UPDATE_PARAMS:
1774			stat = SRAM_READ_FIELD_1(sc, ccs, ray_cmd, c_status);
1775			RAY_DPRINTF(("%s: check ccs idx %u ccs 0x%llx "
1776			    "cmd 0x%x stat %u\n", device_xname(&sc->sc_dev), i,
1777			    (unsigned long long)ccs, cmd, stat));
1778			goto breakout;
1779		}
1780	}
1781breakout:
1782	/* see if we got one of the commands we are looking for */
1783	if (i > RAY_CCS_CMD_LAST)
1784		; /* nothing */
1785	else if (stat == RAY_CCS_STATUS_FREE) {
1786		stat = RAY_CCS_STATUS_COMPLETE;
1787		if ((fp = ray_ccs_done(sc, ccs)))
1788			(*fp)(sc);
1789	} else if (stat != RAY_CCS_STATUS_BUSY) {
1790		if (sc->sc_ccsinuse[i] == 1) {
1791			/* give a chance for the interrupt to occur */
1792			sc->sc_ccsinuse[i] = 2;
1793			if (!sc->sc_timocheck) {
1794				callout_reset(&sc->sc_check_ccs_ch, 1,
1795				    ray_check_ccs, sc);
1796				sc->sc_timocheck = 1;
1797			}
1798		} else if ((fp = ray_ccs_done(sc, ccs)))
1799			(*fp)(sc);
1800	} else {
1801		callout_reset(&sc->sc_check_ccs_ch, RAY_CHECK_CCS_TIMEOUT,
1802		    ray_check_ccs, sc);
1803		sc->sc_timocheck = 1;
1804	}
1805	splx(s);
1806}
1807
1808/*
1809 * read the counters, the card implements the following protocol
1810 * to keep the values from being changed while read:  It checks
1811 * the `own' bit and if zero writes the current internal counter
1812 * value, it then sets the `own' bit to 1.  If the `own' bit was 1 it
1813 * increments its internal counter.  The user thus reads the counter
1814 * if the `own' bit is one and then sets the own bit to 0.
1815 */
1816static void
1817ray_update_error_counters(struct ray_softc *sc)
1818{
1819	bus_size_t csc;
1820
1821	/* try and update the error counters */
1822	csc = RAY_STATUS_BASE;
1823	if (SRAM_READ_FIELD_1(sc, csc, ray_csc, csc_mrxo_own)) {
1824		sc->sc_rxoverflow +=
1825		    SRAM_READ_FIELD_2(sc, csc, ray_csc, csc_mrx_overflow);
1826		SRAM_WRITE_FIELD_1(sc, csc, ray_csc, csc_mrxo_own, 0);
1827	}
1828	if (SRAM_READ_FIELD_1(sc, csc, ray_csc, csc_mrxc_own)) {
1829		sc->sc_rxcksum +=
1830		    SRAM_READ_FIELD_2(sc, csc, ray_csc, csc_mrx_overflow);
1831		SRAM_WRITE_FIELD_1(sc, csc, ray_csc, csc_mrxc_own, 0);
1832	}
1833	if (SRAM_READ_FIELD_1(sc, csc, ray_csc, csc_rxhc_own)) {
1834		sc->sc_rxhcksum +=
1835		    SRAM_READ_FIELD_2(sc, csc, ray_csc, csc_rx_hcksum);
1836		SRAM_WRITE_FIELD_1(sc, csc, ray_csc, csc_rxhc_own, 0);
1837	}
1838	sc->sc_rxnoise = SRAM_READ_FIELD_1(sc, csc, ray_csc, csc_rx_noise);
1839}
1840
1841/*
1842 * one of the commands we issued has completed, process.
1843 */
1844static ray_cmd_func_t
1845ray_ccs_done(struct ray_softc *sc, bus_size_t ccs)
1846{
1847	ray_cmd_func_t rcmd;
1848	u_int cmd, stat;
1849
1850	cmd = SRAM_READ_FIELD_1(sc, ccs, ray_cmd, c_cmd);
1851	stat = SRAM_READ_FIELD_1(sc, ccs, ray_cmd, c_status);
1852
1853	RAY_DPRINTF(("%s: ray_ccs_done idx %llu cmd 0x%x stat %u\n",
1854	    device_xname(&sc->sc_dev), (unsigned long long)RAY_GET_INDEX(ccs), cmd, stat));
1855
1856	rcmd = 0;
1857	switch (cmd) {
1858	/*
1859	 * solicited commands
1860	 */
1861	case RAY_CMD_START_PARAMS:
1862		/* start network */
1863		ray_cmd_done(sc, SCP_UPD_STARTUP);
1864
1865		/* ok to start queueing packets */
1866		sc->sc_if.if_flags &= ~IFF_OACTIVE;
1867
1868		sc->sc_omode = sc->sc_mode;
1869		memcpy(&sc->sc_cnwid, &sc->sc_dnwid, sizeof(sc->sc_cnwid));
1870
1871		rcmd = ray_start_join_net;
1872		break;
1873	case RAY_CMD_UPDATE_PARAMS:
1874		rcmd = ray_update_params_done(sc, ccs, stat);
1875		break;
1876	case RAY_CMD_REPORT_PARAMS:
1877		/* get the reported parameters */
1878		ray_cmd_done(sc, SCP_REPORTPARAMS);
1879		if (!sc->sc_repreq)
1880			break;
1881		sc->sc_repreq->r_failcause =
1882		    SRAM_READ_FIELD_1(sc, ccs, ray_cmd_report, c_failcause);
1883		sc->sc_repreq->r_len =
1884		    SRAM_READ_FIELD_1(sc, ccs, ray_cmd_report, c_len);
1885		ray_read_region(sc, RAY_ECF_TO_HOST_BASE, sc->sc_repreq->r_data,
1886		    sc->sc_repreq->r_len);
1887		sc->sc_repreq = 0;
1888		wakeup(ray_report_params);
1889		break;
1890	case RAY_CMD_UPDATE_MCAST:
1891		ray_cmd_done(sc, SCP_UPD_MCAST);
1892		if (stat == RAY_CCS_STATUS_FAIL)
1893			rcmd = ray_reset;
1894		break;
1895	case RAY_CMD_START_NET:
1896	case RAY_CMD_JOIN_NET:
1897		rcmd = ray_start_join_net_done(sc, cmd, ccs, stat);
1898		break;
1899	case RAY_CMD_TX_REQ:
1900		if (sc->sc_if.if_flags & IFF_OACTIVE) {
1901			sc->sc_if.if_flags &= ~IFF_OACTIVE;
1902			/* this may also be a problem */
1903			rcmd = ray_intr_start;
1904		}
1905		/* free it -- no tracking */
1906		SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd, c_status,
1907		    RAY_CCS_STATUS_FREE);
1908		goto done;
1909	case RAY_CMD_START_ASSOC:
1910		ray_cmd_done(sc, SCP_STARTASSOC);
1911		if (stat == RAY_CCS_STATUS_FAIL)
1912			rcmd = ray_start_join_net;	/* XXX check */
1913		else {
1914			sc->sc_havenet = 1;
1915			rcmd = ray_intr_start;
1916		}
1917		break;
1918	case RAY_CMD_UPDATE_APM:
1919	case RAY_CMD_TEST_MEM:
1920	case RAY_CMD_SHUTDOWN:
1921	case RAY_CMD_DUMP_MEM:
1922	case RAY_CMD_START_TIMER:
1923		break;
1924	default:
1925		printf("%s: intr: unknown command 0x%x\n",
1926		    sc->sc_if.if_xname, cmd);
1927		break;
1928	}
1929	ray_free_ccs(sc, ccs);
1930done:
1931	/*
1932	 * see if needed things can be done now that a command
1933	 * has completed
1934	 */
1935	ray_check_scheduled(sc);
1936
1937	return (rcmd);
1938}
1939
1940/*
1941 * an unsolicited interrupt, i.e., the ECF is sending us a command
1942 */
1943static ray_cmd_func_t
1944ray_rccs_intr(struct ray_softc *sc, bus_size_t ccs)
1945{
1946	ray_cmd_func_t rcmd;
1947	u_int cmd, stat;
1948
1949	cmd = SRAM_READ_FIELD_1(sc, ccs, ray_cmd, c_cmd);
1950	stat = SRAM_READ_FIELD_1(sc, ccs, ray_cmd, c_status);
1951
1952	RAY_DPRINTF(("%s: ray_rccs_intr idx %llu cmd 0x%x stat %u\n",
1953	    device_xname(&sc->sc_dev), (unsigned long long)RAY_GET_INDEX(ccs), cmd, stat));
1954
1955	rcmd = 0;
1956	switch (cmd) {
1957	/*
1958	 * unsolicited commands
1959	 */
1960	case RAY_ECMD_RX_DONE:
1961		ray_recv(sc, ccs);
1962		goto done;
1963	case RAY_ECMD_REJOIN_DONE:
1964		if (sc->sc_mode == SC_MODE_ADHOC)
1965			break;
1966		/* get the current ssid */
1967		SRAM_READ_FIELD_N(sc, ccs, ray_cmd_net, c_bss_id,
1968		    sc->sc_bssid, sizeof(sc->sc_bssid));
1969		rcmd = ray_start_assoc;
1970		break;
1971	case RAY_ECMD_ROAM_START:
1972		/* no longer have network */
1973		sc->sc_havenet = 0;
1974		break;
1975	case RAY_ECMD_JAPAN_CALL_SIGNAL:
1976		break;
1977	default:
1978		ray_update_error_counters(sc);
1979
1980		/* this is a bogus return from build 4 don't free 0x55 */
1981		if (sc->sc_version == SC_BUILD_4 && cmd == 0x55
1982		    && RAY_GET_INDEX(ccs) == 0x55) {
1983			goto done;
1984		}
1985		printf("%s: intr: unknown command 0x%x\n",
1986		    sc->sc_if.if_xname, cmd);
1987		break;
1988	}
1989	/* free the ccs */
1990	SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd, c_status, RAY_CCS_STATUS_FREE);
1991done:
1992	return (rcmd);
1993}
1994
1995/*
1996 * process an interrupt
1997 */
1998static int
1999ray_intr(void *arg)
2000{
2001	struct ray_softc *sc;
2002	ray_cmd_func_t rcmd;
2003	u_int i, count;
2004
2005	sc = arg;
2006
2007	RAY_DPRINTF(("%s: ray_intr\n", device_xname(&sc->sc_dev)));
2008
2009	if ((++sc->sc_checkcounters % 32) == 0)
2010		ray_update_error_counters(sc);
2011
2012	count = 0;
2013	rcmd = 0;
2014	if (!REG_READ(sc, RAY_HCSIR))
2015		count = 0;
2016	else {
2017		count = 1;
2018		i = SRAM_READ_1(sc, RAY_SCB_RCCSI);
2019		if (i <= RAY_CCS_LAST)
2020			rcmd = ray_ccs_done(sc, RAY_GET_CCS(i));
2021		else if (i <= RAY_RCCS_LAST)
2022			rcmd = ray_rccs_intr(sc, RAY_GET_CCS(i));
2023		else
2024			printf("%s: intr: bad cmd index %d\n", device_xname(&sc->sc_dev), i);
2025	}
2026
2027	if (rcmd)
2028		(*rcmd)(sc);
2029
2030	if (count)
2031		REG_WRITE(sc, RAY_HCSIR, 0);
2032
2033	RAY_DPRINTF(("%s: interrupt handled %d\n", device_xname(&sc->sc_dev), count));
2034
2035	return (count ? 1 : 0);
2036}
2037
2038
2039/*
2040 * Generic CCS handling
2041 */
2042
2043/*
2044 * free the chain of descriptors -- used for freeing allocated tx chains
2045 */
2046static void
2047ray_free_ccs_chain(struct ray_softc *sc, u_int ni)
2048{
2049	u_int i;
2050
2051	while ((i = ni) != RAY_CCS_LINK_NULL) {
2052		ni = SRAM_READ_FIELD_1(sc, RAY_GET_CCS(i), ray_cmd, c_link);
2053		SRAM_WRITE_FIELD_1(sc, RAY_GET_CCS(i), ray_cmd, c_status,
2054		    RAY_CCS_STATUS_FREE);
2055	}
2056}
2057
2058/*
2059 * free up a cmd and return the old status
2060 * this routine is only used for commands
2061 */
2062static u_int8_t
2063ray_free_ccs(struct ray_softc *sc, bus_size_t ccs)
2064{
2065	u_int8_t stat;
2066
2067	RAY_DPRINTF(("%s: free_ccs idx %llu\n", device_xname(&sc->sc_dev),
2068	    (unsigned long long)RAY_GET_INDEX(ccs)));
2069
2070	stat = SRAM_READ_FIELD_1(sc, ccs, ray_cmd, c_status);
2071	SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd, c_status, RAY_CCS_STATUS_FREE);
2072	if (ccs <= RAY_GET_CCS(RAY_CCS_LAST))
2073		sc->sc_ccsinuse[RAY_GET_INDEX(ccs)] = 0;
2074
2075	return (stat);
2076}
2077
2078/*
2079 * returns 1 and in `ccb' the bus offset of the free ccb
2080 * or 0 if none are free
2081 *
2082 * If `track' is not zero, handles tracking this command
2083 * possibly indicating a callback is needed and setting a timeout
2084 * also if ECF isn't ready we terminate earlier to avoid overhead.
2085 *
2086 * this routine is only used for commands
2087 */
2088static int
2089ray_alloc_ccs(struct ray_softc *sc, bus_size_t *ccsp, u_int cmd, u_int track)
2090{
2091	bus_size_t ccs;
2092	u_int i;
2093
2094	RAY_DPRINTF(("%s: alloc_ccs cmd %d\n", device_xname(&sc->sc_dev), cmd));
2095
2096	/* for tracked commands, if not ready just set pending */
2097	if (track && !RAY_ECF_READY(sc)) {
2098		ray_cmd_schedule(sc, track);
2099		return (0);
2100	}
2101
2102	/* first scan our inuse array */
2103	for (i = RAY_CCS_CMD_FIRST; i <= RAY_CCS_CMD_LAST; i++) {
2104		/* XXX wonder if we have to probe here to make the card go */
2105		(void)SRAM_READ_FIELD_1(sc, RAY_GET_CCS(i), ray_cmd, c_status);
2106		if (!sc->sc_ccsinuse[i])
2107			break;
2108	}
2109	if (i > RAY_CCS_CMD_LAST) {
2110		if (track)
2111			ray_cmd_schedule(sc, track);
2112		return (0);
2113	}
2114	sc->sc_ccsinuse[i] = 1;
2115	ccs = RAY_GET_CCS(i);
2116	SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd, c_status, RAY_CCS_STATUS_BUSY);
2117	SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd, c_cmd, cmd);
2118	SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd, c_link, RAY_CCS_LINK_NULL);
2119
2120	*ccsp = ccs;
2121	return (1);
2122}
2123
2124
2125/*
2126 * this function sets the pending bit for the command given in 'need'
2127 * and schedules a timeout if none is scheduled already.  Any command
2128 * that uses the `host to ecf' region must be serialized.
2129 */
2130static void
2131ray_set_pending(struct ray_softc *sc, u_int cmdf)
2132{
2133	RAY_DPRINTF(("%s: ray_set_pending 0x%x\n", device_xname(&sc->sc_dev), cmdf));
2134
2135	sc->sc_scheduled |= cmdf;
2136	if (!sc->sc_timoneed) {
2137		RAY_DPRINTF(("%s: ray_set_pending new timo\n", device_xname(&sc->sc_dev)));
2138		callout_reset(&sc->sc_check_scheduled_ch,
2139		    RAY_CHECK_SCHED_TIMEOUT, ray_check_scheduled, sc);
2140		sc->sc_timoneed = 1;
2141	}
2142}
2143
2144/*
2145 * schedule the `cmdf' for completion later
2146 */
2147static void
2148ray_cmd_schedule(struct ray_softc *sc, int cmdf)
2149{
2150	int track;
2151
2152	RAY_DPRINTF(("%s: ray_cmd_schedule 0x%x\n", device_xname(&sc->sc_dev), cmdf));
2153
2154	track = cmdf;
2155	if ((cmdf & SCP_UPD_MASK) == 0)
2156		ray_set_pending(sc, track);
2157	else if (ray_cmd_is_running(sc, SCP_UPDATESUBCMD)) {
2158		/* don't do timeout mechanism if subcmd already going */
2159		sc->sc_scheduled |= cmdf;
2160	} else
2161		ray_set_pending(sc, cmdf | SCP_UPDATESUBCMD);
2162}
2163
2164/*
2165 * check to see if `cmdf' has been scheduled
2166 */
2167static int
2168ray_cmd_is_scheduled(struct ray_softc *sc, int cmdf)
2169{
2170	RAY_DPRINTF(("%s: ray_cmd_is_scheduled 0x%x\n", device_xname(&sc->sc_dev), cmdf));
2171
2172	return ((sc->sc_scheduled & cmdf) ? 1 : 0);
2173}
2174
2175/*
2176 * cancel a scheduled command (not a running one though!)
2177 */
2178static void
2179ray_cmd_cancel(struct ray_softc *sc, int cmdf)
2180{
2181	RAY_DPRINTF(("%s: ray_cmd_cancel 0x%x\n", device_xname(&sc->sc_dev), cmdf));
2182
2183	sc->sc_scheduled &= ~cmdf;
2184	if ((cmdf & SCP_UPD_MASK) && (sc->sc_scheduled & SCP_UPD_MASK) == 0)
2185		sc->sc_scheduled &= ~SCP_UPDATESUBCMD;
2186
2187	/* if nothing else needed cancel the timer */
2188	if (sc->sc_scheduled == 0 && sc->sc_timoneed) {
2189		callout_stop(&sc->sc_check_scheduled_ch);
2190		sc->sc_timoneed = 0;
2191	}
2192}
2193
2194/*
2195 * called to indicate the 'cmdf' has been issued
2196 */
2197static void
2198ray_cmd_ran(struct ray_softc *sc, int cmdf)
2199{
2200	RAY_DPRINTF(("%s: ray_cmd_ran 0x%x\n", device_xname(&sc->sc_dev), cmdf));
2201
2202	if (cmdf & SCP_UPD_MASK)
2203		sc->sc_running |= cmdf | SCP_UPDATESUBCMD;
2204	else
2205		sc->sc_running |= cmdf;
2206
2207	if ((cmdf & SCP_TIMOCHECK_CMD_MASK) && !sc->sc_timocheck) {
2208		callout_reset(&sc->sc_check_ccs_ch, RAY_CHECK_CCS_TIMEOUT,
2209		    ray_check_ccs, sc);
2210		sc->sc_timocheck = 1;
2211	}
2212}
2213
2214/*
2215 * check to see if `cmdf' has been issued
2216 */
2217static int
2218ray_cmd_is_running(struct ray_softc *sc, int cmdf)
2219{
2220	RAY_DPRINTF(("%s: ray_cmd_is_running 0x%x\n", device_xname(&sc->sc_dev), cmdf));
2221
2222	return ((sc->sc_running & cmdf) ? 1 : 0);
2223}
2224
2225/*
2226 * the given `cmdf' that was issued has completed
2227 */
2228static void
2229ray_cmd_done(struct ray_softc *sc, int cmdf)
2230{
2231	RAY_DPRINTF(("%s: ray_cmd_done 0x%x\n", device_xname(&sc->sc_dev), cmdf));
2232
2233	sc->sc_running &= ~cmdf;
2234	if (cmdf & SCP_UPD_MASK) {
2235		sc->sc_running &= ~SCP_UPDATESUBCMD;
2236		if (sc->sc_scheduled & SCP_UPD_MASK)
2237			ray_cmd_schedule(sc, sc->sc_scheduled & SCP_UPD_MASK);
2238	}
2239	if ((sc->sc_running & SCP_TIMOCHECK_CMD_MASK) == 0 && sc->sc_timocheck){
2240		callout_stop(&sc->sc_check_ccs_ch);
2241		sc->sc_timocheck = 0;
2242	}
2243}
2244
2245/*
2246 * issue the command
2247 * only used for commands not tx
2248 */
2249static int
2250ray_issue_cmd(struct ray_softc *sc, bus_size_t ccs, u_int track)
2251{
2252	u_int i;
2253
2254	RAY_DPRINTF(("%s: ray_cmd_issue 0x%x\n", device_xname(&sc->sc_dev), track));
2255
2256	/*
2257	 * XXX other drivers did this, but I think
2258	 * what we really want to do is just make sure we don't
2259	 * get here or that spinning is ok
2260	 */
2261	i = 0;
2262	while (!RAY_ECF_READY(sc))
2263		if (++i > 50) {
2264			ray_free_ccs(sc, ccs);
2265			if (track)
2266				ray_cmd_schedule(sc, track);
2267			return (0);
2268		}
2269
2270	SRAM_WRITE_1(sc, RAY_SCB_CCSI, RAY_GET_INDEX(ccs));
2271	RAY_ECF_START_CMD(sc);
2272	ray_cmd_ran(sc, track);
2273
2274	return (1);
2275}
2276
2277/*
2278 * send a simple command if we can
2279 */
2280static int
2281ray_simple_cmd(struct ray_softc *sc, u_int cmd, u_int track)
2282{
2283	bus_size_t ccs;
2284
2285	return (ray_alloc_ccs(sc, &ccs, cmd, track) &&
2286	    ray_issue_cmd(sc, ccs, track));
2287}
2288
2289/*
2290 * Functions based on CCS commands
2291 */
2292
2293/*
2294 * run a update subcommand
2295 */
2296static void
2297ray_update_subcmd(struct ray_softc *sc)
2298{
2299	int submask, i;
2300
2301	RAY_DPRINTF(("%s: ray_update_subcmd\n", device_xname(&sc->sc_dev)));
2302
2303	ray_cmd_cancel(sc, SCP_UPDATESUBCMD);
2304	if ((sc->sc_if.if_flags & IFF_RUNNING) == 0)
2305		return;
2306	submask = SCP_UPD_FIRST;
2307	for (i = 0; i < ray_nsubcmdtab; submask <<= 1, i++) {
2308		if ((sc->sc_scheduled & SCP_UPD_MASK) == 0)
2309			break;
2310		/* when done the next command will be scheduled */
2311		if (ray_cmd_is_running(sc, SCP_UPDATESUBCMD))
2312			break;
2313		if (!RAY_ECF_READY(sc))
2314			break;
2315		/*
2316		 * give priority to LSB -- e.g., if previous loop rescheduled
2317		 * doing this command after calling the function won't catch
2318		 * if a later command sets an earlier bit
2319		 */
2320		if (sc->sc_scheduled & ((submask - 1) & SCP_UPD_MASK))
2321			break;
2322		if (sc->sc_scheduled & submask)
2323			(*ray_subcmdtab[i])(sc);
2324	}
2325}
2326
2327/*
2328 * report a parameter
2329 */
2330static void
2331ray_report_params(struct ray_softc *sc)
2332{
2333	bus_size_t ccs;
2334
2335	ray_cmd_cancel(sc, SCP_REPORTPARAMS);
2336
2337	if (!sc->sc_repreq)
2338		return;
2339
2340	/* do the issue check before equality check */
2341	if ((sc->sc_if.if_flags & IFF_RUNNING) == 0)
2342		return;
2343	else if (ray_cmd_is_running(sc, SCP_REPORTPARAMS)) {
2344		ray_cmd_schedule(sc, SCP_REPORTPARAMS);
2345		return;
2346	} else if (!ray_alloc_ccs(sc, &ccs, RAY_CMD_REPORT_PARAMS,
2347	    SCP_REPORTPARAMS))
2348		return;
2349
2350	SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_report, c_paramid,
2351	    sc->sc_repreq->r_paramid);
2352	SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_report, c_nparam, 1);
2353	(void)ray_issue_cmd(sc, ccs, SCP_REPORTPARAMS);
2354}
2355
2356/*
2357 * start an association
2358 */
2359static void
2360ray_start_assoc(struct ray_softc *sc)
2361{
2362	ray_cmd_cancel(sc, SCP_STARTASSOC);
2363	if ((sc->sc_if.if_flags & IFF_RUNNING) == 0)
2364		return;
2365	else if (ray_cmd_is_running(sc, SCP_STARTASSOC))
2366		return;
2367	(void)ray_simple_cmd(sc, RAY_CMD_START_ASSOC, SCP_STARTASSOC);
2368}
2369
2370/*
2371 * Subcommand functions that use the SCP_UPDATESUBCMD command
2372 * (and are serialized with respect to other update sub commands
2373 */
2374
2375/*
2376 * download the startup parameters to the card
2377 *	-- no outstanding commands expected
2378 */
2379static void
2380ray_download_params(struct ray_softc *sc)
2381{
2382	struct ray_startup_params_head *sp;
2383	struct ray_startup_params_tail_5 *sp5;
2384	struct ray_startup_params_tail_4 *sp4;
2385	bus_size_t off;
2386
2387	RAY_DPRINTF(("%s: init_startup_params\n", device_xname(&sc->sc_dev)));
2388
2389	ray_cmd_cancel(sc, SCP_UPD_STARTUP);
2390
2391#define	PUT2(p, v) 	\
2392	do { (p)[0] = ((v >> 8) & 0xff); (p)[1] = (v & 0xff); } while(0)
2393
2394	sp = &sc->sc_startup;
2395	sp4 = &sc->sc_startup_4;
2396	sp5 = &sc->sc_startup_5;
2397	memset(sp, 0, sizeof(*sp));
2398	if (sc->sc_version == SC_BUILD_4)
2399		memset(sp4, 0, sizeof(*sp4));
2400	else
2401		memset(sp5, 0, sizeof(*sp5));
2402	/* XXX: Raylink firmware doesn't have length field for ssid */
2403	memcpy(sp->sp_ssid, sc->sc_dnwid.i_nwid, sizeof(sp->sp_ssid));
2404	sp->sp_scan_mode = 0x1;
2405	memcpy(sp->sp_mac_addr, sc->sc_ecf_startup.e_station_addr,
2406	    ETHER_ADDR_LEN);
2407	PUT2(sp->sp_frag_thresh, 0x7fff);	/* disabled */
2408	if (sc->sc_version == SC_BUILD_4) {
2409#if 1
2410		/* linux/fbsd */
2411		PUT2(sp->sp_dwell_time, 0x200);
2412		PUT2(sp->sp_beacon_period, 1);
2413#else
2414		/* divined */
2415		PUT2(sp->sp_dwell_time, 0x400);
2416		PUT2(sp->sp_beacon_period, 0);
2417#endif
2418	} else {
2419		PUT2(sp->sp_dwell_time, 128);
2420		PUT2(sp->sp_beacon_period, 256);
2421	}
2422	sp->sp_dtim_interval = 1;
2423#if 0
2424	/* these are the documented defaults for build 5/6 */
2425	sp->sp_max_retry = 0x1f;
2426	sp->sp_ack_timo = 0x86;
2427	sp->sp_sifs = 0x1c;
2428#elif 1
2429	/* these were scrounged from the linux driver */
2430	sp->sp_max_retry = 0x07;
2431
2432	sp->sp_ack_timo = 0xa3;
2433	sp->sp_sifs = 0x1d;
2434#else
2435	/* these were divined */
2436	sp->sp_max_retry = 0x03;
2437
2438	sp->sp_ack_timo = 0xa3;
2439	sp->sp_sifs = 0x1d;
2440#endif
2441#if 0
2442	/* these are the documented defaults for build 5/6 */
2443	sp->sp_difs = 0x82;
2444	sp->sp_pifs = 0;
2445#else
2446	/* linux/fbsd */
2447	sp->sp_difs = 0x82;
2448
2449	if (sc->sc_version == SC_BUILD_4)
2450		sp->sp_pifs = 0xce;
2451	else
2452		sp->sp_pifs = 0x4e;
2453#endif
2454
2455	PUT2(sp->sp_rts_thresh, 0x7fff);	/* disabled */
2456	if (sc->sc_version == SC_BUILD_4) {
2457		PUT2(sp->sp_scan_dwell, 0xfb1e);
2458		PUT2(sp->sp_scan_max_dwell, 0xc75c);
2459	} else {
2460		PUT2(sp->sp_scan_dwell, 0x4e2);
2461		PUT2(sp->sp_scan_max_dwell, 0x38a4);
2462	}
2463	sp->sp_assoc_timo = 0x5;
2464	if (sc->sc_version == SC_BUILD_4) {
2465#if 0
2466		/* linux/fbsd */
2467		sp->sp_adhoc_scan_cycle = 0x4;
2468		sp->sp_infra_scan_cycle = 0x2;
2469		sp->sp_infra_super_scan_cycle = 0x4;
2470#else
2471		/* divined */
2472		sp->sp_adhoc_scan_cycle = 0x8;
2473		sp->sp_infra_scan_cycle = 0x1;
2474		sp->sp_infra_super_scan_cycle = 0x18;
2475#endif
2476	} else {
2477		sp->sp_adhoc_scan_cycle = 0x8;
2478		sp->sp_infra_scan_cycle = 0x2;
2479		sp->sp_infra_super_scan_cycle = 0x8;
2480	}
2481	sp->sp_promisc = sc->sc_promisc;
2482	PUT2(sp->sp_uniq_word, 0x0cbd);
2483	if (sc->sc_version == SC_BUILD_4) {
2484	/* XXX what is this value anyway..? the std says 50us */
2485		/* XXX sp->sp_slot_time = 0x4e; */
2486		sp->sp_slot_time = 0x4e;
2487#if 1
2488		/*linux/fbsd*/
2489		sp->sp_roam_low_snr_thresh = 0xff;
2490#else
2491		/*divined*/
2492		sp->sp_roam_low_snr_thresh = 0x30;
2493#endif
2494	} else {
2495		sp->sp_slot_time = 0x32;
2496		sp->sp_roam_low_snr_thresh = 0xff;	/* disabled */
2497	}
2498#if 1
2499	sp->sp_low_snr_count = 0xff;		/* disabled */
2500#else
2501	/* divined -- check */
2502	sp->sp_low_snr_count = 0x07;		/* disabled */
2503#endif
2504#if 0
2505	sp->sp_infra_missed_beacon_count = 0x2;
2506#elif 1
2507	/* linux/fbsd */
2508	sp->sp_infra_missed_beacon_count = 0x5;
2509#else
2510	/* divined -- check, looks fishy */
2511	sp->sp_infra_missed_beacon_count = 0x7;
2512#endif
2513	sp->sp_adhoc_missed_beacon_count = 0xff;
2514	sp->sp_country_code = sc->sc_dcountrycode;
2515	sp->sp_hop_seq = 0x0b;
2516	if (sc->sc_version == SC_BUILD_4) {
2517		sp->sp_hop_seq_len = 0x4e;
2518		sp4->sp_cw_max = 0x3f;	/* single byte on build 4 */
2519		sp4->sp_cw_min = 0x0f;	/* single byte on build 4 */
2520		sp4->sp_noise_filter_gain = 0x4;
2521		sp4->sp_noise_limit_offset = 0x8;
2522		sp4->sp_rssi_thresh_offset = 0x28;
2523		sp4->sp_busy_thresh_offset = 0x28;
2524		sp4->sp_sync_thresh = 0x07;
2525		sp4->sp_test_mode = 0x0;
2526		sp4->sp_test_min_chan = 0x2;
2527		sp4->sp_test_max_chan = 0x2;
2528	} else {
2529		sp->sp_hop_seq_len = 0x4f;
2530		PUT2(sp5->sp_cw_max, 0x3f);
2531		PUT2(sp5->sp_cw_min, 0x0f);
2532		sp5->sp_noise_filter_gain = 0x4;
2533		sp5->sp_noise_limit_offset = 0x8;
2534		sp5->sp_rssi_thresh_offset = 0x28;
2535		sp5->sp_busy_thresh_offset = 0x28;
2536		sp5->sp_sync_thresh = 0x07;
2537		sp5->sp_test_mode = 0x0;
2538		sp5->sp_test_min_chan = 0x2;
2539		sp5->sp_test_max_chan = 0x2;
2540#if 0
2541		sp5->sp_allow_probe_resp = 0x1;
2542#else
2543		sp5->sp_allow_probe_resp = 0x0;
2544#endif
2545		sp5->sp_privacy_must_start = 0x0;
2546		sp5->sp_privacy_can_join = 0x0;
2547		sp5->sp_basic_rate_set[0] = 0x2;
2548		    /* 2 = 1Mbps, 3 = old 2Mbps 4 = 2Mbps */
2549	}
2550
2551	/* we shouldn't be called with some command pending */
2552	if (!RAY_ECF_READY(sc))
2553		panic("ray_download_params busy");
2554
2555	/* write the compatible part */
2556	off = RAY_HOST_TO_ECF_BASE;
2557	ray_write_region(sc, off, sp, sizeof(sc->sc_startup));
2558	off += sizeof(sc->sc_startup);
2559	if (sc->sc_version == SC_BUILD_4)
2560		ray_write_region(sc, off, sp4, sizeof(*sp4));
2561	else
2562		ray_write_region(sc, off, sp5, sizeof(*sp5));
2563	if (!ray_simple_cmd(sc, RAY_CMD_START_PARAMS, SCP_UPD_STARTUP))
2564		panic("ray_download_params issue");
2565}
2566
2567/*
2568 * start or join a network
2569 */
2570static void
2571ray_start_join_net(struct ray_softc *sc)
2572{
2573	struct ray_net_params np;
2574	bus_size_t ccs;
2575	int cmd;
2576
2577	ray_cmd_cancel(sc, SCP_UPD_STARTJOIN);
2578	if ((sc->sc_if.if_flags & IFF_RUNNING) == 0)
2579		return;
2580
2581	/* XXX check we may not want to re-issue */
2582	if (ray_cmd_is_running(sc, SCP_UPDATESUBCMD)) {
2583		ray_cmd_schedule(sc, SCP_UPD_STARTJOIN);
2584		return;
2585	}
2586
2587	if (sc->sc_mode == SC_MODE_ADHOC)
2588		cmd = RAY_CMD_START_NET;
2589	else
2590		cmd = RAY_CMD_JOIN_NET;
2591
2592	if (!ray_alloc_ccs(sc, &ccs, cmd, SCP_UPD_STARTJOIN))
2593		return;
2594	sc->sc_startccs = ccs;
2595	sc->sc_startcmd = cmd;
2596	if (!memcmp(&sc->sc_cnwid, &sc->sc_dnwid, sizeof(sc->sc_cnwid))
2597	    && sc->sc_omode == sc->sc_mode)
2598		SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_net, c_upd_param, 0);
2599	else {
2600		sc->sc_havenet = 0;
2601		memset(&np, 0, sizeof(np));
2602		np.p_net_type = sc->sc_mode;
2603		memcpy(np.p_ssid, sc->sc_dnwid.i_nwid, sizeof(np.p_ssid));
2604		ray_write_region(sc, RAY_HOST_TO_ECF_BASE, &np, sizeof(np));
2605		SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_net, c_upd_param, 1);
2606	}
2607	if (ray_issue_cmd(sc, ccs, SCP_UPD_STARTJOIN))
2608		callout_reset(&sc->sc_start_join_timo_ch, RAY_START_TIMEOUT,
2609		    ray_start_join_timo, sc);
2610}
2611
2612static void
2613ray_start_join_timo(void *arg)
2614{
2615	struct ray_softc *sc;
2616	u_int stat;
2617
2618	sc = arg;
2619	stat = SRAM_READ_FIELD_1(sc, sc->sc_startccs, ray_cmd, c_status);
2620	ray_start_join_net_done(sc, sc->sc_startcmd, sc->sc_startccs, stat);
2621}
2622
2623/*
2624 * The start/join has completed.  Note: we timeout the start
2625 * command because it seems to fail to work at least on the
2626 * build 4 firmware without reporting an error.  This actually
2627 * may be a result of not putting the correct params in the
2628 * initial download.  If this is a timeout `stat' will be
2629 * marked busy.
2630 */
2631static ray_cmd_func_t
2632ray_start_join_net_done(struct ray_softc *sc, u_int cmd, bus_size_t ccs, u_int stat)
2633{
2634	int i;
2635	struct ray_net_params np;
2636
2637	callout_stop(&sc->sc_start_join_timo_ch);
2638	ray_cmd_done(sc, SCP_UPD_STARTJOIN);
2639
2640	if (stat == RAY_CCS_STATUS_FAIL) {
2641		/* XXX poke ifmedia when it supports this */
2642		sc->sc_havenet = 0;
2643		return (ray_start_join_net);
2644	}
2645	if (stat == RAY_CCS_STATUS_BUSY || stat == RAY_CCS_STATUS_FREE) {
2646		/* handle the timeout condition */
2647		callout_reset(&sc->sc_start_join_timo_ch, RAY_START_TIMEOUT,
2648		    ray_start_join_timo, sc);
2649
2650		/* be safe -- not a lot occurs with no net though */
2651		if (!RAY_ECF_READY(sc))
2652			return (0);
2653
2654		/* see if our nwid is up to date */
2655		if (!memcmp(&sc->sc_cnwid, &sc->sc_dnwid, sizeof(sc->sc_cnwid))
2656		    && sc->sc_omode == sc->sc_mode)
2657			SRAM_WRITE_FIELD_1(sc,ccs, ray_cmd_net, c_upd_param, 0);
2658		else {
2659			memset(&np, 0, sizeof(np));
2660			np.p_net_type = sc->sc_mode;
2661			memcpy(np.p_ssid, sc->sc_dnwid.i_nwid,
2662			    sizeof(np.p_ssid));
2663			ray_write_region(sc, RAY_HOST_TO_ECF_BASE, &np,
2664			    sizeof(np));
2665			SRAM_WRITE_FIELD_1(sc,ccs, ray_cmd_net, c_upd_param, 1);
2666		}
2667
2668		if (sc->sc_mode == SC_MODE_ADHOC)
2669			cmd = RAY_CMD_START_NET;
2670		else
2671			cmd = RAY_CMD_JOIN_NET;
2672		SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_net, c_cmd,
2673		    RAY_CCS_STATUS_BUSY);
2674		SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_net, c_status,
2675		    RAY_CCS_STATUS_BUSY);
2676
2677		/* we simply poke the card again issuing the same ccs */
2678		SRAM_WRITE_1(sc, RAY_SCB_CCSI, RAY_GET_INDEX(ccs));
2679		RAY_ECF_START_CMD(sc);
2680		ray_cmd_ran(sc, SCP_UPD_STARTJOIN);
2681		return (0);
2682	}
2683	/* get the current ssid */
2684	SRAM_READ_FIELD_N(sc, ccs, ray_cmd_net, c_bss_id, sc->sc_bssid,
2685	    sizeof(sc->sc_bssid));
2686
2687	sc->sc_deftxrate = SRAM_READ_FIELD_1(sc, ccs, ray_cmd_net,c_def_txrate);
2688	sc->sc_encrypt = SRAM_READ_FIELD_1(sc, ccs, ray_cmd_net, c_encrypt);
2689
2690	/* adjust values for buggy build 4 */
2691	if (sc->sc_deftxrate == 0x55)
2692		sc->sc_deftxrate = RAY_PID_BASIC_RATE_1500K;
2693	if (sc->sc_encrypt == 0x55)
2694		sc->sc_encrypt = 0;
2695
2696	if (SRAM_READ_FIELD_1(sc, ccs, ray_cmd_net, c_upd_param)) {
2697		ray_read_region(sc, RAY_HOST_TO_ECF_BASE, &np, sizeof(np));
2698		/* XXX: Raylink firmware doesn't have length field for ssid */
2699		for (i = 0; i < sizeof(np.p_ssid); i++) {
2700			if (np.p_ssid[i] == '\0')
2701				break;
2702		}
2703		sc->sc_cnwid.i_len = i;
2704		memcpy(sc->sc_cnwid.i_nwid, np.p_ssid, i);
2705		sc->sc_omode = sc->sc_mode;
2706		if (np.p_net_type != sc->sc_mode)
2707			return (ray_start_join_net);
2708	}
2709	RAY_DPRINTF(("%s: net start/join nwid %.32s bssid %s inited %d\n",
2710	    device_xname(&sc->sc_dev), sc->sc_cnwid.i_nwid, ether_sprintf(sc->sc_bssid),
2711		SRAM_READ_FIELD_1(sc, ccs, ray_cmd_net, c_inited)));
2712
2713	/* network is now active */
2714	ray_cmd_schedule(sc, SCP_UPD_MCAST|SCP_UPD_PROMISC);
2715	if (cmd == RAY_CMD_JOIN_NET)
2716		return (ray_start_assoc);
2717	else {
2718		sc->sc_havenet = 1;
2719		return (ray_intr_start);
2720	}
2721}
2722
2723/*
2724 * set the card in/out of promiscuous mode
2725 */
2726static void
2727ray_update_promisc(struct ray_softc *sc)
2728{
2729	bus_size_t ccs;
2730	int promisc;
2731
2732	ray_cmd_cancel(sc, SCP_UPD_PROMISC);
2733
2734	/* do the issue check before equality check */
2735	if (sc->sc_if.if_flags & IFF_ALLMULTI)
2736		sc->sc_if.if_flags |= IFF_PROMISC;
2737	else if (sc->sc_if.if_pcount == 0)
2738		sc->sc_if.if_flags &= ~IFF_PROMISC;
2739	promisc = !!(sc->sc_if.if_flags & IFF_PROMISC);
2740	if ((sc->sc_if.if_flags & IFF_RUNNING) == 0)
2741		return;
2742	else if (ray_cmd_is_running(sc, SCP_UPDATESUBCMD)) {
2743		ray_cmd_schedule(sc, SCP_UPD_PROMISC);
2744		return;
2745	} else if (promisc == sc->sc_promisc)
2746		return;
2747	else if (!ray_alloc_ccs(sc,&ccs,RAY_CMD_UPDATE_PARAMS, SCP_UPD_PROMISC))
2748		return;
2749	SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_update, c_paramid, RAY_PID_PROMISC);
2750	SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_update, c_nparam, 1);
2751	SRAM_WRITE_1(sc, RAY_HOST_TO_ECF_BASE, promisc);
2752	(void)ray_issue_cmd(sc, ccs, SCP_UPD_PROMISC);
2753}
2754
2755/*
2756 * update the parameter based on what the user passed in
2757 */
2758static void
2759ray_update_params(struct ray_softc *sc)
2760{
2761	bus_size_t ccs;
2762
2763	ray_cmd_cancel(sc, SCP_UPD_UPDATEPARAMS);
2764	if (!sc->sc_updreq) {
2765		/* XXX do we need to wakeup here? */
2766		return;
2767	}
2768
2769	/* do the issue check before equality check */
2770	if ((sc->sc_if.if_flags & IFF_RUNNING) == 0)
2771		return;
2772	else if (ray_cmd_is_running(sc, SCP_UPDATESUBCMD)) {
2773		ray_cmd_schedule(sc, SCP_UPD_UPDATEPARAMS);
2774		return;
2775	} else if (!ray_alloc_ccs(sc, &ccs, RAY_CMD_UPDATE_PARAMS,
2776	    SCP_UPD_UPDATEPARAMS))
2777		return;
2778
2779	SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_update, c_paramid,
2780	    sc->sc_updreq->r_paramid);
2781	SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_update, c_nparam, 1);
2782	ray_write_region(sc, RAY_HOST_TO_ECF_BASE, sc->sc_updreq->r_data,
2783	    sc->sc_updreq->r_len);
2784
2785	(void)ray_issue_cmd(sc, ccs, SCP_UPD_UPDATEPARAMS);
2786}
2787
2788/*
2789 * set the multicast filter list
2790 */
2791static void
2792ray_update_mcast(struct ray_softc *sc)
2793{
2794	bus_size_t ccs;
2795	struct ether_multistep step;
2796	struct ether_multi *enm;
2797	struct ethercom *ec;
2798	bus_size_t bufp;
2799	int count;
2800
2801	ec = &sc->sc_ec;
2802	ray_cmd_cancel(sc, SCP_UPD_MCAST);
2803
2804	/* see if we have any ranges */
2805	if ((count = sc->sc_ec.ec_multicnt) < 17) {
2806		ETHER_FIRST_MULTI(step, ec, enm);
2807		while (enm) {
2808			/* see if this is a range */
2809			if (memcmp(enm->enm_addrlo, enm->enm_addrhi,
2810				ETHER_ADDR_LEN)) {
2811				count = 17;
2812				break;
2813			}
2814			ETHER_NEXT_MULTI(step, enm);
2815		}
2816	}
2817
2818	/* track this stuff even when not running */
2819	if (count > 16) {
2820		sc->sc_if.if_flags |= IFF_ALLMULTI;
2821		ray_update_promisc(sc);
2822		return;
2823	} else if (sc->sc_if.if_flags & IFF_ALLMULTI) {
2824		sc->sc_if.if_flags &= ~IFF_ALLMULTI;
2825		ray_update_promisc(sc);
2826	}
2827
2828	if ((sc->sc_if.if_flags & IFF_RUNNING) == 0)
2829		return;
2830	else if (ray_cmd_is_running(sc, SCP_UPDATESUBCMD)) {
2831		ray_cmd_schedule(sc, SCP_UPD_MCAST);
2832		return;
2833	} else if (!ray_alloc_ccs(sc,&ccs, RAY_CMD_UPDATE_MCAST, SCP_UPD_MCAST))
2834		return;
2835	SRAM_WRITE_FIELD_1(sc, ccs, ray_cmd_update_mcast, c_nmcast, count);
2836	bufp = RAY_HOST_TO_ECF_BASE;
2837	ETHER_FIRST_MULTI(step, ec, enm);
2838	while (enm) {
2839		ray_write_region(sc, bufp, enm->enm_addrlo, ETHER_ADDR_LEN);
2840		bufp += ETHER_ADDR_LEN;
2841		ETHER_NEXT_MULTI(step, enm);
2842	}
2843	(void)ray_issue_cmd(sc, ccs, SCP_UPD_MCAST);
2844}
2845
2846/*
2847 * User issued commands
2848 */
2849
2850/*
2851 * issue an "update params"
2852 *
2853 * expected to be called in sleepable context -- intended for user stuff
2854 */
2855static int
2856ray_user_update_params(struct ray_softc *sc, struct ray_param_req *pr)
2857{
2858	int rv;
2859
2860	if ((sc->sc_if.if_flags & IFF_RUNNING) == 0) {
2861		pr->r_failcause = RAY_FAILCAUSE_EDEVSTOP;
2862		return (EIO);
2863	}
2864
2865	/* wait to be able to issue the command */
2866	rv = 0;
2867	while (ray_cmd_is_running(sc, SCP_UPD_UPDATEPARAMS) ||
2868	    ray_cmd_is_scheduled(sc, SCP_UPD_UPDATEPARAMS)) {
2869		rv = tsleep(ray_update_params, 0|PCATCH, "cmd in use", 0);
2870		if (rv)
2871			return (rv);
2872		if ((sc->sc_if.if_flags & IFF_RUNNING) == 0) {
2873			pr->r_failcause = RAY_FAILCAUSE_EDEVSTOP;
2874			return (EIO);
2875		}
2876	}
2877
2878	pr->r_failcause = RAY_FAILCAUSE_WAITING;
2879	sc->sc_updreq = pr;
2880	ray_cmd_schedule(sc, SCP_UPD_UPDATEPARAMS);
2881	ray_check_scheduled(sc);
2882
2883	while (pr->r_failcause == RAY_FAILCAUSE_WAITING)
2884		(void)tsleep(ray_update_params, 0, "waiting cmd", 0);
2885	wakeup(ray_update_params);
2886
2887	return (0);
2888}
2889
2890/*
2891 * issue a report params
2892 *
2893 * expected to be called in sleepable context -- intended for user stuff
2894 */
2895static int
2896ray_user_report_params(struct ray_softc *sc, struct ray_param_req *pr)
2897{
2898	int rv;
2899
2900	if ((sc->sc_if.if_flags & IFF_RUNNING) == 0) {
2901		pr->r_failcause = RAY_FAILCAUSE_EDEVSTOP;
2902		return (EIO);
2903	}
2904
2905	/* wait to be able to issue the command */
2906	rv = 0;
2907	while (ray_cmd_is_running(sc, SCP_REPORTPARAMS)
2908	    || ray_cmd_is_scheduled(sc, SCP_REPORTPARAMS)) {
2909		rv = tsleep(ray_report_params, 0|PCATCH, "cmd in use", 0);
2910		if (rv)
2911			return (rv);
2912		if ((sc->sc_if.if_flags & IFF_RUNNING) == 0) {
2913			pr->r_failcause = RAY_FAILCAUSE_EDEVSTOP;
2914			return (EIO);
2915		}
2916	}
2917
2918	pr->r_failcause = RAY_FAILCAUSE_WAITING;
2919	sc->sc_repreq = pr;
2920	ray_cmd_schedule(sc, SCP_REPORTPARAMS);
2921	ray_check_scheduled(sc);
2922
2923	while (pr->r_failcause == RAY_FAILCAUSE_WAITING)
2924		(void)tsleep(ray_report_params, 0, "waiting cmd", 0);
2925	wakeup(ray_report_params);
2926
2927	return (0);
2928}
2929
2930
2931/*
2932 * this is a temporary wrapper around bus_space_read_region_1
2933 * as it seems to mess with gcc.  the line numbers get offset
2934 * presumably this is related to the inline asm on i386.
2935 */
2936
2937static void
2938ray_read_region(struct ray_softc *sc, bus_size_t off, void *vp, size_t c)
2939{
2940#ifdef RAY_USE_OPTIMIZED_COPY
2941	u_int n2, n4, tmp;
2942	u_int8_t *p;
2943
2944	p = vp;
2945
2946	/* XXX we may be making poor assumptions here but lets hope */
2947	switch ((off|(bus_addr_t)p) & 0x03) {
2948	case 0:
2949		if ((n4 = c / 4)) {
2950			bus_space_read_region_4(sc->sc_memt, sc->sc_memh, off,
2951			    p, n4);
2952			tmp = c & ~0x3;
2953			c &= 0x3;
2954			p += tmp;
2955			off += tmp;
2956		}
2957		switch (c) {
2958		case 3:
2959			*p = bus_space_read_1(sc->sc_memt,sc->sc_memh, off);
2960			p++, off++;
2961		case 2:
2962			*p = bus_space_read_1(sc->sc_memt,sc->sc_memh, off);
2963			p++, off++;
2964		case 1:
2965			*p = bus_space_read_1(sc->sc_memt,sc->sc_memh, off);
2966		}
2967		break;
2968	case 2:
2969		if ((n2 = (c >> 1)))
2970			bus_space_read_region_2(sc->sc_memt, sc->sc_memh, off,
2971			    p, n2);
2972		if (c & 1) {
2973			c &= ~0x1;
2974			*(p + c) = bus_space_read_1(sc->sc_memt, sc->sc_memh,
2975			    off + c);
2976		}
2977		break;
2978	case 1:
2979	case 3:
2980		bus_space_read_region_1(sc->sc_memt, sc->sc_memh, off, p, c);
2981		break;
2982	}
2983#else
2984	bus_space_read_region_1(sc->sc_memt, sc->sc_memh, off, vp, c);
2985#endif
2986}
2987
2988/*
2989 * this is a temporary wrapper around bus_space_write_region_1
2990 * as it seems to mess with gcc.  the line numbers get offset
2991 * presumably this is related to the inline asm on i386.
2992 */
2993static void
2994ray_write_region(struct ray_softc *sc, bus_size_t off, void *vp, size_t c)
2995{
2996#ifdef RAY_USE_OPTIMIZED_COPY
2997	size_t n2, n4, tmp;
2998	u_int8_t *p;
2999
3000	p = vp;
3001	/* XXX we may be making poor assumptions here but lets hope */
3002	switch ((off|(bus_addr_t)p) & 0x03) {
3003	case 0:
3004		if ((n4 = (c >> 2))) {
3005			bus_space_write_region_4(sc->sc_memt, sc->sc_memh, off,
3006			    p, n4);
3007			tmp = c & ~0x3;
3008			c &= 0x3;
3009			p += tmp;
3010			off += tmp;
3011		}
3012		switch (c) {
3013		case 3:
3014			bus_space_write_1(sc->sc_memt,sc->sc_memh, off, *p);
3015			p++, off++;
3016		case 2:
3017			bus_space_write_1(sc->sc_memt,sc->sc_memh, off, *p);
3018			p++, off++;
3019		case 1:
3020			bus_space_write_1(sc->sc_memt,sc->sc_memh, off, *p);
3021		}
3022		break;
3023	case 2:
3024		if ((n2 = (c >> 1)))
3025			bus_space_write_region_2(sc->sc_memt, sc->sc_memh, off,
3026			    p, n2);
3027		if (c & 0x1) {
3028			c &= ~0x1;
3029			bus_space_write_1(sc->sc_memt, sc->sc_memh,
3030			    off + c, *(p + c));
3031		}
3032		break;
3033	case 1:
3034	case 3:
3035		bus_space_write_region_1(sc->sc_memt, sc->sc_memh, off, p, c);
3036		break;
3037	}
3038#else
3039	bus_space_write_region_1(sc->sc_memt, sc->sc_memh, off, vp, c);
3040#endif
3041}
3042
3043#ifdef RAY_DEBUG
3044
3045#define PRINTABLE(c) ((c) >= 0x20 && (c) <= 0x7f)
3046
3047void
3048hexdump(const u_int8_t *d, int len, int br, int div, int fl)
3049{
3050	int i, j, offw, first, tlen, ni, nj, sp;
3051
3052	sp = br / div;
3053	offw = 0;
3054	if (len && (fl & HEXDF_NOOFFSET) == 0) {
3055		tlen = len;
3056		do {
3057			offw++;
3058		} while (tlen /= br);
3059	}
3060	if (offw)
3061		printf("%0*x: ", offw, 0);
3062	for (i = 0; i < len; i++, d++) {
3063		if (i && (i % br) == 0) {
3064			if ((fl & HEXDF_NOASCII) == 0) {
3065				printf("   ");
3066				d -= br;
3067				for (j = 0; j < br; d++, j++) {
3068					if (j && (j % sp) == 0)
3069						printf(" ");
3070					if (PRINTABLE(*d))
3071						printf("%c", (int)*d);
3072					else
3073						printf(".");
3074				}
3075			}
3076			if (offw)
3077				printf("\n%0*x: ", offw, i);
3078			else
3079				printf("\n");
3080			if ((fl & HEXDF_NOCOMPRESS) == 0) {
3081				first = 1;
3082				while (len - i >= br) {
3083					if (memcmp(d, d - br, br))
3084						break;
3085					d += br;
3086					i += br;
3087					if (first) {
3088						printf("*");
3089						first = 0;
3090					}
3091				}
3092				if (len == i) {
3093					printf("\n%0*x", offw, i);
3094					return;
3095				}
3096			}
3097		} else if (i && (i % sp) == 0)
3098			printf(" ");
3099		printf("%02x ", *d);
3100	}
3101	if (len && (((i - 1) % br) || i == 1)) {
3102		if ((fl & HEXDF_NOASCII) == 0) {
3103			i = i % br ? i % br : br;
3104			ni = (br - i) % br;
3105			j = (i - 1) / sp;
3106			nj = (div - j - 1) % div;
3107			j = 3 * ni + nj + 3;
3108			printf("%*s", j, "");
3109			d -= i;
3110			for (j = 0; j < i; d++, j++) {
3111				if (j && (j % sp) == 0)
3112					printf(" ");
3113				if (PRINTABLE(*d))
3114					printf("%c", (int)*d);
3115				else
3116					printf(".");
3117			}
3118		}
3119		printf("\n");
3120	}
3121}
3122
3123
3124
3125static void
3126ray_dump_mbuf(struct ray_softc *sc, struct mbuf *m)
3127{
3128	u_int8_t *d, *ed;
3129	u_int i;
3130
3131	printf("%s: pkt dump:", device_xname(&sc->sc_dev));
3132	i = 0;
3133	for (; m; m = m->m_next) {
3134		d = mtod(m, u_int8_t *);
3135		ed = d + m->m_len;
3136
3137		for (; d < ed; i++, d++) {
3138			if ((i % 16) == 0)
3139				printf("\n\t");
3140			else if ((i % 8) == 0)
3141				printf("  ");
3142			printf(" %02x", *d);
3143		}
3144	}
3145	if ((i - 1) % 16)
3146		printf("\n");
3147}
3148#endif	/* RAY_DEBUG */
3149
3150#ifdef RAY_DO_SIGLEV
3151static void
3152ray_update_siglev(struct ray_softc *sc, u_int8_t *src, u_int8_t siglev)
3153{
3154	int i, mini;
3155	struct timeval mint;
3156	struct ray_siglev *sl;
3157
3158	/* try to find host */
3159	for (i = 0; i < RAY_NSIGLEVRECS; i++) {
3160		sl = &sc->sc_siglevs[i];
3161		if (memcmp(sl->rsl_host, src, ETHER_ADDR_LEN) == 0)
3162			goto found;
3163	}
3164	/* not found, find oldest slot */
3165	mini = 0;
3166	mint.tv_sec = LONG_MAX;
3167	mint.tv_usec = 0;
3168	for (i = 0; i < RAY_NSIGLEVRECS; i++) {
3169		sl = &sc->sc_siglevs[i];
3170		if (timercmp(&sl->rsl_time, &mint, <)) {
3171			mini = i;
3172			mint = sl->rsl_time;
3173		}
3174	}
3175	sl = &sc->sc_siglevs[mini];
3176	memset(sl->rsl_siglevs, 0, RAY_NSIGLEV);
3177	memcpy(sl->rsl_host, src, ETHER_ADDR_LEN);
3178
3179 found:
3180	microtime(&sl->rsl_time);
3181	memmove(&sl->rsl_siglevs[1], sl->rsl_siglevs, RAY_NSIGLEV-1);
3182	sl->rsl_siglevs[0] = siglev;
3183}
3184#endif
3185