if_le.c revision 1.3 1 1.3 christos /* $NetBSD: if_le.c,v 1.3 1996/10/13 03:34:53 christos Exp $ */
2 1.1 ragge
3 1.1 ragge #define LEDEBUG 1 /* debug-level: 0 or 1 */
4 1.1 ragge /* #define LE_CHIP_IS_POKEY /* does VS2000 need this ??? */
5 1.1 ragge
6 1.1 ragge /*-
7 1.1 ragge * Copyright (c) 1995 Charles M. Hannum. All rights reserved.
8 1.1 ragge * Copyright (c) 1992, 1993
9 1.1 ragge * The Regents of the University of California. All rights reserved.
10 1.1 ragge *
11 1.1 ragge * This code is derived from software contributed to Berkeley by
12 1.1 ragge * Ralph Campbell and Rick Macklem.
13 1.1 ragge *
14 1.1 ragge * Redistribution and use in source and binary forms, with or without
15 1.1 ragge * modification, are permitted provided that the following conditions
16 1.1 ragge * are met:
17 1.1 ragge * 1. Redistributions of source code must retain the above copyright
18 1.1 ragge * notice, this list of conditions and the following disclaimer.
19 1.1 ragge * 2. Redistributions in binary form must reproduce the above copyright
20 1.1 ragge * notice, this list of conditions and the following disclaimer in the
21 1.1 ragge * documentation and/or other materials provided with the distribution.
22 1.1 ragge * 3. All advertising materials mentioning features or use of this software
23 1.1 ragge * must display the following acknowledgement:
24 1.1 ragge * This product includes software developed by the University of
25 1.1 ragge * California, Berkeley and its contributors.
26 1.1 ragge * 4. Neither the name of the University nor the names of its contributors
27 1.1 ragge * may be used to endorse or promote products derived from this software
28 1.1 ragge * without specific prior written permission.
29 1.1 ragge *
30 1.1 ragge * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
31 1.1 ragge * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
32 1.1 ragge * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
33 1.1 ragge * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
34 1.1 ragge * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
35 1.1 ragge * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
36 1.1 ragge * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
37 1.1 ragge * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
38 1.1 ragge * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
39 1.1 ragge * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 1.1 ragge * SUCH DAMAGE.
41 1.1 ragge *
42 1.1 ragge * @(#)if_le.c 8.2 (Berkeley) 11/16/93
43 1.1 ragge */
44 1.1 ragge
45 1.1 ragge #include "bpfilter.h"
46 1.1 ragge
47 1.1 ragge #include <sys/param.h>
48 1.1 ragge #include <sys/syslog.h>
49 1.1 ragge #include <sys/socket.h>
50 1.1 ragge #include <sys/device.h>
51 1.1 ragge
52 1.1 ragge #include <net/if.h>
53 1.1 ragge
54 1.1 ragge #if INET
55 1.1 ragge #include <netinet/in.h>
56 1.1 ragge #include <netinet/if_ether.h>
57 1.1 ragge #endif
58 1.1 ragge
59 1.1 ragge /*
60 1.1 ragge * This would be nice, but it's not yet there...
61 1.1 ragge *
62 1.1 ragge * #include <machine/autoconf.h>
63 1.1 ragge */
64 1.1 ragge
65 1.1 ragge #include <machine/pte.h>
66 1.1 ragge #include <machine/cpu.h>
67 1.1 ragge #include <machine/mtpr.h>
68 1.1 ragge #include <machine/uvax.h>
69 1.1 ragge #include <machine/ka410.h>
70 1.1 ragge #include <machine/vsbus.h>
71 1.1 ragge
72 1.1 ragge #include <dev/ic/am7990reg.h>
73 1.1 ragge #define LE_NEED_BUF_CONTIG
74 1.1 ragge #include <dev/ic/am7990var.h>
75 1.1 ragge
76 1.1 ragge #include <dev/tc/if_levar.h>
77 1.1 ragge
78 1.1 ragge #define xdebug(x)
79 1.1 ragge
80 1.1 ragge #ifdef LE_CHIP_IS_POKEY
81 1.1 ragge /*
82 1.1 ragge * access LANCE registers and double-check their contents
83 1.1 ragge */
84 1.1 ragge #define wbflush() /* do nothing */
85 1.1 ragge void lewritereg();
86 1.1 ragge #define LERDWR(cntl, src, dst) { (dst) = (src); wbflush(); }
87 1.1 ragge #define LEWREG(src, dst) lewritereg(&(dst), (src))
88 1.1 ragge #endif
89 1.1 ragge
90 1.1 ragge #define LE_IOSIZE 64*1024 /* 64K of real-mem are reserved and already */
91 1.1 ragge extern void *le_iomem; /* mapped into virt-mem by cpu_steal_pages */
92 1.1 ragge extern u_long le_ioaddr; /* le_iomem is virt, le_ioaddr is phys */
93 1.1 ragge
94 1.1 ragge #define LE_SOFTC(unit) le_cd.cd_devs[unit]
95 1.1 ragge #define LE_DELAY(x) DELAY(x)
96 1.1 ragge
97 1.1 ragge int lematch __P((struct device *, void *, void *));
98 1.1 ragge void leattach __P((struct device *, struct device *, void *));
99 1.1 ragge
100 1.1 ragge int leintr __P((void *sc));
101 1.1 ragge
102 1.1 ragge struct cfattach le_ca = {
103 1.1 ragge sizeof(struct le_softc), lematch, leattach
104 1.1 ragge };
105 1.1 ragge
106 1.1 ragge integrate void
107 1.1 ragge lewrcsr(sc, port, val)
108 1.1 ragge struct le_softc *sc;
109 1.1 ragge u_int16_t port, val;
110 1.1 ragge {
111 1.1 ragge struct lereg1 *ler1 = sc->sc_r1;
112 1.1 ragge
113 1.1 ragge #ifdef LE_CHIP_IS_POKEY
114 1.1 ragge LEWREG(port, ler1->ler1_rap);
115 1.1 ragge LERDWR(port, val, ler1->ler1_rdp);
116 1.1 ragge #else
117 1.1 ragge ler1->ler1_rap = port;
118 1.1 ragge ler1->ler1_rdp = val;
119 1.1 ragge #endif
120 1.1 ragge }
121 1.1 ragge
122 1.1 ragge integrate u_int16_t
123 1.1 ragge lerdcsr(sc, port)
124 1.1 ragge struct le_softc *sc;
125 1.1 ragge u_int16_t port;
126 1.1 ragge {
127 1.1 ragge struct lereg1 *ler1 = sc->sc_r1;
128 1.1 ragge u_int16_t val;
129 1.1 ragge
130 1.1 ragge #ifdef LE_CHIP_IS_POKEY
131 1.1 ragge LEWREG(port, ler1->ler1_rap);
132 1.1 ragge LERDWR(0, ler1->ler1_rdp, val);
133 1.1 ragge #else
134 1.1 ragge ler1->ler1_rap = port;
135 1.1 ragge val = ler1->ler1_rdp;
136 1.1 ragge #endif
137 1.1 ragge return (val);
138 1.1 ragge }
139 1.1 ragge
140 1.1 ragge int
141 1.1 ragge lematch(parent, match, aux)
142 1.1 ragge struct device *parent;
143 1.1 ragge void *match, *aux;
144 1.1 ragge {
145 1.1 ragge struct cfdata *cf = match;
146 1.1 ragge struct confargs *ca = aux;
147 1.1 ragge
148 1.1 ragge /*
149 1.1 ragge * There could/should be more checks, but for now...
150 1.1 ragge */
151 1.1 ragge if (strcmp(ca->ca_name, "le") &&
152 1.1 ragge strcmp(ca->ca_name, "am7990") &&
153 1.1 ragge strcmp(ca->ca_name, "AM7990"))
154 1.1 ragge return (0);
155 1.1 ragge
156 1.1 ragge return (1);
157 1.1 ragge }
158 1.1 ragge
159 1.1 ragge /*
160 1.1 ragge *
161 1.1 ragge */
162 1.1 ragge void
163 1.1 ragge leattach(parent, self, aux)
164 1.1 ragge struct device *parent, *self;
165 1.1 ragge void *aux;
166 1.1 ragge {
167 1.1 ragge register struct le_softc *sc = (void *)self;
168 1.1 ragge struct confargs *ca = aux;
169 1.1 ragge u_char *cp; /* pointer to MAC address */
170 1.1 ragge int i;
171 1.1 ragge
172 1.1 ragge sc->sc_r1 = (void*)uvax_phys2virt(ca->ca_ioaddr);
173 1.1 ragge
174 1.1 ragge sc->sc_am7990.sc_conf3 = 0;
175 1.1 ragge sc->sc_am7990.sc_mem = le_iomem;
176 1.1 ragge sc->sc_am7990.sc_addr = le_ioaddr;
177 1.1 ragge sc->sc_am7990.sc_memsize = LE_IOSIZE;
178 1.1 ragge
179 1.1 ragge xdebug(("leattach: mem=%x, addr=%x, size=%x (%d)\n",
180 1.1 ragge sc->sc_am7990.sc_mem, sc->sc_am7990.sc_addr,
181 1.1 ragge sc->sc_am7990.sc_memsize, sc->sc_am7990.sc_memsize));
182 1.1 ragge
183 1.1 ragge sc->sc_am7990.sc_copytodesc = am7990_copytobuf_contig;
184 1.1 ragge sc->sc_am7990.sc_copyfromdesc = am7990_copyfrombuf_contig;
185 1.1 ragge sc->sc_am7990.sc_copytobuf = am7990_copytobuf_contig;
186 1.1 ragge sc->sc_am7990.sc_copyfrombuf = am7990_copyfrombuf_contig;
187 1.1 ragge sc->sc_am7990.sc_zerobuf = am7990_zerobuf_contig;
188 1.1 ragge
189 1.1 ragge /*
190 1.1 ragge * Get the ethernet address out of rom
191 1.1 ragge */
192 1.1 ragge for (i = 0; i < sizeof(sc->sc_am7990.sc_arpcom.ac_enaddr); i++) {
193 1.1 ragge int *eaddr = (void*)uvax_phys2virt(ca->ca_enaddr);
194 1.1 ragge sc->sc_am7990.sc_arpcom.ac_enaddr[i] = (u_char)eaddr[i];
195 1.1 ragge }
196 1.1 ragge
197 1.1 ragge bcopy(self->dv_xname, sc->sc_am7990.sc_arpcom.ac_if.if_xname, IFNAMSIZ);
198 1.1 ragge am7990_config(&sc->sc_am7990);
199 1.1 ragge
200 1.1 ragge #ifdef LEDEBUG
201 1.1 ragge sc->sc_am7990.sc_debug = LEDEBUG;
202 1.1 ragge #endif
203 1.1 ragge
204 1.1 ragge vsbus_intr_register(ca, am7990_intr, &sc->sc_am7990);
205 1.1 ragge vsbus_intr_enable(ca);
206 1.1 ragge }
207 1.1 ragge
208 1.1 ragge integrate void
209 1.1 ragge lehwinit(sc)
210 1.1 ragge struct le_softc *sc;
211 1.1 ragge {
212 1.1 ragge }
213 1.1 ragge
214 1.1 ragge #ifdef LE_CHIP_IS_POKEY
215 1.1 ragge /*
216 1.1 ragge * Write a lance register port, reading it back to ensure success. This seems
217 1.1 ragge * to be necessary during initialization, since the chip appears to be a bit
218 1.1 ragge * pokey sometimes.
219 1.1 ragge */
220 1.1 ragge void
221 1.1 ragge lewritereg(regptr, val)
222 1.1 ragge register volatile u_short *regptr;
223 1.1 ragge register u_short val;
224 1.1 ragge {
225 1.1 ragge register int i = 0;
226 1.1 ragge
227 1.1 ragge while (*regptr != val) {
228 1.1 ragge *regptr = val;
229 1.1 ragge wbflush();
230 1.1 ragge if (++i > 10000) {
231 1.3 christos printf("le: Reg did not settle (to x%x): x%x\n", val,
232 1.1 ragge *regptr);
233 1.1 ragge return;
234 1.1 ragge }
235 1.1 ragge DELAY(100);
236 1.1 ragge }
237 1.1 ragge }
238 1.1 ragge #endif
239