Home | History | Annotate | Line # | Download | only in ic
hmevar.h revision 1.15.16.1
      1 /*	hmevar.h,v 1.15 2007/03/04 06:01:55 christos Exp	*/
      2 
      3 /*-
      4  * Copyright (c) 1999 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Paul Kranenburg.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. All advertising materials mentioning features or use of this software
     19  *    must display the following acknowledgement:
     20  *        This product includes software developed by the NetBSD
     21  *        Foundation, Inc. and its contributors.
     22  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  *    contributors may be used to endorse or promote products derived
     24  *    from this software without specific prior written permission.
     25  *
     26  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  * POSSIBILITY OF SUCH DAMAGE.
     37  */
     38 
     39 #include "rnd.h"
     40 
     41 #include <sys/callout.h>
     42 #if NRND > 0
     43 #include <sys/rnd.h>
     44 #endif
     45 
     46 
     47 struct hme_ring {
     48 	/* Ring Descriptors */
     49 	void *		rb_membase;	/* Packet buffer: CPU address */
     50 	bus_addr_t	rb_dmabase;	/* Packet buffer: DMA address */
     51 	void *		rb_txd;		/* Transmit descriptors */
     52 	bus_addr_t	rb_txddma;	/* DMA address of same */
     53 	void *		rb_rxd;		/* Receive descriptors */
     54 	bus_addr_t	rb_rxddma;	/* DMA address of same */
     55 	void *		rb_txbuf;	/* Transmit buffers */
     56 	void *		rb_rxbuf;	/* Receive buffers */
     57 	int		rb_ntbuf;	/* # of transmit buffers */
     58 	int		rb_nrbuf;	/* # of receive buffers */
     59 
     60 	/* Ring Descriptor state */
     61 	int	rb_tdhead, rb_tdtail;
     62 	int	rb_rdtail;
     63 	int	rb_td_nbusy;
     64 };
     65 
     66 struct hme_softc {
     67 	struct device	sc_dev;		/* boilerplate device view */
     68 	struct ethercom	sc_ethercom;	/* Ethernet common part */
     69 	struct mii_data	sc_mii;		/* MII media control */
     70 	struct callout	sc_tick_ch;	/* tick callout */
     71 
     72 	/* The following bus handles are to be provided by the bus front-end */
     73 	bus_space_tag_t	sc_bustag;	/* bus tag */
     74 	bus_dma_tag_t	sc_dmatag;	/* bus dma tag */
     75 	bus_dmamap_t	sc_dmamap;	/* bus dma handle */
     76 	bus_space_handle_t sc_seb;	/* HME Global registers */
     77 	bus_space_handle_t sc_erx;	/* HME ERX registers */
     78 	bus_space_handle_t sc_etx;	/* HME ETX registers */
     79 	bus_space_handle_t sc_mac;	/* HME MAC registers */
     80 	bus_space_handle_t sc_mif;	/* HME MIF registers */
     81 	int		sc_burst;	/* DVMA burst size in effect */
     82 	int		sc_phys[2];	/* MII instance -> PHY map */
     83 
     84 	int		sc_pci;		/* XXXXX -- PCI buses are LE. */
     85 
     86 	/* Ring descriptor */
     87 	struct hme_ring		sc_rb;
     88 #if notused
     89 	void		(*sc_copytobuf)(struct hme_softc *,
     90 					     void *, void *, size_t);
     91 	void		(*sc_copyfrombuf)(struct hme_softc *,
     92 					      void *, void *, size_t);
     93 #endif
     94 
     95 	int			sc_debug;
     96 	void			*sc_sh;		/* shutdownhook cookie */
     97 	int			sc_ec_capenable;
     98 	short			sc_if_flags;
     99 	u_int8_t		sc_enaddr[ETHER_ADDR_LEN]; /* MAC address */
    100 
    101 	/* Special hardware hooks */
    102 	void	(*sc_hwreset)(struct hme_softc *);
    103 	void	(*sc_hwinit)(struct hme_softc *);
    104 
    105 #if NRND > 0
    106 	rndsource_element_t	rnd_source;
    107 #endif
    108 };
    109 
    110 
    111 void	hme_config(struct hme_softc *);
    112 void	hme_reset(struct hme_softc *);
    113 int	hme_intr(void *);
    114