Home | History | Annotate | Line # | Download | only in dev
mb8795reg.h revision 1.3.134.1
      1  1.3.134.1    rmind /*	$NetBSD: mb8795reg.h,v 1.3.134.1 2010/05/30 05:17:01 rmind Exp $	*/
      2        1.1      dbj /*
      3        1.1      dbj  * Copyright (c) 1998 Darrin B. Jewell
      4        1.1      dbj  * All rights reserved.
      5        1.1      dbj  *
      6        1.1      dbj  * Redistribution and use in source and binary forms, with or without
      7        1.1      dbj  * modification, are permitted provided that the following conditions
      8        1.1      dbj  * are met:
      9        1.1      dbj  * 1. Redistributions of source code must retain the above copyright
     10        1.1      dbj  *    notice, this list of conditions and the following disclaimer.
     11        1.1      dbj  * 2. Redistributions in binary form must reproduce the above copyright
     12        1.1      dbj  *    notice, this list of conditions and the following disclaimer in the
     13        1.1      dbj  *    documentation and/or other materials provided with the distribution.
     14        1.1      dbj  *
     15        1.1      dbj  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     16        1.1      dbj  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     17        1.1      dbj  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     18        1.1      dbj  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     19        1.1      dbj  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     20        1.1      dbj  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     21        1.1      dbj  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     22        1.1      dbj  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     23        1.1      dbj  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     24        1.1      dbj  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     25        1.1      dbj  */
     26        1.1      dbj 
     27        1.1      dbj /*
     28        1.1      dbj  * Fujitsu Ethernet Data Link Controller (MB8795)
     29        1.1      dbj  * and the Fujitsu Manchester Encoder/Decoder (MB502).
     30        1.1      dbj  */
     31        1.1      dbj 
     32        1.2      dbj #if 0
     33        1.3  mycroft struct mb8795_regs {
     34        1.3  mycroft   unsigned char	mb8795_txstat;      /* tx status */
     35        1.3  mycroft   unsigned char mb8795_txmask;      /* tx interrupt condition mask */
     36        1.3  mycroft   unsigned char mb8795_rxstat;      /* rx status */
     37        1.3  mycroft   unsigned char mb8795_rxmask;      /* rx interrupt condition mask */
     38        1.3  mycroft   unsigned char mb8795_txmode;      /* tx control/mode register */
     39        1.3  mycroft   unsigned char mb8795_rxmode;      /* rx control/mode register */
     40        1.3  mycroft   unsigned char mb8795_reset;       /* reset mode */
     41        1.3  mycroft   unsigned char mb8795_tdc_lsb;     /* transmit data count LSB */
     42        1.3  mycroft   unsigned char mb8795_addr[6];     /* physical address */
     43        1.3  mycroft   unsigned char mb8795_reserved;
     44        1.3  mycroft   unsigned char mb8795_tdc_msb;     /* transmit data count MSB */
     45        1.1      dbj };
     46        1.2      dbj #endif
     47        1.1      dbj 
     48        1.1      dbj /* transmitter status (address 0) */
     49        1.3  mycroft #define MB8795_TXSTAT               0
     50        1.1      dbj 
     51        1.3  mycroft #define MB8795_TXSTAT_READY		0x80	/* ready for packet */
     52        1.3  mycroft #define MB8795_TXSTAT_BUSY		0x40	/* receive carrier detect */
     53        1.3  mycroft #define MB8795_TXSTAT_TXRECV	0x20	/* transmission received */
     54        1.3  mycroft #define MB8795_TXSTAT_SHORTED	0x10	/* possible coax short */
     55        1.3  mycroft #define MB8795_TXSTAT_UNDERFLOW	0x08	/* underflow on xmit */
     56        1.3  mycroft #define MB8795_TXSTAT_COLLERR	0x04	/* collision detected */
     57        1.3  mycroft #define MB8795_TXSTAT_COLLERR16	0x02	/* 16th collision error */
     58        1.3  mycroft #define MB8795_TXSTAT_PARERR	0x01	/* parity error in tx data */
     59        1.3  mycroft #define MB8795_TXSTAT_CLEAR		0xff	/* clear all status bits */
     60        1.1      dbj 
     61        1.3  mycroft #define MB8795_TXSTAT_BITS \
     62        1.1      dbj "\20\10READY\07BUSY\06TXRECV\05SHORTED\
     63        1.1      dbj \04UNDERFLOW\03COLLERR\02COLLERR16\01PARERR"
     64        1.1      dbj 
     65        1.1      dbj /* transmit masks (address 1) */
     66        1.3  mycroft #define MB8795_TXMASK               1
     67        1.1      dbj 
     68        1.3  mycroft #define MB8795_TXMASK_READYIE	0x80	/* tx int on packet ready */
     69        1.3  mycroft #define MB8795_TXMASK_TXRXIE	0x20	/* tx int on transmit rec'd */
     70        1.3  mycroft #define MB8795_TXMASK_UNDERFLOWIE	0x08	/* tx int on underflow */
     71        1.3  mycroft #define MB8795_TXMASK_COLLIE	0x04	/* tx int on collision */
     72        1.3  mycroft #define MB8795_TXMASK_COLL16IE	0x02	/* tx int on 16th collision */
     73        1.3  mycroft #define MB8795_TXMASK_PARERRIE	0x01	/* tx int on parity error */
     74        1.1      dbj 
     75        1.3  mycroft #define MB8795_TXMASK_BITS \
     76        1.1      dbj "\20\10READYIE\06TXRXIE\04UNDERFLOWIE\03COLLIE\02COLL16IE\01PARERRIE"
     77        1.1      dbj 
     78        1.1      dbj /* cummulative receiver status (address 2) */
     79        1.3  mycroft #define MB8795_RXSTAT               2
     80        1.1      dbj 
     81        1.3  mycroft #define MB8795_RXSTAT_OK		0x80	/* packet received is correct */
     82        1.3  mycroft #define MB8795_RXSTAT_RESET		0x10	/* reset packet received */
     83        1.3  mycroft #define MB8795_RXSTAT_SHORT		0x08	/* < minimum length */
     84        1.3  mycroft #define MB8795_RXSTAT_ALIGNERR	0x04	/* alignment error */
     85        1.3  mycroft #define MB8795_RXSTAT_CRCERR	0x02	/* CRC error */
     86        1.3  mycroft #define MB8795_RXSTAT_OVERFLOW	0x01	/* receiver FIFO overflow */
     87        1.3  mycroft #define MB8795_RXSTAT_CLEAR		0xff	/* clear all status bits */
     88        1.1      dbj 
     89        1.3  mycroft #define MB8795_RXSTAT_BITS \
     90        1.1      dbj "\20\10OK\05RESET\04SHORT\03ALIGNERR\02CRCERR\01OVERFLOW"
     91        1.1      dbj 
     92        1.1      dbj /* receiver masks (address 3) */
     93        1.3  mycroft #define MB8795_RXMASK               3
     94        1.1      dbj 
     95        1.3  mycroft #define MB8795_RXMASK_OKIE		0x80	/* rx int on packet ok */
     96        1.3  mycroft #define MB8795_RXMASK_RESETIE	0x10	/* rx int on reset packet */
     97        1.3  mycroft #define MB8795_RXMASK_SHORTIE	0x08	/* rx int on short packet */
     98        1.3  mycroft #define MB8795_RXMASK_ALIGNERRIE	0x04	/* rx int on align error */
     99        1.3  mycroft #define MB8795_RXMASK_CRCERRIE	0x02	/* rx int on CRC error */
    100        1.3  mycroft #define MB8795_RXMASK_OVERFLOWIE	0x01	/* rx int on overflow error */
    101        1.1      dbj 
    102        1.3  mycroft #define MB8795_RXMASK_BITS \
    103        1.1      dbj "\20\10OKIE\05RESETIE\04SHORTIE\03ALIGNERRIE\02CRCERRIE\01OVERFLOWIE"
    104        1.1      dbj 
    105        1.1      dbj /* transmitter mode (address 4) */
    106        1.3  mycroft #define MB8795_TXMODE               4
    107        1.1      dbj 
    108        1.3  mycroft #define MB8795_TXMODE_COLLMASK	0xF0	/* collision count */
    109        1.3  mycroft #define MB8795_TXMODE_TURBOSTART	0x80
    110        1.3  mycroft #define MB8795_TXMODE_PARIGNORE	0x08	/* ignore parity */
    111        1.3  mycroft #define MB8795_TXMODE_TURBO1		0x04
    112        1.3  mycroft #define MB8795_TXMODE_LB_DISABLE	0x02	/* loop back disabled */
    113        1.3  mycroft #define MB8795_TXMODE_DISCONTENT	0x01	/* disable contention (rx carrier) */
    114        1.1      dbj 
    115        1.1      dbj /* Should probably figure out how to put in the COLLMASK value in here */
    116        1.3  mycroft #define MB8795_TXMODE_BITS \
    117        1.1      dbj "\20\04PARIGNORE\02LB_DISABLE\01DISCONTENT"
    118        1.1      dbj 
    119        1.1      dbj /* receiver mode (address 5) */
    120        1.3  mycroft #define MB8795_RXMODE               5
    121        1.1      dbj 
    122        1.3  mycroft #define MB8795_RXMODE_TEST		0x80	/* Must be zero for normal op */
    123        1.3  mycroft #define MB8795_RXMODE_ADDRSIZE	0x10	/* reduces NODE match to 5 chars */
    124        1.3  mycroft #define MB8795_RXMODE_SHORTENABLE	0x08	/* rx packets >= 10 bytes */
    125        1.3  mycroft #define MB8795_RXMODE_RESETENABLE	0x04	/* must be zero */
    126        1.3  mycroft #define MB8795_RXMODE_PROMISCUOUS	0x03	/* accept all packets */
    127        1.3  mycroft #define MB8795_RXMODE_MULTICAST	0x02	/* accept broad/multicasts */
    128        1.3  mycroft #define MB8795_RXMODE_NORMAL	0x01	/* accept broad/limited multicasts */
    129        1.3  mycroft #define MB8795_RXMODE_OFF		0x00	/* accept no packets */
    130        1.1      dbj 
    131        1.1      dbj /* this define is less useful for the promiscuous bits, bit I leave it here */
    132        1.3  mycroft #define MB8795_RXMODE_BITS \
    133        1.1      dbj "\20\10TEST\05ADDRSIZE\04SHORTENABLE\03RESETENABLE\02MULTICAST\01NORMAL"
    134        1.1      dbj 
    135        1.1      dbj /* reset mode (address 6) */
    136        1.3  mycroft #define MB8795_RESET_MODE		0x80	/* reset mode */
    137        1.3  mycroft #define MB8795_RESET                6
    138        1.1      dbj 
    139        1.3  mycroft #define MB8795_TDC_LSB              7
    140        1.3  mycroft #define MB8795_ENADDR               8
    141        1.3  mycroft #define MB8795_TDC_MSB              15
    142        1.1      dbj 
    143        1.1      dbj #define	ENRX_EOP	0x80000000	/* end-of-packet flag */
    144        1.1      dbj #define	ENRX_BOP	0x40000000	/* beginning-of-packet flag */
    145        1.1      dbj #define ENTX_EOP	0x80000000	/* end-of-packet flag */
    146