Home | History | Annotate | Line # | Download | only in usb
if_cuereg.h revision 1.1
      1  1.1  augustss /*	$NetBSD: if_cuereg.h,v 1.1 2000/01/17 17:12:21 augustss Exp $	*/
      2  1.1  augustss /*
      3  1.1  augustss  * Copyright (c) 1997, 1998, 1999, 2000
      4  1.1  augustss  *	Bill Paul <wpaul (at) ee.columbia.edu>.  All rights reserved.
      5  1.1  augustss  *
      6  1.1  augustss  * Redistribution and use in source and binary forms, with or without
      7  1.1  augustss  * modification, are permitted provided that the following conditions
      8  1.1  augustss  * are met:
      9  1.1  augustss  * 1. Redistributions of source code must retain the above copyright
     10  1.1  augustss  *    notice, this list of conditions and the following disclaimer.
     11  1.1  augustss  * 2. Redistributions in binary form must reproduce the above copyright
     12  1.1  augustss  *    notice, this list of conditions and the following disclaimer in the
     13  1.1  augustss  *    documentation and/or other materials provided with the distribution.
     14  1.1  augustss  * 3. All advertising materials mentioning features or use of this software
     15  1.1  augustss  *    must display the following acknowledgement:
     16  1.1  augustss  *	This product includes software developed by Bill Paul.
     17  1.1  augustss  * 4. Neither the name of the author nor the names of any co-contributors
     18  1.1  augustss  *    may be used to endorse or promote products derived from this software
     19  1.1  augustss  *    without specific prior written permission.
     20  1.1  augustss  *
     21  1.1  augustss  * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
     22  1.1  augustss  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     23  1.1  augustss  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     24  1.1  augustss  * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
     25  1.1  augustss  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     26  1.1  augustss  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     27  1.1  augustss  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     28  1.1  augustss  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     29  1.1  augustss  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     30  1.1  augustss  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
     31  1.1  augustss  * THE POSSIBILITY OF SUCH DAMAGE.
     32  1.1  augustss  *
     33  1.1  augustss  * $FreeBSD: src/sys/dev/usb/if_cuereg.h,v 1.3 2000/01/16 22:45:06 wpaul Exp $
     34  1.1  augustss  */
     35  1.1  augustss 
     36  1.1  augustss /*
     37  1.1  augustss  * Definitions for the CATC Netmate II USB to ethernet controller.
     38  1.1  augustss  */
     39  1.1  augustss 
     40  1.1  augustss 
     41  1.1  augustss /*
     42  1.1  augustss  * Vendor specific control commands.
     43  1.1  augustss  */
     44  1.1  augustss #define CUE_CMD_RESET				0xF4
     45  1.1  augustss #define CUE_CMD_GET_MACADDR			0xF2
     46  1.1  augustss #define CUE_CMD_WRITEREG			0xFA
     47  1.1  augustss #define CUE_CMD_READREG				0xFB
     48  1.1  augustss #define CUE_CMD_READSRAM			0xF1
     49  1.1  augustss #define CUE_CMD_WRITESRAM			0xFC
     50  1.1  augustss 
     51  1.1  augustss /*
     52  1.1  augustss  * Internal registers
     53  1.1  augustss  */
     54  1.1  augustss #define CUE_TX_BUFCNT				0x20
     55  1.1  augustss #define CUE_RX_BUFCNT				0x21
     56  1.1  augustss #define CUE_ADVANCED_OPMODES			0x22
     57  1.1  augustss #define CUE_TX_BUFPKTS				0x23
     58  1.1  augustss #define CUE_RX_BUFPKTS				0x24
     59  1.1  augustss #define CUE_RX_MAXCHAIN				0x25
     60  1.1  augustss 
     61  1.1  augustss #define CUE_ETHCTL				0x60
     62  1.1  augustss #define CUE_ETHSTS				0x61
     63  1.1  augustss #define CUE_PAR5				0x62
     64  1.1  augustss #define CUE_PAR4				0x63
     65  1.1  augustss #define CUE_PAR3				0x64
     66  1.1  augustss #define CUE_PAR2				0x65
     67  1.1  augustss #define CUE_PAR1				0x66
     68  1.1  augustss #define CUE_PAR0				0x67
     69  1.1  augustss 
     70  1.1  augustss /* Error counters, all 16 bits wide. */
     71  1.1  augustss #define CUE_TX_SINGLECOLL			0x69
     72  1.1  augustss #define CUE_TX_MULTICOLL			0x6B
     73  1.1  augustss #define CUE_TX_EXCESSCOLL			0x6D
     74  1.1  augustss #define CUE_RX_FRAMEERR				0x6F
     75  1.1  augustss 
     76  1.1  augustss #define CUE_LEDCTL				0x81
     77  1.1  augustss 
     78  1.1  augustss /* Advenced operating mode register */
     79  1.1  augustss #define CUE_AOP_SRAMWAITS			0x03
     80  1.1  augustss #define CUE_AOP_EMBED_RXLEN			0x08
     81  1.1  augustss #define CUE_AOP_RXCOMBINE			0x10
     82  1.1  augustss #define CUE_AOP_TXCOMBINE			0x20
     83  1.1  augustss #define CUE_AOP_EVEN_PKT_READS			0x40
     84  1.1  augustss #define CUE_AOP_LOOPBK				0x80
     85  1.1  augustss 
     86  1.1  augustss /* Ethernet control register */
     87  1.1  augustss #define CUE_ETHCTL_RX_ON			0x01
     88  1.1  augustss #define CUE_ETHCTL_LINK_POLARITY		0x02
     89  1.1  augustss #define CUE_ETHCTL_LINK_FORCE_OK		0x04
     90  1.1  augustss #define CUE_ETHCTL_MCAST_ON			0x08
     91  1.1  augustss #define CUE_ETHCTL_PROMISC			0x10
     92  1.1  augustss 
     93  1.1  augustss /* Ethernet status register */
     94  1.1  augustss #define CUE_ETHSTS_NO_CARRIER			0x01
     95  1.1  augustss #define CUE_ETHSTS_LATECOLL			0x02
     96  1.1  augustss #define CUE_ETHSTS_EXCESSCOLL			0x04
     97  1.1  augustss #define CUE_ETHSTS_TXBUF_AVAIL			0x08
     98  1.1  augustss #define CUE_ETHSTS_BAD_POLARITY			0x10
     99  1.1  augustss #define CUE_ETHSTS_LINK_OK			0x20
    100  1.1  augustss 
    101  1.1  augustss /* LED control register */
    102  1.1  augustss #define CUE_LEDCTL_BLINK_1X			0x00
    103  1.1  augustss #define CUE_LEDCTL_BLINK_2X			0x01
    104  1.1  augustss #define CUE_LEDCTL_BLINK_QUARTER_ON		0x02
    105  1.1  augustss #define CUE_LEDCTL_BLINK_QUARTER_OFF		0x03
    106  1.1  augustss #define CUE_LEDCTL_OFF				0x04
    107  1.1  augustss #define CUE_LEDCTL_FOLLOW_LINK			0x08
    108  1.1  augustss 
    109  1.1  augustss /*
    110  1.1  augustss  * Address in ASIC's internal SRAM where the
    111  1.1  augustss  * multicast hash table lives. The table is 64 bytes long,
    112  1.1  augustss  * giving us a 512-bit table. We have to set the bit that
    113  1.1  augustss  * corresponds to the broadcast address in order to enable
    114  1.1  augustss  * reception of broadcast frames.
    115  1.1  augustss  */
    116  1.1  augustss #define CUE_MCAST_TABLE_ADDR			0xFA80
    117  1.1  augustss #define CUE_MCAST_TABLE_LEN			64
    118  1.1  augustss 
    119  1.1  augustss #define CUE_TIMEOUT		1000
    120  1.1  augustss #define ETHER_ALIGN		2
    121  1.1  augustss #define CUE_BUFSZ		1536
    122  1.1  augustss #define CUE_CUTOFF		1088
    123  1.1  augustss #define CUE_MIN_FRAMELEN	60
    124  1.1  augustss #define CUE_RX_FRAMES		1
    125  1.1  augustss #define CUE_TX_FRAMES		1
    126  1.1  augustss 
    127  1.1  augustss #define CUE_RX_LIST_CNT		1
    128  1.1  augustss #define CUE_TX_LIST_CNT		1
    129  1.1  augustss 
    130  1.1  augustss #define CUE_CTL_READ		0x01
    131  1.1  augustss #define CUE_CTL_WRITE		0x02
    132  1.1  augustss 
    133  1.1  augustss #define CUE_CONFIG_NO		1
    134  1.1  augustss #define CUE_IFACE_IDX		0
    135  1.1  augustss 
    136  1.1  augustss /*
    137  1.1  augustss  * The interrupt endpoint is currently unused
    138  1.1  augustss  * by the KLSI part.
    139  1.1  augustss  */
    140  1.1  augustss #define CUE_ENDPT_RX		0x0
    141  1.1  augustss #define CUE_ENDPT_TX		0x1
    142  1.1  augustss #define CUE_ENDPT_INTR		0x2
    143  1.1  augustss #define CUE_ENDPT_MAX		0x3
    144  1.1  augustss 
    145  1.1  augustss struct cue_type {
    146  1.1  augustss 	u_int16_t		cue_vid;
    147  1.1  augustss 	u_int16_t		cue_did;
    148  1.1  augustss };
    149  1.1  augustss 
    150  1.1  augustss struct cue_softc;
    151  1.1  augustss 
    152  1.1  augustss struct cue_chain {
    153  1.1  augustss 	struct cue_softc	*cue_sc;
    154  1.1  augustss 	usbd_xfer_handle	cue_xfer;
    155  1.1  augustss 	char			*cue_buf;
    156  1.1  augustss 	struct mbuf		*cue_mbuf;
    157  1.1  augustss 	int			cue_accum;
    158  1.1  augustss 	int			cue_idx;
    159  1.1  augustss };
    160  1.1  augustss 
    161  1.1  augustss struct cue_cdata {
    162  1.1  augustss 	struct cue_chain	cue_tx_chain[CUE_TX_LIST_CNT];
    163  1.1  augustss 	struct cue_chain	cue_rx_chain[CUE_RX_LIST_CNT];
    164  1.1  augustss 	int			cue_tx_prod;
    165  1.1  augustss 	int			cue_tx_cons;
    166  1.1  augustss 	int			cue_tx_cnt;
    167  1.1  augustss 	int			cue_rx_prod;
    168  1.1  augustss };
    169  1.1  augustss 
    170  1.1  augustss #define CUE_INC(x, y)		(x) = (x + 1) % y
    171  1.1  augustss 
    172  1.1  augustss struct cue_softc {
    173  1.1  augustss 	USBBASEDEVICE		cue_dev;
    174  1.1  augustss 
    175  1.1  augustss #if defined(__FreeBSD__)
    176  1.1  augustss 	struct arpcom		arpcom;
    177  1.1  augustss 	struct callout_handle	cue_stat_ch;
    178  1.1  augustss #define GET_IFP(sc) (&(sc)->arpcom.ac_if)
    179  1.1  augustss #elif defined(__NetBSD__)
    180  1.1  augustss 	struct ethercom		cue_ec;
    181  1.1  augustss 	char			cue_dying;
    182  1.1  augustss #define GET_IFP(sc) (&(sc)->cue_ec.ec_if)
    183  1.1  augustss #endif
    184  1.1  augustss 
    185  1.1  augustss 	usbd_device_handle	cue_udev;
    186  1.1  augustss 	usbd_interface_handle	cue_iface;
    187  1.1  augustss 	u_int16_t		cue_vendor;
    188  1.1  augustss 	u_int16_t		cue_product;
    189  1.1  augustss 	int			cue_ed[CUE_ENDPT_MAX];
    190  1.1  augustss 	usbd_pipe_handle	cue_ep[CUE_ENDPT_MAX];
    191  1.1  augustss 	int			cue_unit;
    192  1.1  augustss 	u_int8_t		cue_mctab[CUE_MCAST_TABLE_LEN];
    193  1.1  augustss 	int			cue_if_flags;
    194  1.1  augustss 	u_int16_t		cue_rxfilt;
    195  1.1  augustss 	struct cue_cdata	cue_cdata;
    196  1.1  augustss };
    197