Home | History | Annotate | Line # | Download | only in ic
awivar.h revision 1.9
      1  1.9      onoe /* $NetBSD: awivar.h,v 1.9 2000/06/09 05:31:18 onoe Exp $ */
      2  1.2  sommerfe 
      3  1.6      onoe /*
      4  1.6      onoe  * Copyright (c) 2000 The NetBSD Foundation, Inc.
      5  1.1  sommerfe  * All rights reserved.
      6  1.1  sommerfe  *
      7  1.1  sommerfe  * This code is derived from software contributed to The NetBSD Foundation
      8  1.6      onoe  * by Atsushi Onoe
      9  1.1  sommerfe  *
     10  1.1  sommerfe  * Redistribution and use in source and binary forms, with or without
     11  1.1  sommerfe  * modification, are permitted provided that the following conditions
     12  1.1  sommerfe  * are met:
     13  1.1  sommerfe  * 1. Redistributions of source code must retain the above copyright
     14  1.1  sommerfe  *    notice, this list of conditions and the following disclaimer.
     15  1.1  sommerfe  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.1  sommerfe  *    notice, this list of conditions and the following disclaimer in the
     17  1.1  sommerfe  *    documentation and/or other materials provided with the distribution.
     18  1.1  sommerfe  * 3. All advertising materials mentioning features or use of this software
     19  1.1  sommerfe  *    must display the following acknowledgement:
     20  1.1  sommerfe  *        This product includes software developed by the NetBSD
     21  1.1  sommerfe  *        Foundation, Inc. and its contributors.
     22  1.1  sommerfe  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.1  sommerfe  *    contributors may be used to endorse or promote products derived
     24  1.1  sommerfe  *    from this software without specific prior written permission.
     25  1.1  sommerfe  *
     26  1.1  sommerfe  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.1  sommerfe  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.1  sommerfe  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.1  sommerfe  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.1  sommerfe  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.1  sommerfe  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.1  sommerfe  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.1  sommerfe  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.1  sommerfe  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.1  sommerfe  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.1  sommerfe  * POSSIBILITY OF SUCH DAMAGE.
     37  1.1  sommerfe  */
     38  1.1  sommerfe 
     39  1.6      onoe /* timer values in msec */
     40  1.6      onoe #define	AWI_SELFTEST_TIMEOUT	5000
     41  1.6      onoe #define	AWI_CMD_TIMEOUT		2000
     42  1.6      onoe #define	AWI_LOCKOUT_TIMEOUT	50
     43  1.6      onoe #define	AWI_ASCAN_DURATION	100
     44  1.6      onoe #define	AWI_ASCAN_WAIT		3000
     45  1.6      onoe #define	AWI_PSCAN_DURATION	200
     46  1.6      onoe #define	AWI_PSCAN_WAIT		5000
     47  1.6      onoe #define	AWI_TRANS_TIMEOUT	2000
     48  1.6      onoe 
     49  1.6      onoe #define	AWI_NTXBUFS		4
     50  1.9      onoe #define	AWI_MAX_KEYLEN		16
     51  1.6      onoe 
     52  1.6      onoe enum awi_status {
     53  1.6      onoe 	AWI_ST_INIT,
     54  1.6      onoe 	AWI_ST_SCAN,
     55  1.6      onoe 	AWI_ST_SETSS,
     56  1.6      onoe 	AWI_ST_SYNC,
     57  1.6      onoe 	AWI_ST_AUTH,
     58  1.6      onoe 	AWI_ST_ASSOC,
     59  1.6      onoe 	AWI_ST_RUNNING
     60  1.1  sommerfe };
     61  1.1  sommerfe 
     62  1.6      onoe struct awi_bss
     63  1.1  sommerfe {
     64  1.6      onoe 	TAILQ_ENTRY(awi_bss)	list;
     65  1.6      onoe 	u_int8_t	esrc[ETHER_ADDR_LEN];
     66  1.6      onoe 	u_int8_t	chanset;	/* channel set to use */
     67  1.6      onoe 	u_int8_t	pattern;	/* hop pattern to use */
     68  1.6      onoe 	u_int8_t	index;		/* index to use */
     69  1.6      onoe 	u_int8_t	rssi;		/* strength of this beacon */
     70  1.6      onoe 	u_int16_t	dwell_time;	/* dwell time */
     71  1.6      onoe 	u_int8_t	timestamp[8];	/* timestamp of this bss */
     72  1.6      onoe 	u_int8_t	bssid[ETHER_ADDR_LEN];
     73  1.6      onoe 	u_int32_t	rxtime;		/* unit's local time */
     74  1.6      onoe 	u_int16_t	interval;	/* beacon interval */
     75  1.6      onoe 	u_int8_t	txrate;
     76  1.6      onoe 	u_int8_t	fails;
     77  1.6      onoe 	u_int8_t	essid[IEEE80211_NWID_LEN + 2];
     78  1.1  sommerfe };
     79  1.1  sommerfe 
     80  1.9      onoe struct awi_wep_algo {
     81  1.9      onoe 	char		*awa_name;
     82  1.9      onoe 	int		(*awa_ctxlen) __P((void));
     83  1.9      onoe 	void		(*awa_setkey) __P((void *, u_char *, int));
     84  1.9      onoe 	void		(*awa_encrypt) __P((void *, u_char *, u_char *, int));
     85  1.9      onoe 	void		(*awa_decrypt) __P((void *, u_char *, u_char *, int));
     86  1.9      onoe };
     87  1.9      onoe 
     88  1.1  sommerfe struct awi_softc
     89  1.1  sommerfe {
     90  1.6      onoe #ifdef __NetBSD__
     91  1.1  sommerfe 	struct device 		sc_dev;
     92  1.1  sommerfe 	struct ethercom		sc_ec;
     93  1.1  sommerfe 	void			*sc_ih; /* interrupt handler */
     94  1.6      onoe #endif
     95  1.6      onoe #ifdef __FreeBSD__
     96  1.6      onoe #if __FreeBSD__ >= 4
     97  1.6      onoe 	struct {
     98  1.6      onoe 		char	dv_xname[64];	/*XXX*/
     99  1.6      onoe 	}			sc_dev;
    100  1.6      onoe #else
    101  1.6      onoe 	struct device		sc_dev;
    102  1.6      onoe #endif
    103  1.6      onoe 	struct arpcom		sc_ec;
    104  1.6      onoe #endif
    105  1.6      onoe 	struct am79c930_softc 	sc_chip;
    106  1.6      onoe 	struct ifnet		*sc_ifp;
    107  1.1  sommerfe 	int			(*sc_enable) __P((struct awi_softc *));
    108  1.1  sommerfe 	void			(*sc_disable) __P((struct awi_softc *));
    109  1.1  sommerfe 
    110  1.6      onoe 	struct ifmedia		sc_media;
    111  1.6      onoe 	enum awi_status		sc_status;
    112  1.6      onoe 	unsigned int		sc_enabled:1,
    113  1.6      onoe 				sc_busy:1,
    114  1.6      onoe 				sc_cansleep:1,
    115  1.6      onoe 				sc_invalid:1,
    116  1.7      onoe 				sc_enab_intr:1,
    117  1.6      onoe 				sc_cmd_inprog:1,
    118  1.6      onoe 				sc_format_llc:1,
    119  1.6      onoe 				sc_start_bss:1,
    120  1.6      onoe 				sc_rawbpf:1,
    121  1.6      onoe 				sc_no_bssid:1,
    122  1.8     jhawk 				sc_active_scan:1,
    123  1.8     jhawk 				sc_attached:1;	/* attach has succeeded */
    124  1.6      onoe 	int			sc_sleep_cnt;
    125  1.1  sommerfe 
    126  1.1  sommerfe 	int			sc_mgt_timer;
    127  1.4  sommerfe 
    128  1.6      onoe 	TAILQ_HEAD(, awi_bss)	sc_scan;
    129  1.6      onoe 	u_int8_t		sc_scan_cur;
    130  1.6      onoe 	u_int8_t		sc_scan_min;
    131  1.6      onoe 	u_int8_t		sc_scan_max;
    132  1.6      onoe 	u_int8_t		sc_scan_set;
    133  1.6      onoe 	struct awi_bss		sc_bss;
    134  1.9      onoe 	u_int8_t		sc_ownssid[IEEE80211_NWID_LEN + 2];
    135  1.9      onoe 	u_int8_t		sc_ownch;
    136  1.6      onoe 
    137  1.6      onoe 	int			sc_rx_timer;
    138  1.6      onoe 	u_int32_t		sc_rxdoff;
    139  1.6      onoe 	u_int32_t		sc_rxmoff;
    140  1.6      onoe 	struct mbuf		*sc_rxpend;
    141  1.6      onoe 
    142  1.6      onoe 	int			sc_tx_timer;
    143  1.6      onoe 	u_int8_t		sc_tx_rate;
    144  1.6      onoe 	struct ifqueue		sc_mgtq;
    145  1.6      onoe 	u_int32_t		sc_txbase;
    146  1.6      onoe 	u_int32_t		sc_txend;
    147  1.6      onoe 	u_int32_t		sc_txnext;
    148  1.6      onoe 	u_int32_t		sc_txdone;
    149  1.6      onoe 
    150  1.9      onoe 	int			sc_wep_keylen[IEEE80211_WEP_NKID]; /* keylen */
    151  1.9      onoe 	u_int8_t		sc_wep_key[IEEE80211_WEP_NKID][AWI_MAX_KEYLEN];
    152  1.9      onoe 	int			sc_wep_defkid;
    153  1.9      onoe 	void			*sc_wep_ctx;	/* work area */
    154  1.9      onoe 	struct awi_wep_algo	*sc_wep_algo;
    155  1.9      onoe 
    156  1.9      onoe 	char			sc_banner[AWI_BANNER_LEN];
    157  1.6      onoe 	struct awi_mib_local	sc_mib_local;
    158  1.6      onoe 	struct awi_mib_addr	sc_mib_addr;
    159  1.6      onoe 	struct awi_mib_mac	sc_mib_mac;
    160  1.6      onoe 	struct awi_mib_stat	sc_mib_stat;
    161  1.6      onoe 	struct awi_mib_mgt	sc_mib_mgt;
    162  1.6      onoe 	struct awi_mib_phy	sc_mib_phy;
    163  1.1  sommerfe };
    164  1.1  sommerfe 
    165  1.1  sommerfe #define awi_read_1(sc, off) ((sc)->sc_chip.sc_ops->read_1)(&sc->sc_chip, off)
    166  1.1  sommerfe #define awi_read_2(sc, off) ((sc)->sc_chip.sc_ops->read_2)(&sc->sc_chip, off)
    167  1.1  sommerfe #define awi_read_4(sc, off) ((sc)->sc_chip.sc_ops->read_4)(&sc->sc_chip, off)
    168  1.1  sommerfe #define awi_read_bytes(sc, off, ptr, len) ((sc)->sc_chip.sc_ops->read_bytes)(&sc->sc_chip, off, ptr, len)
    169  1.1  sommerfe 
    170  1.1  sommerfe #define awi_write_1(sc, off, val) \
    171  1.1  sommerfe 	((sc)->sc_chip.sc_ops->write_1)(&sc->sc_chip, off, val)
    172  1.1  sommerfe #define awi_write_2(sc, off, val) \
    173  1.1  sommerfe 	((sc)->sc_chip.sc_ops->write_2)(&sc->sc_chip, off, val)
    174  1.1  sommerfe #define awi_write_4(sc, off, val) \
    175  1.1  sommerfe 	((sc)->sc_chip.sc_ops->write_4)(&sc->sc_chip, off, val)
    176  1.1  sommerfe #define awi_write_bytes(sc, off, ptr, len) \
    177  1.1  sommerfe 	((sc)->sc_chip.sc_ops->write_bytes)(&sc->sc_chip, off, ptr, len)
    178  1.1  sommerfe 
    179  1.1  sommerfe #define awi_drvstate(sc, state) \
    180  1.1  sommerfe 	awi_write_1(sc, AWI_DRIVERSTATE, \
    181  1.6      onoe 	    ((state) | AWI_DRV_AUTORXLED|AWI_DRV_AUTOTXLED))
    182  1.1  sommerfe 
    183  1.6      onoe /* unalligned little endian access */
    184  1.6      onoe #define	LE_READ_2(p)							\
    185  1.6      onoe 	(((u_int8_t *)(p))[0] | (((u_int8_t *)(p))[1] << 8))
    186  1.6      onoe #define	LE_READ_4(p)							\
    187  1.6      onoe 	(((u_int8_t *)(p))[0] | (((u_int8_t *)(p))[1] << 8) |		\
    188  1.6      onoe 	 (((u_int8_t *)(p))[2] << 16) | (((u_int8_t *)(p))[3] << 24))
    189  1.6      onoe #define	LE_WRITE_2(p, v)						\
    190  1.6      onoe 	((((u_int8_t *)(p))[0] = ((u_int32_t)(v) & 0xff)),		\
    191  1.6      onoe 	 (((u_int8_t *)(p))[1] = (((u_int32_t)(v) >> 8) & 0xff)))
    192  1.6      onoe #define	LE_WRITE_4(p, v)						\
    193  1.6      onoe 	((((u_int8_t *)(p))[0] = ((u_int32_t)(v) & 0xff)),		\
    194  1.6      onoe 	 (((u_int8_t *)(p))[1] = (((u_int32_t)(v) >> 8) & 0xff)),	\
    195  1.6      onoe 	 (((u_int8_t *)(p))[2] = (((u_int32_t)(v) >> 16) & 0xff)),	\
    196  1.6      onoe 	 (((u_int8_t *)(p))[3] = (((u_int32_t)(v) >> 24) & 0xff)))
    197  1.6      onoe 
    198  1.6      onoe #define	AWI_80211_RATE(rate)	(((rate) & 0x7f) * 5)
    199  1.6      onoe 
    200  1.6      onoe int	awi_attach __P((struct awi_softc *));
    201  1.6      onoe int	awi_intr __P((void *));
    202  1.6      onoe void	awi_reset __P((struct awi_softc *));
    203  1.6      onoe #ifdef __NetBSD__
    204  1.6      onoe int	awi_activate __P((struct device *, enum devact));
    205  1.6      onoe int	awi_detach __P((struct awi_softc *));
    206  1.9      onoe void	awi_power __P((struct awi_softc *, int));
    207  1.9      onoe #endif
    208  1.9      onoe 
    209  1.9      onoe void awi_stop __P((struct awi_softc *sc));
    210  1.9      onoe int awi_init __P((struct awi_softc *sc));
    211  1.9      onoe int awi_init_region __P((struct awi_softc *));
    212  1.9      onoe int awi_wicfg __P((struct ifnet *, u_long, caddr_t));
    213  1.9      onoe 
    214  1.9      onoe int awi_wep_getalgo __P((struct awi_softc *));
    215  1.9      onoe int awi_wep_setalgo __P((struct awi_softc *, int));
    216  1.9      onoe int awi_wep_setkey __P((struct awi_softc *, int, unsigned char *, int));
    217  1.9      onoe int awi_wep_getkey __P((struct awi_softc *, int, unsigned char *, int *));
    218  1.9      onoe struct mbuf *awi_wep_encrypt __P((struct awi_softc *, struct mbuf *, int));
    219  1.9      onoe 
    220  1.9      onoe #ifdef __FreeBSD__
    221  1.9      onoe /* Provide mem* for compat with NetBSD to fix LINT */
    222  1.9      onoe static __inline int
    223  1.9      onoe memcmp(const void *b1, const void *b2, size_t len)
    224  1.9      onoe {
    225  1.9      onoe 	return (bcmp(b1, b2, len));
    226  1.9      onoe }
    227  1.9      onoe 
    228  1.9      onoe static __inline void *
    229  1.9      onoe memset(void *b, int c, size_t len)
    230  1.9      onoe {
    231  1.9      onoe 	bzero(b, len);
    232  1.9      onoe 	return (b);
    233  1.9      onoe }
    234  1.6      onoe #endif
    235