if_xe.c revision 1.24.18.2 1 1.24.18.2 martin /* $NetBSD: if_xe.c,v 1.24.18.2 2020/04/13 08:04:02 martin Exp $ */
2 1.1 dbj /*
3 1.1 dbj * Copyright (c) 1998 Darrin B. Jewell
4 1.1 dbj * All rights reserved.
5 1.1 dbj *
6 1.1 dbj * Redistribution and use in source and binary forms, with or without
7 1.1 dbj * modification, are permitted provided that the following conditions
8 1.1 dbj * are met:
9 1.1 dbj * 1. Redistributions of source code must retain the above copyright
10 1.1 dbj * notice, this list of conditions and the following disclaimer.
11 1.1 dbj * 2. Redistributions in binary form must reproduce the above copyright
12 1.1 dbj * notice, this list of conditions and the following disclaimer in the
13 1.1 dbj * documentation and/or other materials provided with the distribution.
14 1.1 dbj *
15 1.1 dbj * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 1.1 dbj * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 1.1 dbj * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 1.1 dbj * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 1.1 dbj * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 1.1 dbj * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 1.1 dbj * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 1.1 dbj * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 1.1 dbj * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 1.1 dbj * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 1.1 dbj */
26 1.14 lukem
27 1.14 lukem #include <sys/cdefs.h>
28 1.24.18.2 martin __KERNEL_RCSID(0, "$NetBSD: if_xe.c,v 1.24.18.2 2020/04/13 08:04:02 martin Exp $");
29 1.1 dbj
30 1.2 jonathan #include "opt_inet.h"
31 1.1 dbj
32 1.1 dbj #include <sys/param.h>
33 1.1 dbj #include <sys/systm.h>
34 1.1 dbj #include <sys/mbuf.h>
35 1.1 dbj #include <sys/syslog.h>
36 1.1 dbj #include <sys/socket.h>
37 1.1 dbj #include <sys/device.h>
38 1.1 dbj
39 1.1 dbj #include <net/if.h>
40 1.1 dbj #include <net/if_ether.h>
41 1.1 dbj #include <net/if_media.h>
42 1.1 dbj
43 1.1 dbj #ifdef INET
44 1.1 dbj #include <netinet/in.h>
45 1.1 dbj #include <netinet/if_inarp.h>
46 1.1 dbj #endif
47 1.1 dbj
48 1.1 dbj #include <machine/autoconf.h>
49 1.1 dbj #include <machine/cpu.h>
50 1.1 dbj #include <machine/intr.h>
51 1.1 dbj #include <machine/bus.h>
52 1.1 dbj
53 1.1 dbj #include <next68k/next68k/isr.h>
54 1.1 dbj
55 1.1 dbj #include <next68k/dev/mb8795reg.h>
56 1.1 dbj #include <next68k/dev/mb8795var.h>
57 1.1 dbj
58 1.7 mycroft #include <next68k/dev/bmapreg.h>
59 1.7 mycroft #include <next68k/dev/intiovar.h>
60 1.1 dbj #include <next68k/dev/nextdmareg.h>
61 1.1 dbj #include <next68k/dev/nextdmavar.h>
62 1.1 dbj
63 1.1 dbj #include <next68k/dev/if_xevar.h>
64 1.7 mycroft #include <next68k/dev/if_xereg.h>
65 1.7 mycroft
66 1.7 mycroft #ifdef DEBUG
67 1.7 mycroft #define XE_DEBUG
68 1.7 mycroft #endif
69 1.1 dbj
70 1.7 mycroft #ifdef XE_DEBUG
71 1.7 mycroft int xe_debug = 0;
72 1.7 mycroft #define DPRINTF(x) if (xe_debug) printf x;
73 1.7 mycroft #else
74 1.7 mycroft #define DPRINTF(x)
75 1.7 mycroft #endif
76 1.7 mycroft #define PRINTF(x) printf x;
77 1.7 mycroft
78 1.7 mycroft extern int turbo;
79 1.1 dbj
80 1.22 chs int xe_match(device_t, cfdata_t, void *);
81 1.22 chs void xe_attach(device_t, device_t, void *);
82 1.16 chs int xe_tint(void *);
83 1.16 chs int xe_rint(void *);
84 1.16 chs
85 1.24.18.1 christos struct mbuf *xe_dma_rxmap_load(struct mb8795_softc *, bus_dmamap_t);
86 1.16 chs
87 1.16 chs bus_dmamap_t xe_dma_rx_continue(void *);
88 1.24.18.1 christos void xe_dma_rx_completed(bus_dmamap_t, void *);
89 1.16 chs bus_dmamap_t xe_dma_tx_continue(void *);
90 1.24.18.1 christos void xe_dma_tx_completed(bus_dmamap_t, void *);
91 1.24.18.1 christos void xe_dma_rx_shutdown(void *);
92 1.24.18.1 christos void xe_dma_tx_shutdown(void *);
93 1.7 mycroft
94 1.24.18.1 christos static void findchannel_defer(device_t);
95 1.7 mycroft
96 1.22 chs CFATTACH_DECL_NEW(xe, sizeof(struct xe_softc),
97 1.11 thorpej xe_match, xe_attach, NULL, NULL);
98 1.1 dbj
99 1.7 mycroft static int xe_dma_medias[] = {
100 1.24.18.1 christos IFM_ETHER | IFM_AUTO,
101 1.24.18.1 christos IFM_ETHER | IFM_10_T,
102 1.24.18.1 christos IFM_ETHER | IFM_10_2,
103 1.6 christos };
104 1.24.18.1 christos static int nxe_dma_medias = __arraycount(xe_dma_medias);
105 1.7 mycroft
106 1.7 mycroft static int attached = 0;
107 1.7 mycroft
108 1.7 mycroft /*
109 1.7 mycroft * Functions and the switch for the MI code.
110 1.7 mycroft */
111 1.16 chs u_char xe_read_reg(struct mb8795_softc *, int);
112 1.16 chs void xe_write_reg(struct mb8795_softc *, int, u_char);
113 1.16 chs void xe_dma_reset(struct mb8795_softc *);
114 1.16 chs void xe_dma_rx_setup(struct mb8795_softc *);
115 1.16 chs void xe_dma_rx_go(struct mb8795_softc *);
116 1.16 chs struct mbuf * xe_dma_rx_mbuf(struct mb8795_softc *);
117 1.16 chs void xe_dma_tx_setup(struct mb8795_softc *);
118 1.16 chs void xe_dma_tx_go(struct mb8795_softc *);
119 1.16 chs int xe_dma_tx_mbuf(struct mb8795_softc *, struct mbuf *);
120 1.16 chs int xe_dma_tx_isactive(struct mb8795_softc *);
121 1.7 mycroft
122 1.7 mycroft struct mb8795_glue xe_glue = {
123 1.7 mycroft xe_read_reg,
124 1.7 mycroft xe_write_reg,
125 1.7 mycroft xe_dma_reset,
126 1.7 mycroft xe_dma_rx_setup,
127 1.7 mycroft xe_dma_rx_go,
128 1.7 mycroft xe_dma_rx_mbuf,
129 1.7 mycroft xe_dma_tx_setup,
130 1.7 mycroft xe_dma_tx_go,
131 1.7 mycroft xe_dma_tx_mbuf,
132 1.7 mycroft xe_dma_tx_isactive,
133 1.7 mycroft };
134 1.6 christos
135 1.1 dbj int
136 1.22 chs xe_match(device_t parent, cfdata_t match, void *aux)
137 1.1 dbj {
138 1.7 mycroft struct intio_attach_args *ia = (struct intio_attach_args *)aux;
139 1.7 mycroft
140 1.7 mycroft if (attached)
141 1.24.18.1 christos return 0;
142 1.7 mycroft
143 1.7 mycroft ia->ia_addr = (void *)NEXT_P_ENET;
144 1.7 mycroft
145 1.24.18.1 christos return 1;
146 1.7 mycroft }
147 1.7 mycroft
148 1.7 mycroft static void
149 1.22 chs findchannel_defer(device_t self)
150 1.7 mycroft {
151 1.22 chs struct xe_softc *xsc = device_private(self);
152 1.7 mycroft struct mb8795_softc *sc = &xsc->sc_mb8795;
153 1.7 mycroft int i, error;
154 1.7 mycroft
155 1.7 mycroft if (!xsc->sc_txdma) {
156 1.7 mycroft xsc->sc_txdma = nextdma_findchannel ("enetx");
157 1.7 mycroft if (xsc->sc_txdma == NULL)
158 1.22 chs panic("%s: can't find enetx DMA channel",
159 1.22 chs device_xname(sc->sc_dev));
160 1.7 mycroft }
161 1.7 mycroft if (!xsc->sc_rxdma) {
162 1.7 mycroft xsc->sc_rxdma = nextdma_findchannel ("enetr");
163 1.7 mycroft if (xsc->sc_rxdma == NULL)
164 1.13 wiz panic ("%s: can't find enetr DMA channel",
165 1.22 chs device_xname(sc->sc_dev));
166 1.7 mycroft }
167 1.22 chs aprint_normal_dev(sc->sc_dev, "using DMA channels %s %s\n",
168 1.22 chs device_xname(xsc->sc_txdma->sc_dev),
169 1.22 chs device_xname(xsc->sc_rxdma->sc_dev));
170 1.7 mycroft
171 1.7 mycroft nextdma_setconf (xsc->sc_rxdma, continue_cb, xe_dma_rx_continue);
172 1.7 mycroft nextdma_setconf (xsc->sc_rxdma, completed_cb, xe_dma_rx_completed);
173 1.7 mycroft nextdma_setconf (xsc->sc_rxdma, shutdown_cb, xe_dma_rx_shutdown);
174 1.7 mycroft nextdma_setconf (xsc->sc_rxdma, cb_arg, sc);
175 1.7 mycroft
176 1.7 mycroft nextdma_setconf (xsc->sc_txdma, continue_cb, xe_dma_tx_continue);
177 1.7 mycroft nextdma_setconf (xsc->sc_txdma, completed_cb, xe_dma_tx_completed);
178 1.7 mycroft nextdma_setconf (xsc->sc_txdma, shutdown_cb, xe_dma_tx_shutdown);
179 1.7 mycroft nextdma_setconf (xsc->sc_txdma, cb_arg, sc);
180 1.7 mycroft
181 1.13 wiz /* Initialize the DMA maps */
182 1.7 mycroft error = bus_dmamap_create(xsc->sc_txdma->sc_dmat, MCLBYTES,
183 1.24.18.1 christos (MCLBYTES/MSIZE), MCLBYTES, 0, BUS_DMA_ALLOCNOW,
184 1.24.18.1 christos &xsc->sc_tx_dmamap);
185 1.7 mycroft if (error) {
186 1.24.18.1 christos aprint_error_dev(sc->sc_dev,
187 1.24.18.1 christos "can't create tx DMA map, error = %d", error);
188 1.7 mycroft }
189 1.7 mycroft
190 1.7 mycroft for(i = 0; i < MB8795_NRXBUFS; i++) {
191 1.7 mycroft error = bus_dmamap_create(xsc->sc_rxdma->sc_dmat, MCLBYTES,
192 1.24.18.1 christos (MCLBYTES/MSIZE), MCLBYTES, 0, BUS_DMA_ALLOCNOW,
193 1.24.18.1 christos &xsc->sc_rx_dmamap[i]);
194 1.7 mycroft if (error) {
195 1.8 provos panic("%s: can't create rx DMA map, error = %d",
196 1.22 chs device_xname(sc->sc_dev), error);
197 1.7 mycroft }
198 1.7 mycroft xsc->sc_rx_mb_head[i] = NULL;
199 1.7 mycroft }
200 1.7 mycroft xsc->sc_rx_loaded_idx = 0;
201 1.7 mycroft xsc->sc_rx_completed_idx = 0;
202 1.7 mycroft xsc->sc_rx_handled_idx = 0;
203 1.7 mycroft
204 1.7 mycroft /* @@@ more next hacks
205 1.7 mycroft * the 2000 covers at least a 1500 mtu + headers
206 1.7 mycroft * + DMA_BEGINALIGNMENT+ DMA_ENDALIGNMENT
207 1.7 mycroft */
208 1.24.18.2 martin xsc->sc_txbuf = malloc(2000, M_DEVBUF, M_WAITOK);
209 1.7 mycroft xsc->sc_tx_mb_head = NULL;
210 1.7 mycroft xsc->sc_tx_loaded = 0;
211 1.7 mycroft
212 1.7 mycroft mb8795_config(sc, xe_dma_medias, nxe_dma_medias, xe_dma_medias[0]);
213 1.7 mycroft
214 1.7 mycroft isrlink_autovec(xe_tint, sc, NEXT_I_IPL(NEXT_I_ENETX), 1, NULL);
215 1.7 mycroft INTR_ENABLE(NEXT_I_ENETX);
216 1.7 mycroft isrlink_autovec(xe_rint, sc, NEXT_I_IPL(NEXT_I_ENETR), 1, NULL);
217 1.7 mycroft INTR_ENABLE(NEXT_I_ENETR);
218 1.1 dbj }
219 1.1 dbj
220 1.1 dbj void
221 1.22 chs xe_attach(device_t parent, device_t self, void *aux)
222 1.1 dbj {
223 1.7 mycroft struct intio_attach_args *ia = (struct intio_attach_args *)aux;
224 1.22 chs struct xe_softc *xsc = device_private(self);
225 1.7 mycroft struct mb8795_softc *sc = &xsc->sc_mb8795;
226 1.7 mycroft
227 1.22 chs sc->sc_dev = self;
228 1.22 chs DPRINTF(("%s: xe_attach()\n", device_xname(self)));
229 1.7 mycroft
230 1.7 mycroft {
231 1.24.18.1 christos /* kludge from machdep.c:next68k_bootargs() */
232 1.24.18.1 christos extern u_char rom_enetaddr[6];
233 1.7 mycroft int i;
234 1.24.18.1 christos
235 1.24.18.1 christos for (i = 0; i < 6; i++)
236 1.7 mycroft sc->sc_enaddr[i] = rom_enetaddr[i];
237 1.7 mycroft }
238 1.7 mycroft
239 1.7 mycroft printf("\n%s: MAC address %02x:%02x:%02x:%02x:%02x:%02x\n",
240 1.22 chs device_xname(self),
241 1.7 mycroft sc->sc_enaddr[0],sc->sc_enaddr[1],sc->sc_enaddr[2],
242 1.7 mycroft sc->sc_enaddr[3],sc->sc_enaddr[4],sc->sc_enaddr[5]);
243 1.7 mycroft
244 1.7 mycroft xsc->sc_bst = ia->ia_bst;
245 1.7 mycroft if (bus_space_map(xsc->sc_bst, NEXT_P_ENET,
246 1.7 mycroft XE_DEVICE_SIZE, 0, &xsc->sc_bsh)) {
247 1.8 provos panic("\n%s: can't map mb8795 registers",
248 1.22 chs device_xname(self));
249 1.7 mycroft }
250 1.1 dbj
251 1.7 mycroft sc->sc_bmap_bst = ia->ia_bst;
252 1.7 mycroft if (bus_space_map(sc->sc_bmap_bst, NEXT_P_BMAP,
253 1.24.18.1 christos BMAP_SIZE, 0, &sc->sc_bmap_bsh))
254 1.24.18.1 christos panic("\n%s: can't map bmap registers", device_xname(self));
255 1.1 dbj
256 1.24.18.1 christos /* Set up glue for MI code. */
257 1.7 mycroft sc->sc_glue = &xe_glue;
258 1.1 dbj
259 1.22 chs xsc->sc_txdma = nextdma_findchannel("enetx");
260 1.22 chs xsc->sc_rxdma = nextdma_findchannel("enetr");
261 1.24.18.1 christos if (xsc->sc_rxdma && xsc->sc_txdma)
262 1.22 chs findchannel_defer(self);
263 1.24.18.1 christos else
264 1.22 chs config_defer(self, findchannel_defer);
265 1.1 dbj
266 1.7 mycroft attached = 1;
267 1.1 dbj }
268 1.1 dbj
269 1.1 dbj int
270 1.16 chs xe_tint(void *arg)
271 1.1 dbj {
272 1.7 mycroft if (!INTR_OCCURRED(NEXT_I_ENETX))
273 1.7 mycroft return 0;
274 1.7 mycroft mb8795_tint((struct mb8795_softc *)arg);
275 1.24.18.1 christos return 1;
276 1.1 dbj }
277 1.1 dbj
278 1.1 dbj int
279 1.16 chs xe_rint(void *arg)
280 1.7 mycroft {
281 1.7 mycroft if (!INTR_OCCURRED(NEXT_I_ENETR))
282 1.24.18.1 christos return 0;
283 1.7 mycroft mb8795_rint((struct mb8795_softc *)arg);
284 1.24.18.1 christos return 1;
285 1.7 mycroft }
286 1.7 mycroft
287 1.7 mycroft /*
288 1.7 mycroft * Glue functions.
289 1.7 mycroft */
290 1.7 mycroft
291 1.7 mycroft u_char
292 1.16 chs xe_read_reg(struct mb8795_softc *sc, int reg)
293 1.7 mycroft {
294 1.7 mycroft struct xe_softc *xsc = (struct xe_softc *)sc;
295 1.7 mycroft
296 1.24.18.1 christos return bus_space_read_1(xsc->sc_bst, xsc->sc_bsh, reg);
297 1.7 mycroft }
298 1.7 mycroft
299 1.7 mycroft void
300 1.16 chs xe_write_reg(struct mb8795_softc *sc, int reg, u_char val)
301 1.7 mycroft {
302 1.7 mycroft struct xe_softc *xsc = (struct xe_softc *)sc;
303 1.7 mycroft
304 1.7 mycroft bus_space_write_1(xsc->sc_bst, xsc->sc_bsh, reg, val);
305 1.7 mycroft }
306 1.7 mycroft
307 1.7 mycroft void
308 1.16 chs xe_dma_reset(struct mb8795_softc *sc)
309 1.7 mycroft {
310 1.7 mycroft struct xe_softc *xsc = (struct xe_softc *)sc;
311 1.7 mycroft int i;
312 1.7 mycroft
313 1.13 wiz DPRINTF(("xe DMA reset\n"));
314 1.7 mycroft
315 1.7 mycroft nextdma_reset(xsc->sc_rxdma);
316 1.7 mycroft nextdma_reset(xsc->sc_txdma);
317 1.7 mycroft
318 1.7 mycroft if (xsc->sc_tx_loaded) {
319 1.7 mycroft bus_dmamap_sync(xsc->sc_txdma->sc_dmat, xsc->sc_tx_dmamap,
320 1.24.18.1 christos 0, xsc->sc_tx_dmamap->dm_mapsize, BUS_DMASYNC_POSTWRITE);
321 1.7 mycroft bus_dmamap_unload(xsc->sc_txdma->sc_dmat, xsc->sc_tx_dmamap);
322 1.7 mycroft xsc->sc_tx_loaded = 0;
323 1.7 mycroft }
324 1.7 mycroft if (xsc->sc_tx_mb_head) {
325 1.7 mycroft m_freem(xsc->sc_tx_mb_head);
326 1.7 mycroft xsc->sc_tx_mb_head = NULL;
327 1.7 mycroft }
328 1.7 mycroft
329 1.7 mycroft for(i = 0; i < MB8795_NRXBUFS; i++) {
330 1.7 mycroft if (xsc->sc_rx_mb_head[i]) {
331 1.24.18.1 christos bus_dmamap_unload(xsc->sc_rxdma->sc_dmat,
332 1.24.18.1 christos xsc->sc_rx_dmamap[i]);
333 1.7 mycroft m_freem(xsc->sc_rx_mb_head[i]);
334 1.7 mycroft xsc->sc_rx_mb_head[i] = NULL;
335 1.7 mycroft }
336 1.7 mycroft }
337 1.7 mycroft }
338 1.7 mycroft
339 1.7 mycroft void
340 1.16 chs xe_dma_rx_setup(struct mb8795_softc *sc)
341 1.7 mycroft {
342 1.7 mycroft struct xe_softc *xsc = (struct xe_softc *)sc;
343 1.7 mycroft int i;
344 1.7 mycroft
345 1.13 wiz DPRINTF(("xe DMA rx setup\n"));
346 1.7 mycroft
347 1.24.18.1 christos for(i = 0; i < MB8795_NRXBUFS; i++)
348 1.7 mycroft xsc->sc_rx_mb_head[i] =
349 1.7 mycroft xe_dma_rxmap_load(sc, xsc->sc_rx_dmamap[i]);
350 1.24.18.1 christos
351 1.7 mycroft xsc->sc_rx_loaded_idx = 0;
352 1.7 mycroft xsc->sc_rx_completed_idx = 0;
353 1.7 mycroft xsc->sc_rx_handled_idx = 0;
354 1.7 mycroft
355 1.7 mycroft nextdma_init(xsc->sc_rxdma);
356 1.7 mycroft }
357 1.7 mycroft
358 1.7 mycroft void
359 1.16 chs xe_dma_rx_go(struct mb8795_softc *sc)
360 1.7 mycroft {
361 1.7 mycroft struct xe_softc *xsc = (struct xe_softc *)sc;
362 1.7 mycroft
363 1.13 wiz DPRINTF(("xe DMA rx go\n"));
364 1.7 mycroft
365 1.7 mycroft nextdma_start(xsc->sc_rxdma, DMACSR_SETREAD);
366 1.7 mycroft }
367 1.7 mycroft
368 1.7 mycroft struct mbuf *
369 1.16 chs xe_dma_rx_mbuf(struct mb8795_softc *sc)
370 1.7 mycroft {
371 1.7 mycroft struct xe_softc *xsc = (struct xe_softc *)sc;
372 1.7 mycroft bus_dmamap_t map;
373 1.7 mycroft struct mbuf *m;
374 1.7 mycroft
375 1.7 mycroft m = NULL;
376 1.7 mycroft if (xsc->sc_rx_handled_idx != xsc->sc_rx_completed_idx) {
377 1.7 mycroft xsc->sc_rx_handled_idx++;
378 1.7 mycroft xsc->sc_rx_handled_idx %= MB8795_NRXBUFS;
379 1.7 mycroft
380 1.7 mycroft map = xsc->sc_rx_dmamap[xsc->sc_rx_handled_idx];
381 1.7 mycroft m = xsc->sc_rx_mb_head[xsc->sc_rx_handled_idx];
382 1.7 mycroft
383 1.7 mycroft m->m_len = map->dm_xfer_len;
384 1.7 mycroft
385 1.7 mycroft bus_dmamap_sync(xsc->sc_rxdma->sc_dmat, map,
386 1.7 mycroft 0, map->dm_mapsize, BUS_DMASYNC_POSTREAD);
387 1.7 mycroft
388 1.7 mycroft bus_dmamap_unload(xsc->sc_rxdma->sc_dmat, map);
389 1.7 mycroft
390 1.7 mycroft /* Install a fresh mbuf for next packet */
391 1.7 mycroft
392 1.7 mycroft xsc->sc_rx_mb_head[xsc->sc_rx_handled_idx] =
393 1.7 mycroft xe_dma_rxmap_load(sc,map);
394 1.7 mycroft
395 1.7 mycroft /* Punt runt packets
396 1.13 wiz * DMA restarts create 0 length packets for example
397 1.7 mycroft */
398 1.7 mycroft if (m->m_len < ETHER_MIN_LEN) {
399 1.7 mycroft m_freem(m);
400 1.7 mycroft m = NULL;
401 1.7 mycroft }
402 1.7 mycroft }
403 1.24.18.1 christos return m;
404 1.7 mycroft }
405 1.7 mycroft
406 1.7 mycroft void
407 1.16 chs xe_dma_tx_setup(struct mb8795_softc *sc)
408 1.7 mycroft {
409 1.7 mycroft struct xe_softc *xsc = (struct xe_softc *)sc;
410 1.7 mycroft
411 1.13 wiz DPRINTF(("xe DMA tx setup\n"));
412 1.7 mycroft
413 1.7 mycroft nextdma_init(xsc->sc_txdma);
414 1.7 mycroft }
415 1.7 mycroft
416 1.7 mycroft void
417 1.16 chs xe_dma_tx_go(struct mb8795_softc *sc)
418 1.7 mycroft {
419 1.7 mycroft struct xe_softc *xsc = (struct xe_softc *)sc;
420 1.7 mycroft
421 1.13 wiz DPRINTF(("xe DMA tx go\n"));
422 1.7 mycroft
423 1.7 mycroft nextdma_start(xsc->sc_txdma, DMACSR_SETWRITE);
424 1.7 mycroft }
425 1.7 mycroft
426 1.7 mycroft int
427 1.16 chs xe_dma_tx_mbuf(struct mb8795_softc *sc, struct mbuf *m)
428 1.7 mycroft {
429 1.7 mycroft struct xe_softc *xsc = (struct xe_softc *)sc;
430 1.7 mycroft int error;
431 1.7 mycroft
432 1.7 mycroft xsc->sc_tx_mb_head = m;
433 1.7 mycroft
434 1.7 mycroft /* The following is a next specific hack that should
435 1.7 mycroft * probably be moved out of MI code.
436 1.7 mycroft * This macro assumes it can move forward as needed
437 1.7 mycroft * in the buffer. Perhaps it should zero the extra buffer.
438 1.7 mycroft */
439 1.7 mycroft #define REALIGN_DMABUF(s,l) \
440 1.7 mycroft { (s) = ((u_char *)(((unsigned)(s)+DMA_BEGINALIGNMENT-1) \
441 1.7 mycroft &~(DMA_BEGINALIGNMENT-1))); \
442 1.7 mycroft (l) = ((u_char *)(((unsigned)((s)+(l))+DMA_ENDALIGNMENT-1) \
443 1.7 mycroft &~(DMA_ENDALIGNMENT-1)))-(s);}
444 1.7 mycroft
445 1.7 mycroft #if 0
446 1.7 mycroft error = bus_dmamap_load_mbuf(xsc->sc_txdma->sc_dmat,
447 1.24.18.1 christos xsc->sc_tx_dmamap, xsc->sc_tx_mb_head, BUS_DMA_NOWAIT);
448 1.7 mycroft #else
449 1.7 mycroft {
450 1.7 mycroft u_char *buf = xsc->sc_txbuf;
451 1.7 mycroft int buflen = 0;
452 1.7 mycroft
453 1.7 mycroft buflen = m->m_pkthdr.len;
454 1.7 mycroft
455 1.7 mycroft {
456 1.7 mycroft u_char *p = buf;
457 1.7 mycroft for (m=xsc->sc_tx_mb_head; m; m = m->m_next) {
458 1.7 mycroft if (m->m_len == 0) continue;
459 1.19 cegger memcpy(p, mtod(m, u_char *), m->m_len);
460 1.7 mycroft p += m->m_len;
461 1.12 bouyer }
462 1.12 bouyer /* Fix runt packets */
463 1.12 bouyer if (buflen < ETHER_MIN_LEN - ETHER_CRC_LEN) {
464 1.12 bouyer memset(p, 0,
465 1.12 bouyer ETHER_MIN_LEN - ETHER_CRC_LEN - buflen);
466 1.12 bouyer buflen = ETHER_MIN_LEN - ETHER_CRC_LEN;
467 1.7 mycroft }
468 1.7 mycroft }
469 1.7 mycroft
470 1.24.18.1 christos error = bus_dmamap_load(xsc->sc_txdma->sc_dmat,
471 1.24.18.1 christos xsc->sc_tx_dmamap, buf, buflen, NULL, BUS_DMA_NOWAIT);
472 1.7 mycroft }
473 1.7 mycroft #endif
474 1.7 mycroft if (error) {
475 1.24.18.1 christos aprint_error_dev(sc->sc_dev,
476 1.24.18.1 christos "can't load mbuf chain, error = %d\n", error);
477 1.7 mycroft m_freem(xsc->sc_tx_mb_head);
478 1.7 mycroft xsc->sc_tx_mb_head = NULL;
479 1.24.18.1 christos return error;
480 1.7 mycroft }
481 1.7 mycroft
482 1.7 mycroft #ifdef DIAGNOSTIC
483 1.7 mycroft if (xsc->sc_tx_loaded != 0) {
484 1.22 chs panic("%s: xsc->sc_tx_loaded is %d", device_xname(sc->sc_dev),
485 1.7 mycroft xsc->sc_tx_loaded);
486 1.7 mycroft }
487 1.7 mycroft #endif
488 1.7 mycroft
489 1.7 mycroft bus_dmamap_sync(xsc->sc_txdma->sc_dmat, xsc->sc_tx_dmamap, 0,
490 1.7 mycroft xsc->sc_tx_dmamap->dm_mapsize, BUS_DMASYNC_PREWRITE);
491 1.7 mycroft
492 1.24.18.1 christos return 0;
493 1.7 mycroft }
494 1.7 mycroft
495 1.7 mycroft int
496 1.16 chs xe_dma_tx_isactive(struct mb8795_softc *sc)
497 1.7 mycroft {
498 1.7 mycroft struct xe_softc *xsc = (struct xe_softc *)sc;
499 1.7 mycroft
500 1.7 mycroft return (xsc->sc_tx_loaded != 0);
501 1.7 mycroft }
502 1.7 mycroft
503 1.7 mycroft /****************************************************************/
504 1.7 mycroft
505 1.7 mycroft void
506 1.16 chs xe_dma_tx_completed(bus_dmamap_t map, void *arg)
507 1.7 mycroft {
508 1.15 perseant #if defined (XE_DEBUG) || defined (DIAGNOSTIC)
509 1.7 mycroft struct mb8795_softc *sc = arg;
510 1.15 perseant #endif
511 1.15 perseant #ifdef DIAGNOSTIC
512 1.7 mycroft struct xe_softc *xsc = (struct xe_softc *)sc;
513 1.15 perseant #endif
514 1.7 mycroft
515 1.22 chs DPRINTF(("%s: xe_dma_tx_completed()\n", device_xname(sc->sc_dev)));
516 1.7 mycroft
517 1.7 mycroft #ifdef DIAGNOSTIC
518 1.24.18.1 christos if (!xsc->sc_tx_loaded)
519 1.24.18.1 christos panic("%s: tx completed never loaded",
520 1.24.18.1 christos device_xname(sc->sc_dev));
521 1.24.18.1 christos
522 1.24.18.1 christos if (map != xsc->sc_tx_dmamap)
523 1.24.18.1 christos panic("%s: unexpected tx completed map",
524 1.24.18.1 christos device_xname(sc->sc_dev));
525 1.7 mycroft
526 1.7 mycroft #endif
527 1.7 mycroft }
528 1.7 mycroft
529 1.7 mycroft void
530 1.16 chs xe_dma_tx_shutdown(void *arg)
531 1.1 dbj {
532 1.7 mycroft struct mb8795_softc *sc = arg;
533 1.7 mycroft struct xe_softc *xsc = (struct xe_softc *)sc;
534 1.7 mycroft struct ifnet *ifp = &sc->sc_ethercom.ec_if;
535 1.7 mycroft
536 1.22 chs DPRINTF(("%s: xe_dma_tx_shutdown()\n", device_xname(sc->sc_dev)));
537 1.7 mycroft
538 1.7 mycroft #ifdef DIAGNOSTIC
539 1.24.18.1 christos if (!xsc->sc_tx_loaded)
540 1.24.18.1 christos panic("%s: tx shutdown never loaded",
541 1.24.18.1 christos device_xname(sc->sc_dev));
542 1.7 mycroft #endif
543 1.7 mycroft
544 1.7 mycroft if (turbo)
545 1.7 mycroft MB_WRITE_REG(sc, MB8795_TXMODE, MB8795_TXMODE_TURBO1);
546 1.7 mycroft if (xsc->sc_tx_loaded) {
547 1.7 mycroft bus_dmamap_sync(xsc->sc_txdma->sc_dmat, xsc->sc_tx_dmamap,
548 1.24.18.1 christos 0, xsc->sc_tx_dmamap->dm_mapsize, BUS_DMASYNC_POSTWRITE);
549 1.7 mycroft bus_dmamap_unload(xsc->sc_txdma->sc_dmat, xsc->sc_tx_dmamap);
550 1.7 mycroft m_freem(xsc->sc_tx_mb_head);
551 1.7 mycroft xsc->sc_tx_mb_head = NULL;
552 1.7 mycroft
553 1.7 mycroft xsc->sc_tx_loaded--;
554 1.7 mycroft }
555 1.7 mycroft
556 1.7 mycroft #ifdef DIAGNOSTIC
557 1.24.18.1 christos if (xsc->sc_tx_loaded != 0)
558 1.22 chs panic("%s: sc->sc_tx_loaded is %d", device_xname(sc->sc_dev),
559 1.7 mycroft xsc->sc_tx_loaded);
560 1.7 mycroft #endif
561 1.7 mycroft
562 1.7 mycroft ifp->if_timer = 0;
563 1.7 mycroft
564 1.7 mycroft #if 1
565 1.7 mycroft if ((ifp->if_flags & IFF_RUNNING) && !IF_IS_EMPTY(&sc->sc_tx_snd)) {
566 1.16 chs void mb8795_start_dma(struct mb8795_softc *); /* XXXX */
567 1.7 mycroft mb8795_start_dma(sc);
568 1.7 mycroft }
569 1.7 mycroft #endif
570 1.7 mycroft
571 1.7 mycroft #if 0
572 1.7 mycroft /* Enable ready interrupt */
573 1.7 mycroft MB_WRITE_REG(sc, MB8795_TXMASK,
574 1.7 mycroft MB_READ_REG(sc, MB8795_TXMASK)
575 1.7 mycroft | MB8795_TXMASK_TXRXIE/* READYIE */);
576 1.7 mycroft #endif
577 1.7 mycroft }
578 1.7 mycroft
579 1.7 mycroft
580 1.7 mycroft void
581 1.16 chs xe_dma_rx_completed(bus_dmamap_t map, void *arg)
582 1.7 mycroft {
583 1.7 mycroft struct mb8795_softc *sc = arg;
584 1.7 mycroft struct xe_softc *xsc = (struct xe_softc *)sc;
585 1.7 mycroft struct ifnet *ifp = &sc->sc_ethercom.ec_if;
586 1.7 mycroft
587 1.7 mycroft if (ifp->if_flags & IFF_RUNNING) {
588 1.7 mycroft xsc->sc_rx_completed_idx++;
589 1.7 mycroft xsc->sc_rx_completed_idx %= MB8795_NRXBUFS;
590 1.7 mycroft
591 1.24.18.1 christos DPRINTF(("%s: xe_dma_rx_completed(), "
592 1.24.18.1 christos "sc->sc_rx_completed_idx = %d\n",
593 1.22 chs device_xname(sc->sc_dev), xsc->sc_rx_completed_idx));
594 1.7 mycroft
595 1.7 mycroft #if (defined(DIAGNOSTIC))
596 1.24.18.1 christos if (map != xsc->sc_rx_dmamap[xsc->sc_rx_completed_idx])
597 1.8 provos panic("%s: Unexpected rx dmamap completed",
598 1.22 chs device_xname(sc->sc_dev));
599 1.7 mycroft #endif
600 1.7 mycroft }
601 1.7 mycroft #ifdef DIAGNOSTIC
602 1.7 mycroft else
603 1.24.18.1 christos DPRINTF(("%s: Unexpected rx dmamap completed while if not "
604 1.24.18.1 christos "running\n", device_xname(sc->sc_dev)));
605 1.7 mycroft #endif
606 1.7 mycroft }
607 1.7 mycroft
608 1.7 mycroft void
609 1.16 chs xe_dma_rx_shutdown(void *arg)
610 1.7 mycroft {
611 1.7 mycroft struct mb8795_softc *sc = arg;
612 1.7 mycroft struct xe_softc *xsc = (struct xe_softc *)sc;
613 1.7 mycroft struct ifnet *ifp = &sc->sc_ethercom.ec_if;
614 1.7 mycroft
615 1.7 mycroft if (ifp->if_flags & IFF_RUNNING) {
616 1.7 mycroft DPRINTF(("%s: xe_dma_rx_shutdown(), restarting.\n",
617 1.22 chs device_xname(sc->sc_dev)));
618 1.7 mycroft
619 1.7 mycroft nextdma_start(xsc->sc_rxdma, DMACSR_SETREAD);
620 1.7 mycroft if (turbo)
621 1.24.18.1 christos MB_WRITE_REG(sc, MB8795_RXMODE,
622 1.24.18.1 christos MB8795_RXMODE_TEST | MB8795_RXMODE_MULTICAST);
623 1.7 mycroft }
624 1.7 mycroft #ifdef DIAGNOSTIC
625 1.7 mycroft else
626 1.24.18.1 christos DPRINTF(("%s: Unexpected rx DMA shutdown while if not "
627 1.24.18.1 christos "running\n", device_xname(sc->sc_dev)));
628 1.7 mycroft #endif
629 1.7 mycroft }
630 1.7 mycroft
631 1.7 mycroft /*
632 1.7 mycroft * load a dmamap with a freshly allocated mbuf
633 1.7 mycroft */
634 1.7 mycroft struct mbuf *
635 1.16 chs xe_dma_rxmap_load(struct mb8795_softc *sc, bus_dmamap_t map)
636 1.7 mycroft {
637 1.7 mycroft struct xe_softc *xsc = (struct xe_softc *)sc;
638 1.7 mycroft struct ifnet *ifp = &sc->sc_ethercom.ec_if;
639 1.7 mycroft struct mbuf *m;
640 1.7 mycroft int error;
641 1.7 mycroft
642 1.7 mycroft MGETHDR(m, M_DONTWAIT, MT_DATA);
643 1.7 mycroft if (m) {
644 1.7 mycroft MCLGET(m, M_DONTWAIT);
645 1.7 mycroft if ((m->m_flags & M_EXT) == 0) {
646 1.7 mycroft m_freem(m);
647 1.7 mycroft m = NULL;
648 1.24.18.1 christos } else
649 1.7 mycroft m->m_len = MCLBYTES;
650 1.7 mycroft }
651 1.7 mycroft if (!m) {
652 1.24.18.1 christos /*
653 1.24.18.1 christos * @@@ Handle this gracefully by reusing a scratch buffer
654 1.7 mycroft * or something.
655 1.7 mycroft */
656 1.8 provos panic("Unable to get memory for incoming ethernet");
657 1.7 mycroft }
658 1.7 mycroft
659 1.24.18.1 christos /*
660 1.24.18.1 christos * Align buffer, @@@ next specific.
661 1.7 mycroft * perhaps should be using M_ALIGN here instead?
662 1.7 mycroft * First we give us a little room to align with.
663 1.7 mycroft */
664 1.7 mycroft {
665 1.7 mycroft u_char *buf = m->m_data;
666 1.7 mycroft int buflen = m->m_len;
667 1.7 mycroft buflen -= DMA_ENDALIGNMENT+DMA_BEGINALIGNMENT;
668 1.7 mycroft REALIGN_DMABUF(buf, buflen);
669 1.7 mycroft m->m_data = buf;
670 1.7 mycroft m->m_len = buflen;
671 1.7 mycroft }
672 1.7 mycroft
673 1.24 ozaki m_set_rcvif(m, ifp);
674 1.7 mycroft m->m_pkthdr.len = m->m_len;
675 1.7 mycroft
676 1.7 mycroft error = bus_dmamap_load_mbuf(xsc->sc_rxdma->sc_dmat,
677 1.7 mycroft map, m, BUS_DMA_NOWAIT);
678 1.7 mycroft
679 1.7 mycroft bus_dmamap_sync(xsc->sc_rxdma->sc_dmat, map, 0,
680 1.7 mycroft map->dm_mapsize, BUS_DMASYNC_PREREAD);
681 1.7 mycroft
682 1.7 mycroft if (error) {
683 1.7 mycroft DPRINTF(("DEBUG: m->m_data = %p, m->m_len = %d\n",
684 1.7 mycroft m->m_data, m->m_len));
685 1.7 mycroft DPRINTF(("DEBUG: MCLBYTES = %d, map->_dm_size = %ld\n",
686 1.7 mycroft MCLBYTES, map->_dm_size));
687 1.7 mycroft
688 1.8 provos panic("%s: can't load rx mbuf chain, error = %d",
689 1.22 chs device_xname(sc->sc_dev), error);
690 1.7 mycroft m_freem(m);
691 1.7 mycroft m = NULL;
692 1.7 mycroft }
693 1.7 mycroft
694 1.24.18.1 christos return m;
695 1.7 mycroft }
696 1.7 mycroft
697 1.7 mycroft bus_dmamap_t
698 1.16 chs xe_dma_rx_continue(void *arg)
699 1.7 mycroft {
700 1.7 mycroft struct mb8795_softc *sc = arg;
701 1.7 mycroft struct xe_softc *xsc = (struct xe_softc *)sc;
702 1.7 mycroft struct ifnet *ifp = &sc->sc_ethercom.ec_if;
703 1.7 mycroft bus_dmamap_t map = NULL;
704 1.7 mycroft
705 1.7 mycroft if (ifp->if_flags & IFF_RUNNING) {
706 1.24.18.1 christos if (((xsc->sc_rx_loaded_idx+1)%MB8795_NRXBUFS)
707 1.24.18.1 christos == xsc->sc_rx_handled_idx) {
708 1.24.18.1 christos /* Make space for one packet by dropping one */
709 1.7 mycroft struct mbuf *m;
710 1.7 mycroft m = xe_dma_rx_mbuf (sc);
711 1.7 mycroft if (m)
712 1.7 mycroft m_freem(m);
713 1.7 mycroft #if (defined(DIAGNOSTIC))
714 1.24.18.1 christos DPRINTF(("%s: out of receive DMA buffers\n",
715 1.24.18.1 christos device_xname(sc->sc_dev)));
716 1.7 mycroft #endif
717 1.7 mycroft }
718 1.7 mycroft xsc->sc_rx_loaded_idx++;
719 1.7 mycroft xsc->sc_rx_loaded_idx %= MB8795_NRXBUFS;
720 1.7 mycroft map = xsc->sc_rx_dmamap[xsc->sc_rx_loaded_idx];
721 1.7 mycroft
722 1.24.18.1 christos DPRINTF(("%s: xe_dma_rx_continue() xsc->sc_rx_loaded_idx "
723 1.24.18.1 christos "= %d\n", device_xname(sc->sc_dev),
724 1.24.18.1 christos xsc->sc_rx_loaded_idx));
725 1.7 mycroft }
726 1.7 mycroft #ifdef DIAGNOSTIC
727 1.7 mycroft else
728 1.13 wiz panic("%s: Unexpected rx DMA continue while if not running",
729 1.22 chs device_xname(sc->sc_dev));
730 1.7 mycroft #endif
731 1.7 mycroft
732 1.24.18.1 christos return map;
733 1.7 mycroft }
734 1.7 mycroft
735 1.7 mycroft bus_dmamap_t
736 1.16 chs xe_dma_tx_continue(void *arg)
737 1.7 mycroft {
738 1.7 mycroft struct mb8795_softc *sc = arg;
739 1.7 mycroft struct xe_softc *xsc = (struct xe_softc *)sc;
740 1.7 mycroft bus_dmamap_t map;
741 1.7 mycroft
742 1.22 chs DPRINTF(("%s: xe_dma_tx_continue()\n", device_xname(sc->sc_dev)));
743 1.7 mycroft
744 1.24.18.1 christos if (xsc->sc_tx_loaded)
745 1.7 mycroft map = NULL;
746 1.24.18.1 christos else {
747 1.7 mycroft map = xsc->sc_tx_dmamap;
748 1.7 mycroft xsc->sc_tx_loaded++;
749 1.7 mycroft }
750 1.7 mycroft
751 1.7 mycroft #ifdef DIAGNOSTIC
752 1.24.18.1 christos if (xsc->sc_tx_loaded != 1)
753 1.22 chs panic("%s: sc->sc_tx_loaded is %d", device_xname(sc->sc_dev),
754 1.7 mycroft xsc->sc_tx_loaded);
755 1.7 mycroft #endif
756 1.7 mycroft
757 1.24.18.1 christos return map;
758 1.1 dbj }
759