if_ste.c revision 162315
1/*-
2 * Copyright (c) 1997, 1998, 1999
3 *	Bill Paul <wpaul@ctr.columbia.edu>.  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 * 3. All advertising materials mentioning features or use of this software
14 *    must display the following acknowledgement:
15 *	This product includes software developed by Bill Paul.
16 * 4. Neither the name of the author nor the names of any co-contributors
17 *    may be used to endorse or promote products derived from this software
18 *    without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30 * THE POSSIBILITY OF SUCH DAMAGE.
31 */
32
33#include <sys/cdefs.h>
34__FBSDID("$FreeBSD: head/sys/pci/if_ste.c 162315 2006-09-15 10:40:54Z glebius $");
35
36#ifdef HAVE_KERNEL_OPTION_HEADERS
37#include "opt_device_polling.h"
38#endif
39
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/sockio.h>
43#include <sys/mbuf.h>
44#include <sys/malloc.h>
45#include <sys/kernel.h>
46#include <sys/module.h>
47#include <sys/socket.h>
48#include <sys/sysctl.h>
49
50#include <net/if.h>
51#include <net/if_arp.h>
52#include <net/ethernet.h>
53#include <net/if_dl.h>
54#include <net/if_media.h>
55#include <net/if_types.h>
56#include <net/if_vlan_var.h>
57
58#include <net/bpf.h>
59
60#include <vm/vm.h>              /* for vtophys */
61#include <vm/pmap.h>            /* for vtophys */
62#include <machine/bus.h>
63#include <machine/resource.h>
64#include <sys/bus.h>
65#include <sys/rman.h>
66
67#include <dev/mii/mii.h>
68#include <dev/mii/miivar.h>
69
70#include <dev/pci/pcireg.h>
71#include <dev/pci/pcivar.h>
72
73/* "device miibus" required.  See GENERIC if you get errors here. */
74#include "miibus_if.h"
75
76#define STE_USEIOSPACE
77
78#include <pci/if_stereg.h>
79
80MODULE_DEPEND(ste, pci, 1, 1, 1);
81MODULE_DEPEND(ste, ether, 1, 1, 1);
82MODULE_DEPEND(ste, miibus, 1, 1, 1);
83
84/*
85 * Various supported device vendors/types and their names.
86 */
87static struct ste_type ste_devs[] = {
88	{ ST_VENDORID, ST_DEVICEID_ST201, "Sundance ST201 10/100BaseTX" },
89	{ DL_VENDORID, DL_DEVICEID_DL10050, "D-Link DL10050 10/100BaseTX" },
90	{ 0, 0, NULL }
91};
92
93static int ste_probe(device_t);
94static int ste_attach(device_t);
95static int ste_detach(device_t);
96static void ste_init(void *);
97static void ste_init_locked(struct ste_softc *);
98static void ste_intr(void *);
99static void ste_rxeoc(struct ste_softc *);
100static void ste_rxeof(struct ste_softc *);
101static void ste_txeoc(struct ste_softc *);
102static void ste_txeof(struct ste_softc *);
103static void ste_stats_update(void *);
104static void ste_stop(struct ste_softc *);
105static void ste_reset(struct ste_softc *);
106static int ste_ioctl(struct ifnet *, u_long, caddr_t);
107static int ste_encap(struct ste_softc *, struct ste_chain *, struct mbuf *);
108static void ste_start(struct ifnet *);
109static void ste_start_locked(struct ifnet *);
110static void ste_watchdog(struct ifnet *);
111static void ste_shutdown(device_t);
112static int ste_newbuf(struct ste_softc *, struct ste_chain_onefrag *,
113		struct mbuf *);
114static int ste_ifmedia_upd(struct ifnet *);
115static void ste_ifmedia_upd_locked(struct ifnet *);
116static void ste_ifmedia_sts(struct ifnet *, struct ifmediareq *);
117
118static void ste_mii_sync(struct ste_softc *);
119static void ste_mii_send(struct ste_softc *, u_int32_t, int);
120static int ste_mii_readreg(struct ste_softc *, struct ste_mii_frame *);
121static int ste_mii_writereg(struct ste_softc *, struct ste_mii_frame *);
122static int ste_miibus_readreg(device_t, int, int);
123static int ste_miibus_writereg(device_t, int, int, int);
124static void ste_miibus_statchg(device_t);
125
126static int ste_eeprom_wait(struct ste_softc *);
127static int ste_read_eeprom(struct ste_softc *, caddr_t, int, int, int);
128static void ste_wait(struct ste_softc *);
129static void ste_setmulti(struct ste_softc *);
130static int ste_init_rx_list(struct ste_softc *);
131static void ste_init_tx_list(struct ste_softc *);
132
133#ifdef STE_USEIOSPACE
134#define STE_RES			SYS_RES_IOPORT
135#define STE_RID			STE_PCI_LOIO
136#else
137#define STE_RES			SYS_RES_MEMORY
138#define STE_RID			STE_PCI_LOMEM
139#endif
140
141static device_method_t ste_methods[] = {
142	/* Device interface */
143	DEVMETHOD(device_probe,		ste_probe),
144	DEVMETHOD(device_attach,	ste_attach),
145	DEVMETHOD(device_detach,	ste_detach),
146	DEVMETHOD(device_shutdown,	ste_shutdown),
147
148	/* bus interface */
149	DEVMETHOD(bus_print_child,	bus_generic_print_child),
150	DEVMETHOD(bus_driver_added,	bus_generic_driver_added),
151
152	/* MII interface */
153	DEVMETHOD(miibus_readreg,	ste_miibus_readreg),
154	DEVMETHOD(miibus_writereg,	ste_miibus_writereg),
155	DEVMETHOD(miibus_statchg,	ste_miibus_statchg),
156
157	{ 0, 0 }
158};
159
160static driver_t ste_driver = {
161	"ste",
162	ste_methods,
163	sizeof(struct ste_softc)
164};
165
166static devclass_t ste_devclass;
167
168DRIVER_MODULE(ste, pci, ste_driver, ste_devclass, 0, 0);
169DRIVER_MODULE(miibus, ste, miibus_driver, miibus_devclass, 0, 0);
170
171SYSCTL_NODE(_hw, OID_AUTO, ste, CTLFLAG_RD, 0, "if_ste parameters");
172
173static int ste_rxsyncs;
174SYSCTL_INT(_hw_ste, OID_AUTO, rxsyncs, CTLFLAG_RW, &ste_rxsyncs, 0, "");
175
176#define STE_SETBIT4(sc, reg, x)				\
177	CSR_WRITE_4(sc, reg, CSR_READ_4(sc, reg) | (x))
178
179#define STE_CLRBIT4(sc, reg, x)				\
180	CSR_WRITE_4(sc, reg, CSR_READ_4(sc, reg) & ~(x))
181
182#define STE_SETBIT2(sc, reg, x)				\
183	CSR_WRITE_2(sc, reg, CSR_READ_2(sc, reg) | (x))
184
185#define STE_CLRBIT2(sc, reg, x)				\
186	CSR_WRITE_2(sc, reg, CSR_READ_2(sc, reg) & ~(x))
187
188#define STE_SETBIT1(sc, reg, x)				\
189	CSR_WRITE_1(sc, reg, CSR_READ_1(sc, reg) | (x))
190
191#define STE_CLRBIT1(sc, reg, x)				\
192	CSR_WRITE_1(sc, reg, CSR_READ_1(sc, reg) & ~(x))
193
194
195#define MII_SET(x)		STE_SETBIT1(sc, STE_PHYCTL, x)
196#define MII_CLR(x)		STE_CLRBIT1(sc, STE_PHYCTL, x)
197
198/*
199 * Sync the PHYs by setting data bit and strobing the clock 32 times.
200 */
201static void
202ste_mii_sync(sc)
203	struct ste_softc		*sc;
204{
205	register int		i;
206
207	MII_SET(STE_PHYCTL_MDIR|STE_PHYCTL_MDATA);
208
209	for (i = 0; i < 32; i++) {
210		MII_SET(STE_PHYCTL_MCLK);
211		DELAY(1);
212		MII_CLR(STE_PHYCTL_MCLK);
213		DELAY(1);
214	}
215
216	return;
217}
218
219/*
220 * Clock a series of bits through the MII.
221 */
222static void
223ste_mii_send(sc, bits, cnt)
224	struct ste_softc		*sc;
225	u_int32_t		bits;
226	int			cnt;
227{
228	int			i;
229
230	MII_CLR(STE_PHYCTL_MCLK);
231
232	for (i = (0x1 << (cnt - 1)); i; i >>= 1) {
233		if (bits & i) {
234			MII_SET(STE_PHYCTL_MDATA);
235                } else {
236			MII_CLR(STE_PHYCTL_MDATA);
237                }
238		DELAY(1);
239		MII_CLR(STE_PHYCTL_MCLK);
240		DELAY(1);
241		MII_SET(STE_PHYCTL_MCLK);
242	}
243}
244
245/*
246 * Read an PHY register through the MII.
247 */
248static int
249ste_mii_readreg(sc, frame)
250	struct ste_softc		*sc;
251	struct ste_mii_frame	*frame;
252
253{
254	int			i, ack;
255
256	/*
257	 * Set up frame for RX.
258	 */
259	frame->mii_stdelim = STE_MII_STARTDELIM;
260	frame->mii_opcode = STE_MII_READOP;
261	frame->mii_turnaround = 0;
262	frame->mii_data = 0;
263
264	CSR_WRITE_2(sc, STE_PHYCTL, 0);
265	/*
266 	 * Turn on data xmit.
267	 */
268	MII_SET(STE_PHYCTL_MDIR);
269
270	ste_mii_sync(sc);
271
272	/*
273	 * Send command/address info.
274	 */
275	ste_mii_send(sc, frame->mii_stdelim, 2);
276	ste_mii_send(sc, frame->mii_opcode, 2);
277	ste_mii_send(sc, frame->mii_phyaddr, 5);
278	ste_mii_send(sc, frame->mii_regaddr, 5);
279
280	/* Turn off xmit. */
281	MII_CLR(STE_PHYCTL_MDIR);
282
283	/* Idle bit */
284	MII_CLR((STE_PHYCTL_MCLK|STE_PHYCTL_MDATA));
285	DELAY(1);
286	MII_SET(STE_PHYCTL_MCLK);
287	DELAY(1);
288
289	/* Check for ack */
290	MII_CLR(STE_PHYCTL_MCLK);
291	DELAY(1);
292	ack = CSR_READ_2(sc, STE_PHYCTL) & STE_PHYCTL_MDATA;
293	MII_SET(STE_PHYCTL_MCLK);
294	DELAY(1);
295
296	/*
297	 * Now try reading data bits. If the ack failed, we still
298	 * need to clock through 16 cycles to keep the PHY(s) in sync.
299	 */
300	if (ack) {
301		for(i = 0; i < 16; i++) {
302			MII_CLR(STE_PHYCTL_MCLK);
303			DELAY(1);
304			MII_SET(STE_PHYCTL_MCLK);
305			DELAY(1);
306		}
307		goto fail;
308	}
309
310	for (i = 0x8000; i; i >>= 1) {
311		MII_CLR(STE_PHYCTL_MCLK);
312		DELAY(1);
313		if (!ack) {
314			if (CSR_READ_2(sc, STE_PHYCTL) & STE_PHYCTL_MDATA)
315				frame->mii_data |= i;
316			DELAY(1);
317		}
318		MII_SET(STE_PHYCTL_MCLK);
319		DELAY(1);
320	}
321
322fail:
323
324	MII_CLR(STE_PHYCTL_MCLK);
325	DELAY(1);
326	MII_SET(STE_PHYCTL_MCLK);
327	DELAY(1);
328
329	if (ack)
330		return(1);
331	return(0);
332}
333
334/*
335 * Write to a PHY register through the MII.
336 */
337static int
338ste_mii_writereg(sc, frame)
339	struct ste_softc		*sc;
340	struct ste_mii_frame	*frame;
341
342{
343
344	/*
345	 * Set up frame for TX.
346	 */
347
348	frame->mii_stdelim = STE_MII_STARTDELIM;
349	frame->mii_opcode = STE_MII_WRITEOP;
350	frame->mii_turnaround = STE_MII_TURNAROUND;
351
352	/*
353 	 * Turn on data output.
354	 */
355	MII_SET(STE_PHYCTL_MDIR);
356
357	ste_mii_sync(sc);
358
359	ste_mii_send(sc, frame->mii_stdelim, 2);
360	ste_mii_send(sc, frame->mii_opcode, 2);
361	ste_mii_send(sc, frame->mii_phyaddr, 5);
362	ste_mii_send(sc, frame->mii_regaddr, 5);
363	ste_mii_send(sc, frame->mii_turnaround, 2);
364	ste_mii_send(sc, frame->mii_data, 16);
365
366	/* Idle bit. */
367	MII_SET(STE_PHYCTL_MCLK);
368	DELAY(1);
369	MII_CLR(STE_PHYCTL_MCLK);
370	DELAY(1);
371
372	/*
373	 * Turn off xmit.
374	 */
375	MII_CLR(STE_PHYCTL_MDIR);
376
377	return(0);
378}
379
380static int
381ste_miibus_readreg(dev, phy, reg)
382	device_t		dev;
383	int			phy, reg;
384{
385	struct ste_softc	*sc;
386	struct ste_mii_frame	frame;
387
388	sc = device_get_softc(dev);
389
390	if ( sc->ste_one_phy && phy != 0 )
391		return (0);
392
393	bzero((char *)&frame, sizeof(frame));
394
395	frame.mii_phyaddr = phy;
396	frame.mii_regaddr = reg;
397	ste_mii_readreg(sc, &frame);
398
399	return(frame.mii_data);
400}
401
402static int
403ste_miibus_writereg(dev, phy, reg, data)
404	device_t		dev;
405	int			phy, reg, data;
406{
407	struct ste_softc	*sc;
408	struct ste_mii_frame	frame;
409
410	sc = device_get_softc(dev);
411	bzero((char *)&frame, sizeof(frame));
412
413	frame.mii_phyaddr = phy;
414	frame.mii_regaddr = reg;
415	frame.mii_data = data;
416
417	ste_mii_writereg(sc, &frame);
418
419	return(0);
420}
421
422static void
423ste_miibus_statchg(dev)
424	device_t		dev;
425{
426	struct ste_softc	*sc;
427	struct mii_data		*mii;
428
429	sc = device_get_softc(dev);
430
431	mii = device_get_softc(sc->ste_miibus);
432
433	if ((mii->mii_media_active & IFM_GMASK) == IFM_FDX) {
434		STE_SETBIT2(sc, STE_MACCTL0, STE_MACCTL0_FULLDUPLEX);
435	} else {
436		STE_CLRBIT2(sc, STE_MACCTL0, STE_MACCTL0_FULLDUPLEX);
437	}
438
439	return;
440}
441
442static int
443ste_ifmedia_upd(ifp)
444	struct ifnet		*ifp;
445{
446	struct ste_softc	*sc;
447
448	sc = ifp->if_softc;
449	STE_LOCK(sc);
450	ste_ifmedia_upd_locked(ifp);
451	STE_UNLOCK(sc);
452
453	return(0);
454}
455
456static void
457ste_ifmedia_upd_locked(ifp)
458	struct ifnet		*ifp;
459{
460	struct ste_softc	*sc;
461	struct mii_data		*mii;
462
463	sc = ifp->if_softc;
464	STE_LOCK_ASSERT(sc);
465	mii = device_get_softc(sc->ste_miibus);
466	sc->ste_link = 0;
467	if (mii->mii_instance) {
468		struct mii_softc	*miisc;
469		LIST_FOREACH(miisc, &mii->mii_phys, mii_list)
470			mii_phy_reset(miisc);
471	}
472	mii_mediachg(mii);
473}
474
475static void
476ste_ifmedia_sts(ifp, ifmr)
477	struct ifnet		*ifp;
478	struct ifmediareq	*ifmr;
479{
480	struct ste_softc	*sc;
481	struct mii_data		*mii;
482
483	sc = ifp->if_softc;
484	mii = device_get_softc(sc->ste_miibus);
485
486	STE_LOCK(sc);
487	mii_pollstat(mii);
488	ifmr->ifm_active = mii->mii_media_active;
489	ifmr->ifm_status = mii->mii_media_status;
490	STE_UNLOCK(sc);
491
492	return;
493}
494
495static void
496ste_wait(sc)
497	struct ste_softc		*sc;
498{
499	register int		i;
500
501	for (i = 0; i < STE_TIMEOUT; i++) {
502		if (!(CSR_READ_4(sc, STE_DMACTL) & STE_DMACTL_DMA_HALTINPROG))
503			break;
504	}
505
506	if (i == STE_TIMEOUT)
507		device_printf(sc->ste_dev, "command never completed!\n");
508
509	return;
510}
511
512/*
513 * The EEPROM is slow: give it time to come ready after issuing
514 * it a command.
515 */
516static int
517ste_eeprom_wait(sc)
518	struct ste_softc		*sc;
519{
520	int			i;
521
522	DELAY(1000);
523
524	for (i = 0; i < 100; i++) {
525		if (CSR_READ_2(sc, STE_EEPROM_CTL) & STE_EECTL_BUSY)
526			DELAY(1000);
527		else
528			break;
529	}
530
531	if (i == 100) {
532		device_printf(sc->ste_dev, "eeprom failed to come ready\n");
533		return(1);
534	}
535
536	return(0);
537}
538
539/*
540 * Read a sequence of words from the EEPROM. Note that ethernet address
541 * data is stored in the EEPROM in network byte order.
542 */
543static int
544ste_read_eeprom(sc, dest, off, cnt, swap)
545	struct ste_softc		*sc;
546	caddr_t			dest;
547	int			off;
548	int			cnt;
549	int			swap;
550{
551	int			err = 0, i;
552	u_int16_t		word = 0, *ptr;
553
554	if (ste_eeprom_wait(sc))
555		return(1);
556
557	for (i = 0; i < cnt; i++) {
558		CSR_WRITE_2(sc, STE_EEPROM_CTL, STE_EEOPCODE_READ | (off + i));
559		err = ste_eeprom_wait(sc);
560		if (err)
561			break;
562		word = CSR_READ_2(sc, STE_EEPROM_DATA);
563		ptr = (u_int16_t *)(dest + (i * 2));
564		if (swap)
565			*ptr = ntohs(word);
566		else
567			*ptr = word;
568	}
569
570	return(err ? 1 : 0);
571}
572
573static void
574ste_setmulti(sc)
575	struct ste_softc	*sc;
576{
577	struct ifnet		*ifp;
578	int			h = 0;
579	u_int32_t		hashes[2] = { 0, 0 };
580	struct ifmultiaddr	*ifma;
581
582	ifp = sc->ste_ifp;
583	if (ifp->if_flags & IFF_ALLMULTI || ifp->if_flags & IFF_PROMISC) {
584		STE_SETBIT1(sc, STE_RX_MODE, STE_RXMODE_ALLMULTI);
585		STE_CLRBIT1(sc, STE_RX_MODE, STE_RXMODE_MULTIHASH);
586		return;
587	}
588
589	/* first, zot all the existing hash bits */
590	CSR_WRITE_2(sc, STE_MAR0, 0);
591	CSR_WRITE_2(sc, STE_MAR1, 0);
592	CSR_WRITE_2(sc, STE_MAR2, 0);
593	CSR_WRITE_2(sc, STE_MAR3, 0);
594
595	/* now program new ones */
596	IF_ADDR_LOCK(ifp);
597	TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
598		if (ifma->ifma_addr->sa_family != AF_LINK)
599			continue;
600		h = ether_crc32_be(LLADDR((struct sockaddr_dl *)
601		    ifma->ifma_addr), ETHER_ADDR_LEN) & 0x3F;
602		if (h < 32)
603			hashes[0] |= (1 << h);
604		else
605			hashes[1] |= (1 << (h - 32));
606	}
607	IF_ADDR_UNLOCK(ifp);
608
609	CSR_WRITE_2(sc, STE_MAR0, hashes[0] & 0xFFFF);
610	CSR_WRITE_2(sc, STE_MAR1, (hashes[0] >> 16) & 0xFFFF);
611	CSR_WRITE_2(sc, STE_MAR2, hashes[1] & 0xFFFF);
612	CSR_WRITE_2(sc, STE_MAR3, (hashes[1] >> 16) & 0xFFFF);
613	STE_CLRBIT1(sc, STE_RX_MODE, STE_RXMODE_ALLMULTI);
614	STE_SETBIT1(sc, STE_RX_MODE, STE_RXMODE_MULTIHASH);
615
616	return;
617}
618
619#ifdef DEVICE_POLLING
620static poll_handler_t ste_poll, ste_poll_locked;
621
622static void
623ste_poll(struct ifnet *ifp, enum poll_cmd cmd, int count)
624{
625	struct ste_softc *sc = ifp->if_softc;
626
627	STE_LOCK(sc);
628	if (ifp->if_drv_flags & IFF_DRV_RUNNING)
629		ste_poll_locked(ifp, cmd, count);
630	STE_UNLOCK(sc);
631}
632
633static void
634ste_poll_locked(struct ifnet *ifp, enum poll_cmd cmd, int count)
635{
636	struct ste_softc *sc = ifp->if_softc;
637
638	STE_LOCK_ASSERT(sc);
639
640	sc->rxcycles = count;
641	if (cmd == POLL_AND_CHECK_STATUS)
642		ste_rxeoc(sc);
643	ste_rxeof(sc);
644	ste_txeof(sc);
645	if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
646		ste_start_locked(ifp);
647
648	if (cmd == POLL_AND_CHECK_STATUS) {
649		u_int16_t status;
650
651		status = CSR_READ_2(sc, STE_ISR_ACK);
652
653		if (status & STE_ISR_TX_DONE)
654			ste_txeoc(sc);
655
656		if (status & STE_ISR_STATS_OFLOW) {
657			callout_stop(&sc->ste_stat_callout);
658			ste_stats_update(sc);
659		}
660
661		if (status & STE_ISR_LINKEVENT)
662			mii_pollstat(device_get_softc(sc->ste_miibus));
663
664		if (status & STE_ISR_HOSTERR) {
665			ste_reset(sc);
666			ste_init_locked(sc);
667		}
668	}
669}
670#endif /* DEVICE_POLLING */
671
672static void
673ste_intr(xsc)
674	void			*xsc;
675{
676	struct ste_softc	*sc;
677	struct ifnet		*ifp;
678	u_int16_t		status;
679
680	sc = xsc;
681	STE_LOCK(sc);
682	ifp = sc->ste_ifp;
683
684#ifdef DEVICE_POLLING
685	if (ifp->if_capenable & IFCAP_POLLING) {
686		STE_UNLOCK(sc);
687		return;
688	}
689#endif
690
691	/* See if this is really our interrupt. */
692	if (!(CSR_READ_2(sc, STE_ISR) & STE_ISR_INTLATCH)) {
693		STE_UNLOCK(sc);
694		return;
695	}
696
697	for (;;) {
698		status = CSR_READ_2(sc, STE_ISR_ACK);
699
700		if (!(status & STE_INTRS))
701			break;
702
703		if (status & STE_ISR_RX_DMADONE) {
704			ste_rxeoc(sc);
705			ste_rxeof(sc);
706		}
707
708		if (status & STE_ISR_TX_DMADONE)
709			ste_txeof(sc);
710
711		if (status & STE_ISR_TX_DONE)
712			ste_txeoc(sc);
713
714		if (status & STE_ISR_STATS_OFLOW) {
715			callout_stop(&sc->ste_stat_callout);
716			ste_stats_update(sc);
717		}
718
719		if (status & STE_ISR_LINKEVENT)
720			mii_pollstat(device_get_softc(sc->ste_miibus));
721
722
723		if (status & STE_ISR_HOSTERR) {
724			ste_reset(sc);
725			ste_init_locked(sc);
726		}
727	}
728
729	/* Re-enable interrupts */
730	CSR_WRITE_2(sc, STE_IMR, STE_INTRS);
731
732	if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
733		ste_start_locked(ifp);
734
735	STE_UNLOCK(sc);
736
737	return;
738}
739
740static void
741ste_rxeoc(struct ste_softc *sc)
742{
743	struct ste_chain_onefrag *cur_rx;
744
745	STE_LOCK_ASSERT(sc);
746
747	if (sc->ste_cdata.ste_rx_head->ste_ptr->ste_status == 0) {
748		cur_rx = sc->ste_cdata.ste_rx_head;
749		do {
750			cur_rx = cur_rx->ste_next;
751			/* If the ring is empty, just return. */
752			if (cur_rx == sc->ste_cdata.ste_rx_head)
753				return;
754		} while (cur_rx->ste_ptr->ste_status == 0);
755		if (sc->ste_cdata.ste_rx_head->ste_ptr->ste_status == 0) {
756			/* We've fallen behind the chip: catch it. */
757			sc->ste_cdata.ste_rx_head = cur_rx;
758			++ste_rxsyncs;
759		}
760	}
761}
762
763/*
764 * A frame has been uploaded: pass the resulting mbuf chain up to
765 * the higher level protocols.
766 */
767static void
768ste_rxeof(sc)
769	struct ste_softc		*sc;
770{
771        struct mbuf		*m;
772        struct ifnet		*ifp;
773	struct ste_chain_onefrag	*cur_rx;
774	int			total_len = 0, count=0;
775	u_int32_t		rxstat;
776
777	STE_LOCK_ASSERT(sc);
778
779	ifp = sc->ste_ifp;
780
781	while((rxstat = sc->ste_cdata.ste_rx_head->ste_ptr->ste_status)
782	      & STE_RXSTAT_DMADONE) {
783#ifdef DEVICE_POLLING
784		if (ifp->if_capenable & IFCAP_POLLING) {
785			if (sc->rxcycles <= 0)
786				break;
787			sc->rxcycles--;
788		}
789#endif
790		if ((STE_RX_LIST_CNT - count) < 3) {
791			break;
792		}
793
794		cur_rx = sc->ste_cdata.ste_rx_head;
795		sc->ste_cdata.ste_rx_head = cur_rx->ste_next;
796
797		/*
798		 * If an error occurs, update stats, clear the
799		 * status word and leave the mbuf cluster in place:
800		 * it should simply get re-used next time this descriptor
801	 	 * comes up in the ring.
802		 */
803		if (rxstat & STE_RXSTAT_FRAME_ERR) {
804			ifp->if_ierrors++;
805			cur_rx->ste_ptr->ste_status = 0;
806			continue;
807		}
808
809		/*
810		 * If there error bit was not set, the upload complete
811		 * bit should be set which means we have a valid packet.
812		 * If not, something truly strange has happened.
813		 */
814		if (!(rxstat & STE_RXSTAT_DMADONE)) {
815			device_printf(sc->ste_dev,
816			    "bad receive status -- packet dropped\n");
817			ifp->if_ierrors++;
818			cur_rx->ste_ptr->ste_status = 0;
819			continue;
820		}
821
822		/* No errors; receive the packet. */
823		m = cur_rx->ste_mbuf;
824		total_len = cur_rx->ste_ptr->ste_status & STE_RXSTAT_FRAMELEN;
825
826		/*
827		 * Try to conjure up a new mbuf cluster. If that
828		 * fails, it means we have an out of memory condition and
829		 * should leave the buffer in place and continue. This will
830		 * result in a lost packet, but there's little else we
831		 * can do in this situation.
832		 */
833		if (ste_newbuf(sc, cur_rx, NULL) == ENOBUFS) {
834			ifp->if_ierrors++;
835			cur_rx->ste_ptr->ste_status = 0;
836			continue;
837		}
838
839		m->m_pkthdr.rcvif = ifp;
840		m->m_pkthdr.len = m->m_len = total_len;
841
842		ifp->if_ipackets++;
843		STE_UNLOCK(sc);
844		(*ifp->if_input)(ifp, m);
845		STE_LOCK(sc);
846
847		cur_rx->ste_ptr->ste_status = 0;
848		count++;
849	}
850
851	return;
852}
853
854static void
855ste_txeoc(sc)
856	struct ste_softc	*sc;
857{
858	u_int8_t		txstat;
859	struct ifnet		*ifp;
860
861	ifp = sc->ste_ifp;
862
863	while ((txstat = CSR_READ_1(sc, STE_TX_STATUS)) &
864	    STE_TXSTATUS_TXDONE) {
865		if (txstat & STE_TXSTATUS_UNDERRUN ||
866		    txstat & STE_TXSTATUS_EXCESSCOLLS ||
867		    txstat & STE_TXSTATUS_RECLAIMERR) {
868			ifp->if_oerrors++;
869			device_printf(sc->ste_dev,
870			    "transmission error: %x\n", txstat);
871
872			ste_reset(sc);
873			ste_init_locked(sc);
874
875			if (txstat & STE_TXSTATUS_UNDERRUN &&
876			    sc->ste_tx_thresh < STE_PACKET_SIZE) {
877				sc->ste_tx_thresh += STE_MIN_FRAMELEN;
878				device_printf(sc->ste_dev,
879				    "tx underrun, increasing tx"
880				    " start threshold to %d bytes\n",
881				    sc->ste_tx_thresh);
882			}
883			CSR_WRITE_2(sc, STE_TX_STARTTHRESH, sc->ste_tx_thresh);
884			CSR_WRITE_2(sc, STE_TX_RECLAIM_THRESH,
885			    (STE_PACKET_SIZE >> 4));
886		}
887		ste_init_locked(sc);
888		CSR_WRITE_2(sc, STE_TX_STATUS, txstat);
889	}
890
891	return;
892}
893
894static void
895ste_txeof(sc)
896	struct ste_softc	*sc;
897{
898	struct ste_chain	*cur_tx;
899	struct ifnet		*ifp;
900	int			idx;
901
902	ifp = sc->ste_ifp;
903
904	idx = sc->ste_cdata.ste_tx_cons;
905	while(idx != sc->ste_cdata.ste_tx_prod) {
906		cur_tx = &sc->ste_cdata.ste_tx_chain[idx];
907
908		if (!(cur_tx->ste_ptr->ste_ctl & STE_TXCTL_DMADONE))
909			break;
910
911		m_freem(cur_tx->ste_mbuf);
912		cur_tx->ste_mbuf = NULL;
913		ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
914		ifp->if_opackets++;
915
916		STE_INC(idx, STE_TX_LIST_CNT);
917	}
918
919	sc->ste_cdata.ste_tx_cons = idx;
920	if (idx == sc->ste_cdata.ste_tx_prod)
921		ifp->if_timer = 0;
922}
923
924static void
925ste_stats_update(xsc)
926	void			*xsc;
927{
928	struct ste_softc	*sc;
929	struct ifnet		*ifp;
930	struct mii_data		*mii;
931
932	sc = xsc;
933	STE_LOCK_ASSERT(sc);
934
935	ifp = sc->ste_ifp;
936	mii = device_get_softc(sc->ste_miibus);
937
938	ifp->if_collisions += CSR_READ_1(sc, STE_LATE_COLLS)
939	    + CSR_READ_1(sc, STE_MULTI_COLLS)
940	    + CSR_READ_1(sc, STE_SINGLE_COLLS);
941
942	if (!sc->ste_link) {
943		mii_pollstat(mii);
944		if (mii->mii_media_status & IFM_ACTIVE &&
945		    IFM_SUBTYPE(mii->mii_media_active) != IFM_NONE) {
946			sc->ste_link++;
947			/*
948			* we don't get a call-back on re-init so do it
949			* otherwise we get stuck in the wrong link state
950			*/
951			ste_miibus_statchg(sc->ste_dev);
952			if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
953				ste_start_locked(ifp);
954		}
955	}
956
957	callout_reset(&sc->ste_stat_callout, hz, ste_stats_update, sc);
958
959	return;
960}
961
962
963/*
964 * Probe for a Sundance ST201 chip. Check the PCI vendor and device
965 * IDs against our list and return a device name if we find a match.
966 */
967static int
968ste_probe(dev)
969	device_t		dev;
970{
971	struct ste_type		*t;
972
973	t = ste_devs;
974
975	while(t->ste_name != NULL) {
976		if ((pci_get_vendor(dev) == t->ste_vid) &&
977		    (pci_get_device(dev) == t->ste_did)) {
978			device_set_desc(dev, t->ste_name);
979			return (BUS_PROBE_DEFAULT);
980		}
981		t++;
982	}
983
984	return(ENXIO);
985}
986
987/*
988 * Attach the interface. Allocate softc structures, do ifmedia
989 * setup and ethernet/BPF attach.
990 */
991static int
992ste_attach(dev)
993	device_t		dev;
994{
995	struct ste_softc	*sc;
996	struct ifnet		*ifp;
997	int			error = 0, rid;
998	u_char			eaddr[6];
999
1000	sc = device_get_softc(dev);
1001	sc->ste_dev = dev;
1002
1003	/*
1004	 * Only use one PHY since this chip reports multiple
1005	 * Note on the DFE-550 the PHY is at 1 on the DFE-580
1006	 * it is at 0 & 1.  It is rev 0x12.
1007	 */
1008	if (pci_get_vendor(dev) == DL_VENDORID &&
1009	    pci_get_device(dev) == DL_DEVICEID_DL10050 &&
1010	    pci_get_revid(dev) == 0x12 )
1011		sc->ste_one_phy = 1;
1012
1013	mtx_init(&sc->ste_mtx, device_get_nameunit(dev), MTX_NETWORK_LOCK,
1014	    MTX_DEF);
1015	/*
1016	 * Map control/status registers.
1017	 */
1018	pci_enable_busmaster(dev);
1019
1020	rid = STE_RID;
1021	sc->ste_res = bus_alloc_resource_any(dev, STE_RES, &rid, RF_ACTIVE);
1022
1023	if (sc->ste_res == NULL) {
1024		device_printf(dev, "couldn't map ports/memory\n");
1025		error = ENXIO;
1026		goto fail;
1027	}
1028
1029	sc->ste_btag = rman_get_bustag(sc->ste_res);
1030	sc->ste_bhandle = rman_get_bushandle(sc->ste_res);
1031
1032	/* Allocate interrupt */
1033	rid = 0;
1034	sc->ste_irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
1035	    RF_SHAREABLE | RF_ACTIVE);
1036
1037	if (sc->ste_irq == NULL) {
1038		device_printf(dev, "couldn't map interrupt\n");
1039		error = ENXIO;
1040		goto fail;
1041	}
1042
1043	callout_init_mtx(&sc->ste_stat_callout, &sc->ste_mtx, 0);
1044
1045	/* Reset the adapter. */
1046	ste_reset(sc);
1047
1048	/*
1049	 * Get station address from the EEPROM.
1050	 */
1051	if (ste_read_eeprom(sc, eaddr,
1052	    STE_EEADDR_NODE0, 3, 0)) {
1053		device_printf(dev, "failed to read station address\n");
1054		error = ENXIO;;
1055		goto fail;
1056	}
1057
1058	/* Allocate the descriptor queues. */
1059	sc->ste_ldata = contigmalloc(sizeof(struct ste_list_data), M_DEVBUF,
1060	    M_NOWAIT, 0, 0xffffffff, PAGE_SIZE, 0);
1061
1062	if (sc->ste_ldata == NULL) {
1063		device_printf(dev, "no memory for list buffers!\n");
1064		error = ENXIO;
1065		goto fail;
1066	}
1067
1068	bzero(sc->ste_ldata, sizeof(struct ste_list_data));
1069
1070	ifp = sc->ste_ifp = if_alloc(IFT_ETHER);
1071	if (ifp == NULL) {
1072		device_printf(dev, "can not if_alloc()\n");
1073		error = ENOSPC;
1074		goto fail;
1075	}
1076
1077	/* Do MII setup. */
1078	if (mii_phy_probe(dev, &sc->ste_miibus,
1079	    ste_ifmedia_upd, ste_ifmedia_sts)) {
1080		device_printf(dev, "MII without any phy!\n");
1081		error = ENXIO;
1082		goto fail;
1083	}
1084
1085	ifp->if_softc = sc;
1086	if_initname(ifp, device_get_name(dev), device_get_unit(dev));
1087	ifp->if_mtu = ETHERMTU;
1088	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
1089	ifp->if_ioctl = ste_ioctl;
1090	ifp->if_start = ste_start;
1091	ifp->if_watchdog = ste_watchdog;
1092	ifp->if_init = ste_init;
1093	IFQ_SET_MAXLEN(&ifp->if_snd, STE_TX_LIST_CNT - 1);
1094	ifp->if_snd.ifq_drv_maxlen = STE_TX_LIST_CNT - 1;
1095	IFQ_SET_READY(&ifp->if_snd);
1096
1097	sc->ste_tx_thresh = STE_TXSTART_THRESH;
1098
1099	/*
1100	 * Call MI attach routine.
1101	 */
1102	ether_ifattach(ifp, eaddr);
1103
1104	/*
1105	 * Tell the upper layer(s) we support long frames.
1106	 */
1107	ifp->if_data.ifi_hdrlen = sizeof(struct ether_vlan_header);
1108	ifp->if_capabilities |= IFCAP_VLAN_MTU;
1109	ifp->if_capenable = ifp->if_capabilities;
1110#ifdef DEVICE_POLLING
1111	ifp->if_capabilities |= IFCAP_POLLING;
1112#endif
1113
1114	/* Hook interrupt last to avoid having to lock softc */
1115	error = bus_setup_intr(dev, sc->ste_irq, INTR_TYPE_NET | INTR_MPSAFE,
1116	    ste_intr, sc, &sc->ste_intrhand);
1117
1118	if (error) {
1119		device_printf(dev, "couldn't set up irq\n");
1120		ether_ifdetach(ifp);
1121		goto fail;
1122	}
1123
1124fail:
1125	if (error)
1126		ste_detach(dev);
1127
1128	return(error);
1129}
1130
1131/*
1132 * Shutdown hardware and free up resources. This can be called any
1133 * time after the mutex has been initialized. It is called in both
1134 * the error case in attach and the normal detach case so it needs
1135 * to be careful about only freeing resources that have actually been
1136 * allocated.
1137 */
1138static int
1139ste_detach(dev)
1140	device_t		dev;
1141{
1142	struct ste_softc	*sc;
1143	struct ifnet		*ifp;
1144
1145	sc = device_get_softc(dev);
1146	KASSERT(mtx_initialized(&sc->ste_mtx), ("ste mutex not initialized"));
1147	ifp = sc->ste_ifp;
1148
1149#ifdef DEVICE_POLLING
1150	if (ifp->if_capenable & IFCAP_POLLING)
1151		ether_poll_deregister(ifp);
1152#endif
1153
1154	/* These should only be active if attach succeeded */
1155	if (device_is_attached(dev)) {
1156		STE_LOCK(sc);
1157		ste_stop(sc);
1158		STE_UNLOCK(sc);
1159		callout_drain(&sc->ste_stat_callout);
1160		ether_ifdetach(ifp);
1161	}
1162	if (sc->ste_miibus)
1163		device_delete_child(dev, sc->ste_miibus);
1164	bus_generic_detach(dev);
1165
1166	if (sc->ste_intrhand)
1167		bus_teardown_intr(dev, sc->ste_irq, sc->ste_intrhand);
1168	if (sc->ste_irq)
1169		bus_release_resource(dev, SYS_RES_IRQ, 0, sc->ste_irq);
1170	if (sc->ste_res)
1171		bus_release_resource(dev, STE_RES, STE_RID, sc->ste_res);
1172
1173	if (ifp)
1174		if_free(ifp);
1175
1176	if (sc->ste_ldata) {
1177		contigfree(sc->ste_ldata, sizeof(struct ste_list_data),
1178		    M_DEVBUF);
1179	}
1180
1181	mtx_destroy(&sc->ste_mtx);
1182
1183	return(0);
1184}
1185
1186static int
1187ste_newbuf(sc, c, m)
1188	struct ste_softc	*sc;
1189	struct ste_chain_onefrag	*c;
1190	struct mbuf		*m;
1191{
1192	struct mbuf		*m_new = NULL;
1193
1194	if (m == NULL) {
1195		MGETHDR(m_new, M_DONTWAIT, MT_DATA);
1196		if (m_new == NULL)
1197			return(ENOBUFS);
1198		MCLGET(m_new, M_DONTWAIT);
1199		if (!(m_new->m_flags & M_EXT)) {
1200			m_freem(m_new);
1201			return(ENOBUFS);
1202		}
1203		m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
1204	} else {
1205		m_new = m;
1206		m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
1207		m_new->m_data = m_new->m_ext.ext_buf;
1208	}
1209
1210	m_adj(m_new, ETHER_ALIGN);
1211
1212	c->ste_mbuf = m_new;
1213	c->ste_ptr->ste_status = 0;
1214	c->ste_ptr->ste_frag.ste_addr = vtophys(mtod(m_new, caddr_t));
1215	c->ste_ptr->ste_frag.ste_len = (1536 + ETHER_VLAN_ENCAP_LEN) | STE_FRAG_LAST;
1216
1217	return(0);
1218}
1219
1220static int
1221ste_init_rx_list(sc)
1222	struct ste_softc	*sc;
1223{
1224	struct ste_chain_data	*cd;
1225	struct ste_list_data	*ld;
1226	int			i;
1227
1228	cd = &sc->ste_cdata;
1229	ld = sc->ste_ldata;
1230
1231	for (i = 0; i < STE_RX_LIST_CNT; i++) {
1232		cd->ste_rx_chain[i].ste_ptr = &ld->ste_rx_list[i];
1233		if (ste_newbuf(sc, &cd->ste_rx_chain[i], NULL) == ENOBUFS)
1234			return(ENOBUFS);
1235		if (i == (STE_RX_LIST_CNT - 1)) {
1236			cd->ste_rx_chain[i].ste_next =
1237			    &cd->ste_rx_chain[0];
1238			ld->ste_rx_list[i].ste_next =
1239			    vtophys(&ld->ste_rx_list[0]);
1240		} else {
1241			cd->ste_rx_chain[i].ste_next =
1242			    &cd->ste_rx_chain[i + 1];
1243			ld->ste_rx_list[i].ste_next =
1244			    vtophys(&ld->ste_rx_list[i + 1]);
1245		}
1246		ld->ste_rx_list[i].ste_status = 0;
1247	}
1248
1249	cd->ste_rx_head = &cd->ste_rx_chain[0];
1250
1251	return(0);
1252}
1253
1254static void
1255ste_init_tx_list(sc)
1256	struct ste_softc	*sc;
1257{
1258	struct ste_chain_data	*cd;
1259	struct ste_list_data	*ld;
1260	int			i;
1261
1262	cd = &sc->ste_cdata;
1263	ld = sc->ste_ldata;
1264	for (i = 0; i < STE_TX_LIST_CNT; i++) {
1265		cd->ste_tx_chain[i].ste_ptr = &ld->ste_tx_list[i];
1266		cd->ste_tx_chain[i].ste_ptr->ste_next = 0;
1267		cd->ste_tx_chain[i].ste_ptr->ste_ctl  = 0;
1268		cd->ste_tx_chain[i].ste_phys = vtophys(&ld->ste_tx_list[i]);
1269		if (i == (STE_TX_LIST_CNT - 1))
1270			cd->ste_tx_chain[i].ste_next =
1271			    &cd->ste_tx_chain[0];
1272		else
1273			cd->ste_tx_chain[i].ste_next =
1274			    &cd->ste_tx_chain[i + 1];
1275	}
1276
1277	cd->ste_tx_prod = 0;
1278	cd->ste_tx_cons = 0;
1279
1280	return;
1281}
1282
1283static void
1284ste_init(xsc)
1285	void			*xsc;
1286{
1287	struct ste_softc	*sc;
1288
1289	sc = xsc;
1290	STE_LOCK(sc);
1291	ste_init_locked(sc);
1292	STE_UNLOCK(sc);
1293}
1294
1295static void
1296ste_init_locked(sc)
1297	struct ste_softc	*sc;
1298{
1299	int			i;
1300	struct ifnet		*ifp;
1301
1302	STE_LOCK_ASSERT(sc);
1303	ifp = sc->ste_ifp;
1304
1305	ste_stop(sc);
1306
1307	/* Init our MAC address */
1308	for (i = 0; i < ETHER_ADDR_LEN; i++) {
1309		CSR_WRITE_1(sc, STE_PAR0 + i, IF_LLADDR(sc->ste_ifp)[i]);
1310	}
1311
1312	/* Init RX list */
1313	if (ste_init_rx_list(sc) == ENOBUFS) {
1314		device_printf(sc->ste_dev,
1315		    "initialization failed: no memory for RX buffers\n");
1316		ste_stop(sc);
1317		return;
1318	}
1319
1320	/* Set RX polling interval */
1321	CSR_WRITE_1(sc, STE_RX_DMAPOLL_PERIOD, 64);
1322
1323	/* Init TX descriptors */
1324	ste_init_tx_list(sc);
1325
1326	/* Set the TX freethresh value */
1327	CSR_WRITE_1(sc, STE_TX_DMABURST_THRESH, STE_PACKET_SIZE >> 8);
1328
1329	/* Set the TX start threshold for best performance. */
1330	CSR_WRITE_2(sc, STE_TX_STARTTHRESH, sc->ste_tx_thresh);
1331
1332	/* Set the TX reclaim threshold. */
1333	CSR_WRITE_1(sc, STE_TX_RECLAIM_THRESH, (STE_PACKET_SIZE >> 4));
1334
1335	/* Set up the RX filter. */
1336	CSR_WRITE_1(sc, STE_RX_MODE, STE_RXMODE_UNICAST);
1337
1338	/* If we want promiscuous mode, set the allframes bit. */
1339	if (ifp->if_flags & IFF_PROMISC) {
1340		STE_SETBIT1(sc, STE_RX_MODE, STE_RXMODE_PROMISC);
1341	} else {
1342		STE_CLRBIT1(sc, STE_RX_MODE, STE_RXMODE_PROMISC);
1343	}
1344
1345	/* Set capture broadcast bit to accept broadcast frames. */
1346	if (ifp->if_flags & IFF_BROADCAST) {
1347		STE_SETBIT1(sc, STE_RX_MODE, STE_RXMODE_BROADCAST);
1348	} else {
1349		STE_CLRBIT1(sc, STE_RX_MODE, STE_RXMODE_BROADCAST);
1350	}
1351
1352	ste_setmulti(sc);
1353
1354	/* Load the address of the RX list. */
1355	STE_SETBIT4(sc, STE_DMACTL, STE_DMACTL_RXDMA_STALL);
1356	ste_wait(sc);
1357	CSR_WRITE_4(sc, STE_RX_DMALIST_PTR,
1358	    vtophys(&sc->ste_ldata->ste_rx_list[0]));
1359	STE_SETBIT4(sc, STE_DMACTL, STE_DMACTL_RXDMA_UNSTALL);
1360	STE_SETBIT4(sc, STE_DMACTL, STE_DMACTL_RXDMA_UNSTALL);
1361
1362	/* Set TX polling interval (defer until we TX first packet */
1363	CSR_WRITE_1(sc, STE_TX_DMAPOLL_PERIOD, 0);
1364
1365	/* Load address of the TX list */
1366	STE_SETBIT4(sc, STE_DMACTL, STE_DMACTL_TXDMA_STALL);
1367	ste_wait(sc);
1368	CSR_WRITE_4(sc, STE_TX_DMALIST_PTR, 0);
1369	STE_SETBIT4(sc, STE_DMACTL, STE_DMACTL_TXDMA_UNSTALL);
1370	STE_SETBIT4(sc, STE_DMACTL, STE_DMACTL_TXDMA_UNSTALL);
1371	ste_wait(sc);
1372	sc->ste_tx_prev = NULL;
1373
1374	/* Enable receiver and transmitter */
1375	CSR_WRITE_2(sc, STE_MACCTL0, 0);
1376	CSR_WRITE_2(sc, STE_MACCTL1, 0);
1377	STE_SETBIT2(sc, STE_MACCTL1, STE_MACCTL1_TX_ENABLE);
1378	STE_SETBIT2(sc, STE_MACCTL1, STE_MACCTL1_RX_ENABLE);
1379
1380	/* Enable stats counters. */
1381	STE_SETBIT2(sc, STE_MACCTL1, STE_MACCTL1_STATS_ENABLE);
1382
1383	CSR_WRITE_2(sc, STE_ISR, 0xFFFF);
1384#ifdef DEVICE_POLLING
1385	/* Disable interrupts if we are polling. */
1386	if (ifp->if_capenable & IFCAP_POLLING)
1387		CSR_WRITE_2(sc, STE_IMR, 0);
1388	else
1389#endif
1390	/* Enable interrupts. */
1391	CSR_WRITE_2(sc, STE_IMR, STE_INTRS);
1392
1393	/* Accept VLAN length packets */
1394	CSR_WRITE_2(sc, STE_MAX_FRAMELEN, ETHER_MAX_LEN + ETHER_VLAN_ENCAP_LEN);
1395
1396	ste_ifmedia_upd_locked(ifp);
1397
1398	ifp->if_drv_flags |= IFF_DRV_RUNNING;
1399	ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
1400
1401	callout_reset(&sc->ste_stat_callout, hz, ste_stats_update, sc);
1402
1403	return;
1404}
1405
1406static void
1407ste_stop(sc)
1408	struct ste_softc	*sc;
1409{
1410	int			i;
1411	struct ifnet		*ifp;
1412
1413	STE_LOCK_ASSERT(sc);
1414	ifp = sc->ste_ifp;
1415
1416	callout_stop(&sc->ste_stat_callout);
1417	ifp->if_drv_flags &= ~(IFF_DRV_RUNNING|IFF_DRV_OACTIVE);
1418
1419	CSR_WRITE_2(sc, STE_IMR, 0);
1420	STE_SETBIT2(sc, STE_MACCTL1, STE_MACCTL1_TX_DISABLE);
1421	STE_SETBIT2(sc, STE_MACCTL1, STE_MACCTL1_RX_DISABLE);
1422	STE_SETBIT2(sc, STE_MACCTL1, STE_MACCTL1_STATS_DISABLE);
1423	STE_SETBIT2(sc, STE_DMACTL, STE_DMACTL_TXDMA_STALL);
1424	STE_SETBIT2(sc, STE_DMACTL, STE_DMACTL_RXDMA_STALL);
1425	ste_wait(sc);
1426	/*
1427	 * Try really hard to stop the RX engine or under heavy RX
1428	 * data chip will write into de-allocated memory.
1429	 */
1430	ste_reset(sc);
1431
1432	sc->ste_link = 0;
1433
1434	for (i = 0; i < STE_RX_LIST_CNT; i++) {
1435		if (sc->ste_cdata.ste_rx_chain[i].ste_mbuf != NULL) {
1436			m_freem(sc->ste_cdata.ste_rx_chain[i].ste_mbuf);
1437			sc->ste_cdata.ste_rx_chain[i].ste_mbuf = NULL;
1438		}
1439	}
1440
1441	for (i = 0; i < STE_TX_LIST_CNT; i++) {
1442		if (sc->ste_cdata.ste_tx_chain[i].ste_mbuf != NULL) {
1443			m_freem(sc->ste_cdata.ste_tx_chain[i].ste_mbuf);
1444			sc->ste_cdata.ste_tx_chain[i].ste_mbuf = NULL;
1445		}
1446	}
1447
1448	bzero(sc->ste_ldata, sizeof(struct ste_list_data));
1449
1450	return;
1451}
1452
1453static void
1454ste_reset(sc)
1455	struct ste_softc	*sc;
1456{
1457	int			i;
1458
1459	STE_SETBIT4(sc, STE_ASICCTL,
1460	    STE_ASICCTL_GLOBAL_RESET|STE_ASICCTL_RX_RESET|
1461	    STE_ASICCTL_TX_RESET|STE_ASICCTL_DMA_RESET|
1462	    STE_ASICCTL_FIFO_RESET|STE_ASICCTL_NETWORK_RESET|
1463	    STE_ASICCTL_AUTOINIT_RESET|STE_ASICCTL_HOST_RESET|
1464	    STE_ASICCTL_EXTRESET_RESET);
1465
1466	DELAY(100000);
1467
1468	for (i = 0; i < STE_TIMEOUT; i++) {
1469		if (!(CSR_READ_4(sc, STE_ASICCTL) & STE_ASICCTL_RESET_BUSY))
1470			break;
1471	}
1472
1473	if (i == STE_TIMEOUT)
1474		device_printf(sc->ste_dev, "global reset never completed\n");
1475
1476	return;
1477}
1478
1479static int
1480ste_ioctl(ifp, command, data)
1481	struct ifnet		*ifp;
1482	u_long			command;
1483	caddr_t			data;
1484{
1485	struct ste_softc	*sc;
1486	struct ifreq		*ifr;
1487	struct mii_data		*mii;
1488	int			error = 0;
1489
1490	sc = ifp->if_softc;
1491	ifr = (struct ifreq *)data;
1492
1493	switch(command) {
1494	case SIOCSIFFLAGS:
1495		STE_LOCK(sc);
1496		if (ifp->if_flags & IFF_UP) {
1497			if (ifp->if_drv_flags & IFF_DRV_RUNNING &&
1498			    ifp->if_flags & IFF_PROMISC &&
1499			    !(sc->ste_if_flags & IFF_PROMISC)) {
1500				STE_SETBIT1(sc, STE_RX_MODE,
1501				    STE_RXMODE_PROMISC);
1502			} else if (ifp->if_drv_flags & IFF_DRV_RUNNING &&
1503			    !(ifp->if_flags & IFF_PROMISC) &&
1504			    sc->ste_if_flags & IFF_PROMISC) {
1505				STE_CLRBIT1(sc, STE_RX_MODE,
1506				    STE_RXMODE_PROMISC);
1507			}
1508			if (ifp->if_drv_flags & IFF_DRV_RUNNING &&
1509			    (ifp->if_flags ^ sc->ste_if_flags) & IFF_ALLMULTI)
1510				ste_setmulti(sc);
1511			if (!(ifp->if_drv_flags & IFF_DRV_RUNNING)) {
1512				sc->ste_tx_thresh = STE_TXSTART_THRESH;
1513				ste_init_locked(sc);
1514			}
1515		} else {
1516			if (ifp->if_drv_flags & IFF_DRV_RUNNING)
1517				ste_stop(sc);
1518		}
1519		sc->ste_if_flags = ifp->if_flags;
1520		STE_UNLOCK(sc);
1521		error = 0;
1522		break;
1523	case SIOCADDMULTI:
1524	case SIOCDELMULTI:
1525		STE_LOCK(sc);
1526		ste_setmulti(sc);
1527		STE_UNLOCK(sc);
1528		error = 0;
1529		break;
1530	case SIOCGIFMEDIA:
1531	case SIOCSIFMEDIA:
1532		mii = device_get_softc(sc->ste_miibus);
1533		error = ifmedia_ioctl(ifp, ifr, &mii->mii_media, command);
1534		break;
1535	case SIOCSIFCAP:
1536#ifdef DEVICE_POLLING
1537		if (ifr->ifr_reqcap & IFCAP_POLLING &&
1538		    !(ifp->if_capenable & IFCAP_POLLING)) {
1539			error = ether_poll_register(ste_poll, ifp);
1540			if (error)
1541				return(error);
1542			STE_LOCK(sc);
1543			/* Disable interrupts */
1544			CSR_WRITE_2(sc, STE_IMR, 0);
1545			ifp->if_capenable |= IFCAP_POLLING;
1546			STE_UNLOCK(sc);
1547			return (error);
1548
1549		}
1550		if (!(ifr->ifr_reqcap & IFCAP_POLLING) &&
1551		    ifp->if_capenable & IFCAP_POLLING) {
1552			error = ether_poll_deregister(ifp);
1553			/* Enable interrupts. */
1554			STE_LOCK(sc);
1555			CSR_WRITE_2(sc, STE_IMR, STE_INTRS);
1556			ifp->if_capenable &= ~IFCAP_POLLING;
1557			STE_UNLOCK(sc);
1558			return (error);
1559		}
1560#endif /* DEVICE_POLLING */
1561		break;
1562	default:
1563		error = ether_ioctl(ifp, command, data);
1564		break;
1565	}
1566
1567	return(error);
1568}
1569
1570static int
1571ste_encap(sc, c, m_head)
1572	struct ste_softc	*sc;
1573	struct ste_chain	*c;
1574	struct mbuf		*m_head;
1575{
1576	int			frag = 0;
1577	struct ste_frag		*f = NULL;
1578	struct mbuf		*m;
1579	struct ste_desc		*d;
1580
1581	d = c->ste_ptr;
1582	d->ste_ctl = 0;
1583
1584encap_retry:
1585	for (m = m_head, frag = 0; m != NULL; m = m->m_next) {
1586		if (m->m_len != 0) {
1587			if (frag == STE_MAXFRAGS)
1588				break;
1589			f = &d->ste_frags[frag];
1590			f->ste_addr = vtophys(mtod(m, vm_offset_t));
1591			f->ste_len = m->m_len;
1592			frag++;
1593		}
1594	}
1595
1596	if (m != NULL) {
1597		struct mbuf *mn;
1598
1599		/*
1600		 * We ran out of segments. We have to recopy this
1601		 * mbuf chain first. Bail out if we can't get the
1602		 * new buffers.
1603		 */
1604		mn = m_defrag(m_head, M_DONTWAIT);
1605		if (mn == NULL) {
1606			m_freem(m_head);
1607			return ENOMEM;
1608		}
1609		m_head = mn;
1610		goto encap_retry;
1611	}
1612
1613	c->ste_mbuf = m_head;
1614	d->ste_frags[frag - 1].ste_len |= STE_FRAG_LAST;
1615	d->ste_ctl = 1;
1616
1617	return(0);
1618}
1619
1620static void
1621ste_start(ifp)
1622	struct ifnet		*ifp;
1623{
1624	struct ste_softc	*sc;
1625
1626	sc = ifp->if_softc;
1627	STE_LOCK(sc);
1628	ste_start_locked(ifp);
1629	STE_UNLOCK(sc);
1630}
1631
1632static void
1633ste_start_locked(ifp)
1634	struct ifnet		*ifp;
1635{
1636	struct ste_softc	*sc;
1637	struct mbuf		*m_head = NULL;
1638	struct ste_chain	*cur_tx;
1639	int			idx;
1640
1641	sc = ifp->if_softc;
1642	STE_LOCK_ASSERT(sc);
1643
1644	if (!sc->ste_link)
1645		return;
1646
1647	if (ifp->if_drv_flags & IFF_DRV_OACTIVE)
1648		return;
1649
1650	idx = sc->ste_cdata.ste_tx_prod;
1651
1652	while(sc->ste_cdata.ste_tx_chain[idx].ste_mbuf == NULL) {
1653		/*
1654		 * We cannot re-use the last (free) descriptor;
1655		 * the chip may not have read its ste_next yet.
1656		 */
1657		if (STE_NEXT(idx, STE_TX_LIST_CNT) ==
1658		    sc->ste_cdata.ste_tx_cons) {
1659			ifp->if_drv_flags |= IFF_DRV_OACTIVE;
1660			break;
1661		}
1662
1663		IFQ_DRV_DEQUEUE(&ifp->if_snd, m_head);
1664		if (m_head == NULL)
1665			break;
1666
1667		cur_tx = &sc->ste_cdata.ste_tx_chain[idx];
1668
1669		if (ste_encap(sc, cur_tx, m_head) != 0)
1670			break;
1671
1672		cur_tx->ste_ptr->ste_next = 0;
1673
1674		if (sc->ste_tx_prev == NULL) {
1675			cur_tx->ste_ptr->ste_ctl = STE_TXCTL_DMAINTR | 1;
1676			/* Load address of the TX list */
1677			STE_SETBIT4(sc, STE_DMACTL, STE_DMACTL_TXDMA_STALL);
1678			ste_wait(sc);
1679
1680			CSR_WRITE_4(sc, STE_TX_DMALIST_PTR,
1681			    vtophys(&sc->ste_ldata->ste_tx_list[0]));
1682
1683			/* Set TX polling interval to start TX engine */
1684			CSR_WRITE_1(sc, STE_TX_DMAPOLL_PERIOD, 64);
1685
1686			STE_SETBIT4(sc, STE_DMACTL, STE_DMACTL_TXDMA_UNSTALL);
1687			ste_wait(sc);
1688		}else{
1689			cur_tx->ste_ptr->ste_ctl = STE_TXCTL_DMAINTR | 1;
1690			sc->ste_tx_prev->ste_ptr->ste_next
1691				= cur_tx->ste_phys;
1692		}
1693
1694		sc->ste_tx_prev = cur_tx;
1695
1696		/*
1697		 * If there's a BPF listener, bounce a copy of this frame
1698		 * to him.
1699	 	 */
1700		BPF_MTAP(ifp, cur_tx->ste_mbuf);
1701
1702		STE_INC(idx, STE_TX_LIST_CNT);
1703		ifp->if_timer = 5;
1704	}
1705	sc->ste_cdata.ste_tx_prod = idx;
1706
1707	return;
1708}
1709
1710static void
1711ste_watchdog(ifp)
1712	struct ifnet		*ifp;
1713{
1714	struct ste_softc	*sc;
1715
1716	sc = ifp->if_softc;
1717	STE_LOCK(sc);
1718
1719	ifp->if_oerrors++;
1720	if_printf(ifp, "watchdog timeout\n");
1721
1722	ste_txeoc(sc);
1723	ste_txeof(sc);
1724	ste_rxeoc(sc);
1725	ste_rxeof(sc);
1726	ste_reset(sc);
1727	ste_init_locked(sc);
1728
1729	if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
1730		ste_start_locked(ifp);
1731	STE_UNLOCK(sc);
1732
1733	return;
1734}
1735
1736static void
1737ste_shutdown(dev)
1738	device_t		dev;
1739{
1740	struct ste_softc	*sc;
1741
1742	sc = device_get_softc(dev);
1743
1744	STE_LOCK(sc);
1745	ste_stop(sc);
1746	STE_UNLOCK(sc);
1747
1748	return;
1749}
1750