xref: /freebsd/sys/dev/gem/if_gem.c (revision 3fe92528afe8313fecf48822dde74bad5e380f48)
1 /*-
2  * Copyright (C) 2001 Eduardo Horvath.
3  * Copyright (c) 2001-2003 Thomas Moestl
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR  ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR  BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  *
27  *	from: NetBSD: gem.c,v 1.21 2002/06/01 23:50:58 lukem Exp
28  */
29 
30 #include <sys/cdefs.h>
31 __FBSDID("$FreeBSD$");
32 
33 /*
34  * Driver for Sun GEM ethernet controllers.
35  */
36 
37 #if 0
38 #define	GEM_DEBUG
39 #endif
40 
41 #if 0	/* XXX: In case of emergency, re-enable this. */
42 #define	GEM_RINT_TIMEOUT
43 #endif
44 
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/bus.h>
48 #include <sys/callout.h>
49 #include <sys/endian.h>
50 #include <sys/mbuf.h>
51 #include <sys/malloc.h>
52 #include <sys/kernel.h>
53 #include <sys/lock.h>
54 #include <sys/module.h>
55 #include <sys/mutex.h>
56 #include <sys/socket.h>
57 #include <sys/sockio.h>
58 
59 #include <net/bpf.h>
60 #include <net/ethernet.h>
61 #include <net/if.h>
62 #include <net/if_arp.h>
63 #include <net/if_dl.h>
64 #include <net/if_media.h>
65 #include <net/if_types.h>
66 #include <net/if_vlan_var.h>
67 
68 #include <machine/bus.h>
69 
70 #include <dev/mii/mii.h>
71 #include <dev/mii/miivar.h>
72 
73 #include <dev/gem/if_gemreg.h>
74 #include <dev/gem/if_gemvar.h>
75 
76 #define TRIES	10000
77 
78 static void	gem_start(struct ifnet *);
79 static void	gem_start_locked(struct ifnet *);
80 static void	gem_stop(struct ifnet *, int);
81 static int	gem_ioctl(struct ifnet *, u_long, caddr_t);
82 static void	gem_cddma_callback(void *, bus_dma_segment_t *, int, int);
83 static void	gem_txdma_callback(void *, bus_dma_segment_t *, int,
84     bus_size_t, int);
85 static void	gem_tick(void *);
86 static void	gem_watchdog(struct ifnet *);
87 static void	gem_init(void *);
88 static void	gem_init_locked(struct gem_softc *sc);
89 static void	gem_init_regs(struct gem_softc *sc);
90 static int	gem_ringsize(int sz);
91 static int	gem_meminit(struct gem_softc *);
92 static int	gem_load_txmbuf(struct gem_softc *, struct mbuf *);
93 static void	gem_mifinit(struct gem_softc *);
94 static int	gem_bitwait(struct gem_softc *sc, bus_addr_t r,
95     u_int32_t clr, u_int32_t set);
96 static int	gem_reset_rx(struct gem_softc *);
97 static int	gem_reset_tx(struct gem_softc *);
98 static int	gem_disable_rx(struct gem_softc *);
99 static int	gem_disable_tx(struct gem_softc *);
100 static void	gem_rxdrain(struct gem_softc *);
101 static int	gem_add_rxbuf(struct gem_softc *, int);
102 static void	gem_setladrf(struct gem_softc *);
103 
104 struct mbuf	*gem_get(struct gem_softc *, int, int);
105 static void	gem_eint(struct gem_softc *, u_int);
106 static void	gem_rint(struct gem_softc *);
107 #ifdef GEM_RINT_TIMEOUT
108 static void	gem_rint_timeout(void *);
109 #endif
110 static void	gem_tint(struct gem_softc *);
111 #ifdef notyet
112 static void	gem_power(int, void *);
113 #endif
114 
115 devclass_t gem_devclass;
116 DRIVER_MODULE(miibus, gem, miibus_driver, miibus_devclass, 0, 0);
117 MODULE_DEPEND(gem, miibus, 1, 1, 1);
118 
119 #ifdef GEM_DEBUG
120 #include <sys/ktr.h>
121 #define	KTR_GEM		KTR_CT2
122 #endif
123 
124 #define	GEM_NSEGS GEM_NTXDESC
125 
126 /*
127  * gem_attach:
128  *
129  *	Attach a Gem interface to the system.
130  */
131 int
132 gem_attach(sc)
133 	struct gem_softc *sc;
134 {
135 	struct ifnet *ifp;
136 	struct mii_softc *child;
137 	int i, error;
138 	u_int32_t v;
139 
140 	ifp = sc->sc_ifp = if_alloc(IFT_ETHER);
141 	if (ifp == NULL)
142 		return (ENOSPC);
143 
144 	callout_init_mtx(&sc->sc_tick_ch, &sc->sc_mtx, 0);
145 #ifdef GEM_RINT_TIMEOUT
146 	callout_init_mtx(&sc->sc_rx_ch, &sc->sc_mtx, 0);
147 #endif
148 
149 	/* Make sure the chip is stopped. */
150 	ifp->if_softc = sc;
151 	GEM_LOCK(sc);
152 	gem_stop(ifp, 0);
153 	gem_reset(sc);
154 	GEM_UNLOCK(sc);
155 
156 	error = bus_dma_tag_create(bus_get_dma_tag(sc->sc_dev), 1, 0,
157 	    BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL,
158 	    MCLBYTES, GEM_NSEGS, BUS_SPACE_MAXSIZE_32BIT, 0, NULL, NULL,
159 	    &sc->sc_pdmatag);
160 	if (error)
161 		goto fail_ifnet;
162 
163 	error = bus_dma_tag_create(sc->sc_pdmatag, 1, 0,
164 	    BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL, MAXBSIZE,
165 	    1, BUS_SPACE_MAXSIZE_32BIT, BUS_DMA_ALLOCNOW, NULL, NULL,
166 	    &sc->sc_rdmatag);
167 	if (error)
168 		goto fail_ptag;
169 
170 	error = bus_dma_tag_create(sc->sc_pdmatag, 1, 0,
171 	    BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL,
172 	    GEM_TD_BUFSIZE, GEM_NTXDESC, BUS_SPACE_MAXSIZE_32BIT,
173 	    BUS_DMA_ALLOCNOW, NULL, NULL, &sc->sc_tdmatag);
174 	if (error)
175 		goto fail_rtag;
176 
177 	error = bus_dma_tag_create(sc->sc_pdmatag, PAGE_SIZE, 0,
178 	    BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR, NULL, NULL,
179 	    sizeof(struct gem_control_data), 1,
180 	    sizeof(struct gem_control_data), BUS_DMA_ALLOCNOW,
181 	    busdma_lock_mutex, &sc->sc_mtx, &sc->sc_cdmatag);
182 	if (error)
183 		goto fail_ttag;
184 
185 	/*
186 	 * Allocate the control data structures, and create and load the
187 	 * DMA map for it.
188 	 */
189 	if ((error = bus_dmamem_alloc(sc->sc_cdmatag,
190 	    (void **)&sc->sc_control_data, 0, &sc->sc_cddmamap))) {
191 		device_printf(sc->sc_dev, "unable to allocate control data,"
192 		    " error = %d\n", error);
193 		goto fail_ctag;
194 	}
195 
196 	sc->sc_cddma = 0;
197 	if ((error = bus_dmamap_load(sc->sc_cdmatag, sc->sc_cddmamap,
198 	    sc->sc_control_data, sizeof(struct gem_control_data),
199 	    gem_cddma_callback, sc, 0)) != 0 || sc->sc_cddma == 0) {
200 		device_printf(sc->sc_dev, "unable to load control data DMA "
201 		    "map, error = %d\n", error);
202 		goto fail_cmem;
203 	}
204 
205 	/*
206 	 * Initialize the transmit job descriptors.
207 	 */
208 	STAILQ_INIT(&sc->sc_txfreeq);
209 	STAILQ_INIT(&sc->sc_txdirtyq);
210 
211 	/*
212 	 * Create the transmit buffer DMA maps.
213 	 */
214 	error = ENOMEM;
215 	for (i = 0; i < GEM_TXQUEUELEN; i++) {
216 		struct gem_txsoft *txs;
217 
218 		txs = &sc->sc_txsoft[i];
219 		txs->txs_mbuf = NULL;
220 		txs->txs_ndescs = 0;
221 		if ((error = bus_dmamap_create(sc->sc_tdmatag, 0,
222 		    &txs->txs_dmamap)) != 0) {
223 			device_printf(sc->sc_dev, "unable to create tx DMA map "
224 			    "%d, error = %d\n", i, error);
225 			goto fail_txd;
226 		}
227 		STAILQ_INSERT_TAIL(&sc->sc_txfreeq, txs, txs_q);
228 	}
229 
230 	/*
231 	 * Create the receive buffer DMA maps.
232 	 */
233 	for (i = 0; i < GEM_NRXDESC; i++) {
234 		if ((error = bus_dmamap_create(sc->sc_rdmatag, 0,
235 		    &sc->sc_rxsoft[i].rxs_dmamap)) != 0) {
236 			device_printf(sc->sc_dev, "unable to create rx DMA map "
237 			    "%d, error = %d\n", i, error);
238 			goto fail_rxd;
239 		}
240 		sc->sc_rxsoft[i].rxs_mbuf = NULL;
241 	}
242 
243 	gem_mifinit(sc);
244 
245 	if ((error = mii_phy_probe(sc->sc_dev, &sc->sc_miibus, gem_mediachange,
246 	    gem_mediastatus)) != 0) {
247 		device_printf(sc->sc_dev, "phy probe failed: %d\n", error);
248 		goto fail_rxd;
249 	}
250 	sc->sc_mii = device_get_softc(sc->sc_miibus);
251 
252 	/*
253 	 * From this point forward, the attachment cannot fail.  A failure
254 	 * before this point releases all resources that may have been
255 	 * allocated.
256 	 */
257 
258 	/* Get RX FIFO size */
259 	sc->sc_rxfifosize = 64 *
260 	    bus_space_read_4(sc->sc_bustag, sc->sc_h, GEM_RX_FIFO_SIZE);
261 
262 	/* Get TX FIFO size */
263 	v = bus_space_read_4(sc->sc_bustag, sc->sc_h, GEM_TX_FIFO_SIZE);
264 	device_printf(sc->sc_dev, "%ukB RX FIFO, %ukB TX FIFO\n",
265 	    sc->sc_rxfifosize / 1024, v / 16);
266 
267 	/* Initialize ifnet structure. */
268 	ifp->if_softc = sc;
269 	if_initname(ifp, device_get_name(sc->sc_dev),
270 	    device_get_unit(sc->sc_dev));
271 	ifp->if_mtu = ETHERMTU;
272 	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
273 	ifp->if_start = gem_start;
274 	ifp->if_ioctl = gem_ioctl;
275 	ifp->if_watchdog = gem_watchdog;
276 	ifp->if_init = gem_init;
277 	ifp->if_snd.ifq_maxlen = GEM_TXQUEUELEN;
278 	/*
279 	 * Walk along the list of attached MII devices and
280 	 * establish an `MII instance' to `phy number'
281 	 * mapping. We'll use this mapping in media change
282 	 * requests to determine which phy to use to program
283 	 * the MIF configuration register.
284 	 */
285 	for (child = LIST_FIRST(&sc->sc_mii->mii_phys); child != NULL;
286 	     child = LIST_NEXT(child, mii_list)) {
287 		/*
288 		 * Note: we support just two PHYs: the built-in
289 		 * internal device and an external on the MII
290 		 * connector.
291 		 */
292 		if (child->mii_phy > 1 || child->mii_inst > 1) {
293 			device_printf(sc->sc_dev, "cannot accomodate "
294 			    "MII device %s at phy %d, instance %d\n",
295 			    device_get_name(child->mii_dev),
296 			    child->mii_phy, child->mii_inst);
297 			continue;
298 		}
299 
300 		sc->sc_phys[child->mii_inst] = child->mii_phy;
301 	}
302 
303 	/*
304 	 * Now select and activate the PHY we will use.
305 	 *
306 	 * The order of preference is External (MDI1),
307 	 * Internal (MDI0), Serial Link (no MII).
308 	 */
309 	if (sc->sc_phys[1]) {
310 #ifdef GEM_DEBUG
311 		printf("using external phy\n");
312 #endif
313 		sc->sc_mif_config |= GEM_MIF_CONFIG_PHY_SEL;
314 	} else {
315 #ifdef GEM_DEBUG
316 		printf("using internal phy\n");
317 #endif
318 		sc->sc_mif_config &= ~GEM_MIF_CONFIG_PHY_SEL;
319 	}
320 	bus_space_write_4(sc->sc_bustag, sc->sc_h, GEM_MIF_CONFIG,
321 	    sc->sc_mif_config);
322 	/* Attach the interface. */
323 	ether_ifattach(ifp, sc->sc_enaddr);
324 
325 #ifdef notyet
326 	/*
327 	 * Add a suspend hook to make sure we come back up after a
328 	 * resume.
329 	 */
330 	sc->sc_powerhook = powerhook_establish(gem_power, sc);
331 	if (sc->sc_powerhook == NULL)
332 		device_printf(sc->sc_dev, "WARNING: unable to establish power "
333 		    "hook\n");
334 #endif
335 
336 	/*
337 	 * Tell the upper layer(s) we support long frames.
338 	 */
339 	ifp->if_data.ifi_hdrlen = sizeof(struct ether_vlan_header);
340 	ifp->if_capabilities |= IFCAP_VLAN_MTU;
341 	ifp->if_capenable |= IFCAP_VLAN_MTU;
342 
343 	return (0);
344 
345 	/*
346 	 * Free any resources we've allocated during the failed attach
347 	 * attempt.  Do this in reverse order and fall through.
348 	 */
349 fail_rxd:
350 	for (i = 0; i < GEM_NRXDESC; i++) {
351 		if (sc->sc_rxsoft[i].rxs_dmamap != NULL)
352 			bus_dmamap_destroy(sc->sc_rdmatag,
353 			    sc->sc_rxsoft[i].rxs_dmamap);
354 	}
355 fail_txd:
356 	for (i = 0; i < GEM_TXQUEUELEN; i++) {
357 		if (sc->sc_txsoft[i].txs_dmamap != NULL)
358 			bus_dmamap_destroy(sc->sc_tdmatag,
359 			    sc->sc_txsoft[i].txs_dmamap);
360 	}
361 	bus_dmamap_unload(sc->sc_cdmatag, sc->sc_cddmamap);
362 fail_cmem:
363 	bus_dmamem_free(sc->sc_cdmatag, sc->sc_control_data,
364 	    sc->sc_cddmamap);
365 fail_ctag:
366 	bus_dma_tag_destroy(sc->sc_cdmatag);
367 fail_ttag:
368 	bus_dma_tag_destroy(sc->sc_tdmatag);
369 fail_rtag:
370 	bus_dma_tag_destroy(sc->sc_rdmatag);
371 fail_ptag:
372 	bus_dma_tag_destroy(sc->sc_pdmatag);
373 fail_ifnet:
374 	if_free(ifp);
375 	return (error);
376 }
377 
378 void
379 gem_detach(sc)
380 	struct gem_softc *sc;
381 {
382 	struct ifnet *ifp = sc->sc_ifp;
383 	int i;
384 
385 	GEM_LOCK(sc);
386 	gem_stop(ifp, 1);
387 	GEM_UNLOCK(sc);
388 	callout_drain(&sc->sc_tick_ch);
389 #ifdef GEM_RINT_TIMEOUT
390 	callout_drain(&sc->sc_rx_ch);
391 #endif
392 	ether_ifdetach(ifp);
393 	if_free(ifp);
394 	device_delete_child(sc->sc_dev, sc->sc_miibus);
395 
396 	for (i = 0; i < GEM_NRXDESC; i++) {
397 		if (sc->sc_rxsoft[i].rxs_dmamap != NULL)
398 			bus_dmamap_destroy(sc->sc_rdmatag,
399 			    sc->sc_rxsoft[i].rxs_dmamap);
400 	}
401 	for (i = 0; i < GEM_TXQUEUELEN; i++) {
402 		if (sc->sc_txsoft[i].txs_dmamap != NULL)
403 			bus_dmamap_destroy(sc->sc_tdmatag,
404 			    sc->sc_txsoft[i].txs_dmamap);
405 	}
406 	GEM_CDSYNC(sc, BUS_DMASYNC_POSTREAD);
407 	GEM_CDSYNC(sc, BUS_DMASYNC_POSTWRITE);
408 	bus_dmamap_unload(sc->sc_cdmatag, sc->sc_cddmamap);
409 	bus_dmamem_free(sc->sc_cdmatag, sc->sc_control_data,
410 	    sc->sc_cddmamap);
411 	bus_dma_tag_destroy(sc->sc_cdmatag);
412 	bus_dma_tag_destroy(sc->sc_tdmatag);
413 	bus_dma_tag_destroy(sc->sc_rdmatag);
414 	bus_dma_tag_destroy(sc->sc_pdmatag);
415 }
416 
417 void
418 gem_suspend(sc)
419 	struct gem_softc *sc;
420 {
421 	struct ifnet *ifp = sc->sc_ifp;
422 
423 	GEM_LOCK(sc);
424 	gem_stop(ifp, 0);
425 	GEM_UNLOCK(sc);
426 }
427 
428 void
429 gem_resume(sc)
430 	struct gem_softc *sc;
431 {
432 	struct ifnet *ifp = sc->sc_ifp;
433 
434 	GEM_LOCK(sc);
435 	/*
436 	 * On resume all registers have to be initialized again like
437 	 * after power-on.
438 	 */
439 	sc->sc_inited = 0;
440 	if (ifp->if_flags & IFF_UP)
441 		gem_init_locked(sc);
442 	GEM_UNLOCK(sc);
443 }
444 
445 static void
446 gem_cddma_callback(xsc, segs, nsegs, error)
447 	void *xsc;
448 	bus_dma_segment_t *segs;
449 	int nsegs;
450 	int error;
451 {
452 	struct gem_softc *sc = (struct gem_softc *)xsc;
453 
454 	if (error != 0)
455 		return;
456 	if (nsegs != 1) {
457 		/* can't happen... */
458 		panic("gem_cddma_callback: bad control buffer segment count");
459 	}
460 	sc->sc_cddma = segs[0].ds_addr;
461 }
462 
463 static void
464 gem_txdma_callback(xsc, segs, nsegs, totsz, error)
465 	void *xsc;
466 	bus_dma_segment_t *segs;
467 	int nsegs;
468 	bus_size_t totsz;
469 	int error;
470 {
471 	struct gem_txdma *txd = (struct gem_txdma *)xsc;
472 	struct gem_softc *sc = txd->txd_sc;
473 	struct gem_txsoft *txs = txd->txd_txs;
474 	bus_size_t len = 0;
475 	uint64_t flags = 0;
476 	int seg, nexttx;
477 
478 	if (error != 0)
479 		return;
480 	/*
481 	 * Ensure we have enough descriptors free to describe
482 	 * the packet.  Note, we always reserve one descriptor
483 	 * at the end of the ring as a termination point, to
484 	 * prevent wrap-around.
485 	 */
486 	if (nsegs > sc->sc_txfree - 1) {
487 		txs->txs_ndescs = -1;
488 		return;
489 	}
490 	txs->txs_ndescs = nsegs;
491 
492 	nexttx = txs->txs_firstdesc;
493 	/*
494 	 * Initialize the transmit descriptors.
495 	 */
496 	for (seg = 0; seg < nsegs;
497 	     seg++, nexttx = GEM_NEXTTX(nexttx)) {
498 #ifdef GEM_DEBUG
499 		CTR5(KTR_GEM, "txdma_cb: mapping seg %d (txd %d), len "
500 		    "%lx, addr %#lx (%#lx)",  seg, nexttx,
501 		    segs[seg].ds_len, segs[seg].ds_addr,
502 		    GEM_DMA_WRITE(sc, segs[seg].ds_addr));
503 #endif
504 
505 		if (segs[seg].ds_len == 0)
506 			continue;
507 		sc->sc_txdescs[nexttx].gd_addr =
508 		    GEM_DMA_WRITE(sc, segs[seg].ds_addr);
509 		KASSERT(segs[seg].ds_len < GEM_TD_BUFSIZE,
510 		    ("gem_txdma_callback: segment size too large!"));
511 		flags = segs[seg].ds_len & GEM_TD_BUFSIZE;
512 		if (len == 0) {
513 #ifdef GEM_DEBUG
514 			CTR2(KTR_GEM, "txdma_cb: start of packet at seg %d, "
515 			    "tx %d", seg, nexttx);
516 #endif
517 			flags |= GEM_TD_START_OF_PACKET;
518 			if (++sc->sc_txwin > GEM_NTXSEGS * 2 / 3) {
519 				sc->sc_txwin = 0;
520 				flags |= GEM_TD_INTERRUPT_ME;
521 			}
522 		}
523 		if (len + segs[seg].ds_len == totsz) {
524 #ifdef GEM_DEBUG
525 			CTR2(KTR_GEM, "txdma_cb: end of packet at seg %d, "
526 			    "tx %d", seg, nexttx);
527 #endif
528 			flags |= GEM_TD_END_OF_PACKET;
529 		}
530 		sc->sc_txdescs[nexttx].gd_flags = GEM_DMA_WRITE(sc, flags);
531 		txs->txs_lastdesc = nexttx;
532 		len += segs[seg].ds_len;
533 	}
534 	KASSERT((flags & GEM_TD_END_OF_PACKET) != 0,
535 	    ("gem_txdma_callback: missed end of packet!"));
536 }
537 
538 static void
539 gem_tick(arg)
540 	void *arg;
541 {
542 	struct gem_softc *sc = arg;
543 
544 	GEM_LOCK_ASSERT(sc, MA_OWNED);
545 	mii_tick(sc->sc_mii);
546 
547 	callout_reset(&sc->sc_tick_ch, hz, gem_tick, sc);
548 }
549 
550 static int
551 gem_bitwait(sc, r, clr, set)
552 	struct gem_softc *sc;
553 	bus_addr_t r;
554 	u_int32_t clr;
555 	u_int32_t set;
556 {
557 	int i;
558 	u_int32_t reg;
559 
560 	for (i = TRIES; i--; DELAY(100)) {
561 		reg = bus_space_read_4(sc->sc_bustag, sc->sc_h, r);
562 		if ((r & clr) == 0 && (r & set) == set)
563 			return (1);
564 	}
565 	return (0);
566 }
567 
568 void
569 gem_reset(sc)
570 	struct gem_softc *sc;
571 {
572 	bus_space_tag_t t = sc->sc_bustag;
573 	bus_space_handle_t h = sc->sc_h;
574 
575 #ifdef GEM_DEBUG
576 	CTR1(KTR_GEM, "%s: gem_reset", device_get_name(sc->sc_dev));
577 #endif
578 	gem_reset_rx(sc);
579 	gem_reset_tx(sc);
580 
581 	/* Do a full reset */
582 	bus_space_write_4(t, h, GEM_RESET, GEM_RESET_RX | GEM_RESET_TX);
583 	if (!gem_bitwait(sc, GEM_RESET, GEM_RESET_RX | GEM_RESET_TX, 0))
584 		device_printf(sc->sc_dev, "cannot reset device\n");
585 }
586 
587 
588 /*
589  * gem_rxdrain:
590  *
591  *	Drain the receive queue.
592  */
593 static void
594 gem_rxdrain(sc)
595 	struct gem_softc *sc;
596 {
597 	struct gem_rxsoft *rxs;
598 	int i;
599 
600 	for (i = 0; i < GEM_NRXDESC; i++) {
601 		rxs = &sc->sc_rxsoft[i];
602 		if (rxs->rxs_mbuf != NULL) {
603 			bus_dmamap_sync(sc->sc_rdmatag, rxs->rxs_dmamap,
604 			    BUS_DMASYNC_POSTREAD);
605 			bus_dmamap_unload(sc->sc_rdmatag, rxs->rxs_dmamap);
606 			m_freem(rxs->rxs_mbuf);
607 			rxs->rxs_mbuf = NULL;
608 		}
609 	}
610 }
611 
612 /*
613  * Reset the whole thing.
614  */
615 static void
616 gem_stop(ifp, disable)
617 	struct ifnet *ifp;
618 	int disable;
619 {
620 	struct gem_softc *sc = (struct gem_softc *)ifp->if_softc;
621 	struct gem_txsoft *txs;
622 
623 #ifdef GEM_DEBUG
624 	CTR1(KTR_GEM, "%s: gem_stop", device_get_name(sc->sc_dev));
625 #endif
626 
627 	callout_stop(&sc->sc_tick_ch);
628 #ifdef GEM_RINT_TIMEOUT
629 	callout_stop(&sc->sc_rx_ch);
630 #endif
631 
632 	/* XXX - Should we reset these instead? */
633 	gem_disable_tx(sc);
634 	gem_disable_rx(sc);
635 
636 	/*
637 	 * Release any queued transmit buffers.
638 	 */
639 	while ((txs = STAILQ_FIRST(&sc->sc_txdirtyq)) != NULL) {
640 		STAILQ_REMOVE_HEAD(&sc->sc_txdirtyq, txs_q);
641 		if (txs->txs_ndescs != 0) {
642 			bus_dmamap_sync(sc->sc_tdmatag, txs->txs_dmamap,
643 			    BUS_DMASYNC_POSTWRITE);
644 			bus_dmamap_unload(sc->sc_tdmatag, txs->txs_dmamap);
645 			if (txs->txs_mbuf != NULL) {
646 				m_freem(txs->txs_mbuf);
647 				txs->txs_mbuf = NULL;
648 			}
649 		}
650 		STAILQ_INSERT_TAIL(&sc->sc_txfreeq, txs, txs_q);
651 	}
652 
653 	if (disable)
654 		gem_rxdrain(sc);
655 
656 	/*
657 	 * Mark the interface down and cancel the watchdog timer.
658 	 */
659 	ifp->if_drv_flags &= ~(IFF_DRV_RUNNING | IFF_DRV_OACTIVE);
660 	ifp->if_timer = 0;
661 }
662 
663 /*
664  * Reset the receiver
665  */
666 int
667 gem_reset_rx(sc)
668 	struct gem_softc *sc;
669 {
670 	bus_space_tag_t t = sc->sc_bustag;
671 	bus_space_handle_t h = sc->sc_h;
672 
673 	/*
674 	 * Resetting while DMA is in progress can cause a bus hang, so we
675 	 * disable DMA first.
676 	 */
677 	gem_disable_rx(sc);
678 	bus_space_write_4(t, h, GEM_RX_CONFIG, 0);
679 	/* Wait till it finishes */
680 	if (!gem_bitwait(sc, GEM_RX_CONFIG, 1, 0))
681 		device_printf(sc->sc_dev, "cannot disable read dma\n");
682 
683 	/* Wait 5ms extra. */
684 	DELAY(5000);
685 
686 	/* Finally, reset the ERX */
687 	bus_space_write_4(t, h, GEM_RESET, GEM_RESET_RX);
688 	/* Wait till it finishes */
689 	if (!gem_bitwait(sc, GEM_RESET, GEM_RESET_TX, 0)) {
690 		device_printf(sc->sc_dev, "cannot reset receiver\n");
691 		return (1);
692 	}
693 	return (0);
694 }
695 
696 
697 /*
698  * Reset the transmitter
699  */
700 static int
701 gem_reset_tx(sc)
702 	struct gem_softc *sc;
703 {
704 	bus_space_tag_t t = sc->sc_bustag;
705 	bus_space_handle_t h = sc->sc_h;
706 	int i;
707 
708 	/*
709 	 * Resetting while DMA is in progress can cause a bus hang, so we
710 	 * disable DMA first.
711 	 */
712 	gem_disable_tx(sc);
713 	bus_space_write_4(t, h, GEM_TX_CONFIG, 0);
714 	/* Wait till it finishes */
715 	if (!gem_bitwait(sc, GEM_TX_CONFIG, 1, 0))
716 		device_printf(sc->sc_dev, "cannot disable read dma\n");
717 
718 	/* Wait 5ms extra. */
719 	DELAY(5000);
720 
721 	/* Finally, reset the ETX */
722 	bus_space_write_4(t, h, GEM_RESET, GEM_RESET_TX);
723 	/* Wait till it finishes */
724 	for (i = TRIES; i--; DELAY(100))
725 		if ((bus_space_read_4(t, h, GEM_RESET) & GEM_RESET_TX) == 0)
726 			break;
727 	if (!gem_bitwait(sc, GEM_RESET, GEM_RESET_TX, 0)) {
728 		device_printf(sc->sc_dev, "cannot reset receiver\n");
729 		return (1);
730 	}
731 	return (0);
732 }
733 
734 /*
735  * disable receiver.
736  */
737 static int
738 gem_disable_rx(sc)
739 	struct gem_softc *sc;
740 {
741 	bus_space_tag_t t = sc->sc_bustag;
742 	bus_space_handle_t h = sc->sc_h;
743 	u_int32_t cfg;
744 
745 	/* Flip the enable bit */
746 	cfg = bus_space_read_4(t, h, GEM_MAC_RX_CONFIG);
747 	cfg &= ~GEM_MAC_RX_ENABLE;
748 	bus_space_write_4(t, h, GEM_MAC_RX_CONFIG, cfg);
749 
750 	/* Wait for it to finish */
751 	return (gem_bitwait(sc, GEM_MAC_RX_CONFIG, GEM_MAC_RX_ENABLE, 0));
752 }
753 
754 /*
755  * disable transmitter.
756  */
757 static int
758 gem_disable_tx(sc)
759 	struct gem_softc *sc;
760 {
761 	bus_space_tag_t t = sc->sc_bustag;
762 	bus_space_handle_t h = sc->sc_h;
763 	u_int32_t cfg;
764 
765 	/* Flip the enable bit */
766 	cfg = bus_space_read_4(t, h, GEM_MAC_TX_CONFIG);
767 	cfg &= ~GEM_MAC_TX_ENABLE;
768 	bus_space_write_4(t, h, GEM_MAC_TX_CONFIG, cfg);
769 
770 	/* Wait for it to finish */
771 	return (gem_bitwait(sc, GEM_MAC_TX_CONFIG, GEM_MAC_TX_ENABLE, 0));
772 }
773 
774 /*
775  * Initialize interface.
776  */
777 static int
778 gem_meminit(sc)
779 	struct gem_softc *sc;
780 {
781 	struct gem_rxsoft *rxs;
782 	int i, error;
783 
784 	/*
785 	 * Initialize the transmit descriptor ring.
786 	 */
787 	for (i = 0; i < GEM_NTXDESC; i++) {
788 		sc->sc_txdescs[i].gd_flags = 0;
789 		sc->sc_txdescs[i].gd_addr = 0;
790 	}
791 	sc->sc_txfree = GEM_MAXTXFREE;
792 	sc->sc_txnext = 0;
793 	sc->sc_txwin = 0;
794 
795 	/*
796 	 * Initialize the receive descriptor and receive job
797 	 * descriptor rings.
798 	 */
799 	for (i = 0; i < GEM_NRXDESC; i++) {
800 		rxs = &sc->sc_rxsoft[i];
801 		if (rxs->rxs_mbuf == NULL) {
802 			if ((error = gem_add_rxbuf(sc, i)) != 0) {
803 				device_printf(sc->sc_dev, "unable to "
804 				    "allocate or map rx buffer %d, error = "
805 				    "%d\n", i, error);
806 				/*
807 				 * XXX Should attempt to run with fewer receive
808 				 * XXX buffers instead of just failing.
809 				 */
810 				gem_rxdrain(sc);
811 				return (1);
812 			}
813 		} else
814 			GEM_INIT_RXDESC(sc, i);
815 	}
816 	sc->sc_rxptr = 0;
817 	GEM_CDSYNC(sc, BUS_DMASYNC_PREWRITE);
818 	GEM_CDSYNC(sc, BUS_DMASYNC_PREREAD);
819 
820 	return (0);
821 }
822 
823 static int
824 gem_ringsize(sz)
825 	int sz;
826 {
827 	int v = 0;
828 
829 	switch (sz) {
830 	case 32:
831 		v = GEM_RING_SZ_32;
832 		break;
833 	case 64:
834 		v = GEM_RING_SZ_64;
835 		break;
836 	case 128:
837 		v = GEM_RING_SZ_128;
838 		break;
839 	case 256:
840 		v = GEM_RING_SZ_256;
841 		break;
842 	case 512:
843 		v = GEM_RING_SZ_512;
844 		break;
845 	case 1024:
846 		v = GEM_RING_SZ_1024;
847 		break;
848 	case 2048:
849 		v = GEM_RING_SZ_2048;
850 		break;
851 	case 4096:
852 		v = GEM_RING_SZ_4096;
853 		break;
854 	case 8192:
855 		v = GEM_RING_SZ_8192;
856 		break;
857 	default:
858 		printf("gem: invalid Receive Descriptor ring size\n");
859 		break;
860 	}
861 	return (v);
862 }
863 
864 static void
865 gem_init(xsc)
866 	void *xsc;
867 {
868 	struct gem_softc *sc = (struct gem_softc *)xsc;
869 
870 	GEM_LOCK(sc);
871 	gem_init_locked(sc);
872 	GEM_UNLOCK(sc);
873 }
874 
875 /*
876  * Initialization of interface; set up initialization block
877  * and transmit/receive descriptor rings.
878  */
879 static void
880 gem_init_locked(sc)
881 	struct gem_softc *sc;
882 {
883 	struct ifnet *ifp = sc->sc_ifp;
884 	bus_space_tag_t t = sc->sc_bustag;
885 	bus_space_handle_t h = sc->sc_h;
886 	u_int32_t v;
887 
888 	GEM_LOCK_ASSERT(sc, MA_OWNED);
889 
890 #ifdef GEM_DEBUG
891 	CTR1(KTR_GEM, "%s: gem_init: calling stop", device_get_name(sc->sc_dev));
892 #endif
893 	/*
894 	 * Initialization sequence. The numbered steps below correspond
895 	 * to the sequence outlined in section 6.3.5.1 in the Ethernet
896 	 * Channel Engine manual (part of the PCIO manual).
897 	 * See also the STP2002-STQ document from Sun Microsystems.
898 	 */
899 
900 	/* step 1 & 2. Reset the Ethernet Channel */
901 	gem_stop(sc->sc_ifp, 0);
902 	gem_reset(sc);
903 #ifdef GEM_DEBUG
904 	CTR1(KTR_GEM, "%s: gem_init: restarting", device_get_name(sc->sc_dev));
905 #endif
906 
907 	/* Re-initialize the MIF */
908 	gem_mifinit(sc);
909 
910 	/* step 3. Setup data structures in host memory */
911 	gem_meminit(sc);
912 
913 	/* step 4. TX MAC registers & counters */
914 	gem_init_regs(sc);
915 
916 	/* step 5. RX MAC registers & counters */
917 	gem_setladrf(sc);
918 
919 	/* step 6 & 7. Program Descriptor Ring Base Addresses */
920 	/* NOTE: we use only 32-bit DMA addresses here. */
921 	bus_space_write_4(t, h, GEM_TX_RING_PTR_HI, 0);
922 	bus_space_write_4(t, h, GEM_TX_RING_PTR_LO, GEM_CDTXADDR(sc, 0));
923 
924 	bus_space_write_4(t, h, GEM_RX_RING_PTR_HI, 0);
925 	bus_space_write_4(t, h, GEM_RX_RING_PTR_LO, GEM_CDRXADDR(sc, 0));
926 #ifdef GEM_DEBUG
927 	CTR3(KTR_GEM, "loading rx ring %lx, tx ring %lx, cddma %lx",
928 	    GEM_CDRXADDR(sc, 0), GEM_CDTXADDR(sc, 0), sc->sc_cddma);
929 #endif
930 
931 	/* step 8. Global Configuration & Interrupt Mask */
932 	bus_space_write_4(t, h, GEM_INTMASK,
933 		      ~(GEM_INTR_TX_INTME|
934 			GEM_INTR_TX_EMPTY|
935 			GEM_INTR_RX_DONE|GEM_INTR_RX_NOBUF|
936 			GEM_INTR_RX_TAG_ERR|GEM_INTR_PCS|
937 			GEM_INTR_MAC_CONTROL|GEM_INTR_MIF|
938 			GEM_INTR_BERR));
939 	bus_space_write_4(t, h, GEM_MAC_RX_MASK,
940 			GEM_MAC_RX_DONE|GEM_MAC_RX_FRAME_CNT);
941 	bus_space_write_4(t, h, GEM_MAC_TX_MASK, 0xffff); /* XXXX */
942 	bus_space_write_4(t, h, GEM_MAC_CONTROL_MASK, 0); /* XXXX */
943 
944 	/* step 9. ETX Configuration: use mostly default values */
945 
946 	/* Enable DMA */
947 	v = gem_ringsize(GEM_NTXDESC /*XXX*/);
948 	bus_space_write_4(t, h, GEM_TX_CONFIG,
949 		v|GEM_TX_CONFIG_TXDMA_EN|
950 		((0x400<<10)&GEM_TX_CONFIG_TXFIFO_TH));
951 
952 	/* step 10. ERX Configuration */
953 
954 	/* Encode Receive Descriptor ring size: four possible values */
955 	v = gem_ringsize(GEM_NRXDESC /*XXX*/);
956 
957 	/* Enable DMA */
958 	bus_space_write_4(t, h, GEM_RX_CONFIG,
959 		v|(GEM_THRSH_1024<<GEM_RX_CONFIG_FIFO_THRS_SHIFT)|
960 		(2<<GEM_RX_CONFIG_FBOFF_SHFT)|GEM_RX_CONFIG_RXDMA_EN|
961 		(0<<GEM_RX_CONFIG_CXM_START_SHFT));
962 	/*
963 	 * The following value is for an OFF Threshold of about 3/4 full
964 	 * and an ON Threshold of 1/4 full.
965 	 */
966 	bus_space_write_4(t, h, GEM_RX_PAUSE_THRESH,
967 	    (3 * sc->sc_rxfifosize / 256) |
968 	    (   (sc->sc_rxfifosize / 256) << 12));
969 	bus_space_write_4(t, h, GEM_RX_BLANKING, (6<<12)|6);
970 
971 	/* step 11. Configure Media */
972 	mii_mediachg(sc->sc_mii);
973 
974 	/* step 12. RX_MAC Configuration Register */
975 	v = bus_space_read_4(t, h, GEM_MAC_RX_CONFIG);
976 	v |= GEM_MAC_RX_ENABLE;
977 	bus_space_write_4(t, h, GEM_MAC_RX_CONFIG, v);
978 
979 	/* step 14. Issue Transmit Pending command */
980 
981 	/* step 15.  Give the reciever a swift kick */
982 	bus_space_write_4(t, h, GEM_RX_KICK, GEM_NRXDESC-4);
983 
984 	/* Start the one second timer. */
985 	callout_reset(&sc->sc_tick_ch, hz, gem_tick, sc);
986 
987 	ifp->if_drv_flags |= IFF_DRV_RUNNING;
988 	ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
989 	ifp->if_timer = 0;
990 	sc->sc_ifflags = ifp->if_flags;
991 }
992 
993 static int
994 gem_load_txmbuf(sc, m0)
995 	struct gem_softc *sc;
996 	struct mbuf *m0;
997 {
998 	struct gem_txdma txd;
999 	struct gem_txsoft *txs;
1000 	int error;
1001 
1002 	/* Get a work queue entry. */
1003 	if ((txs = STAILQ_FIRST(&sc->sc_txfreeq)) == NULL) {
1004 		/* Ran out of descriptors. */
1005 		return (-1);
1006 	}
1007 	txd.txd_sc = sc;
1008 	txd.txd_txs = txs;
1009 	txs->txs_firstdesc = sc->sc_txnext;
1010 	error = bus_dmamap_load_mbuf(sc->sc_tdmatag, txs->txs_dmamap, m0,
1011 	    gem_txdma_callback, &txd, BUS_DMA_NOWAIT);
1012 	if (error != 0)
1013 		goto fail;
1014 	if (txs->txs_ndescs == -1) {
1015 		error = -1;
1016 		goto fail;
1017 	}
1018 
1019 	/* Sync the DMA map. */
1020 	bus_dmamap_sync(sc->sc_tdmatag, txs->txs_dmamap,
1021 	    BUS_DMASYNC_PREWRITE);
1022 
1023 #ifdef GEM_DEBUG
1024 	CTR3(KTR_GEM, "load_mbuf: setting firstdesc=%d, lastdesc=%d, "
1025 	    "ndescs=%d", txs->txs_firstdesc, txs->txs_lastdesc,
1026 	    txs->txs_ndescs);
1027 #endif
1028 	STAILQ_REMOVE_HEAD(&sc->sc_txfreeq, txs_q);
1029 	STAILQ_INSERT_TAIL(&sc->sc_txdirtyq, txs, txs_q);
1030 	txs->txs_mbuf = m0;
1031 
1032 	sc->sc_txnext = GEM_NEXTTX(txs->txs_lastdesc);
1033 	sc->sc_txfree -= txs->txs_ndescs;
1034 	return (0);
1035 
1036 fail:
1037 #ifdef GEM_DEBUG
1038 	CTR1(KTR_GEM, "gem_load_txmbuf failed (%d)", error);
1039 #endif
1040 	bus_dmamap_unload(sc->sc_tdmatag, txs->txs_dmamap);
1041 	return (error);
1042 }
1043 
1044 static void
1045 gem_init_regs(sc)
1046 	struct gem_softc *sc;
1047 {
1048 	bus_space_tag_t t = sc->sc_bustag;
1049 	bus_space_handle_t h = sc->sc_h;
1050 	const u_char *laddr = IF_LLADDR(sc->sc_ifp);
1051 	u_int32_t v;
1052 
1053 	/* These regs are not cleared on reset */
1054 	if (!sc->sc_inited) {
1055 
1056 		/* Wooo.  Magic values. */
1057 		bus_space_write_4(t, h, GEM_MAC_IPG0, 0);
1058 		bus_space_write_4(t, h, GEM_MAC_IPG1, 8);
1059 		bus_space_write_4(t, h, GEM_MAC_IPG2, 4);
1060 
1061 		bus_space_write_4(t, h, GEM_MAC_MAC_MIN_FRAME, ETHER_MIN_LEN);
1062 		/* Max frame and max burst size */
1063 		bus_space_write_4(t, h, GEM_MAC_MAC_MAX_FRAME,
1064 		    (ETHER_MAX_LEN + ETHER_HDR_LEN + ETHER_VLAN_ENCAP_LEN) |
1065 		    (0x2000 << 16));
1066 
1067 		bus_space_write_4(t, h, GEM_MAC_PREAMBLE_LEN, 0x7);
1068 		bus_space_write_4(t, h, GEM_MAC_JAM_SIZE, 0x4);
1069 		bus_space_write_4(t, h, GEM_MAC_ATTEMPT_LIMIT, 0x10);
1070 		/* Dunno.... */
1071 		bus_space_write_4(t, h, GEM_MAC_CONTROL_TYPE, 0x8088);
1072 		bus_space_write_4(t, h, GEM_MAC_RANDOM_SEED,
1073 		    ((laddr[5]<<8)|laddr[4])&0x3ff);
1074 
1075 		/* Secondary MAC addr set to 0:0:0:0:0:0 */
1076 		bus_space_write_4(t, h, GEM_MAC_ADDR3, 0);
1077 		bus_space_write_4(t, h, GEM_MAC_ADDR4, 0);
1078 		bus_space_write_4(t, h, GEM_MAC_ADDR5, 0);
1079 
1080 		/* MAC control addr set to 01:80:c2:00:00:01 */
1081 		bus_space_write_4(t, h, GEM_MAC_ADDR6, 0x0001);
1082 		bus_space_write_4(t, h, GEM_MAC_ADDR7, 0xc200);
1083 		bus_space_write_4(t, h, GEM_MAC_ADDR8, 0x0180);
1084 
1085 		/* MAC filter addr set to 0:0:0:0:0:0 */
1086 		bus_space_write_4(t, h, GEM_MAC_ADDR_FILTER0, 0);
1087 		bus_space_write_4(t, h, GEM_MAC_ADDR_FILTER1, 0);
1088 		bus_space_write_4(t, h, GEM_MAC_ADDR_FILTER2, 0);
1089 
1090 		bus_space_write_4(t, h, GEM_MAC_ADR_FLT_MASK1_2, 0);
1091 		bus_space_write_4(t, h, GEM_MAC_ADR_FLT_MASK0, 0);
1092 
1093 		sc->sc_inited = 1;
1094 	}
1095 
1096 	/* Counters need to be zeroed */
1097 	bus_space_write_4(t, h, GEM_MAC_NORM_COLL_CNT, 0);
1098 	bus_space_write_4(t, h, GEM_MAC_FIRST_COLL_CNT, 0);
1099 	bus_space_write_4(t, h, GEM_MAC_EXCESS_COLL_CNT, 0);
1100 	bus_space_write_4(t, h, GEM_MAC_LATE_COLL_CNT, 0);
1101 	bus_space_write_4(t, h, GEM_MAC_DEFER_TMR_CNT, 0);
1102 	bus_space_write_4(t, h, GEM_MAC_PEAK_ATTEMPTS, 0);
1103 	bus_space_write_4(t, h, GEM_MAC_RX_FRAME_COUNT, 0);
1104 	bus_space_write_4(t, h, GEM_MAC_RX_LEN_ERR_CNT, 0);
1105 	bus_space_write_4(t, h, GEM_MAC_RX_ALIGN_ERR, 0);
1106 	bus_space_write_4(t, h, GEM_MAC_RX_CRC_ERR_CNT, 0);
1107 	bus_space_write_4(t, h, GEM_MAC_RX_CODE_VIOL, 0);
1108 
1109 	/* Un-pause stuff */
1110 #if 0
1111 	bus_space_write_4(t, h, GEM_MAC_SEND_PAUSE_CMD, 0x1BF0);
1112 #else
1113 	bus_space_write_4(t, h, GEM_MAC_SEND_PAUSE_CMD, 0);
1114 #endif
1115 
1116 	/*
1117 	 * Set the station address.
1118 	 */
1119 	bus_space_write_4(t, h, GEM_MAC_ADDR0, (laddr[4]<<8)|laddr[5]);
1120 	bus_space_write_4(t, h, GEM_MAC_ADDR1, (laddr[2]<<8)|laddr[3]);
1121 	bus_space_write_4(t, h, GEM_MAC_ADDR2, (laddr[0]<<8)|laddr[1]);
1122 
1123 	/*
1124 	 * Enable MII outputs.  Enable GMII if there is a gigabit PHY.
1125 	 */
1126 	sc->sc_mif_config = bus_space_read_4(t, h, GEM_MIF_CONFIG);
1127 	v = GEM_MAC_XIF_TX_MII_ENA;
1128 	if (sc->sc_mif_config & GEM_MIF_CONFIG_MDI1) {
1129 		v |= GEM_MAC_XIF_FDPLX_LED;
1130 		if (sc->sc_flags & GEM_GIGABIT)
1131 			v |= GEM_MAC_XIF_GMII_MODE;
1132 	}
1133 	bus_space_write_4(t, h, GEM_MAC_XIF_CONFIG, v);
1134 }
1135 
1136 static void
1137 gem_start(ifp)
1138 	struct ifnet *ifp;
1139 {
1140 	struct gem_softc *sc = (struct gem_softc *)ifp->if_softc;
1141 
1142 	GEM_LOCK(sc);
1143 	gem_start_locked(ifp);
1144 	GEM_UNLOCK(sc);
1145 }
1146 
1147 static void
1148 gem_start_locked(ifp)
1149 	struct ifnet *ifp;
1150 {
1151 	struct gem_softc *sc = (struct gem_softc *)ifp->if_softc;
1152 	struct mbuf *m0 = NULL;
1153 	int firsttx, ntx = 0, ofree, txmfail;
1154 
1155 	if ((ifp->if_drv_flags & (IFF_DRV_RUNNING | IFF_DRV_OACTIVE)) !=
1156 	    IFF_DRV_RUNNING)
1157 		return;
1158 
1159 	/*
1160 	 * Remember the previous number of free descriptors and
1161 	 * the first descriptor we'll use.
1162 	 */
1163 	ofree = sc->sc_txfree;
1164 	firsttx = sc->sc_txnext;
1165 
1166 #ifdef GEM_DEBUG
1167 	CTR3(KTR_GEM, "%s: gem_start: txfree %d, txnext %d",
1168 	    device_get_name(sc->sc_dev), ofree, firsttx);
1169 #endif
1170 
1171 	/*
1172 	 * Loop through the send queue, setting up transmit descriptors
1173 	 * until we drain the queue, or use up all available transmit
1174 	 * descriptors.
1175 	 */
1176 	txmfail = 0;
1177 	do {
1178 		/*
1179 		 * Grab a packet off the queue.
1180 		 */
1181 		IF_DEQUEUE(&ifp->if_snd, m0);
1182 		if (m0 == NULL)
1183 			break;
1184 
1185 		txmfail = gem_load_txmbuf(sc, m0);
1186 		if (txmfail > 0) {
1187 			/* Drop the mbuf and complain. */
1188 			printf("gem_start: error %d while loading mbuf dma "
1189 			    "map\n", txmfail);
1190 			continue;
1191 		}
1192 		/* Not enough descriptors. */
1193 		if (txmfail == -1) {
1194 			if (sc->sc_txfree == GEM_MAXTXFREE)
1195 				panic("gem_start: mbuf chain too long!");
1196 			IF_PREPEND(&ifp->if_snd, m0);
1197 			break;
1198 		}
1199 
1200 		ntx++;
1201 		/* Kick the transmitter. */
1202 #ifdef GEM_DEBUG
1203 		CTR2(KTR_GEM, "%s: gem_start: kicking tx %d",
1204 		    device_get_name(sc->sc_dev), sc->sc_txnext);
1205 #endif
1206 		bus_space_write_4(sc->sc_bustag, sc->sc_h, GEM_TX_KICK,
1207 			sc->sc_txnext);
1208 
1209 		BPF_MTAP(ifp, m0);
1210 	} while (1);
1211 
1212 	if (txmfail == -1 || sc->sc_txfree == 0) {
1213 		/* No more slots left; notify upper layer. */
1214 		ifp->if_drv_flags |= IFF_DRV_OACTIVE;
1215 	}
1216 
1217 	if (ntx > 0) {
1218 		GEM_CDSYNC(sc, BUS_DMASYNC_PREWRITE);
1219 
1220 #ifdef GEM_DEBUG
1221 		CTR2(KTR_GEM, "%s: packets enqueued, OWN on %d",
1222 		    device_get_name(sc->sc_dev), firsttx);
1223 #endif
1224 
1225 		/* Set a watchdog timer in case the chip flakes out. */
1226 		ifp->if_timer = 5;
1227 #ifdef GEM_DEBUG
1228 		CTR2(KTR_GEM, "%s: gem_start: watchdog %d",
1229 			device_get_name(sc->sc_dev), ifp->if_timer);
1230 #endif
1231 	}
1232 }
1233 
1234 /*
1235  * Transmit interrupt.
1236  */
1237 static void
1238 gem_tint(sc)
1239 	struct gem_softc *sc;
1240 {
1241 	struct ifnet *ifp = sc->sc_ifp;
1242 	bus_space_tag_t t = sc->sc_bustag;
1243 	bus_space_handle_t mac = sc->sc_h;
1244 	struct gem_txsoft *txs;
1245 	int txlast;
1246 	int progress = 0;
1247 
1248 
1249 #ifdef GEM_DEBUG
1250 	CTR1(KTR_GEM, "%s: gem_tint", device_get_name(sc->sc_dev));
1251 #endif
1252 
1253 	/*
1254 	 * Unload collision counters
1255 	 */
1256 	ifp->if_collisions +=
1257 		bus_space_read_4(t, mac, GEM_MAC_NORM_COLL_CNT) +
1258 		bus_space_read_4(t, mac, GEM_MAC_FIRST_COLL_CNT) +
1259 		bus_space_read_4(t, mac, GEM_MAC_EXCESS_COLL_CNT) +
1260 		bus_space_read_4(t, mac, GEM_MAC_LATE_COLL_CNT);
1261 
1262 	/*
1263 	 * then clear the hardware counters.
1264 	 */
1265 	bus_space_write_4(t, mac, GEM_MAC_NORM_COLL_CNT, 0);
1266 	bus_space_write_4(t, mac, GEM_MAC_FIRST_COLL_CNT, 0);
1267 	bus_space_write_4(t, mac, GEM_MAC_EXCESS_COLL_CNT, 0);
1268 	bus_space_write_4(t, mac, GEM_MAC_LATE_COLL_CNT, 0);
1269 
1270 	/*
1271 	 * Go through our Tx list and free mbufs for those
1272 	 * frames that have been transmitted.
1273 	 */
1274 	GEM_CDSYNC(sc, BUS_DMASYNC_POSTREAD);
1275 	while ((txs = STAILQ_FIRST(&sc->sc_txdirtyq)) != NULL) {
1276 
1277 #ifdef GEM_DEBUG
1278 		if (ifp->if_flags & IFF_DEBUG) {
1279 			int i;
1280 			printf("    txsoft %p transmit chain:\n", txs);
1281 			for (i = txs->txs_firstdesc;; i = GEM_NEXTTX(i)) {
1282 				printf("descriptor %d: ", i);
1283 				printf("gd_flags: 0x%016llx\t", (long long)
1284 					GEM_DMA_READ(sc, sc->sc_txdescs[i].gd_flags));
1285 				printf("gd_addr: 0x%016llx\n", (long long)
1286 					GEM_DMA_READ(sc, sc->sc_txdescs[i].gd_addr));
1287 				if (i == txs->txs_lastdesc)
1288 					break;
1289 			}
1290 		}
1291 #endif
1292 
1293 		/*
1294 		 * In theory, we could harveast some descriptors before
1295 		 * the ring is empty, but that's a bit complicated.
1296 		 *
1297 		 * GEM_TX_COMPLETION points to the last descriptor
1298 		 * processed +1.
1299 		 */
1300 		txlast = bus_space_read_4(t, mac, GEM_TX_COMPLETION);
1301 #ifdef GEM_DEBUG
1302 		CTR3(KTR_GEM, "gem_tint: txs->txs_firstdesc = %d, "
1303 		    "txs->txs_lastdesc = %d, txlast = %d",
1304 		    txs->txs_firstdesc, txs->txs_lastdesc, txlast);
1305 #endif
1306 		if (txs->txs_firstdesc <= txs->txs_lastdesc) {
1307 			if ((txlast >= txs->txs_firstdesc) &&
1308 				(txlast <= txs->txs_lastdesc))
1309 				break;
1310 		} else {
1311 			/* Ick -- this command wraps */
1312 			if ((txlast >= txs->txs_firstdesc) ||
1313 				(txlast <= txs->txs_lastdesc))
1314 				break;
1315 		}
1316 
1317 #ifdef GEM_DEBUG
1318 		CTR0(KTR_GEM, "gem_tint: releasing a desc");
1319 #endif
1320 		STAILQ_REMOVE_HEAD(&sc->sc_txdirtyq, txs_q);
1321 
1322 		sc->sc_txfree += txs->txs_ndescs;
1323 
1324 		bus_dmamap_sync(sc->sc_tdmatag, txs->txs_dmamap,
1325 		    BUS_DMASYNC_POSTWRITE);
1326 		bus_dmamap_unload(sc->sc_tdmatag, txs->txs_dmamap);
1327 		if (txs->txs_mbuf != NULL) {
1328 			m_freem(txs->txs_mbuf);
1329 			txs->txs_mbuf = NULL;
1330 		}
1331 
1332 		STAILQ_INSERT_TAIL(&sc->sc_txfreeq, txs, txs_q);
1333 
1334 		ifp->if_opackets++;
1335 		progress = 1;
1336 	}
1337 
1338 #ifdef GEM_DEBUG
1339 	CTR3(KTR_GEM, "gem_tint: GEM_TX_STATE_MACHINE %x "
1340 		"GEM_TX_DATA_PTR %llx "
1341 		"GEM_TX_COMPLETION %x",
1342 		bus_space_read_4(sc->sc_bustag, sc->sc_h, GEM_TX_STATE_MACHINE),
1343 		((long long) bus_space_read_4(sc->sc_bustag, sc->sc_h,
1344 			GEM_TX_DATA_PTR_HI) << 32) |
1345 			     bus_space_read_4(sc->sc_bustag, sc->sc_h,
1346 			GEM_TX_DATA_PTR_LO),
1347 		bus_space_read_4(sc->sc_bustag, sc->sc_h, GEM_TX_COMPLETION));
1348 #endif
1349 
1350 	if (progress) {
1351 		if (sc->sc_txfree == GEM_NTXDESC - 1)
1352 			sc->sc_txwin = 0;
1353 
1354 		/* Freed some descriptors, so reset IFF_DRV_OACTIVE and restart. */
1355 		ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
1356 		gem_start_locked(ifp);
1357 
1358 		if (STAILQ_EMPTY(&sc->sc_txdirtyq))
1359 			ifp->if_timer = 0;
1360 	}
1361 
1362 #ifdef GEM_DEBUG
1363 	CTR2(KTR_GEM, "%s: gem_tint: watchdog %d",
1364 		device_get_name(sc->sc_dev), ifp->if_timer);
1365 #endif
1366 }
1367 
1368 #ifdef GEM_RINT_TIMEOUT
1369 static void
1370 gem_rint_timeout(arg)
1371 	void *arg;
1372 {
1373 	struct gem_softc *sc = (struct gem_softc *)arg;
1374 
1375 	GEM_LOCK_ASSERT(sc, MA_OWNED);
1376 	gem_rint(sc);
1377 }
1378 #endif
1379 
1380 /*
1381  * Receive interrupt.
1382  */
1383 static void
1384 gem_rint(sc)
1385 	struct gem_softc *sc;
1386 {
1387 	struct ifnet *ifp = sc->sc_ifp;
1388 	bus_space_tag_t t = sc->sc_bustag;
1389 	bus_space_handle_t h = sc->sc_h;
1390 	struct gem_rxsoft *rxs;
1391 	struct mbuf *m;
1392 	u_int64_t rxstat;
1393 	u_int32_t rxcomp;
1394 	int i, len, progress = 0;
1395 
1396 #ifdef GEM_RINT_TIMEOUT
1397 	callout_stop(&sc->sc_rx_ch);
1398 #endif
1399 #ifdef GEM_DEBUG
1400 	CTR1(KTR_GEM, "%s: gem_rint", device_get_name(sc->sc_dev));
1401 #endif
1402 
1403 	/*
1404 	 * Read the completion register once.  This limits
1405 	 * how long the following loop can execute.
1406 	 */
1407 	rxcomp = bus_space_read_4(t, h, GEM_RX_COMPLETION);
1408 
1409 #ifdef GEM_DEBUG
1410 	CTR2(KTR_GEM, "gem_rint: sc->rxptr %d, complete %d",
1411 	    sc->sc_rxptr, rxcomp);
1412 #endif
1413 	GEM_CDSYNC(sc, BUS_DMASYNC_POSTREAD);
1414 	for (i = sc->sc_rxptr; i != rxcomp;
1415 	     i = GEM_NEXTRX(i)) {
1416 		rxs = &sc->sc_rxsoft[i];
1417 
1418 		rxstat = GEM_DMA_READ(sc, sc->sc_rxdescs[i].gd_flags);
1419 
1420 		if (rxstat & GEM_RD_OWN) {
1421 #ifdef GEM_RINT_TIMEOUT
1422 			/*
1423 			 * The descriptor is still marked as owned, although
1424 			 * it is supposed to have completed. This has been
1425 			 * observed on some machines. Just exiting here
1426 			 * might leave the packet sitting around until another
1427 			 * one arrives to trigger a new interrupt, which is
1428 			 * generally undesirable, so set up a timeout.
1429 			 */
1430 			callout_reset(&sc->sc_rx_ch, GEM_RXOWN_TICKS,
1431 			    gem_rint_timeout, sc);
1432 #endif
1433 			break;
1434 		}
1435 
1436 		progress++;
1437 		ifp->if_ipackets++;
1438 
1439 		if (rxstat & GEM_RD_BAD_CRC) {
1440 			ifp->if_ierrors++;
1441 			device_printf(sc->sc_dev, "receive error: CRC error\n");
1442 			GEM_INIT_RXDESC(sc, i);
1443 			continue;
1444 		}
1445 
1446 #ifdef GEM_DEBUG
1447 		if (ifp->if_flags & IFF_DEBUG) {
1448 			printf("    rxsoft %p descriptor %d: ", rxs, i);
1449 			printf("gd_flags: 0x%016llx\t", (long long)
1450 				GEM_DMA_READ(sc, sc->sc_rxdescs[i].gd_flags));
1451 			printf("gd_addr: 0x%016llx\n", (long long)
1452 				GEM_DMA_READ(sc, sc->sc_rxdescs[i].gd_addr));
1453 		}
1454 #endif
1455 
1456 		/*
1457 		 * No errors; receive the packet.  Note the Gem
1458 		 * includes the CRC with every packet.
1459 		 */
1460 		len = GEM_RD_BUFLEN(rxstat);
1461 
1462 		/*
1463 		 * Allocate a new mbuf cluster.  If that fails, we are
1464 		 * out of memory, and must drop the packet and recycle
1465 		 * the buffer that's already attached to this descriptor.
1466 		 */
1467 		m = rxs->rxs_mbuf;
1468 		if (gem_add_rxbuf(sc, i) != 0) {
1469 			ifp->if_ierrors++;
1470 			GEM_INIT_RXDESC(sc, i);
1471 			continue;
1472 		}
1473 		m->m_data += 2; /* We're already off by two */
1474 
1475 		m->m_pkthdr.rcvif = ifp;
1476 		m->m_pkthdr.len = m->m_len = len - ETHER_CRC_LEN;
1477 
1478 		/* Pass it on. */
1479 		GEM_UNLOCK(sc);
1480 		(*ifp->if_input)(ifp, m);
1481 		GEM_LOCK(sc);
1482 	}
1483 
1484 	if (progress) {
1485 		GEM_CDSYNC(sc, BUS_DMASYNC_PREWRITE);
1486 		/* Update the receive pointer. */
1487 		if (i == sc->sc_rxptr) {
1488 			device_printf(sc->sc_dev, "rint: ring wrap\n");
1489 		}
1490 		sc->sc_rxptr = i;
1491 		bus_space_write_4(t, h, GEM_RX_KICK, GEM_PREVRX(i));
1492 	}
1493 
1494 #ifdef GEM_DEBUG
1495 	CTR2(KTR_GEM, "gem_rint: done sc->rxptr %d, complete %d",
1496 		sc->sc_rxptr, bus_space_read_4(t, h, GEM_RX_COMPLETION));
1497 #endif
1498 }
1499 
1500 
1501 /*
1502  * gem_add_rxbuf:
1503  *
1504  *	Add a receive buffer to the indicated descriptor.
1505  */
1506 static int
1507 gem_add_rxbuf(sc, idx)
1508 	struct gem_softc *sc;
1509 	int idx;
1510 {
1511 	struct gem_rxsoft *rxs = &sc->sc_rxsoft[idx];
1512 	struct mbuf *m;
1513 	bus_dma_segment_t segs[1];
1514 	int error, nsegs;
1515 
1516 	m = m_getcl(M_DONTWAIT, MT_DATA, M_PKTHDR);
1517 	if (m == NULL)
1518 		return (ENOBUFS);
1519 	m->m_len = m->m_pkthdr.len = m->m_ext.ext_size;
1520 
1521 #ifdef GEM_DEBUG
1522 	/* bzero the packet to check dma */
1523 	memset(m->m_ext.ext_buf, 0, m->m_ext.ext_size);
1524 #endif
1525 
1526 	if (rxs->rxs_mbuf != NULL) {
1527 		bus_dmamap_sync(sc->sc_rdmatag, rxs->rxs_dmamap,
1528 		    BUS_DMASYNC_POSTREAD);
1529 		bus_dmamap_unload(sc->sc_rdmatag, rxs->rxs_dmamap);
1530 	}
1531 
1532 	rxs->rxs_mbuf = m;
1533 
1534 	error = bus_dmamap_load_mbuf_sg(sc->sc_rdmatag, rxs->rxs_dmamap,
1535 	    m, segs, &nsegs, BUS_DMA_NOWAIT);
1536 	/* If nsegs is wrong then the stack is corrupt. */
1537 	KASSERT(nsegs == 1, ("Too many segments returned!"));
1538 	if (error != 0) {
1539 		device_printf(sc->sc_dev, "can't load rx DMA map %d, error = "
1540 		    "%d\n", idx, error);
1541 		m_freem(m);
1542 		return (ENOBUFS);
1543 	}
1544 	rxs->rxs_paddr = segs[0].ds_addr;
1545 
1546 	bus_dmamap_sync(sc->sc_rdmatag, rxs->rxs_dmamap, BUS_DMASYNC_PREREAD);
1547 
1548 	GEM_INIT_RXDESC(sc, idx);
1549 
1550 	return (0);
1551 }
1552 
1553 
1554 static void
1555 gem_eint(sc, status)
1556 	struct gem_softc *sc;
1557 	u_int status;
1558 {
1559 
1560 	if ((status & GEM_INTR_MIF) != 0) {
1561 		device_printf(sc->sc_dev, "XXXlink status changed\n");
1562 		return;
1563 	}
1564 
1565 	device_printf(sc->sc_dev, "status=%x\n", status);
1566 }
1567 
1568 
1569 void
1570 gem_intr(v)
1571 	void *v;
1572 {
1573 	struct gem_softc *sc = (struct gem_softc *)v;
1574 	bus_space_tag_t t = sc->sc_bustag;
1575 	bus_space_handle_t seb = sc->sc_h;
1576 	u_int32_t status;
1577 
1578 	GEM_LOCK(sc);
1579 	status = bus_space_read_4(t, seb, GEM_STATUS);
1580 #ifdef GEM_DEBUG
1581 	CTR3(KTR_GEM, "%s: gem_intr: cplt %x, status %x",
1582 		device_get_name(sc->sc_dev), (status>>19),
1583 		(u_int)status);
1584 #endif
1585 
1586 	if ((status & (GEM_INTR_RX_TAG_ERR | GEM_INTR_BERR)) != 0)
1587 		gem_eint(sc, status);
1588 
1589 	if ((status & (GEM_INTR_TX_EMPTY | GEM_INTR_TX_INTME)) != 0)
1590 		gem_tint(sc);
1591 
1592 	if ((status & (GEM_INTR_RX_DONE | GEM_INTR_RX_NOBUF)) != 0)
1593 		gem_rint(sc);
1594 
1595 	/* We should eventually do more than just print out error stats. */
1596 	if (status & GEM_INTR_TX_MAC) {
1597 		int txstat = bus_space_read_4(t, seb, GEM_MAC_TX_STATUS);
1598 		if (txstat & ~GEM_MAC_TX_XMIT_DONE)
1599 			device_printf(sc->sc_dev, "MAC tx fault, status %x\n",
1600 			    txstat);
1601 		if (txstat & (GEM_MAC_TX_UNDERRUN | GEM_MAC_TX_PKT_TOO_LONG))
1602 			gem_init_locked(sc);
1603 	}
1604 	if (status & GEM_INTR_RX_MAC) {
1605 		int rxstat = bus_space_read_4(t, seb, GEM_MAC_RX_STATUS);
1606 		/*
1607 		 * On some chip revisions GEM_MAC_RX_OVERFLOW happen often
1608 		 * due to a silicon bug so handle them silently.
1609 		 */
1610 		if (rxstat & GEM_MAC_RX_OVERFLOW)
1611 			gem_init_locked(sc);
1612 		else if (rxstat & ~(GEM_MAC_RX_DONE | GEM_MAC_RX_FRAME_CNT))
1613 			device_printf(sc->sc_dev, "MAC rx fault, status %x\n",
1614 			    rxstat);
1615 	}
1616 	GEM_UNLOCK(sc);
1617 }
1618 
1619 
1620 static void
1621 gem_watchdog(ifp)
1622 	struct ifnet *ifp;
1623 {
1624 	struct gem_softc *sc = ifp->if_softc;
1625 
1626 	GEM_LOCK(sc);
1627 #ifdef GEM_DEBUG
1628 	CTR3(KTR_GEM, "gem_watchdog: GEM_RX_CONFIG %x GEM_MAC_RX_STATUS %x "
1629 		"GEM_MAC_RX_CONFIG %x",
1630 		bus_space_read_4(sc->sc_bustag, sc->sc_h, GEM_RX_CONFIG),
1631 		bus_space_read_4(sc->sc_bustag, sc->sc_h, GEM_MAC_RX_STATUS),
1632 		bus_space_read_4(sc->sc_bustag, sc->sc_h, GEM_MAC_RX_CONFIG));
1633 	CTR3(KTR_GEM, "gem_watchdog: GEM_TX_CONFIG %x GEM_MAC_TX_STATUS %x "
1634 		"GEM_MAC_TX_CONFIG %x",
1635 		bus_space_read_4(sc->sc_bustag, sc->sc_h, GEM_TX_CONFIG),
1636 		bus_space_read_4(sc->sc_bustag, sc->sc_h, GEM_MAC_TX_STATUS),
1637 		bus_space_read_4(sc->sc_bustag, sc->sc_h, GEM_MAC_TX_CONFIG));
1638 #endif
1639 
1640 	device_printf(sc->sc_dev, "device timeout\n");
1641 	++ifp->if_oerrors;
1642 
1643 	/* Try to get more packets going. */
1644 	gem_init_locked(sc);
1645 	GEM_UNLOCK(sc);
1646 }
1647 
1648 /*
1649  * Initialize the MII Management Interface
1650  */
1651 static void
1652 gem_mifinit(sc)
1653 	struct gem_softc *sc;
1654 {
1655 	bus_space_tag_t t = sc->sc_bustag;
1656 	bus_space_handle_t mif = sc->sc_h;
1657 
1658 	/* Configure the MIF in frame mode */
1659 	sc->sc_mif_config = bus_space_read_4(t, mif, GEM_MIF_CONFIG);
1660 	sc->sc_mif_config &= ~GEM_MIF_CONFIG_BB_ENA;
1661 	bus_space_write_4(t, mif, GEM_MIF_CONFIG, sc->sc_mif_config);
1662 }
1663 
1664 /*
1665  * MII interface
1666  *
1667  * The GEM MII interface supports at least three different operating modes:
1668  *
1669  * Bitbang mode is implemented using data, clock and output enable registers.
1670  *
1671  * Frame mode is implemented by loading a complete frame into the frame
1672  * register and polling the valid bit for completion.
1673  *
1674  * Polling mode uses the frame register but completion is indicated by
1675  * an interrupt.
1676  *
1677  */
1678 int
1679 gem_mii_readreg(dev, phy, reg)
1680 	device_t dev;
1681 	int phy, reg;
1682 {
1683 	struct gem_softc *sc = device_get_softc(dev);
1684 	bus_space_tag_t t = sc->sc_bustag;
1685 	bus_space_handle_t mif = sc->sc_h;
1686 	int n;
1687 	u_int32_t v;
1688 
1689 #ifdef GEM_DEBUG_PHY
1690 	printf("gem_mii_readreg: phy %d reg %d\n", phy, reg);
1691 #endif
1692 
1693 #if 0
1694 	/* Select the desired PHY in the MIF configuration register */
1695 	v = bus_space_read_4(t, mif, GEM_MIF_CONFIG);
1696 	/* Clear PHY select bit */
1697 	v &= ~GEM_MIF_CONFIG_PHY_SEL;
1698 	if (phy == GEM_PHYAD_EXTERNAL)
1699 		/* Set PHY select bit to get at external device */
1700 		v |= GEM_MIF_CONFIG_PHY_SEL;
1701 	bus_space_write_4(t, mif, GEM_MIF_CONFIG, v);
1702 #endif
1703 
1704 	/* Construct the frame command */
1705 	v = (reg << GEM_MIF_REG_SHIFT)	| (phy << GEM_MIF_PHY_SHIFT) |
1706 		GEM_MIF_FRAME_READ;
1707 
1708 	bus_space_write_4(t, mif, GEM_MIF_FRAME, v);
1709 	for (n = 0; n < 100; n++) {
1710 		DELAY(1);
1711 		v = bus_space_read_4(t, mif, GEM_MIF_FRAME);
1712 		if (v & GEM_MIF_FRAME_TA0)
1713 			return (v & GEM_MIF_FRAME_DATA);
1714 	}
1715 
1716 	device_printf(sc->sc_dev, "mii_read timeout\n");
1717 	return (0);
1718 }
1719 
1720 int
1721 gem_mii_writereg(dev, phy, reg, val)
1722 	device_t dev;
1723 	int phy, reg, val;
1724 {
1725 	struct gem_softc *sc = device_get_softc(dev);
1726 	bus_space_tag_t t = sc->sc_bustag;
1727 	bus_space_handle_t mif = sc->sc_h;
1728 	int n;
1729 	u_int32_t v;
1730 
1731 #ifdef GEM_DEBUG_PHY
1732 	printf("gem_mii_writereg: phy %d reg %d val %x\n", phy, reg, val);
1733 #endif
1734 
1735 #if 0
1736 	/* Select the desired PHY in the MIF configuration register */
1737 	v = bus_space_read_4(t, mif, GEM_MIF_CONFIG);
1738 	/* Clear PHY select bit */
1739 	v &= ~GEM_MIF_CONFIG_PHY_SEL;
1740 	if (phy == GEM_PHYAD_EXTERNAL)
1741 		/* Set PHY select bit to get at external device */
1742 		v |= GEM_MIF_CONFIG_PHY_SEL;
1743 	bus_space_write_4(t, mif, GEM_MIF_CONFIG, v);
1744 #endif
1745 	/* Construct the frame command */
1746 	v = GEM_MIF_FRAME_WRITE			|
1747 	    (phy << GEM_MIF_PHY_SHIFT)		|
1748 	    (reg << GEM_MIF_REG_SHIFT)		|
1749 	    (val & GEM_MIF_FRAME_DATA);
1750 
1751 	bus_space_write_4(t, mif, GEM_MIF_FRAME, v);
1752 	for (n = 0; n < 100; n++) {
1753 		DELAY(1);
1754 		v = bus_space_read_4(t, mif, GEM_MIF_FRAME);
1755 		if (v & GEM_MIF_FRAME_TA0)
1756 			return (1);
1757 	}
1758 
1759 	device_printf(sc->sc_dev, "mii_write timeout\n");
1760 	return (0);
1761 }
1762 
1763 void
1764 gem_mii_statchg(dev)
1765 	device_t dev;
1766 {
1767 	struct gem_softc *sc = device_get_softc(dev);
1768 #ifdef GEM_DEBUG
1769 	int instance;
1770 #endif
1771 	bus_space_tag_t t = sc->sc_bustag;
1772 	bus_space_handle_t mac = sc->sc_h;
1773 	u_int32_t v;
1774 
1775 #ifdef GEM_DEBUG
1776 	instance = IFM_INST(sc->sc_mii->mii_media.ifm_cur->ifm_media);
1777 	if (sc->sc_debug)
1778 		printf("gem_mii_statchg: status change: phy = %d\n",
1779 			sc->sc_phys[instance]);
1780 #endif
1781 
1782 	/* Set tx full duplex options */
1783 	bus_space_write_4(t, mac, GEM_MAC_TX_CONFIG, 0);
1784 	DELAY(10000); /* reg must be cleared and delay before changing. */
1785 	v = GEM_MAC_TX_ENA_IPG0|GEM_MAC_TX_NGU|GEM_MAC_TX_NGU_LIMIT|
1786 		GEM_MAC_TX_ENABLE;
1787 	if ((IFM_OPTIONS(sc->sc_mii->mii_media_active) & IFM_FDX) != 0) {
1788 		v |= GEM_MAC_TX_IGN_CARRIER|GEM_MAC_TX_IGN_COLLIS;
1789 	}
1790 	bus_space_write_4(t, mac, GEM_MAC_TX_CONFIG, v);
1791 
1792 	/* XIF Configuration */
1793 	v = GEM_MAC_XIF_LINK_LED;
1794 	v |= GEM_MAC_XIF_TX_MII_ENA;
1795 
1796 	/* If an external transceiver is connected, enable its MII drivers */
1797 	sc->sc_mif_config = bus_space_read_4(t, mac, GEM_MIF_CONFIG);
1798 	if ((sc->sc_mif_config & GEM_MIF_CONFIG_MDI1) != 0) {
1799 		/* External MII needs echo disable if half duplex. */
1800 		if ((IFM_OPTIONS(sc->sc_mii->mii_media_active) & IFM_FDX) != 0)
1801 			/* turn on full duplex LED */
1802 			v |= GEM_MAC_XIF_FDPLX_LED;
1803 		else
1804 	 		/* half duplex -- disable echo */
1805 	 		v |= GEM_MAC_XIF_ECHO_DISABL;
1806 
1807 		if (IFM_SUBTYPE(sc->sc_mii->mii_media_active) == IFM_1000_T)
1808 			v |= GEM_MAC_XIF_GMII_MODE;
1809 		else
1810 			v &= ~GEM_MAC_XIF_GMII_MODE;
1811 	} else {
1812 		/* Internal MII needs buf enable */
1813 		v |= GEM_MAC_XIF_MII_BUF_ENA;
1814 	}
1815 	bus_space_write_4(t, mac, GEM_MAC_XIF_CONFIG, v);
1816 }
1817 
1818 int
1819 gem_mediachange(ifp)
1820 	struct ifnet *ifp;
1821 {
1822 	struct gem_softc *sc = ifp->if_softc;
1823 	int error;
1824 
1825 	/* XXX Add support for serial media. */
1826 
1827 	GEM_LOCK(sc);
1828 	error = mii_mediachg(sc->sc_mii);
1829 	GEM_UNLOCK(sc);
1830 	return (error);
1831 }
1832 
1833 void
1834 gem_mediastatus(ifp, ifmr)
1835 	struct ifnet *ifp;
1836 	struct ifmediareq *ifmr;
1837 {
1838 	struct gem_softc *sc = ifp->if_softc;
1839 
1840 	GEM_LOCK(sc);
1841 	if ((ifp->if_flags & IFF_UP) == 0) {
1842 		GEM_UNLOCK(sc);
1843 		return;
1844 	}
1845 
1846 	mii_pollstat(sc->sc_mii);
1847 	ifmr->ifm_active = sc->sc_mii->mii_media_active;
1848 	ifmr->ifm_status = sc->sc_mii->mii_media_status;
1849 	GEM_UNLOCK(sc);
1850 }
1851 
1852 /*
1853  * Process an ioctl request.
1854  */
1855 static int
1856 gem_ioctl(ifp, cmd, data)
1857 	struct ifnet *ifp;
1858 	u_long cmd;
1859 	caddr_t data;
1860 {
1861 	struct gem_softc *sc = ifp->if_softc;
1862 	struct ifreq *ifr = (struct ifreq *)data;
1863 	int error = 0;
1864 
1865 	switch (cmd) {
1866 	case SIOCSIFFLAGS:
1867 		GEM_LOCK(sc);
1868 		if (ifp->if_flags & IFF_UP) {
1869 			if ((sc->sc_ifflags ^ ifp->if_flags) == IFF_PROMISC)
1870 				gem_setladrf(sc);
1871 			else
1872 				gem_init_locked(sc);
1873 		} else {
1874 			if (ifp->if_drv_flags & IFF_DRV_RUNNING)
1875 				gem_stop(ifp, 0);
1876 		}
1877 		sc->sc_ifflags = ifp->if_flags;
1878 		GEM_UNLOCK(sc);
1879 		break;
1880 	case SIOCADDMULTI:
1881 	case SIOCDELMULTI:
1882 		GEM_LOCK(sc);
1883 		gem_setladrf(sc);
1884 		GEM_UNLOCK(sc);
1885 		break;
1886 	case SIOCGIFMEDIA:
1887 	case SIOCSIFMEDIA:
1888 		error = ifmedia_ioctl(ifp, ifr, &sc->sc_mii->mii_media, cmd);
1889 		break;
1890 	default:
1891 		error = ether_ioctl(ifp, cmd, data);
1892 		break;
1893 	}
1894 
1895 	/* Try to get things going again */
1896 	GEM_LOCK(sc);
1897 	if (ifp->if_flags & IFF_UP)
1898 		gem_start_locked(ifp);
1899 	GEM_UNLOCK(sc);
1900 	return (error);
1901 }
1902 
1903 /*
1904  * Set up the logical address filter.
1905  */
1906 static void
1907 gem_setladrf(sc)
1908 	struct gem_softc *sc;
1909 {
1910 	struct ifnet *ifp = sc->sc_ifp;
1911 	struct ifmultiaddr *inm;
1912 	bus_space_tag_t t = sc->sc_bustag;
1913 	bus_space_handle_t h = sc->sc_h;
1914 	u_int32_t crc;
1915 	u_int32_t hash[16];
1916 	u_int32_t v;
1917 	int i;
1918 
1919 	GEM_LOCK_ASSERT(sc, MA_OWNED);
1920 
1921 	/* Get current RX configuration */
1922 	v = bus_space_read_4(t, h, GEM_MAC_RX_CONFIG);
1923 
1924 	/*
1925 	 * Turn off promiscuous mode, promiscuous group mode (all multicast),
1926 	 * and hash filter.  Depending on the case, the right bit will be
1927 	 * enabled.
1928 	 */
1929 	v &= ~(GEM_MAC_RX_PROMISCUOUS|GEM_MAC_RX_HASH_FILTER|
1930 	    GEM_MAC_RX_PROMISC_GRP);
1931 
1932 	if ((ifp->if_flags & IFF_PROMISC) != 0) {
1933 		/* Turn on promiscuous mode */
1934 		v |= GEM_MAC_RX_PROMISCUOUS;
1935 		goto chipit;
1936 	}
1937 	if ((ifp->if_flags & IFF_ALLMULTI) != 0) {
1938 		hash[3] = hash[2] = hash[1] = hash[0] = 0xffff;
1939 		ifp->if_flags |= IFF_ALLMULTI;
1940 		v |= GEM_MAC_RX_PROMISC_GRP;
1941 		goto chipit;
1942 	}
1943 
1944 	/*
1945 	 * Set up multicast address filter by passing all multicast addresses
1946 	 * through a crc generator, and then using the high order 8 bits as an
1947 	 * index into the 256 bit logical address filter.  The high order 4
1948 	 * bits selects the word, while the other 4 bits select the bit within
1949 	 * the word (where bit 0 is the MSB).
1950 	 */
1951 
1952 	/* Clear hash table */
1953 	memset(hash, 0, sizeof(hash));
1954 
1955 	IF_ADDR_LOCK(ifp);
1956 	TAILQ_FOREACH(inm, &ifp->if_multiaddrs, ifma_link) {
1957 		if (inm->ifma_addr->sa_family != AF_LINK)
1958 			continue;
1959 		crc = ether_crc32_le(LLADDR((struct sockaddr_dl *)
1960 		    inm->ifma_addr), ETHER_ADDR_LEN);
1961 
1962 		/* Just want the 8 most significant bits. */
1963 		crc >>= 24;
1964 
1965 		/* Set the corresponding bit in the filter. */
1966 		hash[crc >> 4] |= 1 << (15 - (crc & 15));
1967 	}
1968 	IF_ADDR_UNLOCK(ifp);
1969 
1970 	v |= GEM_MAC_RX_HASH_FILTER;
1971 	ifp->if_flags &= ~IFF_ALLMULTI;
1972 
1973 	/* Now load the hash table into the chip (if we are using it) */
1974 	for (i = 0; i < 16; i++) {
1975 		bus_space_write_4(t, h,
1976 		    GEM_MAC_HASH0 + i * (GEM_MAC_HASH1-GEM_MAC_HASH0),
1977 		    hash[i]);
1978 	}
1979 
1980 chipit:
1981 	bus_space_write_4(t, h, GEM_MAC_RX_CONFIG, v);
1982 }
1983