Home | History | Annotate | Line # | Download | only in ic
lancevar.h revision 1.5
      1  1.5  jdolecek /*	$NetBSD: lancevar.h,v 1.5 2003/06/29 14:42:58 jdolecek Exp $	*/
      2  1.1  drochner 
      3  1.1  drochner /*-
      4  1.2   mycroft  * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
      5  1.1  drochner  * All rights reserved.
      6  1.1  drochner  *
      7  1.1  drochner  * This code is derived from software contributed to The NetBSD Foundation
      8  1.2   mycroft  * by Charles M. Hannum and by Jason R. Thorpe of the Numerical Aerospace
      9  1.2   mycroft  * Simulation Facility, NASA Ames Research Center.
     10  1.1  drochner  *
     11  1.1  drochner  * Redistribution and use in source and binary forms, with or without
     12  1.1  drochner  * modification, are permitted provided that the following conditions
     13  1.1  drochner  * are met:
     14  1.1  drochner  * 1. Redistributions of source code must retain the above copyright
     15  1.1  drochner  *    notice, this list of conditions and the following disclaimer.
     16  1.1  drochner  * 2. Redistributions in binary form must reproduce the above copyright
     17  1.1  drochner  *    notice, this list of conditions and the following disclaimer in the
     18  1.1  drochner  *    documentation and/or other materials provided with the distribution.
     19  1.1  drochner  * 3. All advertising materials mentioning features or use of this software
     20  1.1  drochner  *    must display the following acknowledgement:
     21  1.1  drochner  *	This product includes software developed by the NetBSD
     22  1.1  drochner  *	Foundation, Inc. and its contributors.
     23  1.1  drochner  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24  1.1  drochner  *    contributors may be used to endorse or promote products derived
     25  1.1  drochner  *    from this software without specific prior written permission.
     26  1.1  drochner  *
     27  1.1  drochner  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28  1.1  drochner  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29  1.1  drochner  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30  1.1  drochner  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31  1.1  drochner  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32  1.1  drochner  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33  1.1  drochner  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34  1.1  drochner  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35  1.1  drochner  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36  1.1  drochner  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37  1.1  drochner  * POSSIBILITY OF SUCH DAMAGE.
     38  1.1  drochner  */
     39  1.1  drochner 
     40  1.1  drochner #include "rnd.h"
     41  1.1  drochner 
     42  1.1  drochner #if NRND > 0
     43  1.1  drochner #include <sys/rnd.h>
     44  1.1  drochner #endif
     45  1.1  drochner 
     46  1.1  drochner struct lance_softc {
     47  1.1  drochner 	struct	device sc_dev;		/* base device glue */
     48  1.1  drochner 	struct	ethercom sc_ethercom;	/* Ethernet common part */
     49  1.1  drochner 	struct	ifmedia sc_media;	/* our supported media */
     50  1.1  drochner 
     51  1.1  drochner 	/*
     52  1.1  drochner 	 * Memory functions:
     53  1.1  drochner 	 *
     54  1.1  drochner 	 *	copy to/from descriptor
     55  1.1  drochner 	 *	copy to/from buffer
     56  1.1  drochner 	 *	zero bytes in buffer
     57  1.1  drochner 	 */
     58  1.1  drochner 	void	(*sc_copytodesc)
     59  1.1  drochner 		    __P((struct lance_softc *, void *, int, int));
     60  1.1  drochner 	void	(*sc_copyfromdesc)
     61  1.1  drochner 		    __P((struct lance_softc *, void *, int, int));
     62  1.1  drochner 	void	(*sc_copytobuf)
     63  1.1  drochner 		    __P((struct lance_softc *, void *, int, int));
     64  1.1  drochner 	void	(*sc_copyfrombuf)
     65  1.1  drochner 		    __P((struct lance_softc *, void *, int, int));
     66  1.1  drochner 	void	(*sc_zerobuf)
     67  1.1  drochner 		    __P((struct lance_softc *, int, int));
     68  1.1  drochner 
     69  1.1  drochner 	/*
     70  1.1  drochner 	 * Machine-dependent functions:
     71  1.1  drochner 	 *
     72  1.1  drochner 	 *	read/write CSR
     73  1.1  drochner 	 *	hardware reset hook - may be NULL
     74  1.1  drochner 	 *	hardware init hook - may be NULL
     75  1.1  drochner 	 *	no carrier hook - may be NULL
     76  1.1  drochner 	 *	media change hook - may be NULL
     77  1.1  drochner 	 */
     78  1.1  drochner 	u_int16_t (*sc_rdcsr)
     79  1.1  drochner 		    __P((struct lance_softc *, u_int16_t));
     80  1.1  drochner 	void	(*sc_wrcsr)
     81  1.1  drochner 		    __P((struct lance_softc *, u_int16_t, u_int16_t));
     82  1.1  drochner 	void	(*sc_hwreset) __P((struct lance_softc *));
     83  1.1  drochner 	void	(*sc_hwinit) __P((struct lance_softc *));
     84  1.1  drochner 	void	(*sc_nocarrier) __P((struct lance_softc *));
     85  1.1  drochner 	int	(*sc_mediachange) __P((struct lance_softc *));
     86  1.1  drochner 	void	(*sc_mediastatus) __P((struct lance_softc *,
     87  1.1  drochner 		    struct ifmediareq *));
     88  1.1  drochner 
     89  1.1  drochner 	/*
     90  1.1  drochner 	 * Media-supported by this interface.  If this is NULL,
     91  1.1  drochner 	 * the only supported media is assumed to be "manual".
     92  1.1  drochner 	 */
     93  1.5  jdolecek 	const int	*sc_supmedia;
     94  1.1  drochner 	int	sc_nsupmedia;
     95  1.1  drochner 	int	sc_defaultmedia;
     96  1.1  drochner 
     97  1.1  drochner 	/* PCnet bit to use software selection of a port */
     98  1.1  drochner 	int	sc_initmodemedia;
     99  1.1  drochner 
    100  1.1  drochner 	int	sc_havecarrier;	/* carrier status */
    101  1.1  drochner 
    102  1.1  drochner 	void	*sc_sh;		/* shutdownhook cookie */
    103  1.1  drochner 
    104  1.1  drochner 	u_int16_t sc_conf3;	/* CSR3 value */
    105  1.1  drochner 	u_int16_t sc_saved_csr0;/* Value of csr0 at time of interrupt */
    106  1.1  drochner 
    107  1.1  drochner 	void	*sc_mem;	/* base address of RAM -- CPU's view */
    108  1.1  drochner 	u_long	sc_addr;	/* base address of RAM -- LANCE's view */
    109  1.1  drochner 
    110  1.1  drochner 	u_long	sc_memsize;	/* size of RAM */
    111  1.1  drochner 
    112  1.1  drochner 	int	sc_nrbuf;	/* number of receive buffers */
    113  1.1  drochner 	int	sc_ntbuf;	/* number of transmit buffers */
    114  1.1  drochner 	int	sc_last_rd;
    115  1.1  drochner 	int	sc_first_td, sc_last_td, sc_no_td;
    116  1.1  drochner 
    117  1.1  drochner 	int	sc_initaddr;
    118  1.1  drochner 	int	sc_rmdaddr;
    119  1.1  drochner 	int	sc_tmdaddr;
    120  1.1  drochner 	int	*sc_rbufaddr;
    121  1.1  drochner 	int	*sc_tbufaddr;
    122  1.1  drochner 
    123  1.1  drochner #ifdef LEDEBUG
    124  1.1  drochner 	int	sc_debug;
    125  1.1  drochner #endif
    126  1.3   tsutsui 	u_int8_t sc_enaddr[ETHER_ADDR_LEN];
    127  1.1  drochner 	u_int8_t sc_pad[2];
    128  1.1  drochner #if NRND > 0
    129  1.1  drochner 	rndsource_element_t	rnd_source;
    130  1.1  drochner #endif
    131  1.1  drochner 
    132  1.1  drochner 	void (*sc_meminit) __P((struct lance_softc *));
    133  1.1  drochner 	void (*sc_start) __P((struct ifnet *));
    134  1.1  drochner };
    135  1.1  drochner 
    136  1.1  drochner void lance_config __P((struct lance_softc *));
    137  1.1  drochner void lance_reset __P((struct lance_softc *));
    138  1.4  jdolecek int lance_init __P((struct ifnet *));
    139  1.1  drochner int lance_put __P((struct lance_softc *, int, struct mbuf *));
    140  1.1  drochner void lance_read __P((struct lance_softc *, int, int));
    141  1.1  drochner void lance_setladrf __P((struct ethercom *, u_int16_t *));
    142  1.1  drochner 
    143  1.1  drochner /*
    144  1.1  drochner  * The following functions are only useful on certain cpu/bus
    145  1.1  drochner  * combinations.  They should be written in assembly language for
    146  1.1  drochner  * maximum efficiency, but machine-independent versions are provided
    147  1.1  drochner  * for drivers that have not yet been optimized.
    148  1.1  drochner  */
    149  1.1  drochner void lance_copytobuf_contig __P((struct lance_softc *, void *, int, int));
    150  1.1  drochner void lance_copyfrombuf_contig __P((struct lance_softc *, void *, int, int));
    151  1.1  drochner void lance_zerobuf_contig __P((struct lance_softc *, int, int));
    152  1.1  drochner 
    153  1.1  drochner #if 0	/* Example only - see lance.c */
    154  1.1  drochner void lance_copytobuf_gap2 __P((struct lance_softc *, void *, int, int));
    155  1.1  drochner void lance_copyfrombuf_gap2 __P((struct lance_softc *, void *, int, int));
    156  1.1  drochner void lance_zerobuf_gap2 __P((struct lance_softc *, int, int));
    157  1.1  drochner 
    158  1.1  drochner void lance_copytobuf_gap16 __P((struct lance_softc *, void *, int, int));
    159  1.1  drochner void lance_copyfrombuf_gap16 __P((struct lance_softc *, void *, int, int));
    160  1.1  drochner void lance_zerobuf_gap16 __P((struct lance_softc *, int, int));
    161  1.1  drochner #endif /* Example only */
    162