if_iy.c revision 1.9.4.4 1 1.9.4.3 is /* $NetBSD: if_iy.c,v 1.9.4.4 1997/02/26 21:39:59 is Exp $ */
2 1.1 is /* #define IYDEBUG */
3 1.1 is /* #define IYMEMDEBUG */
4 1.1 is /*-
5 1.1 is * Copyright (c) 1996 Ignatios Souvatzis.
6 1.1 is * All rights reserved.
7 1.1 is *
8 1.1 is * Redistribution and use in source and binary forms, with or without
9 1.1 is * modification, are permitted provided that the following conditions
10 1.1 is * are met:
11 1.1 is * 1. Redistributions of source code must retain the above copyright
12 1.1 is * notice, this list of conditions and the following disclaimer.
13 1.1 is * 2. Redistributions in binary form must reproduce the above copyright
14 1.1 is * notice, this list of conditions and the following disclaimer in the
15 1.1 is * documentation and/or other materials provided with the distribution.
16 1.1 is * 3. All advertising materials mentioning features or use of this software
17 1.1 is * must display the following acknowledgement:
18 1.1 is * This product contains software developed by Ignatios Souvatzis for
19 1.1 is * the NetBSD project.
20 1.1 is * 4. The names of the author may not be used to endorse or promote products
21 1.1 is * derived from this software without specific prior written permission.
22 1.1 is *
23 1.1 is * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
24 1.1 is * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 is * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 is * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE
27 1.1 is * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 is * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 is * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 is * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 is * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 is * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 is * SUCH DAMAGE.
34 1.1 is */
35 1.1 is
36 1.1 is #include "bpfilter.h"
37 1.1 is
38 1.1 is #include <sys/param.h>
39 1.1 is #include <sys/systm.h>
40 1.1 is #include <sys/mbuf.h>
41 1.1 is #include <sys/buf.h>
42 1.1 is #include <sys/protosw.h>
43 1.1 is #include <sys/socket.h>
44 1.1 is #include <sys/ioctl.h>
45 1.1 is #include <sys/errno.h>
46 1.1 is #include <sys/syslog.h>
47 1.1 is #include <sys/device.h>
48 1.1 is
49 1.1 is #include <net/if.h>
50 1.1 is #include <net/if_types.h>
51 1.1 is #include <net/if_dl.h>
52 1.1 is #include <net/netisr.h>
53 1.1 is #include <net/route.h>
54 1.1 is
55 1.9.4.2 is #include <net/if_ether.h>
56 1.9.4.2 is
57 1.1 is #if NBPFILTER > 0
58 1.1 is #include <net/bpf.h>
59 1.1 is #include <net/bpfdesc.h>
60 1.1 is #endif
61 1.1 is
62 1.1 is #ifdef INET
63 1.1 is #include <netinet/in.h>
64 1.1 is #include <netinet/in_systm.h>
65 1.1 is #include <netinet/in_var.h>
66 1.1 is #include <netinet/ip.h>
67 1.1 is #include <netinet/if_ether.h>
68 1.1 is #endif
69 1.1 is
70 1.1 is #ifdef NS
71 1.1 is #include <netns/ns.h>
72 1.1 is #include <netns/ns_if.h>
73 1.1 is #endif
74 1.1 is
75 1.1 is #include <vm/vm.h>
76 1.1 is
77 1.1 is #include <machine/cpu.h>
78 1.6 is #include <machine/bus.h>
79 1.4 mycroft #include <machine/intr.h>
80 1.1 is
81 1.1 is #include <dev/isa/isareg.h>
82 1.1 is #include <dev/isa/isavar.h>
83 1.1 is #include <dev/ic/i82595reg.h>
84 1.1 is
85 1.9.4.4 is #define ETHER_MIN_LEN (ETHERMIN + sizeof(struct ether_header) + 4)
86 1.9.4.4 is #define ETHER_MAX_LEN (ETHERMTU + sizeof(struct ether_header) + 4)
87 1.1 is
88 1.1 is /*
89 1.1 is * Ethernet status, per interface.
90 1.1 is */
91 1.1 is struct iy_softc {
92 1.1 is struct device sc_dev;
93 1.1 is void *sc_ih;
94 1.1 is
95 1.9 thorpej bus_space_tag_t sc_iot;
96 1.9 thorpej bus_space_handle_t sc_ioh;
97 1.6 is
98 1.9.4.1 is struct ethercom sc_ethercom;
99 1.1 is
100 1.1 is #define MAX_MBS 8
101 1.1 is struct mbuf *mb[MAX_MBS];
102 1.1 is int next_mb, last_mb;
103 1.1 is
104 1.1 is int mappedirq;
105 1.1 is
106 1.1 is int hard_vers;
107 1.1 is
108 1.1 is int promisc;
109 1.1 is
110 1.1 is int sram, tx_size, rx_size;
111 1.1 is
112 1.1 is int tx_start, tx_end, tx_last;
113 1.1 is int rx_start;
114 1.1 is
115 1.1 is #ifdef IYDEBUG
116 1.1 is int sc_debug;
117 1.1 is #endif
118 1.1 is };
119 1.1 is
120 1.2 thorpej void iywatchdog __P((struct ifnet *));
121 1.1 is int iyioctl __P((struct ifnet *, u_long, caddr_t));
122 1.1 is int iyintr __P((void *));
123 1.1 is void iyinit __P((struct iy_softc *));
124 1.1 is void iystop __P((struct iy_softc *));
125 1.1 is void iystart __P((struct ifnet *));
126 1.1 is
127 1.1 is void iy_intr_rx __P((struct iy_softc *));
128 1.1 is void iy_intr_tx __P((struct iy_softc *));
129 1.1 is
130 1.1 is void iyreset __P((struct iy_softc *));
131 1.1 is void iy_readframe __P((struct iy_softc *, int));
132 1.1 is void iy_drop_packet_buffer __P((struct iy_softc *));
133 1.1 is void iy_find_mem_size __P((struct iy_softc *));
134 1.1 is void iyrint __P((struct iy_softc *));
135 1.1 is void iytint __P((struct iy_softc *));
136 1.1 is void iyxmit __P((struct iy_softc *));
137 1.9 thorpej void iyget __P((struct iy_softc *, bus_space_tag_t, bus_space_handle_t, int));
138 1.1 is void iymbuffill __P((void *));
139 1.1 is void iymbufempty __P((void *));
140 1.1 is void iyprobemem __P((struct iy_softc *));
141 1.9.4.2 is static __inline void eepromwritebit __P((bus_space_tag_t, bus_space_handle_t,
142 1.9.4.4 is int));
143 1.9.4.4 is static __inline int eepromreadbit __P((bus_space_tag_t, bus_space_handle_t));
144 1.1 is /*
145 1.1 is * void iymeminit __P((void *, struct iy_softc *));
146 1.1 is * static int iy_mc_setup __P((struct iy_softc *, void *));
147 1.1 is * static void iy_mc_reset __P((struct iy_softc *));
148 1.1 is */
149 1.1 is #ifdef IYDEBUGX
150 1.1 is void print_rbd __P((volatile struct iy_recv_buf_desc *));
151 1.1 is
152 1.1 is int in_ifrint = 0;
153 1.1 is int in_iftint = 0;
154 1.1 is #endif
155 1.1 is
156 1.1 is int iyprobe __P((struct device *, void *, void *));
157 1.1 is void iyattach __P((struct device *, struct device *, void *));
158 1.1 is
159 1.9.4.4 is static u_int16_t eepromread __P((bus_space_tag_t, bus_space_handle_t, int));
160 1.9.4.4 is
161 1.9.4.4 is static int eepromreadall __P((bus_space_tag_t, bus_space_handle_t, u_int16_t *,
162 1.9.4.4 is int));
163 1.1 is
164 1.1 is struct cfattach iy_ca = {
165 1.1 is sizeof(struct iy_softc), iyprobe, iyattach
166 1.1 is };
167 1.1 is
168 1.1 is struct cfdriver iy_cd = {
169 1.1 is NULL, "iy", DV_IFNET
170 1.1 is };
171 1.1 is
172 1.1 is static u_int8_t eepro_irqmap[] = EEPP_INTMAP;
173 1.1 is static u_int8_t eepro_revirqmap[] = EEPP_RINTMAP;
174 1.1 is
175 1.1 is int
176 1.1 is iyprobe(parent, match, aux)
177 1.1 is struct device *parent;
178 1.1 is void *match, *aux;
179 1.1 is {
180 1.1 is struct isa_attach_args *ia = aux;
181 1.1 is u_int16_t eaddr[8];
182 1.6 is
183 1.9 thorpej bus_space_tag_t iot;
184 1.9 thorpej bus_space_handle_t ioh;
185 1.6 is
186 1.1 is u_int8_t c, d;
187 1.1 is
188 1.9 thorpej iot = ia->ia_iot;
189 1.1 is
190 1.9 thorpej if (bus_space_map(iot, ia->ia_iobase, 16, 0, &ioh))
191 1.9.4.4 is return 0;
192 1.1 is
193 1.1 is /* try to find the round robin sig: */
194 1.1 is
195 1.9 thorpej c = bus_space_read_1(iot, ioh, ID_REG);
196 1.9.4.2 is if ((c & ID_REG_MASK) != ID_REG_SIG)
197 1.6 is goto out;
198 1.1 is
199 1.9 thorpej d = bus_space_read_1(iot, ioh, ID_REG);
200 1.9.4.2 is if ((d & ID_REG_MASK) != ID_REG_SIG)
201 1.6 is goto out;
202 1.1 is
203 1.1 is if (((d-c) & R_ROBIN_BITS) != 0x40)
204 1.6 is goto out;
205 1.1 is
206 1.9 thorpej d = bus_space_read_1(iot, ioh, ID_REG);
207 1.9.4.2 is if ((d & ID_REG_MASK) != ID_REG_SIG)
208 1.6 is goto out;
209 1.1 is
210 1.1 is if (((d-c) & R_ROBIN_BITS) != 0x80)
211 1.6 is goto out;
212 1.1 is
213 1.9 thorpej d = bus_space_read_1(iot, ioh, ID_REG);
214 1.9.4.2 is if ((d & ID_REG_MASK) != ID_REG_SIG)
215 1.6 is goto out;
216 1.1 is
217 1.1 is if (((d-c) & R_ROBIN_BITS) != 0xC0)
218 1.6 is goto out;
219 1.1 is
220 1.9 thorpej d = bus_space_read_1(iot, ioh, ID_REG);
221 1.9.4.2 is if ((d & ID_REG_MASK) != ID_REG_SIG)
222 1.6 is goto out;
223 1.1 is
224 1.1 is if (((d-c) & R_ROBIN_BITS) != 0x00)
225 1.6 is goto out;
226 1.1 is
227 1.1 is #ifdef IYDEBUG
228 1.9.4.4 is printf("iyprobe verified working ID reg.\n");
229 1.1 is #endif
230 1.1 is
231 1.9.4.4 is if (eepromreadall(iot, ioh, eaddr, 8))
232 1.9.4.4 is goto out;
233 1.1 is
234 1.1 is if (ia->ia_irq == IRQUNK)
235 1.1 is ia->ia_irq = eepro_irqmap[eaddr[EEPPW1] & EEPP_Int];
236 1.1 is
237 1.1 is if (ia->ia_irq >= sizeof(eepro_revirqmap))
238 1.6 is goto out;
239 1.1 is
240 1.9.4.4 is if (eepro_revirqmap[ia->ia_irq] == 0xff)
241 1.6 is goto out;
242 1.1 is
243 1.1 is /* now lets reset the chip */
244 1.1 is
245 1.9 thorpej bus_space_write_1(iot, ioh, COMMAND_REG, RESET_CMD);
246 1.1 is delay(200);
247 1.1 is
248 1.1 is ia->ia_iosize = 16;
249 1.6 is
250 1.9.4.4 is bus_space_unmap(iot, ioh, 16);
251 1.1 is return 1; /* found */
252 1.6 is out:
253 1.9 thorpej bus_space_unmap(iot, ioh, 16);
254 1.6 is return 0;
255 1.1 is }
256 1.1 is
257 1.1 is void
258 1.1 is iyattach(parent, self, aux)
259 1.1 is struct device *parent, *self;
260 1.1 is void *aux;
261 1.1 is {
262 1.1 is struct iy_softc *sc = (void *)self;
263 1.1 is struct isa_attach_args *ia = aux;
264 1.9.4.1 is struct ifnet *ifp = &sc->sc_ethercom.ec_if;
265 1.9 thorpej bus_space_tag_t iot;
266 1.9 thorpej bus_space_handle_t ioh;
267 1.9.4.4 is u_int16_t eaddr[8];
268 1.9.4.4 is u_int8_t myaddr[ETHER_ADDR_LEN];
269 1.6 is
270 1.9.4.4 is iot = ia->ia_iot;
271 1.9.4.4 is
272 1.9.4.4 is if (bus_space_map(iot, ia->ia_iobase, 16, 0, &ioh))
273 1.9.4.4 is panic("Can't bus_space_map in iyattach");
274 1.9.4.4 is
275 1.9.4.4 is sc->sc_iot = iot;
276 1.9.4.4 is sc->sc_ioh = ioh;
277 1.9.4.4 is
278 1.9.4.4 is sc->mappedirq = eepro_revirqmap[ia->ia_irq];
279 1.9.4.4 is
280 1.9.4.4 is /* now let's reset the chip */
281 1.9.4.4 is
282 1.9.4.4 is bus_space_write_1(iot, ioh, COMMAND_REG, RESET_CMD);
283 1.9.4.4 is delay(200);
284 1.9.4.4 is
285 1.9.4.4 is iyprobemem(sc);
286 1.1 is
287 1.2 thorpej bcopy(sc->sc_dev.dv_xname, ifp->if_xname, IFNAMSIZ);
288 1.2 thorpej ifp->if_softc = sc;
289 1.1 is ifp->if_start = iystart;
290 1.1 is ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_NOTRAILERS;
291 1.1 is /* XXX todo: | IFF_MULTICAST */
292 1.1 is
293 1.1 is ifp->if_ioctl = iyioctl;
294 1.1 is ifp->if_watchdog = iywatchdog;
295 1.1 is
296 1.9.4.4 is (void)eepromreadall(iot, ioh, eaddr, 8);
297 1.9.4.4 is sc->hard_vers = eaddr[EEPW6] & EEPP_BoardRev;
298 1.9.4.4 is
299 1.9.4.4 is #ifdef DIAGNOSTICS
300 1.9.4.4 is if ((eaddr[EEPPEther0] !=
301 1.9.4.4 is eepromread(iot, ioh, EEPPEther0a)) &&
302 1.9.4.4 is (eaddr[EEPPEther1] !=
303 1.9.4.4 is eepromread(iot, ioh, EEPPEther1a)) &&
304 1.9.4.4 is (eaddr[EEPPEther2] !=
305 1.9.4.4 is eepromread(iot, ioh, EEPPEther2a)))
306 1.9.4.4 is
307 1.9.4.4 is printf("EEPROM Ethernet address differs from copy\n");
308 1.9.4.4 is #endif
309 1.9.4.4 is
310 1.9.4.4 is myaddr[1] = eaddr[EEPPEther0] & 0xFF;
311 1.9.4.4 is myaddr[0] = eaddr[EEPPEther0] >> 8;
312 1.9.4.4 is myaddr[3] = eaddr[EEPPEther1] & 0xFF;
313 1.9.4.4 is myaddr[2] = eaddr[EEPPEther1] >> 8;
314 1.9.4.4 is myaddr[5] = eaddr[EEPPEther2] & 0xFF;
315 1.9.4.4 is myaddr[4] = eaddr[EEPPEther2] >> 8;
316 1.9.4.4 is
317 1.1 is /* Attach the interface. */
318 1.1 is if_attach(ifp);
319 1.9.4.4 is ether_ifattach(ifp, myaddr);
320 1.8 christos printf(": address %s, chip rev. %d, %d kB SRAM\n",
321 1.9.4.4 is ether_sprintf(myaddr),
322 1.1 is sc->hard_vers, sc->sram/1024);
323 1.1 is #if NBPFILTER > 0
324 1.9.4.3 is bpfattach(&ifp->if_bpf, ifp, DLT_EN10MB, sizeof(struct ether_header));
325 1.1 is #endif
326 1.1 is
327 1.1 is sc->sc_ih = isa_intr_establish(ia->ia_ic, ia->ia_irq, IST_EDGE,
328 1.1 is IPL_NET, iyintr, sc);
329 1.1 is }
330 1.1 is
331 1.1 is void
332 1.1 is iystop(sc)
333 1.1 is struct iy_softc *sc;
334 1.1 is {
335 1.9 thorpej bus_space_tag_t iot;
336 1.9 thorpej bus_space_handle_t ioh;
337 1.1 is #ifdef IYDEBUG
338 1.1 is u_int p, v;
339 1.1 is #endif
340 1.1 is
341 1.9 thorpej iot = sc->sc_iot;
342 1.6 is ioh = sc->sc_ioh;
343 1.1 is
344 1.9 thorpej bus_space_write_1(iot, ioh, COMMAND_REG, RCV_DISABLE_CMD);
345 1.1 is
346 1.9 thorpej bus_space_write_1(iot, ioh, INT_MASK_REG, ALL_INTS);
347 1.9 thorpej bus_space_write_1(iot, ioh, STATUS_REG, ALL_INTS);
348 1.1 is
349 1.9 thorpej bus_space_write_1(iot, ioh, COMMAND_REG, RESET_CMD);
350 1.1 is delay(200);
351 1.1 is #ifdef IYDEBUG
352 1.8 christos printf("%s: dumping tx chain (st 0x%x end 0x%x last 0x%x)\n",
353 1.1 is sc->sc_dev.dv_xname, sc->tx_start, sc->tx_end, sc->tx_last);
354 1.1 is p = sc->tx_last;
355 1.1 is if (!p)
356 1.1 is p = sc->tx_start;
357 1.1 is do {
358 1.9 thorpej bus_space_write_2(iot, ioh, HOST_ADDR_REG, p);
359 1.9 thorpej v = bus_space_read_2(iot, ioh, MEM_PORT_REG);
360 1.8 christos printf("0x%04x: %b ", p, v, "\020\006Ab\010Dn");
361 1.9 thorpej v = bus_space_read_2(iot, ioh, MEM_PORT_REG);
362 1.8 christos printf("0x%b", v, "\020\6MAX_COL\7HRT_BEAT\010TX_DEF\011UND_RUN\012JERR\013LST_CRS\014LTCOL\016TX_OK\020COLL");
363 1.9 thorpej p = bus_space_read_2(iot, ioh, MEM_PORT_REG);
364 1.8 christos printf(" 0x%04x", p);
365 1.9 thorpej v = bus_space_read_2(iot, ioh, MEM_PORT_REG);
366 1.8 christos printf(" 0x%b\n", v, "\020\020Ch");
367 1.1 is
368 1.1 is } while (v & 0x8000);
369 1.1 is #endif
370 1.1 is sc->tx_start = sc->tx_end = sc->rx_size;
371 1.1 is sc->tx_last = 0;
372 1.9.4.1 is sc->sc_ethercom.ec_if.if_flags &= ~(IFF_RUNNING|IFF_OACTIVE);
373 1.1 is
374 1.1 is iymbufempty((void *)sc);
375 1.1 is }
376 1.1 is
377 1.1 is void
378 1.1 is iyreset(sc)
379 1.1 is struct iy_softc *sc;
380 1.1 is {
381 1.1 is int s;
382 1.1 is s = splimp();
383 1.1 is iystop(sc);
384 1.1 is iyinit(sc);
385 1.1 is splx(s);
386 1.1 is }
387 1.1 is
388 1.1 is void
389 1.1 is iyinit(sc)
390 1.1 is struct iy_softc *sc;
391 1.1 is {
392 1.1 is int i;
393 1.1 is unsigned temp;
394 1.1 is struct ifnet *ifp;
395 1.9 thorpej bus_space_tag_t iot;
396 1.9 thorpej bus_space_handle_t ioh;
397 1.6 is
398 1.9 thorpej iot = sc->sc_iot;
399 1.6 is ioh = sc->sc_ioh;
400 1.1 is
401 1.9.4.1 is ifp = &sc->sc_ethercom.ec_if;
402 1.1 is #ifdef IYDEBUG
403 1.8 christos printf("ifp is %p\n", ifp);
404 1.1 is #endif
405 1.1 is
406 1.9 thorpej bus_space_write_1(iot, ioh, 0, BANK_SEL(2));
407 1.1 is
408 1.9 thorpej temp = bus_space_read_1(iot, ioh, EEPROM_REG);
409 1.1 is if (temp & 0x10)
410 1.9 thorpej bus_space_write_1(iot, ioh, EEPROM_REG, temp & ~0x10);
411 1.1 is
412 1.1 is for (i=0; i<6; ++i) {
413 1.9.4.4 is bus_space_write_1(iot, ioh, I_ADD(i), LLADDR(ifp->if_sadl)[i]);
414 1.1 is }
415 1.1 is
416 1.9 thorpej temp = bus_space_read_1(iot, ioh, REG1);
417 1.9.4.4 is bus_space_write_1(iot, ioh, REG1,
418 1.9.4.4 is temp | XMT_CHAIN_INT | XMT_CHAIN_ERRSTOP | RCV_DISCARD_BAD);
419 1.1 is
420 1.9 thorpej temp = bus_space_read_1(iot, ioh, RECV_MODES_REG);
421 1.9 thorpej bus_space_write_1(iot, ioh, RECV_MODES_REG, temp | MATCH_BRDCST);
422 1.1 is #ifdef IYDEBUG
423 1.8 christos printf("%s: RECV_MODES were %b set to %b\n",
424 1.1 is sc->sc_dev.dv_xname,
425 1.1 is temp, "\020\1PRMSC\2NOBRDST\3SEECRC\4LENGTH\5NOSaIns\6MultiIA",
426 1.1 is temp|MATCH_BRDCST,
427 1.1 is "\020\1PRMSC\2NOBRDST\3SEECRC\4LENGTH\5NOSaIns\6MultiIA");
428 1.1 is #endif
429 1.1 is
430 1.1 is
431 1.9.4.4 is delay(500000); /* for the hardware to test for the connector */
432 1.1 is
433 1.9 thorpej temp = bus_space_read_1(iot, ioh, MEDIA_SELECT);
434 1.1 is #ifdef IYDEBUG
435 1.8 christos printf("%s: media select was 0x%b ", sc->sc_dev.dv_xname,
436 1.1 is temp, "\020\1LnkInDis\2PolCor\3TPE\4JabberDis\5NoAport\6BNC");
437 1.1 is #endif
438 1.5 is temp = (temp & TEST_MODE_MASK);
439 1.6 is
440 1.5 is switch(ifp->if_flags & (IFF_LINK0 | IFF_LINK1)) {
441 1.5 is case IFF_LINK0:
442 1.6 is temp &= ~ (BNC_BIT | TPE_BIT);
443 1.6 is break;
444 1.5 is
445 1.5 is case IFF_LINK1:
446 1.9.4.2 is temp = (temp & ~TPE_BIT) | BNC_BIT;
447 1.6 is break;
448 1.6 is
449 1.5 is case IFF_LINK0|IFF_LINK1:
450 1.9.4.2 is temp = (temp & ~BNC_BIT) | TPE_BIT;
451 1.6 is break;
452 1.5 is default:
453 1.6 is /* nothing; leave as it is */
454 1.5 is }
455 1.5 is
456 1.6 is
457 1.9 thorpej bus_space_write_1(iot, ioh, MEDIA_SELECT, temp);
458 1.1 is #ifdef IYDEBUG
459 1.8 christos printf("changed to 0x%b\n",
460 1.1 is temp, "\020\1LnkInDis\2PolCor\3TPE\4JabberDis\5NoAport\6BNC");
461 1.1 is #endif
462 1.1 is
463 1.9 thorpej bus_space_write_1(iot, ioh, 0, BANK_SEL(1));
464 1.1 is
465 1.9 thorpej temp = bus_space_read_1(iot, ioh, INT_NO_REG);
466 1.9 thorpej bus_space_write_1(iot, ioh, INT_NO_REG, (temp & 0xf8) | sc->mappedirq);
467 1.1 is
468 1.1 is #ifdef IYDEBUG
469 1.8 christos printf("%s: int no was %b\n", sc->sc_dev.dv_xname,
470 1.1 is temp, "\020\4bad_irq\010flash/boot present");
471 1.9 thorpej temp = bus_space_read_1(iot, ioh, INT_NO_REG);
472 1.8 christos printf("%s: int no now 0x%02x\n", sc->sc_dev.dv_xname,
473 1.1 is temp, "\020\4BAD IRQ\010flash/boot present");
474 1.1 is #endif
475 1.1 is
476 1.1 is
477 1.9 thorpej bus_space_write_1(iot, ioh, RCV_LOWER_LIMIT_REG, 0);
478 1.9 thorpej bus_space_write_1(iot, ioh, RCV_UPPER_LIMIT_REG, (sc->rx_size - 2) >> 8);
479 1.9 thorpej bus_space_write_1(iot, ioh, XMT_LOWER_LIMIT_REG, sc->rx_size >> 8);
480 1.9 thorpej bus_space_write_1(iot, ioh, XMT_UPPER_LIMIT_REG, sc->sram >> 8);
481 1.1 is
482 1.9 thorpej temp = bus_space_read_1(iot, ioh, REG1);
483 1.1 is #ifdef IYDEBUG
484 1.8 christos printf("%s: HW access is %b\n", sc->sc_dev.dv_xname,
485 1.1 is temp, "\020\2WORD_WIDTH\010INT_ENABLE");
486 1.1 is #endif
487 1.9 thorpej bus_space_write_1(iot, ioh, REG1, temp | INT_ENABLE); /* XXX what about WORD_WIDTH? */
488 1.1 is
489 1.1 is #ifdef IYDEBUG
490 1.9 thorpej temp = bus_space_read_1(iot, ioh, REG1);
491 1.8 christos printf("%s: HW access is %b\n", sc->sc_dev.dv_xname,
492 1.1 is temp, "\020\2WORD_WIDTH\010INT_ENABLE");
493 1.1 is #endif
494 1.1 is
495 1.9 thorpej bus_space_write_1(iot, ioh, 0, BANK_SEL(0));
496 1.1 is
497 1.9 thorpej bus_space_write_1(iot, ioh, INT_MASK_REG, ALL_INTS & ~(RX_BIT|TX_BIT));
498 1.9 thorpej bus_space_write_1(iot, ioh, STATUS_REG, ALL_INTS); /* clear ints */
499 1.1 is
500 1.9 thorpej bus_space_write_2(iot, ioh, RCV_START_LOW, 0);
501 1.9 thorpej bus_space_write_2(iot, ioh, RCV_STOP_LOW, sc->rx_size - 2);
502 1.1 is sc->rx_start = 0;
503 1.1 is
504 1.9 thorpej bus_space_write_1(iot, ioh, 0, SEL_RESET_CMD);
505 1.9.4.4 is delay(200);
506 1.1 is
507 1.9 thorpej bus_space_write_2(iot, ioh, XMT_ADDR_REG, sc->rx_size);
508 1.1 is
509 1.1 is sc->tx_start = sc->tx_end = sc->rx_size;
510 1.1 is sc->tx_last = 0;
511 1.1 is
512 1.9 thorpej bus_space_write_1(iot, ioh, 0, RCV_ENABLE_CMD);
513 1.1 is
514 1.1 is ifp->if_flags |= IFF_RUNNING;
515 1.1 is ifp->if_flags &= ~IFF_OACTIVE;
516 1.1 is }
517 1.1 is
518 1.1 is void
519 1.1 is iystart(ifp)
520 1.1 is struct ifnet *ifp;
521 1.1 is {
522 1.1 is struct iy_softc *sc;
523 1.6 is
524 1.1 is
525 1.1 is struct mbuf *m0, *m;
526 1.1 is u_int len, pad, last, end;
527 1.1 is u_int llen, residual;
528 1.1 is int avail;
529 1.1 is caddr_t data;
530 1.1 is u_int16_t resval, stat;
531 1.9 thorpej bus_space_tag_t iot;
532 1.9 thorpej bus_space_handle_t ioh;
533 1.1 is
534 1.1 is #ifdef IYDEBUG
535 1.8 christos printf("iystart called\n");
536 1.1 is #endif
537 1.1 is if ((ifp->if_flags & (IFF_RUNNING | IFF_OACTIVE)) != IFF_RUNNING)
538 1.1 is return;
539 1.1 is
540 1.2 thorpej sc = ifp->if_softc;
541 1.9 thorpej iot = sc->sc_iot;
542 1.6 is ioh = sc->sc_ioh;
543 1.1 is
544 1.1 is while ((m0 = ifp->if_snd.ifq_head) != NULL) {
545 1.1 is #ifdef IYDEBUG
546 1.8 christos printf("%s: trying to write another packet to the hardware\n",
547 1.1 is sc->sc_dev.dv_xname);
548 1.1 is #endif
549 1.1 is
550 1.1 is /* We need to use m->m_pkthdr.len, so require the header */
551 1.1 is if ((m0->m_flags & M_PKTHDR) == 0)
552 1.1 is panic("iystart: no header mbuf");
553 1.1 is
554 1.1 is len = m0->m_pkthdr.len;
555 1.1 is pad = len & 1;
556 1.1 is
557 1.1 is #ifdef IYDEBUG
558 1.8 christos printf("%s: length is %d.\n", sc->sc_dev.dv_xname, len);
559 1.1 is #endif
560 1.1 is if (len < ETHER_MIN_LEN) {
561 1.1 is pad = ETHER_MIN_LEN - len;
562 1.1 is }
563 1.1 is
564 1.1 is if (len + pad > ETHER_MAX_LEN) {
565 1.1 is /* packet is obviously too large: toss it */
566 1.1 is ++ifp->if_oerrors;
567 1.1 is IF_DEQUEUE(&ifp->if_snd, m0);
568 1.1 is m_freem(m0);
569 1.1 is continue;
570 1.1 is }
571 1.1 is
572 1.1 is #if NBPFILTER > 0
573 1.1 is if (ifp->if_bpf)
574 1.1 is bpf_mtap(ifp->if_bpf, m0);
575 1.1 is #endif
576 1.1 is
577 1.1 is avail = sc->tx_start - sc->tx_end;
578 1.1 is if (avail <= 0)
579 1.1 is avail += sc->tx_size;
580 1.1 is
581 1.1 is #ifdef IYDEBUG
582 1.8 christos printf("%s: avail is %d.\n", sc->sc_dev.dv_xname, avail);
583 1.1 is #endif
584 1.1 is /*
585 1.1 is * we MUST RUN at splnet here ---
586 1.1 is * XXX todo: or even turn off the boards ints ??? hm...
587 1.1 is */
588 1.1 is
589 1.1 is /* See if there is room to put another packet in the buffer. */
590 1.1 is
591 1.1 is if ((len+pad+2*I595_XMT_HDRLEN) > avail) {
592 1.8 christos printf("%s: len = %d, avail = %d, setting OACTIVE\n",
593 1.1 is sc->sc_dev.dv_xname, len, avail);
594 1.1 is ifp->if_flags |= IFF_OACTIVE;
595 1.1 is return;
596 1.1 is }
597 1.1 is
598 1.1 is /* we know it fits in the hardware now, so dequeue it */
599 1.1 is IF_DEQUEUE(&ifp->if_snd, m0);
600 1.1 is
601 1.1 is last = sc->tx_end;
602 1.1 is end = last + pad + len + I595_XMT_HDRLEN;
603 1.1 is
604 1.1 is if (end >= sc->sram) {
605 1.1 is if ((sc->sram - last) <= I595_XMT_HDRLEN) {
606 1.1 is /* keep header in one piece */
607 1.1 is last = sc->rx_size;
608 1.1 is end = last + pad + len + I595_XMT_HDRLEN;
609 1.1 is } else
610 1.1 is end -= sc->tx_size;
611 1.1 is }
612 1.1 is
613 1.9 thorpej bus_space_write_2(iot, ioh, HOST_ADDR_REG, last);
614 1.9 thorpej bus_space_write_2(iot, ioh, MEM_PORT_REG, XMT_CMD);
615 1.9 thorpej bus_space_write_2(iot, ioh, MEM_PORT_REG, 0);
616 1.9 thorpej bus_space_write_2(iot, ioh, MEM_PORT_REG, 0);
617 1.9 thorpej bus_space_write_2(iot, ioh, MEM_PORT_REG, len + pad);
618 1.1 is
619 1.1 is residual = resval = 0;
620 1.1 is
621 1.1 is while ((m = m0)!=0) {
622 1.1 is data = mtod(m, caddr_t);
623 1.1 is llen = m->m_len;
624 1.1 is if (residual) {
625 1.1 is #ifdef IYDEBUG
626 1.8 christos printf("%s: merging residual with next mbuf.\n",
627 1.1 is sc->sc_dev.dv_xname);
628 1.1 is #endif
629 1.1 is resval |= *data << 8;
630 1.9 thorpej bus_space_write_2(iot, ioh, MEM_PORT_REG, resval);
631 1.1 is --llen;
632 1.1 is ++data;
633 1.1 is }
634 1.1 is if (llen > 1)
635 1.9 thorpej bus_space_write_multi_2(iot, ioh, MEM_PORT_REG,
636 1.6 is data, llen>>1);
637 1.1 is residual = llen & 1;
638 1.1 is if (residual) {
639 1.1 is resval = *(data + llen - 1);
640 1.1 is #ifdef IYDEBUG
641 1.8 christos printf("%s: got odd mbuf to send.\n",
642 1.1 is sc->sc_dev.dv_xname);
643 1.1 is #endif
644 1.1 is }
645 1.1 is
646 1.1 is MFREE(m, m0);
647 1.1 is }
648 1.1 is
649 1.1 is if (residual)
650 1.9 thorpej bus_space_write_2(iot, ioh, MEM_PORT_REG, resval);
651 1.1 is
652 1.1 is pad >>= 1;
653 1.1 is while (pad-- > 0)
654 1.9 thorpej bus_space_write_2(iot, ioh, MEM_PORT_REG, 0);
655 1.1 is
656 1.1 is #ifdef IYDEBUG
657 1.8 christos printf("%s: new last = 0x%x, end = 0x%x.\n",
658 1.1 is sc->sc_dev.dv_xname, last, end);
659 1.8 christos printf("%s: old start = 0x%x, end = 0x%x, last = 0x%x\n",
660 1.1 is sc->sc_dev.dv_xname, sc->tx_start, sc->tx_end, sc->tx_last);
661 1.1 is #endif
662 1.1 is
663 1.1 is if (sc->tx_start != sc->tx_end) {
664 1.9 thorpej bus_space_write_2(iot, ioh, HOST_ADDR_REG, sc->tx_last + XMT_COUNT);
665 1.9 thorpej stat = bus_space_read_2(iot, ioh, MEM_PORT_REG);
666 1.1 is
667 1.9 thorpej bus_space_write_2(iot, ioh, HOST_ADDR_REG, sc->tx_last + XMT_CHAIN);
668 1.9 thorpej bus_space_write_2(iot, ioh, MEM_PORT_REG, last);
669 1.9 thorpej bus_space_write_2(iot, ioh, MEM_PORT_REG, stat | CHAIN);
670 1.1 is #ifdef IYDEBUG
671 1.8 christos printf("%s: setting 0x%x to 0x%x\n",
672 1.1 is sc->sc_dev.dv_xname, sc->tx_last + XMT_COUNT,
673 1.1 is stat | CHAIN);
674 1.1 is #endif
675 1.1 is }
676 1.9 thorpej stat = bus_space_read_2(iot, ioh, MEM_PORT_REG); /* dummy read */
677 1.1 is
678 1.1 is /* XXX todo: enable ints here if disabled */
679 1.1 is
680 1.1 is ++ifp->if_opackets;
681 1.1 is
682 1.1 is if (sc->tx_start == sc->tx_end) {
683 1.9 thorpej bus_space_write_2(iot, ioh, XMT_ADDR_REG, last);
684 1.9 thorpej bus_space_write_1(iot, ioh, 0, XMT_CMD);
685 1.1 is sc->tx_start = last;
686 1.1 is #ifdef IYDEBUG
687 1.8 christos printf("%s: writing 0x%x to XAR and giving XCMD\n",
688 1.1 is sc->sc_dev.dv_xname, last);
689 1.1 is #endif
690 1.1 is } else {
691 1.9 thorpej bus_space_write_1(iot, ioh, 0, RESUME_XMT_CMD);
692 1.1 is #ifdef IYDEBUG
693 1.8 christos printf("%s: giving RESUME_XCMD\n",
694 1.1 is sc->sc_dev.dv_xname);
695 1.1 is #endif
696 1.1 is }
697 1.1 is sc->tx_last = last;
698 1.1 is sc->tx_end = end;
699 1.1 is }
700 1.1 is }
701 1.1 is
702 1.1 is
703 1.1 is static __inline void
704 1.9.4.4 is eepromwritebit(iot, ioh, what)
705 1.9 thorpej bus_space_tag_t iot;
706 1.9 thorpej bus_space_handle_t ioh;
707 1.6 is int what;
708 1.1 is {
709 1.9.4.4 is bus_space_write_1(iot, ioh, EEPROM_REG, what);
710 1.1 is delay(1);
711 1.9.4.4 is bus_space_write_1(iot, ioh, EEPROM_REG, what|EESK);
712 1.1 is delay(1);
713 1.9.4.4 is bus_space_write_1(iot, ioh, EEPROM_REG, what);
714 1.1 is delay(1);
715 1.1 is }
716 1.1 is
717 1.1 is static __inline int
718 1.9.4.4 is eepromreadbit(iot, ioh)
719 1.9 thorpej bus_space_tag_t iot;
720 1.9 thorpej bus_space_handle_t ioh;
721 1.1 is {
722 1.1 is int b;
723 1.1 is
724 1.9.4.4 is bus_space_write_1(iot, ioh, EEPROM_REG, EECS|EESK);
725 1.1 is delay(1);
726 1.9.4.4 is b = bus_space_read_1(iot, ioh, EEPROM_REG);
727 1.9.4.4 is bus_space_write_1(iot, ioh, EEPROM_REG, EECS);
728 1.1 is delay(1);
729 1.1 is
730 1.1 is return ((b & EEDO) != 0);
731 1.1 is }
732 1.1 is
733 1.1 is static u_int16_t
734 1.9.4.4 is eepromread(iot, ioh, offset)
735 1.9 thorpej bus_space_tag_t iot;
736 1.9 thorpej bus_space_handle_t ioh;
737 1.6 is int offset;
738 1.1 is {
739 1.1 is volatile int i;
740 1.1 is volatile int j;
741 1.1 is volatile u_int16_t readval;
742 1.1 is
743 1.9 thorpej bus_space_write_1(iot, ioh, 0, BANK_SEL(2));
744 1.1 is delay(1);
745 1.9.4.4 is bus_space_write_1(iot, ioh, EEPROM_REG, EECS); /* XXXX??? */
746 1.1 is delay(1);
747 1.1 is
748 1.9.4.4 is eepromwritebit(iot, ioh, EECS|EEDI);
749 1.9.4.4 is eepromwritebit(iot, ioh, EECS|EEDI);
750 1.9.4.4 is eepromwritebit(iot, ioh, EECS);
751 1.1 is
752 1.1 is for (j=5; j>=0; --j) {
753 1.1 is if ((offset>>j) & 1)
754 1.9.4.4 is eepromwritebit(iot, ioh, EECS|EEDI);
755 1.1 is else
756 1.9.4.4 is eepromwritebit(iot, ioh, EECS);
757 1.1 is }
758 1.1 is
759 1.1 is for (readval=0, i=0; i<16; ++i) {
760 1.1 is readval<<=1;
761 1.9.4.4 is readval |= eepromreadbit(iot, ioh);
762 1.1 is }
763 1.1 is
764 1.9.4.4 is bus_space_write_1(iot, ioh, EEPROM_REG, 0|EESK);
765 1.1 is delay(1);
766 1.9.4.4 is bus_space_write_1(iot, ioh, EEPROM_REG, 0);
767 1.1 is
768 1.9.4.4 is bus_space_write_1(iot, ioh, COMMAND_REG, BANK_SEL(0));
769 1.1 is
770 1.1 is return readval;
771 1.1 is }
772 1.1 is
773 1.1 is /*
774 1.1 is * Device timeout/watchdog routine. Entered if the device neglects to generate
775 1.1 is * an interrupt after a transmit has been started on it.
776 1.1 is */
777 1.1 is void
778 1.2 thorpej iywatchdog(ifp)
779 1.3 is struct ifnet *ifp;
780 1.1 is {
781 1.2 thorpej struct iy_softc *sc = ifp->if_softc;
782 1.1 is
783 1.1 is log(LOG_ERR, "%s: device timeout\n", sc->sc_dev.dv_xname);
784 1.9.4.1 is ++sc->sc_ethercom.ec_if.if_oerrors;
785 1.1 is iyreset(sc);
786 1.1 is }
787 1.1 is
788 1.1 is /*
789 1.1 is * What to do upon receipt of an interrupt.
790 1.1 is */
791 1.1 is int
792 1.1 is iyintr(arg)
793 1.1 is void *arg;
794 1.1 is {
795 1.1 is struct iy_softc *sc = arg;
796 1.9 thorpej bus_space_tag_t iot;
797 1.9 thorpej bus_space_handle_t ioh;
798 1.6 is
799 1.1 is register u_short status;
800 1.1 is
801 1.9 thorpej iot = sc->sc_iot;
802 1.6 is ioh = sc->sc_ioh;
803 1.6 is
804 1.9 thorpej status = bus_space_read_1(iot, ioh, STATUS_REG);
805 1.1 is #ifdef IYDEBUG
806 1.1 is if (status & ALL_INTS) {
807 1.8 christos printf("%s: got interupt %b", sc->sc_dev.dv_xname, status,
808 1.1 is "\020\1RX_STP\2RX\3TX\4EXEC");
809 1.1 is if (status & EXEC_INT)
810 1.9 thorpej printf(" event %b\n", bus_space_read_1(iot, ioh, 0),
811 1.1 is "\020\6ABORT");
812 1.1 is else
813 1.8 christos printf("\n");
814 1.1 is }
815 1.1 is #endif
816 1.9.4.2 is if (((status & (RX_INT | TX_INT)) == 0))
817 1.1 is return 0;
818 1.1 is
819 1.1 is if (status & RX_INT) {
820 1.1 is iy_intr_rx(sc);
821 1.9 thorpej bus_space_write_1(iot, ioh, STATUS_REG, RX_INT);
822 1.1 is } else if (status & TX_INT) {
823 1.1 is iy_intr_tx(sc);
824 1.9 thorpej bus_space_write_1(iot, ioh, STATUS_REG, TX_INT);
825 1.1 is }
826 1.1 is return 1;
827 1.1 is }
828 1.1 is
829 1.1 is void
830 1.9 thorpej iyget(sc, iot, ioh, rxlen)
831 1.6 is struct iy_softc *sc;
832 1.9 thorpej bus_space_tag_t iot;
833 1.9 thorpej bus_space_handle_t ioh;
834 1.6 is int rxlen;
835 1.1 is {
836 1.1 is struct mbuf *m, *top, **mp;
837 1.1 is struct ether_header *eh;
838 1.1 is struct ifnet *ifp;
839 1.1 is int len;
840 1.1 is
841 1.9.4.1 is ifp = &sc->sc_ethercom.ec_if;
842 1.1 is
843 1.1 is m = sc->mb[sc->next_mb];
844 1.1 is sc->mb[sc->next_mb] = 0;
845 1.1 is if (m == 0) {
846 1.1 is MGETHDR(m, M_DONTWAIT, MT_DATA);
847 1.1 is if (m == 0)
848 1.1 is goto dropped;
849 1.1 is } else {
850 1.1 is if (sc->last_mb == sc->next_mb)
851 1.1 is timeout(iymbuffill, sc, 1);
852 1.1 is sc->next_mb = (sc->next_mb + 1) % MAX_MBS;
853 1.1 is m->m_data = m->m_pktdat;
854 1.1 is m->m_flags = M_PKTHDR;
855 1.1 is }
856 1.1 is m->m_pkthdr.rcvif = ifp;
857 1.1 is m->m_pkthdr.len = rxlen;
858 1.1 is len = MHLEN;
859 1.1 is top = 0;
860 1.1 is mp = ⊤
861 1.1 is
862 1.1 is while (rxlen > 0) {
863 1.1 is if (top) {
864 1.1 is m = sc->mb[sc->next_mb];
865 1.1 is sc->mb[sc->next_mb] = 0;
866 1.1 is if (m == 0) {
867 1.1 is MGET(m, M_DONTWAIT, MT_DATA);
868 1.1 is if (m == 0) {
869 1.1 is m_freem(top);
870 1.1 is goto dropped;
871 1.1 is }
872 1.1 is } else {
873 1.1 is sc->next_mb = (sc->next_mb + 1) % MAX_MBS;
874 1.1 is }
875 1.1 is len = MLEN;
876 1.1 is }
877 1.1 is if (rxlen >= MINCLSIZE) {
878 1.1 is MCLGET(m, M_DONTWAIT);
879 1.1 is if (m->m_flags & M_EXT)
880 1.1 is len = MCLBYTES;
881 1.1 is }
882 1.1 is len = min(rxlen, len);
883 1.1 is if (len > 1) {
884 1.1 is len &= ~1;
885 1.6 is
886 1.9 thorpej bus_space_read_multi_2(iot, ioh, MEM_PORT_REG,
887 1.6 is mtod(m, caddr_t), len/2);
888 1.1 is } else {
889 1.1 is #ifdef IYDEBUG
890 1.8 christos printf("%s: received odd mbuf\n", sc->sc_dev.dv_xname);
891 1.1 is #endif
892 1.9 thorpej *(mtod(m, caddr_t)) = bus_space_read_2(iot, ioh,
893 1.6 is MEM_PORT_REG);
894 1.1 is }
895 1.1 is m->m_len = len;
896 1.1 is rxlen -= len;
897 1.1 is *mp = m;
898 1.1 is mp = &m->m_next;
899 1.1 is }
900 1.1 is /* XXX receive the top here */
901 1.1 is ++ifp->if_ipackets;
902 1.1 is
903 1.1 is eh = mtod(top, struct ether_header *);
904 1.1 is
905 1.1 is #if NBPFILTER > 0
906 1.1 is if (ifp->if_bpf) {
907 1.1 is bpf_mtap(ifp->if_bpf, top);
908 1.1 is if ((ifp->if_flags & IFF_PROMISC) &&
909 1.1 is (eh->ether_dhost[0] & 1) == 0 &&
910 1.9.4.1 is bcmp(eh->ether_dhost,
911 1.9.4.1 is LLADDR(sc->sc_ethercom.ec_if.if_sadl),
912 1.9.4.1 is sizeof(eh->ether_dhost)) != 0) {
913 1.9.4.1 is
914 1.1 is m_freem(top);
915 1.1 is return;
916 1.1 is }
917 1.1 is }
918 1.1 is #endif
919 1.1 is m_adj(top, sizeof(struct ether_header));
920 1.1 is ether_input(ifp, eh, top);
921 1.1 is return;
922 1.1 is
923 1.1 is dropped:
924 1.1 is ++ifp->if_ierrors;
925 1.1 is return;
926 1.1 is }
927 1.1 is void
928 1.1 is iy_intr_rx(sc)
929 1.1 is struct iy_softc *sc;
930 1.1 is {
931 1.1 is struct ifnet *ifp;
932 1.9 thorpej bus_space_tag_t iot;
933 1.9 thorpej bus_space_handle_t ioh;
934 1.6 is
935 1.1 is u_int rxadrs, rxevnt, rxstatus, rxnext, rxlen;
936 1.1 is
937 1.9 thorpej iot = sc->sc_iot;
938 1.6 is ioh = sc->sc_ioh;
939 1.9.4.1 is ifp = &sc->sc_ethercom.ec_if;
940 1.1 is
941 1.1 is rxadrs = sc->rx_start;
942 1.9 thorpej bus_space_write_2(iot, ioh, HOST_ADDR_REG, rxadrs);
943 1.9 thorpej rxevnt = bus_space_read_2(iot, ioh, MEM_PORT_REG);
944 1.1 is rxnext = 0;
945 1.1 is
946 1.1 is while (rxevnt == RCV_DONE) {
947 1.9 thorpej rxstatus = bus_space_read_2(iot, ioh, MEM_PORT_REG);
948 1.9 thorpej rxnext = bus_space_read_2(iot, ioh, MEM_PORT_REG);
949 1.9 thorpej rxlen = bus_space_read_2(iot, ioh, MEM_PORT_REG);
950 1.1 is #ifdef IYDEBUG
951 1.8 christos printf("%s: pck at 0x%04x stat %b next 0x%x len 0x%x\n",
952 1.1 is sc->sc_dev.dv_xname, rxadrs, rxstatus,
953 1.1 is "\020\1RCLD\2IA_MCH\010SHORT\011OVRN\013ALGERR"
954 1.1 is "\014CRCERR\015LENERR\016RCVOK\020TYP",
955 1.1 is rxnext, rxlen);
956 1.1 is #endif
957 1.9 thorpej iyget(sc, iot, ioh, rxlen);
958 1.1 is
959 1.1 is /* move stop address */
960 1.9 thorpej bus_space_write_2(iot, ioh, RCV_STOP_LOW,
961 1.1 is rxnext == 0 ? sc->rx_size - 2 : rxnext - 2);
962 1.1 is
963 1.9 thorpej bus_space_write_2(iot, ioh, HOST_ADDR_REG, rxnext);
964 1.1 is rxadrs = rxnext;
965 1.9 thorpej rxevnt = bus_space_read_2(iot, ioh, MEM_PORT_REG);
966 1.1 is }
967 1.1 is sc->rx_start = rxnext;
968 1.1 is }
969 1.1 is
970 1.1 is void
971 1.1 is iy_intr_tx(sc)
972 1.1 is struct iy_softc *sc;
973 1.1 is {
974 1.9 thorpej bus_space_tag_t iot;
975 1.9 thorpej bus_space_handle_t ioh;
976 1.1 is struct ifnet *ifp;
977 1.1 is u_int txstatus, txstat2, txlen, txnext;
978 1.1 is
979 1.9.4.1 is ifp = &sc->sc_ethercom.ec_if;
980 1.9 thorpej iot = sc->sc_iot;
981 1.6 is ioh = sc->sc_ioh;
982 1.6 is
983 1.1 is while (sc->tx_start != sc->tx_end) {
984 1.9 thorpej bus_space_write_2(iot, ioh, HOST_ADDR_REG, sc->tx_start);
985 1.9 thorpej txstatus = bus_space_read_2(iot, ioh, MEM_PORT_REG);
986 1.1 is if ((txstatus & (TX_DONE|CMD_MASK)) != (TX_DONE|XMT_CMD))
987 1.1 is break;
988 1.1 is
989 1.9 thorpej txstat2 = bus_space_read_2(iot, ioh, MEM_PORT_REG);
990 1.9 thorpej txnext = bus_space_read_2(iot, ioh, MEM_PORT_REG);
991 1.9 thorpej txlen = bus_space_read_2(iot, ioh, MEM_PORT_REG);
992 1.1 is #ifdef IYDEBUG
993 1.8 christos printf("txstat 0x%x stat2 0x%b next 0x%x len 0x%x\n",
994 1.1 is txstatus, txstat2, "\020\6MAX_COL\7HRT_BEAT\010TX_DEF"
995 1.1 is "\011UND_RUN\012JERR\013LST_CRS\014LTCOL\016TX_OK\020COLL",
996 1.1 is txnext, txlen);
997 1.1 is #endif
998 1.1 is if (txlen & CHAIN)
999 1.1 is sc->tx_start = txnext;
1000 1.1 is else
1001 1.1 is sc->tx_start = sc->tx_end;
1002 1.1 is ifp->if_flags &= ~IFF_OACTIVE;
1003 1.1 is
1004 1.1 is if ((txstat2 & 0x2000) == 0)
1005 1.1 is ++ifp->if_oerrors;
1006 1.1 is if (txstat2 & 0x000f)
1007 1.1 is ifp->if_oerrors += txstat2 & 0x000f;
1008 1.1 is }
1009 1.1 is ifp->if_flags &= ~IFF_OACTIVE;
1010 1.1 is }
1011 1.1 is
1012 1.1 is #if 0
1013 1.1 is /*
1014 1.1 is * Compare two Ether/802 addresses for equality, inlined and unrolled for
1015 1.1 is * speed. I'd love to have an inline assembler version of this...
1016 1.1 is */
1017 1.1 is static inline int
1018 1.1 is ether_equal(one, two)
1019 1.1 is u_char *one, *two;
1020 1.1 is {
1021 1.1 is
1022 1.1 is if (one[0] != two[0] || one[1] != two[1] || one[2] != two[2] ||
1023 1.1 is one[3] != two[3] || one[4] != two[4] || one[5] != two[5])
1024 1.1 is return 0;
1025 1.1 is return 1;
1026 1.1 is }
1027 1.1 is
1028 1.1 is /*
1029 1.1 is * Check for a valid address. to_bpf is filled in with one of the following:
1030 1.1 is * 0 -> BPF doesn't get this packet
1031 1.1 is * 1 -> BPF does get this packet
1032 1.1 is * 2 -> BPF does get this packet, but we don't
1033 1.1 is * Return value is true if the packet is for us, and false otherwise.
1034 1.1 is *
1035 1.1 is * This routine is a mess, but it's also critical that it be as fast
1036 1.1 is * as possible. It could be made cleaner if we can assume that the
1037 1.1 is * only client which will fiddle with IFF_PROMISC is BPF. This is
1038 1.1 is * probably a good assumption, but we do not make it here. (Yet.)
1039 1.1 is */
1040 1.1 is static inline int
1041 1.1 is check_eh(sc, eh, to_bpf)
1042 1.1 is struct iy_softc *sc;
1043 1.1 is struct ether_header *eh;
1044 1.1 is int *to_bpf;
1045 1.1 is {
1046 1.1 is int i;
1047 1.1 is
1048 1.1 is switch (sc->promisc) {
1049 1.1 is case IFF_ALLMULTI:
1050 1.1 is /*
1051 1.1 is * Receiving all multicasts, but no unicasts except those
1052 1.1 is * destined for us.
1053 1.1 is */
1054 1.1 is #if NBPFILTER > 0
1055 1.9.4.1 is *to_bpf = (sc->sc_ethercom.ec_if.iy_bpf != 0); /* BPF gets this packet if anybody cares */
1056 1.1 is #endif
1057 1.1 is if (eh->ether_dhost[0] & 1)
1058 1.1 is return 1;
1059 1.9.4.1 is if (ether_equal(eh->ether_dhost,
1060 1.9.4.1 is LLADDR(sc->sc_ethercom.ec_if.if_sadl)))
1061 1.1 is return 1;
1062 1.1 is return 0;
1063 1.1 is
1064 1.1 is case IFF_PROMISC:
1065 1.1 is /*
1066 1.1 is * Receiving all packets. These need to be passed on to BPF.
1067 1.1 is */
1068 1.1 is #if NBPFILTER > 0
1069 1.9.4.1 is *to_bpf = (sc->sc_ethercom.ec_if.iy_bpf != 0);
1070 1.1 is #endif
1071 1.1 is /* If for us, accept and hand up to BPF */
1072 1.9.4.1 is if (ether_equal(eh->ether_dhost, LLADDR(sc->sc_ethercom.ec_if.if_sadl)))
1073 1.1 is return 1;
1074 1.1 is
1075 1.1 is #if NBPFILTER > 0
1076 1.1 is if (*to_bpf)
1077 1.1 is *to_bpf = 2; /* we don't need to see it */
1078 1.1 is #endif
1079 1.1 is
1080 1.1 is /*
1081 1.1 is * Not a multicast, so BPF wants to see it but we don't.
1082 1.1 is */
1083 1.1 is if (!(eh->ether_dhost[0] & 1))
1084 1.1 is return 1;
1085 1.1 is
1086 1.1 is /*
1087 1.1 is * If it's one of our multicast groups, accept it and pass it
1088 1.1 is * up.
1089 1.1 is */
1090 1.1 is for (i = 0; i < sc->mcast_count; i++) {
1091 1.1 is if (ether_equal(eh->ether_dhost, (u_char *)&sc->mcast_addrs[i])) {
1092 1.1 is #if NBPFILTER > 0
1093 1.1 is if (*to_bpf)
1094 1.1 is *to_bpf = 1;
1095 1.1 is #endif
1096 1.1 is return 1;
1097 1.1 is }
1098 1.1 is }
1099 1.1 is return 1;
1100 1.1 is
1101 1.1 is case IFF_ALLMULTI | IFF_PROMISC:
1102 1.1 is /*
1103 1.1 is * Acting as a multicast router, and BPF running at the same
1104 1.1 is * time. Whew! (Hope this is a fast machine...)
1105 1.1 is */
1106 1.1 is #if NBPFILTER > 0
1107 1.9.4.1 is *to_bpf = (sc->sc_ethercom.ec_if.iy_bpf != 0);
1108 1.1 is #endif
1109 1.1 is /* We want to see multicasts. */
1110 1.1 is if (eh->ether_dhost[0] & 1)
1111 1.1 is return 1;
1112 1.1 is
1113 1.1 is /* We want to see our own packets */
1114 1.9.4.1 is if (ether_equal(eh->ether_dhost, LLADDR(sc->sc_ethercom.ec_if.if_sadl)))
1115 1.1 is return 1;
1116 1.1 is
1117 1.1 is /* Anything else goes to BPF but nothing else. */
1118 1.1 is #if NBPFILTER > 0
1119 1.1 is if (*to_bpf)
1120 1.1 is *to_bpf = 2;
1121 1.1 is #endif
1122 1.1 is return 1;
1123 1.1 is
1124 1.1 is case 0:
1125 1.1 is /*
1126 1.1 is * Only accept unicast packets destined for us, or multicasts
1127 1.1 is * for groups that we belong to. For now, we assume that the
1128 1.1 is * '586 will only return packets that we asked it for. This
1129 1.1 is * isn't strictly true (it uses hashing for the multicast
1130 1.1 is * filter), but it will do in this case, and we want to get out
1131 1.1 is * of here as quickly as possible.
1132 1.1 is */
1133 1.1 is #if NBPFILTER > 0
1134 1.9.4.1 is *to_bpf = (sc->sc_ethercom.ec_if.iy_bpf != 0);
1135 1.1 is #endif
1136 1.1 is return 1;
1137 1.1 is }
1138 1.1 is
1139 1.1 is #ifdef DIAGNOSTIC
1140 1.1 is panic("check_eh: impossible");
1141 1.1 is #endif
1142 1.1 is }
1143 1.1 is #endif
1144 1.1 is
1145 1.1 is int
1146 1.1 is iyioctl(ifp, cmd, data)
1147 1.1 is register struct ifnet *ifp;
1148 1.1 is u_long cmd;
1149 1.1 is caddr_t data;
1150 1.1 is {
1151 1.1 is struct iy_softc *sc;
1152 1.1 is struct ifaddr *ifa;
1153 1.1 is struct ifreq *ifr;
1154 1.1 is int s, error = 0;
1155 1.1 is
1156 1.2 thorpej sc = ifp->if_softc;
1157 1.1 is ifa = (struct ifaddr *)data;
1158 1.1 is ifr = (struct ifreq *)data;
1159 1.1 is
1160 1.1 is #ifdef IYDEBUG
1161 1.8 christos printf("iyioctl called with ifp 0x%p (%s) cmd 0x%x data 0x%p\n",
1162 1.2 thorpej ifp, ifp->if_xname, cmd, data);
1163 1.1 is #endif
1164 1.1 is
1165 1.1 is s = splimp();
1166 1.1 is
1167 1.1 is switch (cmd) {
1168 1.1 is
1169 1.1 is case SIOCSIFADDR:
1170 1.1 is ifp->if_flags |= IFF_UP;
1171 1.1 is
1172 1.1 is switch (ifa->ifa_addr->sa_family) {
1173 1.1 is #ifdef INET
1174 1.1 is case AF_INET:
1175 1.1 is iyinit(sc);
1176 1.9.4.1 is arp_ifinit(ifp, ifa);
1177 1.1 is break;
1178 1.1 is #endif
1179 1.1 is #ifdef NS
1180 1.1 is /* XXX - This code is probably wrong. */
1181 1.1 is case AF_NS:
1182 1.1 is {
1183 1.1 is struct ns_addr *ina = &IA_SNS(ifa)->sns_addr;
1184 1.1 is
1185 1.1 is if (ns_nullhost(*ina))
1186 1.9.4.1 is ina->x_host = *(union ns_host *)
1187 1.9.4.3 is LLADDR(sc->sc_ethercom.ec_if.if_sadl);
1188 1.1 is else
1189 1.1 is bcopy(ina->x_host.c_host,
1190 1.9.4.1 is LLADDR(sc->sc_ethercom.ec_if.if_sadl),
1191 1.9.4.3 is ETHER_ADDR_LEN);
1192 1.1 is /* Set new address. */
1193 1.1 is iyinit(sc);
1194 1.1 is break;
1195 1.1 is }
1196 1.1 is #endif /* NS */
1197 1.1 is default:
1198 1.1 is iyinit(sc);
1199 1.1 is break;
1200 1.1 is }
1201 1.1 is break;
1202 1.1 is
1203 1.1 is case SIOCSIFFLAGS:
1204 1.1 is sc->promisc = ifp->if_flags & (IFF_PROMISC | IFF_ALLMULTI);
1205 1.1 is if ((ifp->if_flags & IFF_UP) == 0 &&
1206 1.1 is (ifp->if_flags & IFF_RUNNING) != 0) {
1207 1.1 is /*
1208 1.1 is * If interface is marked down and it is running, then
1209 1.1 is * stop it.
1210 1.1 is */
1211 1.1 is iystop(sc);
1212 1.1 is ifp->if_flags &= ~IFF_RUNNING;
1213 1.1 is } else if ((ifp->if_flags & IFF_UP) != 0 &&
1214 1.1 is (ifp->if_flags & IFF_RUNNING) == 0) {
1215 1.1 is /*
1216 1.1 is * If interface is marked up and it is stopped, then
1217 1.1 is * start it.
1218 1.1 is */
1219 1.1 is iyinit(sc);
1220 1.1 is } else {
1221 1.1 is /*
1222 1.1 is * Reset the interface to pick up changes in any other
1223 1.1 is * flags that affect hardware registers.
1224 1.1 is */
1225 1.1 is iystop(sc);
1226 1.1 is iyinit(sc);
1227 1.1 is }
1228 1.1 is #ifdef IYDEBUGX
1229 1.1 is if (ifp->if_flags & IFF_DEBUG)
1230 1.1 is sc->sc_debug = IFY_ALL;
1231 1.1 is else
1232 1.1 is sc->sc_debug = 0;
1233 1.1 is #endif
1234 1.1 is break;
1235 1.1 is
1236 1.1 is #if 0 /* XXX */
1237 1.1 is case SIOCADDMULTI:
1238 1.1 is case SIOCDELMULTI:
1239 1.1 is error = (cmd == SIOCADDMULTI) ?
1240 1.9.4.1 is ether_addmulti(ifr, &sc->sc_ethercom):
1241 1.9.4.1 is ether_delmulti(ifr, &sc->sc_ethercom);
1242 1.1 is
1243 1.1 is if (error == ENETRESET) {
1244 1.1 is /*
1245 1.1 is * Multicast list has changed; set the hardware filter
1246 1.1 is * accordingly.
1247 1.1 is */
1248 1.1 is iy_mc_reset(sc); /* XXX */
1249 1.1 is error = 0;
1250 1.1 is }
1251 1.1 is break;
1252 1.1 is #endif
1253 1.1 is default:
1254 1.1 is error = EINVAL;
1255 1.1 is }
1256 1.1 is splx(s);
1257 1.1 is return error;
1258 1.1 is }
1259 1.1 is
1260 1.1 is #if 0
1261 1.1 is static void
1262 1.1 is iy_mc_reset(sc)
1263 1.1 is struct iy_softc *sc;
1264 1.1 is {
1265 1.1 is struct ether_multi *enm;
1266 1.1 is struct ether_multistep step;
1267 1.1 is
1268 1.1 is /*
1269 1.1 is * Step through the list of addresses.
1270 1.1 is */
1271 1.1 is sc->mcast_count = 0;
1272 1.9.4.1 is ETHER_FIRST_MULTI(step, &sc->sc_ethercom, enm);
1273 1.1 is while (enm) {
1274 1.1 is if (sc->mcast_count >= MAXMCAST ||
1275 1.1 is bcmp(enm->enm_addrlo, enm->enm_addrhi, 6) != 0) {
1276 1.9.4.1 is sc->sc_ethercom.ec_if.if_flags |= IFF_ALLMULTI;
1277 1.9.4.1 is iyioctl(&sc->sc_ethercom.ec_if, SIOCSIFFLAGS,
1278 1.9.4.1 is (void *)0);
1279 1.1 is goto setflag;
1280 1.1 is }
1281 1.1 is
1282 1.1 is bcopy(enm->enm_addrlo, &sc->mcast_addrs[sc->mcast_count], 6);
1283 1.1 is sc->mcast_count++;
1284 1.1 is ETHER_NEXT_MULTI(step, enm);
1285 1.1 is }
1286 1.1 is setflag:
1287 1.1 is sc->want_mcsetup = 1;
1288 1.1 is }
1289 1.1 is
1290 1.1 is #ifdef IYDEBUG
1291 1.1 is void
1292 1.1 is print_rbd(rbd)
1293 1.1 is volatile struct ie_recv_buf_desc *rbd;
1294 1.1 is {
1295 1.1 is
1296 1.8 christos printf("RBD at %08lx:\nactual %04x, next %04x, buffer %08x\n"
1297 1.1 is "length %04x, mbz %04x\n", (u_long)rbd, rbd->ie_rbd_actual,
1298 1.1 is rbd->ie_rbd_next, rbd->ie_rbd_buffer, rbd->ie_rbd_length,
1299 1.1 is rbd->mbz);
1300 1.1 is }
1301 1.1 is #endif
1302 1.1 is #endif
1303 1.1 is
1304 1.1 is void
1305 1.1 is iymbuffill(arg)
1306 1.1 is void *arg;
1307 1.1 is {
1308 1.1 is struct iy_softc *sc = (struct iy_softc *)arg;
1309 1.1 is int s, i;
1310 1.1 is
1311 1.1 is s = splimp();
1312 1.1 is i = sc->last_mb;
1313 1.1 is do {
1314 1.1 is if (sc->mb[i] == NULL)
1315 1.1 is MGET(sc->mb[i], M_DONTWAIT, MT_DATA);
1316 1.1 is if (sc->mb[i] == NULL)
1317 1.1 is break;
1318 1.1 is i = (i + 1) % MAX_MBS;
1319 1.1 is } while (i != sc->next_mb);
1320 1.1 is sc->last_mb = i;
1321 1.1 is /* If the queue was not filled, try again. */
1322 1.1 is if (sc->last_mb != sc->next_mb)
1323 1.1 is timeout(iymbuffill, sc, 1);
1324 1.1 is splx(s);
1325 1.1 is }
1326 1.1 is
1327 1.1 is
1328 1.1 is void
1329 1.1 is iymbufempty(arg)
1330 1.1 is void *arg;
1331 1.1 is {
1332 1.1 is struct iy_softc *sc = (struct iy_softc *)arg;
1333 1.1 is int s, i;
1334 1.1 is
1335 1.1 is s = splimp();
1336 1.1 is for (i = 0; i<MAX_MBS; i++) {
1337 1.1 is if (sc->mb[i]) {
1338 1.1 is m_freem(sc->mb[i]);
1339 1.1 is sc->mb[i] = NULL;
1340 1.1 is }
1341 1.1 is }
1342 1.1 is sc->last_mb = sc->next_mb = 0;
1343 1.1 is untimeout(iymbuffill, sc);
1344 1.1 is splx(s);
1345 1.1 is }
1346 1.1 is
1347 1.1 is void
1348 1.1 is iyprobemem(sc)
1349 1.1 is struct iy_softc *sc;
1350 1.1 is {
1351 1.9 thorpej bus_space_tag_t iot;
1352 1.9 thorpej bus_space_handle_t ioh;
1353 1.1 is int testing;
1354 1.1 is
1355 1.9 thorpej iot = sc->sc_iot;
1356 1.6 is ioh = sc->sc_ioh;
1357 1.1 is
1358 1.9.4.4 is bus_space_write_1(iot, ioh, COMMAND_REG, BANK_SEL(0));
1359 1.9.4.4 is delay(1);
1360 1.9 thorpej bus_space_write_2(iot, ioh, HOST_ADDR_REG, 4096-2);
1361 1.9 thorpej bus_space_write_2(iot, ioh, MEM_PORT_REG, 0);
1362 1.1 is
1363 1.1 is for (testing=65536; testing >= 4096; testing >>= 1) {
1364 1.9 thorpej bus_space_write_2(iot, ioh, HOST_ADDR_REG, testing-2);
1365 1.9 thorpej bus_space_write_2(iot, ioh, MEM_PORT_REG, 0xdead);
1366 1.9 thorpej bus_space_write_2(iot, ioh, HOST_ADDR_REG, testing-2);
1367 1.9 thorpej if (bus_space_read_2(iot, ioh, MEM_PORT_REG) != 0xdead) {
1368 1.1 is #ifdef IYMEMDEBUG
1369 1.8 christos printf("%s: Didn't keep 0xdead at 0x%x\n",
1370 1.1 is sc->sc_dev.dv_xname, testing-2);
1371 1.1 is #endif
1372 1.1 is continue;
1373 1.1 is }
1374 1.1 is
1375 1.9 thorpej bus_space_write_2(iot, ioh, HOST_ADDR_REG, testing-2);
1376 1.9 thorpej bus_space_write_2(iot, ioh, MEM_PORT_REG, 0xbeef);
1377 1.9 thorpej bus_space_write_2(iot, ioh, HOST_ADDR_REG, testing-2);
1378 1.9 thorpej if (bus_space_read_2(iot, ioh, MEM_PORT_REG) != 0xbeef) {
1379 1.1 is #ifdef IYMEMDEBUG
1380 1.8 christos printf("%s: Didn't keep 0xbeef at 0x%x\n",
1381 1.1 is sc->sc_dev.dv_xname, testing-2);
1382 1.1 is #endif
1383 1.1 is continue;
1384 1.1 is }
1385 1.1 is
1386 1.9 thorpej bus_space_write_2(iot, ioh, HOST_ADDR_REG, 0);
1387 1.9 thorpej bus_space_write_2(iot, ioh, MEM_PORT_REG, 0);
1388 1.9 thorpej bus_space_write_2(iot, ioh, HOST_ADDR_REG, testing >> 1);
1389 1.9 thorpej bus_space_write_2(iot, ioh, MEM_PORT_REG, testing >> 1);
1390 1.9 thorpej bus_space_write_2(iot, ioh, HOST_ADDR_REG, 0);
1391 1.9 thorpej if (bus_space_read_2(iot, ioh, MEM_PORT_REG) == (testing >> 1)) {
1392 1.1 is #ifdef IYMEMDEBUG
1393 1.8 christos printf("%s: 0x%x alias of 0x0\n",
1394 1.1 is sc->sc_dev.dv_xname, testing >> 1);
1395 1.1 is #endif
1396 1.1 is continue;
1397 1.1 is }
1398 1.1 is
1399 1.1 is break;
1400 1.1 is }
1401 1.1 is
1402 1.1 is sc->sram = testing;
1403 1.1 is
1404 1.1 is switch(testing) {
1405 1.1 is case 65536:
1406 1.1 is /* 4 NFS packets + overhead RX, 2 NFS + overhead TX */
1407 1.1 is sc->rx_size = 44*1024;
1408 1.1 is break;
1409 1.1 is
1410 1.1 is case 32768:
1411 1.1 is /* 2 NFS packets + overhead RX, 1 NFS + overhead TX */
1412 1.1 is sc->rx_size = 22*1024;
1413 1.1 is break;
1414 1.1 is
1415 1.1 is case 16384:
1416 1.1 is /* 1 NFS packet + overhead RX, 4 big packets TX */
1417 1.1 is sc->rx_size = 10*1024;
1418 1.1 is break;
1419 1.1 is default:
1420 1.1 is sc->rx_size = testing/2;
1421 1.1 is break;
1422 1.1 is }
1423 1.1 is sc->tx_size = testing - sc->rx_size;
1424 1.9.4.4 is }
1425 1.9.4.4 is
1426 1.9.4.4 is static int
1427 1.9.4.4 is eepromreadall(iot, ioh, wordp, maxi)
1428 1.9.4.4 is bus_space_tag_t iot;
1429 1.9.4.4 is bus_space_handle_t ioh;
1430 1.9.4.4 is u_int16_t *wordp;
1431 1.9.4.4 is int maxi;
1432 1.9.4.4 is {
1433 1.9.4.4 is int i;
1434 1.9.4.4 is u_int16_t checksum, tmp;
1435 1.9.4.4 is
1436 1.9.4.4 is checksum = 0;
1437 1.9.4.4 is
1438 1.9.4.4 is for (i=0; i<EEPP_LENGTH; ++i) {
1439 1.9.4.4 is tmp = eepromread(iot, ioh, i);
1440 1.9.4.4 is checksum += tmp;
1441 1.9.4.4 is if (i<maxi)
1442 1.9.4.4 is wordp[i] = tmp;
1443 1.9.4.4 is }
1444 1.9.4.4 is
1445 1.9.4.4 is if (checksum != EEPP_CHKSUM) {
1446 1.9.4.4 is #ifdef IYDEBUG
1447 1.9.4.4 is printf("wrong EEPROM checksum 0x%x should be 0x%x\n",
1448 1.9.4.4 is checksum, EEPP_CHKSUM);
1449 1.9.4.4 is #endif
1450 1.9.4.4 is return 1;
1451 1.9.4.4 is }
1452 1.9.4.4 is return 0;
1453 1.1 is }
1454