xref: /freebsd/sys/dev/ae/if_ae.c (revision a9148abd9da5db2f1c682fb17bed791845fc41c9)
1 /*-
2  * Copyright (c) 2008 Stanislav Sedov <stas@FreeBSD.org>.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  *
25  * Driver for Attansic Technology Corp. L2 FastEthernet adapter.
26  *
27  * This driver is heavily based on age(4) Attansic L1 driver by Pyun YongHyeon.
28  */
29 
30 #include <sys/cdefs.h>
31 __FBSDID("$FreeBSD$");
32 
33 #include <sys/param.h>
34 #include <sys/systm.h>
35 #include <sys/bus.h>
36 #include <sys/endian.h>
37 #include <sys/kernel.h>
38 #include <sys/malloc.h>
39 #include <sys/mbuf.h>
40 #include <sys/rman.h>
41 #include <sys/module.h>
42 #include <sys/queue.h>
43 #include <sys/socket.h>
44 #include <sys/sockio.h>
45 #include <sys/sysctl.h>
46 #include <sys/taskqueue.h>
47 
48 #include <net/bpf.h>
49 #include <net/if.h>
50 #include <net/if_arp.h>
51 #include <net/ethernet.h>
52 #include <net/if_dl.h>
53 #include <net/if_media.h>
54 #include <net/if_types.h>
55 #include <net/if_vlan_var.h>
56 
57 #include <netinet/in.h>
58 #include <netinet/in_systm.h>
59 #include <netinet/ip.h>
60 #include <netinet/tcp.h>
61 
62 #include <dev/mii/mii.h>
63 #include <dev/mii/miivar.h>
64 #include <dev/pci/pcireg.h>
65 #include <dev/pci/pcivar.h>
66 
67 #include <machine/bus.h>
68 
69 #include "miibus_if.h"
70 
71 #include "if_aereg.h"
72 #include "if_aevar.h"
73 
74 /*
75  * Devices supported by this driver.
76  */
77 static struct ae_dev {
78 	uint16_t	vendorid;
79 	uint16_t	deviceid;
80 	const char	*name;
81 } ae_devs[] = {
82 	{ VENDORID_ATTANSIC, DEVICEID_ATTANSIC_L2,
83 		"Attansic Technology Corp, L2 FastEthernet" },
84 };
85 #define	AE_DEVS_COUNT (sizeof(ae_devs) / sizeof(*ae_devs))
86 
87 static struct resource_spec ae_res_spec_mem[] = {
88 	{ SYS_RES_MEMORY,       PCIR_BAR(0),    RF_ACTIVE },
89 	{ -1,			0,		0 }
90 };
91 static struct resource_spec ae_res_spec_irq[] = {
92 	{ SYS_RES_IRQ,		0,		RF_ACTIVE | RF_SHAREABLE },
93 	{ -1,			0,		0 }
94 };
95 static struct resource_spec ae_res_spec_msi[] = {
96 	{ SYS_RES_IRQ,		1,		RF_ACTIVE },
97 	{ -1,			0,		0 }
98 };
99 
100 static int	ae_probe(device_t dev);
101 static int	ae_attach(device_t dev);
102 static void	ae_pcie_init(ae_softc_t *sc);
103 static void	ae_phy_reset(ae_softc_t *sc);
104 static void	ae_phy_init(ae_softc_t *sc);
105 static int	ae_reset(ae_softc_t *sc);
106 static void	ae_init(void *arg);
107 static int	ae_init_locked(ae_softc_t *sc);
108 static unsigned	int	ae_detach(device_t dev);
109 static int	ae_miibus_readreg(device_t dev, int phy, int reg);
110 static int	ae_miibus_writereg(device_t dev, int phy, int reg, int val);
111 static void	ae_miibus_statchg(device_t dev);
112 static void	ae_mediastatus(struct ifnet *ifp, struct ifmediareq *ifmr);
113 static int	ae_mediachange(struct ifnet *ifp);
114 static void	ae_retrieve_address(ae_softc_t *sc);
115 static void	ae_dmamap_cb(void *arg, bus_dma_segment_t *segs, int nsegs,
116     int error);
117 static int	ae_alloc_rings(ae_softc_t *sc);
118 static void	ae_dma_free(ae_softc_t *sc);
119 static int	ae_shutdown(device_t dev);
120 static int	ae_suspend(device_t dev);
121 static void	ae_powersave_disable(ae_softc_t *sc);
122 static void	ae_powersave_enable(ae_softc_t *sc);
123 static int	ae_resume(device_t dev);
124 static unsigned int	ae_tx_avail_size(ae_softc_t *sc);
125 static int	ae_encap(ae_softc_t *sc, struct mbuf **m_head);
126 static void	ae_start(struct ifnet *ifp);
127 static void	ae_link_task(void *arg, int pending);
128 static void	ae_stop_rxmac(ae_softc_t *sc);
129 static void	ae_stop_txmac(ae_softc_t *sc);
130 static void	ae_tx_task(void *arg, int pending);
131 static void	ae_mac_config(ae_softc_t *sc);
132 static int	ae_intr(void *arg);
133 static void	ae_int_task(void *arg, int pending);
134 static void	ae_tx_intr(ae_softc_t *sc);
135 static int	ae_rxeof(ae_softc_t *sc, ae_rxd_t *rxd);
136 static void	ae_rx_intr(ae_softc_t *sc);
137 static void	ae_watchdog(ae_softc_t *sc);
138 static void	ae_tick(void *arg);
139 static void	ae_rxfilter(ae_softc_t *sc);
140 static void	ae_rxvlan(ae_softc_t *sc);
141 static int	ae_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data);
142 static void	ae_stop(ae_softc_t *sc);
143 static int	ae_check_eeprom_present(ae_softc_t *sc, int *vpdc);
144 static int	ae_vpd_read_word(ae_softc_t *sc, int reg, uint32_t *word);
145 static int	ae_get_vpd_eaddr(ae_softc_t *sc, uint32_t *eaddr);
146 static int	ae_get_reg_eaddr(ae_softc_t *sc, uint32_t *eaddr);
147 static void	ae_update_stats_rx(uint16_t flags, ae_stats_t *stats);
148 static void	ae_update_stats_tx(uint16_t flags, ae_stats_t *stats);
149 static void	ae_init_tunables(ae_softc_t *sc);
150 
151 static device_method_t ae_methods[] = {
152 	/* Device interface. */
153 	DEVMETHOD(device_probe,		ae_probe),
154 	DEVMETHOD(device_attach,	ae_attach),
155 	DEVMETHOD(device_detach,	ae_detach),
156 	DEVMETHOD(device_shutdown,	ae_shutdown),
157 	DEVMETHOD(device_suspend,	ae_suspend),
158 	DEVMETHOD(device_resume,	ae_resume),
159 
160 	/* MII interface. */
161 	DEVMETHOD(miibus_readreg,	ae_miibus_readreg),
162 	DEVMETHOD(miibus_writereg,	ae_miibus_writereg),
163 	DEVMETHOD(miibus_statchg,	ae_miibus_statchg),
164 
165 	{ NULL, NULL }
166 };
167 static driver_t ae_driver = {
168         "ae",
169         ae_methods,
170         sizeof(ae_softc_t)
171 };
172 static devclass_t ae_devclass;
173 
174 DRIVER_MODULE(ae, pci, ae_driver, ae_devclass, 0, 0);
175 DRIVER_MODULE(miibus, ae, miibus_driver, miibus_devclass, 0, 0);
176 MODULE_DEPEND(ae, pci, 1, 1, 1);
177 MODULE_DEPEND(ae, ether, 1, 1, 1);
178 MODULE_DEPEND(ae, miibus, 1, 1, 1);
179 
180 /*
181  * Tunables.
182  */
183 static int msi_disable = 0;
184 TUNABLE_INT("hw.ae.msi_disable", &msi_disable);
185 
186 #define	AE_READ_4(sc, reg) \
187 	bus_read_4((sc)->mem[0], (reg))
188 #define	AE_READ_2(sc, reg) \
189 	bus_read_2((sc)->mem[0], (reg))
190 #define	AE_READ_1(sc, reg) \
191 	bus_read_1((sc)->mem[0], (reg))
192 #define	AE_WRITE_4(sc, reg, val) \
193 	bus_write_4((sc)->mem[0], (reg), (val))
194 #define	AE_WRITE_2(sc, reg, val) \
195 	bus_write_2((sc)->mem[0], (reg), (val))
196 #define	AE_WRITE_1(sc, reg, val) \
197 	bus_write_1((sc)->mem[0], (reg), (val))
198 #define	AE_PHY_READ(sc, reg) \
199 	ae_miibus_readreg(sc->dev, 0, reg)
200 #define	AE_PHY_WRITE(sc, reg, val) \
201 	ae_miibus_writereg(sc->dev, 0, reg, val)
202 #define	AE_CHECK_EADDR_VALID(eaddr) \
203 	((eaddr[0] == 0 && eaddr[1] == 0) || \
204 	(eaddr[0] == 0xffffffff && eaddr[1] == 0xffff))
205 #define	AE_RXD_VLAN(vtag) \
206 	(((vtag) >> 4) | (((vtag) & 0x07) << 13) | (((vtag) & 0x08) << 9))
207 #define	AE_TXD_VLAN(vtag) \
208 	(((vtag) << 4) | (((vtag) >> 13) & 0x07) | (((vtag) >> 9) & 0x08))
209 
210 /*
211  * ae statistics.
212  */
213 #define	STATS_ENTRY(node, desc, field) \
214     { node, desc, offsetof(struct ae_stats, field) }
215 struct {
216 	const char	*node;
217 	const char	*desc;
218 	intptr_t	offset;
219 } ae_stats_tx[] = {
220 	STATS_ENTRY("bcast", "broadcast frames", tx_bcast),
221 	STATS_ENTRY("mcast", "multicast frames", tx_mcast),
222 	STATS_ENTRY("pause", "PAUSE frames", tx_pause),
223 	STATS_ENTRY("control", "control frames", tx_ctrl),
224 	STATS_ENTRY("defers", "deferrals occuried", tx_defer),
225 	STATS_ENTRY("exc_defers", "excessive deferrals occuried", tx_excdefer),
226 	STATS_ENTRY("singlecols", "single collisions occuried", tx_singlecol),
227 	STATS_ENTRY("multicols", "multiple collisions occuried", tx_multicol),
228 	STATS_ENTRY("latecols", "late collisions occuried", tx_latecol),
229 	STATS_ENTRY("aborts", "transmit aborts due collisions", tx_abortcol),
230 	STATS_ENTRY("underruns", "Tx FIFO underruns", tx_underrun)
231 }, ae_stats_rx[] = {
232 	STATS_ENTRY("bcast", "broadcast frames", rx_bcast),
233 	STATS_ENTRY("mcast", "multicast frames", rx_mcast),
234 	STATS_ENTRY("pause", "PAUSE frames", rx_pause),
235 	STATS_ENTRY("control", "control frames", rx_ctrl),
236 	STATS_ENTRY("crc_errors", "frames with CRC errors", rx_crcerr),
237 	STATS_ENTRY("code_errors", "frames with invalid opcode", rx_codeerr),
238 	STATS_ENTRY("runt", "runt frames", rx_runt),
239 	STATS_ENTRY("frag", "fragmented frames", rx_frag),
240 	STATS_ENTRY("align_errors", "frames with alignment errors", rx_align),
241 	STATS_ENTRY("truncated", "frames truncated due to Rx FIFO inderrun",
242 	    rx_trunc)
243 };
244 #define	AE_STATS_RX_LEN	(sizeof(ae_stats_rx) / sizeof(*ae_stats_rx))
245 #define	AE_STATS_TX_LEN	(sizeof(ae_stats_tx) / sizeof(*ae_stats_tx))
246 
247 static int
248 ae_probe(device_t dev)
249 {
250 	uint16_t deviceid, vendorid;
251 	int i;
252 
253 	vendorid = pci_get_vendor(dev);
254 	deviceid = pci_get_device(dev);
255 
256 	/*
257 	 * Search through the list of supported devs for matching one.
258 	 */
259 	for (i = 0; i < AE_DEVS_COUNT; i++) {
260 		if (vendorid == ae_devs[i].vendorid &&
261 		    deviceid == ae_devs[i].deviceid) {
262 			device_set_desc(dev, ae_devs[i].name);
263 			return (BUS_PROBE_DEFAULT);
264 		}
265 	}
266 	return (ENXIO);
267 }
268 
269 static int
270 ae_attach(device_t dev)
271 {
272 	ae_softc_t *sc;
273 	struct ifnet *ifp;
274 	uint8_t chiprev;
275 	uint32_t pcirev;
276 	int nmsi, pmc;
277 	int error;
278 
279 	sc = device_get_softc(dev); /* Automatically allocated and zeroed
280 				       on attach. */
281 	KASSERT(sc != NULL, ("[ae, %d]: sc is NULL", __LINE__));
282 	sc->dev = dev;
283 
284 	/*
285 	 * Initialize mutexes and tasks.
286 	 */
287 	mtx_init(&sc->mtx, device_get_nameunit(dev), MTX_NETWORK_LOCK, MTX_DEF);
288 	callout_init_mtx(&sc->tick_ch, &sc->mtx, 0);
289 	TASK_INIT(&sc->int_task, 0, ae_int_task, sc);
290 	TASK_INIT(&sc->link_task, 0, ae_link_task, sc);
291 
292 	pci_enable_busmaster(dev);		/* Enable bus mastering. */
293 
294 	sc->spec_mem = ae_res_spec_mem;
295 
296 	/*
297 	 * Allocate memory-mapped registers.
298 	 */
299 	error = bus_alloc_resources(dev, sc->spec_mem, sc->mem);
300 	if (error != 0) {
301 		device_printf(dev, "could not allocate memory resources.\n");
302 		sc->spec_mem = NULL;
303 		goto fail;
304 	}
305 
306 	/*
307 	 * Retrieve PCI and chip revisions.
308 	 */
309 	pcirev = pci_get_revid(dev);
310 	chiprev = (AE_READ_4(sc, AE_MASTER_REG) >> AE_MASTER_REVNUM_SHIFT) &
311 	    AE_MASTER_REVNUM_MASK;
312 	if (bootverbose) {
313 		device_printf(dev, "pci device revision: %#04x\n", pcirev);
314 		device_printf(dev, "chip id: %#02x\n", chiprev);
315 	}
316 	nmsi = pci_msi_count(dev);
317 	if (bootverbose)
318 		device_printf(dev, "MSI count: %d.\n", nmsi);
319 
320 	/*
321 	 * Allocate interrupt resources.
322 	 */
323 	if (msi_disable == 0 && nmsi == 1) {
324 		error = pci_alloc_msi(dev, &nmsi);
325 		if (error == 0) {
326 			device_printf(dev, "Using MSI messages.\n");
327 			sc->spec_irq = ae_res_spec_msi;
328 			error = bus_alloc_resources(dev, sc->spec_irq, sc->irq);
329 			if (error != 0) {
330 				device_printf(dev, "MSI allocation failed.\n");
331 				sc->spec_irq = NULL;
332 				pci_release_msi(dev);
333 			} else {
334 				sc->flags |= AE_FLAG_MSI;
335 			}
336 		}
337 	}
338 	if (sc->spec_irq == NULL) {
339 		sc->spec_irq = ae_res_spec_irq;
340 		error = bus_alloc_resources(dev, sc->spec_irq, sc->irq);
341 		if (error != 0) {
342 			device_printf(dev, "could not allocate IRQ resources.\n");
343 			sc->spec_irq = NULL;
344 			goto fail;
345 		}
346 	}
347 
348 	ae_init_tunables(sc);
349 
350 	ae_phy_reset(sc);		/* Reset PHY. */
351 	error = ae_reset(sc);		/* Reset the controller itself. */
352 	if (error != 0)
353 		goto fail;
354 
355 	ae_pcie_init(sc);
356 
357 	ae_retrieve_address(sc);	/* Load MAC address. */
358 
359 	error = ae_alloc_rings(sc);	/* Allocate ring buffers. */
360 	if (error != 0)
361 		goto fail;
362 
363 	/* Set default PHY address. */
364 	sc->phyaddr = AE_PHYADDR_DEFAULT;
365 
366 	ifp = sc->ifp = if_alloc(IFT_ETHER);
367 	if (ifp == NULL) {
368 		device_printf(dev, "could not allocate ifnet structure.\n");
369 		error = ENXIO;
370 	}
371 
372 	ifp->if_softc = sc;
373 	if_initname(ifp, device_get_name(dev), device_get_unit(dev));
374 	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
375 	ifp->if_ioctl = ae_ioctl;
376 	ifp->if_start = ae_start;
377 	ifp->if_init = ae_init;
378 	ifp->if_capabilities = IFCAP_VLAN_MTU | IFCAP_VLAN_HWTAGGING;
379 	ifp->if_hwassist = 0;
380 	ifp->if_snd.ifq_drv_maxlen = IFQ_MAXLEN;
381 	IFQ_SET_MAXLEN(&ifp->if_snd, ifp->if_snd.ifq_drv_maxlen);
382 	IFQ_SET_READY(&ifp->if_snd);
383 	if (pci_find_extcap(dev, PCIY_PMG, &pmc) == 0) {
384 		ifp->if_capabilities |= IFCAP_WOL_MAGIC;
385 		sc->flags |= AE_FLAG_PMG;
386 	}
387 	ifp->if_capenable = ifp->if_capabilities;
388 
389 	/*
390 	 * Configure and attach MII bus.
391 	 */
392 	error = mii_phy_probe(dev, &sc->miibus, ae_mediachange,
393 	    ae_mediastatus);
394 	if (error != 0) {
395 		device_printf(dev, "no PHY found.\n");
396 		goto fail;
397 	}
398 
399 	ether_ifattach(ifp, sc->eaddr);
400 	/* Tell the upper layer(s) we support long frames. */
401 	ifp->if_data.ifi_hdrlen = sizeof(struct ether_vlan_header);
402 
403 	/*
404 	 * Create and run all helper tasks.
405 	 */
406 	TASK_INIT(&sc->tx_task, 1, ae_tx_task, ifp);
407 	sc->tq = taskqueue_create_fast("ae_taskq", M_WAITOK,
408             taskqueue_thread_enqueue, &sc->tq);
409 	if (sc->tq == NULL) {
410 		device_printf(dev, "could not create taskqueue.\n");
411 		ether_ifdetach(ifp);
412 		error = ENXIO;
413 		goto fail;
414 	}
415 	taskqueue_start_threads(&sc->tq, 1, PI_NET, "%s taskq",
416 	    device_get_nameunit(sc->dev));
417 
418 	/*
419 	 * Configure interrupt handlers.
420 	 */
421 	error = bus_setup_intr(dev, sc->irq[0], INTR_TYPE_NET | INTR_MPSAFE,
422 	    ae_intr, NULL, sc, &sc->intrhand);
423 	if (error != 0) {
424 		device_printf(dev, "could not set up interrupt handler.\n");
425 		taskqueue_free(sc->tq);
426 		sc->tq = NULL;
427 		ether_ifdetach(ifp);
428 		goto fail;
429 	}
430 
431 fail:
432 	if (error != 0)
433 		ae_detach(dev);
434 
435 	return (error);
436 }
437 
438 static void
439 ae_init_tunables(ae_softc_t *sc)
440 {
441 	struct sysctl_ctx_list *ctx;
442 	struct sysctl_oid *root, *stats, *stats_rx, *stats_tx;
443 	struct ae_stats *ae_stats;
444 	unsigned int i;
445 
446 	KASSERT(sc != NULL, ("[ae, %d]: sc is NULL", __LINE__));
447 	ae_stats = &sc->stats;
448 
449 	ctx = device_get_sysctl_ctx(sc->dev);
450 	root = device_get_sysctl_tree(sc->dev);
451 	stats = SYSCTL_ADD_NODE(ctx, SYSCTL_CHILDREN(root), OID_AUTO, "stats",
452 	    CTLFLAG_RD, NULL, "ae statistics");
453 
454 	/*
455 	 * Receiver statistcics.
456 	 */
457 	stats_rx = SYSCTL_ADD_NODE(ctx, SYSCTL_CHILDREN(stats), OID_AUTO, "rx",
458 	    CTLFLAG_RD, NULL, "Rx MAC statistics");
459 	for (i = 0; i < AE_STATS_RX_LEN; i++)
460 		SYSCTL_ADD_UINT(ctx, SYSCTL_CHILDREN(stats_rx), OID_AUTO,
461 		    ae_stats_rx[i].node, CTLFLAG_RD, (char *)ae_stats +
462 		    ae_stats_rx[i].offset, 0, ae_stats_rx[i].desc);
463 
464 	/*
465 	 * Receiver statistcics.
466 	 */
467 	stats_tx = SYSCTL_ADD_NODE(ctx, SYSCTL_CHILDREN(stats), OID_AUTO, "tx",
468 	    CTLFLAG_RD, NULL, "Tx MAC statistics");
469 	for (i = 0; i < AE_STATS_TX_LEN; i++)
470 		SYSCTL_ADD_UINT(ctx, SYSCTL_CHILDREN(stats_tx), OID_AUTO,
471 		    ae_stats_tx[i].node, CTLFLAG_RD, (char *)ae_stats +
472 		    ae_stats_tx[i].offset, 0, ae_stats_tx[i].desc);
473 }
474 
475 static void
476 ae_pcie_init(ae_softc_t *sc)
477 {
478 
479 	AE_WRITE_4(sc, AE_PCIE_LTSSM_TESTMODE_REG, AE_PCIE_LTSSM_TESTMODE_DEFAULT);
480 	AE_WRITE_4(sc, AE_PCIE_DLL_TX_CTRL_REG, AE_PCIE_DLL_TX_CTRL_DEFAULT);
481 }
482 
483 static void
484 ae_phy_reset(ae_softc_t *sc)
485 {
486 
487 	AE_WRITE_4(sc, AE_PHY_ENABLE_REG, AE_PHY_ENABLE);
488 	DELAY(1000);	/* XXX: pause(9) ? */
489 }
490 
491 static int
492 ae_reset(ae_softc_t *sc)
493 {
494 	int i;
495 
496 	/*
497 	 * Issue a soft reset.
498 	 */
499 	AE_WRITE_4(sc, AE_MASTER_REG, AE_MASTER_SOFT_RESET);
500 	bus_barrier(sc->mem[0], AE_MASTER_REG, 4,
501 	    BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE);
502 
503 	/*
504 	 * Wait for reset to complete.
505 	 */
506 	for (i = 0; i < AE_RESET_TIMEOUT; i++) {
507 		if ((AE_READ_4(sc, AE_MASTER_REG) & AE_MASTER_SOFT_RESET) == 0)
508 			break;
509 		DELAY(10);
510 	}
511 	if (i == AE_RESET_TIMEOUT) {
512 		device_printf(sc->dev, "reset timeout.\n");
513 		return (ENXIO);
514 	}
515 
516 	/*
517 	 * Wait for everything to enter idle state.
518 	 */
519 	for (i = 0; i < AE_IDLE_TIMEOUT; i++) {
520 		if (AE_READ_4(sc, AE_IDLE_REG) == 0)
521 			break;
522 		DELAY(100);
523 	}
524 	if (i == AE_IDLE_TIMEOUT) {
525 		device_printf(sc->dev, "could not enter idle state.\n");
526 		return (ENXIO);
527 	}
528 	return (0);
529 }
530 
531 static void
532 ae_init(void *arg)
533 {
534 	ae_softc_t *sc;
535 
536 	sc = (ae_softc_t *)arg;
537 	AE_LOCK(sc);
538 	ae_init_locked(sc);
539 	AE_UNLOCK(sc);
540 }
541 
542 static void
543 ae_phy_init(ae_softc_t *sc)
544 {
545 
546 	/*
547 	 * Enable link status change interrupt.
548 	 * XXX magic numbers.
549 	 */
550 #ifdef notyet
551 	AE_PHY_WRITE(sc, 18, 0xc00);
552 #endif
553 }
554 
555 static int
556 ae_init_locked(ae_softc_t *sc)
557 {
558 	struct ifnet *ifp;
559 	struct mii_data *mii;
560 	uint8_t eaddr[ETHER_ADDR_LEN];
561 	uint32_t val;
562 	bus_addr_t addr;
563 
564 	AE_LOCK_ASSERT(sc);
565 
566 	ifp = sc->ifp;
567 	mii = device_get_softc(sc->miibus);
568 
569 	ae_stop(sc);
570 	ae_reset(sc);
571 	ae_pcie_init(sc);		/* Initialize PCIE stuff. */
572 	ae_phy_init(sc);
573 	ae_powersave_disable(sc);
574 
575 	/*
576 	 * Clear and disable interrupts.
577 	 */
578 	AE_WRITE_4(sc, AE_ISR_REG, 0xffffffff);
579 
580 	/*
581 	 * Set the MAC address.
582 	 */
583 	bcopy(IF_LLADDR(ifp), eaddr, ETHER_ADDR_LEN);
584 	val = eaddr[2] << 24 | eaddr[3] << 16 | eaddr[4] << 8 | eaddr[5];
585 	AE_WRITE_4(sc, AE_EADDR0_REG, val);
586 	val = eaddr[0] << 8 | eaddr[1];
587 	AE_WRITE_4(sc, AE_EADDR1_REG, val);
588 
589 	/*
590 	 * Set ring buffers base addresses.
591 	 */
592 	addr = sc->dma_rxd_busaddr;
593 	AE_WRITE_4(sc, AE_DESC_ADDR_HI_REG, BUS_ADDR_HI(addr));
594 	AE_WRITE_4(sc, AE_RXD_ADDR_LO_REG, BUS_ADDR_LO(addr));
595 	addr = sc->dma_txd_busaddr;
596 	AE_WRITE_4(sc, AE_TXD_ADDR_LO_REG, BUS_ADDR_LO(addr));
597 	addr = sc->dma_txs_busaddr;
598 	AE_WRITE_4(sc, AE_TXS_ADDR_LO_REG, BUS_ADDR_LO(addr));
599 
600 	/*
601 	 * Configure ring buffers sizes.
602 	 */
603 	AE_WRITE_2(sc, AE_RXD_COUNT_REG, AE_RXD_COUNT_DEFAULT);
604 	AE_WRITE_2(sc, AE_TXD_BUFSIZE_REG, AE_TXD_BUFSIZE_DEFAULT / 4);
605 	AE_WRITE_2(sc, AE_TXS_COUNT_REG, AE_TXS_COUNT_DEFAULT);
606 
607 	/*
608 	 * Configure interframe gap parameters.
609 	 */
610 	val = ((AE_IFG_TXIPG_DEFAULT << AE_IFG_TXIPG_SHIFT) &
611 	    AE_IFG_TXIPG_MASK) |
612 	    ((AE_IFG_RXIPG_DEFAULT << AE_IFG_RXIPG_SHIFT) &
613 	    AE_IFG_RXIPG_MASK) |
614 	    ((AE_IFG_IPGR1_DEFAULT << AE_IFG_IPGR1_SHIFT) &
615 	    AE_IFG_IPGR1_MASK) |
616 	    ((AE_IFG_IPGR2_DEFAULT << AE_IFG_IPGR2_SHIFT) &
617 	    AE_IFG_IPGR2_MASK);
618 	AE_WRITE_4(sc, AE_IFG_REG, val);
619 
620 	/*
621 	 * Configure half-duplex operation.
622 	 */
623 	val = ((AE_HDPX_LCOL_DEFAULT << AE_HDPX_LCOL_SHIFT) &
624 	    AE_HDPX_LCOL_MASK) |
625 	    ((AE_HDPX_RETRY_DEFAULT << AE_HDPX_RETRY_SHIFT) &
626 	    AE_HDPX_RETRY_MASK) |
627 	    ((AE_HDPX_ABEBT_DEFAULT << AE_HDPX_ABEBT_SHIFT) &
628 	    AE_HDPX_ABEBT_MASK) |
629 	    ((AE_HDPX_JAMIPG_DEFAULT << AE_HDPX_JAMIPG_SHIFT) &
630 	    AE_HDPX_JAMIPG_MASK) | AE_HDPX_EXC_EN;
631 	AE_WRITE_4(sc, AE_HDPX_REG, val);
632 
633 	/*
634 	 * Configure interrupt moderate timer.
635 	 */
636 	AE_WRITE_2(sc, AE_IMT_REG, AE_IMT_DEFAULT);
637 	val = AE_READ_4(sc, AE_MASTER_REG);
638 	val |= AE_MASTER_IMT_EN;
639 	AE_WRITE_4(sc, AE_MASTER_REG, val);
640 
641 	/*
642 	 * Configure interrupt clearing timer.
643 	 */
644 	AE_WRITE_2(sc, AE_ICT_REG, AE_ICT_DEFAULT);
645 
646 	/*
647 	 * Configure MTU.
648 	 */
649 	val = ifp->if_mtu + ETHER_HDR_LEN + ETHER_VLAN_ENCAP_LEN +
650 	    ETHER_CRC_LEN;
651 	AE_WRITE_2(sc, AE_MTU_REG, val);
652 
653 	/*
654 	 * Configure cut-through threshold.
655 	 */
656 	AE_WRITE_4(sc, AE_CUT_THRESH_REG, AE_CUT_THRESH_DEFAULT);
657 
658 	/*
659 	 * Configure flow control.
660 	 */
661 	AE_WRITE_2(sc, AE_FLOW_THRESH_HI_REG, (AE_RXD_COUNT_DEFAULT / 8) * 7);
662 	AE_WRITE_2(sc, AE_FLOW_THRESH_LO_REG, (AE_RXD_COUNT_MIN / 8) >
663 	    (AE_RXD_COUNT_DEFAULT / 12) ? (AE_RXD_COUNT_MIN / 8) :
664 	    (AE_RXD_COUNT_DEFAULT / 12));
665 
666 	/*
667 	 * Init mailboxes.
668 	 */
669 	sc->txd_cur = sc->rxd_cur = 0;
670 	sc->txs_ack = sc->txd_ack = 0;
671 	sc->rxd_cur = 0;
672 	AE_WRITE_2(sc, AE_MB_TXD_IDX_REG, sc->txd_cur);
673 	AE_WRITE_2(sc, AE_MB_RXD_IDX_REG, sc->rxd_cur);
674 
675 	sc->tx_inproc = 0;	/* Number of packets the chip processes now. */
676 	sc->flags |= AE_FLAG_TXAVAIL;	/* Free Tx's available. */
677 
678 	/*
679 	 * Enable DMA.
680 	 */
681 	AE_WRITE_1(sc, AE_DMAREAD_REG, AE_DMAREAD_EN);
682 	AE_WRITE_1(sc, AE_DMAWRITE_REG, AE_DMAWRITE_EN);
683 
684 	/*
685 	 * Check if everything is OK.
686 	 */
687 	val = AE_READ_4(sc, AE_ISR_REG);
688 	if ((val & AE_ISR_PHY_LINKDOWN) != 0) {
689 		device_printf(sc->dev, "Initialization failed.\n");
690 		return (ENXIO);
691 	}
692 
693 	/*
694 	 * Clear interrupt status.
695 	 */
696 	AE_WRITE_4(sc, AE_ISR_REG, 0x3fffffff);
697 	AE_WRITE_4(sc, AE_ISR_REG, 0x0);
698 
699 	/*
700 	 * Enable interrupts.
701 	 */
702 	val = AE_READ_4(sc, AE_MASTER_REG);
703 	AE_WRITE_4(sc, AE_MASTER_REG, val | AE_MASTER_MANUAL_INT);
704 	AE_WRITE_4(sc, AE_IMR_REG, AE_IMR_DEFAULT);
705 
706 	/*
707 	 * Disable WOL.
708 	 */
709 	AE_WRITE_4(sc, AE_WOL_REG, 0);
710 
711 	/*
712 	 * Configure MAC.
713 	 */
714 	val = AE_MAC_TX_CRC_EN | AE_MAC_TX_AUTOPAD |
715 	    AE_MAC_FULL_DUPLEX | AE_MAC_CLK_PHY |
716 	    AE_MAC_TX_FLOW_EN | AE_MAC_RX_FLOW_EN |
717 	    ((AE_HALFBUF_DEFAULT << AE_HALFBUF_SHIFT) & AE_HALFBUF_MASK) |
718 	    ((AE_MAC_PREAMBLE_DEFAULT << AE_MAC_PREAMBLE_SHIFT) &
719 	    AE_MAC_PREAMBLE_MASK);
720 	AE_WRITE_4(sc, AE_MAC_REG, val);
721 
722 	/*
723 	 * Configure Rx MAC.
724 	 */
725 	ae_rxfilter(sc);
726 	ae_rxvlan(sc);
727 
728 	/*
729 	 * Enable Tx/Rx.
730 	 */
731 	val = AE_READ_4(sc, AE_MAC_REG);
732 	AE_WRITE_4(sc, AE_MAC_REG, val | AE_MAC_TX_EN | AE_MAC_RX_EN);
733 
734 	sc->flags &= ~AE_FLAG_LINK;
735 	mii_mediachg(mii);	/* Switch to the current media. */
736 
737 	callout_reset(&sc->tick_ch, hz, ae_tick, sc);
738 
739 	ifp->if_drv_flags |= IFF_DRV_RUNNING;
740 	ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
741 
742 #ifdef AE_DEBUG
743 	device_printf(sc->dev, "Initialization complete.\n");
744 #endif
745 
746 	return (0);
747 }
748 
749 static unsigned int
750 ae_detach(device_t dev)
751 {
752 	struct ae_softc *sc;
753 	struct ifnet *ifp;
754 
755 	sc = device_get_softc(dev);
756 	KASSERT(sc != NULL, ("[ae: %d]: sc is NULL", __LINE__));
757 	ifp = sc->ifp;
758 	if (device_is_attached(dev)) {
759 		AE_LOCK(sc);
760 		sc->flags |= AE_FLAG_DETACH;
761 		ae_stop(sc);
762 		AE_UNLOCK(sc);
763 		callout_drain(&sc->tick_ch);
764 		taskqueue_drain(sc->tq, &sc->int_task);
765 		taskqueue_drain(sc->tq, &sc->tx_task);
766 		taskqueue_drain(taskqueue_swi, &sc->link_task);
767 		ether_ifdetach(ifp);
768 	}
769 	if (sc->tq != NULL) {
770 		taskqueue_drain(sc->tq, &sc->int_task);
771 		taskqueue_free(sc->tq);
772 		sc->tq = NULL;
773 	}
774 	if (sc->miibus != NULL) {
775 		device_delete_child(dev, sc->miibus);
776 		sc->miibus = NULL;
777 	}
778 	bus_generic_detach(sc->dev);
779 	ae_dma_free(sc);
780 	if (sc->intrhand != NULL) {
781 		bus_teardown_intr(dev, sc->irq[0], sc->intrhand);
782 		sc->intrhand = NULL;
783 	}
784 	if (ifp != NULL) {
785 		if_free(ifp);
786 		sc->ifp = NULL;
787 	}
788 	if (sc->spec_irq != NULL)
789 		bus_release_resources(dev, sc->spec_irq, sc->irq);
790 	if (sc->spec_mem != NULL)
791 		bus_release_resources(dev, sc->spec_mem, sc->mem);
792 	if ((sc->flags & AE_FLAG_MSI) != 0)
793 		pci_release_msi(dev);
794 	mtx_destroy(&sc->mtx);
795 
796 	return (0);
797 }
798 
799 static int
800 ae_miibus_readreg(device_t dev, int phy, int reg)
801 {
802 	ae_softc_t *sc;
803 	uint32_t val;
804 	int i;
805 
806 	sc = device_get_softc(dev);
807 	KASSERT(sc != NULL, ("[ae, %d]: sc is NULL", __LINE__));
808 
809 	/*
810 	 * Locking is done in upper layers.
811 	 */
812 
813 	if (phy != sc->phyaddr)
814 		return (0);
815 
816 	val = ((reg << AE_MDIO_REGADDR_SHIFT) & AE_MDIO_REGADDR_MASK) |
817 	    AE_MDIO_START | AE_MDIO_READ | AE_MDIO_SUP_PREAMBLE |
818 	    ((AE_MDIO_CLK_25_4 << AE_MDIO_CLK_SHIFT) & AE_MDIO_CLK_MASK);
819 	AE_WRITE_4(sc, AE_MDIO_REG, val);
820 
821 	/*
822 	 * Wait for operation to complete.
823 	 */
824 	for (i = 0; i < AE_MDIO_TIMEOUT; i++) {
825 		DELAY(2);
826 		val = AE_READ_4(sc, AE_MDIO_REG);
827 		if ((val & (AE_MDIO_START | AE_MDIO_BUSY)) == 0)
828 			break;
829 	}
830 	if (i == AE_MDIO_TIMEOUT) {
831 		device_printf(sc->dev, "phy read timeout: %d.\n", reg);
832 		return (0);
833 	}
834 	return ((val << AE_MDIO_DATA_SHIFT) & AE_MDIO_DATA_MASK);
835 }
836 
837 static int
838 ae_miibus_writereg(device_t dev, int phy, int reg, int val)
839 {
840 	ae_softc_t *sc;
841 	uint32_t aereg;
842 	int i;
843 
844 	sc = device_get_softc(dev);
845 	KASSERT(sc != NULL, ("[ae, %d]: sc is NULL", __LINE__));
846 
847 	/*
848 	 * Locking is done in upper layers.
849 	 */
850 
851 	if (phy != sc->phyaddr)
852 		return (0);
853 
854 	aereg = ((reg << AE_MDIO_REGADDR_SHIFT) & AE_MDIO_REGADDR_MASK) |
855 	    AE_MDIO_START | AE_MDIO_SUP_PREAMBLE |
856 	    ((AE_MDIO_CLK_25_4 << AE_MDIO_CLK_SHIFT) & AE_MDIO_CLK_MASK) |
857 	    ((val << AE_MDIO_DATA_SHIFT) & AE_MDIO_DATA_MASK);
858 	AE_WRITE_4(sc, AE_MDIO_REG, aereg);
859 
860 	/*
861 	 * Wait for operation to complete.
862 	 */
863 	for (i = 0; i < AE_MDIO_TIMEOUT; i++) {
864 		DELAY(2);
865 		aereg = AE_READ_4(sc, AE_MDIO_REG);
866 		if ((aereg & (AE_MDIO_START | AE_MDIO_BUSY)) == 0)
867 			break;
868 	}
869 	if (i == AE_MDIO_TIMEOUT) {
870 		device_printf(sc->dev, "phy write timeout: %d.\n", reg);
871 	}
872 	return (0);
873 }
874 
875 static void
876 ae_miibus_statchg(device_t dev)
877 {
878 	ae_softc_t *sc;
879 
880 	sc = device_get_softc(dev);
881 	taskqueue_enqueue(taskqueue_swi, &sc->link_task);
882 }
883 
884 static void
885 ae_mediastatus(struct ifnet *ifp, struct ifmediareq *ifmr)
886 {
887 	ae_softc_t *sc;
888 	struct mii_data *mii;
889 
890 	sc = ifp->if_softc;
891 	KASSERT(sc != NULL, ("[ae, %d]: sc is NULL", __LINE__));
892 
893 	AE_LOCK(sc);
894 	mii = device_get_softc(sc->miibus);
895 	mii_pollstat(mii);
896 	ifmr->ifm_status = mii->mii_media_status;
897 	ifmr->ifm_active = mii->mii_media_active;
898 	AE_UNLOCK(sc);
899 }
900 
901 static int
902 ae_mediachange(struct ifnet *ifp)
903 {
904 	ae_softc_t *sc;
905 	struct mii_data *mii;
906 	struct mii_softc *mii_sc;
907 	int error;
908 
909 	/* XXX: check IFF_UP ?? */
910 	sc = ifp->if_softc;
911 	KASSERT(sc != NULL, ("[ae, %d]: sc is NULL", __LINE__));
912 	AE_LOCK(sc);
913 	mii = device_get_softc(sc->miibus);
914 	if (mii->mii_instance != 0) {
915 		LIST_FOREACH(mii_sc, &mii->mii_phys, mii_list)
916 			mii_phy_reset(mii_sc);
917 	}
918 	error = mii_mediachg(mii);
919 	AE_UNLOCK(sc);
920 
921 	return (error);
922 }
923 
924 static int
925 ae_check_eeprom_present(ae_softc_t *sc, int *vpdc)
926 {
927 	int error;
928 	uint32_t val;
929 
930 	KASSERT(vpdc != NULL, ("[ae, %d]: vpdc is NULL!\n", __LINE__));
931 
932 	/*
933 	 * Not sure why, but Linux does this.
934 	 */
935 	val = AE_READ_4(sc, AE_SPICTL_REG);
936 	if ((val & AE_SPICTL_VPD_EN) != 0) {
937 		val &= ~AE_SPICTL_VPD_EN;
938 		AE_WRITE_4(sc, AE_SPICTL_REG, val);
939 	}
940 	error = pci_find_extcap(sc->dev, PCIY_VPD, vpdc);
941 	return (error);
942 }
943 
944 static int
945 ae_vpd_read_word(ae_softc_t *sc, int reg, uint32_t *word)
946 {
947 	uint32_t val;
948 	int i;
949 
950 	AE_WRITE_4(sc, AE_VPD_DATA_REG, 0);	/* Clear register value. */
951 
952 	/*
953 	 * VPD registers start at offset 0x100. Read them.
954 	 */
955 	val = 0x100 + reg * 4;
956 	AE_WRITE_4(sc, AE_VPD_CAP_REG, (val << AE_VPD_CAP_ADDR_SHIFT) &
957 	    AE_VPD_CAP_ADDR_MASK);
958 	for (i = 0; i < AE_VPD_TIMEOUT; i++) {
959 		DELAY(2000);
960 		val = AE_READ_4(sc, AE_VPD_CAP_REG);
961 		if ((val & AE_VPD_CAP_DONE) != 0)
962 			break;
963 	}
964 	if (i == AE_VPD_TIMEOUT) {
965 		device_printf(sc->dev, "timeout reading VPD register %d.\n",
966 		    reg);
967 		return (ETIMEDOUT);
968 	}
969 	*word = AE_READ_4(sc, AE_VPD_DATA_REG);
970 	return (0);
971 }
972 
973 static int
974 ae_get_vpd_eaddr(ae_softc_t *sc, uint32_t *eaddr)
975 {
976 	uint32_t word, reg, val;
977 	int error;
978 	int found;
979 	int vpdc;
980 	int i;
981 
982 	KASSERT(sc != NULL, ("[ae, %d]: sc is NULL", __LINE__));
983 	KASSERT(eaddr != NULL, ("[ae, %d]: eaddr is NULL", __LINE__));
984 
985 	/*
986 	 * Check for EEPROM.
987 	 */
988 	error = ae_check_eeprom_present(sc, &vpdc);
989 	if (error != 0)
990 		return (error);
991 
992 	/*
993 	 * Read the VPD configuration space.
994 	 * Each register is prefixed with signature,
995 	 * so we can check if it is valid.
996 	 */
997 	for (i = 0, found = 0; i < AE_VPD_NREGS; i++) {
998 		error = ae_vpd_read_word(sc, i, &word);
999 		if (error != 0)
1000 			break;
1001 
1002 		/*
1003 		 * Check signature.
1004 		 */
1005 		if ((word & AE_VPD_SIG_MASK) != AE_VPD_SIG)
1006 			break;
1007 		reg = word >> AE_VPD_REG_SHIFT;
1008 		i++;	/* Move to the next word. */
1009 
1010 		if (reg != AE_EADDR0_REG && reg != AE_EADDR1_REG)
1011 			continue;
1012 
1013 		error = ae_vpd_read_word(sc, i, &val);
1014 		if (error != 0)
1015 			break;
1016 		if (reg == AE_EADDR0_REG)
1017 			eaddr[0] = val;
1018 		else
1019 			eaddr[1] = val;
1020 		found++;
1021 	}
1022 
1023 	if (found < 2)
1024 		return (ENOENT);
1025 
1026 	eaddr[1] &= 0xffff;	/* Only last 2 bytes are used. */
1027 	if (AE_CHECK_EADDR_VALID(eaddr) != 0) {
1028 		if (bootverbose)
1029 			device_printf(sc->dev,
1030 			    "VPD ethernet address registers are invalid.\n");
1031 		return (EINVAL);
1032 	}
1033 	return (0);
1034 }
1035 
1036 static int
1037 ae_get_reg_eaddr(ae_softc_t *sc, uint32_t *eaddr)
1038 {
1039 
1040 	/*
1041 	 * BIOS is supposed to set this.
1042 	 */
1043 	eaddr[0] = AE_READ_4(sc, AE_EADDR0_REG);
1044 	eaddr[1] = AE_READ_4(sc, AE_EADDR1_REG);
1045 	eaddr[1] &= 0xffff;	/* Only last 2 bytes are used. */
1046 
1047 	if (AE_CHECK_EADDR_VALID(eaddr) != 0) {
1048 		if (bootverbose)
1049 			device_printf(sc->dev,
1050 			    "Ethetnet address registers are invalid.\n");
1051 		return (EINVAL);
1052 	}
1053 	return (0);
1054 }
1055 
1056 static void
1057 ae_retrieve_address(ae_softc_t *sc)
1058 {
1059 	uint32_t eaddr[2] = {0, 0};
1060 	int error;
1061 
1062 	/*
1063 	 *Check for EEPROM.
1064 	 */
1065 	error = ae_get_vpd_eaddr(sc, eaddr);
1066 	if (error != 0)
1067 		error = ae_get_reg_eaddr(sc, eaddr);
1068 	if (error != 0) {
1069 		if (bootverbose)
1070 			device_printf(sc->dev,
1071 			    "Generating random ethernet address.\n");
1072 		eaddr[0] = arc4random();
1073 
1074 		/*
1075 		 * Set OUI to ASUSTek COMPUTER INC.
1076 		 */
1077 		sc->eaddr[0] = 0x02;	/* U/L bit set. */
1078 		sc->eaddr[1] = 0x1f;
1079 		sc->eaddr[2] = 0xc6;
1080 		sc->eaddr[3] = (eaddr[0] >> 16) & 0xff;
1081 		sc->eaddr[4] = (eaddr[0] >> 8) & 0xff;
1082 		sc->eaddr[5] = (eaddr[0] >> 0) & 0xff;
1083 	} else {
1084 		sc->eaddr[0] = (eaddr[1] >> 8) & 0xff;
1085 		sc->eaddr[1] = (eaddr[1] >> 0) & 0xff;
1086 		sc->eaddr[2] = (eaddr[0] >> 24) & 0xff;
1087 		sc->eaddr[3] = (eaddr[0] >> 16) & 0xff;
1088 		sc->eaddr[4] = (eaddr[0] >> 8) & 0xff;
1089 		sc->eaddr[5] = (eaddr[0] >> 0) & 0xff;
1090 	}
1091 }
1092 
1093 static void
1094 ae_dmamap_cb(void *arg, bus_dma_segment_t *segs, int nsegs, int error)
1095 {
1096 	bus_addr_t *addr = arg;
1097 
1098 	if (error != 0)
1099 		return;
1100 	KASSERT(nsegs == 1, ("[ae, %d]: %d segments instead of 1!", __LINE__,
1101 	    nsegs));
1102 	*addr = segs[0].ds_addr;
1103 }
1104 
1105 static int
1106 ae_alloc_rings(ae_softc_t *sc)
1107 {
1108 	bus_dma_tag_t bustag;
1109 	bus_addr_t busaddr;
1110 	int error;
1111 
1112 	bustag = bus_get_dma_tag(sc->dev);
1113 
1114 	/*
1115 	 * Create parent DMA tag.
1116 	 */
1117 	error = bus_dma_tag_create(bus_get_dma_tag(sc->dev),
1118 	    1, 0, BUS_SPACE_MAXADDR_32BIT, BUS_SPACE_MAXADDR,
1119 	    NULL, NULL, BUS_SPACE_MAXSIZE_32BIT, 0,
1120 	    BUS_SPACE_MAXSIZE_32BIT, 0, NULL, NULL,
1121 	    &sc->dma_parent_tag);
1122 	if (error != 0) {
1123 		device_printf(sc->dev, "could not creare parent DMA tag.\n");
1124 		return (error);
1125 	}
1126 
1127 	/*
1128 	 * Create DMA tag for TxD.
1129 	 */
1130 	error = bus_dma_tag_create(sc->dma_parent_tag,
1131 	    4, 0, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR,
1132 	    NULL, NULL, AE_TXD_BUFSIZE_DEFAULT, 1,
1133 	    AE_TXD_BUFSIZE_DEFAULT, 0, NULL, NULL,
1134 	    &sc->dma_txd_tag);
1135 	if (error != 0) {
1136 		device_printf(sc->dev, "could not creare TxD DMA tag.\n");
1137 		return (error);
1138 	}
1139 
1140 	/*
1141 	 * Create DMA tag for TxS.
1142 	 */
1143 	error = bus_dma_tag_create(sc->dma_parent_tag,
1144 	    4, 0, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR,
1145 	    NULL, NULL, AE_TXS_COUNT_DEFAULT * 4, 1,
1146 	    AE_TXS_COUNT_DEFAULT * 4, 0, NULL, NULL,
1147 	    &sc->dma_txs_tag);
1148 	if (error != 0) {
1149 		device_printf(sc->dev, "could not creare TxS DMA tag.\n");
1150 		return (error);
1151 	}
1152 
1153 	/*
1154 	 * Create DMA tag for RxD.
1155 	 */
1156 	error = bus_dma_tag_create(sc->dma_parent_tag,
1157 	    128, 0, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR,
1158 	    NULL, NULL, AE_RXD_COUNT_DEFAULT * 1536 + 120, 1,
1159 	    AE_RXD_COUNT_DEFAULT * 1536 + 120, 0, NULL, NULL,
1160 	    &sc->dma_rxd_tag);
1161 	if (error != 0) {
1162 		device_printf(sc->dev, "could not creare TxS DMA tag.\n");
1163 		return (error);
1164 	}
1165 
1166 	/*
1167 	 * Allocate TxD DMA memory.
1168 	 */
1169 	error = bus_dmamem_alloc(sc->dma_txd_tag, (void **)&sc->txd_base,
1170 	    BUS_DMA_WAITOK | BUS_DMA_ZERO | BUS_DMA_COHERENT,
1171 	    &sc->dma_txd_map);
1172 	if (error != 0) {
1173 		device_printf(sc->dev,
1174 		    "could not allocate DMA memory for TxD ring.\n");
1175 		return (error);
1176 	}
1177 	error = bus_dmamap_load(sc->dma_txd_tag, sc->dma_txd_map, sc->txd_base,
1178 	    AE_TXD_BUFSIZE_DEFAULT, ae_dmamap_cb, &busaddr, BUS_DMA_NOWAIT);
1179 	if (error != 0 || busaddr == 0) {
1180 		device_printf(sc->dev,
1181 		    "could not load DMA map for TxD ring.\n");
1182 		return (error);
1183 	}
1184 	sc->dma_txd_busaddr = busaddr;
1185 
1186 	/*
1187 	 * Allocate TxS DMA memory.
1188 	 */
1189 	error = bus_dmamem_alloc(sc->dma_txs_tag, (void **)&sc->txs_base,
1190 	    BUS_DMA_WAITOK | BUS_DMA_ZERO | BUS_DMA_COHERENT,
1191 	    &sc->dma_txs_map);
1192 	if (error != 0) {
1193 		device_printf(sc->dev,
1194 		    "could not allocate DMA memory for TxS ring.\n");
1195 		return (error);
1196 	}
1197 	error = bus_dmamap_load(sc->dma_txs_tag, sc->dma_txs_map, sc->txs_base,
1198 	    AE_TXS_COUNT_DEFAULT * 4, ae_dmamap_cb, &busaddr, BUS_DMA_NOWAIT);
1199 	if (error != 0 || busaddr == 0) {
1200 		device_printf(sc->dev,
1201 		    "could not load DMA map for TxS ring.\n");
1202 		return (error);
1203 	}
1204 	sc->dma_txs_busaddr = busaddr;
1205 
1206 	/*
1207 	 * Allocate RxD DMA memory.
1208 	 */
1209 	error = bus_dmamem_alloc(sc->dma_rxd_tag, (void **)&sc->rxd_base_dma,
1210 	    BUS_DMA_WAITOK | BUS_DMA_ZERO | BUS_DMA_COHERENT,
1211 	    &sc->dma_rxd_map);
1212 	if (error != 0) {
1213 		device_printf(sc->dev,
1214 		    "could not allocate DMA memory for RxD ring.\n");
1215 		return (error);
1216 	}
1217 	error = bus_dmamap_load(sc->dma_rxd_tag, sc->dma_rxd_map,
1218 	    sc->rxd_base_dma, AE_RXD_COUNT_DEFAULT * 1536 + 120, ae_dmamap_cb,
1219 	    &busaddr, BUS_DMA_NOWAIT);
1220 	if (error != 0 || busaddr == 0) {
1221 		device_printf(sc->dev,
1222 		    "could not load DMA map for RxD ring.\n");
1223 		return (error);
1224 	}
1225 	sc->dma_rxd_busaddr = busaddr + 120;
1226 	sc->rxd_base = (ae_rxd_t *)(sc->rxd_base_dma + 120);
1227 
1228 	return (0);
1229 }
1230 
1231 static void
1232 ae_dma_free(ae_softc_t *sc)
1233 {
1234 
1235 	if (sc->dma_txd_tag != NULL) {
1236 		if (sc->dma_txd_map != NULL) {
1237 			bus_dmamap_unload(sc->dma_txd_tag, sc->dma_txd_map);
1238 			if (sc->txd_base != NULL)
1239 				bus_dmamem_free(sc->dma_txd_tag, sc->txd_base,
1240 				    sc->dma_txd_map);
1241 
1242 		}
1243 		bus_dma_tag_destroy(sc->dma_txd_tag);
1244 		sc->dma_txd_map = NULL;
1245 		sc->dma_txd_tag = NULL;
1246 		sc->txd_base = NULL;
1247 	}
1248 	if (sc->dma_txs_tag != NULL) {
1249 		if (sc->dma_txs_map != NULL) {
1250 			bus_dmamap_unload(sc->dma_txs_tag, sc->dma_txs_map);
1251 			if (sc->txs_base != NULL)
1252 				bus_dmamem_free(sc->dma_txs_tag, sc->txs_base,
1253 				    sc->dma_txs_map);
1254 
1255 		}
1256 		bus_dma_tag_destroy(sc->dma_txs_tag);
1257 		sc->dma_txs_map = NULL;
1258 		sc->dma_txs_tag = NULL;
1259 		sc->txs_base = NULL;
1260 	}
1261 	if (sc->dma_rxd_tag != NULL) {
1262 		if (sc->dma_rxd_map != NULL) {
1263 			bus_dmamap_unload(sc->dma_rxd_tag, sc->dma_rxd_map);
1264 			if (sc->rxd_base_dma != NULL)
1265 				bus_dmamem_free(sc->dma_rxd_tag,
1266 				    sc->rxd_base_dma, sc->dma_rxd_map);
1267 
1268 		}
1269 		bus_dma_tag_destroy(sc->dma_rxd_tag);
1270 		sc->dma_rxd_map = NULL;
1271 		sc->dma_rxd_tag = NULL;
1272 		sc->rxd_base_dma = NULL;
1273 	}
1274 	if (sc->dma_parent_tag != NULL) {
1275 		bus_dma_tag_destroy(sc->dma_parent_tag);
1276 		sc->dma_parent_tag = NULL;
1277 	}
1278 }
1279 
1280 static int
1281 ae_shutdown(device_t dev)
1282 {
1283 	ae_softc_t *sc;
1284 	int error;
1285 
1286 	sc = device_get_softc(dev);
1287 	KASSERT(sc != NULL, ("[ae: %d]: sc is NULL", __LINE__));
1288 
1289 	error = ae_suspend(dev);
1290 	AE_LOCK(sc);
1291 	ae_powersave_enable(sc);
1292 	AE_UNLOCK(sc);
1293 	return (error);
1294 }
1295 
1296 static void
1297 ae_powersave_disable(ae_softc_t *sc)
1298 {
1299 	uint32_t val;
1300 
1301 	AE_LOCK_ASSERT(sc);
1302 
1303 	AE_PHY_WRITE(sc, AE_PHY_DBG_ADDR, 0);
1304 	val = AE_PHY_READ(sc, AE_PHY_DBG_DATA);
1305 	if (val & AE_PHY_DBG_POWERSAVE) {
1306 		val &= ~AE_PHY_DBG_POWERSAVE;
1307 		AE_PHY_WRITE(sc, AE_PHY_DBG_DATA, val);
1308 		DELAY(1000);
1309 	}
1310 }
1311 
1312 static void
1313 ae_powersave_enable(ae_softc_t *sc)
1314 {
1315 	uint32_t val;
1316 
1317 	AE_LOCK_ASSERT(sc);
1318 
1319 	/*
1320 	 * XXX magic numbers.
1321 	 */
1322 	AE_PHY_WRITE(sc, AE_PHY_DBG_ADDR, 0);
1323 	val = AE_PHY_READ(sc, AE_PHY_DBG_DATA);
1324 	AE_PHY_WRITE(sc, AE_PHY_DBG_ADDR, val | 0x1000);
1325 	AE_PHY_WRITE(sc, AE_PHY_DBG_ADDR, 2);
1326 	AE_PHY_WRITE(sc, AE_PHY_DBG_DATA, 0x3000);
1327 	AE_PHY_WRITE(sc, AE_PHY_DBG_ADDR, 3);
1328 	AE_PHY_WRITE(sc, AE_PHY_DBG_DATA, 0);
1329 }
1330 
1331 static void
1332 ae_pm_init(ae_softc_t *sc)
1333 {
1334 	struct ifnet *ifp;
1335 	uint32_t val;
1336 	uint16_t pmstat;
1337 	struct mii_data *mii;
1338 	int pmc;
1339 
1340 	AE_LOCK_ASSERT(sc);
1341 
1342 	ifp = sc->ifp;
1343 	if ((sc->flags & AE_FLAG_PMG) == 0) {
1344 		/* Disable WOL entirely. */
1345 		AE_WRITE_4(sc, AE_WOL_REG, 0);
1346 		return;
1347 	}
1348 
1349 	/*
1350 	 * Configure WOL if enabled.
1351 	 */
1352 	if ((ifp->if_capenable & IFCAP_WOL) != 0) {
1353 		mii = device_get_softc(sc->miibus);
1354 		mii_pollstat(mii);
1355 		if ((mii->mii_media_status & IFM_AVALID) != 0 &&
1356 		    (mii->mii_media_status & IFM_ACTIVE) != 0) {
1357 			AE_WRITE_4(sc, AE_WOL_REG, AE_WOL_MAGIC | \
1358 			    AE_WOL_MAGIC_PME);
1359 
1360 			/*
1361 			 * Configure MAC.
1362 			 */
1363 			val = AE_MAC_RX_EN | AE_MAC_CLK_PHY | \
1364 			    AE_MAC_TX_CRC_EN | AE_MAC_TX_AUTOPAD | \
1365 			    ((AE_HALFBUF_DEFAULT << AE_HALFBUF_SHIFT) & \
1366 			    AE_HALFBUF_MASK) | \
1367 			    ((AE_MAC_PREAMBLE_DEFAULT << \
1368 			    AE_MAC_PREAMBLE_SHIFT) & AE_MAC_PREAMBLE_MASK) | \
1369 			    AE_MAC_BCAST_EN | AE_MAC_MCAST_EN;
1370 			if ((IFM_OPTIONS(mii->mii_media_active) & \
1371 			    IFM_FDX) != 0)
1372 				val |= AE_MAC_FULL_DUPLEX;
1373 			AE_WRITE_4(sc, AE_MAC_REG, val);
1374 
1375 		} else {	/* No link. */
1376 			AE_WRITE_4(sc, AE_WOL_REG, AE_WOL_LNKCHG | \
1377 			    AE_WOL_LNKCHG_PME);
1378 			AE_WRITE_4(sc, AE_MAC_REG, 0);
1379 		}
1380 	} else {
1381 		ae_powersave_enable(sc);
1382 	}
1383 
1384 	/*
1385 	 * PCIE hacks. Magic numbers.
1386 	 */
1387 	val = AE_READ_4(sc, AE_PCIE_PHYMISC_REG);
1388 	val |= AE_PCIE_PHYMISC_FORCE_RCV_DET;
1389 	AE_WRITE_4(sc, AE_PCIE_PHYMISC_REG, val);
1390 	val = AE_READ_4(sc, AE_PCIE_DLL_TX_CTRL_REG);
1391 	val |= AE_PCIE_DLL_TX_CTRL_SEL_NOR_CLK;
1392 	AE_WRITE_4(sc, AE_PCIE_DLL_TX_CTRL_REG, val);
1393 
1394 	/*
1395 	 * Configure PME.
1396 	 */
1397 	pci_find_extcap(sc->dev, PCIY_PMG, &pmc);
1398 	pmstat = pci_read_config(sc->dev, pmc + PCIR_POWER_STATUS, 2);
1399 	pmstat &= ~(PCIM_PSTAT_PME | PCIM_PSTAT_PMEENABLE);
1400 	if ((ifp->if_capenable & IFCAP_WOL) != 0)
1401 		pmstat |= PCIM_PSTAT_PME | PCIM_PSTAT_PMEENABLE;
1402 	pci_write_config(sc->dev, pmc + PCIR_POWER_STATUS, pmstat, 2);
1403 }
1404 
1405 static int
1406 ae_suspend(device_t dev)
1407 {
1408 	ae_softc_t *sc;
1409 
1410 	sc = device_get_softc(dev);
1411 
1412 	AE_LOCK(sc);
1413 	ae_stop(sc);
1414 	ae_pm_init(sc);
1415 	AE_UNLOCK(sc);
1416 
1417 	return (0);
1418 }
1419 
1420 static int
1421 ae_resume(device_t dev)
1422 {
1423 	ae_softc_t *sc;
1424 
1425 	sc = device_get_softc(dev);
1426 	KASSERT(sc != NULL, ("[ae, %d]: sc is NULL", __LINE__));
1427 
1428 	AE_LOCK(sc);
1429 	AE_READ_4(sc, AE_WOL_REG);	/* Clear WOL status. */
1430 	if ((sc->ifp->if_flags & IFF_UP) != 0)
1431 		ae_init_locked(sc);
1432 	AE_UNLOCK(sc);
1433 
1434 	return (0);
1435 }
1436 
1437 static unsigned int
1438 ae_tx_avail_size(ae_softc_t *sc)
1439 {
1440 	unsigned int avail;
1441 
1442 	if (sc->txd_cur >= sc->txd_ack)
1443 		avail = AE_TXD_BUFSIZE_DEFAULT - (sc->txd_cur - sc->txd_ack);
1444 	else
1445 		avail = sc->txd_ack - sc->txd_cur;
1446 
1447 	return (avail - 4);	/* 4-byte header. */
1448 }
1449 
1450 static int
1451 ae_encap(ae_softc_t *sc, struct mbuf **m_head)
1452 {
1453 	struct mbuf *m0;
1454 	ae_txd_t *hdr;
1455 	unsigned int to_end;
1456 	uint16_t len;
1457 
1458 	AE_LOCK_ASSERT(sc);
1459 
1460 	m0 = *m_head;
1461 	len = m0->m_pkthdr.len;
1462 
1463 	if ((sc->flags & AE_FLAG_TXAVAIL) == 0 ||
1464 	    ae_tx_avail_size(sc) < len) {
1465 #ifdef AE_DEBUG
1466 		if_printf(sc->ifp, "No free Tx available.\n");
1467 #endif
1468 		return ENOBUFS;
1469 	}
1470 
1471 	hdr = (ae_txd_t *)(sc->txd_base + sc->txd_cur);
1472 	bzero(hdr, sizeof(*hdr));
1473 	sc->txd_cur = (sc->txd_cur + 4) % AE_TXD_BUFSIZE_DEFAULT; /* Header
1474 								     size. */
1475 	to_end = AE_TXD_BUFSIZE_DEFAULT - sc->txd_cur; /* Space available to
1476 							* the end of the ring
1477 							*/
1478 	if (to_end >= len) {
1479 		m_copydata(m0, 0, len, (caddr_t)(sc->txd_base + sc->txd_cur));
1480 	} else {
1481 		m_copydata(m0, 0, to_end, (caddr_t)(sc->txd_base +
1482 		    sc->txd_cur));
1483 		m_copydata(m0, to_end, len - to_end, (caddr_t)sc->txd_base);
1484 	}
1485 
1486 	/*
1487 	 * Set TxD flags and parameters.
1488 	 */
1489 	if ((m0->m_flags & M_VLANTAG) != 0) {
1490 		hdr->vlan = htole16(AE_TXD_VLAN(m0->m_pkthdr.ether_vtag));
1491 		hdr->len = htole16(len | AE_TXD_INSERT_VTAG);
1492 	} else {
1493 		hdr->len = htole16(len);
1494 	}
1495 
1496 	/*
1497 	 * Set current TxD position and round up to a 4-byte boundary.
1498 	 */
1499 	sc->txd_cur = ((sc->txd_cur + len + 3) & ~3) % AE_TXD_BUFSIZE_DEFAULT;
1500 	if (sc->txd_cur == sc->txd_ack)
1501 		sc->flags &= ~AE_FLAG_TXAVAIL;
1502 #ifdef AE_DEBUG
1503 	if_printf(sc->ifp, "New txd_cur = %d.\n", sc->txd_cur);
1504 #endif
1505 
1506 	/*
1507 	 * Update TxS position and check if there are empty TxS available.
1508 	 */
1509 	sc->txs_base[sc->txs_cur].flags &= ~htole16(AE_TXS_UPDATE);
1510 	sc->txs_cur = (sc->txs_cur + 1) % AE_TXS_COUNT_DEFAULT;
1511 	if (sc->txs_cur == sc->txs_ack)
1512 		sc->flags &= ~AE_FLAG_TXAVAIL;
1513 
1514 	/*
1515 	 * Synchronize DMA memory.
1516 	 */
1517 	bus_dmamap_sync(sc->dma_txd_tag, sc->dma_txd_map, BUS_DMASYNC_PREREAD |
1518 	    BUS_DMASYNC_PREWRITE);
1519 	bus_dmamap_sync(sc->dma_txs_tag, sc->dma_txs_map,
1520 	    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
1521 
1522 	return (0);
1523 }
1524 
1525 static void
1526 ae_start(struct ifnet *ifp)
1527 {
1528 	ae_softc_t *sc;
1529 	unsigned int count;
1530 	struct mbuf *m0;
1531 	int error;
1532 
1533 	sc = ifp->if_softc;
1534 	KASSERT(sc != NULL, ("[ae, %d]: sc is NULL", __LINE__));
1535 	AE_LOCK(sc);
1536 
1537 #ifdef AE_DEBUG
1538 	if_printf(ifp, "Start called.\n");
1539 #endif
1540 
1541 	if ((ifp->if_drv_flags & (IFF_DRV_RUNNING | IFF_DRV_OACTIVE)) !=
1542 	    IFF_DRV_RUNNING || (sc->flags & AE_FLAG_LINK) == 0) {
1543 		AE_UNLOCK(sc);
1544 		return;
1545 	}
1546 
1547 	count = 0;
1548 	while (!IFQ_DRV_IS_EMPTY(&ifp->if_snd)) {
1549 		IFQ_DRV_DEQUEUE(&ifp->if_snd, m0);
1550 		if (m0 == NULL)
1551 			break;	/* Nothing to do. */
1552 
1553 		error = ae_encap(sc, &m0);
1554 		if (error != 0) {
1555 			if (m0 != NULL) {
1556 				IFQ_DRV_PREPEND(&ifp->if_snd, m0);
1557 				ifp->if_drv_flags |= IFF_DRV_OACTIVE;
1558 #ifdef AE_DEBUG
1559 				if_printf(ifp, "Setting OACTIVE.\n");
1560 #endif
1561 			}
1562 			break;
1563 		}
1564 		count++;
1565 		sc->tx_inproc++;
1566 
1567 		/* Bounce a copy of the frame to BPF. */
1568 		ETHER_BPF_MTAP(ifp, m0);
1569 
1570 		m_freem(m0);
1571 	}
1572 
1573 	if (count > 0) {	/* Something was dequeued. */
1574 		AE_WRITE_2(sc, AE_MB_TXD_IDX_REG, sc->txd_cur / 4);
1575 		sc->wd_timer = AE_TX_TIMEOUT;	/* Load watchdog. */
1576 #ifdef AE_DEBUG
1577 		if_printf(ifp, "%d packets dequeued.\n", count);
1578 		if_printf(ifp, "Tx pos now is %d.\n", sc->txd_cur);
1579 #endif
1580 	}
1581 	AE_UNLOCK(sc);
1582 }
1583 
1584 static void
1585 ae_link_task(void *arg, int pending)
1586 {
1587 	ae_softc_t *sc;
1588 	struct mii_data *mii;
1589 	struct ifnet *ifp;
1590 	uint32_t val;
1591 
1592 	sc = (ae_softc_t *)arg;
1593 	KASSERT(sc != NULL, ("[ae, %d]: sc is NULL", __LINE__));
1594 	AE_LOCK(sc);
1595 
1596 	ifp = sc->ifp;
1597 	mii = device_get_softc(sc->miibus);
1598 	if (mii == NULL || ifp == NULL ||
1599 	    (ifp->if_drv_flags & IFF_DRV_RUNNING) == 0) {
1600 		AE_UNLOCK(sc);	/* XXX: could happen? */
1601 		return;
1602 	}
1603 
1604 	sc->flags &= ~AE_FLAG_LINK;
1605 	if ((mii->mii_media_status & (IFM_AVALID | IFM_ACTIVE)) ==
1606 	    (IFM_AVALID | IFM_ACTIVE)) {
1607 		switch(IFM_SUBTYPE(mii->mii_media_active)) {
1608 		case IFM_10_T:
1609 		case IFM_100_TX:
1610 			sc->flags |= AE_FLAG_LINK;
1611 			break;
1612 		default:
1613 			break;
1614 		}
1615 	}
1616 
1617 	/*
1618 	 * Stop Rx/Tx MACs.
1619 	 */
1620 	ae_stop_rxmac(sc);
1621 	ae_stop_txmac(sc);
1622 
1623 	if ((sc->flags & AE_FLAG_LINK) != 0) {
1624 		ae_mac_config(sc);
1625 
1626 		/*
1627 		 * Restart DMA engines.
1628 		 */
1629 		AE_WRITE_1(sc, AE_DMAREAD_REG, AE_DMAREAD_EN);
1630 		AE_WRITE_1(sc, AE_DMAWRITE_REG, AE_DMAWRITE_EN);
1631 
1632 		/*
1633 		 * Enable Rx and Tx MACs.
1634 		 */
1635 		val = AE_READ_4(sc, AE_MAC_REG);
1636 		val |= AE_MAC_TX_EN | AE_MAC_RX_EN;
1637 		AE_WRITE_4(sc, AE_MAC_REG, val);
1638 	}
1639 	AE_UNLOCK(sc);
1640 }
1641 
1642 static void
1643 ae_stop_rxmac(ae_softc_t *sc)
1644 {
1645 	uint32_t val;
1646 	int i;
1647 
1648 	AE_LOCK_ASSERT(sc);
1649 
1650 	/*
1651 	 * Stop Rx MAC engine.
1652 	 */
1653 	val = AE_READ_4(sc, AE_MAC_REG);
1654 	if ((val & AE_MAC_RX_EN) != 0) {
1655 		val &= ~AE_MAC_RX_EN;
1656 		AE_WRITE_4(sc, AE_MAC_REG, val);
1657 	}
1658 
1659 	/*
1660 	 * Stop Rx DMA engine.
1661 	 */
1662 	if (AE_READ_1(sc, AE_DMAWRITE_REG) == AE_DMAWRITE_EN)
1663 		AE_WRITE_1(sc, AE_DMAWRITE_REG, 0);
1664 
1665 	/*
1666 	 * Wait for IDLE state.
1667 	 */
1668 	for (i = 0; i < AE_IDLE_TIMEOUT; i--) {
1669 		val = AE_READ_4(sc, AE_IDLE_REG);
1670 		if ((val & (AE_IDLE_RXMAC | AE_IDLE_DMAWRITE)) == 0)
1671 			break;
1672 		DELAY(100);
1673 	}
1674 	if (i == AE_IDLE_TIMEOUT)
1675 		device_printf(sc->dev, "timed out while stopping Rx MAC.\n");
1676 }
1677 
1678 static void
1679 ae_stop_txmac(ae_softc_t *sc)
1680 {
1681 	uint32_t val;
1682 	int i;
1683 
1684 	AE_LOCK_ASSERT(sc);
1685 
1686 	/*
1687 	 * Stop Tx MAC engine.
1688 	 */
1689 	val = AE_READ_4(sc, AE_MAC_REG);
1690 	if ((val & AE_MAC_TX_EN) != 0) {
1691 		val &= ~AE_MAC_TX_EN;
1692 		AE_WRITE_4(sc, AE_MAC_REG, val);
1693 	}
1694 
1695 	/*
1696 	 * Stop Tx DMA engine.
1697 	 */
1698 	if (AE_READ_1(sc, AE_DMAREAD_REG) == AE_DMAREAD_EN)
1699 		AE_WRITE_1(sc, AE_DMAREAD_REG, 0);
1700 
1701 	/*
1702 	 * Wait for IDLE state.
1703 	 */
1704 	for (i = 0; i < AE_IDLE_TIMEOUT; i--) {
1705 		val = AE_READ_4(sc, AE_IDLE_REG);
1706 		if ((val & (AE_IDLE_TXMAC | AE_IDLE_DMAREAD)) == 0)
1707 			break;
1708 		DELAY(100);
1709 	}
1710 	if (i == AE_IDLE_TIMEOUT)
1711 		device_printf(sc->dev, "timed out while stopping Tx MAC.\n");
1712 }
1713 
1714 static void
1715 ae_tx_task(void *arg, int pending)
1716 {
1717 	struct ifnet *ifp;
1718 
1719 	ifp = (struct ifnet *)arg;
1720 	ae_start(ifp);
1721 }
1722 
1723 static void
1724 ae_mac_config(ae_softc_t *sc)
1725 {
1726 	struct mii_data *mii;
1727 	uint32_t val;
1728 
1729 	AE_LOCK_ASSERT(sc);
1730 
1731 	mii = device_get_softc(sc->miibus);
1732 	val = AE_READ_4(sc, AE_MAC_REG);
1733 	val &= ~AE_MAC_FULL_DUPLEX;
1734 	/* XXX disable AE_MAC_TX_FLOW_EN? */
1735 
1736 	if ((IFM_OPTIONS(mii->mii_media_active) & IFM_FDX) != 0)
1737 		val |= AE_MAC_FULL_DUPLEX;
1738 
1739 	AE_WRITE_4(sc, AE_MAC_REG, val);
1740 }
1741 
1742 static int
1743 ae_intr(void *arg)
1744 {
1745 	ae_softc_t *sc;
1746 	uint32_t val;
1747 
1748 	sc = (ae_softc_t *)arg;
1749 	KASSERT(sc != NULL, ("[ae, %d]: sc is NULL", __LINE__));
1750 
1751 	val = AE_READ_4(sc, AE_ISR_REG);
1752 	if (val == 0 || (val & AE_IMR_DEFAULT) == 0)
1753 		return (FILTER_STRAY);
1754 
1755 	/* Disable interrupts. */
1756 	AE_WRITE_4(sc, AE_ISR_REG, AE_ISR_DISABLE);
1757 
1758 	/* Schedule interrupt processing. */
1759 	taskqueue_enqueue(sc->tq, &sc->int_task);
1760 
1761 	return (FILTER_HANDLED);
1762 }
1763 
1764 static void
1765 ae_int_task(void *arg, int pending)
1766 {
1767 	ae_softc_t *sc;
1768 	struct ifnet *ifp;
1769 	uint32_t val;
1770 
1771 	sc = (ae_softc_t *)arg;
1772 
1773 	AE_LOCK(sc);
1774 
1775 	ifp = sc->ifp;
1776 
1777 	val = AE_READ_4(sc, AE_ISR_REG);	/* Read interrupt status. */
1778 
1779 	/*
1780 	 * Clear interrupts and disable them.
1781 	 */
1782 	AE_WRITE_4(sc, AE_ISR_REG, val | AE_ISR_DISABLE);
1783 
1784 #ifdef AE_DEBUG
1785 	if_printf(ifp, "Interrupt received: 0x%08x\n", val);
1786 #endif
1787 
1788 	if ((ifp->if_drv_flags & IFF_DRV_RUNNING) != 0) {
1789 		if ((val & (AE_ISR_DMAR_TIMEOUT | AE_ISR_DMAW_TIMEOUT |
1790 		    AE_ISR_PHY_LINKDOWN)) != 0) {
1791 			ae_init_locked(sc);
1792 		}
1793 		if ((val & AE_ISR_TX_EVENT) != 0)
1794 			ae_tx_intr(sc);
1795 		if ((val & AE_ISR_RX_EVENT) != 0)
1796 			ae_rx_intr(sc);
1797 	}
1798 
1799 	/*
1800 	 * Re-enable interrupts.
1801 	 */
1802 	AE_WRITE_4(sc, AE_ISR_REG, 0);
1803 
1804 	AE_UNLOCK(sc);
1805 }
1806 
1807 static void
1808 ae_tx_intr(ae_softc_t *sc)
1809 {
1810 	struct ifnet *ifp;
1811 	ae_txd_t *txd;
1812 	ae_txs_t *txs;
1813 	uint16_t flags;
1814 
1815 	AE_LOCK_ASSERT(sc);
1816 
1817 	ifp = sc->ifp;
1818 
1819 #ifdef AE_DEBUG
1820 	if_printf(ifp, "Tx interrupt occuried.\n");
1821 #endif
1822 
1823 	/*
1824 	 * Syncronize DMA buffers.
1825 	 */
1826 	bus_dmamap_sync(sc->dma_txd_tag, sc->dma_txd_map,
1827 	    BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
1828 	bus_dmamap_sync(sc->dma_txs_tag, sc->dma_txs_map,
1829 	    BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
1830 
1831 	for (;;) {
1832 		txs = sc->txs_base + sc->txs_ack;
1833 		flags = le16toh(txs->flags);
1834 		if ((flags & AE_TXS_UPDATE) == 0)
1835 			break;
1836 		txs->flags = htole16(flags & ~AE_TXS_UPDATE);
1837 		/* Update stats. */
1838 		ae_update_stats_tx(flags, &sc->stats);
1839 
1840 		/*
1841 		 * Update TxS position.
1842 		 */
1843 		sc->txs_ack = (sc->txs_ack + 1) % AE_TXS_COUNT_DEFAULT;
1844 		sc->flags |= AE_FLAG_TXAVAIL;
1845 
1846 		txd = (ae_txd_t *)(sc->txd_base + sc->txd_ack);
1847 		if (txs->len != txd->len)
1848 			device_printf(sc->dev, "Size mismatch: TxS:%d TxD:%d\n",
1849 			    le16toh(txs->len), le16toh(txd->len));
1850 
1851 		/*
1852 		 * Move txd ack and align on 4-byte boundary.
1853 		 */
1854 		sc->txd_ack = ((sc->txd_ack + le16toh(txd->len) + 4 + 3) & ~3) %
1855 		    AE_TXD_BUFSIZE_DEFAULT;
1856 
1857 		if ((flags & AE_TXS_SUCCESS) != 0)
1858 			ifp->if_opackets++;
1859 		else
1860 			ifp->if_oerrors++;
1861 
1862 		sc->tx_inproc--;
1863 
1864 		ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
1865 	}
1866 
1867 	if (sc->tx_inproc < 0) {
1868 		if_printf(ifp, "Received stray Tx interrupt(s).\n");
1869 		sc->tx_inproc = 0;
1870 	}
1871 
1872 	if (sc->tx_inproc == 0)
1873 		sc->wd_timer = 0;	/* Unarm watchdog. */
1874 
1875 	if ((sc->flags & AE_FLAG_TXAVAIL) != 0) {
1876 		if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
1877 			taskqueue_enqueue(sc->tq, &sc->tx_task);
1878 	}
1879 
1880 	/*
1881 	 * Syncronize DMA buffers.
1882 	 */
1883 	bus_dmamap_sync(sc->dma_txd_tag, sc->dma_txd_map,
1884 	    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
1885 	bus_dmamap_sync(sc->dma_txs_tag, sc->dma_txs_map,
1886 	    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
1887 }
1888 
1889 static int
1890 ae_rxeof(ae_softc_t *sc, ae_rxd_t *rxd)
1891 {
1892 	struct ifnet *ifp;
1893 	struct mbuf *m;
1894 	unsigned int size;
1895 	uint16_t flags;
1896 
1897 	AE_LOCK_ASSERT(sc);
1898 
1899 	ifp = sc->ifp;
1900 	flags = le16toh(rxd->flags);
1901 
1902 #ifdef AE_DEBUG
1903 	if_printf(ifp, "Rx interrupt occuried.\n");
1904 #endif
1905 	size = le16toh(rxd->len) - ETHER_CRC_LEN;
1906 	if (size < 0) {
1907 		if_printf(ifp, "Negative length packet received.");
1908 		return (EIO);
1909 	}
1910 
1911 	m = m_devget(&rxd->data[0], size, ETHER_ALIGN, ifp, NULL);
1912 	if (m == NULL)
1913 		return (ENOBUFS);
1914 
1915 	if ((ifp->if_capenable & IFCAP_VLAN_HWTAGGING) != 0 &&
1916 	    (flags & AE_RXD_HAS_VLAN) != 0) {
1917 		m->m_pkthdr.ether_vtag = AE_RXD_VLAN(le16toh(rxd->vlan));
1918 		m->m_flags |= M_VLANTAG;
1919 	}
1920 
1921 	/*
1922 	 * Pass it through.
1923 	 */
1924 	AE_UNLOCK(sc);
1925 	(*ifp->if_input)(ifp, m);
1926 	AE_LOCK(sc);
1927 
1928 	return (0);
1929 }
1930 
1931 static void
1932 ae_rx_intr(ae_softc_t *sc)
1933 {
1934 	ae_rxd_t *rxd;
1935 	struct ifnet *ifp;
1936 	uint16_t flags;
1937 	int error;
1938 
1939 	KASSERT(sc != NULL, ("[ae, %d]: sc is NULL!", __LINE__));
1940 
1941 	AE_LOCK_ASSERT(sc);
1942 
1943 	ifp = sc->ifp;
1944 
1945 	/*
1946 	 * Syncronize DMA buffers.
1947 	 */
1948 	bus_dmamap_sync(sc->dma_rxd_tag, sc->dma_rxd_map,
1949 	    BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
1950 
1951 	for (;;) {
1952 		rxd = (ae_rxd_t *)(sc->rxd_base + sc->rxd_cur);
1953 		flags = le16toh(rxd->flags);
1954 		if ((flags & AE_RXD_UPDATE) == 0)
1955 			break;
1956 		rxd->flags = htole16(flags & ~AE_RXD_UPDATE);
1957 		/* Update stats. */
1958 		ae_update_stats_rx(flags, &sc->stats);
1959 
1960 		/*
1961 		 * Update position index.
1962 		 */
1963 		sc->rxd_cur = (sc->rxd_cur + 1) % AE_RXD_COUNT_DEFAULT;
1964 
1965 		if ((flags & AE_RXD_SUCCESS) == 0) {
1966 			ifp->if_ierrors++;
1967 			continue;
1968 		}
1969 		error = ae_rxeof(sc, rxd);
1970 		if (error != 0) {
1971 			ifp->if_ierrors++;
1972 			continue;
1973 		} else {
1974 			ifp->if_ipackets++;
1975 		}
1976 	}
1977 
1978 	/*
1979 	 * Update Rx index.
1980 	 */
1981 	AE_WRITE_2(sc, AE_MB_RXD_IDX_REG, sc->rxd_cur);
1982 }
1983 
1984 static void
1985 ae_watchdog(ae_softc_t *sc)
1986 {
1987 	struct ifnet *ifp;
1988 
1989 	KASSERT(sc != NULL, ("[ae, %d]: sc is NULL!", __LINE__));
1990 	AE_LOCK_ASSERT(sc);
1991 	ifp = sc->ifp;
1992 
1993 	if (sc->wd_timer == 0 || --sc->wd_timer != 0)
1994 		return;		/* Noting to do. */
1995 
1996 	if ((sc->flags & AE_FLAG_LINK) == 0)
1997 		if_printf(ifp, "watchdog timeout (missed link).\n");
1998 	else
1999 		if_printf(ifp, "watchdog timeout - resetting.\n");
2000 
2001 	ifp->if_oerrors++;
2002 	ae_init_locked(sc);
2003 	if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
2004 		taskqueue_enqueue(sc->tq, &sc->tx_task);
2005 }
2006 
2007 static void
2008 ae_tick(void *arg)
2009 {
2010 	ae_softc_t *sc;
2011 	struct mii_data *mii;
2012 
2013 	sc = (ae_softc_t *)arg;
2014 	KASSERT(sc != NULL, ("[ae, %d]: sc is NULL!", __LINE__));
2015 	AE_LOCK_ASSERT(sc);
2016 
2017 	mii = device_get_softc(sc->miibus);
2018 	mii_tick(mii);
2019 	ae_watchdog(sc);	/* Watchdog check. */
2020 	callout_reset(&sc->tick_ch, hz, ae_tick, sc);
2021 }
2022 
2023 static void
2024 ae_rxvlan(ae_softc_t *sc)
2025 {
2026 	struct ifnet *ifp;
2027 	uint32_t val;
2028 
2029 	AE_LOCK_ASSERT(sc);
2030 	ifp = sc->ifp;
2031 	val = AE_READ_4(sc, AE_MAC_REG);
2032 	val &= ~AE_MAC_RMVLAN_EN;
2033 	if ((ifp->if_capenable & IFCAP_VLAN_HWTAGGING) != 0)
2034 		val |= AE_MAC_RMVLAN_EN;
2035 	AE_WRITE_4(sc, AE_MAC_REG, val);
2036 }
2037 
2038 static void
2039 ae_rxfilter(ae_softc_t *sc)
2040 {
2041 	struct ifnet *ifp;
2042 	struct ifmultiaddr *ifma;
2043 	uint32_t crc;
2044 	uint32_t mchash[2];
2045 	uint32_t rxcfg;
2046 
2047 	KASSERT(sc != NULL, ("[ae, %d]: sc is NULL!", __LINE__));
2048 
2049 	AE_LOCK_ASSERT(sc);
2050 
2051 	ifp = sc->ifp;
2052 
2053 	rxcfg = AE_READ_4(sc, AE_MAC_REG);
2054 	rxcfg &= ~(AE_MAC_MCAST_EN | AE_MAC_BCAST_EN | AE_MAC_PROMISC_EN);
2055 
2056 	if ((ifp->if_flags & IFF_BROADCAST) != 0)
2057 		rxcfg |= AE_MAC_BCAST_EN;
2058 	if ((ifp->if_flags & IFF_PROMISC) != 0)
2059 		rxcfg |= AE_MAC_PROMISC_EN;
2060 	if ((ifp->if_flags & IFF_ALLMULTI) != 0)
2061 		rxcfg |= AE_MAC_MCAST_EN;
2062 
2063 	/*
2064 	 * Wipe old settings.
2065 	 */
2066 	AE_WRITE_4(sc, AE_REG_MHT0, 0);
2067 	AE_WRITE_4(sc, AE_REG_MHT1, 0);
2068 	if ((ifp->if_flags & (IFF_PROMISC | IFF_ALLMULTI)) != 0) {
2069 		AE_WRITE_4(sc, AE_REG_MHT0, 0xffffffff);
2070 		AE_WRITE_4(sc, AE_REG_MHT1, 0xffffffff);
2071 		AE_WRITE_4(sc, AE_MAC_REG, rxcfg);
2072 		return;
2073 	}
2074 
2075 	/*
2076 	 * Load multicast tables.
2077 	 */
2078 	bzero(mchash, sizeof(mchash));
2079 	IF_ADDR_LOCK(ifp);
2080 	TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
2081 		if (ifma->ifma_addr->sa_family != AF_LINK)
2082 			continue;
2083 		crc = ether_crc32_le(LLADDR((struct sockaddr_dl *)
2084 			ifma->ifma_addr), ETHER_ADDR_LEN);
2085 		mchash[crc >> 31] |= 1 << ((crc >> 26) & 0x1f);
2086 	}
2087 	IF_ADDR_UNLOCK(ifp);
2088 	AE_WRITE_4(sc, AE_REG_MHT0, mchash[0]);
2089 	AE_WRITE_4(sc, AE_REG_MHT1, mchash[1]);
2090 	AE_WRITE_4(sc, AE_MAC_REG, rxcfg);
2091 }
2092 
2093 static int
2094 ae_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
2095 {
2096 	struct ae_softc *sc;
2097 	struct ifreq *ifr;
2098 	struct mii_data *mii;
2099 	int error, mask;
2100 
2101 	sc = ifp->if_softc;
2102 	ifr = (struct ifreq *)data;
2103 	error = 0;
2104 
2105 	switch (cmd) {
2106 	case SIOCSIFMTU:
2107 		if (ifr->ifr_mtu < ETHERMIN || ifr->ifr_mtu > ETHERMTU)
2108 			error = EINVAL;
2109 		else if (ifp->if_mtu != ifr->ifr_mtu) {
2110 			AE_LOCK(sc);
2111 			ifp->if_mtu = ifr->ifr_mtu;
2112 			if ((ifp->if_drv_flags & IFF_DRV_RUNNING) != 0)
2113 				ae_init_locked(sc);
2114 			AE_UNLOCK(sc);
2115 		}
2116 		break;
2117 	case SIOCSIFFLAGS:
2118 		AE_LOCK(sc);
2119 		if ((ifp->if_flags & IFF_UP) != 0) {
2120 			if ((ifp->if_drv_flags & IFF_DRV_RUNNING) != 0) {
2121 				if (((ifp->if_flags ^ sc->if_flags)
2122 				    & (IFF_PROMISC | IFF_ALLMULTI)) != 0)
2123 					ae_rxfilter(sc);
2124 			} else {
2125 				if ((sc->flags & AE_FLAG_DETACH) == 0)
2126 					ae_init_locked(sc);
2127 			}
2128 		} else {
2129 			if ((ifp->if_drv_flags & IFF_DRV_RUNNING) != 0)
2130 				ae_stop(sc);
2131 		}
2132 		sc->if_flags = ifp->if_flags;
2133 		AE_UNLOCK(sc);
2134 		break;
2135 	case SIOCADDMULTI:
2136 	case SIOCDELMULTI:
2137 		AE_LOCK(sc);
2138 		if ((ifp->if_drv_flags & IFF_DRV_RUNNING) != 0)
2139 			ae_rxfilter(sc);
2140 		AE_UNLOCK(sc);
2141 		break;
2142 	case SIOCSIFMEDIA:
2143 	case SIOCGIFMEDIA:
2144 		mii = device_get_softc(sc->miibus);
2145 		error = ifmedia_ioctl(ifp, ifr, &mii->mii_media, cmd);
2146 		break;
2147 	case SIOCSIFCAP:
2148 		AE_LOCK(sc);
2149 		mask = ifr->ifr_reqcap ^ ifp->if_capenable;
2150 		if ((mask & IFCAP_VLAN_HWTAGGING) != 0 &&
2151 		    (ifp->if_capabilities & IFCAP_VLAN_HWTAGGING) != 0) {
2152 			ifp->if_capenable ^= IFCAP_VLAN_HWTAGGING;
2153 			ae_rxvlan(sc);
2154 		}
2155 		VLAN_CAPABILITIES(ifp);
2156 		AE_UNLOCK(sc);
2157 		break;
2158 	default:
2159 		error = ether_ioctl(ifp, cmd, data);
2160 		break;
2161 	}
2162 	return (error);
2163 }
2164 
2165 static void
2166 ae_stop(ae_softc_t *sc)
2167 {
2168 	struct ifnet *ifp;
2169 	int i;
2170 
2171 	AE_LOCK_ASSERT(sc);
2172 
2173 	ifp = sc->ifp;
2174 	ifp->if_drv_flags &= ~(IFF_DRV_RUNNING | IFF_DRV_OACTIVE);
2175 	sc->flags &= ~AE_FLAG_LINK;
2176 	sc->wd_timer = 0;	/* Cancel watchdog. */
2177 	callout_stop(&sc->tick_ch);
2178 
2179 	/*
2180 	 * Clear and disable interrupts.
2181 	 */
2182 	AE_WRITE_4(sc, AE_IMR_REG, 0);
2183 	AE_WRITE_4(sc, AE_ISR_REG, 0xffffffff);
2184 
2185 	/*
2186 	 * Stop Rx/Tx MACs.
2187 	 */
2188 	ae_stop_txmac(sc);
2189 	ae_stop_rxmac(sc);
2190 
2191 	/*
2192 	 * Stop DMA engines.
2193 	 */
2194 	AE_WRITE_1(sc, AE_DMAREAD_REG, ~AE_DMAREAD_EN);
2195 	AE_WRITE_1(sc, AE_DMAWRITE_REG, ~AE_DMAWRITE_EN);
2196 
2197 	/*
2198 	 * Wait for everything to enter idle state.
2199 	 */
2200 	for (i = 0; i < AE_IDLE_TIMEOUT; i++) {
2201 		if (AE_READ_4(sc, AE_IDLE_REG) == 0)
2202 			break;
2203 		DELAY(100);
2204 	}
2205 	if (i == AE_IDLE_TIMEOUT)
2206 		device_printf(sc->dev, "could not enter idle state in stop.\n");
2207 }
2208 
2209 static void
2210 ae_update_stats_tx(uint16_t flags, ae_stats_t *stats)
2211 {
2212 
2213 	if ((flags & AE_TXS_BCAST) != 0)
2214 		stats->tx_bcast++;
2215 	if ((flags & AE_TXS_MCAST) != 0)
2216 		stats->tx_mcast++;
2217 	if ((flags & AE_TXS_PAUSE) != 0)
2218 		stats->tx_pause++;
2219 	if ((flags & AE_TXS_CTRL) != 0)
2220 		stats->tx_ctrl++;
2221 	if ((flags & AE_TXS_DEFER) != 0)
2222 		stats->tx_defer++;
2223 	if ((flags & AE_TXS_EXCDEFER) != 0)
2224 		stats->tx_excdefer++;
2225 	if ((flags & AE_TXS_SINGLECOL) != 0)
2226 		stats->tx_singlecol++;
2227 	if ((flags & AE_TXS_MULTICOL) != 0)
2228 		stats->tx_multicol++;
2229 	if ((flags & AE_TXS_LATECOL) != 0)
2230 		stats->tx_latecol++;
2231 	if ((flags & AE_TXS_ABORTCOL) != 0)
2232 		stats->tx_abortcol++;
2233 	if ((flags & AE_TXS_UNDERRUN) != 0)
2234 		stats->tx_underrun++;
2235 }
2236 
2237 static void
2238 ae_update_stats_rx(uint16_t flags, ae_stats_t *stats)
2239 {
2240 
2241 	if ((flags & AE_RXD_BCAST) != 0)
2242 		stats->rx_bcast++;
2243 	if ((flags & AE_RXD_MCAST) != 0)
2244 		stats->rx_mcast++;
2245 	if ((flags & AE_RXD_PAUSE) != 0)
2246 		stats->rx_pause++;
2247 	if ((flags & AE_RXD_CTRL) != 0)
2248 		stats->rx_ctrl++;
2249 	if ((flags & AE_RXD_CRCERR) != 0)
2250 		stats->rx_crcerr++;
2251 	if ((flags & AE_RXD_CODEERR) != 0)
2252 		stats->rx_codeerr++;
2253 	if ((flags & AE_RXD_RUNT) != 0)
2254 		stats->rx_runt++;
2255 	if ((flags & AE_RXD_FRAG) != 0)
2256 		stats->rx_frag++;
2257 	if ((flags & AE_RXD_TRUNC) != 0)
2258 		stats->rx_trunc++;
2259 	if ((flags & AE_RXD_ALIGN) != 0)
2260 		stats->rx_align++;
2261 }
2262