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