if_el.c revision 1.66 1 1.66 thorpej /* $NetBSD: if_el.c,v 1.66 2002/01/07 21:47:07 thorpej Exp $ */
2 1.14 cgd
3 1.2 cgd /*
4 1.2 cgd * Copyright (c) 1994, Matthew E. Kimmel. Permission is hereby granted
5 1.1 hpeyerl * to use, copy, modify and distribute this software provided that both
6 1.1 hpeyerl * the copyright notice and this permission notice appear in all copies
7 1.1 hpeyerl * of the software, derivative works or modified versions, and any
8 1.1 hpeyerl * portions thereof.
9 1.1 hpeyerl */
10 1.2 cgd
11 1.2 cgd /*
12 1.2 cgd * 3COM Etherlink 3C501 device driver
13 1.1 hpeyerl */
14 1.2 cgd
15 1.2 cgd /*
16 1.2 cgd * Bugs/possible improvements:
17 1.1 hpeyerl * - Does not currently support DMA
18 1.1 hpeyerl * - Does not currently support multicasts
19 1.1 hpeyerl */
20 1.65 lukem
21 1.65 lukem #include <sys/cdefs.h>
22 1.66 thorpej __KERNEL_RCSID(0, "$NetBSD: if_el.c,v 1.66 2002/01/07 21:47:07 thorpej Exp $");
23 1.2 cgd
24 1.53 jonathan #include "opt_inet.h"
25 1.54 jonathan #include "opt_ns.h"
26 1.1 hpeyerl #include "bpfilter.h"
27 1.49 explorer #include "rnd.h"
28 1.1 hpeyerl
29 1.1 hpeyerl #include <sys/param.h>
30 1.37 christos #include <sys/systm.h>
31 1.1 hpeyerl #include <sys/errno.h>
32 1.1 hpeyerl #include <sys/ioctl.h>
33 1.1 hpeyerl #include <sys/mbuf.h>
34 1.1 hpeyerl #include <sys/socket.h>
35 1.1 hpeyerl #include <sys/syslog.h>
36 1.3 mycroft #include <sys/device.h>
37 1.49 explorer #if NRND > 0
38 1.49 explorer #include <sys/rnd.h>
39 1.49 explorer #endif
40 1.1 hpeyerl
41 1.1 hpeyerl #include <net/if.h>
42 1.1 hpeyerl #include <net/if_dl.h>
43 1.1 hpeyerl #include <net/if_types.h>
44 1.1 hpeyerl
45 1.44 is #include <net/if_ether.h>
46 1.44 is
47 1.1 hpeyerl #ifdef INET
48 1.1 hpeyerl #include <netinet/in.h>
49 1.1 hpeyerl #include <netinet/in_systm.h>
50 1.1 hpeyerl #include <netinet/in_var.h>
51 1.1 hpeyerl #include <netinet/ip.h>
52 1.44 is #include <netinet/if_inarp.h>
53 1.1 hpeyerl #endif
54 1.1 hpeyerl
55 1.1 hpeyerl #ifdef NS
56 1.1 hpeyerl #include <netns/ns.h>
57 1.1 hpeyerl #include <netns/ns_if.h>
58 1.1 hpeyerl #endif
59 1.1 hpeyerl
60 1.1 hpeyerl #if NBPFILTER > 0
61 1.1 hpeyerl #include <net/bpf.h>
62 1.1 hpeyerl #include <net/bpfdesc.h>
63 1.1 hpeyerl #endif
64 1.1 hpeyerl
65 1.7 mycroft #include <machine/cpu.h>
66 1.39 mycroft #include <machine/intr.h>
67 1.40 thorpej #include <machine/bus.h>
68 1.1 hpeyerl
69 1.23 cgd #include <dev/isa/isavar.h>
70 1.21 cgd #include <dev/isa/if_elreg.h>
71 1.1 hpeyerl
72 1.3 mycroft /* for debugging convenience */
73 1.1 hpeyerl #ifdef EL_DEBUG
74 1.42 christos #define DPRINTF(x) printf x
75 1.1 hpeyerl #else
76 1.41 christos #define DPRINTF(x)
77 1.1 hpeyerl #endif
78 1.1 hpeyerl
79 1.2 cgd /*
80 1.3 mycroft * per-line info and status
81 1.2 cgd */
82 1.1 hpeyerl struct el_softc {
83 1.3 mycroft struct device sc_dev;
84 1.23 cgd void *sc_ih;
85 1.3 mycroft
86 1.44 is struct ethercom sc_ethercom; /* ethernet common */
87 1.43 thorpej bus_space_tag_t sc_iot; /* bus space identifier */
88 1.43 thorpej bus_space_handle_t sc_ioh; /* i/o handle */
89 1.49 explorer
90 1.49 explorer #if NRND > 0
91 1.49 explorer rndsource_element_t rnd_source;
92 1.49 explorer #endif
93 1.8 mycroft };
94 1.1 hpeyerl
95 1.2 cgd /*
96 1.3 mycroft * prototypes
97 1.2 cgd */
98 1.23 cgd int elintr __P((void *));
99 1.37 christos void elinit __P((struct el_softc *));
100 1.30 mycroft int elioctl __P((struct ifnet *, u_long, caddr_t));
101 1.30 mycroft void elstart __P((struct ifnet *));
102 1.38 thorpej void elwatchdog __P((struct ifnet *));
103 1.30 mycroft void elreset __P((struct el_softc *));
104 1.30 mycroft void elstop __P((struct el_softc *));
105 1.28 mycroft static int el_xmit __P((struct el_softc *));
106 1.30 mycroft void elread __P((struct el_softc *, int));
107 1.31 mycroft struct mbuf *elget __P((struct el_softc *sc, int));
108 1.5 mycroft static inline void el_hardreset __P((struct el_softc *));
109 1.1 hpeyerl
110 1.50 drochner int elprobe __P((struct device *, struct cfdata *, void *));
111 1.16 mycroft void elattach __P((struct device *, struct device *, void *));
112 1.8 mycroft
113 1.35 thorpej struct cfattach el_ca = {
114 1.35 thorpej sizeof(struct el_softc), elprobe, elattach
115 1.1 hpeyerl };
116 1.1 hpeyerl
117 1.2 cgd /*
118 1.2 cgd * Probe routine.
119 1.2 cgd *
120 1.2 cgd * See if the card is there and at the right place.
121 1.2 cgd * (XXX - cgd -- needs help)
122 1.2 cgd */
123 1.8 mycroft int
124 1.16 mycroft elprobe(parent, match, aux)
125 1.16 mycroft struct device *parent;
126 1.50 drochner struct cfdata *match;
127 1.50 drochner void *aux;
128 1.8 mycroft {
129 1.8 mycroft struct isa_attach_args *ia = aux;
130 1.43 thorpej bus_space_tag_t iot = ia->ia_iot;
131 1.43 thorpej bus_space_handle_t ioh;
132 1.66 thorpej int iobase;
133 1.40 thorpej u_int8_t station_addr[ETHER_ADDR_LEN];
134 1.40 thorpej u_int8_t i;
135 1.40 thorpej int rval;
136 1.40 thorpej
137 1.40 thorpej rval = 0;
138 1.1 hpeyerl
139 1.66 thorpej if (ia->ia_nio < 1)
140 1.66 thorpej return (0);
141 1.66 thorpej if (ia->ia_nirq < 1)
142 1.66 thorpej return (0);
143 1.66 thorpej
144 1.66 thorpej if (ISA_DIRECT_CONFIG(ia))
145 1.66 thorpej return (0);
146 1.66 thorpej
147 1.66 thorpej iobase = ia->ia_io[0].ir_addr;
148 1.66 thorpej
149 1.66 thorpej if (ia->ia_io[0].ir_addr == ISACF_PORT_DEFAULT)
150 1.66 thorpej return (0);
151 1.66 thorpej if (ia->ia_irq[0].ir_irq == ISACF_IRQ_DEFAULT)
152 1.66 thorpej return (0);
153 1.66 thorpej
154 1.3 mycroft /* First check the base. */
155 1.48 mycroft if (iobase < 0x200 || iobase > 0x3f0)
156 1.3 mycroft return 0;
157 1.3 mycroft
158 1.40 thorpej /* Map i/o space. */
159 1.48 mycroft if (bus_space_map(iot, iobase, 16, 0, &ioh))
160 1.40 thorpej return 0;
161 1.3 mycroft
162 1.2 cgd /*
163 1.3 mycroft * Now attempt to grab the station address from the PROM and see if it
164 1.3 mycroft * contains the 3com vendor code.
165 1.1 hpeyerl */
166 1.41 christos DPRINTF(("Probing 3c501 at 0x%x...\n", iobase));
167 1.3 mycroft
168 1.3 mycroft /* Reset the board. */
169 1.41 christos DPRINTF(("Resetting board...\n"));
170 1.43 thorpej bus_space_write_1(iot, ioh, EL_AC, EL_AC_RESET);
171 1.6 mycroft delay(5);
172 1.43 thorpej bus_space_write_1(iot, ioh, EL_AC, 0);
173 1.3 mycroft
174 1.3 mycroft /* Now read the address. */
175 1.41 christos DPRINTF(("Reading station address...\n"));
176 1.3 mycroft for (i = 0; i < ETHER_ADDR_LEN; i++) {
177 1.43 thorpej bus_space_write_1(iot, ioh, EL_GPBL, i);
178 1.43 thorpej station_addr[i] = bus_space_read_1(iot, ioh, EL_EAW);
179 1.1 hpeyerl }
180 1.41 christos DPRINTF(("Address is %s\n", ether_sprintf(station_addr)));
181 1.1 hpeyerl
182 1.2 cgd /*
183 1.3 mycroft * If the vendor code is ok, return a 1. We'll assume that whoever
184 1.3 mycroft * configured this system is right about the IRQ.
185 1.1 hpeyerl */
186 1.3 mycroft if (station_addr[0] != 0x02 || station_addr[1] != 0x60 ||
187 1.3 mycroft station_addr[2] != 0x8c) {
188 1.41 christos DPRINTF(("Bad vendor code.\n"));
189 1.40 thorpej goto out;
190 1.1 hpeyerl }
191 1.41 christos DPRINTF(("Vendor code ok.\n"));
192 1.8 mycroft
193 1.66 thorpej ia->ia_nio = 1;
194 1.66 thorpej ia->ia_io[0].ir_size = 16;
195 1.66 thorpej
196 1.66 thorpej ia->ia_nirq = 1;
197 1.66 thorpej
198 1.66 thorpej ia->ia_niomem = 0;
199 1.66 thorpej ia->ia_ndrq = 0;
200 1.66 thorpej
201 1.40 thorpej rval = 1;
202 1.40 thorpej
203 1.40 thorpej out:
204 1.48 mycroft bus_space_unmap(iot, ioh, 16);
205 1.40 thorpej return rval;
206 1.1 hpeyerl }
207 1.1 hpeyerl
208 1.2 cgd /*
209 1.3 mycroft * Attach the interface to the kernel data structures. By the time this is
210 1.3 mycroft * called, we know that the card exists at the given I/O address. We still
211 1.3 mycroft * assume that the IRQ given is correct.
212 1.1 hpeyerl */
213 1.8 mycroft void
214 1.8 mycroft elattach(parent, self, aux)
215 1.8 mycroft struct device *parent, *self;
216 1.8 mycroft void *aux;
217 1.1 hpeyerl {
218 1.8 mycroft struct el_softc *sc = (void *)self;
219 1.9 mycroft struct isa_attach_args *ia = aux;
220 1.43 thorpej bus_space_tag_t iot = ia->ia_iot;
221 1.43 thorpej bus_space_handle_t ioh;
222 1.44 is struct ifnet *ifp = &sc->sc_ethercom.ec_if;
223 1.44 is u_int8_t myaddr[ETHER_ADDR_LEN];
224 1.40 thorpej u_int8_t i;
225 1.40 thorpej
226 1.42 christos printf("\n");
227 1.1 hpeyerl
228 1.41 christos DPRINTF(("Attaching %s...\n", sc->sc_dev.dv_xname));
229 1.1 hpeyerl
230 1.40 thorpej /* Map i/o space. */
231 1.66 thorpej if (bus_space_map(iot, ia->ia_io[0].ir_addr, 16, 0, &ioh)) {
232 1.42 christos printf("%s: can't map i/o space\n", self->dv_xname);
233 1.40 thorpej return;
234 1.40 thorpej }
235 1.40 thorpej
236 1.43 thorpej sc->sc_iot = iot;
237 1.40 thorpej sc->sc_ioh = ioh;
238 1.40 thorpej
239 1.40 thorpej /* Reset the board. */
240 1.43 thorpej bus_space_write_1(iot, ioh, EL_AC, EL_AC_RESET);
241 1.40 thorpej delay(5);
242 1.43 thorpej bus_space_write_1(iot, ioh, EL_AC, 0);
243 1.40 thorpej
244 1.40 thorpej /* Now read the address. */
245 1.40 thorpej for (i = 0; i < ETHER_ADDR_LEN; i++) {
246 1.43 thorpej bus_space_write_1(iot, ioh, EL_GPBL, i);
247 1.44 is myaddr[i] = bus_space_read_1(iot, ioh, EL_EAW);
248 1.40 thorpej }
249 1.40 thorpej
250 1.3 mycroft /* Stop the board. */
251 1.30 mycroft elstop(sc);
252 1.1 hpeyerl
253 1.3 mycroft /* Initialize ifnet structure. */
254 1.64 thorpej strcpy(ifp->if_xname, sc->sc_dev.dv_xname);
255 1.38 thorpej ifp->if_softc = sc;
256 1.30 mycroft ifp->if_start = elstart;
257 1.30 mycroft ifp->if_ioctl = elioctl;
258 1.30 mycroft ifp->if_watchdog = elwatchdog;
259 1.3 mycroft ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_NOTRAILERS;
260 1.63 thorpej IFQ_SET_READY(&ifp->if_snd);
261 1.1 hpeyerl
262 1.3 mycroft /* Now we can attach the interface. */
263 1.41 christos DPRINTF(("Attaching interface...\n"));
264 1.1 hpeyerl if_attach(ifp);
265 1.44 is ether_ifattach(ifp, myaddr);
266 1.1 hpeyerl
267 1.3 mycroft /* Print out some information for the user. */
268 1.44 is printf("%s: address %s\n", self->dv_xname, ether_sprintf(myaddr));
269 1.1 hpeyerl
270 1.66 thorpej sc->sc_ih = isa_intr_establish(ia->ia_ic, ia->ia_irq[0].ir_irq,
271 1.66 thorpej IST_EDGE, IPL_NET, elintr, sc);
272 1.9 mycroft
273 1.49 explorer #if NRND > 0
274 1.49 explorer DPRINTF(("Attaching to random...\n"));
275 1.56 explorer rnd_attach_source(&sc->rnd_source, sc->sc_dev.dv_xname,
276 1.56 explorer RND_TYPE_NET, 0);
277 1.49 explorer #endif
278 1.49 explorer
279 1.41 christos DPRINTF(("elattach() finished.\n"));
280 1.1 hpeyerl }
281 1.1 hpeyerl
282 1.2 cgd /*
283 1.2 cgd * Reset interface.
284 1.2 cgd */
285 1.30 mycroft void
286 1.30 mycroft elreset(sc)
287 1.3 mycroft struct el_softc *sc;
288 1.1 hpeyerl {
289 1.1 hpeyerl int s;
290 1.1 hpeyerl
291 1.41 christos DPRINTF(("elreset()\n"));
292 1.34 mycroft s = splnet();
293 1.30 mycroft elstop(sc);
294 1.30 mycroft elinit(sc);
295 1.1 hpeyerl splx(s);
296 1.1 hpeyerl }
297 1.1 hpeyerl
298 1.2 cgd /*
299 1.2 cgd * Stop interface.
300 1.2 cgd */
301 1.30 mycroft void
302 1.30 mycroft elstop(sc)
303 1.3 mycroft struct el_softc *sc;
304 1.1 hpeyerl {
305 1.1 hpeyerl
306 1.43 thorpej bus_space_write_1(sc->sc_iot, sc->sc_ioh, EL_AC, 0);
307 1.1 hpeyerl }
308 1.1 hpeyerl
309 1.2 cgd /*
310 1.5 mycroft * Do a hardware reset of the board, and upload the ethernet address again in
311 1.5 mycroft * case the board forgets.
312 1.5 mycroft */
313 1.5 mycroft static inline void
314 1.5 mycroft el_hardreset(sc)
315 1.5 mycroft struct el_softc *sc;
316 1.5 mycroft {
317 1.43 thorpej bus_space_tag_t iot = sc->sc_iot;
318 1.43 thorpej bus_space_handle_t ioh = sc->sc_ioh;
319 1.5 mycroft int i;
320 1.5 mycroft
321 1.43 thorpej bus_space_write_1(iot, ioh, EL_AC, EL_AC_RESET);
322 1.6 mycroft delay(5);
323 1.43 thorpej bus_space_write_1(iot, ioh, EL_AC, 0);
324 1.5 mycroft
325 1.5 mycroft for (i = 0; i < ETHER_ADDR_LEN; i++)
326 1.44 is bus_space_write_1(iot, ioh, i,
327 1.44 is LLADDR(sc->sc_ethercom.ec_if.if_sadl)[i]);
328 1.5 mycroft }
329 1.5 mycroft
330 1.5 mycroft /*
331 1.2 cgd * Initialize interface.
332 1.2 cgd */
333 1.37 christos void
334 1.30 mycroft elinit(sc)
335 1.3 mycroft struct el_softc *sc;
336 1.1 hpeyerl {
337 1.44 is struct ifnet *ifp = &sc->sc_ethercom.ec_if;
338 1.43 thorpej bus_space_tag_t iot = sc->sc_iot;
339 1.43 thorpej bus_space_handle_t ioh = sc->sc_ioh;
340 1.1 hpeyerl
341 1.1 hpeyerl /* First, reset the board. */
342 1.5 mycroft el_hardreset(sc);
343 1.1 hpeyerl
344 1.3 mycroft /* Configure rx. */
345 1.41 christos DPRINTF(("Configuring rx...\n"));
346 1.2 cgd if (ifp->if_flags & IFF_PROMISC)
347 1.43 thorpej bus_space_write_1(iot, ioh, EL_RXC,
348 1.40 thorpej EL_RXC_AGF | EL_RXC_DSHORT | EL_RXC_DDRIB |
349 1.40 thorpej EL_RXC_DOFLOW | EL_RXC_PROMISC);
350 1.1 hpeyerl else
351 1.43 thorpej bus_space_write_1(iot, ioh, EL_RXC,
352 1.40 thorpej EL_RXC_AGF | EL_RXC_DSHORT | EL_RXC_DDRIB |
353 1.40 thorpej EL_RXC_DOFLOW | EL_RXC_ABROAD);
354 1.43 thorpej bus_space_write_1(iot, ioh, EL_RBC, 0);
355 1.1 hpeyerl
356 1.3 mycroft /* Configure TX. */
357 1.41 christos DPRINTF(("Configuring tx...\n"));
358 1.43 thorpej bus_space_write_1(iot, ioh, EL_TXC, 0);
359 1.1 hpeyerl
360 1.3 mycroft /* Start reception. */
361 1.41 christos DPRINTF(("Starting reception...\n"));
362 1.43 thorpej bus_space_write_1(iot, ioh, EL_AC, EL_AC_IRQE | EL_AC_RX);
363 1.1 hpeyerl
364 1.3 mycroft /* Set flags appropriately. */
365 1.1 hpeyerl ifp->if_flags |= IFF_RUNNING;
366 1.1 hpeyerl ifp->if_flags &= ~IFF_OACTIVE;
367 1.1 hpeyerl
368 1.1 hpeyerl /* And start output. */
369 1.30 mycroft elstart(ifp);
370 1.1 hpeyerl }
371 1.1 hpeyerl
372 1.2 cgd /*
373 1.3 mycroft * Start output on interface. Get datagrams from the queue and output them,
374 1.34 mycroft * giving the receiver a chance between datagrams. Call only from splnet or
375 1.3 mycroft * interrupt level!
376 1.1 hpeyerl */
377 1.30 mycroft void
378 1.30 mycroft elstart(ifp)
379 1.2 cgd struct ifnet *ifp;
380 1.1 hpeyerl {
381 1.38 thorpej struct el_softc *sc = ifp->if_softc;
382 1.43 thorpej bus_space_tag_t iot = sc->sc_iot;
383 1.43 thorpej bus_space_handle_t ioh = sc->sc_ioh;
384 1.1 hpeyerl struct mbuf *m, *m0;
385 1.27 mycroft int s, i, off, retries;
386 1.1 hpeyerl
387 1.41 christos DPRINTF(("elstart()...\n"));
388 1.34 mycroft s = splnet();
389 1.1 hpeyerl
390 1.3 mycroft /* Don't do anything if output is active. */
391 1.27 mycroft if ((ifp->if_flags & IFF_OACTIVE) != 0) {
392 1.27 mycroft splx(s);
393 1.1 hpeyerl return;
394 1.27 mycroft }
395 1.27 mycroft
396 1.27 mycroft ifp->if_flags |= IFF_OACTIVE;
397 1.1 hpeyerl
398 1.3 mycroft /*
399 1.3 mycroft * The main loop. They warned me against endless loops, but would I
400 1.3 mycroft * listen? NOOO....
401 1.1 hpeyerl */
402 1.3 mycroft for (;;) {
403 1.3 mycroft /* Dequeue the next datagram. */
404 1.63 thorpej IFQ_DEQUEUE(&ifp->if_snd, m0);
405 1.1 hpeyerl
406 1.1 hpeyerl /* If there's nothing to send, return. */
407 1.27 mycroft if (m0 == 0)
408 1.27 mycroft break;
409 1.27 mycroft
410 1.27 mycroft #if NBPFILTER > 0
411 1.27 mycroft /* Give the packet to the bpf, if any. */
412 1.27 mycroft if (ifp->if_bpf)
413 1.27 mycroft bpf_mtap(ifp->if_bpf, m0);
414 1.27 mycroft #endif
415 1.1 hpeyerl
416 1.3 mycroft /* Disable the receiver. */
417 1.43 thorpej bus_space_write_1(iot, ioh, EL_AC, EL_AC_HOST);
418 1.43 thorpej bus_space_write_1(iot, ioh, EL_RBC, 0);
419 1.1 hpeyerl
420 1.27 mycroft /* Transfer datagram to board. */
421 1.41 christos DPRINTF(("el: xfr pkt length=%d...\n", m0->m_pkthdr.len));
422 1.59 thorpej off = EL_BUFSIZ - max(m0->m_pkthdr.len,
423 1.59 thorpej ETHER_MIN_LEN - ETHER_CRC_LEN);
424 1.40 thorpej #ifdef DIAGNOSTIC
425 1.40 thorpej if ((off & 0xffff) != off)
426 1.42 christos printf("%s: bogus off 0x%x\n",
427 1.40 thorpej sc->sc_dev.dv_xname, off);
428 1.40 thorpej #endif
429 1.43 thorpej bus_space_write_1(iot, ioh, EL_GPBL, off & 0xff);
430 1.43 thorpej bus_space_write_1(iot, ioh, EL_GPBH, (off >> 8) & 0xff);
431 1.27 mycroft
432 1.1 hpeyerl /* Copy the datagram to the buffer. */
433 1.27 mycroft for (m = m0; m != 0; m = m->m_next)
434 1.43 thorpej bus_space_write_multi_1(iot, ioh, EL_BUF,
435 1.40 thorpej mtod(m, u_int8_t *), m->m_len);
436 1.27 mycroft
437 1.1 hpeyerl m_freem(m0);
438 1.1 hpeyerl
439 1.3 mycroft /* Now transmit the datagram. */
440 1.3 mycroft retries = 0;
441 1.27 mycroft for (;;) {
442 1.43 thorpej bus_space_write_1(iot, ioh, EL_GPBL, off & 0xff);
443 1.43 thorpej bus_space_write_1(iot, ioh, EL_GPBH, (off >> 8) & 0xff);
444 1.33 mycroft if (el_xmit(sc)) {
445 1.33 mycroft ifp->if_oerrors++;
446 1.1 hpeyerl break;
447 1.33 mycroft }
448 1.3 mycroft /* Check out status. */
449 1.43 thorpej i = bus_space_read_1(iot, ioh, EL_TXS);
450 1.41 christos DPRINTF(("tx status=0x%x\n", i));
451 1.3 mycroft if ((i & EL_TXS_READY) == 0) {
452 1.41 christos DPRINTF(("el: err txs=%x\n", i));
453 1.3 mycroft if (i & (EL_TXS_COLL | EL_TXS_COLL16)) {
454 1.33 mycroft ifp->if_collisions++;
455 1.3 mycroft if ((i & EL_TXC_DCOLL16) == 0 &&
456 1.2 cgd retries < 15) {
457 1.1 hpeyerl retries++;
458 1.43 thorpej bus_space_write_1(iot, ioh,
459 1.40 thorpej EL_AC, EL_AC_HOST);
460 1.1 hpeyerl }
461 1.33 mycroft } else {
462 1.33 mycroft ifp->if_oerrors++;
463 1.27 mycroft break;
464 1.33 mycroft }
465 1.4 mycroft } else {
466 1.27 mycroft ifp->if_opackets++;
467 1.27 mycroft break;
468 1.4 mycroft }
469 1.1 hpeyerl }
470 1.1 hpeyerl
471 1.2 cgd /*
472 1.2 cgd * Now give the card a chance to receive.
473 1.1 hpeyerl * Gotta love 3c501s...
474 1.1 hpeyerl */
475 1.43 thorpej (void)bus_space_read_1(iot, ioh, EL_AS);
476 1.43 thorpej bus_space_write_1(iot, ioh, EL_AC, EL_AC_IRQE | EL_AC_RX);
477 1.1 hpeyerl splx(s);
478 1.3 mycroft /* Interrupt here. */
479 1.34 mycroft s = splnet();
480 1.1 hpeyerl }
481 1.27 mycroft
482 1.43 thorpej (void)bus_space_read_1(iot, ioh, EL_AS);
483 1.43 thorpej bus_space_write_1(iot, ioh, EL_AC, EL_AC_IRQE | EL_AC_RX);
484 1.27 mycroft ifp->if_flags &= ~IFF_OACTIVE;
485 1.27 mycroft splx(s);
486 1.1 hpeyerl }
487 1.1 hpeyerl
488 1.2 cgd /*
489 1.3 mycroft * This function actually attempts to transmit a datagram downloaded to the
490 1.34 mycroft * board. Call at splnet or interrupt, after downloading data! Returns 0 on
491 1.3 mycroft * success, non-0 on failure.
492 1.1 hpeyerl */
493 1.1 hpeyerl static int
494 1.27 mycroft el_xmit(sc)
495 1.2 cgd struct el_softc *sc;
496 1.1 hpeyerl {
497 1.43 thorpej bus_space_tag_t iot = sc->sc_iot;
498 1.43 thorpej bus_space_handle_t ioh = sc->sc_ioh;
499 1.1 hpeyerl int i;
500 1.1 hpeyerl
501 1.33 mycroft /*
502 1.33 mycroft * XXX
503 1.33 mycroft * This busy-waits for the tx completion. Can we get an interrupt
504 1.33 mycroft * instead?
505 1.33 mycroft */
506 1.33 mycroft
507 1.41 christos DPRINTF(("el: xmit..."));
508 1.43 thorpej bus_space_write_1(iot, ioh, EL_AC, EL_AC_TXFRX);
509 1.1 hpeyerl i = 20000;
510 1.43 thorpej while ((bus_space_read_1(iot, ioh, EL_AS) & EL_AS_TXBUSY) && (i > 0))
511 1.1 hpeyerl i--;
512 1.2 cgd if (i == 0) {
513 1.41 christos DPRINTF(("tx not ready\n"));
514 1.3 mycroft return -1;
515 1.1 hpeyerl }
516 1.41 christos DPRINTF(("%d cycles.\n", 20000 - i));
517 1.3 mycroft return 0;
518 1.1 hpeyerl }
519 1.1 hpeyerl
520 1.3 mycroft /*
521 1.3 mycroft * Controller interrupt.
522 1.3 mycroft */
523 1.1 hpeyerl int
524 1.23 cgd elintr(arg)
525 1.23 cgd void *arg;
526 1.1 hpeyerl {
527 1.60 augustss struct el_softc *sc = arg;
528 1.43 thorpej bus_space_tag_t iot = sc->sc_iot;
529 1.43 thorpej bus_space_handle_t ioh = sc->sc_ioh;
530 1.40 thorpej u_int8_t rxstat;
531 1.40 thorpej int len;
532 1.1 hpeyerl
533 1.41 christos DPRINTF(("elintr: "));
534 1.1 hpeyerl
535 1.3 mycroft /* Check board status. */
536 1.43 thorpej if ((bus_space_read_1(iot, ioh, EL_AS) & EL_AS_RXBUSY) != 0) {
537 1.43 thorpej (void)bus_space_read_1(iot, ioh, EL_RXC);
538 1.43 thorpej bus_space_write_1(iot, ioh, EL_AC, EL_AC_IRQE | EL_AC_RX);
539 1.10 mycroft return 0;
540 1.1 hpeyerl }
541 1.1 hpeyerl
542 1.27 mycroft for (;;) {
543 1.43 thorpej rxstat = bus_space_read_1(iot, ioh, EL_RXS);
544 1.27 mycroft if (rxstat & EL_RXS_STALE)
545 1.27 mycroft break;
546 1.1 hpeyerl
547 1.1 hpeyerl /* If there's an overflow, reinit the board. */
548 1.3 mycroft if ((rxstat & EL_RXS_NOFLOW) == 0) {
549 1.41 christos DPRINTF(("overflow.\n"));
550 1.5 mycroft el_hardreset(sc);
551 1.3 mycroft /* Put board back into receive mode. */
552 1.44 is if (sc->sc_ethercom.ec_if.if_flags & IFF_PROMISC)
553 1.43 thorpej bus_space_write_1(iot, ioh, EL_RXC,
554 1.40 thorpej EL_RXC_AGF | EL_RXC_DSHORT | EL_RXC_DDRIB |
555 1.40 thorpej EL_RXC_DOFLOW | EL_RXC_PROMISC);
556 1.1 hpeyerl else
557 1.43 thorpej bus_space_write_1(iot, ioh, EL_RXC,
558 1.40 thorpej EL_RXC_AGF | EL_RXC_DSHORT | EL_RXC_DDRIB |
559 1.40 thorpej EL_RXC_DOFLOW | EL_RXC_ABROAD);
560 1.43 thorpej (void)bus_space_read_1(iot, ioh, EL_AS);
561 1.43 thorpej bus_space_write_1(iot, ioh, EL_RBC, 0);
562 1.27 mycroft break;
563 1.1 hpeyerl }
564 1.1 hpeyerl
565 1.3 mycroft /* Incoming packet. */
566 1.43 thorpej len = bus_space_read_1(iot, ioh, EL_RBL);
567 1.43 thorpej len |= bus_space_read_1(iot, ioh, EL_RBH) << 8;
568 1.41 christos DPRINTF(("receive len=%d rxstat=%x ", len, rxstat));
569 1.43 thorpej bus_space_write_1(iot, ioh, EL_AC, EL_AC_HOST);
570 1.1 hpeyerl
571 1.3 mycroft /* Pass data up to upper levels. */
572 1.27 mycroft elread(sc, len);
573 1.1 hpeyerl
574 1.1 hpeyerl /* Is there another packet? */
575 1.43 thorpej if ((bus_space_read_1(iot, ioh, EL_AS) & EL_AS_RXBUSY) != 0)
576 1.27 mycroft break;
577 1.49 explorer
578 1.49 explorer #if NRND > 0
579 1.49 explorer rnd_add_uint32(&sc->rnd_source, rxstat);
580 1.49 explorer #endif
581 1.27 mycroft
582 1.41 christos DPRINTF(("<rescan> "));
583 1.1 hpeyerl }
584 1.1 hpeyerl
585 1.43 thorpej (void)bus_space_read_1(iot, ioh, EL_RXC);
586 1.43 thorpej bus_space_write_1(iot, ioh, EL_AC, EL_AC_IRQE | EL_AC_RX);
587 1.10 mycroft return 1;
588 1.1 hpeyerl }
589 1.1 hpeyerl
590 1.2 cgd /*
591 1.30 mycroft * Pass a packet to the higher levels.
592 1.2 cgd */
593 1.30 mycroft void
594 1.27 mycroft elread(sc, len)
595 1.60 augustss struct el_softc *sc;
596 1.2 cgd int len;
597 1.1 hpeyerl {
598 1.44 is struct ifnet *ifp = &sc->sc_ethercom.ec_if;
599 1.1 hpeyerl struct mbuf *m;
600 1.1 hpeyerl
601 1.30 mycroft if (len <= sizeof(struct ether_header) ||
602 1.30 mycroft len > ETHER_MAX_LEN) {
603 1.42 christos printf("%s: invalid packet size %d; dropping\n",
604 1.32 mycroft sc->sc_dev.dv_xname, len);
605 1.30 mycroft ifp->if_ierrors++;
606 1.30 mycroft return;
607 1.30 mycroft }
608 1.30 mycroft
609 1.13 mycroft /* Pull packet off interface. */
610 1.30 mycroft m = elget(sc, len);
611 1.30 mycroft if (m == 0) {
612 1.30 mycroft ifp->if_ierrors++;
613 1.1 hpeyerl return;
614 1.30 mycroft }
615 1.30 mycroft
616 1.30 mycroft ifp->if_ipackets++;
617 1.1 hpeyerl
618 1.1 hpeyerl #if NBPFILTER > 0
619 1.1 hpeyerl /*
620 1.13 mycroft * Check if there's a BPF listener on this interface.
621 1.30 mycroft * If so, hand off the raw packet to BPF.
622 1.1 hpeyerl */
623 1.61 thorpej if (ifp->if_bpf)
624 1.26 mycroft bpf_mtap(ifp->if_bpf, m);
625 1.1 hpeyerl #endif
626 1.1 hpeyerl
627 1.58 thorpej (*ifp->if_input)(ifp, m);
628 1.1 hpeyerl }
629 1.1 hpeyerl
630 1.1 hpeyerl /*
631 1.3 mycroft * Pull read data off a interface. Len is length of data, with local net
632 1.13 mycroft * header stripped. We copy the data into mbufs. When full cluster sized
633 1.13 mycroft * units are present we copy into clusters.
634 1.1 hpeyerl */
635 1.31 mycroft struct mbuf *
636 1.30 mycroft elget(sc, totlen)
637 1.27 mycroft struct el_softc *sc;
638 1.26 mycroft int totlen;
639 1.26 mycroft {
640 1.44 is struct ifnet *ifp = &sc->sc_ethercom.ec_if;
641 1.43 thorpej bus_space_tag_t iot = sc->sc_iot;
642 1.43 thorpej bus_space_handle_t ioh = sc->sc_ioh;
643 1.55 mycroft struct mbuf *m, *m0, *newm;
644 1.26 mycroft int len;
645 1.26 mycroft
646 1.55 mycroft MGETHDR(m0, M_DONTWAIT, MT_DATA);
647 1.55 mycroft if (m0 == 0)
648 1.55 mycroft return (0);
649 1.55 mycroft m0->m_pkthdr.rcvif = ifp;
650 1.55 mycroft m0->m_pkthdr.len = totlen;
651 1.26 mycroft len = MHLEN;
652 1.55 mycroft m = m0;
653 1.26 mycroft
654 1.43 thorpej bus_space_write_1(iot, ioh, EL_GPBL, 0);
655 1.43 thorpej bus_space_write_1(iot, ioh, EL_GPBH, 0);
656 1.27 mycroft
657 1.26 mycroft while (totlen > 0) {
658 1.26 mycroft if (totlen >= MINCLSIZE) {
659 1.26 mycroft MCLGET(m, M_DONTWAIT);
660 1.55 mycroft if ((m->m_flags & M_EXT) == 0)
661 1.55 mycroft goto bad;
662 1.45 mycroft len = MCLBYTES;
663 1.26 mycroft }
664 1.55 mycroft
665 1.26 mycroft m->m_len = len = min(totlen, len);
666 1.43 thorpej bus_space_read_multi_1(iot, ioh, EL_BUF, mtod(m, u_int8_t *), len);
667 1.55 mycroft
668 1.26 mycroft totlen -= len;
669 1.55 mycroft if (totlen > 0) {
670 1.55 mycroft MGET(newm, M_DONTWAIT, MT_DATA);
671 1.55 mycroft if (newm == 0)
672 1.55 mycroft goto bad;
673 1.55 mycroft len = MLEN;
674 1.55 mycroft m = m->m_next = newm;
675 1.55 mycroft }
676 1.26 mycroft }
677 1.27 mycroft
678 1.43 thorpej bus_space_write_1(iot, ioh, EL_RBC, 0);
679 1.43 thorpej bus_space_write_1(iot, ioh, EL_AC, EL_AC_RX);
680 1.13 mycroft
681 1.55 mycroft return (m0);
682 1.55 mycroft
683 1.55 mycroft bad:
684 1.55 mycroft m_freem(m0);
685 1.55 mycroft return (0);
686 1.1 hpeyerl }
687 1.1 hpeyerl
688 1.1 hpeyerl /*
689 1.3 mycroft * Process an ioctl request. This code needs some work - it looks pretty ugly.
690 1.1 hpeyerl */
691 1.30 mycroft int
692 1.30 mycroft elioctl(ifp, cmd, data)
693 1.60 augustss struct ifnet *ifp;
694 1.15 cgd u_long cmd;
695 1.1 hpeyerl caddr_t data;
696 1.1 hpeyerl {
697 1.38 thorpej struct el_softc *sc = ifp->if_softc;
698 1.13 mycroft struct ifaddr *ifa = (struct ifaddr *)data;
699 1.1 hpeyerl int s, error = 0;
700 1.1 hpeyerl
701 1.34 mycroft s = splnet();
702 1.1 hpeyerl
703 1.13 mycroft switch (cmd) {
704 1.1 hpeyerl
705 1.1 hpeyerl case SIOCSIFADDR:
706 1.1 hpeyerl ifp->if_flags |= IFF_UP;
707 1.1 hpeyerl
708 1.1 hpeyerl switch (ifa->ifa_addr->sa_family) {
709 1.1 hpeyerl #ifdef INET
710 1.1 hpeyerl case AF_INET:
711 1.30 mycroft elinit(sc);
712 1.44 is arp_ifinit(ifp, ifa);
713 1.1 hpeyerl break;
714 1.1 hpeyerl #endif
715 1.1 hpeyerl #ifdef NS
716 1.24 mycroft /* XXX - This code is probably wrong. */
717 1.1 hpeyerl case AF_NS:
718 1.3 mycroft {
719 1.60 augustss struct ns_addr *ina = &IA_SNS(ifa)->sns_addr;
720 1.3 mycroft
721 1.3 mycroft if (ns_nullhost(*ina))
722 1.3 mycroft ina->x_host =
723 1.44 is *(union ns_host *)LLADDR(ifp->if_sadl);
724 1.24 mycroft else
725 1.64 thorpej memcpy(LLADDR(ifp->if_sadl), ina->x_host.c_host,
726 1.44 is ETHER_ADDR_LEN);
727 1.3 mycroft /* Set new address. */
728 1.30 mycroft elinit(sc);
729 1.3 mycroft break;
730 1.3 mycroft }
731 1.1 hpeyerl #endif
732 1.1 hpeyerl default:
733 1.30 mycroft elinit(sc);
734 1.1 hpeyerl break;
735 1.1 hpeyerl }
736 1.1 hpeyerl break;
737 1.1 hpeyerl
738 1.1 hpeyerl case SIOCSIFFLAGS:
739 1.3 mycroft if ((ifp->if_flags & IFF_UP) == 0 &&
740 1.13 mycroft (ifp->if_flags & IFF_RUNNING) != 0) {
741 1.3 mycroft /*
742 1.3 mycroft * If interface is marked down and it is running, then
743 1.3 mycroft * stop it.
744 1.3 mycroft */
745 1.30 mycroft elstop(sc);
746 1.1 hpeyerl ifp->if_flags &= ~IFF_RUNNING;
747 1.13 mycroft } else if ((ifp->if_flags & IFF_UP) != 0 &&
748 1.3 mycroft (ifp->if_flags & IFF_RUNNING) == 0) {
749 1.3 mycroft /*
750 1.3 mycroft * If interface is marked up and it is stopped, then
751 1.3 mycroft * start it.
752 1.3 mycroft */
753 1.30 mycroft elinit(sc);
754 1.1 hpeyerl } else {
755 1.3 mycroft /*
756 1.3 mycroft * Some other important flag might have changed, so
757 1.3 mycroft * reset.
758 1.3 mycroft */
759 1.30 mycroft elreset(sc);
760 1.1 hpeyerl }
761 1.24 mycroft break;
762 1.1 hpeyerl
763 1.1 hpeyerl default:
764 1.1 hpeyerl error = EINVAL;
765 1.24 mycroft break;
766 1.1 hpeyerl }
767 1.24 mycroft
768 1.22 mycroft splx(s);
769 1.3 mycroft return error;
770 1.1 hpeyerl }
771 1.1 hpeyerl
772 1.3 mycroft /*
773 1.3 mycroft * Device timeout routine.
774 1.3 mycroft */
775 1.30 mycroft void
776 1.38 thorpej elwatchdog(ifp)
777 1.38 thorpej struct ifnet *ifp;
778 1.1 hpeyerl {
779 1.38 thorpej struct el_softc *sc = ifp->if_softc;
780 1.1 hpeyerl
781 1.3 mycroft log(LOG_ERR, "%s: device timeout\n", sc->sc_dev.dv_xname);
782 1.44 is sc->sc_ethercom.ec_if.if_oerrors++;
783 1.1 hpeyerl
784 1.30 mycroft elreset(sc);
785 1.1 hpeyerl }
786