if_sq.c revision 1.1 1 1.1 thorpej /* $NetBSD: if_sq.c,v 1.1 2001/05/11 03:22:21 thorpej Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*
4 1.1 thorpej * Copyright (c) 2001 Rafal K. Boni
5 1.1 thorpej * Copyright (c) 1998, 1999, 2000 The NetBSD Foundation, Inc.
6 1.1 thorpej * All rights reserved.
7 1.1 thorpej *
8 1.1 thorpej * Portions of this code are derived from software contributed to The
9 1.1 thorpej * NetBSD Foundation by Jason R. Thorpe of the Numerical Aerospace
10 1.1 thorpej * Simulation Facility, NASA Ames Research Center.
11 1.1 thorpej *
12 1.1 thorpej * Redistribution and use in source and binary forms, with or without
13 1.1 thorpej * modification, are permitted provided that the following conditions
14 1.1 thorpej * are met:
15 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
16 1.1 thorpej * notice, this list of conditions and the following disclaimer.
17 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
18 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
19 1.1 thorpej * documentation and/or other materials provided with the distribution.
20 1.1 thorpej * 3. The name of the author may not be used to endorse or promote products
21 1.1 thorpej * derived from this software without specific prior written permission.
22 1.1 thorpej *
23 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24 1.1 thorpej * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 1.1 thorpej * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 1.1 thorpej * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27 1.1 thorpej * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 1.1 thorpej * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 1.1 thorpej * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 1.1 thorpej * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 1.1 thorpej * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 1.1 thorpej * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 1.1 thorpej */
34 1.1 thorpej
35 1.1 thorpej #include "opt_inet.h"
36 1.1 thorpej #include "opt_ns.h"
37 1.1 thorpej #include "bpfilter.h"
38 1.1 thorpej
39 1.1 thorpej #include <sys/param.h>
40 1.1 thorpej #include <sys/systm.h>
41 1.1 thorpej #include <sys/device.h>
42 1.1 thorpej #include <sys/callout.h>
43 1.1 thorpej #include <sys/mbuf.h>
44 1.1 thorpej #include <sys/malloc.h>
45 1.1 thorpej #include <sys/kernel.h>
46 1.1 thorpej #include <sys/socket.h>
47 1.1 thorpej #include <sys/ioctl.h>
48 1.1 thorpej #include <sys/errno.h>
49 1.1 thorpej #include <sys/syslog.h>
50 1.1 thorpej
51 1.1 thorpej #include <uvm/uvm_extern.h>
52 1.1 thorpej
53 1.1 thorpej #include <machine/endian.h>
54 1.1 thorpej
55 1.1 thorpej #include <net/if.h>
56 1.1 thorpej #include <net/if_dl.h>
57 1.1 thorpej #include <net/if_media.h>
58 1.1 thorpej #include <net/if_ether.h>
59 1.1 thorpej
60 1.1 thorpej #if NBPFILTER > 0
61 1.1 thorpej #include <net/bpf.h>
62 1.1 thorpej #endif
63 1.1 thorpej
64 1.1 thorpej #ifdef INET
65 1.1 thorpej #include <netinet/in.h>
66 1.1 thorpej #include <netinet/if_inarp.h>
67 1.1 thorpej #endif
68 1.1 thorpej
69 1.1 thorpej #ifdef NS
70 1.1 thorpej #include <netns/ns.h>
71 1.1 thorpej #include <netns/ns_if.h>
72 1.1 thorpej #endif
73 1.1 thorpej
74 1.1 thorpej /* XXXrkb: cheap hack until parents pass in DMA tags */
75 1.1 thorpej #define _SGIMIPS_BUS_DMA_PRIVATE
76 1.1 thorpej
77 1.1 thorpej #include <machine/bus.h>
78 1.1 thorpej #include <machine/arcs.h>
79 1.1 thorpej #include <machine/intr.h>
80 1.1 thorpej
81 1.1 thorpej #include <dev/ic/seeq8003reg.h>
82 1.1 thorpej
83 1.1 thorpej #include <sgimips/hpc/sqvar.h>
84 1.1 thorpej #include <sgimips/hpc/hpcvar.h>
85 1.1 thorpej #include <sgimips/hpc/hpcreg.h>
86 1.1 thorpej
87 1.1 thorpej #define static
88 1.1 thorpej
89 1.1 thorpej /*
90 1.1 thorpej * Short TODO list:
91 1.1 thorpej * (1) Do counters for bad-RX packets.
92 1.1 thorpej * (2) Inherit DMA tag via config machinery, don't hard-code it.
93 1.1 thorpej * (3) Allow multi-segment transmits, instead of copying to a single,
94 1.1 thorpej * contiguous mbuf.
95 1.1 thorpej * (4) Verify sq_stop() turns off enough stuff; I was still getting
96 1.1 thorpej * seeq interrupts after sq_stop().
97 1.1 thorpej * (5) Fix up printfs in driver (most should only fire ifdef SQ_DEBUG
98 1.1 thorpej * or something similar.
99 1.1 thorpej * (6) Implement EDLC modes: especially packet auto-pad and simplex
100 1.1 thorpej * mode.
101 1.1 thorpej * (7) Should the driver filter out its own transmissions in non-EDLC
102 1.1 thorpej * mode?
103 1.1 thorpej * (8) Multicast support -- multicast filter, address management, ...
104 1.1 thorpej * (9) Deal with RB0 (recv buffer overflow) on reception. Will need
105 1.1 thorpej * to figure out if RB0 is read-only as stated in one spot in the
106 1.1 thorpej * HPC spec or read-write (ie, is the 'write a one to clear it')
107 1.1 thorpej * the correct thing?
108 1.1 thorpej */
109 1.1 thorpej
110 1.1 thorpej static int sq_match(struct device *, struct cfdata *, void *);
111 1.1 thorpej static void sq_attach(struct device *, struct device *, void *);
112 1.1 thorpej static int sq_init(struct ifnet *);
113 1.1 thorpej static void sq_start(struct ifnet *);
114 1.1 thorpej static void sq_stop(struct ifnet *, int);
115 1.1 thorpej static void sq_watchdog(struct ifnet *);
116 1.1 thorpej static int sq_ioctl(struct ifnet *, u_long, caddr_t);
117 1.1 thorpej
118 1.1 thorpej static int sq_intr(void *);
119 1.1 thorpej static int sq_rxintr(struct sq_softc *);
120 1.1 thorpej static int sq_txintr(struct sq_softc *);
121 1.1 thorpej static void sq_reset(struct sq_softc *);
122 1.1 thorpej static int sq_add_rxbuf(struct sq_softc *, int);
123 1.1 thorpej static void sq_dump_buffer(u_int32_t addr, u_int32_t len);
124 1.1 thorpej
125 1.1 thorpej static void enaddr_aton(const char*, u_int8_t*);
126 1.1 thorpej
127 1.1 thorpej /* Actions */
128 1.1 thorpej #define SQ_RESET 1
129 1.1 thorpej #define SQ_ADD_TO_DMA 2
130 1.1 thorpej #define SQ_START_DMA 3
131 1.1 thorpej #define SQ_DONE_DMA 4
132 1.1 thorpej #define SQ_RESTART_DMA 5
133 1.1 thorpej #define SQ_TXINTR_ENTER 6
134 1.1 thorpej #define SQ_TXINTR_EXIT 7
135 1.1 thorpej #define SQ_TXINTR_BUSY 8
136 1.1 thorpej
137 1.1 thorpej struct sq_action_trace {
138 1.1 thorpej int action;
139 1.1 thorpej int bufno;
140 1.1 thorpej int status;
141 1.1 thorpej int freebuf;
142 1.1 thorpej };
143 1.1 thorpej
144 1.1 thorpej int sq_trace_idx = 0;
145 1.1 thorpej struct sq_action_trace sq_trace[100];
146 1.1 thorpej
147 1.1 thorpej void sq_trace_dump(struct sq_softc* sc);
148 1.1 thorpej
149 1.1 thorpej #define SQ_TRACE(act, buf, stat, free) do { \
150 1.1 thorpej sq_trace[sq_trace_idx].action = (act); \
151 1.1 thorpej sq_trace[sq_trace_idx].bufno = (buf); \
152 1.1 thorpej sq_trace[sq_trace_idx].status = (stat); \
153 1.1 thorpej sq_trace[sq_trace_idx].freebuf = (free); \
154 1.1 thorpej if (++sq_trace_idx == 100) { \
155 1.1 thorpej bzero(&sq_trace, sizeof(sq_trace)); \
156 1.1 thorpej sq_trace_idx = 0; \
157 1.1 thorpej } \
158 1.1 thorpej } while (0)
159 1.1 thorpej
160 1.1 thorpej struct cfattach sq_ca = {
161 1.1 thorpej sizeof(struct sq_softc), sq_match, sq_attach
162 1.1 thorpej };
163 1.1 thorpej
164 1.1 thorpej static int
165 1.1 thorpej sq_match(struct device *parent, struct cfdata *match, void *aux)
166 1.1 thorpej {
167 1.1 thorpej /* XXX! */
168 1.1 thorpej return 1;
169 1.1 thorpej }
170 1.1 thorpej
171 1.1 thorpej static void
172 1.1 thorpej sq_attach(struct device *parent, struct device *self, void *aux)
173 1.1 thorpej {
174 1.1 thorpej int i, err;
175 1.1 thorpej char* macaddr;
176 1.1 thorpej struct sq_softc *sc = (void *)self;
177 1.1 thorpej struct hpc_attach_args *haa = aux;
178 1.1 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
179 1.1 thorpej
180 1.1 thorpej sc->sc_hpct = haa->ha_iot;
181 1.1 thorpej if ((err = bus_space_subregion(haa->ha_iot, haa->ha_ioh,
182 1.1 thorpej HPC_ENET_REGS,
183 1.1 thorpej HPC_ENET_REGS_SIZE,
184 1.1 thorpej &sc->sc_hpch)) != 0) {
185 1.1 thorpej printf(": unable to map HPC DMA registers, error = %d\n", err);
186 1.1 thorpej goto fail_0;
187 1.1 thorpej }
188 1.1 thorpej
189 1.1 thorpej sc->sc_regt = haa->ha_iot;
190 1.1 thorpej if ((err = bus_space_subregion(haa->ha_iot, haa->ha_ioh,
191 1.1 thorpej HPC_ENET_DEVREGS,
192 1.1 thorpej HPC_ENET_DEVREGS_SIZE,
193 1.1 thorpej &sc->sc_regh)) != 0) {
194 1.1 thorpej printf(": unable to map Seeq registers, error = %d\n", err);
195 1.1 thorpej goto fail_0;
196 1.1 thorpej }
197 1.1 thorpej
198 1.1 thorpej /* XXXrkb: should be inherited from parent bus, but works for now */
199 1.1 thorpej sc->sc_dmat = &sgimips_default_bus_dma_tag;
200 1.1 thorpej
201 1.1 thorpej if ((err = bus_dmamem_alloc(sc->sc_dmat, sizeof(struct sq_control),
202 1.1 thorpej PAGE_SIZE, PAGE_SIZE, &sc->sc_cdseg,
203 1.1 thorpej 1, &sc->sc_ncdseg, BUS_DMA_NOWAIT)) != 0) {
204 1.1 thorpej printf(": unable to allocate control data, error = %d\n", err);
205 1.1 thorpej goto fail_0;
206 1.1 thorpej }
207 1.1 thorpej
208 1.1 thorpej if ((err = bus_dmamem_map(sc->sc_dmat, &sc->sc_cdseg, sc->sc_ncdseg,
209 1.1 thorpej sizeof(struct sq_control),
210 1.1 thorpej (caddr_t *)&sc->sc_control,
211 1.1 thorpej BUS_DMA_NOWAIT | BUS_DMA_COHERENT)) != 0) {
212 1.1 thorpej printf(": unable to map control data, error = %d\n", err);
213 1.1 thorpej goto fail_1;
214 1.1 thorpej }
215 1.1 thorpej
216 1.1 thorpej if ((err = bus_dmamap_create(sc->sc_dmat, sizeof(struct sq_control),
217 1.1 thorpej 1, sizeof(struct sq_control), PAGE_SIZE,
218 1.1 thorpej BUS_DMA_NOWAIT, &sc->sc_cdmap)) != 0) {
219 1.1 thorpej printf(": unable to create DMA map for control data, error "
220 1.1 thorpej "= %d\n", err);
221 1.1 thorpej goto fail_2;
222 1.1 thorpej }
223 1.1 thorpej
224 1.1 thorpej if ((err = bus_dmamap_load(sc->sc_dmat, sc->sc_cdmap, sc->sc_control,
225 1.1 thorpej sizeof(struct sq_control),
226 1.1 thorpej NULL, BUS_DMA_NOWAIT)) != 0) {
227 1.1 thorpej printf(": unable to load DMA map for control data, error "
228 1.1 thorpej "= %d\n", err);
229 1.1 thorpej goto fail_3;
230 1.1 thorpej }
231 1.1 thorpej
232 1.1 thorpej bzero(sc->sc_control, sizeof(struct sq_control));
233 1.1 thorpej
234 1.1 thorpej /* Create transmit buffer DMA maps */
235 1.1 thorpej for (i = 0; i < SQ_NTXDESC; i++) {
236 1.1 thorpej if ((err = bus_dmamap_create(sc->sc_dmat, MCLBYTES, 1, MCLBYTES,
237 1.1 thorpej 0, BUS_DMA_NOWAIT,
238 1.1 thorpej &sc->sc_txmap[i])) != 0) {
239 1.1 thorpej printf(": unable to create tx DMA map %d, error = %d\n",
240 1.1 thorpej i, err);
241 1.1 thorpej goto fail_4;
242 1.1 thorpej }
243 1.1 thorpej }
244 1.1 thorpej
245 1.1 thorpej /* Create transmit buffer DMA maps */
246 1.1 thorpej for (i = 0; i < SQ_NRXDESC; i++) {
247 1.1 thorpej if ((err = bus_dmamap_create(sc->sc_dmat, MCLBYTES, 1, MCLBYTES,
248 1.1 thorpej 0, BUS_DMA_NOWAIT,
249 1.1 thorpej &sc->sc_rxmap[i])) != 0) {
250 1.1 thorpej printf(": unable to create rx DMA map %d, error = %d\n",
251 1.1 thorpej i, err);
252 1.1 thorpej goto fail_5;
253 1.1 thorpej }
254 1.1 thorpej }
255 1.1 thorpej
256 1.1 thorpej /* Pre-allocate the receive buffers. */
257 1.1 thorpej for (i = 0; i < SQ_NRXDESC; i++) {
258 1.1 thorpej if ((err = sq_add_rxbuf(sc, i)) != 0) {
259 1.1 thorpej printf(": unable to allocate or map rx buffer %d\n,"
260 1.1 thorpej " error = %d\n", i, err);
261 1.1 thorpej goto fail_6;
262 1.1 thorpej }
263 1.1 thorpej }
264 1.1 thorpej
265 1.1 thorpej if ((macaddr = ARCS->GetEnvironmentVariable("eaddr")) == NULL) {
266 1.1 thorpej printf(": unable to get MAC address!\n");
267 1.1 thorpej goto fail_6;
268 1.1 thorpej }
269 1.1 thorpej
270 1.1 thorpej if ((cpu_intr_establish(3, IPL_NET, sq_intr, sc)) == NULL) {
271 1.1 thorpej printf(": unable to establish interrupt!\n");
272 1.1 thorpej goto fail_6;
273 1.1 thorpej }
274 1.1 thorpej
275 1.1 thorpej
276 1.1 thorpej printf(": SGI Seeq-8003\n");
277 1.1 thorpej
278 1.1 thorpej enaddr_aton(macaddr, sc->sc_enaddr);
279 1.1 thorpej
280 1.1 thorpej printf("%s: station address %s\n", sc->sc_dev.dv_xname,
281 1.1 thorpej ether_sprintf(sc->sc_enaddr));
282 1.1 thorpej
283 1.1 thorpej bcopy(sc->sc_dev.dv_xname, ifp->if_xname, IFNAMSIZ);
284 1.1 thorpej ifp->if_softc = sc;
285 1.1 thorpej ifp->if_mtu = ETHERMTU;
286 1.1 thorpej ifp->if_init = sq_init;
287 1.1 thorpej ifp->if_stop = sq_stop;
288 1.1 thorpej ifp->if_start = sq_start;
289 1.1 thorpej ifp->if_ioctl = sq_ioctl;
290 1.1 thorpej ifp->if_watchdog = sq_watchdog;
291 1.1 thorpej ifp->if_flags =
292 1.1 thorpej IFF_BROADCAST | IFF_SIMPLEX | IFF_NOTRAILERS | IFF_MULTICAST;
293 1.1 thorpej IFQ_SET_READY(&ifp->if_snd);
294 1.1 thorpej
295 1.1 thorpej if_attach(ifp);
296 1.1 thorpej ether_ifattach(ifp, sc->sc_enaddr);
297 1.1 thorpej
298 1.1 thorpej bzero(&sq_trace, sizeof(sq_trace));
299 1.1 thorpej /* Done! */
300 1.1 thorpej return;
301 1.1 thorpej
302 1.1 thorpej /*
303 1.1 thorpej * Free any resources we've allocated during the failed attach
304 1.1 thorpej * attempt. Do this in reverse order and fall through.
305 1.1 thorpej */
306 1.1 thorpej fail_6:
307 1.1 thorpej for (i = 0; i < SQ_NRXDESC; i++) {
308 1.1 thorpej if (sc->sc_rxmbuf[i] != NULL) {
309 1.1 thorpej bus_dmamap_unload(sc->sc_dmat, sc->sc_rxmap[i]);
310 1.1 thorpej m_freem(sc->sc_rxmbuf[i]);
311 1.1 thorpej }
312 1.1 thorpej }
313 1.1 thorpej fail_5:
314 1.1 thorpej for (i = 0; i < SQ_NRXDESC; i++) {
315 1.1 thorpej if (sc->sc_rxmap[i] != NULL)
316 1.1 thorpej bus_dmamap_destroy(sc->sc_dmat, sc->sc_rxmap[i]);
317 1.1 thorpej }
318 1.1 thorpej fail_4:
319 1.1 thorpej for (i = 0; i < SQ_NTXDESC; i++) {
320 1.1 thorpej if (sc->sc_txmap[i] != NULL)
321 1.1 thorpej bus_dmamap_destroy(sc->sc_dmat, sc->sc_txmap[i]);
322 1.1 thorpej }
323 1.1 thorpej bus_dmamap_unload(sc->sc_dmat, sc->sc_cdmap);
324 1.1 thorpej fail_3:
325 1.1 thorpej bus_dmamap_destroy(sc->sc_dmat, sc->sc_cdmap);
326 1.1 thorpej fail_2:
327 1.1 thorpej bus_dmamem_unmap(sc->sc_dmat, (caddr_t) sc->sc_control,
328 1.1 thorpej sizeof(struct sq_control));
329 1.1 thorpej fail_1:
330 1.1 thorpej bus_dmamem_free(sc->sc_dmat, &sc->sc_cdseg, sc->sc_ncdseg);
331 1.1 thorpej fail_0:
332 1.1 thorpej return;
333 1.1 thorpej }
334 1.1 thorpej
335 1.1 thorpej /* Set up data to get the interface up and running. */
336 1.1 thorpej int
337 1.1 thorpej sq_init(struct ifnet *ifp)
338 1.1 thorpej {
339 1.1 thorpej int i;
340 1.1 thorpej u_int32_t reg;
341 1.1 thorpej struct sq_softc *sc = ifp->if_softc;
342 1.1 thorpej
343 1.1 thorpej /* Cancel any in-progress I/O */
344 1.1 thorpej sq_stop(ifp, 0);
345 1.1 thorpej
346 1.1 thorpej sc->sc_nextrx = 0;
347 1.1 thorpej
348 1.1 thorpej sc->sc_nfreetx = SQ_NTXDESC;
349 1.1 thorpej sc->sc_nexttx = sc->sc_prevtx = 0;
350 1.1 thorpej
351 1.1 thorpej SQ_TRACE(SQ_RESET, 0, 0, sc->sc_nfreetx);
352 1.1 thorpej
353 1.1 thorpej /* Set into 8003 mode, bank 0 to program ethernet address */
354 1.1 thorpej bus_space_write_1(sc->sc_regt, sc->sc_regh, SEEQ_TXCMD, TXCMD_BANK0);
355 1.1 thorpej
356 1.1 thorpej /* Now write the address */
357 1.1 thorpej for (i = 0; i < ETHER_ADDR_LEN; i++)
358 1.1 thorpej bus_space_write_1(sc->sc_regt, sc->sc_regh, i, sc->sc_enaddr[i]);
359 1.1 thorpej
360 1.1 thorpej /* Set up Seeq transmit command register */
361 1.1 thorpej bus_space_write_1(sc->sc_regt, sc->sc_regh, SEEQ_TXCMD,
362 1.1 thorpej TXCMD_IE_UFLOW |
363 1.1 thorpej TXCMD_IE_COLL |
364 1.1 thorpej TXCMD_IE_16COLL |
365 1.1 thorpej TXCMD_IE_GOOD);
366 1.1 thorpej
367 1.1 thorpej /* And the receive command register */
368 1.1 thorpej bus_space_write_1(sc->sc_regt, sc->sc_regh, SEEQ_RXCMD,
369 1.1 thorpej RXCMD_REC_BROAD |
370 1.1 thorpej RXCMD_IE_CRC |
371 1.1 thorpej RXCMD_IE_DRIB |
372 1.1 thorpej RXCMD_IE_SHORT |
373 1.1 thorpej RXCMD_IE_END |
374 1.1 thorpej RXCMD_IE_GOOD);
375 1.1 thorpej
376 1.1 thorpej /* Set up HPC ethernet DMA config */
377 1.1 thorpej reg = bus_space_read_4(sc->sc_hpct, sc->sc_hpch, HPC_ENETR_DMACFG);
378 1.1 thorpej bus_space_write_4(sc->sc_hpct, sc->sc_hpch, HPC_ENETR_DMACFG,
379 1.1 thorpej reg | 0xe000);
380 1.1 thorpej
381 1.1 thorpej /* Pass the start of the receive ring to the HPC */
382 1.1 thorpej bus_space_write_4(sc->sc_hpct, sc->sc_hpch, HPC_ENETR_NDBP,
383 1.1 thorpej SQ_CDRXADDR(sc, 0));
384 1.1 thorpej
385 1.1 thorpej /* And turn on the HPC ethernet receive channel */
386 1.1 thorpej bus_space_write_4(sc->sc_hpct, sc->sc_hpch, HPC_ENETR_CTL, 0x200);
387 1.1 thorpej
388 1.1 thorpej ifp->if_flags |= IFF_RUNNING;
389 1.1 thorpej ifp->if_flags &= ~IFF_OACTIVE;
390 1.1 thorpej
391 1.1 thorpej return 0;
392 1.1 thorpej }
393 1.1 thorpej
394 1.1 thorpej int
395 1.1 thorpej sq_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
396 1.1 thorpej {
397 1.1 thorpej int s, error = 0;
398 1.1 thorpej
399 1.1 thorpej s = splnet();
400 1.1 thorpej
401 1.1 thorpej error = ether_ioctl(ifp, cmd, data);
402 1.1 thorpej if (error == ENETRESET) {
403 1.1 thorpej /*
404 1.1 thorpej * Multicast list has changed; set the hardware filter
405 1.1 thorpej * accordingly.
406 1.1 thorpej */
407 1.1 thorpej error = 0;
408 1.1 thorpej }
409 1.1 thorpej
410 1.1 thorpej splx(s);
411 1.1 thorpej return (error);
412 1.1 thorpej }
413 1.1 thorpej
414 1.1 thorpej void
415 1.1 thorpej sq_start(struct ifnet *ifp)
416 1.1 thorpej {
417 1.1 thorpej struct sq_softc *sc = ifp->if_softc;
418 1.1 thorpej u_int32_t status;
419 1.1 thorpej struct mbuf *m0, *m;
420 1.1 thorpej bus_dmamap_t dmamap;
421 1.1 thorpej int err, totlen, nexttx, firsttx, lasttx, ofree, seg;
422 1.1 thorpej
423 1.1 thorpej if ((ifp->if_flags & (IFF_RUNNING|IFF_OACTIVE)) != IFF_RUNNING)
424 1.1 thorpej return;
425 1.1 thorpej
426 1.1 thorpej /*
427 1.1 thorpej * Remember the previous number of free descriptors and
428 1.1 thorpej * the first descriptor we'll use.
429 1.1 thorpej */
430 1.1 thorpej ofree = sc->sc_nfreetx;
431 1.1 thorpej firsttx = sc->sc_nexttx;
432 1.1 thorpej
433 1.1 thorpej /*
434 1.1 thorpej * Loop through the send queue, setting up transmit descriptors
435 1.1 thorpej * until we drain the queue, or use up all available transmit
436 1.1 thorpej * descriptors.
437 1.1 thorpej */
438 1.1 thorpej while (sc->sc_nfreetx != 0) {
439 1.1 thorpej /*
440 1.1 thorpej * Grab a packet off the queue.
441 1.1 thorpej */
442 1.1 thorpej IFQ_POLL(&ifp->if_snd, m0);
443 1.1 thorpej if (m0 == NULL)
444 1.1 thorpej break;
445 1.1 thorpej m = NULL;
446 1.1 thorpej
447 1.1 thorpej dmamap = sc->sc_txmap[sc->sc_nexttx];
448 1.1 thorpej
449 1.1 thorpej /*
450 1.1 thorpej * Load the DMA map. If this fails, the packet either
451 1.1 thorpej * didn't fit in the alloted number of segments, or we were
452 1.1 thorpej * short on resources. In this case, we'll copy and try
453 1.1 thorpej * again.
454 1.1 thorpej */
455 1.1 thorpej if (bus_dmamap_load_mbuf(sc->sc_dmat, dmamap, m0,
456 1.1 thorpej BUS_DMA_NOWAIT) != 0) {
457 1.1 thorpej MGETHDR(m, M_DONTWAIT, MT_DATA);
458 1.1 thorpej if (m == NULL) {
459 1.1 thorpej printf("%s: unable to allocate Tx mbuf\n",
460 1.1 thorpej sc->sc_dev.dv_xname);
461 1.1 thorpej break;
462 1.1 thorpej }
463 1.1 thorpej if (m0->m_pkthdr.len > MHLEN) {
464 1.1 thorpej MCLGET(m, M_DONTWAIT);
465 1.1 thorpej if ((m->m_flags & M_EXT) == 0) {
466 1.1 thorpej printf("%s: unable to allocate Tx "
467 1.1 thorpej "cluster\n", sc->sc_dev.dv_xname);
468 1.1 thorpej m_freem(m);
469 1.1 thorpej break;
470 1.1 thorpej }
471 1.1 thorpej }
472 1.1 thorpej
473 1.1 thorpej m_copydata(m0, 0, m0->m_pkthdr.len, mtod(m, caddr_t));
474 1.1 thorpej m->m_pkthdr.len = m->m_len = m0->m_pkthdr.len;
475 1.1 thorpej
476 1.1 thorpej if ((err = bus_dmamap_load_mbuf(sc->sc_dmat, dmamap,
477 1.1 thorpej m, BUS_DMA_NOWAIT)) != 0) {
478 1.1 thorpej printf("%s: unable to load Tx buffer, "
479 1.1 thorpej "error = %d\n", sc->sc_dev.dv_xname, err);
480 1.1 thorpej break;
481 1.1 thorpej }
482 1.1 thorpej }
483 1.1 thorpej
484 1.1 thorpej /*
485 1.1 thorpej * Ensure we have enough descriptors free to describe
486 1.1 thorpej * the packet.
487 1.1 thorpej */
488 1.1 thorpej if (dmamap->dm_nsegs > sc->sc_nfreetx) {
489 1.1 thorpej /*
490 1.1 thorpej * Not enough free descriptors to transmit this
491 1.1 thorpej * packet. We haven't committed to anything yet,
492 1.1 thorpej * so just unload the DMA map, put the packet
493 1.1 thorpej * back on the queue, and punt. Notify the upper
494 1.1 thorpej * layer that there are no more slots left.
495 1.1 thorpej *
496 1.1 thorpej * XXX We could allocate an mbuf and copy, but
497 1.1 thorpej * XXX it is worth it?
498 1.1 thorpej */
499 1.1 thorpej ifp->if_flags |= IFF_OACTIVE;
500 1.1 thorpej bus_dmamap_unload(sc->sc_dmat, dmamap);
501 1.1 thorpej if (m != NULL)
502 1.1 thorpej m_freem(m);
503 1.1 thorpej break;
504 1.1 thorpej }
505 1.1 thorpej
506 1.1 thorpej IFQ_DEQUEUE(&ifp->if_snd, m0);
507 1.1 thorpej if (m != NULL) {
508 1.1 thorpej m_freem(m0);
509 1.1 thorpej m0 = m;
510 1.1 thorpej }
511 1.1 thorpej
512 1.1 thorpej /*
513 1.1 thorpej * WE ARE NOW COMMITTED TO TRANSMITTING THE PACKET.
514 1.1 thorpej */
515 1.1 thorpej
516 1.1 thorpej /* Sync the DMA map. */
517 1.1 thorpej bus_dmamap_sync(sc->sc_dmat, dmamap, 0, dmamap->dm_mapsize,
518 1.1 thorpej BUS_DMASYNC_PREWRITE);
519 1.1 thorpej
520 1.1 thorpej /*
521 1.1 thorpej * Initialize the transmit descriptors.
522 1.1 thorpej */
523 1.1 thorpej for (nexttx = sc->sc_nexttx, seg = 0, totlen = 0;
524 1.1 thorpej seg < dmamap->dm_nsegs;
525 1.1 thorpej seg++, nexttx = SQ_NEXTTX(nexttx)) {
526 1.1 thorpej sc->sc_txdesc[nexttx].hdd_bufptr =
527 1.1 thorpej dmamap->dm_segs[seg].ds_addr;
528 1.1 thorpej sc->sc_txdesc[nexttx].hdd_ctl =
529 1.1 thorpej dmamap->dm_segs[seg].ds_len;
530 1.1 thorpej sc->sc_txdesc[nexttx].hdd_descptr=
531 1.1 thorpej SQ_CDTXADDR(sc, SQ_NEXTTX(nexttx));
532 1.1 thorpej lasttx = nexttx;
533 1.1 thorpej totlen += dmamap->dm_segs[seg].ds_len;
534 1.1 thorpej }
535 1.1 thorpej
536 1.1 thorpej /* Last descriptor gets end-of-packet */
537 1.1 thorpej sc->sc_txdesc[lasttx].hdd_ctl |= HDD_CTL_EOPACKET;
538 1.1 thorpej
539 1.1 thorpej /* XXXrkb: if not EDLC, pad to min len manually */
540 1.1 thorpej if (totlen < ETHER_MIN_LEN) {
541 1.1 thorpej sc->sc_txdesc[lasttx].hdd_ctl += (ETHER_MIN_LEN - totlen);
542 1.1 thorpej totlen = ETHER_MIN_LEN;
543 1.1 thorpej }
544 1.1 thorpej
545 1.1 thorpej #if 0
546 1.1 thorpej printf("%s: transmit %d-%d, len %d\n", sc->sc_dev.dv_xname,
547 1.1 thorpej sc->sc_nexttx, lasttx,
548 1.1 thorpej totlen);
549 1.1 thorpej #endif
550 1.1 thorpej
551 1.1 thorpej if (ifp->if_flags & IFF_DEBUG) {
552 1.1 thorpej printf(" transmit chain:\n");
553 1.1 thorpej for (seg = sc->sc_nexttx;; seg = SQ_NEXTTX(seg)) {
554 1.1 thorpej printf(" descriptor %d:\n", seg);
555 1.1 thorpej printf(" hdd_bufptr: 0x%08x\n",
556 1.1 thorpej sc->sc_txdesc[seg].hdd_bufptr);
557 1.1 thorpej printf(" hdd_ctl: 0x%08x\n",
558 1.1 thorpej sc->sc_txdesc[seg].hdd_ctl);
559 1.1 thorpej printf(" hdd_descptr: 0x%08x\n",
560 1.1 thorpej sc->sc_txdesc[seg].hdd_descptr);
561 1.1 thorpej
562 1.1 thorpej if (seg == lasttx)
563 1.1 thorpej break;
564 1.1 thorpej }
565 1.1 thorpej }
566 1.1 thorpej
567 1.1 thorpej /* Sync the descriptors we're using. */
568 1.1 thorpej SQ_CDTXSYNC(sc, sc->sc_nexttx, dmamap->dm_nsegs,
569 1.1 thorpej BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
570 1.1 thorpej
571 1.1 thorpej /* Store a pointer to the packet so we can free it later */
572 1.1 thorpej sc->sc_txmbuf[sc->sc_nexttx] = m0;
573 1.1 thorpej
574 1.1 thorpej /* Advance the tx pointer. */
575 1.1 thorpej sc->sc_nfreetx -= dmamap->dm_nsegs;
576 1.1 thorpej sc->sc_nexttx = nexttx;
577 1.1 thorpej
578 1.1 thorpej #if NBPFILTER > 0
579 1.1 thorpej /*
580 1.1 thorpej * Pass the packet to any BPF listeners.
581 1.1 thorpej */
582 1.1 thorpej if (ifp->if_bpf)
583 1.1 thorpej bpf_mtap(ifp->if_bpf, m0);
584 1.1 thorpej #endif /* NBPFILTER > 0 */
585 1.1 thorpej }
586 1.1 thorpej
587 1.1 thorpej /* All transmit descriptors used up, let upper layers know */
588 1.1 thorpej if (sc->sc_nfreetx == 0)
589 1.1 thorpej ifp->if_flags |= IFF_OACTIVE;
590 1.1 thorpej
591 1.1 thorpej if (sc->sc_nfreetx != ofree) {
592 1.1 thorpej #if 0
593 1.1 thorpej printf("%s: %d packets enqueued, first %d, INTR on %d\n",
594 1.1 thorpej sc->sc_dev.dv_xname, lasttx - firsttx + 1,
595 1.1 thorpej firsttx, lasttx);
596 1.1 thorpej #endif
597 1.1 thorpej
598 1.1 thorpej /*
599 1.1 thorpej * Cause a transmit interrupt to happen on the
600 1.1 thorpej * last packet we enqueued, mark it as the last
601 1.1 thorpej * descriptor.
602 1.1 thorpej */
603 1.1 thorpej sc->sc_txdesc[lasttx].hdd_ctl |= (HDD_CTL_INTR |
604 1.1 thorpej HDD_CTL_EOCHAIN);
605 1.1 thorpej SQ_CDTXSYNC(sc, lasttx, 1,
606 1.1 thorpej BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
607 1.1 thorpej
608 1.1 thorpej /*
609 1.1 thorpej * There is a potential race condition here if the HPC
610 1.1 thorpej * DMA channel is active and we try and either update
611 1.1 thorpej * the 'next descriptor' pointer in the HPC PIO space
612 1.1 thorpej * or the 'next descriptor' pointer in a previous desc-
613 1.1 thorpej * riptor.
614 1.1 thorpej *
615 1.1 thorpej * To avoid this, if the channel is active, we rely on
616 1.1 thorpej * the transmit interrupt routine noticing that there
617 1.1 thorpej * are more packets to send and restarting the HPC DMA
618 1.1 thorpej * engine, rather than mucking with the DMA state here.
619 1.1 thorpej */
620 1.1 thorpej status = bus_space_read_4(sc->sc_hpct, sc->sc_hpch,
621 1.1 thorpej HPC_ENETX_CTL);
622 1.1 thorpej
623 1.1 thorpej if ((status & 0x200) != 0) {
624 1.1 thorpej SQ_TRACE(SQ_ADD_TO_DMA, firsttx, status, sc->sc_nfreetx);
625 1.1 thorpej
626 1.1 thorpej sc->sc_txdesc[SQ_PREVTX(firsttx)].hdd_ctl &=
627 1.1 thorpej ~HDD_CTL_EOCHAIN;
628 1.1 thorpej SQ_CDTXSYNC(sc, SQ_PREVTX(firsttx), 1,
629 1.1 thorpej BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
630 1.1 thorpej } else {
631 1.1 thorpej SQ_TRACE(SQ_START_DMA, firsttx, status, sc->sc_nfreetx);
632 1.1 thorpej
633 1.1 thorpej bus_space_write_4(sc->sc_hpct, sc->sc_hpch,
634 1.1 thorpej HPC_ENETX_NDBP, SQ_CDTXADDR(sc, firsttx));
635 1.1 thorpej
636 1.1 thorpej /* Kick DMA channel into life */
637 1.1 thorpej bus_space_write_4(sc->sc_hpct, sc->sc_hpch,
638 1.1 thorpej HPC_ENETX_CTL, 0x200);
639 1.1 thorpej
640 1.1 thorpej /* Set a watchdog timer in case the chip flakes out. */
641 1.1 thorpej ifp->if_timer = 5;
642 1.1 thorpej }
643 1.1 thorpej }
644 1.1 thorpej }
645 1.1 thorpej
646 1.1 thorpej void
647 1.1 thorpej sq_stop(struct ifnet *ifp, int disable)
648 1.1 thorpej {
649 1.1 thorpej int i;
650 1.1 thorpej struct sq_softc *sc = ifp->if_softc;
651 1.1 thorpej
652 1.1 thorpej for (i =0; i < SQ_NTXDESC; i++) {
653 1.1 thorpej if (sc->sc_txmbuf[i] != NULL) {
654 1.1 thorpej bus_dmamap_unload(sc->sc_dmat, sc->sc_txmap[i]);
655 1.1 thorpej m_freem(sc->sc_txmbuf[i]);
656 1.1 thorpej sc->sc_txmbuf[i] = NULL;
657 1.1 thorpej }
658 1.1 thorpej }
659 1.1 thorpej
660 1.1 thorpej /* Clear Seeq transmit/receive command registers */
661 1.1 thorpej bus_space_write_1(sc->sc_regt, sc->sc_regh, SEEQ_TXCMD, 0);
662 1.1 thorpej bus_space_write_1(sc->sc_regt, sc->sc_regh, SEEQ_RXCMD, 0);
663 1.1 thorpej
664 1.1 thorpej sq_reset(sc);
665 1.1 thorpej
666 1.1 thorpej ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
667 1.1 thorpej ifp->if_timer = 0;
668 1.1 thorpej }
669 1.1 thorpej
670 1.1 thorpej /* Device timeout/watchdog routine. */
671 1.1 thorpej void
672 1.1 thorpej sq_watchdog(struct ifnet *ifp)
673 1.1 thorpej {
674 1.1 thorpej u_int32_t status;
675 1.1 thorpej struct sq_softc *sc = ifp->if_softc;
676 1.1 thorpej
677 1.1 thorpej status = bus_space_read_4(sc->sc_hpct, sc->sc_hpch, HPC_ENETX_CTL);
678 1.1 thorpej log(LOG_ERR, "%s: device timeout (prev %d, next %d, free %d, "
679 1.1 thorpej "status %08x)\n", sc->sc_dev.dv_xname, sc->sc_prevtx,
680 1.1 thorpej sc->sc_nexttx, sc->sc_nfreetx, status);
681 1.1 thorpej
682 1.1 thorpej sq_trace_dump(sc);
683 1.1 thorpej
684 1.1 thorpej bzero(&sq_trace, sizeof(sq_trace));
685 1.1 thorpej sq_trace_idx = 0;
686 1.1 thorpej
687 1.1 thorpej ++ifp->if_oerrors;
688 1.1 thorpej
689 1.1 thorpej sq_init(ifp);
690 1.1 thorpej }
691 1.1 thorpej
692 1.1 thorpej void sq_trace_dump(struct sq_softc* sc)
693 1.1 thorpej {
694 1.1 thorpej int i;
695 1.1 thorpej
696 1.1 thorpej for(i = 0; i < sq_trace_idx; i++) {
697 1.1 thorpej printf("%s: [%d] action %d, buf %d, free %d, status %08x\n",
698 1.1 thorpej sc->sc_dev.dv_xname, i, sq_trace[i].action,
699 1.1 thorpej sq_trace[i].bufno, sq_trace[i].freebuf,
700 1.1 thorpej sq_trace[i].status);
701 1.1 thorpej }
702 1.1 thorpej }
703 1.1 thorpej
704 1.1 thorpej static int
705 1.1 thorpej sq_intr(void * arg)
706 1.1 thorpej {
707 1.1 thorpej struct sq_softc *sc = arg;
708 1.1 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
709 1.1 thorpej int handled = 0;
710 1.1 thorpej u_int32_t stat;
711 1.1 thorpej
712 1.1 thorpej stat = bus_space_read_4(sc->sc_hpct, sc->sc_hpch, HPC_ENETR_RESET);
713 1.1 thorpej
714 1.1 thorpej if ((stat & 2) == 0) {
715 1.1 thorpej printf("%s: Unexpected interrupt!\n", sc->sc_dev.dv_xname);
716 1.1 thorpej return 0;
717 1.1 thorpej }
718 1.1 thorpej
719 1.1 thorpej bus_space_write_4(sc->sc_hpct, sc->sc_hpch, HPC_ENETR_RESET, 2);
720 1.1 thorpej
721 1.1 thorpej /*
722 1.1 thorpej * If the interface isn't running, the interrupt couldn't
723 1.1 thorpej * possibly have come from us.
724 1.1 thorpej */
725 1.1 thorpej if ((ifp->if_flags & IFF_RUNNING) == 0)
726 1.1 thorpej return 0;
727 1.1 thorpej
728 1.1 thorpej /* Always check for received packets */
729 1.1 thorpej if (sq_rxintr(sc) != 0)
730 1.1 thorpej handled++;
731 1.1 thorpej
732 1.1 thorpej /* Only handle transmit interrupts if we actually sent something */
733 1.1 thorpej if (sc->sc_nfreetx < SQ_NTXDESC) {
734 1.1 thorpej sq_txintr(sc);
735 1.1 thorpej handled++;
736 1.1 thorpej }
737 1.1 thorpej
738 1.1 thorpej #if NRND > 0
739 1.1 thorpej if (handled)
740 1.1 thorpej rnd_add_uint32(&sc->sc_rnd_source, status);
741 1.1 thorpej #endif
742 1.1 thorpej return (handled);
743 1.1 thorpej }
744 1.1 thorpej
745 1.1 thorpej static int
746 1.1 thorpej sq_rxintr(struct sq_softc *sc)
747 1.1 thorpej {
748 1.1 thorpej int count = 0;
749 1.1 thorpej struct mbuf* m;
750 1.1 thorpej int i, framelen;
751 1.1 thorpej u_int8_t pktstat;
752 1.1 thorpej u_int32_t status;
753 1.1 thorpej int new_end, orig_end;
754 1.1 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
755 1.1 thorpej
756 1.1 thorpej for(i = sc->sc_nextrx;; i = SQ_NEXTRX(i)) {
757 1.1 thorpej SQ_CDRXSYNC(sc, i, BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
758 1.1 thorpej
759 1.1 thorpej /* If this is a CPU-owned buffer, we're at the end of the list */
760 1.1 thorpej if (sc->sc_rxdesc[i].hdd_ctl & HDD_CTL_OWN) {
761 1.1 thorpej u_int32_t reg;
762 1.1 thorpej
763 1.1 thorpej reg = bus_space_read_4(sc->sc_hpct, sc->sc_hpch, HPC_ENETR_CTL);
764 1.1 thorpej #if 0
765 1.1 thorpej printf("%s: rxintr: done at %d (ctl %08x)\n",
766 1.1 thorpej sc->sc_dev.dv_xname, i, reg);
767 1.1 thorpej #endif
768 1.1 thorpej break;
769 1.1 thorpej }
770 1.1 thorpej
771 1.1 thorpej count++;
772 1.1 thorpej
773 1.1 thorpej m = sc->sc_rxmbuf[i];
774 1.1 thorpej framelen = m->m_ext.ext_size -
775 1.1 thorpej HDD_CTL_BYTECNT(sc->sc_rxdesc[i].hdd_ctl) - 3;
776 1.1 thorpej
777 1.1 thorpej /* Now sync the actual packet data */
778 1.1 thorpej bus_dmamap_sync(sc->sc_dmat, sc->sc_rxmap[i], 0,
779 1.1 thorpej sc->sc_rxmap[i]->dm_mapsize, BUS_DMASYNC_POSTREAD);
780 1.1 thorpej
781 1.1 thorpej pktstat = *((u_int8_t*)m->m_data + framelen + 2);
782 1.1 thorpej
783 1.1 thorpej if ((pktstat & RXSTAT_GOOD) == 0) {
784 1.1 thorpej /* XXXrkb: increment error counters based on error type */
785 1.1 thorpej printf("%s: rxintr: bad packet, buf %d, stat %02x (dexc ctl "
786 1.1 thorpej "%08x)\n", sc->sc_dev.dv_xname, i, pktstat,
787 1.1 thorpej sc->sc_rxdesc[i].hdd_ctl);
788 1.1 thorpej
789 1.1 thorpej sq_dump_buffer((u_int32_t)m->m_data + 2, framelen);
790 1.1 thorpej SQ_INIT_RXDESC(sc, i);
791 1.1 thorpej continue;
792 1.1 thorpej }
793 1.1 thorpej
794 1.1 thorpej if (sq_add_rxbuf(sc, i) != 0) {
795 1.1 thorpej ifp->if_ierrors++;
796 1.1 thorpej SQ_INIT_RXDESC(sc, i);
797 1.1 thorpej bus_dmamap_sync(sc->sc_dmat, sc->sc_rxmap[i], 0,
798 1.1 thorpej sc->sc_rxmap[i]->dm_mapsize,
799 1.1 thorpej BUS_DMASYNC_PREREAD);
800 1.1 thorpej continue;
801 1.1 thorpej }
802 1.1 thorpej
803 1.1 thorpej
804 1.1 thorpej m->m_data += 2;
805 1.1 thorpej m->m_pkthdr.rcvif = ifp;
806 1.1 thorpej m->m_pkthdr.len = m->m_len = framelen;
807 1.1 thorpej
808 1.1 thorpej ifp->if_ipackets++;
809 1.1 thorpej
810 1.1 thorpej #if 0
811 1.1 thorpej printf("%s: sq_rxintr: buf %d len %d\n", sc->sc_dev.dv_xname,
812 1.1 thorpej i, framelen);
813 1.1 thorpej #endif
814 1.1 thorpej
815 1.1 thorpej #if NBPFILTER > 0
816 1.1 thorpej if (ifp->if_bpf)
817 1.1 thorpej bpf_mtap(ifp->if_bpf, m);
818 1.1 thorpej #endif
819 1.1 thorpej (*ifp->if_input)(ifp, m);
820 1.1 thorpej }
821 1.1 thorpej
822 1.1 thorpej
823 1.1 thorpej /* If anything happened, move ring start/end pointers to new spot */
824 1.1 thorpej if (i != sc->sc_nextrx) {
825 1.1 thorpej new_end = SQ_PREVRX(i);
826 1.1 thorpej sc->sc_rxdesc[new_end].hdd_ctl |= HDD_CTL_EOCHAIN;
827 1.1 thorpej SQ_CDRXSYNC(sc, new_end, BUS_DMASYNC_PREREAD |
828 1.1 thorpej BUS_DMASYNC_PREWRITE);
829 1.1 thorpej
830 1.1 thorpej orig_end = SQ_PREVRX(sc->sc_nextrx);
831 1.1 thorpej sc->sc_rxdesc[orig_end].hdd_ctl &= ~HDD_CTL_EOCHAIN;
832 1.1 thorpej SQ_CDRXSYNC(sc, orig_end, BUS_DMASYNC_PREREAD |
833 1.1 thorpej BUS_DMASYNC_PREWRITE);
834 1.1 thorpej
835 1.1 thorpej sc->sc_nextrx = i;
836 1.1 thorpej }
837 1.1 thorpej
838 1.1 thorpej status = bus_space_read_4(sc->sc_hpct, sc->sc_hpch,
839 1.1 thorpej HPC_ENETR_CTL);
840 1.1 thorpej
841 1.1 thorpej /* If receive channel is stopped, restart it... */
842 1.1 thorpej if ((status & 0x200) == 0) {
843 1.1 thorpej /* Pass the start of the receive ring to the HPC */
844 1.1 thorpej bus_space_write_4(sc->sc_hpct, sc->sc_hpch,
845 1.1 thorpej HPC_ENETR_NDBP, SQ_CDRXADDR(sc, sc->sc_nextrx));
846 1.1 thorpej
847 1.1 thorpej /* And turn on the HPC ethernet receive channel */
848 1.1 thorpej bus_space_write_4(sc->sc_hpct, sc->sc_hpch, HPC_ENETR_CTL, 0x200);
849 1.1 thorpej }
850 1.1 thorpej
851 1.1 thorpej return count;
852 1.1 thorpej }
853 1.1 thorpej
854 1.1 thorpej static int
855 1.1 thorpej sq_txintr(struct sq_softc *sc)
856 1.1 thorpej {
857 1.1 thorpej int i;
858 1.1 thorpej u_int32_t status;
859 1.1 thorpej struct ifnet *ifp = &sc->sc_ethercom.ec_if;
860 1.1 thorpej
861 1.1 thorpej status = bus_space_read_4(sc->sc_hpct, sc->sc_hpch, HPC_ENETX_CTL);
862 1.1 thorpej
863 1.1 thorpej SQ_TRACE(SQ_TXINTR_ENTER, sc->sc_prevtx, status, sc->sc_nfreetx);
864 1.1 thorpej
865 1.1 thorpej if ((status & (0x200 | TXSTAT_GOOD)) == 0) {
866 1.1 thorpej if (status & TXSTAT_COLL)
867 1.1 thorpej ifp->if_collisions++;
868 1.1 thorpej
869 1.1 thorpej if (status & TXSTAT_UFLOW) {
870 1.1 thorpej printf("%s: transmit underflow\n", sc->sc_dev.dv_xname);
871 1.1 thorpej ifp->if_oerrors++;
872 1.1 thorpej }
873 1.1 thorpej
874 1.1 thorpej if (status & TXSTAT_16COLL) {
875 1.1 thorpej printf("%s: max collisions reached\n", sc->sc_dev.dv_xname);
876 1.1 thorpej ifp->if_oerrors++;
877 1.1 thorpej ifp->if_collisions += 16;
878 1.1 thorpej }
879 1.1 thorpej }
880 1.1 thorpej
881 1.1 thorpej i = sc->sc_prevtx;
882 1.1 thorpej while (sc->sc_nfreetx < SQ_NTXDESC) {
883 1.1 thorpej SQ_CDTXSYNC(sc, i, sc->sc_txmap[i]->dm_nsegs,
884 1.1 thorpej BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
885 1.1 thorpej
886 1.1 thorpej /* If not yet transmitted, try and start DMA engine again */
887 1.1 thorpej if ((sc->sc_txdesc[i].hdd_ctl & HDD_CTL_XMITDONE) == 0) {
888 1.1 thorpej status = bus_space_read_4(sc->sc_hpct, sc->sc_hpch,
889 1.1 thorpej HPC_ENETX_CTL);
890 1.1 thorpej
891 1.1 thorpej if ((status & 0x200) == 0) {
892 1.1 thorpej SQ_TRACE(SQ_RESTART_DMA, i, status, sc->sc_nfreetx);
893 1.1 thorpej
894 1.1 thorpej bus_space_write_4(sc->sc_hpct, sc->sc_hpch,
895 1.1 thorpej HPC_ENETX_NDBP, SQ_CDTXADDR(sc, i));
896 1.1 thorpej
897 1.1 thorpej /* Kick DMA channel into life */
898 1.1 thorpej bus_space_write_4(sc->sc_hpct, sc->sc_hpch,
899 1.1 thorpej HPC_ENETX_CTL, 0x200);
900 1.1 thorpej
901 1.1 thorpej /* Set a watchdog timer in case the chip flakes out. */
902 1.1 thorpej ifp->if_timer = 5;
903 1.1 thorpej } else {
904 1.1 thorpej SQ_TRACE(SQ_TXINTR_BUSY, i, status, sc->sc_nfreetx);
905 1.1 thorpej }
906 1.1 thorpej break;
907 1.1 thorpej }
908 1.1 thorpej
909 1.1 thorpej /* Sync the packet data, unload DMA map, free mbuf */
910 1.1 thorpej bus_dmamap_sync(sc->sc_dmat, sc->sc_txmap[i], 0,
911 1.1 thorpej sc->sc_txmap[i]->dm_mapsize,
912 1.1 thorpej BUS_DMASYNC_POSTWRITE);
913 1.1 thorpej bus_dmamap_unload(sc->sc_dmat, sc->sc_txmap[i]);
914 1.1 thorpej m_freem(sc->sc_txmbuf[i]);
915 1.1 thorpej sc->sc_txmbuf[i] = NULL;
916 1.1 thorpej
917 1.1 thorpej ifp->if_opackets++;
918 1.1 thorpej sc->sc_nfreetx++;
919 1.1 thorpej
920 1.1 thorpej SQ_TRACE(SQ_DONE_DMA, i, status, sc->sc_nfreetx);
921 1.1 thorpej i = SQ_NEXTTX(i);
922 1.1 thorpej }
923 1.1 thorpej
924 1.1 thorpej /* prevtx now points to next xmit packet not yet finished */
925 1.1 thorpej sc->sc_prevtx = i;
926 1.1 thorpej
927 1.1 thorpej /* If we have buffers free, let upper layers know */
928 1.1 thorpej if (sc->sc_nfreetx > 0)
929 1.1 thorpej ifp->if_flags &= ~IFF_OACTIVE;
930 1.1 thorpej
931 1.1 thorpej /* If all packets have left the coop, cancel watchdog */
932 1.1 thorpej if (sc->sc_nfreetx == SQ_NTXDESC)
933 1.1 thorpej ifp->if_timer = 0;
934 1.1 thorpej
935 1.1 thorpej SQ_TRACE(SQ_TXINTR_EXIT, sc->sc_prevtx, status, sc->sc_nfreetx);
936 1.1 thorpej sq_start(ifp);
937 1.1 thorpej
938 1.1 thorpej return 1;
939 1.1 thorpej }
940 1.1 thorpej
941 1.1 thorpej
942 1.1 thorpej void
943 1.1 thorpej sq_reset(struct sq_softc *sc)
944 1.1 thorpej {
945 1.1 thorpej /* Stop HPC dma channels */
946 1.1 thorpej bus_space_write_4(sc->sc_hpct, sc->sc_hpch, HPC_ENETR_CTL, 0);
947 1.1 thorpej bus_space_write_4(sc->sc_hpct, sc->sc_hpch, HPC_ENETX_CTL, 0);
948 1.1 thorpej
949 1.1 thorpej bus_space_write_4(sc->sc_hpct, sc->sc_hpch, HPC_ENETR_RESET, 3);
950 1.1 thorpej delay(20);
951 1.1 thorpej bus_space_write_4(sc->sc_hpct, sc->sc_hpch, HPC_ENETR_RESET, 0);
952 1.1 thorpej }
953 1.1 thorpej
954 1.1 thorpej /* sq_add_rxbuf: Add a receive buffer to the indicated descriptor. */
955 1.1 thorpej int
956 1.1 thorpej sq_add_rxbuf(struct sq_softc *sc, int idx)
957 1.1 thorpej {
958 1.1 thorpej int err;
959 1.1 thorpej struct mbuf *m;
960 1.1 thorpej
961 1.1 thorpej MGETHDR(m, M_DONTWAIT, MT_DATA);
962 1.1 thorpej if (m == NULL)
963 1.1 thorpej return (ENOBUFS);
964 1.1 thorpej
965 1.1 thorpej MCLGET(m, M_DONTWAIT);
966 1.1 thorpej if ((m->m_flags & M_EXT) == 0) {
967 1.1 thorpej m_freem(m);
968 1.1 thorpej return (ENOBUFS);
969 1.1 thorpej }
970 1.1 thorpej
971 1.1 thorpej if (sc->sc_rxmbuf[idx] != NULL)
972 1.1 thorpej bus_dmamap_unload(sc->sc_dmat, sc->sc_rxmap[idx]);
973 1.1 thorpej
974 1.1 thorpej sc->sc_rxmbuf[idx] = m;
975 1.1 thorpej
976 1.1 thorpej if ((err = bus_dmamap_load(sc->sc_dmat, sc->sc_rxmap[idx],
977 1.1 thorpej m->m_ext.ext_buf, m->m_ext.ext_size,
978 1.1 thorpej NULL, BUS_DMA_NOWAIT)) != 0) {
979 1.1 thorpej printf("%s: can't load rx DMA map %d, error = %d\n",
980 1.1 thorpej sc->sc_dev.dv_xname, idx, err);
981 1.1 thorpej panic("sq_add_rxbuf"); /* XXX */
982 1.1 thorpej }
983 1.1 thorpej
984 1.1 thorpej bus_dmamap_sync(sc->sc_dmat, sc->sc_rxmap[idx], 0,
985 1.1 thorpej sc->sc_rxmap[idx]->dm_mapsize, BUS_DMASYNC_PREREAD);
986 1.1 thorpej
987 1.1 thorpej SQ_INIT_RXDESC(sc, idx);
988 1.1 thorpej
989 1.1 thorpej return 0;
990 1.1 thorpej }
991 1.1 thorpej
992 1.1 thorpej void
993 1.1 thorpej sq_dump_buffer(u_int32_t addr, u_int32_t len)
994 1.1 thorpej {
995 1.1 thorpej int i;
996 1.1 thorpej u_char* physaddr = (char*) MIPS_PHYS_TO_KSEG1((caddr_t)addr);
997 1.1 thorpej
998 1.1 thorpej if (len == 0)
999 1.1 thorpej return;
1000 1.1 thorpej
1001 1.1 thorpej printf("%p: ", physaddr);
1002 1.1 thorpej
1003 1.1 thorpej for(i = 0; i < len; i++) {
1004 1.1 thorpej printf("%02x ", *(physaddr + i) & 0xff);
1005 1.1 thorpej if ((i % 16) == 15 && i != len - 1)
1006 1.1 thorpej printf("\n%p: ", physaddr + i);
1007 1.1 thorpej }
1008 1.1 thorpej
1009 1.1 thorpej printf("\n");
1010 1.1 thorpej }
1011 1.1 thorpej
1012 1.1 thorpej
1013 1.1 thorpej void
1014 1.1 thorpej enaddr_aton(const char* str, u_int8_t* eaddr)
1015 1.1 thorpej {
1016 1.1 thorpej int i;
1017 1.1 thorpej char c;
1018 1.1 thorpej
1019 1.1 thorpej for(i = 0; i < ETHER_ADDR_LEN; i++) {
1020 1.1 thorpej if (*str == ':')
1021 1.1 thorpej str++;
1022 1.1 thorpej
1023 1.1 thorpej c = *str++;
1024 1.1 thorpej if (isdigit(c)) {
1025 1.1 thorpej eaddr[i] = (c - '0');
1026 1.1 thorpej } else if (isxdigit(c)) {
1027 1.1 thorpej eaddr[i] = (toupper(c) + 10 - 'A');
1028 1.1 thorpej }
1029 1.1 thorpej
1030 1.1 thorpej c = *str++;
1031 1.1 thorpej if (isdigit(c)) {
1032 1.1 thorpej eaddr[i] = (eaddr[i] << 4) | (c - '0');
1033 1.1 thorpej } else if (isxdigit(c)) {
1034 1.1 thorpej eaddr[i] = (eaddr[i] << 4) | (toupper(c) + 10 - 'A');
1035 1.1 thorpej }
1036 1.1 thorpej }
1037 1.1 thorpej }
1038 1.1 thorpej
1039