Home | History | Annotate | Line # | Download | only in ic
lancevar.h revision 1.8
      1  1.8     perry /*	$NetBSD: lancevar.h,v 1.8 2005/02/04 02:10:36 perry 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.8     perry 		   (struct lance_softc *, void *, int, int);
     60  1.1  drochner 	void	(*sc_copyfromdesc)
     61  1.8     perry 		   (struct lance_softc *, void *, int, int);
     62  1.1  drochner 	void	(*sc_copytobuf)
     63  1.8     perry 		   (struct lance_softc *, void *, int, int);
     64  1.1  drochner 	void	(*sc_copyfrombuf)
     65  1.8     perry 		   (struct lance_softc *, void *, int, int);
     66  1.1  drochner 	void	(*sc_zerobuf)
     67  1.8     perry 		   (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.8     perry 		   (struct lance_softc *, u_int16_t);
     80  1.1  drochner 	void	(*sc_wrcsr)
     81  1.8     perry 		   (struct lance_softc *, u_int16_t, u_int16_t);
     82  1.8     perry 	void	(*sc_hwreset)(struct lance_softc *);
     83  1.8     perry 	void	(*sc_hwinit)(struct lance_softc *);
     84  1.8     perry 	void	(*sc_nocarrier)(struct lance_softc *);
     85  1.8     perry 	int	(*sc_mediachange)(struct lance_softc *);
     86  1.8     perry 	void	(*sc_mediastatus)(struct lance_softc *, struct ifmediareq *);
     87  1.1  drochner 
     88  1.1  drochner 	/*
     89  1.1  drochner 	 * Media-supported by this interface.  If this is NULL,
     90  1.1  drochner 	 * the only supported media is assumed to be "manual".
     91  1.1  drochner 	 */
     92  1.5  jdolecek 	const int	*sc_supmedia;
     93  1.1  drochner 	int	sc_nsupmedia;
     94  1.1  drochner 	int	sc_defaultmedia;
     95  1.1  drochner 
     96  1.1  drochner 	/* PCnet bit to use software selection of a port */
     97  1.1  drochner 	int	sc_initmodemedia;
     98  1.1  drochner 
     99  1.1  drochner 	int	sc_havecarrier;	/* carrier status */
    100  1.1  drochner 
    101  1.1  drochner 	void	*sc_sh;		/* shutdownhook cookie */
    102  1.1  drochner 
    103  1.1  drochner 	u_int16_t sc_conf3;	/* CSR3 value */
    104  1.1  drochner 	u_int16_t sc_saved_csr0;/* Value of csr0 at time of interrupt */
    105  1.1  drochner 
    106  1.1  drochner 	void	*sc_mem;	/* base address of RAM -- CPU's view */
    107  1.1  drochner 	u_long	sc_addr;	/* base address of RAM -- LANCE's view */
    108  1.1  drochner 
    109  1.1  drochner 	u_long	sc_memsize;	/* size of RAM */
    110  1.1  drochner 
    111  1.1  drochner 	int	sc_nrbuf;	/* number of receive buffers */
    112  1.1  drochner 	int	sc_ntbuf;	/* number of transmit buffers */
    113  1.1  drochner 	int	sc_last_rd;
    114  1.1  drochner 	int	sc_first_td, sc_last_td, sc_no_td;
    115  1.1  drochner 
    116  1.1  drochner 	int	sc_initaddr;
    117  1.1  drochner 	int	sc_rmdaddr;
    118  1.1  drochner 	int	sc_tmdaddr;
    119  1.1  drochner 	int	*sc_rbufaddr;
    120  1.1  drochner 	int	*sc_tbufaddr;
    121  1.1  drochner 
    122  1.1  drochner #ifdef LEDEBUG
    123  1.1  drochner 	int	sc_debug;
    124  1.1  drochner #endif
    125  1.3   tsutsui 	u_int8_t sc_enaddr[ETHER_ADDR_LEN];
    126  1.1  drochner 	u_int8_t sc_pad[2];
    127  1.1  drochner #if NRND > 0
    128  1.1  drochner 	rndsource_element_t	rnd_source;
    129  1.1  drochner #endif
    130  1.1  drochner 
    131  1.8     perry 	void (*sc_meminit)(struct lance_softc *);
    132  1.8     perry 	void (*sc_start)(struct ifnet *);
    133  1.1  drochner };
    134  1.1  drochner 
    135  1.8     perry void lance_config(struct lance_softc *);
    136  1.8     perry void lance_reset(struct lance_softc *);
    137  1.8     perry int lance_init(struct ifnet *);
    138  1.8     perry int lance_put(struct lance_softc *, int, struct mbuf *);
    139  1.8     perry void lance_read(struct lance_softc *, int, int);
    140  1.8     perry void lance_setladrf(struct ethercom *, u_int16_t *);
    141  1.1  drochner 
    142  1.1  drochner /*
    143  1.7       wiz  * The following functions are only useful on certain CPU/bus
    144  1.1  drochner  * combinations.  They should be written in assembly language for
    145  1.1  drochner  * maximum efficiency, but machine-independent versions are provided
    146  1.1  drochner  * for drivers that have not yet been optimized.
    147  1.1  drochner  */
    148  1.8     perry void lance_copytobuf_contig(struct lance_softc *, void *, int, int);
    149  1.8     perry void lance_copyfrombuf_contig(struct lance_softc *, void *, int, int);
    150  1.8     perry void lance_zerobuf_contig(struct lance_softc *, int, int);
    151  1.1  drochner 
    152  1.1  drochner #if 0	/* Example only - see lance.c */
    153  1.8     perry void lance_copytobuf_gap2(struct lance_softc *, void *, int, int);
    154  1.8     perry void lance_copyfrombuf_gap2(struct lance_softc *, void *, int, int);
    155  1.8     perry void lance_zerobuf_gap2(struct lance_softc *, int, int);
    156  1.8     perry 
    157  1.8     perry void lance_copytobuf_gap16(struct lance_softc *, void *, int, int);
    158  1.8     perry void lance_copyfrombuf_gap16(struct lance_softc *, void *, int, int);
    159  1.8     perry void lance_zerobuf_gap16(struct lance_softc *, int, int);
    160  1.1  drochner #endif /* Example only */
    161