seeq8005.c revision 1.6.2.2 1 1.6.2.2 bouyer /* $NetBSD: seeq8005.c,v 1.6.2.2 2000/11/20 11:40:53 bouyer Exp $ */
2 1.6.2.2 bouyer
3 1.6.2.2 bouyer /*
4 1.6.2.2 bouyer * Copyright (c) 2000 Ben Harris
5 1.6.2.2 bouyer * Copyright (c) 1995 Mark Brinicombe
6 1.6.2.2 bouyer * All rights reserved.
7 1.6.2.2 bouyer *
8 1.6.2.2 bouyer * Redistribution and use in source and binary forms, with or without
9 1.6.2.2 bouyer * modification, are permitted provided that the following conditions
10 1.6.2.2 bouyer * are met:
11 1.6.2.2 bouyer * 1. Redistributions of source code must retain the above copyright
12 1.6.2.2 bouyer * notice, this list of conditions and the following disclaimer.
13 1.6.2.2 bouyer * 2. Redistributions in binary form must reproduce the above copyright
14 1.6.2.2 bouyer * notice, this list of conditions and the following disclaimer in the
15 1.6.2.2 bouyer * documentation and/or other materials provided with the distribution.
16 1.6.2.2 bouyer * 3. All advertising materials mentioning features or use of this software
17 1.6.2.2 bouyer * must display the following acknowledgement:
18 1.6.2.2 bouyer * This product includes software developed by Mark Brinicombe.
19 1.6.2.2 bouyer * 4. The name of the company nor the name of the author may be used to
20 1.6.2.2 bouyer * endorse or promote products derived from this software without specific
21 1.6.2.2 bouyer * prior written permission.
22 1.6.2.2 bouyer *
23 1.6.2.2 bouyer * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
24 1.6.2.2 bouyer * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25 1.6.2.2 bouyer * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 1.6.2.2 bouyer * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
27 1.6.2.2 bouyer * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
28 1.6.2.2 bouyer * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
29 1.6.2.2 bouyer * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.6.2.2 bouyer * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.6.2.2 bouyer * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.6.2.2 bouyer * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.6.2.2 bouyer * SUCH DAMAGE.
34 1.6.2.2 bouyer */
35 1.6.2.2 bouyer /*
36 1.6.2.2 bouyer * seeq8005.c - SEEQ 8005 device driver
37 1.6.2.2 bouyer */
38 1.6.2.2 bouyer /*
39 1.6.2.2 bouyer * This driver currently supports the following chip:
40 1.6.2.2 bouyer * SEEQ 8005 Advanced Ethernet Data Link Controller
41 1.6.2.2 bouyer */
42 1.6.2.2 bouyer /*
43 1.6.2.2 bouyer * This driver is based on the arm32 ea(4) driver, hence the names of many
44 1.6.2.2 bouyer * of the functions.
45 1.6.2.2 bouyer */
46 1.6.2.2 bouyer /*
47 1.6.2.2 bouyer * Bugs/possible improvements:
48 1.6.2.2 bouyer * - Does not currently support DMA
49 1.6.2.2 bouyer * - Does not currently support multicasts
50 1.6.2.2 bouyer * - Does not transmit multiple packets in one go
51 1.6.2.2 bouyer * - Does not support big-endian hosts
52 1.6.2.2 bouyer * - Does not support 8-bit busses
53 1.6.2.2 bouyer */
54 1.6.2.2 bouyer
55 1.6.2.2 bouyer #include "opt_inet.h"
56 1.6.2.2 bouyer #include "opt_ns.h"
57 1.6.2.2 bouyer
58 1.6.2.2 bouyer #include <sys/types.h>
59 1.6.2.2 bouyer #include <sys/param.h>
60 1.6.2.2 bouyer
61 1.6.2.2 bouyer __RCSID("$NetBSD: seeq8005.c,v 1.6.2.2 2000/11/20 11:40:53 bouyer Exp $");
62 1.6.2.2 bouyer
63 1.6.2.2 bouyer #include <sys/systm.h>
64 1.6.2.2 bouyer #include <sys/endian.h>
65 1.6.2.2 bouyer #include <sys/errno.h>
66 1.6.2.2 bouyer #include <sys/ioctl.h>
67 1.6.2.2 bouyer #include <sys/mbuf.h>
68 1.6.2.2 bouyer #include <sys/socket.h>
69 1.6.2.2 bouyer #include <sys/syslog.h>
70 1.6.2.2 bouyer #include <sys/device.h>
71 1.6.2.2 bouyer
72 1.6.2.2 bouyer #include <net/if.h>
73 1.6.2.2 bouyer #include <net/if_dl.h>
74 1.6.2.2 bouyer #include <net/if_types.h>
75 1.6.2.2 bouyer #include <net/if_ether.h>
76 1.6.2.2 bouyer
77 1.6.2.2 bouyer #ifdef INET
78 1.6.2.2 bouyer #include <netinet/in.h>
79 1.6.2.2 bouyer #include <netinet/in_systm.h>
80 1.6.2.2 bouyer #include <netinet/in_var.h>
81 1.6.2.2 bouyer #include <netinet/ip.h>
82 1.6.2.2 bouyer #include <netinet/if_inarp.h>
83 1.6.2.2 bouyer #endif
84 1.6.2.2 bouyer
85 1.6.2.2 bouyer #ifdef NS
86 1.6.2.2 bouyer #include <netns/ns.h>
87 1.6.2.2 bouyer #include <netns/ns_if.h>
88 1.6.2.2 bouyer #endif
89 1.6.2.2 bouyer
90 1.6.2.2 bouyer #include "bpfilter.h"
91 1.6.2.2 bouyer #if NBPFILTER > 0
92 1.6.2.2 bouyer #include <net/bpf.h>
93 1.6.2.2 bouyer #include <net/bpfdesc.h>
94 1.6.2.2 bouyer #endif
95 1.6.2.2 bouyer
96 1.6.2.2 bouyer #include <machine/bus.h>
97 1.6.2.2 bouyer #include <machine/intr.h>
98 1.6.2.2 bouyer
99 1.6.2.2 bouyer #include <dev/ic/seeq8005reg.h>
100 1.6.2.2 bouyer #include <dev/ic/seeq8005var.h>
101 1.6.2.2 bouyer
102 1.6.2.2 bouyer #ifndef EA_TIMEOUT
103 1.6.2.2 bouyer #define EA_TIMEOUT 60
104 1.6.2.2 bouyer #endif
105 1.6.2.2 bouyer
106 1.6.2.2 bouyer #define EA_TX_BUFFER_SIZE 0x4000
107 1.6.2.2 bouyer #define EA_RX_BUFFER_SIZE 0xC000
108 1.6.2.2 bouyer
109 1.6.2.2 bouyer /*#define EA_TX_DEBUG*/
110 1.6.2.2 bouyer /*#define EA_RX_DEBUG*/
111 1.6.2.2 bouyer /*#define EA_DEBUG*/
112 1.6.2.2 bouyer /*#define EA_PACKET_DEBUG*/
113 1.6.2.2 bouyer
114 1.6.2.2 bouyer /* for debugging convenience */
115 1.6.2.2 bouyer #ifdef EA_DEBUG
116 1.6.2.2 bouyer #define dprintf(x) printf x
117 1.6.2.2 bouyer #else
118 1.6.2.2 bouyer #define dprintf(x)
119 1.6.2.2 bouyer #endif
120 1.6.2.2 bouyer
121 1.6.2.2 bouyer /*
122 1.6.2.2 bouyer * prototypes
123 1.6.2.2 bouyer */
124 1.6.2.2 bouyer
125 1.6.2.2 bouyer static int ea_init(struct seeq8005_softc *);
126 1.6.2.2 bouyer static int ea_ioctl(struct ifnet *, u_long, caddr_t);
127 1.6.2.2 bouyer static void ea_start(struct ifnet *);
128 1.6.2.2 bouyer static void ea_watchdog(struct ifnet *);
129 1.6.2.2 bouyer static void ea_chipreset(struct seeq8005_softc *);
130 1.6.2.2 bouyer static void ea_ramtest(struct seeq8005_softc *);
131 1.6.2.2 bouyer static int ea_stoptx(struct seeq8005_softc *);
132 1.6.2.2 bouyer static int ea_stoprx(struct seeq8005_softc *);
133 1.6.2.2 bouyer static void ea_stop(struct seeq8005_softc *);
134 1.6.2.2 bouyer static void ea_await_fifo_empty(struct seeq8005_softc *);
135 1.6.2.2 bouyer static void ea_await_fifo_full(struct seeq8005_softc *);
136 1.6.2.2 bouyer static void ea_writebuf(struct seeq8005_softc *, u_char *, u_int, size_t);
137 1.6.2.2 bouyer static void ea_readbuf(struct seeq8005_softc *, u_char *, u_int, size_t);
138 1.6.2.2 bouyer static void ea_select_buffer(struct seeq8005_softc *, int);
139 1.6.2.2 bouyer static void earead(struct seeq8005_softc *, int, int);
140 1.6.2.2 bouyer static struct mbuf *eaget(struct seeq8005_softc *, int, int, struct ifnet *);
141 1.6.2.2 bouyer static void eagetpackets(struct seeq8005_softc *);
142 1.6.2.2 bouyer static void eatxpacket(struct seeq8005_softc *);
143 1.6.2.2 bouyer
144 1.6.2.2 bouyer
145 1.6.2.2 bouyer #ifdef EA_PACKET_DEBUG
146 1.6.2.2 bouyer void ea_dump_buffer(struct seeq8005_softc *, int);
147 1.6.2.2 bouyer #endif
148 1.6.2.2 bouyer
149 1.6.2.2 bouyer
150 1.6.2.2 bouyer #ifdef EA_PACKET_DEBUG
151 1.6.2.2 bouyer /*
152 1.6.2.2 bouyer * Dump the interface buffer
153 1.6.2.2 bouyer */
154 1.6.2.2 bouyer
155 1.6.2.2 bouyer void
156 1.6.2.2 bouyer ea_dump_buffer(struct seeq8005_softc *sc, u_int offset)
157 1.6.2.2 bouyer {
158 1.6.2.2 bouyer bus_space_tag_t iot = sc->sc_iot;
159 1.6.2.2 bouyer bus_space_handle_t ioh = sc->sc_ioh;
160 1.6.2.2 bouyer u_int addr;
161 1.6.2.2 bouyer int loop;
162 1.6.2.2 bouyer size_t size;
163 1.6.2.2 bouyer int ctrl;
164 1.6.2.2 bouyer int ptr;
165 1.6.2.2 bouyer
166 1.6.2.2 bouyer addr = offset;
167 1.6.2.2 bouyer
168 1.6.2.2 bouyer do {
169 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_COMMAND,
170 1.6.2.2 bouyer sc->sc_command | EA_CMD_FIFO_READ);
171 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_CONFIG1,
172 1.6.2.2 bouyer sc->sc_config1 | EA_BUFCODE_LOCAL_MEM);
173 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_DMA_ADDR, addr);
174 1.6.2.2 bouyer
175 1.6.2.2 bouyer ptr = bus_space_read_2(iot, ioh, EA_8005_BUFWIN);
176 1.6.2.2 bouyer ctrl = bus_space_read_2(iot, ioh, EA_8005_BUFWIN);
177 1.6.2.2 bouyer ptr = ((ptr & 0xff) << 8) | ((ptr >> 8) & 0xff);
178 1.6.2.2 bouyer
179 1.6.2.2 bouyer if (ptr == 0) break;
180 1.6.2.2 bouyer size = ptr - addr;
181 1.6.2.2 bouyer
182 1.6.2.2 bouyer printf("addr=%04x size=%04x ", addr, size);
183 1.6.2.2 bouyer printf("cmd=%02x st=%02x\n", ctrl & 0xff, ctrl >> 8);
184 1.6.2.2 bouyer
185 1.6.2.2 bouyer for (loop = 0; loop < size - 4; loop += 2)
186 1.6.2.2 bouyer printf("%04x ",
187 1.6.2.2 bouyer bus_space_read_2(iot, ioh, EA_8005_BUFWIN));
188 1.6.2.2 bouyer printf("\n");
189 1.6.2.2 bouyer addr = ptr;
190 1.6.2.2 bouyer } while (size != 0);
191 1.6.2.2 bouyer }
192 1.6.2.2 bouyer #endif
193 1.6.2.2 bouyer
194 1.6.2.2 bouyer /*
195 1.6.2.2 bouyer * Attach chip.
196 1.6.2.2 bouyer */
197 1.6.2.2 bouyer
198 1.6.2.2 bouyer void
199 1.6.2.2 bouyer seeq8005_attach(struct seeq8005_softc *sc, const u_int8_t *myaddr)
200 1.6.2.2 bouyer {
201 1.6.2.2 bouyer struct ifnet *ifp = &sc->sc_ethercom.ec_if;
202 1.6.2.2 bouyer u_int id;
203 1.6.2.2 bouyer
204 1.6.2.2 bouyer printf(" address %s", ether_sprintf(myaddr));
205 1.6.2.2 bouyer
206 1.6.2.2 bouyer /* Stop the board. */
207 1.6.2.2 bouyer
208 1.6.2.2 bouyer ea_chipreset(sc);
209 1.6.2.2 bouyer
210 1.6.2.2 bouyer /* Get the product ID */
211 1.6.2.2 bouyer
212 1.6.2.2 bouyer ea_select_buffer(sc, EA_BUFCODE_PRODUCTID);
213 1.6.2.2 bouyer id = bus_space_read_2(sc->sc_iot, sc->sc_ioh, EA_8005_BUFWIN);
214 1.6.2.2 bouyer
215 1.6.2.2 bouyer if ((id & 0xf0) == 0xa0) {
216 1.6.2.2 bouyer sc->sc_flags |= SEEQ8005_80C04;
217 1.6.2.2 bouyer printf(", SEEQ 80C04 rev %02x", id);
218 1.6.2.2 bouyer } else
219 1.6.2.2 bouyer printf(", SEEQ 8005");
220 1.6.2.2 bouyer
221 1.6.2.2 bouyer /* Initialise ifnet structure. */
222 1.6.2.2 bouyer
223 1.6.2.2 bouyer bcopy(sc->sc_dev.dv_xname, ifp->if_xname, IFNAMSIZ);
224 1.6.2.2 bouyer ifp->if_softc = sc;
225 1.6.2.2 bouyer ifp->if_start = ea_start;
226 1.6.2.2 bouyer ifp->if_ioctl = ea_ioctl;
227 1.6.2.2 bouyer ifp->if_watchdog = ea_watchdog;
228 1.6.2.2 bouyer ifp->if_flags = IFF_BROADCAST | IFF_NOTRAILERS;
229 1.6.2.2 bouyer
230 1.6.2.2 bouyer /* Now we can attach the interface. */
231 1.6.2.2 bouyer
232 1.6.2.2 bouyer if_attach(ifp);
233 1.6.2.2 bouyer ether_ifattach(ifp, myaddr);
234 1.6.2.2 bouyer
235 1.6.2.2 bouyer /* Finally, attach to bpf filter if it is present. */
236 1.6.2.2 bouyer
237 1.6.2.2 bouyer #if NBPFILTER > 0
238 1.6.2.2 bouyer bpfattach(&ifp->if_bpf, ifp, DLT_EN10MB, sizeof(struct ether_header));
239 1.6.2.2 bouyer #endif
240 1.6.2.2 bouyer
241 1.6.2.2 bouyer printf("\n");
242 1.6.2.2 bouyer
243 1.6.2.2 bouyer /* Test the RAM */
244 1.6.2.2 bouyer ea_ramtest(sc);
245 1.6.2.2 bouyer }
246 1.6.2.2 bouyer
247 1.6.2.2 bouyer
248 1.6.2.2 bouyer /*
249 1.6.2.2 bouyer * Test the RAM on the ethernet card.
250 1.6.2.2 bouyer */
251 1.6.2.2 bouyer
252 1.6.2.2 bouyer void
253 1.6.2.2 bouyer ea_ramtest(struct seeq8005_softc *sc)
254 1.6.2.2 bouyer {
255 1.6.2.2 bouyer bus_space_tag_t iot = sc->sc_iot;
256 1.6.2.2 bouyer bus_space_handle_t ioh = sc->sc_ioh;
257 1.6.2.2 bouyer int loop;
258 1.6.2.2 bouyer u_int sum = 0;
259 1.6.2.2 bouyer
260 1.6.2.2 bouyer /* dprintf(("ea_ramtest()\n"));*/
261 1.6.2.2 bouyer
262 1.6.2.2 bouyer /*
263 1.6.2.2 bouyer * Test the buffer memory on the board.
264 1.6.2.2 bouyer * Write simple pattens to it and read them back.
265 1.6.2.2 bouyer */
266 1.6.2.2 bouyer
267 1.6.2.2 bouyer /* Set up the whole buffer RAM for writing */
268 1.6.2.2 bouyer
269 1.6.2.2 bouyer ea_select_buffer(sc, EA_BUFCODE_TX_EAP);
270 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_BUFWIN, (EA_BUFFER_SIZE >> 8) - 1);
271 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_TX_PTR, 0x0000);
272 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_RX_PTR, EA_BUFFER_SIZE - 2);
273 1.6.2.2 bouyer
274 1.6.2.2 bouyer #define EA_RAMTEST_LOOP(value) \
275 1.6.2.2 bouyer do { \
276 1.6.2.2 bouyer /* Set the write start address and write a pattern */ \
277 1.6.2.2 bouyer ea_writebuf(sc, NULL, 0x0000, 0); \
278 1.6.2.2 bouyer for (loop = 0; loop < EA_BUFFER_SIZE; loop += 2) \
279 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_BUFWIN, (value)); \
280 1.6.2.2 bouyer \
281 1.6.2.2 bouyer /* Set the read start address and verify the pattern */ \
282 1.6.2.2 bouyer ea_readbuf(sc, NULL, 0x0000, 0); \
283 1.6.2.2 bouyer for (loop = 0; loop < EA_BUFFER_SIZE; loop += 2) \
284 1.6.2.2 bouyer if (bus_space_read_2(iot, ioh, EA_8005_BUFWIN) != (value)) \
285 1.6.2.2 bouyer ++sum; \
286 1.6.2.2 bouyer if (sum != 0) \
287 1.6.2.2 bouyer dprintf(("sum=%d\n", sum)); \
288 1.6.2.2 bouyer } while (/*CONSTCOND*/0)
289 1.6.2.2 bouyer
290 1.6.2.2 bouyer EA_RAMTEST_LOOP(loop);
291 1.6.2.2 bouyer EA_RAMTEST_LOOP(loop ^ (EA_BUFFER_SIZE - 1));
292 1.6.2.2 bouyer EA_RAMTEST_LOOP(0xaa55);
293 1.6.2.2 bouyer EA_RAMTEST_LOOP(0x55aa);
294 1.6.2.2 bouyer
295 1.6.2.2 bouyer /* Report */
296 1.6.2.2 bouyer
297 1.6.2.2 bouyer if (sum > 0)
298 1.6.2.2 bouyer printf("%s: buffer RAM failed self test, %d faults\n",
299 1.6.2.2 bouyer sc->sc_dev.dv_xname, sum);
300 1.6.2.2 bouyer }
301 1.6.2.2 bouyer
302 1.6.2.2 bouyer
303 1.6.2.2 bouyer /*
304 1.6.2.2 bouyer * Stop the tx interface.
305 1.6.2.2 bouyer *
306 1.6.2.2 bouyer * Returns 0 if the tx was already stopped or 1 if it was active
307 1.6.2.2 bouyer */
308 1.6.2.2 bouyer
309 1.6.2.2 bouyer static int
310 1.6.2.2 bouyer ea_stoptx(struct seeq8005_softc *sc)
311 1.6.2.2 bouyer {
312 1.6.2.2 bouyer bus_space_tag_t iot = sc->sc_iot;
313 1.6.2.2 bouyer bus_space_handle_t ioh = sc->sc_ioh;
314 1.6.2.2 bouyer int timeout;
315 1.6.2.2 bouyer int status;
316 1.6.2.2 bouyer
317 1.6.2.2 bouyer dprintf(("ea_stoptx()\n"));
318 1.6.2.2 bouyer
319 1.6.2.2 bouyer status = bus_space_read_2(iot, ioh, EA_8005_STATUS);
320 1.6.2.2 bouyer if (!(status & EA_STATUS_TX_ON))
321 1.6.2.2 bouyer return 0;
322 1.6.2.2 bouyer
323 1.6.2.2 bouyer /* Stop any tx and wait for confirmation */
324 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_COMMAND,
325 1.6.2.2 bouyer sc->sc_command | EA_CMD_TX_OFF);
326 1.6.2.2 bouyer
327 1.6.2.2 bouyer timeout = 20000;
328 1.6.2.2 bouyer do {
329 1.6.2.2 bouyer status = bus_space_read_2(iot, ioh, EA_8005_STATUS);
330 1.6.2.2 bouyer } while ((status & EA_STATUS_TX_ON) && --timeout > 0);
331 1.6.2.2 bouyer if (timeout == 0)
332 1.6.2.2 bouyer dprintf(("ea_stoptx: timeout waiting for tx termination\n"));
333 1.6.2.2 bouyer
334 1.6.2.2 bouyer /* Clear any pending tx interrupt */
335 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_COMMAND,
336 1.6.2.2 bouyer sc->sc_command | EA_CMD_TX_INTACK);
337 1.6.2.2 bouyer return 1;
338 1.6.2.2 bouyer }
339 1.6.2.2 bouyer
340 1.6.2.2 bouyer
341 1.6.2.2 bouyer /*
342 1.6.2.2 bouyer * Stop the rx interface.
343 1.6.2.2 bouyer *
344 1.6.2.2 bouyer * Returns 0 if the tx was already stopped or 1 if it was active
345 1.6.2.2 bouyer */
346 1.6.2.2 bouyer
347 1.6.2.2 bouyer static int
348 1.6.2.2 bouyer ea_stoprx(struct seeq8005_softc *sc)
349 1.6.2.2 bouyer {
350 1.6.2.2 bouyer bus_space_tag_t iot = sc->sc_iot;
351 1.6.2.2 bouyer bus_space_handle_t ioh = sc->sc_ioh;
352 1.6.2.2 bouyer int timeout;
353 1.6.2.2 bouyer int status;
354 1.6.2.2 bouyer
355 1.6.2.2 bouyer dprintf(("ea_stoprx()\n"));
356 1.6.2.2 bouyer
357 1.6.2.2 bouyer status = bus_space_read_2(iot, ioh, EA_8005_STATUS);
358 1.6.2.2 bouyer if (!(status & EA_STATUS_RX_ON))
359 1.6.2.2 bouyer return 0;
360 1.6.2.2 bouyer
361 1.6.2.2 bouyer /* Stop any rx and wait for confirmation */
362 1.6.2.2 bouyer
363 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_COMMAND,
364 1.6.2.2 bouyer sc->sc_command | EA_CMD_RX_OFF);
365 1.6.2.2 bouyer
366 1.6.2.2 bouyer timeout = 20000;
367 1.6.2.2 bouyer do {
368 1.6.2.2 bouyer status = bus_space_read_2(iot, ioh, EA_8005_STATUS);
369 1.6.2.2 bouyer } while ((status & EA_STATUS_RX_ON) && --timeout > 0);
370 1.6.2.2 bouyer if (timeout == 0)
371 1.6.2.2 bouyer dprintf(("ea_stoprx: timeout waiting for rx termination\n"));
372 1.6.2.2 bouyer
373 1.6.2.2 bouyer /* Clear any pending rx interrupt */
374 1.6.2.2 bouyer
375 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_COMMAND,
376 1.6.2.2 bouyer sc->sc_command | EA_CMD_RX_INTACK);
377 1.6.2.2 bouyer return 1;
378 1.6.2.2 bouyer }
379 1.6.2.2 bouyer
380 1.6.2.2 bouyer
381 1.6.2.2 bouyer /*
382 1.6.2.2 bouyer * Stop interface.
383 1.6.2.2 bouyer * Stop all IO and shut the interface down
384 1.6.2.2 bouyer */
385 1.6.2.2 bouyer
386 1.6.2.2 bouyer static void
387 1.6.2.2 bouyer ea_stop(struct seeq8005_softc *sc)
388 1.6.2.2 bouyer {
389 1.6.2.2 bouyer bus_space_tag_t iot = sc->sc_iot;
390 1.6.2.2 bouyer bus_space_handle_t ioh = sc->sc_ioh;
391 1.6.2.2 bouyer
392 1.6.2.2 bouyer dprintf(("ea_stop()\n"));
393 1.6.2.2 bouyer
394 1.6.2.2 bouyer /* Stop all IO */
395 1.6.2.2 bouyer ea_stoptx(sc);
396 1.6.2.2 bouyer ea_stoprx(sc);
397 1.6.2.2 bouyer
398 1.6.2.2 bouyer /* Disable rx and tx interrupts */
399 1.6.2.2 bouyer sc->sc_command &= (EA_CMD_RX_INTEN | EA_CMD_TX_INTEN);
400 1.6.2.2 bouyer
401 1.6.2.2 bouyer /* Clear any pending interrupts */
402 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_COMMAND,
403 1.6.2.2 bouyer sc->sc_command | EA_CMD_RX_INTACK |
404 1.6.2.2 bouyer EA_CMD_TX_INTACK | EA_CMD_DMA_INTACK |
405 1.6.2.2 bouyer EA_CMD_BW_INTACK);
406 1.6.2.2 bouyer dprintf(("st=%08x", bus_space_read_2(iot, ioh, EA_8005_STATUS)));
407 1.6.2.2 bouyer
408 1.6.2.2 bouyer /* Cancel any watchdog timer */
409 1.6.2.2 bouyer sc->sc_ethercom.ec_if.if_timer = 0;
410 1.6.2.2 bouyer }
411 1.6.2.2 bouyer
412 1.6.2.2 bouyer
413 1.6.2.2 bouyer /*
414 1.6.2.2 bouyer * Reset the chip
415 1.6.2.2 bouyer * Following this the software registers are reset
416 1.6.2.2 bouyer */
417 1.6.2.2 bouyer
418 1.6.2.2 bouyer static void
419 1.6.2.2 bouyer ea_chipreset(struct seeq8005_softc *sc)
420 1.6.2.2 bouyer {
421 1.6.2.2 bouyer bus_space_tag_t iot = sc->sc_iot;
422 1.6.2.2 bouyer bus_space_handle_t ioh = sc->sc_ioh;
423 1.6.2.2 bouyer
424 1.6.2.2 bouyer dprintf(("ea_chipreset()\n"));
425 1.6.2.2 bouyer
426 1.6.2.2 bouyer /* Reset the controller. Min of 4us delay here */
427 1.6.2.2 bouyer
428 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_CONFIG2, EA_CFG2_RESET);
429 1.6.2.2 bouyer delay(4);
430 1.6.2.2 bouyer
431 1.6.2.2 bouyer sc->sc_command = 0;
432 1.6.2.2 bouyer sc->sc_config1 = 0;
433 1.6.2.2 bouyer sc->sc_config2 = 0;
434 1.6.2.2 bouyer }
435 1.6.2.2 bouyer
436 1.6.2.2 bouyer
437 1.6.2.2 bouyer /*
438 1.6.2.2 bouyer * If the DMA FIFO's in write mode, wait for it to empty. Needed when
439 1.6.2.2 bouyer * switching the FIFO from write to read. We also use it when changing
440 1.6.2.2 bouyer * the address for writes.
441 1.6.2.2 bouyer */
442 1.6.2.2 bouyer static void
443 1.6.2.2 bouyer ea_await_fifo_empty(struct seeq8005_softc *sc)
444 1.6.2.2 bouyer {
445 1.6.2.2 bouyer bus_space_tag_t iot = sc->sc_iot;
446 1.6.2.2 bouyer bus_space_handle_t ioh = sc->sc_ioh;
447 1.6.2.2 bouyer int timeout;
448 1.6.2.2 bouyer
449 1.6.2.2 bouyer timeout = 20000;
450 1.6.2.2 bouyer if ((bus_space_read_2(iot, ioh, EA_8005_STATUS) &
451 1.6.2.2 bouyer EA_STATUS_FIFO_DIR) != 0)
452 1.6.2.2 bouyer return; /* FIFO is reading anyway. */
453 1.6.2.2 bouyer while ((bus_space_read_2(iot, ioh, EA_8005_STATUS) &
454 1.6.2.2 bouyer EA_STATUS_FIFO_EMPTY) == 0 &&
455 1.6.2.2 bouyer --timeout > 0)
456 1.6.2.2 bouyer continue;
457 1.6.2.2 bouyer }
458 1.6.2.2 bouyer
459 1.6.2.2 bouyer /*
460 1.6.2.2 bouyer * Wait for the DMA FIFO to fill before reading from it.
461 1.6.2.2 bouyer */
462 1.6.2.2 bouyer static void
463 1.6.2.2 bouyer ea_await_fifo_full(struct seeq8005_softc *sc)
464 1.6.2.2 bouyer {
465 1.6.2.2 bouyer bus_space_tag_t iot = sc->sc_iot;
466 1.6.2.2 bouyer bus_space_handle_t ioh = sc->sc_ioh;
467 1.6.2.2 bouyer int timeout;
468 1.6.2.2 bouyer
469 1.6.2.2 bouyer timeout = 20000;
470 1.6.2.2 bouyer while ((bus_space_read_2(iot, ioh, EA_8005_STATUS) &
471 1.6.2.2 bouyer EA_STATUS_FIFO_FULL) == 0 &&
472 1.6.2.2 bouyer --timeout > 0)
473 1.6.2.2 bouyer continue;
474 1.6.2.2 bouyer }
475 1.6.2.2 bouyer
476 1.6.2.2 bouyer /*
477 1.6.2.2 bouyer * write to the buffer memory on the interface
478 1.6.2.2 bouyer *
479 1.6.2.2 bouyer * The buffer address is set to ADDR.
480 1.6.2.2 bouyer * If len != 0 then data is copied from the address starting at buf
481 1.6.2.2 bouyer * to the interface buffer.
482 1.6.2.2 bouyer * BUF must be usable as a u_int16_t *.
483 1.6.2.2 bouyer * If LEN is odd, it must be safe to overwrite one extra byte.
484 1.6.2.2 bouyer */
485 1.6.2.2 bouyer
486 1.6.2.2 bouyer static void
487 1.6.2.2 bouyer ea_writebuf(struct seeq8005_softc *sc, u_char *buf, u_int addr, size_t len)
488 1.6.2.2 bouyer {
489 1.6.2.2 bouyer bus_space_tag_t iot = sc->sc_iot;
490 1.6.2.2 bouyer bus_space_handle_t ioh = sc->sc_ioh;
491 1.6.2.2 bouyer
492 1.6.2.2 bouyer dprintf(("writebuf: st=%04x\n",
493 1.6.2.2 bouyer bus_space_read_2(iot, ioh, EA_8005_STATUS)));
494 1.6.2.2 bouyer
495 1.6.2.2 bouyer #ifdef DIAGNOSTIC
496 1.6.2.2 bouyer if (__predict_false(!ALIGNED_POINTER(buf, u_int16_t)))
497 1.6.2.2 bouyer panic("%s: unaligned writebuf", sc->sc_dev.dv_xname);
498 1.6.2.2 bouyer #endif
499 1.6.2.2 bouyer if (__predict_false(addr >= EA_BUFFER_SIZE))
500 1.6.2.2 bouyer panic("%s: writebuf out of range", sc->sc_dev.dv_xname);
501 1.6.2.2 bouyer
502 1.6.2.2 bouyer /* Assume that copying too much is safe. */
503 1.6.2.2 bouyer if (len % 2 != 0)
504 1.6.2.2 bouyer len++;
505 1.6.2.2 bouyer
506 1.6.2.2 bouyer ea_await_fifo_empty(sc);
507 1.6.2.2 bouyer
508 1.6.2.2 bouyer ea_select_buffer(sc, EA_BUFCODE_LOCAL_MEM);
509 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_COMMAND,
510 1.6.2.2 bouyer sc->sc_command | EA_CMD_FIFO_WRITE);
511 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_DMA_ADDR, addr);
512 1.6.2.2 bouyer
513 1.6.2.2 bouyer if (len > 0)
514 1.6.2.2 bouyer bus_space_write_multi_2(iot, ioh, EA_8005_BUFWIN,
515 1.6.2.2 bouyer (u_int16_t *)buf, len / 2);
516 1.6.2.2 bouyer /* Leave FIFO to empty in the background */
517 1.6.2.2 bouyer }
518 1.6.2.2 bouyer
519 1.6.2.2 bouyer
520 1.6.2.2 bouyer /*
521 1.6.2.2 bouyer * read from the buffer memory on the interface
522 1.6.2.2 bouyer *
523 1.6.2.2 bouyer * The buffer address is set to ADDR.
524 1.6.2.2 bouyer * If len != 0 then data is copied from the interface buffer to the
525 1.6.2.2 bouyer * address starting at buf.
526 1.6.2.2 bouyer * BUF must be usable as a u_int16_t *.
527 1.6.2.2 bouyer * If LEN is odd, it must be safe to overwrite one extra byte.
528 1.6.2.2 bouyer */
529 1.6.2.2 bouyer
530 1.6.2.2 bouyer static void
531 1.6.2.2 bouyer ea_readbuf(struct seeq8005_softc *sc, u_char *buf, u_int addr, size_t len)
532 1.6.2.2 bouyer {
533 1.6.2.2 bouyer
534 1.6.2.2 bouyer bus_space_tag_t iot = sc->sc_iot;
535 1.6.2.2 bouyer bus_space_handle_t ioh = sc->sc_ioh;
536 1.6.2.2 bouyer
537 1.6.2.2 bouyer dprintf(("readbuf: st=%04x addr=%04x len=%d\n",
538 1.6.2.2 bouyer bus_space_read_2(iot, ioh, EA_8005_STATUS), addr, len));
539 1.6.2.2 bouyer
540 1.6.2.2 bouyer #ifdef DIAGNOSTIC
541 1.6.2.2 bouyer if (!ALIGNED_POINTER(buf, u_int16_t))
542 1.6.2.2 bouyer panic("%s: unaligned readbuf", sc->sc_dev.dv_xname);
543 1.6.2.2 bouyer #endif
544 1.6.2.2 bouyer if (addr >= EA_BUFFER_SIZE)
545 1.6.2.2 bouyer panic("%s: writebuf out of range", sc->sc_dev.dv_xname);
546 1.6.2.2 bouyer
547 1.6.2.2 bouyer /* Assume that copying too much is safe. */
548 1.6.2.2 bouyer if (len % 2 != 0)
549 1.6.2.2 bouyer len++;
550 1.6.2.2 bouyer
551 1.6.2.2 bouyer ea_await_fifo_empty(sc);
552 1.6.2.2 bouyer
553 1.6.2.2 bouyer ea_select_buffer(sc, EA_BUFCODE_LOCAL_MEM);
554 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_DMA_ADDR, addr);
555 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_COMMAND,
556 1.6.2.2 bouyer sc->sc_command | EA_CMD_FIFO_READ);
557 1.6.2.2 bouyer
558 1.6.2.2 bouyer ea_await_fifo_full(sc);
559 1.6.2.2 bouyer
560 1.6.2.2 bouyer if (len > 0)
561 1.6.2.2 bouyer bus_space_read_multi_2(iot, ioh, EA_8005_BUFWIN,
562 1.6.2.2 bouyer (u_int16_t *)buf, len / 2);
563 1.6.2.2 bouyer }
564 1.6.2.2 bouyer
565 1.6.2.2 bouyer static void
566 1.6.2.2 bouyer ea_select_buffer(struct seeq8005_softc *sc, int bufcode)
567 1.6.2.2 bouyer {
568 1.6.2.2 bouyer
569 1.6.2.2 bouyer bus_space_write_2(sc->sc_iot, sc->sc_ioh, EA_8005_CONFIG1,
570 1.6.2.2 bouyer sc->sc_config1 | bufcode);
571 1.6.2.2 bouyer }
572 1.6.2.2 bouyer
573 1.6.2.2 bouyer /*
574 1.6.2.2 bouyer * Initialize interface.
575 1.6.2.2 bouyer *
576 1.6.2.2 bouyer * This should leave the interface in a state for packet reception and
577 1.6.2.2 bouyer * transmission.
578 1.6.2.2 bouyer */
579 1.6.2.2 bouyer
580 1.6.2.2 bouyer static int
581 1.6.2.2 bouyer ea_init(struct seeq8005_softc *sc)
582 1.6.2.2 bouyer {
583 1.6.2.2 bouyer struct ifnet *ifp = &sc->sc_ethercom.ec_if;
584 1.6.2.2 bouyer bus_space_tag_t iot = sc->sc_iot;
585 1.6.2.2 bouyer bus_space_handle_t ioh = sc->sc_ioh;
586 1.6.2.2 bouyer int s, loop;
587 1.6.2.2 bouyer
588 1.6.2.2 bouyer dprintf(("ea_init()\n"));
589 1.6.2.2 bouyer
590 1.6.2.2 bouyer s = splnet();
591 1.6.2.2 bouyer
592 1.6.2.2 bouyer /* First, reset the board. */
593 1.6.2.2 bouyer
594 1.6.2.2 bouyer ea_chipreset(sc);
595 1.6.2.2 bouyer
596 1.6.2.2 bouyer /* Set up defaults for the registers */
597 1.6.2.2 bouyer
598 1.6.2.2 bouyer sc->sc_command = 0x00;
599 1.6.2.2 bouyer sc->sc_config1 = 0x00; /* XXX DMA settings? */
600 1.6.2.2 bouyer #if BYTE_ORDER == BIG_ENDIAN
601 1.6.2.2 bouyer sc->sc_config2 = EA_CFG2_BYTESWAP
602 1.6.2.2 bouyer #else
603 1.6.2.2 bouyer sc->sc_config2 = 0;
604 1.6.2.2 bouyer #endif
605 1.6.2.2 bouyer
606 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_COMMAND, sc->sc_command);
607 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_CONFIG1, sc->sc_config1);
608 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_CONFIG2, sc->sc_config2);
609 1.6.2.2 bouyer
610 1.6.2.2 bouyer /* Split board memory into Rx and Tx. */
611 1.6.2.2 bouyer ea_select_buffer(sc, EA_BUFCODE_TX_EAP);
612 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_BUFWIN,
613 1.6.2.2 bouyer (EA_TX_BUFFER_SIZE >> 8) - 1);
614 1.6.2.2 bouyer
615 1.6.2.2 bouyer /* Write the station address - the receiver must be off */
616 1.6.2.2 bouyer ea_select_buffer(sc, EA_BUFCODE_STATION_ADDR0);
617 1.6.2.2 bouyer for (loop = 0; loop < ETHER_ADDR_LEN; ++loop)
618 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_BUFWIN,
619 1.6.2.2 bouyer LLADDR(ifp->if_sadl)[loop]);
620 1.6.2.2 bouyer
621 1.6.2.2 bouyer /* Configure rx. */
622 1.6.2.2 bouyer dprintf(("Configuring rx...\n"));
623 1.6.2.2 bouyer if (ifp->if_flags & IFF_PROMISC)
624 1.6.2.2 bouyer sc->sc_config1 = EA_CFG1_PROMISCUOUS;
625 1.6.2.2 bouyer else
626 1.6.2.2 bouyer sc->sc_config1 = EA_CFG1_BROADCAST;
627 1.6.2.2 bouyer sc->sc_config1 |= EA_CFG1_STATION_ADDR0;
628 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_CONFIG1, sc->sc_config1);
629 1.6.2.2 bouyer
630 1.6.2.2 bouyer /* Setup the Rx pointers */
631 1.6.2.2 bouyer sc->sc_rx_ptr = EA_TX_BUFFER_SIZE;
632 1.6.2.2 bouyer
633 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_RX_PTR, sc->sc_rx_ptr);
634 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_RX_END, sc->sc_rx_ptr >> 8);
635 1.6.2.2 bouyer
636 1.6.2.2 bouyer
637 1.6.2.2 bouyer /* Place a NULL header at the beginning of the receive area */
638 1.6.2.2 bouyer ea_writebuf(sc, NULL, sc->sc_rx_ptr, 0);
639 1.6.2.2 bouyer
640 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_BUFWIN, 0x0000);
641 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_BUFWIN, 0x0000);
642 1.6.2.2 bouyer
643 1.6.2.2 bouyer
644 1.6.2.2 bouyer /* Turn on Rx */
645 1.6.2.2 bouyer sc->sc_command |= EA_CMD_RX_INTEN;
646 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_COMMAND,
647 1.6.2.2 bouyer sc->sc_command | EA_CMD_RX_ON);
648 1.6.2.2 bouyer
649 1.6.2.2 bouyer
650 1.6.2.2 bouyer /* Configure TX. */
651 1.6.2.2 bouyer dprintf(("Configuring tx...\n"));
652 1.6.2.2 bouyer
653 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_TX_PTR, 0x0000);
654 1.6.2.2 bouyer
655 1.6.2.2 bouyer sc->sc_config2 |= EA_CFG2_OUTPUT;
656 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_CONFIG2, sc->sc_config2);
657 1.6.2.2 bouyer
658 1.6.2.2 bouyer
659 1.6.2.2 bouyer /* Place a NULL header at the beginning of the transmit area */
660 1.6.2.2 bouyer ea_writebuf(sc, NULL, 0x0000, 0);
661 1.6.2.2 bouyer
662 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_BUFWIN, 0x0000);
663 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_BUFWIN, 0x0000);
664 1.6.2.2 bouyer
665 1.6.2.2 bouyer sc->sc_command |= EA_CMD_TX_INTEN;
666 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_COMMAND, sc->sc_command);
667 1.6.2.2 bouyer
668 1.6.2.2 bouyer /* TX_ON gets set by ea_txpacket when there's something to transmit. */
669 1.6.2.2 bouyer
670 1.6.2.2 bouyer
671 1.6.2.2 bouyer /* Set flags appropriately. */
672 1.6.2.2 bouyer ifp->if_flags |= IFF_RUNNING;
673 1.6.2.2 bouyer ifp->if_flags &= ~IFF_OACTIVE;
674 1.6.2.2 bouyer
675 1.6.2.2 bouyer dprintf(("init: st=%04x\n",
676 1.6.2.2 bouyer bus_space_read_2(iot, ioh, EA_8005_STATUS)));
677 1.6.2.2 bouyer
678 1.6.2.2 bouyer
679 1.6.2.2 bouyer /* And start output. */
680 1.6.2.2 bouyer ea_start(ifp);
681 1.6.2.2 bouyer
682 1.6.2.2 bouyer splx(s);
683 1.6.2.2 bouyer return 0;
684 1.6.2.2 bouyer }
685 1.6.2.2 bouyer
686 1.6.2.2 bouyer
687 1.6.2.2 bouyer /*
688 1.6.2.2 bouyer * Start output on interface. Get datagrams from the queue and output them,
689 1.6.2.2 bouyer * giving the receiver a chance between datagrams. Call only from splnet or
690 1.6.2.2 bouyer * interrupt level!
691 1.6.2.2 bouyer */
692 1.6.2.2 bouyer
693 1.6.2.2 bouyer static void
694 1.6.2.2 bouyer ea_start(struct ifnet *ifp)
695 1.6.2.2 bouyer {
696 1.6.2.2 bouyer struct seeq8005_softc *sc = ifp->if_softc;
697 1.6.2.2 bouyer int s;
698 1.6.2.2 bouyer
699 1.6.2.2 bouyer s = splnet();
700 1.6.2.2 bouyer #ifdef EA_TX_DEBUG
701 1.6.2.2 bouyer dprintf(("ea_start()...\n"));
702 1.6.2.2 bouyer #endif
703 1.6.2.2 bouyer
704 1.6.2.2 bouyer /* Don't do anything if output is active. */
705 1.6.2.2 bouyer
706 1.6.2.2 bouyer if (ifp->if_flags & IFF_OACTIVE)
707 1.6.2.2 bouyer return;
708 1.6.2.2 bouyer
709 1.6.2.2 bouyer /* Mark interface as output active */
710 1.6.2.2 bouyer
711 1.6.2.2 bouyer ifp->if_flags |= IFF_OACTIVE;
712 1.6.2.2 bouyer
713 1.6.2.2 bouyer /* tx packets */
714 1.6.2.2 bouyer
715 1.6.2.2 bouyer eatxpacket(sc);
716 1.6.2.2 bouyer splx(s);
717 1.6.2.2 bouyer }
718 1.6.2.2 bouyer
719 1.6.2.2 bouyer
720 1.6.2.2 bouyer /*
721 1.6.2.2 bouyer * Transfer a packet to the interface buffer and start transmission
722 1.6.2.2 bouyer *
723 1.6.2.2 bouyer * Called at splnet()
724 1.6.2.2 bouyer */
725 1.6.2.2 bouyer
726 1.6.2.2 bouyer void
727 1.6.2.2 bouyer eatxpacket(struct seeq8005_softc *sc)
728 1.6.2.2 bouyer {
729 1.6.2.2 bouyer bus_space_tag_t iot = sc->sc_iot;
730 1.6.2.2 bouyer bus_space_handle_t ioh = sc->sc_ioh;
731 1.6.2.2 bouyer struct mbuf *m, *m0;
732 1.6.2.2 bouyer struct ifnet *ifp;
733 1.6.2.2 bouyer int len, nextpacket;
734 1.6.2.2 bouyer u_int8_t hdr[4];
735 1.6.2.2 bouyer
736 1.6.2.2 bouyer ifp = &sc->sc_ethercom.ec_if;
737 1.6.2.2 bouyer
738 1.6.2.2 bouyer /* Dequeue the next packet. */
739 1.6.2.2 bouyer IF_DEQUEUE(&ifp->if_snd, m0);
740 1.6.2.2 bouyer
741 1.6.2.2 bouyer /* If there's nothing to send, return. */
742 1.6.2.2 bouyer if (!m0) {
743 1.6.2.2 bouyer ifp->if_flags &= ~IFF_OACTIVE;
744 1.6.2.2 bouyer sc->sc_config2 |= EA_CFG2_OUTPUT;
745 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_CONFIG2, sc->sc_config2);
746 1.6.2.2 bouyer #ifdef EA_TX_DEBUG
747 1.6.2.2 bouyer dprintf(("tx finished\n"));
748 1.6.2.2 bouyer #endif
749 1.6.2.2 bouyer return;
750 1.6.2.2 bouyer }
751 1.6.2.2 bouyer
752 1.6.2.2 bouyer #if NBPFILTER > 0
753 1.6.2.2 bouyer /* Give the packet to the bpf, if any. */
754 1.6.2.2 bouyer if (ifp->if_bpf)
755 1.6.2.2 bouyer bpf_mtap(ifp->if_bpf, m0);
756 1.6.2.2 bouyer #endif
757 1.6.2.2 bouyer
758 1.6.2.2 bouyer #ifdef EA_TX_DEBUG
759 1.6.2.2 bouyer dprintf(("Tx new packet\n"));
760 1.6.2.2 bouyer #endif
761 1.6.2.2 bouyer
762 1.6.2.2 bouyer sc->sc_config2 &= ~EA_CFG2_OUTPUT;
763 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_CONFIG2, sc->sc_config2);
764 1.6.2.2 bouyer
765 1.6.2.2 bouyer /*
766 1.6.2.2 bouyer * Copy the frame to the start of the transmit area on the card,
767 1.6.2.2 bouyer * leaving four bytes for the transmit header.
768 1.6.2.2 bouyer */
769 1.6.2.2 bouyer len = 0;
770 1.6.2.2 bouyer for (m = m0; m; m = m->m_next) {
771 1.6.2.2 bouyer if (m->m_len == 0)
772 1.6.2.2 bouyer continue;
773 1.6.2.2 bouyer ea_writebuf(sc, mtod(m, caddr_t), 4 + len, m->m_len);
774 1.6.2.2 bouyer len += m->m_len;
775 1.6.2.2 bouyer }
776 1.6.2.2 bouyer m_freem(m0);
777 1.6.2.2 bouyer
778 1.6.2.2 bouyer
779 1.6.2.2 bouyer /* If packet size is odd round up to the next 16 bit boundry */
780 1.6.2.2 bouyer if (len % 2)
781 1.6.2.2 bouyer ++len;
782 1.6.2.2 bouyer
783 1.6.2.2 bouyer len = max(len, ETHER_MIN_LEN);
784 1.6.2.2 bouyer
785 1.6.2.2 bouyer if (len > (ETHER_MAX_LEN - ETHER_CRC_LEN))
786 1.6.2.2 bouyer log(LOG_WARNING, "%s: oversize packet = %d bytes\n",
787 1.6.2.2 bouyer sc->sc_dev.dv_xname, len);
788 1.6.2.2 bouyer
789 1.6.2.2 bouyer #if 0 /*def EA_TX_DEBUG*/
790 1.6.2.2 bouyer dprintf(("ea: xfr pkt length=%d...\n", len));
791 1.6.2.2 bouyer
792 1.6.2.2 bouyer dprintf(("%s-->", ether_sprintf(sc->sc_pktbuf+6)));
793 1.6.2.2 bouyer dprintf(("%s\n", ether_sprintf(sc->sc_pktbuf)));
794 1.6.2.2 bouyer #endif
795 1.6.2.2 bouyer
796 1.6.2.2 bouyer /* dprintf(("st=%04x\n", bus_space_read_2(iot, ioh, EA_8005_STATUS)));*/
797 1.6.2.2 bouyer
798 1.6.2.2 bouyer /* Follow it with a NULL packet header */
799 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_BUFWIN, 0x0000);
800 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_BUFWIN, 0x0000);
801 1.6.2.2 bouyer
802 1.6.2.2 bouyer
803 1.6.2.2 bouyer /* Write the packet header */
804 1.6.2.2 bouyer
805 1.6.2.2 bouyer nextpacket = len + 4;
806 1.6.2.2 bouyer hdr[0] = (nextpacket >> 8) & 0xff;
807 1.6.2.2 bouyer hdr[1] = nextpacket & 0xff;
808 1.6.2.2 bouyer hdr[2] = EA_PKTHDR_TX | EA_PKTHDR_DATA_FOLLOWS |
809 1.6.2.2 bouyer EA_TXHDR_XMIT_SUCCESS_INT | EA_TXHDR_COLLISION_INT;
810 1.6.2.2 bouyer hdr[3] = 0; /* Status byte -- will be update by hardware. */
811 1.6.2.2 bouyer ea_writebuf(sc, hdr, 0x0000, 4);
812 1.6.2.2 bouyer
813 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_TX_PTR, 0x0000);
814 1.6.2.2 bouyer
815 1.6.2.2 bouyer /* dprintf(("st=%04x\n", bus_space_read_2(iot, ioh, EA_8005_STATUS)));*/
816 1.6.2.2 bouyer
817 1.6.2.2 bouyer #ifdef EA_PACKET_DEBUG
818 1.6.2.2 bouyer ea_dump_buffer(sc, 0);
819 1.6.2.2 bouyer #endif
820 1.6.2.2 bouyer
821 1.6.2.2 bouyer
822 1.6.2.2 bouyer /* Now transmit the datagram. */
823 1.6.2.2 bouyer /* dprintf(("st=%04x\n", bus_space_read_2(iot, ioh, EA_8005_STATUS)));*/
824 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_COMMAND,
825 1.6.2.2 bouyer sc->sc_command | EA_CMD_TX_ON);
826 1.6.2.2 bouyer #ifdef EA_TX_DEBUG
827 1.6.2.2 bouyer dprintf(("st=%04x\n", bus_space_read_2(iot, ioh, EA_8005_STATUS)));
828 1.6.2.2 bouyer dprintf(("tx: queued\n"));
829 1.6.2.2 bouyer #endif
830 1.6.2.2 bouyer }
831 1.6.2.2 bouyer
832 1.6.2.2 bouyer
833 1.6.2.2 bouyer /*
834 1.6.2.2 bouyer * Ethernet controller interrupt.
835 1.6.2.2 bouyer */
836 1.6.2.2 bouyer
837 1.6.2.2 bouyer int
838 1.6.2.2 bouyer seeq8005intr(void *arg)
839 1.6.2.2 bouyer {
840 1.6.2.2 bouyer struct seeq8005_softc *sc = arg;
841 1.6.2.2 bouyer bus_space_tag_t iot = sc->sc_iot;
842 1.6.2.2 bouyer bus_space_handle_t ioh = sc->sc_ioh;
843 1.6.2.2 bouyer struct ifnet *ifp = &sc->sc_ethercom.ec_if;
844 1.6.2.2 bouyer int status, s, handled;
845 1.6.2.2 bouyer u_int8_t txhdr[4];
846 1.6.2.2 bouyer u_int txstatus;
847 1.6.2.2 bouyer
848 1.6.2.2 bouyer handled = 0;
849 1.6.2.2 bouyer dprintf(("eaintr: "));
850 1.6.2.2 bouyer
851 1.6.2.2 bouyer
852 1.6.2.2 bouyer /* Get the controller status */
853 1.6.2.2 bouyer status = bus_space_read_2(iot, ioh, EA_8005_STATUS);
854 1.6.2.2 bouyer dprintf(("st=%04x ", status));
855 1.6.2.2 bouyer
856 1.6.2.2 bouyer
857 1.6.2.2 bouyer /* Tx interrupt ? */
858 1.6.2.2 bouyer if (status & EA_STATUS_TX_INT) {
859 1.6.2.2 bouyer dprintf(("txint "));
860 1.6.2.2 bouyer handled = 1;
861 1.6.2.2 bouyer
862 1.6.2.2 bouyer /* Acknowledge the interrupt */
863 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_COMMAND,
864 1.6.2.2 bouyer sc->sc_command | EA_CMD_TX_INTACK);
865 1.6.2.2 bouyer
866 1.6.2.2 bouyer ea_readbuf(sc, txhdr, 0x0000, 4);
867 1.6.2.2 bouyer
868 1.6.2.2 bouyer #ifdef EA_TX_DEBUG
869 1.6.2.2 bouyer dprintf(("txstatus=%02x %02x %02x %02x\n",
870 1.6.2.2 bouyer txhdr[0], txhdr[1], txhdr[2], txhdr[3]));
871 1.6.2.2 bouyer #endif
872 1.6.2.2 bouyer txstatus = txhdr[3];
873 1.6.2.2 bouyer
874 1.6.2.2 bouyer /*
875 1.6.2.2 bouyer * Did it succeed ? Did we collide ?
876 1.6.2.2 bouyer *
877 1.6.2.2 bouyer * The exact proceedure here is not clear. We should get
878 1.6.2.2 bouyer * an interrupt on a sucessfull tx or on a collision.
879 1.6.2.2 bouyer * The done flag is set after successfull tx or 16 collisions
880 1.6.2.2 bouyer * We should thus get a interrupt for each of collision
881 1.6.2.2 bouyer * and the done bit should not be set. However it does appear
882 1.6.2.2 bouyer * to be set at the same time as the collision bit ...
883 1.6.2.2 bouyer *
884 1.6.2.2 bouyer * So we will count collisions and output errors and will
885 1.6.2.2 bouyer * assume that if the done bit is set the packet was
886 1.6.2.2 bouyer * transmitted. Stats may be wrong if 16 collisions occur on
887 1.6.2.2 bouyer * a packet as the done flag should be set but the packet
888 1.6.2.2 bouyer * may not have been transmitted. so the output count might
889 1.6.2.2 bouyer * not require incrementing if the 16 collisions flags is
890 1.6.2.2 bouyer * set. I don;t know abou this until it happens.
891 1.6.2.2 bouyer */
892 1.6.2.2 bouyer
893 1.6.2.2 bouyer if (txstatus & EA_TXHDR_COLLISION)
894 1.6.2.2 bouyer ifp->if_collisions++;
895 1.6.2.2 bouyer else if (txstatus & EA_TXHDR_ERROR_MASK)
896 1.6.2.2 bouyer ifp->if_oerrors++;
897 1.6.2.2 bouyer
898 1.6.2.2 bouyer #if 0
899 1.6.2.2 bouyer if (txstatus & EA_TXHDR_ERROR_MASK)
900 1.6.2.2 bouyer log(LOG_WARNING, "tx packet error =%02x\n", txstatus);
901 1.6.2.2 bouyer #endif
902 1.6.2.2 bouyer
903 1.6.2.2 bouyer if (txstatus & EA_PKTHDR_DONE) {
904 1.6.2.2 bouyer ifp->if_opackets++;
905 1.6.2.2 bouyer
906 1.6.2.2 bouyer /* Tx next packet */
907 1.6.2.2 bouyer
908 1.6.2.2 bouyer s = splnet();
909 1.6.2.2 bouyer eatxpacket(sc);
910 1.6.2.2 bouyer splx(s);
911 1.6.2.2 bouyer }
912 1.6.2.2 bouyer }
913 1.6.2.2 bouyer
914 1.6.2.2 bouyer
915 1.6.2.2 bouyer /* Rx interrupt ? */
916 1.6.2.2 bouyer if (status & EA_STATUS_RX_INT) {
917 1.6.2.2 bouyer dprintf(("rxint "));
918 1.6.2.2 bouyer handled = 1;
919 1.6.2.2 bouyer
920 1.6.2.2 bouyer /* Acknowledge the interrupt */
921 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_COMMAND,
922 1.6.2.2 bouyer sc->sc_command | EA_CMD_RX_INTACK);
923 1.6.2.2 bouyer
924 1.6.2.2 bouyer /* Install a watchdog timer needed atm to fixed rx lockups */
925 1.6.2.2 bouyer ifp->if_timer = EA_TIMEOUT;
926 1.6.2.2 bouyer
927 1.6.2.2 bouyer /* Processes the received packets */
928 1.6.2.2 bouyer eagetpackets(sc);
929 1.6.2.2 bouyer
930 1.6.2.2 bouyer
931 1.6.2.2 bouyer #if 0
932 1.6.2.2 bouyer /* Make sure the receiver is on */
933 1.6.2.2 bouyer if ((status & EA_STATUS_RX_ON) == 0) {
934 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_COMMAND,
935 1.6.2.2 bouyer sc->sc_command | EA_CMD_RX_ON);
936 1.6.2.2 bouyer printf("rxintr: rx is off st=%04x\n",status);
937 1.6.2.2 bouyer }
938 1.6.2.2 bouyer #endif
939 1.6.2.2 bouyer }
940 1.6.2.2 bouyer
941 1.6.2.2 bouyer #ifdef EA_DEBUG
942 1.6.2.2 bouyer status = bus_space_read_2(iot, ioh, EA_8005_STATUS);
943 1.6.2.2 bouyer dprintf(("st=%04x\n", status));
944 1.6.2.2 bouyer #endif
945 1.6.2.2 bouyer
946 1.6.2.2 bouyer return handled;
947 1.6.2.2 bouyer }
948 1.6.2.2 bouyer
949 1.6.2.2 bouyer
950 1.6.2.2 bouyer void
951 1.6.2.2 bouyer eagetpackets(struct seeq8005_softc *sc)
952 1.6.2.2 bouyer {
953 1.6.2.2 bouyer bus_space_tag_t iot = sc->sc_iot;
954 1.6.2.2 bouyer bus_space_handle_t ioh = sc->sc_ioh;
955 1.6.2.2 bouyer u_int addr;
956 1.6.2.2 bouyer int len;
957 1.6.2.2 bouyer int ctrl;
958 1.6.2.2 bouyer int ptr;
959 1.6.2.2 bouyer int pack;
960 1.6.2.2 bouyer int status;
961 1.6.2.2 bouyer u_int8_t rxhdr[4];
962 1.6.2.2 bouyer struct ifnet *ifp;
963 1.6.2.2 bouyer
964 1.6.2.2 bouyer ifp = &sc->sc_ethercom.ec_if;
965 1.6.2.2 bouyer
966 1.6.2.2 bouyer
967 1.6.2.2 bouyer /* We start from the last rx pointer position */
968 1.6.2.2 bouyer addr = sc->sc_rx_ptr;
969 1.6.2.2 bouyer sc->sc_config2 &= ~EA_CFG2_OUTPUT;
970 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_CONFIG2, sc->sc_config2);
971 1.6.2.2 bouyer
972 1.6.2.2 bouyer do {
973 1.6.2.2 bouyer /* Read rx header */
974 1.6.2.2 bouyer ea_readbuf(sc, rxhdr, addr, 4);
975 1.6.2.2 bouyer
976 1.6.2.2 bouyer /* Split the packet header */
977 1.6.2.2 bouyer ptr = (rxhdr[0] << 8) | rxhdr[1];
978 1.6.2.2 bouyer ctrl = rxhdr[2];
979 1.6.2.2 bouyer status = rxhdr[3];
980 1.6.2.2 bouyer
981 1.6.2.2 bouyer #ifdef EA_RX_DEBUG
982 1.6.2.2 bouyer dprintf(("addr=%04x ptr=%04x ctrl=%02x status=%02x\n",
983 1.6.2.2 bouyer addr, ptr, ctrl, status));
984 1.6.2.2 bouyer #endif
985 1.6.2.2 bouyer
986 1.6.2.2 bouyer
987 1.6.2.2 bouyer /* Zero packet ptr ? then must be null header so exit */
988 1.6.2.2 bouyer if (ptr == 0) break;
989 1.6.2.2 bouyer
990 1.6.2.2 bouyer
991 1.6.2.2 bouyer /* Get packet length */
992 1.6.2.2 bouyer len = (ptr - addr) - 4;
993 1.6.2.2 bouyer
994 1.6.2.2 bouyer if (len < 0)
995 1.6.2.2 bouyer len += EA_RX_BUFFER_SIZE;
996 1.6.2.2 bouyer
997 1.6.2.2 bouyer #ifdef EA_RX_DEBUG
998 1.6.2.2 bouyer dprintf(("len=%04x\n", len));
999 1.6.2.2 bouyer #endif
1000 1.6.2.2 bouyer
1001 1.6.2.2 bouyer
1002 1.6.2.2 bouyer /* Has the packet rx completed ? if not then exit */
1003 1.6.2.2 bouyer if ((status & EA_PKTHDR_DONE) == 0)
1004 1.6.2.2 bouyer break;
1005 1.6.2.2 bouyer
1006 1.6.2.2 bouyer /*
1007 1.6.2.2 bouyer * Did we have any errors? then note error and go to
1008 1.6.2.2 bouyer * next packet
1009 1.6.2.2 bouyer */
1010 1.6.2.2 bouyer if (__predict_false(status & 0x0f)) {
1011 1.6.2.2 bouyer ++ifp->if_ierrors;
1012 1.6.2.2 bouyer log(LOG_WARNING,
1013 1.6.2.2 bouyer "%s: rx packet error (%02x) - dropping packet\n",
1014 1.6.2.2 bouyer sc->sc_dev.dv_xname, status & 0x0f);
1015 1.6.2.2 bouyer sc->sc_config2 |= EA_CFG2_OUTPUT;
1016 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_CONFIG2,
1017 1.6.2.2 bouyer sc->sc_config2);
1018 1.6.2.2 bouyer ea_init(sc);
1019 1.6.2.2 bouyer return;
1020 1.6.2.2 bouyer }
1021 1.6.2.2 bouyer
1022 1.6.2.2 bouyer /*
1023 1.6.2.2 bouyer * Is the packet too big ? - this will probably be trapped
1024 1.6.2.2 bouyer * above as a receive error
1025 1.6.2.2 bouyer */
1026 1.6.2.2 bouyer if (__predict_false(len > (ETHER_MAX_LEN - ETHER_CRC_LEN))) {
1027 1.6.2.2 bouyer ++ifp->if_ierrors;
1028 1.6.2.2 bouyer log(LOG_WARNING, "%s: rx packet size error len=%d\n",
1029 1.6.2.2 bouyer sc->sc_dev.dv_xname, len);
1030 1.6.2.2 bouyer sc->sc_config2 |= EA_CFG2_OUTPUT;
1031 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_CONFIG2,
1032 1.6.2.2 bouyer sc->sc_config2);
1033 1.6.2.2 bouyer ea_init(sc);
1034 1.6.2.2 bouyer return;
1035 1.6.2.2 bouyer }
1036 1.6.2.2 bouyer
1037 1.6.2.2 bouyer ifp->if_ipackets++;
1038 1.6.2.2 bouyer /* Pass data up to upper levels. */
1039 1.6.2.2 bouyer earead(sc, addr + 4, len);
1040 1.6.2.2 bouyer
1041 1.6.2.2 bouyer addr = ptr;
1042 1.6.2.2 bouyer ++pack;
1043 1.6.2.2 bouyer } while (len != 0);
1044 1.6.2.2 bouyer
1045 1.6.2.2 bouyer sc->sc_config2 |= EA_CFG2_OUTPUT;
1046 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_CONFIG2, sc->sc_config2);
1047 1.6.2.2 bouyer
1048 1.6.2.2 bouyer #ifdef EA_RX_DEBUG
1049 1.6.2.2 bouyer dprintf(("new rx ptr=%04x\n", addr));
1050 1.6.2.2 bouyer #endif
1051 1.6.2.2 bouyer
1052 1.6.2.2 bouyer
1053 1.6.2.2 bouyer /* Store new rx pointer */
1054 1.6.2.2 bouyer sc->sc_rx_ptr = addr;
1055 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_RX_END, sc->sc_rx_ptr >> 8);
1056 1.6.2.2 bouyer
1057 1.6.2.2 bouyer /* Make sure the receiver is on */
1058 1.6.2.2 bouyer bus_space_write_2(iot, ioh, EA_8005_COMMAND,
1059 1.6.2.2 bouyer sc->sc_command | EA_CMD_RX_ON);
1060 1.6.2.2 bouyer
1061 1.6.2.2 bouyer }
1062 1.6.2.2 bouyer
1063 1.6.2.2 bouyer
1064 1.6.2.2 bouyer /*
1065 1.6.2.2 bouyer * Pass a packet up to the higher levels.
1066 1.6.2.2 bouyer */
1067 1.6.2.2 bouyer
1068 1.6.2.2 bouyer static void
1069 1.6.2.2 bouyer earead(struct seeq8005_softc *sc, int addr, int len)
1070 1.6.2.2 bouyer {
1071 1.6.2.2 bouyer struct mbuf *m;
1072 1.6.2.2 bouyer struct ifnet *ifp;
1073 1.6.2.2 bouyer
1074 1.6.2.2 bouyer ifp = &sc->sc_ethercom.ec_if;
1075 1.6.2.2 bouyer
1076 1.6.2.2 bouyer /* Pull packet off interface. */
1077 1.6.2.2 bouyer m = eaget(sc, addr, len, ifp);
1078 1.6.2.2 bouyer if (m == 0)
1079 1.6.2.2 bouyer return;
1080 1.6.2.2 bouyer
1081 1.6.2.2 bouyer #ifdef EA_RX_DEBUG
1082 1.6.2.2 bouyer dprintf(("%s-->", ether_sprintf(eh->ether_shost)));
1083 1.6.2.2 bouyer dprintf(("%s\n", ether_sprintf(eh->ether_dhost)));
1084 1.6.2.2 bouyer #endif
1085 1.6.2.2 bouyer
1086 1.6.2.2 bouyer #if NBPFILTER > 0
1087 1.6.2.2 bouyer /*
1088 1.6.2.2 bouyer * Check if there's a BPF listener on this interface.
1089 1.6.2.2 bouyer * If so, hand off the raw packet to bpf.
1090 1.6.2.2 bouyer */
1091 1.6.2.2 bouyer if (ifp->if_bpf)
1092 1.6.2.2 bouyer bpf_mtap(ifp->if_bpf, m);
1093 1.6.2.2 bouyer #endif
1094 1.6.2.2 bouyer
1095 1.6.2.2 bouyer (*ifp->if_input)(ifp, m);
1096 1.6.2.2 bouyer }
1097 1.6.2.2 bouyer
1098 1.6.2.2 bouyer /*
1099 1.6.2.2 bouyer * Pull read data off a interface. Len is length of data, with local net
1100 1.6.2.2 bouyer * header stripped. We copy the data into mbufs. When full cluster sized
1101 1.6.2.2 bouyer * units are present we copy into clusters.
1102 1.6.2.2 bouyer */
1103 1.6.2.2 bouyer
1104 1.6.2.2 bouyer struct mbuf *
1105 1.6.2.2 bouyer eaget(struct seeq8005_softc *sc, int addr, int totlen, struct ifnet *ifp)
1106 1.6.2.2 bouyer {
1107 1.6.2.2 bouyer struct mbuf *top, **mp, *m;
1108 1.6.2.2 bouyer int len;
1109 1.6.2.2 bouyer u_int cp, epkt;
1110 1.6.2.2 bouyer
1111 1.6.2.2 bouyer cp = addr;
1112 1.6.2.2 bouyer epkt = cp + totlen;
1113 1.6.2.2 bouyer
1114 1.6.2.2 bouyer MGETHDR(m, M_DONTWAIT, MT_DATA);
1115 1.6.2.2 bouyer if (m == 0)
1116 1.6.2.2 bouyer return 0;
1117 1.6.2.2 bouyer m->m_pkthdr.rcvif = ifp;
1118 1.6.2.2 bouyer m->m_pkthdr.len = totlen;
1119 1.6.2.2 bouyer m->m_len = MHLEN;
1120 1.6.2.2 bouyer top = 0;
1121 1.6.2.2 bouyer mp = ⊤
1122 1.6.2.2 bouyer
1123 1.6.2.2 bouyer while (totlen > 0) {
1124 1.6.2.2 bouyer if (top) {
1125 1.6.2.2 bouyer MGET(m, M_DONTWAIT, MT_DATA);
1126 1.6.2.2 bouyer if (m == 0) {
1127 1.6.2.2 bouyer m_freem(top);
1128 1.6.2.2 bouyer return 0;
1129 1.6.2.2 bouyer }
1130 1.6.2.2 bouyer m->m_len = MLEN;
1131 1.6.2.2 bouyer }
1132 1.6.2.2 bouyer len = min(totlen, epkt - cp);
1133 1.6.2.2 bouyer if (len >= MINCLSIZE) {
1134 1.6.2.2 bouyer MCLGET(m, M_DONTWAIT);
1135 1.6.2.2 bouyer if (m->m_flags & M_EXT)
1136 1.6.2.2 bouyer m->m_len = len = min(len, MCLBYTES);
1137 1.6.2.2 bouyer else
1138 1.6.2.2 bouyer len = m->m_len;
1139 1.6.2.2 bouyer } else {
1140 1.6.2.2 bouyer /*
1141 1.6.2.2 bouyer * Place initial small packet/header at end of mbuf.
1142 1.6.2.2 bouyer */
1143 1.6.2.2 bouyer if (len < m->m_len) {
1144 1.6.2.2 bouyer if (top == 0 && len + max_linkhdr <= m->m_len)
1145 1.6.2.2 bouyer m->m_data += max_linkhdr;
1146 1.6.2.2 bouyer m->m_len = len;
1147 1.6.2.2 bouyer } else
1148 1.6.2.2 bouyer len = m->m_len;
1149 1.6.2.2 bouyer }
1150 1.6.2.2 bouyer if (top == 0) {
1151 1.6.2.2 bouyer /* Make sure the payload is aligned */
1152 1.6.2.2 bouyer caddr_t newdata = (caddr_t)
1153 1.6.2.2 bouyer ALIGN(m->m_data + sizeof(struct ether_header)) -
1154 1.6.2.2 bouyer sizeof(struct ether_header);
1155 1.6.2.2 bouyer len -= newdata - m->m_data;
1156 1.6.2.2 bouyer m->m_len = len;
1157 1.6.2.2 bouyer m->m_data = newdata;
1158 1.6.2.2 bouyer }
1159 1.6.2.2 bouyer ea_readbuf(sc, mtod(m, u_char *),
1160 1.6.2.2 bouyer cp < EA_BUFFER_SIZE ? cp : cp - EA_RX_BUFFER_SIZE,
1161 1.6.2.2 bouyer len);
1162 1.6.2.2 bouyer cp += len;
1163 1.6.2.2 bouyer *mp = m;
1164 1.6.2.2 bouyer mp = &m->m_next;
1165 1.6.2.2 bouyer totlen -= len;
1166 1.6.2.2 bouyer if (cp == epkt)
1167 1.6.2.2 bouyer cp = addr;
1168 1.6.2.2 bouyer }
1169 1.6.2.2 bouyer
1170 1.6.2.2 bouyer return top;
1171 1.6.2.2 bouyer }
1172 1.6.2.2 bouyer
1173 1.6.2.2 bouyer /*
1174 1.6.2.2 bouyer * Process an ioctl request. Mostly boilerplate.
1175 1.6.2.2 bouyer */
1176 1.6.2.2 bouyer static int
1177 1.6.2.2 bouyer ea_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
1178 1.6.2.2 bouyer {
1179 1.6.2.2 bouyer struct seeq8005_softc *sc = ifp->if_softc;
1180 1.6.2.2 bouyer struct ifaddr *ifa = (struct ifaddr *)data;
1181 1.6.2.2 bouyer /* struct ifreq *ifr = (struct ifreq *)data;*/
1182 1.6.2.2 bouyer int s, error = 0;
1183 1.6.2.2 bouyer
1184 1.6.2.2 bouyer s = splnet();
1185 1.6.2.2 bouyer
1186 1.6.2.2 bouyer switch (cmd) {
1187 1.6.2.2 bouyer
1188 1.6.2.2 bouyer case SIOCSIFADDR:
1189 1.6.2.2 bouyer ifp->if_flags |= IFF_UP;
1190 1.6.2.2 bouyer dprintf(("if_flags=%08x\n", ifp->if_flags));
1191 1.6.2.2 bouyer
1192 1.6.2.2 bouyer switch (ifa->ifa_addr->sa_family) {
1193 1.6.2.2 bouyer #ifdef INET
1194 1.6.2.2 bouyer case AF_INET:
1195 1.6.2.2 bouyer arp_ifinit(ifp, ifa);
1196 1.6.2.2 bouyer dprintf(("Interface ea is coming up (AF_INET)\n"));
1197 1.6.2.2 bouyer ea_init(sc);
1198 1.6.2.2 bouyer break;
1199 1.6.2.2 bouyer #endif
1200 1.6.2.2 bouyer #ifdef NS
1201 1.6.2.2 bouyer /* XXX - This code is probably wrong. */
1202 1.6.2.2 bouyer case AF_NS:
1203 1.6.2.2 bouyer {
1204 1.6.2.2 bouyer register struct ns_addr *ina = &IA_SNS(ifa)->sns_addr;
1205 1.6.2.2 bouyer
1206 1.6.2.2 bouyer if (ns_nullhost(*ina))
1207 1.6.2.2 bouyer ina->x_host =
1208 1.6.2.2 bouyer *(union ns_host *)LLADDR(ifp->if_sadl);
1209 1.6.2.2 bouyer else
1210 1.6.2.2 bouyer bcopy(ina->x_host.c_host,
1211 1.6.2.2 bouyer LLADDR(ifp->if_sadl), ETHER_ADDR_LEN);
1212 1.6.2.2 bouyer /* Set new address. */
1213 1.6.2.2 bouyer dprintf(("Interface ea is coming up (AF_NS)\n"));
1214 1.6.2.2 bouyer ea_init(sc);
1215 1.6.2.2 bouyer break;
1216 1.6.2.2 bouyer }
1217 1.6.2.2 bouyer #endif
1218 1.6.2.2 bouyer default:
1219 1.6.2.2 bouyer dprintf(("Interface ea is coming up (default)\n"));
1220 1.6.2.2 bouyer ea_init(sc);
1221 1.6.2.2 bouyer break;
1222 1.6.2.2 bouyer }
1223 1.6.2.2 bouyer break;
1224 1.6.2.2 bouyer
1225 1.6.2.2 bouyer case SIOCSIFFLAGS:
1226 1.6.2.2 bouyer dprintf(("if_flags=%08x\n", ifp->if_flags));
1227 1.6.2.2 bouyer if ((ifp->if_flags & IFF_UP) == 0 &&
1228 1.6.2.2 bouyer (ifp->if_flags & IFF_RUNNING) != 0) {
1229 1.6.2.2 bouyer /*
1230 1.6.2.2 bouyer * If interface is marked down and it is running, then
1231 1.6.2.2 bouyer * stop it.
1232 1.6.2.2 bouyer */
1233 1.6.2.2 bouyer dprintf(("Interface ea is stopping\n"));
1234 1.6.2.2 bouyer ea_stop(sc);
1235 1.6.2.2 bouyer ifp->if_flags &= ~IFF_RUNNING;
1236 1.6.2.2 bouyer } else if ((ifp->if_flags & IFF_UP) != 0 &&
1237 1.6.2.2 bouyer (ifp->if_flags & IFF_RUNNING) == 0) {
1238 1.6.2.2 bouyer /*
1239 1.6.2.2 bouyer * If interface is marked up and it is stopped, then
1240 1.6.2.2 bouyer * start it.
1241 1.6.2.2 bouyer */
1242 1.6.2.2 bouyer dprintf(("Interface ea is restarting(1)\n"));
1243 1.6.2.2 bouyer ea_init(sc);
1244 1.6.2.2 bouyer } else {
1245 1.6.2.2 bouyer /*
1246 1.6.2.2 bouyer * Some other important flag might have changed, so
1247 1.6.2.2 bouyer * reset.
1248 1.6.2.2 bouyer */
1249 1.6.2.2 bouyer dprintf(("Interface ea is reinitialising\n"));
1250 1.6.2.2 bouyer ea_init(sc);
1251 1.6.2.2 bouyer }
1252 1.6.2.2 bouyer break;
1253 1.6.2.2 bouyer
1254 1.6.2.2 bouyer default:
1255 1.6.2.2 bouyer error = EINVAL;
1256 1.6.2.2 bouyer break;
1257 1.6.2.2 bouyer }
1258 1.6.2.2 bouyer
1259 1.6.2.2 bouyer splx(s);
1260 1.6.2.2 bouyer return error;
1261 1.6.2.2 bouyer }
1262 1.6.2.2 bouyer
1263 1.6.2.2 bouyer /*
1264 1.6.2.2 bouyer * Device timeout routine.
1265 1.6.2.2 bouyer *
1266 1.6.2.2 bouyer * Ok I am not sure exactly how the device timeout should work....
1267 1.6.2.2 bouyer * Currently what will happens is that that the device timeout is only
1268 1.6.2.2 bouyer * set when a packet it received. This indicates we are on an active
1269 1.6.2.2 bouyer * network and thus we should expect more packets. If non arrive in
1270 1.6.2.2 bouyer * in the timeout period then we reinitialise as we may have jammed.
1271 1.6.2.2 bouyer * We zero the timeout at this point so that we don't end up with
1272 1.6.2.2 bouyer * an endless stream of timeouts if the network goes down.
1273 1.6.2.2 bouyer */
1274 1.6.2.2 bouyer
1275 1.6.2.2 bouyer static void
1276 1.6.2.2 bouyer ea_watchdog(struct ifnet *ifp)
1277 1.6.2.2 bouyer {
1278 1.6.2.2 bouyer struct seeq8005_softc *sc = ifp->if_softc;
1279 1.6.2.2 bouyer
1280 1.6.2.2 bouyer log(LOG_ERR, "%s: device timeout\n", sc->sc_dev.dv_xname);
1281 1.6.2.2 bouyer ifp->if_oerrors++;
1282 1.6.2.2 bouyer dprintf(("ea_watchdog: "));
1283 1.6.2.2 bouyer dprintf(("st=%04x\n",
1284 1.6.2.2 bouyer bus_space_read_2(sc->sc_iot, sc->sc_ioh, EA_8005_STATUS)));
1285 1.6.2.2 bouyer
1286 1.6.2.2 bouyer /* Kick the interface */
1287 1.6.2.2 bouyer
1288 1.6.2.2 bouyer ea_init(sc);
1289 1.6.2.2 bouyer
1290 1.6.2.2 bouyer /* ifp->if_timer = EA_TIMEOUT;*/
1291 1.6.2.2 bouyer ifp->if_timer = 0;
1292 1.6.2.2 bouyer }
1293 1.6.2.2 bouyer
1294 1.6.2.2 bouyer /* End of if_ea.c */
1295