am7990var.h revision 1.12 1 1.12 thorpej /* $NetBSD: am7990var.h,v 1.12 1997/03/17 03:14:04 thorpej Exp $ */
2 1.1 cgd
3 1.1 cgd /*
4 1.12 thorpej * Copyright (c) 1997 Jason R. Thorpe. All rights reserved.
5 1.1 cgd * Copyright (c) 1995 Charles M. Hannum. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.1 cgd * 3. All advertising materials mentioning features or use of this software
16 1.1 cgd * must display the following acknowledgement:
17 1.1 cgd * This product includes software developed by Charles M. Hannum.
18 1.1 cgd * 4. The name of the author may not be used to endorse or promote products
19 1.1 cgd * derived from this software without specific prior written permission.
20 1.1 cgd *
21 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 1.1 cgd * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 1.1 cgd * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 1.1 cgd * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 1.1 cgd * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 1.1 cgd * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 1.1 cgd * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 1.1 cgd * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 1.1 cgd * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 1.1 cgd * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 1.1 cgd */
32 1.1 cgd
33 1.1 cgd #ifdef DDB
34 1.1 cgd #define integrate
35 1.7 thorpej #define hide
36 1.1 cgd #else
37 1.6 christos #define integrate static __inline
38 1.7 thorpej #define hide static
39 1.1 cgd #endif
40 1.1 cgd
41 1.7 thorpej /*
42 1.7 thorpej * Ethernet software status per device.
43 1.7 thorpej *
44 1.7 thorpej * Each interface is referenced by a network interface structure,
45 1.11 is * ethercom.ec_if, which the routing code uses to locate the interface.
46 1.7 thorpej * This structure contains the output queue for the interface, its address, ...
47 1.7 thorpej *
48 1.7 thorpej * NOTE: this structure MUST be the first element in machine-dependent
49 1.7 thorpej * le_softc structures! This is designed SPECIFICALLY to make it possible
50 1.7 thorpej * to simply cast a "void *" to "struct le_softc *" or to
51 1.7 thorpej * "struct am7990_softc *". Among other things, this saves a lot of hair
52 1.7 thorpej * in the interrupt handlers.
53 1.7 thorpej */
54 1.7 thorpej struct am7990_softc {
55 1.7 thorpej struct device sc_dev; /* base device glue */
56 1.11 is struct ethercom sc_ethercom; /* Ethernet common part */
57 1.12 thorpej struct ifmedia sc_media; /* our supported media */
58 1.7 thorpej
59 1.7 thorpej /*
60 1.7 thorpej * Memory functions:
61 1.7 thorpej *
62 1.7 thorpej * copy to/from descriptor
63 1.7 thorpej * copy to/from buffer
64 1.7 thorpej * zero bytes in buffer
65 1.7 thorpej */
66 1.7 thorpej void (*sc_copytodesc)
67 1.7 thorpej __P((struct am7990_softc *, void *, int, int));
68 1.7 thorpej void (*sc_copyfromdesc)
69 1.7 thorpej __P((struct am7990_softc *, void *, int, int));
70 1.7 thorpej void (*sc_copytobuf)
71 1.7 thorpej __P((struct am7990_softc *, void *, int, int));
72 1.7 thorpej void (*sc_copyfrombuf)
73 1.7 thorpej __P((struct am7990_softc *, void *, int, int));
74 1.7 thorpej void (*sc_zerobuf)
75 1.7 thorpej __P((struct am7990_softc *, int, int));
76 1.7 thorpej
77 1.7 thorpej /*
78 1.7 thorpej * Machine-dependent functions:
79 1.7 thorpej *
80 1.7 thorpej * read/write CSR
81 1.7 thorpej * hardware init hook - may be NULL
82 1.8 abrown * no carrier hook - may be NULL
83 1.12 thorpej * media change hook - may be NULL
84 1.7 thorpej */
85 1.7 thorpej u_int16_t (*sc_rdcsr)
86 1.7 thorpej __P((struct am7990_softc *, u_int16_t));
87 1.7 thorpej void (*sc_wrcsr)
88 1.7 thorpej __P((struct am7990_softc *, u_int16_t, u_int16_t));
89 1.7 thorpej void (*sc_hwinit) __P((struct am7990_softc *));
90 1.8 abrown void (*sc_nocarrier) __P((struct am7990_softc *));
91 1.12 thorpej int (*sc_mediachange) __P((struct am7990_softc *));
92 1.12 thorpej void (*sc_mediastatus) __P((struct am7990_softc *,
93 1.12 thorpej struct ifmediareq *));
94 1.12 thorpej
95 1.12 thorpej /*
96 1.12 thorpej * Media-supported by this interface. If this is NULL,
97 1.12 thorpej * the only supported media is assumed to be "manual".
98 1.12 thorpej */
99 1.12 thorpej int *sc_supmedia;
100 1.12 thorpej int sc_nsupmedia;
101 1.12 thorpej int sc_defaultmedia;
102 1.12 thorpej
103 1.12 thorpej int sc_havecarrier; /* carrier status */
104 1.7 thorpej
105 1.7 thorpej void *sc_sh; /* shutdownhook cookie */
106 1.7 thorpej
107 1.7 thorpej u_int16_t sc_conf3; /* CSR3 value */
108 1.10 leo u_int16_t sc_saved_csr0;/* Value of csr0 at time of interrupt */
109 1.7 thorpej
110 1.7 thorpej void *sc_mem; /* base address of RAM -- CPU's view */
111 1.7 thorpej u_long sc_addr; /* base address of RAM -- LANCE's view */
112 1.7 thorpej
113 1.7 thorpej u_long sc_memsize; /* size of RAM */
114 1.7 thorpej
115 1.7 thorpej int sc_nrbuf; /* number of receive buffers */
116 1.7 thorpej int sc_ntbuf; /* number of transmit buffers */
117 1.7 thorpej int sc_last_rd;
118 1.7 thorpej int sc_first_td, sc_last_td, sc_no_td;
119 1.7 thorpej
120 1.7 thorpej int sc_initaddr;
121 1.7 thorpej int sc_rmdaddr;
122 1.7 thorpej int sc_tmdaddr;
123 1.10 leo int *sc_rbufaddr;
124 1.10 leo int *sc_tbufaddr;
125 1.7 thorpej
126 1.7 thorpej #ifdef LEDEBUG
127 1.7 thorpej int sc_debug;
128 1.7 thorpej #endif
129 1.11 is u_int8_t sc_enaddr[6];
130 1.11 is u_int8_t sc_pad[2];
131 1.7 thorpej };
132 1.7 thorpej
133 1.7 thorpej /* Export this to machine-dependent drivers. */
134 1.7 thorpej extern struct cfdriver le_cd;
135 1.7 thorpej
136 1.7 thorpej void am7990_config __P((struct am7990_softc *));
137 1.7 thorpej void am7990_init __P((struct am7990_softc *));
138 1.7 thorpej int am7990_ioctl __P((struct ifnet *, u_long, caddr_t));
139 1.7 thorpej void am7990_meminit __P((struct am7990_softc *));
140 1.7 thorpej void am7990_reset __P((struct am7990_softc *));
141 1.11 is void am7990_setladrf __P((struct ethercom *, u_int16_t *));
142 1.7 thorpej void am7990_start __P((struct ifnet *));
143 1.7 thorpej void am7990_stop __P((struct am7990_softc *));
144 1.7 thorpej void am7990_watchdog __P((struct ifnet *));
145 1.7 thorpej int am7990_intr __P((void *));
146 1.1 cgd
147 1.2 cgd /*
148 1.2 cgd * The following functions are only useful on certain cpu/bus
149 1.2 cgd * combinations. They should be written in assembly language for
150 1.2 cgd * maximum efficiency, but machine-independent versions are provided
151 1.2 cgd * for drivers that have not yet been optimized.
152 1.2 cgd */
153 1.7 thorpej void am7990_copytobuf_contig __P((struct am7990_softc *, void *, int, int));
154 1.7 thorpej void am7990_copyfrombuf_contig __P((struct am7990_softc *, void *, int, int));
155 1.7 thorpej void am7990_zerobuf_contig __P((struct am7990_softc *, int, int));
156 1.7 thorpej
157 1.7 thorpej #if 0 /* Example only - see am7990.c */
158 1.7 thorpej void am7990_copytobuf_gap2 __P((struct am7990_softc *, void *, int, int));
159 1.7 thorpej void am7990_copyfrombuf_gap2 __P((struct am7990_softc *, void *, int, int));
160 1.7 thorpej void am7990_zerobuf_gap2 __P((struct am7990_softc *, int, int));
161 1.7 thorpej
162 1.7 thorpej void am7990_copytobuf_gap16 __P((struct am7990_softc *, void *, int, int));
163 1.7 thorpej void am7990_copyfrombuf_gap16 __P((struct am7990_softc *, void *, int, int));
164 1.7 thorpej void am7990_zerobuf_gap16 __P((struct am7990_softc *, int, int));
165 1.7 thorpej #endif /* Example only */
166