Home | History | Annotate | Line # | Download | only in ic
dp8390var.h revision 1.22
      1  1.22  thorpej /*	$NetBSD: dp8390var.h,v 1.22 2001/02/12 18:49:04 thorpej Exp $	*/
      2   1.1   scottr 
      3   1.1   scottr /*
      4   1.1   scottr  * Device driver for National Semiconductor DS8390/WD83C690 based ethernet
      5   1.1   scottr  * adapters.
      6   1.1   scottr  *
      7   1.1   scottr  * Copyright (c) 1994, 1995 Charles M. Hannum.  All rights reserved.
      8   1.1   scottr  *
      9   1.1   scottr  * Copyright (C) 1993, David Greenman.  This software may be used, modified,
     10   1.1   scottr  * copied, distributed, and sold, in both source and binary form provided that
     11   1.1   scottr  * the above copyright and these terms are retained.  Under no circumstances is
     12   1.1   scottr  * the author responsible for the proper functioning of this software, nor does
     13   1.1   scottr  * the author assume any responsibility for damages incurred with its use.
     14   1.1   scottr  */
     15   1.1   scottr 
     16  1.11  thorpej #include "rnd.h"
     17  1.11  thorpej #if NRND > 0
     18  1.11  thorpej #include <sys/rnd.h>
     19  1.11  thorpej #endif
     20  1.11  thorpej 
     21  1.21  thorpej /*
     22  1.21  thorpej  * We include MII glue here -- some DP8390 compatible chips have
     23  1.21  thorpej  * MII interfaces on them (scary, isn't it...).
     24  1.21  thorpej  */
     25  1.21  thorpej #include <dev/mii/miivar.h>
     26  1.21  thorpej 
     27   1.1   scottr #define INTERFACE_NAME_LEN	32
     28   1.1   scottr 
     29   1.1   scottr /*
     30   1.1   scottr  * dp8390_softc: per line info and status
     31   1.1   scottr  */
     32   1.1   scottr struct dp8390_softc {
     33   1.1   scottr 	struct device	sc_dev;
     34   1.1   scottr 	void	*sc_ih;
     35   1.6  thorpej 	int	sc_flags;		/* interface flags, from config */
     36   1.1   scottr 
     37   1.6  thorpej 	struct ethercom sc_ec;		/* ethernet common */
     38  1.21  thorpej 	struct mii_data sc_mii;		/* MII glue */
     39  1.21  thorpej #define	sc_media sc_mii.mii_media	/* compatibilty definition */
     40   1.1   scottr 
     41   1.1   scottr 	bus_space_tag_t	sc_regt;	/* NIC register space tag */
     42   1.1   scottr 	bus_space_handle_t sc_regh;	/* NIC register space handle */
     43   1.1   scottr 	bus_space_tag_t	sc_buft;	/* Buffer space tag */
     44   1.1   scottr 	bus_space_handle_t sc_bufh;	/* Buffer space handle */
     45   1.1   scottr 
     46   1.1   scottr 	bus_size_t sc_reg_map[16];	/* register map (offsets) */
     47   1.1   scottr 
     48   1.7  thorpej 	int	is790;		/* NIC is a 790 */
     49   1.1   scottr 
     50   1.1   scottr 	u_int8_t cr_proto;	/* values always set in CR */
     51  1.16    enami 	u_int8_t rcr_proto;	/* values always set in RCR */
     52   1.2   scottr 	u_int8_t dcr_reg;	/* override DCR iff LS is set */
     53   1.1   scottr 
     54   1.1   scottr 	int	mem_start;	/* offset of NIC memory */
     55   1.1   scottr 	int	mem_end;	/* offset of NIC memory end */
     56   1.1   scottr 	int	mem_size;	/* total shared memory size */
     57   1.1   scottr 	int	mem_ring;	/* offset of start of RX ring-buffer */
     58   1.1   scottr 
     59   1.1   scottr 	u_short	txb_cnt;	/* Number of transmit buffers */
     60   1.1   scottr 	u_short	txb_inuse;	/* number of transmit buffers active */
     61   1.1   scottr 
     62   1.1   scottr 	u_short	txb_new;	/* pointer to where new buffer will be added */
     63   1.1   scottr 	u_short	txb_next_tx;	/* pointer to next buffer ready to xmit */
     64   1.1   scottr 	u_short	txb_len[8];	/* buffered xmit buffer lengths */
     65   1.1   scottr 	u_short	tx_page_start;	/* first page of TX buffer area */
     66   1.1   scottr 	u_short	rec_page_start; /* first page of RX ring-buffer */
     67   1.1   scottr 	u_short	rec_page_stop;	/* last page of RX ring-buffer */
     68   1.1   scottr 	u_short	next_packet;	/* pointer to next unread RX packet */
     69   1.1   scottr 
     70  1.20  tsutsui 	u_int8_t sc_enaddr[ETHER_ADDR_LEN];	/* storage for MAC address */
     71   1.1   scottr 
     72   1.5  thorpej 	int	sc_enabled;	/* boolean; power enabled on interface */
     73  1.11  thorpej 
     74  1.11  thorpej #if NRND > 0
     75  1.11  thorpej 	rndsource_element_t rnd_source; /* random source */
     76  1.11  thorpej #endif
     77   1.5  thorpej 
     78   1.1   scottr 	int	(*test_mem) __P((struct dp8390_softc *));
     79   1.1   scottr 	void	(*init_card) __P((struct dp8390_softc *));
     80   1.1   scottr 	void	(*read_hdr) __P((struct dp8390_softc *,
     81   1.1   scottr 		    int, struct dp8390_ring *));
     82   1.1   scottr 	void	(*recv_int) __P((struct dp8390_softc *));
     83   1.1   scottr 	int	(*ring_copy) __P((struct dp8390_softc *,
     84   1.1   scottr 		    int, caddr_t, u_short));
     85   1.1   scottr 	int	(*write_mbuf) __P((struct dp8390_softc *, struct mbuf *, int));
     86   1.5  thorpej 
     87   1.5  thorpej 	int	(*sc_enable) __P((struct dp8390_softc *));
     88   1.5  thorpej 	void	(*sc_disable) __P((struct dp8390_softc *));
     89   1.6  thorpej 
     90  1.22  thorpej 	void	(*sc_media_init) __P((struct dp8390_softc *));
     91  1.22  thorpej 	void	(*sc_media_fini) __P((struct dp8390_softc *));
     92  1.22  thorpej 
     93   1.6  thorpej 	int	(*sc_mediachange) __P((struct dp8390_softc *));
     94   1.6  thorpej 	void	(*sc_mediastatus) __P((struct dp8390_softc *,
     95   1.6  thorpej 		    struct ifmediareq *));
     96   1.1   scottr };
     97   1.1   scottr 
     98   1.1   scottr /*
     99   1.1   scottr  * Vendor types
    100   1.1   scottr  */
    101   1.1   scottr #define DP8390_VENDOR_UNKNOWN	0xff	/* Unknown network card */
    102   1.1   scottr #define DP8390_VENDOR_WD_SMC	0x00	/* Western Digital/SMC */
    103   1.1   scottr #define DP8390_VENDOR_3COM	0x01	/* 3Com */
    104   1.1   scottr #define DP8390_VENDOR_NOVELL	0x02	/* Novell */
    105   1.1   scottr #define DP8390_VENDOR_APPLE	0x10	/* Apple Ethernet card */
    106   1.1   scottr #define DP8390_VENDOR_INTERLAN	0x11	/* Interlan A310 card (GatorCard) */
    107   1.1   scottr #define DP8390_VENDOR_DAYNA	0x12	/* DaynaPORT E/30s (and others?) */
    108   1.1   scottr #define DP8390_VENDOR_ASANTE	0x13	/* Asante MacCon II/E */
    109   1.1   scottr #define DP8390_VENDOR_FARALLON	0x14	/* Farallon EtherMac II-TP */
    110   1.1   scottr #define DP8390_VENDOR_FOCUS	0x15	/* FOCUS Enhancements EtherLAN */
    111   1.1   scottr #define DP8390_VENDOR_KINETICS	0x16	/* Kinetics EtherPort SE/30 */
    112   1.8   scottr #define DP8390_VENDOR_CABLETRON	0x17	/* Cabletron Ethernet */
    113   1.1   scottr 
    114   1.1   scottr /*
    115   1.1   scottr  * Compile-time config flags
    116   1.1   scottr  */
    117   1.1   scottr /*
    118   1.1   scottr  * This sets the default for enabling/disablng the tranceiver.
    119   1.1   scottr  */
    120   1.1   scottr #define DP8390_DISABLE_TRANCEIVER	0x0001
    121   1.1   scottr 
    122   1.1   scottr /*
    123   1.1   scottr  * This forces the board to be used in 8/16-bit mode even if it autoconfigs
    124   1.1   scottr  * differently.
    125   1.1   scottr  */
    126   1.1   scottr #define DP8390_FORCE_8BIT_MODE		0x0002
    127   1.1   scottr #define DP8390_FORCE_16BIT_MODE		0x0004
    128   1.1   scottr 
    129   1.1   scottr /*
    130   1.1   scottr  * This disables the use of multiple transmit buffers.
    131   1.1   scottr  */
    132   1.1   scottr #define DP8390_NO_MULTI_BUFFERING	0x0008
    133   1.1   scottr 
    134   1.1   scottr /*
    135   1.1   scottr  * This forces all operations with the NIC memory to use Programmed I/O (i.e.
    136   1.1   scottr  * not via shared memory).
    137   1.1   scottr  */
    138   1.1   scottr #define DP8390_FORCE_PIO		0x0010
    139  1.16    enami 
    140  1.16    enami /*
    141  1.16    enami  * The chip is ASIX AX88190 and needs work around.
    142  1.16    enami  */
    143  1.16    enami #define	DP8390_DO_AX88190_WORKAROUND	0x0020
    144  1.19    jhawk 
    145  1.19    jhawk #define DP8390_ATTACHED			0x0040	/* attach has succeeded */
    146   1.1   scottr 
    147   1.1   scottr /*
    148   1.1   scottr  * NIC register access macros
    149   1.1   scottr  */
    150   1.5  thorpej #define NIC_GET(t, h, reg)	bus_space_read_1(t, h,			\
    151   1.5  thorpej 				    ((sc)->sc_reg_map[reg]))
    152   1.5  thorpej #define NIC_PUT(t, h, reg, val)	bus_space_write_1(t, h,			\
    153   1.5  thorpej 				    ((sc)->sc_reg_map[reg]), (val))
    154  1.17       ws #define	NIC_BARRIER(t, h)	bus_space_barrier(t, h, 0, 0x10,	\
    155  1.17       ws 			    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE)
    156   1.1   scottr 
    157  1.22  thorpej int	dp8390_config __P((struct dp8390_softc *));
    158   1.5  thorpej int	dp8390_intr __P((void *));
    159   1.1   scottr int	dp8390_ioctl __P((struct ifnet *, u_long, caddr_t));
    160   1.1   scottr void	dp8390_start __P((struct ifnet *));
    161   1.1   scottr void	dp8390_watchdog __P((struct ifnet *));
    162   1.1   scottr void	dp8390_reset __P((struct dp8390_softc *));
    163   1.1   scottr void	dp8390_init __P((struct dp8390_softc *));
    164   1.1   scottr void	dp8390_stop __P((struct dp8390_softc *));
    165   1.1   scottr 
    166   1.1   scottr void	dp8390_rint __P((struct dp8390_softc *));
    167   1.1   scottr 
    168   1.1   scottr void	dp8390_getmcaf __P((struct ethercom *, u_int8_t *));
    169   1.1   scottr struct mbuf *dp8390_get __P((struct dp8390_softc *, int, u_short));
    170   1.1   scottr void	dp8390_read __P((struct dp8390_softc *, int, u_short));
    171   1.9  thorpej 
    172   1.9  thorpej int	dp8390_enable __P((struct dp8390_softc *));
    173   1.9  thorpej void	dp8390_disable __P((struct dp8390_softc *));
    174  1.10  thorpej 
    175  1.10  thorpej int	dp8390_activate __P((struct device *, enum devact));
    176  1.12   itojun 
    177  1.13   itojun int	dp8390_detach __P((struct dp8390_softc *, int));
    178  1.22  thorpej 
    179  1.22  thorpej int	dp8390_mediachange __P((struct ifnet *));
    180  1.22  thorpej void	dp8390_mediastatus __P((struct ifnet *, struct ifmediareq *));
    181  1.22  thorpej 
    182  1.22  thorpej void	dp8390_media_init __P((struct dp8390_softc *));
    183  1.18       ws 
    184  1.18       ws #ifdef IPKDB_DP8390
    185  1.18       ws int	dp8390_ipkdb_attach __P((struct ipkdb_if *));
    186  1.18       ws #endif
    187