xref: /freebsd/sys/dev/le/am7990.c (revision fdafd315ad0d0f28a11b9fb4476a9ab059c62b92)
1a7ee7a7dSMarius Strobl /*	$NetBSD: am7990.c,v 1.68 2005/12/11 12:21:25 christos Exp $	*/
2a7ee7a7dSMarius Strobl 
3a7ee7a7dSMarius Strobl /*-
4*b61a5730SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause AND BSD-3-Clause
5718cf2ccSPedro F. Giffuni  *
6a7ee7a7dSMarius Strobl  * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
7a7ee7a7dSMarius Strobl  * All rights reserved.
8a7ee7a7dSMarius Strobl  *
9a7ee7a7dSMarius Strobl  * This code is derived from software contributed to The NetBSD Foundation
10a7ee7a7dSMarius Strobl  * by Charles M. Hannum and by Jason R. Thorpe of the Numerical Aerospace
11a7ee7a7dSMarius Strobl  * Simulation Facility, NASA Ames Research Center.
12a7ee7a7dSMarius Strobl  *
13a7ee7a7dSMarius Strobl  * Redistribution and use in source and binary forms, with or without
14a7ee7a7dSMarius Strobl  * modification, are permitted provided that the following conditions
15a7ee7a7dSMarius Strobl  * are met:
16a7ee7a7dSMarius Strobl  * 1. Redistributions of source code must retain the above copyright
17a7ee7a7dSMarius Strobl  *    notice, this list of conditions and the following disclaimer.
18a7ee7a7dSMarius Strobl  * 2. Redistributions in binary form must reproduce the above copyright
19a7ee7a7dSMarius Strobl  *    notice, this list of conditions and the following disclaimer in the
20a7ee7a7dSMarius Strobl  *    documentation and/or other materials provided with the distribution.
21a7ee7a7dSMarius Strobl  *
22a7ee7a7dSMarius Strobl  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
23a7ee7a7dSMarius Strobl  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
24a7ee7a7dSMarius Strobl  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
25a7ee7a7dSMarius Strobl  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
26a7ee7a7dSMarius Strobl  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27a7ee7a7dSMarius Strobl  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28a7ee7a7dSMarius Strobl  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29a7ee7a7dSMarius Strobl  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30a7ee7a7dSMarius Strobl  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31a7ee7a7dSMarius Strobl  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32a7ee7a7dSMarius Strobl  * POSSIBILITY OF SUCH DAMAGE.
33a7ee7a7dSMarius Strobl  */
34a7ee7a7dSMarius Strobl 
35a7ee7a7dSMarius Strobl /*-
36a7ee7a7dSMarius Strobl  * Copyright (c) 1992, 1993
37a7ee7a7dSMarius Strobl  *	The Regents of the University of California.  All rights reserved.
38a7ee7a7dSMarius Strobl  *
39a7ee7a7dSMarius Strobl  * This code is derived from software contributed to Berkeley by
40a7ee7a7dSMarius Strobl  * Ralph Campbell and Rick Macklem.
41a7ee7a7dSMarius Strobl  *
42a7ee7a7dSMarius Strobl  * Redistribution and use in source and binary forms, with or without
43a7ee7a7dSMarius Strobl  * modification, are permitted provided that the following conditions
44a7ee7a7dSMarius Strobl  * are met:
45a7ee7a7dSMarius Strobl  * 1. Redistributions of source code must retain the above copyright
46a7ee7a7dSMarius Strobl  *    notice, this list of conditions and the following disclaimer.
47a7ee7a7dSMarius Strobl  * 2. Redistributions in binary form must reproduce the above copyright
48a7ee7a7dSMarius Strobl  *    notice, this list of conditions and the following disclaimer in the
49a7ee7a7dSMarius Strobl  *    documentation and/or other materials provided with the distribution.
50a7ee7a7dSMarius Strobl  * 3. Neither the name of the University nor the names of its contributors
51a7ee7a7dSMarius Strobl  *    may be used to endorse or promote products derived from this software
52a7ee7a7dSMarius Strobl  *    without specific prior written permission.
53a7ee7a7dSMarius Strobl  *
54a7ee7a7dSMarius Strobl  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
55a7ee7a7dSMarius Strobl  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56a7ee7a7dSMarius Strobl  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57a7ee7a7dSMarius Strobl  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
58a7ee7a7dSMarius Strobl  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59a7ee7a7dSMarius Strobl  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60a7ee7a7dSMarius Strobl  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61a7ee7a7dSMarius Strobl  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62a7ee7a7dSMarius Strobl  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63a7ee7a7dSMarius Strobl  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64a7ee7a7dSMarius Strobl  * SUCH DAMAGE.
65a7ee7a7dSMarius Strobl  */
66a7ee7a7dSMarius Strobl 
67a7ee7a7dSMarius Strobl #include <sys/param.h>
68a7ee7a7dSMarius Strobl #include <sys/bus.h>
69a7ee7a7dSMarius Strobl #include <sys/endian.h>
70a7ee7a7dSMarius Strobl #include <sys/lock.h>
71a7ee7a7dSMarius Strobl #include <sys/mbuf.h>
72a7ee7a7dSMarius Strobl #include <sys/mutex.h>
73a7ee7a7dSMarius Strobl #include <sys/socket.h>
74a7ee7a7dSMarius Strobl 
75a7ee7a7dSMarius Strobl #include <net/bpf.h>
76a7ee7a7dSMarius Strobl #include <net/ethernet.h>
77a7ee7a7dSMarius Strobl #include <net/if.h>
78a7ee7a7dSMarius Strobl #include <net/if_arp.h>
79a7ee7a7dSMarius Strobl #include <net/if_dl.h>
80a7ee7a7dSMarius Strobl #include <net/if_media.h>
81a7ee7a7dSMarius Strobl #include <net/if_var.h>
82a7ee7a7dSMarius Strobl 
8360c430f5SMarius Strobl #include <machine/bus.h>
8460c430f5SMarius Strobl 
85a7ee7a7dSMarius Strobl #include <dev/le/lancereg.h>
86a7ee7a7dSMarius Strobl #include <dev/le/lancevar.h>
87a7ee7a7dSMarius Strobl #include <dev/le/am7990reg.h>
88a7ee7a7dSMarius Strobl #include <dev/le/am7990var.h>
89a7ee7a7dSMarius Strobl 
90a7ee7a7dSMarius Strobl static void	am7990_meminit(struct lance_softc *);
91a7ee7a7dSMarius Strobl static void	am7990_rint(struct lance_softc *);
92a7ee7a7dSMarius Strobl static void	am7990_tint(struct lance_softc *);
93a7ee7a7dSMarius Strobl static void	am7990_start_locked(struct lance_softc *sc);
94a7ee7a7dSMarius Strobl 
95a7ee7a7dSMarius Strobl #ifdef LEDEBUG
96a7ee7a7dSMarius Strobl static void	am7990_recv_print(struct lance_softc *, int);
97a7ee7a7dSMarius Strobl static void	am7990_xmit_print(struct lance_softc *, int);
98a7ee7a7dSMarius Strobl #endif
99a7ee7a7dSMarius Strobl 
100a7ee7a7dSMarius Strobl int
am7990_config(struct am7990_softc * sc,const char * name,int unit)101a7ee7a7dSMarius Strobl am7990_config(struct am7990_softc *sc, const char* name, int unit)
102a7ee7a7dSMarius Strobl {
103a7ee7a7dSMarius Strobl 	int error, mem;
104a7ee7a7dSMarius Strobl 
105a7ee7a7dSMarius Strobl 	sc->lsc.sc_meminit = am7990_meminit;
106a7ee7a7dSMarius Strobl 	sc->lsc.sc_start_locked = am7990_start_locked;
107a7ee7a7dSMarius Strobl 
108a7ee7a7dSMarius Strobl 	error = lance_config(&sc->lsc, name, unit);
109a7ee7a7dSMarius Strobl 	if (error != 0)
110a7ee7a7dSMarius Strobl 		return (error);
111a7ee7a7dSMarius Strobl 
112a7ee7a7dSMarius Strobl 	mem = 0;
113a7ee7a7dSMarius Strobl 	sc->lsc.sc_initaddr = mem;
114a7ee7a7dSMarius Strobl 	mem += sizeof(struct leinit);
115a7ee7a7dSMarius Strobl 	sc->lsc.sc_rmdaddr = mem;
116a7ee7a7dSMarius Strobl 	mem += sizeof(struct lermd) * sc->lsc.sc_nrbuf;
117a7ee7a7dSMarius Strobl 	sc->lsc.sc_tmdaddr = mem;
118a7ee7a7dSMarius Strobl 	mem += sizeof(struct letmd) * sc->lsc.sc_ntbuf;
119a7ee7a7dSMarius Strobl 	sc->lsc.sc_rbufaddr = mem;
120a7ee7a7dSMarius Strobl 	mem += LEBLEN * sc->lsc.sc_nrbuf;
121a7ee7a7dSMarius Strobl 	sc->lsc.sc_tbufaddr = mem;
122a7ee7a7dSMarius Strobl 	mem += LEBLEN * sc->lsc.sc_ntbuf;
123a7ee7a7dSMarius Strobl 
124a7ee7a7dSMarius Strobl 	if (mem > sc->lsc.sc_memsize)
125a7ee7a7dSMarius Strobl 		panic("%s: memsize", __func__);
126a7ee7a7dSMarius Strobl 
127a7ee7a7dSMarius Strobl 	lance_attach(&sc->lsc);
128a7ee7a7dSMarius Strobl 
129a7ee7a7dSMarius Strobl 	return (0);
130a7ee7a7dSMarius Strobl }
131a7ee7a7dSMarius Strobl 
132a7ee7a7dSMarius Strobl void
am7990_detach(struct am7990_softc * sc)133a7ee7a7dSMarius Strobl am7990_detach(struct am7990_softc *sc)
134a7ee7a7dSMarius Strobl {
135a7ee7a7dSMarius Strobl 
136a7ee7a7dSMarius Strobl 	lance_detach(&sc->lsc);
137a7ee7a7dSMarius Strobl }
138a7ee7a7dSMarius Strobl 
139a7ee7a7dSMarius Strobl /*
140a7ee7a7dSMarius Strobl  * Set up the initialization block and the descriptor rings.
141a7ee7a7dSMarius Strobl  */
142a7ee7a7dSMarius Strobl static void
am7990_meminit(struct lance_softc * sc)143a7ee7a7dSMarius Strobl am7990_meminit(struct lance_softc *sc)
144a7ee7a7dSMarius Strobl {
145df40efe1SJustin Hibbits 	if_t ifp = sc->sc_ifp;
146a7ee7a7dSMarius Strobl 	struct leinit init;
147a7ee7a7dSMarius Strobl 	struct lermd rmd;
148a7ee7a7dSMarius Strobl 	struct letmd tmd;
149a7ee7a7dSMarius Strobl 	u_long a;
150a7ee7a7dSMarius Strobl 	int bix;
151a7ee7a7dSMarius Strobl 
152a7ee7a7dSMarius Strobl 	LE_LOCK_ASSERT(sc, MA_OWNED);
153a7ee7a7dSMarius Strobl 
154df40efe1SJustin Hibbits 	if (if_getflags(ifp) & IFF_PROMISC)
155a7ee7a7dSMarius Strobl 		init.init_mode = LE_MODE_NORMAL | LE_MODE_PROM;
156a7ee7a7dSMarius Strobl 	else
157a7ee7a7dSMarius Strobl 		init.init_mode = LE_MODE_NORMAL;
158a7ee7a7dSMarius Strobl 
159a7ee7a7dSMarius Strobl 	init.init_padr[0] = (sc->sc_enaddr[1] << 8) | sc->sc_enaddr[0];
160a7ee7a7dSMarius Strobl 	init.init_padr[1] = (sc->sc_enaddr[3] << 8) | sc->sc_enaddr[2];
161a7ee7a7dSMarius Strobl 	init.init_padr[2] = (sc->sc_enaddr[5] << 8) | sc->sc_enaddr[4];
162a7ee7a7dSMarius Strobl 	lance_setladrf(sc, init.init_ladrf);
163a7ee7a7dSMarius Strobl 
164a7ee7a7dSMarius Strobl 	sc->sc_last_rd = 0;
165a7ee7a7dSMarius Strobl 	sc->sc_first_td = sc->sc_last_td = sc->sc_no_td = 0;
166a7ee7a7dSMarius Strobl 
167a7ee7a7dSMarius Strobl 	a = sc->sc_addr + LE_RMDADDR(sc, 0);
168a7ee7a7dSMarius Strobl 	init.init_rdra = a;
169a7ee7a7dSMarius Strobl 	init.init_rlen = (a >> 16) | ((ffs(sc->sc_nrbuf) - 1) << 13);
170a7ee7a7dSMarius Strobl 
171a7ee7a7dSMarius Strobl 	a = sc->sc_addr + LE_TMDADDR(sc, 0);
172a7ee7a7dSMarius Strobl 	init.init_tdra = a;
173a7ee7a7dSMarius Strobl 	init.init_tlen = (a >> 16) | ((ffs(sc->sc_ntbuf) - 1) << 13);
174a7ee7a7dSMarius Strobl 
175a7ee7a7dSMarius Strobl 	(*sc->sc_copytodesc)(sc, &init, LE_INITADDR(sc), sizeof(init));
176a7ee7a7dSMarius Strobl 
177a7ee7a7dSMarius Strobl 	/*
178a7ee7a7dSMarius Strobl 	 * Set up receive ring descriptors.
179a7ee7a7dSMarius Strobl 	 */
180a7ee7a7dSMarius Strobl 	for (bix = 0; bix < sc->sc_nrbuf; bix++) {
181a7ee7a7dSMarius Strobl 		a = sc->sc_addr + LE_RBUFADDR(sc, bix);
182a7ee7a7dSMarius Strobl 		rmd.rmd0 = a;
183a7ee7a7dSMarius Strobl 		rmd.rmd1_hadr = a >> 16;
184a7ee7a7dSMarius Strobl 		rmd.rmd1_bits = LE_R1_OWN;
185a7ee7a7dSMarius Strobl 		rmd.rmd2 = -LEBLEN | LE_XMD2_ONES;
186a7ee7a7dSMarius Strobl 		rmd.rmd3 = 0;
187a7ee7a7dSMarius Strobl 		(*sc->sc_copytodesc)(sc, &rmd, LE_RMDADDR(sc, bix),
188a7ee7a7dSMarius Strobl 		    sizeof(rmd));
189a7ee7a7dSMarius Strobl 	}
190a7ee7a7dSMarius Strobl 
191a7ee7a7dSMarius Strobl 	/*
192a7ee7a7dSMarius Strobl 	 * Set up transmit ring descriptors.
193a7ee7a7dSMarius Strobl 	 */
194a7ee7a7dSMarius Strobl 	for (bix = 0; bix < sc->sc_ntbuf; bix++) {
195a7ee7a7dSMarius Strobl 		a = sc->sc_addr + LE_TBUFADDR(sc, bix);
196a7ee7a7dSMarius Strobl 		tmd.tmd0 = a;
197a7ee7a7dSMarius Strobl 		tmd.tmd1_hadr = a >> 16;
198a7ee7a7dSMarius Strobl 		tmd.tmd1_bits = 0;
199a7ee7a7dSMarius Strobl 		tmd.tmd2 = LE_XMD2_ONES;
200a7ee7a7dSMarius Strobl 		tmd.tmd3 = 0;
201a7ee7a7dSMarius Strobl 		(*sc->sc_copytodesc)(sc, &tmd, LE_TMDADDR(sc, bix),
202a7ee7a7dSMarius Strobl 		    sizeof(tmd));
203a7ee7a7dSMarius Strobl 	}
204a7ee7a7dSMarius Strobl }
205a7ee7a7dSMarius Strobl 
206a7ee7a7dSMarius Strobl static void
am7990_rint(struct lance_softc * sc)207a7ee7a7dSMarius Strobl am7990_rint(struct lance_softc *sc)
208a7ee7a7dSMarius Strobl {
209df40efe1SJustin Hibbits 	if_t ifp = sc->sc_ifp;
21060c430f5SMarius Strobl 	struct mbuf *m;
211a7ee7a7dSMarius Strobl 	struct lermd rmd;
212a7ee7a7dSMarius Strobl 	int bix, rp;
21360c430f5SMarius Strobl #if defined(LANCE_REVC_BUG)
21460c430f5SMarius Strobl 	struct ether_header *eh;
21560c430f5SMarius Strobl 	/* Make sure this is short-aligned, for ether_cmp(). */
21660c430f5SMarius Strobl 	static uint16_t bcast_enaddr[3] = { ~0, ~0, ~0 };
21760c430f5SMarius Strobl #endif
218a7ee7a7dSMarius Strobl 
219a7ee7a7dSMarius Strobl 	bix = sc->sc_last_rd;
220a7ee7a7dSMarius Strobl 
221a7ee7a7dSMarius Strobl 	/* Process all buffers with valid data. */
222a7ee7a7dSMarius Strobl 	for (;;) {
223a7ee7a7dSMarius Strobl 		rp = LE_RMDADDR(sc, bix);
224a7ee7a7dSMarius Strobl 		(*sc->sc_copyfromdesc)(sc, &rmd, rp, sizeof(rmd));
225a7ee7a7dSMarius Strobl 
226a7ee7a7dSMarius Strobl 		if (rmd.rmd1_bits & LE_R1_OWN)
227a7ee7a7dSMarius Strobl 			break;
228a7ee7a7dSMarius Strobl 
22960c430f5SMarius Strobl 		m = NULL;
23060c430f5SMarius Strobl 		if ((rmd.rmd1_bits & (LE_R1_ERR | LE_R1_STP | LE_R1_ENP)) !=
23160c430f5SMarius Strobl 		    (LE_R1_STP | LE_R1_ENP)) {
232a7ee7a7dSMarius Strobl 			if (rmd.rmd1_bits & LE_R1_ERR) {
233a7ee7a7dSMarius Strobl #ifdef LEDEBUG
23460c430f5SMarius Strobl 				if (rmd.rmd1_bits & LE_R1_ENP) {
235a7ee7a7dSMarius Strobl 					if ((rmd.rmd1_bits & LE_R1_OFLO) == 0) {
236a7ee7a7dSMarius Strobl 						if (rmd.rmd1_bits & LE_R1_FRAM)
237a7ee7a7dSMarius Strobl 							if_printf(ifp,
238a7ee7a7dSMarius Strobl 							    "framing error\n");
239a7ee7a7dSMarius Strobl 						if (rmd.rmd1_bits & LE_R1_CRC)
240a7ee7a7dSMarius Strobl 							if_printf(ifp,
241a7ee7a7dSMarius Strobl 							    "crc mismatch\n");
242a7ee7a7dSMarius Strobl 					}
24360c430f5SMarius Strobl 				} else
244a7ee7a7dSMarius Strobl 					if (rmd.rmd1_bits & LE_R1_OFLO)
245a7ee7a7dSMarius Strobl 						if_printf(ifp, "overflow\n");
24660c430f5SMarius Strobl #endif
247a7ee7a7dSMarius Strobl 				if (rmd.rmd1_bits & LE_R1_BUFF)
24860c430f5SMarius Strobl 					if_printf(ifp,
24960c430f5SMarius Strobl 					    "receive buffer error\n");
250a7ee7a7dSMarius Strobl 			} else if ((rmd.rmd1_bits & (LE_R1_STP | LE_R1_ENP)) !=
25160c430f5SMarius Strobl 			    (LE_R1_STP | LE_R1_ENP))
252a7ee7a7dSMarius Strobl 				if_printf(ifp, "dropping chained buffer\n");
253a7ee7a7dSMarius Strobl 		} else {
254a7ee7a7dSMarius Strobl #ifdef LEDEBUG
255a7ee7a7dSMarius Strobl 			if (sc->sc_flags & LE_DEBUG)
25660c430f5SMarius Strobl 				am7990_recv_print(sc, bix);
257a7ee7a7dSMarius Strobl #endif
25860c430f5SMarius Strobl 			/* Pull the packet off the interface. */
25960c430f5SMarius Strobl 			m = lance_get(sc, LE_RBUFADDR(sc, bix),
260a7ee7a7dSMarius Strobl 			    (int)rmd.rmd3 - ETHER_CRC_LEN);
261a7ee7a7dSMarius Strobl 		}
262a7ee7a7dSMarius Strobl 
263a7ee7a7dSMarius Strobl 		rmd.rmd1_bits = LE_R1_OWN;
264a7ee7a7dSMarius Strobl 		rmd.rmd2 = -LEBLEN | LE_XMD2_ONES;
265a7ee7a7dSMarius Strobl 		rmd.rmd3 = 0;
266a7ee7a7dSMarius Strobl 		(*sc->sc_copytodesc)(sc, &rmd, rp, sizeof(rmd));
267a7ee7a7dSMarius Strobl 
268a7ee7a7dSMarius Strobl 		if (++bix == sc->sc_nrbuf)
269a7ee7a7dSMarius Strobl 			bix = 0;
27060c430f5SMarius Strobl 
27160c430f5SMarius Strobl 		if (m != NULL) {
272c8dfaf38SGleb Smirnoff 			if_inc_counter(ifp, IFCOUNTER_IPACKETS, 1);
27360c430f5SMarius Strobl 
27460c430f5SMarius Strobl #ifdef LANCE_REVC_BUG
27560c430f5SMarius Strobl 			/*
27660c430f5SMarius Strobl 			 * The old LANCE (Rev. C) chips have a bug which
27760c430f5SMarius Strobl 			 * causes garbage to be inserted in front of the
27860c430f5SMarius Strobl 			 * received packet. The workaround is to ignore
27960c430f5SMarius Strobl 			 * packets with an invalid destination address
28060c430f5SMarius Strobl 			 * (garbage will usually not match).
28160c430f5SMarius Strobl 			 * Of course, this precludes multicast support...
28260c430f5SMarius Strobl 			 */
28360c430f5SMarius Strobl 			eh = mtod(m, struct ether_header *);
28460c430f5SMarius Strobl 			if (ether_cmp(eh->ether_dhost, sc->sc_enaddr) &&
28560c430f5SMarius Strobl 			    ether_cmp(eh->ether_dhost, bcast_enaddr)) {
28660c430f5SMarius Strobl 				m_freem(m);
28760c430f5SMarius Strobl 				continue;
28860c430f5SMarius Strobl 			}
28960c430f5SMarius Strobl #endif
29060c430f5SMarius Strobl 
29160c430f5SMarius Strobl 			/* Pass the packet up. */
29260c430f5SMarius Strobl 			LE_UNLOCK(sc);
293df40efe1SJustin Hibbits 			if_input(ifp, m);
29460c430f5SMarius Strobl 			LE_LOCK(sc);
29560c430f5SMarius Strobl 		} else
296c8dfaf38SGleb Smirnoff 			if_inc_counter(ifp, IFCOUNTER_IERRORS, 1);
297a7ee7a7dSMarius Strobl 	}
298a7ee7a7dSMarius Strobl 
299a7ee7a7dSMarius Strobl 	sc->sc_last_rd = bix;
300a7ee7a7dSMarius Strobl }
301a7ee7a7dSMarius Strobl 
302a7ee7a7dSMarius Strobl static void
am7990_tint(struct lance_softc * sc)303a7ee7a7dSMarius Strobl am7990_tint(struct lance_softc *sc)
304a7ee7a7dSMarius Strobl {
305df40efe1SJustin Hibbits 	if_t ifp = sc->sc_ifp;
306a7ee7a7dSMarius Strobl 	struct letmd tmd;
307a7ee7a7dSMarius Strobl 	int bix;
308a7ee7a7dSMarius Strobl 
309a7ee7a7dSMarius Strobl 	bix = sc->sc_first_td;
310a7ee7a7dSMarius Strobl 
311a7ee7a7dSMarius Strobl 	for (;;) {
312a7ee7a7dSMarius Strobl 		if (sc->sc_no_td <= 0)
313a7ee7a7dSMarius Strobl 			break;
314a7ee7a7dSMarius Strobl 
315a7ee7a7dSMarius Strobl 		(*sc->sc_copyfromdesc)(sc, &tmd, LE_TMDADDR(sc, bix),
316a7ee7a7dSMarius Strobl 		    sizeof(tmd));
317a7ee7a7dSMarius Strobl 
318a7ee7a7dSMarius Strobl #ifdef LEDEBUG
319a7ee7a7dSMarius Strobl 		if (sc->sc_flags & LE_DEBUG)
320a7ee7a7dSMarius Strobl 			if_printf(ifp, "trans tmd: "
321a7ee7a7dSMarius Strobl 			    "ladr %04x, hadr %02x, flags %02x, "
322a7ee7a7dSMarius Strobl 			    "bcnt %04x, mcnt %04x\n",
323a7ee7a7dSMarius Strobl 			    tmd.tmd0, tmd.tmd1_hadr, tmd.tmd1_bits,
324a7ee7a7dSMarius Strobl 			    tmd.tmd2, tmd.tmd3);
325a7ee7a7dSMarius Strobl #endif
326a7ee7a7dSMarius Strobl 
327a7ee7a7dSMarius Strobl 		if (tmd.tmd1_bits & LE_T1_OWN)
328a7ee7a7dSMarius Strobl 			break;
329a7ee7a7dSMarius Strobl 
330df40efe1SJustin Hibbits 		if_setdrvflagbits(ifp, 0, IFF_DRV_OACTIVE);
331a7ee7a7dSMarius Strobl 
332a7ee7a7dSMarius Strobl 		if (tmd.tmd1_bits & LE_T1_ERR) {
333a7ee7a7dSMarius Strobl 			if (tmd.tmd3 & LE_T3_BUFF)
334a7ee7a7dSMarius Strobl 				if_printf(ifp, "transmit buffer error\n");
335a7ee7a7dSMarius Strobl 			else if (tmd.tmd3 & LE_T3_UFLO)
336a7ee7a7dSMarius Strobl 				if_printf(ifp, "underflow\n");
337a7ee7a7dSMarius Strobl 			if (tmd.tmd3 & (LE_T3_BUFF | LE_T3_UFLO)) {
338a7ee7a7dSMarius Strobl 				lance_init_locked(sc);
339a7ee7a7dSMarius Strobl 				return;
340a7ee7a7dSMarius Strobl 			}
341a7ee7a7dSMarius Strobl 			if (tmd.tmd3 & LE_T3_LCAR) {
342a7ee7a7dSMarius Strobl 				if (sc->sc_flags & LE_CARRIER)
343a7ee7a7dSMarius Strobl 					if_link_state_change(ifp,
344a7ee7a7dSMarius Strobl 					    LINK_STATE_DOWN);
345a7ee7a7dSMarius Strobl 				sc->sc_flags &= ~LE_CARRIER;
346a7ee7a7dSMarius Strobl 				if (sc->sc_nocarrier)
347a7ee7a7dSMarius Strobl 					(*sc->sc_nocarrier)(sc);
348a7ee7a7dSMarius Strobl 				else
349a7ee7a7dSMarius Strobl 					if_printf(ifp, "lost carrier\n");
350a7ee7a7dSMarius Strobl 			}
351a7ee7a7dSMarius Strobl 			if (tmd.tmd3 & LE_T3_LCOL)
352c8dfaf38SGleb Smirnoff 				if_inc_counter(ifp, IFCOUNTER_COLLISIONS, 1);
353a7ee7a7dSMarius Strobl 			if (tmd.tmd3 & LE_T3_RTRY) {
354a7ee7a7dSMarius Strobl #ifdef LEDEBUG
355a7ee7a7dSMarius Strobl 				if_printf(ifp, "excessive collisions, tdr %d\n",
356a7ee7a7dSMarius Strobl 				    tmd.tmd3 & LE_T3_TDR_MASK);
357a7ee7a7dSMarius Strobl #endif
358c8dfaf38SGleb Smirnoff 				if_inc_counter(ifp, IFCOUNTER_COLLISIONS, 16);
359a7ee7a7dSMarius Strobl 			}
360c8dfaf38SGleb Smirnoff 			if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
361a7ee7a7dSMarius Strobl 		} else {
362a7ee7a7dSMarius Strobl 			if (tmd.tmd1_bits & LE_T1_ONE)
363c8dfaf38SGleb Smirnoff 				if_inc_counter(ifp, IFCOUNTER_COLLISIONS, 1);
364a7ee7a7dSMarius Strobl 			else if (tmd.tmd1_bits & LE_T1_MORE)
365a7ee7a7dSMarius Strobl 				/* Real number is unknown. */
366c8dfaf38SGleb Smirnoff 				if_inc_counter(ifp, IFCOUNTER_COLLISIONS, 2);
367c8dfaf38SGleb Smirnoff 			if_inc_counter(ifp, IFCOUNTER_OPACKETS, 1);
368a7ee7a7dSMarius Strobl 		}
369a7ee7a7dSMarius Strobl 
370a7ee7a7dSMarius Strobl 		if (++bix == sc->sc_ntbuf)
371a7ee7a7dSMarius Strobl 			bix = 0;
372a7ee7a7dSMarius Strobl 
373a7ee7a7dSMarius Strobl 		--sc->sc_no_td;
374a7ee7a7dSMarius Strobl 	}
375a7ee7a7dSMarius Strobl 
376a7ee7a7dSMarius Strobl 	sc->sc_first_td = bix;
377a7ee7a7dSMarius Strobl 
378fc64bae4SMarius Strobl 	sc->sc_wdog_timer = sc->sc_no_td > 0 ? 5 : 0;
379a7ee7a7dSMarius Strobl }
380a7ee7a7dSMarius Strobl 
381a7ee7a7dSMarius Strobl /*
382a7ee7a7dSMarius Strobl  * Controller interrupt
383a7ee7a7dSMarius Strobl  */
384a7ee7a7dSMarius Strobl void
am7990_intr(void * arg)385a7ee7a7dSMarius Strobl am7990_intr(void *arg)
386a7ee7a7dSMarius Strobl {
387a7ee7a7dSMarius Strobl 	struct lance_softc *sc = arg;
388df40efe1SJustin Hibbits 	if_t ifp = sc->sc_ifp;
389a7ee7a7dSMarius Strobl 	uint16_t isr;
390a7ee7a7dSMarius Strobl 
391a7ee7a7dSMarius Strobl 	LE_LOCK(sc);
392a7ee7a7dSMarius Strobl 
393a7ee7a7dSMarius Strobl 	if (sc->sc_hwintr && (*sc->sc_hwintr)(sc) == -1) {
394c8dfaf38SGleb Smirnoff 		if_inc_counter(ifp, IFCOUNTER_IERRORS, 1);
395a7ee7a7dSMarius Strobl 		lance_init_locked(sc);
396a7ee7a7dSMarius Strobl 		LE_UNLOCK(sc);
397a7ee7a7dSMarius Strobl 		return;
398a7ee7a7dSMarius Strobl 	}
399a7ee7a7dSMarius Strobl 
400a7ee7a7dSMarius Strobl 	isr = (*sc->sc_rdcsr)(sc, LE_CSR0);
401a7ee7a7dSMarius Strobl #if defined(LEDEBUG) && LEDEBUG > 1
402a7ee7a7dSMarius Strobl 	if (sc->sc_flags & LE_DEBUG)
403a7ee7a7dSMarius Strobl 		if_printf(ifp, "%s: entering with isr=%04x\n", __func__, isr);
404a7ee7a7dSMarius Strobl #endif
405a7ee7a7dSMarius Strobl 	if ((isr & LE_C0_INTR) == 0) {
406a7ee7a7dSMarius Strobl 		LE_UNLOCK(sc);
407a7ee7a7dSMarius Strobl 		return;
408a7ee7a7dSMarius Strobl 	}
409a7ee7a7dSMarius Strobl 
4100c05ab41SMarius Strobl 	/*
4110c05ab41SMarius Strobl 	 * Clear interrupt source flags and turn off interrupts. If we
4120c05ab41SMarius Strobl 	 * don't clear these flags before processing their sources we
41360c430f5SMarius Strobl 	 * could completely miss some interrupt events as the NIC can
414d2d9ab36SMarius Strobl 	 * change these flags while we're in this handler. We toggle
415d2d9ab36SMarius Strobl 	 * the interrupt enable bit in order to keep receiving them
416d2d9ab36SMarius Strobl 	 * (some chips work without this, some don't).
4170c05ab41SMarius Strobl 	 */
4180c05ab41SMarius Strobl 	(*sc->sc_wrcsr)(sc, LE_CSR0, isr & ~(LE_C0_INEA | LE_C0_TDMD |
4190c05ab41SMarius Strobl 	    LE_C0_STOP | LE_C0_STRT | LE_C0_INIT));
4200c05ab41SMarius Strobl 
421a7ee7a7dSMarius Strobl 	if (isr & LE_C0_ERR) {
422a7ee7a7dSMarius Strobl 		if (isr & LE_C0_BABL) {
423a7ee7a7dSMarius Strobl #ifdef LEDEBUG
424a7ee7a7dSMarius Strobl 			if_printf(ifp, "babble\n");
425a7ee7a7dSMarius Strobl #endif
426c8dfaf38SGleb Smirnoff 			if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
427a7ee7a7dSMarius Strobl 		}
428a7ee7a7dSMarius Strobl #if 0
429a7ee7a7dSMarius Strobl 		if (isr & LE_C0_CERR) {
430a7ee7a7dSMarius Strobl 			if_printf(ifp, "collision error\n");
431c8dfaf38SGleb Smirnoff 			if_inc_counter(ifp, IFCOUNTER_COLLISIONS, 1);
432a7ee7a7dSMarius Strobl 		}
433a7ee7a7dSMarius Strobl #endif
434a7ee7a7dSMarius Strobl 		if (isr & LE_C0_MISS) {
435a7ee7a7dSMarius Strobl #ifdef LEDEBUG
436a7ee7a7dSMarius Strobl 			if_printf(ifp, "missed packet\n");
437a7ee7a7dSMarius Strobl #endif
438c8dfaf38SGleb Smirnoff 			if_inc_counter(ifp, IFCOUNTER_IERRORS, 1);
439a7ee7a7dSMarius Strobl 		}
440a7ee7a7dSMarius Strobl 		if (isr & LE_C0_MERR) {
441a7ee7a7dSMarius Strobl 			if_printf(ifp, "memory error\n");
442a7ee7a7dSMarius Strobl 			lance_init_locked(sc);
443a7ee7a7dSMarius Strobl 			LE_UNLOCK(sc);
444a7ee7a7dSMarius Strobl 			return;
445a7ee7a7dSMarius Strobl 		}
446a7ee7a7dSMarius Strobl 	}
447a7ee7a7dSMarius Strobl 
448a7ee7a7dSMarius Strobl 	if ((isr & LE_C0_RXON) == 0) {
449a7ee7a7dSMarius Strobl 		if_printf(ifp, "receiver disabled\n");
450c8dfaf38SGleb Smirnoff 		if_inc_counter(ifp, IFCOUNTER_IERRORS, 1);
451a7ee7a7dSMarius Strobl 		lance_init_locked(sc);
452a7ee7a7dSMarius Strobl 		LE_UNLOCK(sc);
453a7ee7a7dSMarius Strobl 		return;
454a7ee7a7dSMarius Strobl 	}
455a7ee7a7dSMarius Strobl 	if ((isr & LE_C0_TXON) == 0) {
456a7ee7a7dSMarius Strobl 		if_printf(ifp, "transmitter disabled\n");
457c8dfaf38SGleb Smirnoff 		if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
458a7ee7a7dSMarius Strobl 		lance_init_locked(sc);
459a7ee7a7dSMarius Strobl 		LE_UNLOCK(sc);
460a7ee7a7dSMarius Strobl 		return;
461a7ee7a7dSMarius Strobl 	}
462a7ee7a7dSMarius Strobl 
463a7ee7a7dSMarius Strobl 	/*
464a7ee7a7dSMarius Strobl 	 * Pretend we have carrier; if we don't this will be cleared shortly.
465a7ee7a7dSMarius Strobl 	 */
466a7ee7a7dSMarius Strobl 	if (!(sc->sc_flags & LE_CARRIER))
467a7ee7a7dSMarius Strobl 		if_link_state_change(ifp, LINK_STATE_UP);
468a7ee7a7dSMarius Strobl 	sc->sc_flags |= LE_CARRIER;
469a7ee7a7dSMarius Strobl 
470a7ee7a7dSMarius Strobl 	if (isr & LE_C0_RINT)
471a7ee7a7dSMarius Strobl 		am7990_rint(sc);
472a7ee7a7dSMarius Strobl 	if (isr & LE_C0_TINT)
473a7ee7a7dSMarius Strobl 		am7990_tint(sc);
474a7ee7a7dSMarius Strobl 
4750c05ab41SMarius Strobl 	/* Enable interrupts again. */
4760c05ab41SMarius Strobl 	(*sc->sc_wrcsr)(sc, LE_CSR0, LE_C0_INEA);
4770c05ab41SMarius Strobl 
478df40efe1SJustin Hibbits 	if (!if_sendq_empty(ifp))
4790c05ab41SMarius Strobl 		am7990_start_locked(sc);
480a7ee7a7dSMarius Strobl 
481a7ee7a7dSMarius Strobl 	LE_UNLOCK(sc);
482a7ee7a7dSMarius Strobl }
483a7ee7a7dSMarius Strobl 
484a7ee7a7dSMarius Strobl /*
485a7ee7a7dSMarius Strobl  * Set up output on interface.
486a7ee7a7dSMarius Strobl  * Get another datagram to send off of the interface queue, and map it to the
487a7ee7a7dSMarius Strobl  * interface before starting the output.
488a7ee7a7dSMarius Strobl  */
489a7ee7a7dSMarius Strobl static void
am7990_start_locked(struct lance_softc * sc)490a7ee7a7dSMarius Strobl am7990_start_locked(struct lance_softc *sc)
491a7ee7a7dSMarius Strobl {
492df40efe1SJustin Hibbits 	if_t ifp = sc->sc_ifp;
493a7ee7a7dSMarius Strobl 	struct letmd tmd;
494a7ee7a7dSMarius Strobl 	struct mbuf *m;
4950c05ab41SMarius Strobl 	int bix, enq, len, rp;
496a7ee7a7dSMarius Strobl 
497a7ee7a7dSMarius Strobl 	LE_LOCK_ASSERT(sc, MA_OWNED);
498a7ee7a7dSMarius Strobl 
499df40efe1SJustin Hibbits 	if ((if_getdrvflags(ifp) & (IFF_DRV_RUNNING | IFF_DRV_OACTIVE)) !=
500a7ee7a7dSMarius Strobl 	    IFF_DRV_RUNNING)
501a7ee7a7dSMarius Strobl 		return;
502a7ee7a7dSMarius Strobl 
503a7ee7a7dSMarius Strobl 	bix = sc->sc_last_td;
5040c05ab41SMarius Strobl 	enq = 0;
505a7ee7a7dSMarius Strobl 
506a7ee7a7dSMarius Strobl 	for (; sc->sc_no_td < sc->sc_ntbuf &&
507df40efe1SJustin Hibbits 	    !if_sendq_empty(ifp);) {
508a7ee7a7dSMarius Strobl 		rp = LE_TMDADDR(sc, bix);
509a7ee7a7dSMarius Strobl 		(*sc->sc_copyfromdesc)(sc, &tmd, rp, sizeof(tmd));
510a7ee7a7dSMarius Strobl 
511a7ee7a7dSMarius Strobl 		if (tmd.tmd1_bits & LE_T1_OWN) {
512df40efe1SJustin Hibbits 			if_setdrvflagbits(ifp, IFF_DRV_OACTIVE, 0);
513a7ee7a7dSMarius Strobl 			if_printf(ifp,
514a7ee7a7dSMarius Strobl 			    "missing buffer, no_td = %d, last_td = %d\n",
515a7ee7a7dSMarius Strobl 			    sc->sc_no_td, sc->sc_last_td);
516a7ee7a7dSMarius Strobl 		}
517a7ee7a7dSMarius Strobl 
518df40efe1SJustin Hibbits 		m = if_dequeue(ifp);
5194d24901aSPedro F. Giffuni 		if (m == NULL)
520a7ee7a7dSMarius Strobl 			break;
521a7ee7a7dSMarius Strobl 
522a7ee7a7dSMarius Strobl 		/*
523a7ee7a7dSMarius Strobl 		 * If BPF is listening on this interface, let it see the packet
524a7ee7a7dSMarius Strobl 		 * before we commit it to the wire.
525a7ee7a7dSMarius Strobl 		 */
526a7ee7a7dSMarius Strobl 		BPF_MTAP(ifp, m);
527a7ee7a7dSMarius Strobl 
528a7ee7a7dSMarius Strobl 		/*
529a7ee7a7dSMarius Strobl 		 * Copy the mbuf chain into the transmit buffer.
530a7ee7a7dSMarius Strobl 		 */
531a7ee7a7dSMarius Strobl 		len = lance_put(sc, LE_TBUFADDR(sc, bix), m);
532a7ee7a7dSMarius Strobl 
533a7ee7a7dSMarius Strobl #ifdef LEDEBUG
534a7ee7a7dSMarius Strobl 		if (len > ETHERMTU + ETHER_HDR_LEN)
535a7ee7a7dSMarius Strobl 			if_printf(ifp, "packet length %d\n", len);
536a7ee7a7dSMarius Strobl #endif
537a7ee7a7dSMarius Strobl 
538a7ee7a7dSMarius Strobl 		/*
539a7ee7a7dSMarius Strobl 		 * Init transmit registers, and set transmit start flag.
540a7ee7a7dSMarius Strobl 		 */
541a7ee7a7dSMarius Strobl 		tmd.tmd1_bits = LE_T1_OWN | LE_T1_STP | LE_T1_ENP;
542a7ee7a7dSMarius Strobl 		tmd.tmd2 = -len | LE_XMD2_ONES;
543a7ee7a7dSMarius Strobl 		tmd.tmd3 = 0;
544a7ee7a7dSMarius Strobl 
545a7ee7a7dSMarius Strobl 		(*sc->sc_copytodesc)(sc, &tmd, rp, sizeof(tmd));
546a7ee7a7dSMarius Strobl 
547a7ee7a7dSMarius Strobl #ifdef LEDEBUG
548a7ee7a7dSMarius Strobl 		if (sc->sc_flags & LE_DEBUG)
54960c430f5SMarius Strobl 			am7990_xmit_print(sc, bix);
550a7ee7a7dSMarius Strobl #endif
551a7ee7a7dSMarius Strobl 
552a7ee7a7dSMarius Strobl 		(*sc->sc_wrcsr)(sc, LE_CSR0, LE_C0_INEA | LE_C0_TDMD);
5530c05ab41SMarius Strobl 		enq++;
554a7ee7a7dSMarius Strobl 
555a7ee7a7dSMarius Strobl 		if (++bix == sc->sc_ntbuf)
556a7ee7a7dSMarius Strobl 			bix = 0;
557a7ee7a7dSMarius Strobl 
558a7ee7a7dSMarius Strobl 		if (++sc->sc_no_td == sc->sc_ntbuf) {
559df40efe1SJustin Hibbits 			if_setdrvflagbits(ifp, IFF_DRV_OACTIVE, 0);
560a7ee7a7dSMarius Strobl 			break;
561a7ee7a7dSMarius Strobl 		}
562a7ee7a7dSMarius Strobl 	}
563a7ee7a7dSMarius Strobl 
564a7ee7a7dSMarius Strobl 	sc->sc_last_td = bix;
5650c05ab41SMarius Strobl 
5660c05ab41SMarius Strobl 	if (enq > 0)
567fc64bae4SMarius Strobl 		sc->sc_wdog_timer = 5;
568a7ee7a7dSMarius Strobl }
569a7ee7a7dSMarius Strobl 
570a7ee7a7dSMarius Strobl #ifdef LEDEBUG
571a7ee7a7dSMarius Strobl static void
am7990_recv_print(struct lance_softc * sc,int no)572a7ee7a7dSMarius Strobl am7990_recv_print(struct lance_softc *sc, int no)
573a7ee7a7dSMarius Strobl {
574df40efe1SJustin Hibbits 	if_t ifp = sc->sc_ifp;
575a7ee7a7dSMarius Strobl 	struct ether_header eh;
576a7ee7a7dSMarius Strobl 	struct lermd rmd;
577a7ee7a7dSMarius Strobl 	uint16_t len;
578a7ee7a7dSMarius Strobl 
579a7ee7a7dSMarius Strobl 	(*sc->sc_copyfromdesc)(sc, &rmd, LE_RMDADDR(sc, no), sizeof(rmd));
580a7ee7a7dSMarius Strobl 	len = rmd.rmd3;
581a7ee7a7dSMarius Strobl 	if_printf(ifp, "receive buffer %d, len = %d\n", no, len);
582a7ee7a7dSMarius Strobl 	if_printf(ifp, "status %04x\n", (*sc->sc_rdcsr)(sc, LE_CSR0));
583a7ee7a7dSMarius Strobl 	if_printf(ifp,
584a7ee7a7dSMarius Strobl 	    "ladr %04x, hadr %02x, flags %02x, bcnt %04x, mcnt %04x\n",
585a7ee7a7dSMarius Strobl 	    rmd.rmd0, rmd.rmd1_hadr, rmd.rmd1_bits, rmd.rmd2, rmd.rmd3);
586a7ee7a7dSMarius Strobl 	if (len - ETHER_CRC_LEN >= sizeof(eh)) {
587a7ee7a7dSMarius Strobl 		(*sc->sc_copyfrombuf)(sc, &eh, LE_RBUFADDR(sc, no), sizeof(eh));
588a7ee7a7dSMarius Strobl 		if_printf(ifp, "dst %s", ether_sprintf(eh.ether_dhost));
589a7ee7a7dSMarius Strobl 		printf(" src %s type %04x\n", ether_sprintf(eh.ether_shost),
590a7ee7a7dSMarius Strobl 		    ntohs(eh.ether_type));
591a7ee7a7dSMarius Strobl 	}
592a7ee7a7dSMarius Strobl }
593a7ee7a7dSMarius Strobl 
594a7ee7a7dSMarius Strobl static void
am7990_xmit_print(struct lance_softc * sc,int no)595a7ee7a7dSMarius Strobl am7990_xmit_print(struct lance_softc *sc, int no)
596a7ee7a7dSMarius Strobl {
597df40efe1SJustin Hibbits 	if_t ifp = sc->sc_ifp;
598a7ee7a7dSMarius Strobl 	struct ether_header eh;
599a7ee7a7dSMarius Strobl 	struct letmd tmd;
600a7ee7a7dSMarius Strobl 	uint16_t len;
601a7ee7a7dSMarius Strobl 
602a7ee7a7dSMarius Strobl 	(*sc->sc_copyfromdesc)(sc, &tmd, LE_TMDADDR(sc, no), sizeof(tmd));
603a7ee7a7dSMarius Strobl 	len = -tmd.tmd2;
604a7ee7a7dSMarius Strobl 	if_printf(ifp, "transmit buffer %d, len = %d\n", no, len);
605a7ee7a7dSMarius Strobl 	if_printf(ifp, "status %04x\n", (*sc->sc_rdcsr)(sc, LE_CSR0));
606a7ee7a7dSMarius Strobl 	if_printf(ifp,
607a7ee7a7dSMarius Strobl 	    "ladr %04x, hadr %02x, flags %02x, bcnt %04x, mcnt %04x\n",
608a7ee7a7dSMarius Strobl 	    tmd.tmd0, tmd.tmd1_hadr, tmd.tmd1_bits, tmd.tmd2, tmd.tmd3);
609a7ee7a7dSMarius Strobl 	if (len >= sizeof(eh)) {
610a7ee7a7dSMarius Strobl 		(*sc->sc_copyfrombuf)(sc, &eh, LE_TBUFADDR(sc, no), sizeof(eh));
611a7ee7a7dSMarius Strobl 		if_printf(ifp, "dst %s", ether_sprintf(eh.ether_dhost));
612a7ee7a7dSMarius Strobl 		printf(" src %s type %04x\n", ether_sprintf(eh.ether_shost),
613a7ee7a7dSMarius Strobl 		    ntohs(eh.ether_type));
614a7ee7a7dSMarius Strobl 	}
615a7ee7a7dSMarius Strobl }
616a7ee7a7dSMarius Strobl #endif /* LEDEBUG */
617