if_ste.c revision 151297
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 151297 2005-10-13 21:11:20Z ru $");
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/* "controller miibus0" 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		if_printf(sc->ste_ifp, "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		if_printf(sc->ste_ifp, "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			if_printf(ifp,
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			if_printf(ifp, "transmission error: %x\n", txstat);
870
871			ste_reset(sc);
872			ste_init_locked(sc);
873
874			if (txstat & STE_TXSTATUS_UNDERRUN &&
875			    sc->ste_tx_thresh < STE_PACKET_SIZE) {
876				sc->ste_tx_thresh += STE_MIN_FRAMELEN;
877				if_printf(ifp, "tx underrun, increasing tx"
878				    " start threshold to %d bytes\n",
879				    sc->ste_tx_thresh);
880			}
881			CSR_WRITE_2(sc, STE_TX_STARTTHRESH, sc->ste_tx_thresh);
882			CSR_WRITE_2(sc, STE_TX_RECLAIM_THRESH,
883			    (STE_PACKET_SIZE >> 4));
884		}
885		ste_init_locked(sc);
886		CSR_WRITE_2(sc, STE_TX_STATUS, txstat);
887	}
888
889	return;
890}
891
892static void
893ste_txeof(sc)
894	struct ste_softc	*sc;
895{
896	struct ste_chain	*cur_tx;
897	struct ifnet		*ifp;
898	int			idx;
899
900	ifp = sc->ste_ifp;
901
902	idx = sc->ste_cdata.ste_tx_cons;
903	while(idx != sc->ste_cdata.ste_tx_prod) {
904		cur_tx = &sc->ste_cdata.ste_tx_chain[idx];
905
906		if (!(cur_tx->ste_ptr->ste_ctl & STE_TXCTL_DMADONE))
907			break;
908
909		m_freem(cur_tx->ste_mbuf);
910		cur_tx->ste_mbuf = NULL;
911		ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
912		ifp->if_opackets++;
913
914		STE_INC(idx, STE_TX_LIST_CNT);
915	}
916
917	sc->ste_cdata.ste_tx_cons = idx;
918	if (idx == sc->ste_cdata.ste_tx_prod)
919		ifp->if_timer = 0;
920}
921
922static void
923ste_stats_update(xsc)
924	void			*xsc;
925{
926	struct ste_softc	*sc;
927	struct ifnet		*ifp;
928	struct mii_data		*mii;
929
930	sc = xsc;
931	STE_LOCK_ASSERT(sc);
932
933	ifp = sc->ste_ifp;
934	mii = device_get_softc(sc->ste_miibus);
935
936	ifp->if_collisions += CSR_READ_1(sc, STE_LATE_COLLS)
937	    + CSR_READ_1(sc, STE_MULTI_COLLS)
938	    + CSR_READ_1(sc, STE_SINGLE_COLLS);
939
940	if (!sc->ste_link) {
941		mii_pollstat(mii);
942		if (mii->mii_media_status & IFM_ACTIVE &&
943		    IFM_SUBTYPE(mii->mii_media_active) != IFM_NONE) {
944			sc->ste_link++;
945			/*
946			* we don't get a call-back on re-init so do it
947			* otherwise we get stuck in the wrong link state
948			*/
949			ste_miibus_statchg(sc->ste_dev);
950			if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
951				ste_start_locked(ifp);
952		}
953	}
954
955	callout_reset(&sc->ste_stat_callout, hz, ste_stats_update, sc);
956
957	return;
958}
959
960
961/*
962 * Probe for a Sundance ST201 chip. Check the PCI vendor and device
963 * IDs against our list and return a device name if we find a match.
964 */
965static int
966ste_probe(dev)
967	device_t		dev;
968{
969	struct ste_type		*t;
970
971	t = ste_devs;
972
973	while(t->ste_name != NULL) {
974		if ((pci_get_vendor(dev) == t->ste_vid) &&
975		    (pci_get_device(dev) == t->ste_did)) {
976			device_set_desc(dev, t->ste_name);
977			return (BUS_PROBE_DEFAULT);
978		}
979		t++;
980	}
981
982	return(ENXIO);
983}
984
985/*
986 * Attach the interface. Allocate softc structures, do ifmedia
987 * setup and ethernet/BPF attach.
988 */
989static int
990ste_attach(dev)
991	device_t		dev;
992{
993	struct ste_softc	*sc;
994	struct ifnet		*ifp;
995	int			error = 0, rid;
996	u_char			eaddr[6];
997
998	sc = device_get_softc(dev);
999	sc->ste_dev = dev;
1000
1001	/*
1002	 * Only use one PHY since this chip reports multiple
1003	 * Note on the DFE-550 the PHY is at 1 on the DFE-580
1004	 * it is at 0 & 1.  It is rev 0x12.
1005	 */
1006	if (pci_get_vendor(dev) == DL_VENDORID &&
1007	    pci_get_device(dev) == DL_DEVICEID_DL10050 &&
1008	    pci_get_revid(dev) == 0x12 )
1009		sc->ste_one_phy = 1;
1010
1011	mtx_init(&sc->ste_mtx, device_get_nameunit(dev), MTX_NETWORK_LOCK,
1012	    MTX_DEF);
1013	/*
1014	 * Map control/status registers.
1015	 */
1016	pci_enable_busmaster(dev);
1017
1018	rid = STE_RID;
1019	sc->ste_res = bus_alloc_resource_any(dev, STE_RES, &rid, RF_ACTIVE);
1020
1021	if (sc->ste_res == NULL) {
1022		device_printf(dev, "couldn't map ports/memory\n");
1023		error = ENXIO;
1024		goto fail;
1025	}
1026
1027	sc->ste_btag = rman_get_bustag(sc->ste_res);
1028	sc->ste_bhandle = rman_get_bushandle(sc->ste_res);
1029
1030	/* Allocate interrupt */
1031	rid = 0;
1032	sc->ste_irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
1033	    RF_SHAREABLE | RF_ACTIVE);
1034
1035	if (sc->ste_irq == NULL) {
1036		device_printf(dev, "couldn't map interrupt\n");
1037		error = ENXIO;
1038		goto fail;
1039	}
1040
1041	callout_init_mtx(&sc->ste_stat_callout, &sc->ste_mtx, 0);
1042
1043	/* Reset the adapter. */
1044	ste_reset(sc);
1045
1046	/*
1047	 * Get station address from the EEPROM.
1048	 */
1049	if (ste_read_eeprom(sc, eaddr,
1050	    STE_EEADDR_NODE0, 3, 0)) {
1051		device_printf(dev, "failed to read station address\n");
1052		error = ENXIO;;
1053		goto fail;
1054	}
1055
1056	/* Allocate the descriptor queues. */
1057	sc->ste_ldata = contigmalloc(sizeof(struct ste_list_data), M_DEVBUF,
1058	    M_NOWAIT, 0, 0xffffffff, PAGE_SIZE, 0);
1059
1060	if (sc->ste_ldata == NULL) {
1061		device_printf(dev, "no memory for list buffers!\n");
1062		error = ENXIO;
1063		goto fail;
1064	}
1065
1066	bzero(sc->ste_ldata, sizeof(struct ste_list_data));
1067
1068	ifp = sc->ste_ifp = if_alloc(IFT_ETHER);
1069	if (ifp == NULL) {
1070		device_printf(dev, "can not if_alloc()\n");
1071		error = ENOSPC;
1072		goto fail;
1073	}
1074
1075	/* Do MII setup. */
1076	if (mii_phy_probe(dev, &sc->ste_miibus,
1077	    ste_ifmedia_upd, ste_ifmedia_sts)) {
1078		device_printf(dev, "MII without any phy!\n");
1079		error = ENXIO;
1080		goto fail;
1081	}
1082
1083	ifp->if_softc = sc;
1084	if_initname(ifp, device_get_name(dev), device_get_unit(dev));
1085	ifp->if_mtu = ETHERMTU;
1086	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
1087	ifp->if_ioctl = ste_ioctl;
1088	ifp->if_start = ste_start;
1089	ifp->if_watchdog = ste_watchdog;
1090	ifp->if_init = ste_init;
1091	ifp->if_baudrate = 10000000;
1092	IFQ_SET_MAXLEN(&ifp->if_snd, STE_TX_LIST_CNT - 1);
1093	ifp->if_snd.ifq_drv_maxlen = STE_TX_LIST_CNT - 1;
1094	IFQ_SET_READY(&ifp->if_snd);
1095
1096	sc->ste_tx_thresh = STE_TXSTART_THRESH;
1097
1098	/*
1099	 * Call MI attach routine.
1100	 */
1101	ether_ifattach(ifp, eaddr);
1102
1103	/*
1104	 * Tell the upper layer(s) we support long frames.
1105	 */
1106	ifp->if_data.ifi_hdrlen = sizeof(struct ether_vlan_header);
1107	ifp->if_capabilities |= IFCAP_VLAN_MTU;
1108	ifp->if_capenable = ifp->if_capabilities;
1109#ifdef DEVICE_POLLING
1110	ifp->if_capabilities |= IFCAP_POLLING;
1111#endif
1112
1113	/* Hook interrupt last to avoid having to lock softc */
1114	error = bus_setup_intr(dev, sc->ste_irq, INTR_TYPE_NET | INTR_MPSAFE,
1115	    ste_intr, sc, &sc->ste_intrhand);
1116
1117	if (error) {
1118		device_printf(dev, "couldn't set up irq\n");
1119		ether_ifdetach(ifp);
1120		goto fail;
1121	}
1122
1123fail:
1124	if (error)
1125		ste_detach(dev);
1126
1127	return(error);
1128}
1129
1130/*
1131 * Shutdown hardware and free up resources. This can be called any
1132 * time after the mutex has been initialized. It is called in both
1133 * the error case in attach and the normal detach case so it needs
1134 * to be careful about only freeing resources that have actually been
1135 * allocated.
1136 */
1137static int
1138ste_detach(dev)
1139	device_t		dev;
1140{
1141	struct ste_softc	*sc;
1142	struct ifnet		*ifp;
1143
1144	sc = device_get_softc(dev);
1145	KASSERT(mtx_initialized(&sc->ste_mtx), ("ste mutex not initialized"));
1146	ifp = sc->ste_ifp;
1147
1148#ifdef DEVICE_POLLING
1149	if (ifp->if_capenable & IFCAP_POLLING)
1150		ether_poll_deregister(ifp);
1151#endif
1152
1153	/* These should only be active if attach succeeded */
1154	if (device_is_attached(dev)) {
1155		STE_LOCK(sc);
1156		ste_stop(sc);
1157		STE_UNLOCK(sc);
1158		callout_drain(&sc->ste_stat_callout);
1159		ether_ifdetach(ifp);
1160	}
1161	if (sc->ste_miibus)
1162		device_delete_child(dev, sc->ste_miibus);
1163	bus_generic_detach(dev);
1164
1165	if (sc->ste_intrhand)
1166		bus_teardown_intr(dev, sc->ste_irq, sc->ste_intrhand);
1167	if (sc->ste_irq)
1168		bus_release_resource(dev, SYS_RES_IRQ, 0, sc->ste_irq);
1169	if (sc->ste_res)
1170		bus_release_resource(dev, STE_RES, STE_RID, sc->ste_res);
1171
1172	if (ifp)
1173		if_free(ifp);
1174
1175	if (sc->ste_ldata) {
1176		contigfree(sc->ste_ldata, sizeof(struct ste_list_data),
1177		    M_DEVBUF);
1178	}
1179
1180	mtx_destroy(&sc->ste_mtx);
1181
1182	return(0);
1183}
1184
1185static int
1186ste_newbuf(sc, c, m)
1187	struct ste_softc	*sc;
1188	struct ste_chain_onefrag	*c;
1189	struct mbuf		*m;
1190{
1191	struct mbuf		*m_new = NULL;
1192
1193	if (m == NULL) {
1194		MGETHDR(m_new, M_DONTWAIT, MT_DATA);
1195		if (m_new == NULL)
1196			return(ENOBUFS);
1197		MCLGET(m_new, M_DONTWAIT);
1198		if (!(m_new->m_flags & M_EXT)) {
1199			m_freem(m_new);
1200			return(ENOBUFS);
1201		}
1202		m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
1203	} else {
1204		m_new = m;
1205		m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
1206		m_new->m_data = m_new->m_ext.ext_buf;
1207	}
1208
1209	m_adj(m_new, ETHER_ALIGN);
1210
1211	c->ste_mbuf = m_new;
1212	c->ste_ptr->ste_status = 0;
1213	c->ste_ptr->ste_frag.ste_addr = vtophys(mtod(m_new, caddr_t));
1214	c->ste_ptr->ste_frag.ste_len = (1536 + ETHER_VLAN_ENCAP_LEN) | STE_FRAG_LAST;
1215
1216	return(0);
1217}
1218
1219static int
1220ste_init_rx_list(sc)
1221	struct ste_softc	*sc;
1222{
1223	struct ste_chain_data	*cd;
1224	struct ste_list_data	*ld;
1225	int			i;
1226
1227	cd = &sc->ste_cdata;
1228	ld = sc->ste_ldata;
1229
1230	for (i = 0; i < STE_RX_LIST_CNT; i++) {
1231		cd->ste_rx_chain[i].ste_ptr = &ld->ste_rx_list[i];
1232		if (ste_newbuf(sc, &cd->ste_rx_chain[i], NULL) == ENOBUFS)
1233			return(ENOBUFS);
1234		if (i == (STE_RX_LIST_CNT - 1)) {
1235			cd->ste_rx_chain[i].ste_next =
1236			    &cd->ste_rx_chain[0];
1237			ld->ste_rx_list[i].ste_next =
1238			    vtophys(&ld->ste_rx_list[0]);
1239		} else {
1240			cd->ste_rx_chain[i].ste_next =
1241			    &cd->ste_rx_chain[i + 1];
1242			ld->ste_rx_list[i].ste_next =
1243			    vtophys(&ld->ste_rx_list[i + 1]);
1244		}
1245		ld->ste_rx_list[i].ste_status = 0;
1246	}
1247
1248	cd->ste_rx_head = &cd->ste_rx_chain[0];
1249
1250	return(0);
1251}
1252
1253static void
1254ste_init_tx_list(sc)
1255	struct ste_softc	*sc;
1256{
1257	struct ste_chain_data	*cd;
1258	struct ste_list_data	*ld;
1259	int			i;
1260
1261	cd = &sc->ste_cdata;
1262	ld = sc->ste_ldata;
1263	for (i = 0; i < STE_TX_LIST_CNT; i++) {
1264		cd->ste_tx_chain[i].ste_ptr = &ld->ste_tx_list[i];
1265		cd->ste_tx_chain[i].ste_ptr->ste_next = 0;
1266		cd->ste_tx_chain[i].ste_ptr->ste_ctl  = 0;
1267		cd->ste_tx_chain[i].ste_phys = vtophys(&ld->ste_tx_list[i]);
1268		if (i == (STE_TX_LIST_CNT - 1))
1269			cd->ste_tx_chain[i].ste_next =
1270			    &cd->ste_tx_chain[0];
1271		else
1272			cd->ste_tx_chain[i].ste_next =
1273			    &cd->ste_tx_chain[i + 1];
1274	}
1275
1276	cd->ste_tx_prod = 0;
1277	cd->ste_tx_cons = 0;
1278
1279	return;
1280}
1281
1282static void
1283ste_init(xsc)
1284	void			*xsc;
1285{
1286	struct ste_softc	*sc;
1287
1288	sc = xsc;
1289	STE_LOCK(sc);
1290	ste_init_locked(sc);
1291	STE_UNLOCK(sc);
1292}
1293
1294static void
1295ste_init_locked(sc)
1296	struct ste_softc	*sc;
1297{
1298	int			i;
1299	struct ifnet		*ifp;
1300
1301	STE_LOCK_ASSERT(sc);
1302	ifp = sc->ste_ifp;
1303
1304	ste_stop(sc);
1305
1306	/* Init our MAC address */
1307	for (i = 0; i < ETHER_ADDR_LEN; i++) {
1308		CSR_WRITE_1(sc, STE_PAR0 + i, IFP2ENADDR(sc->ste_ifp)[i]);
1309	}
1310
1311	/* Init RX list */
1312	if (ste_init_rx_list(sc) == ENOBUFS) {
1313		if_printf(ifp,
1314		    "initialization failed: no memory for RX buffers\n");
1315		ste_stop(sc);
1316		return;
1317	}
1318
1319	/* Set RX polling interval */
1320	CSR_WRITE_1(sc, STE_RX_DMAPOLL_PERIOD, 64);
1321
1322	/* Init TX descriptors */
1323	ste_init_tx_list(sc);
1324
1325	/* Set the TX freethresh value */
1326	CSR_WRITE_1(sc, STE_TX_DMABURST_THRESH, STE_PACKET_SIZE >> 8);
1327
1328	/* Set the TX start threshold for best performance. */
1329	CSR_WRITE_2(sc, STE_TX_STARTTHRESH, sc->ste_tx_thresh);
1330
1331	/* Set the TX reclaim threshold. */
1332	CSR_WRITE_1(sc, STE_TX_RECLAIM_THRESH, (STE_PACKET_SIZE >> 4));
1333
1334	/* Set up the RX filter. */
1335	CSR_WRITE_1(sc, STE_RX_MODE, STE_RXMODE_UNICAST);
1336
1337	/* If we want promiscuous mode, set the allframes bit. */
1338	if (ifp->if_flags & IFF_PROMISC) {
1339		STE_SETBIT1(sc, STE_RX_MODE, STE_RXMODE_PROMISC);
1340	} else {
1341		STE_CLRBIT1(sc, STE_RX_MODE, STE_RXMODE_PROMISC);
1342	}
1343
1344	/* Set capture broadcast bit to accept broadcast frames. */
1345	if (ifp->if_flags & IFF_BROADCAST) {
1346		STE_SETBIT1(sc, STE_RX_MODE, STE_RXMODE_BROADCAST);
1347	} else {
1348		STE_CLRBIT1(sc, STE_RX_MODE, STE_RXMODE_BROADCAST);
1349	}
1350
1351	ste_setmulti(sc);
1352
1353	/* Load the address of the RX list. */
1354	STE_SETBIT4(sc, STE_DMACTL, STE_DMACTL_RXDMA_STALL);
1355	ste_wait(sc);
1356	CSR_WRITE_4(sc, STE_RX_DMALIST_PTR,
1357	    vtophys(&sc->ste_ldata->ste_rx_list[0]));
1358	STE_SETBIT4(sc, STE_DMACTL, STE_DMACTL_RXDMA_UNSTALL);
1359	STE_SETBIT4(sc, STE_DMACTL, STE_DMACTL_RXDMA_UNSTALL);
1360
1361	/* Set TX polling interval (defer until we TX first packet */
1362	CSR_WRITE_1(sc, STE_TX_DMAPOLL_PERIOD, 0);
1363
1364	/* Load address of the TX list */
1365	STE_SETBIT4(sc, STE_DMACTL, STE_DMACTL_TXDMA_STALL);
1366	ste_wait(sc);
1367	CSR_WRITE_4(sc, STE_TX_DMALIST_PTR, 0);
1368	STE_SETBIT4(sc, STE_DMACTL, STE_DMACTL_TXDMA_UNSTALL);
1369	STE_SETBIT4(sc, STE_DMACTL, STE_DMACTL_TXDMA_UNSTALL);
1370	ste_wait(sc);
1371	sc->ste_tx_prev = NULL;
1372
1373	/* Enable receiver and transmitter */
1374	CSR_WRITE_2(sc, STE_MACCTL0, 0);
1375	CSR_WRITE_2(sc, STE_MACCTL1, 0);
1376	STE_SETBIT2(sc, STE_MACCTL1, STE_MACCTL1_TX_ENABLE);
1377	STE_SETBIT2(sc, STE_MACCTL1, STE_MACCTL1_RX_ENABLE);
1378
1379	/* Enable stats counters. */
1380	STE_SETBIT2(sc, STE_MACCTL1, STE_MACCTL1_STATS_ENABLE);
1381
1382	CSR_WRITE_2(sc, STE_ISR, 0xFFFF);
1383#ifdef DEVICE_POLLING
1384	/* Disable interrupts if we are polling. */
1385	if (ifp->if_capenable & IFCAP_POLLING)
1386		CSR_WRITE_2(sc, STE_IMR, 0);
1387	else
1388#endif
1389	/* Enable interrupts. */
1390	CSR_WRITE_2(sc, STE_IMR, STE_INTRS);
1391
1392	/* Accept VLAN length packets */
1393	CSR_WRITE_2(sc, STE_MAX_FRAMELEN, ETHER_MAX_LEN + ETHER_VLAN_ENCAP_LEN);
1394
1395	ste_ifmedia_upd_locked(ifp);
1396
1397	ifp->if_drv_flags |= IFF_DRV_RUNNING;
1398	ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
1399
1400	callout_reset(&sc->ste_stat_callout, hz, ste_stats_update, sc);
1401
1402	return;
1403}
1404
1405static void
1406ste_stop(sc)
1407	struct ste_softc	*sc;
1408{
1409	int			i;
1410	struct ifnet		*ifp;
1411
1412	STE_LOCK_ASSERT(sc);
1413	ifp = sc->ste_ifp;
1414
1415	callout_stop(&sc->ste_stat_callout);
1416	ifp->if_drv_flags &= ~(IFF_DRV_RUNNING|IFF_DRV_OACTIVE);
1417
1418	CSR_WRITE_2(sc, STE_IMR, 0);
1419	STE_SETBIT2(sc, STE_MACCTL1, STE_MACCTL1_TX_DISABLE);
1420	STE_SETBIT2(sc, STE_MACCTL1, STE_MACCTL1_RX_DISABLE);
1421	STE_SETBIT2(sc, STE_MACCTL1, STE_MACCTL1_STATS_DISABLE);
1422	STE_SETBIT2(sc, STE_DMACTL, STE_DMACTL_TXDMA_STALL);
1423	STE_SETBIT2(sc, STE_DMACTL, STE_DMACTL_RXDMA_STALL);
1424	ste_wait(sc);
1425	/*
1426	 * Try really hard to stop the RX engine or under heavy RX
1427	 * data chip will write into de-allocated memory.
1428	 */
1429	ste_reset(sc);
1430
1431	sc->ste_link = 0;
1432
1433	for (i = 0; i < STE_RX_LIST_CNT; i++) {
1434		if (sc->ste_cdata.ste_rx_chain[i].ste_mbuf != NULL) {
1435			m_freem(sc->ste_cdata.ste_rx_chain[i].ste_mbuf);
1436			sc->ste_cdata.ste_rx_chain[i].ste_mbuf = NULL;
1437		}
1438	}
1439
1440	for (i = 0; i < STE_TX_LIST_CNT; i++) {
1441		if (sc->ste_cdata.ste_tx_chain[i].ste_mbuf != NULL) {
1442			m_freem(sc->ste_cdata.ste_tx_chain[i].ste_mbuf);
1443			sc->ste_cdata.ste_tx_chain[i].ste_mbuf = NULL;
1444		}
1445	}
1446
1447	bzero(sc->ste_ldata, sizeof(struct ste_list_data));
1448
1449	return;
1450}
1451
1452static void
1453ste_reset(sc)
1454	struct ste_softc	*sc;
1455{
1456	int			i;
1457
1458	STE_SETBIT4(sc, STE_ASICCTL,
1459	    STE_ASICCTL_GLOBAL_RESET|STE_ASICCTL_RX_RESET|
1460	    STE_ASICCTL_TX_RESET|STE_ASICCTL_DMA_RESET|
1461	    STE_ASICCTL_FIFO_RESET|STE_ASICCTL_NETWORK_RESET|
1462	    STE_ASICCTL_AUTOINIT_RESET|STE_ASICCTL_HOST_RESET|
1463	    STE_ASICCTL_EXTRESET_RESET);
1464
1465	DELAY(100000);
1466
1467	for (i = 0; i < STE_TIMEOUT; i++) {
1468		if (!(CSR_READ_4(sc, STE_ASICCTL) & STE_ASICCTL_RESET_BUSY))
1469			break;
1470	}
1471
1472	if (i == STE_TIMEOUT)
1473		if_printf(sc->ste_ifp, "global reset never completed\n");
1474
1475	return;
1476}
1477
1478static int
1479ste_ioctl(ifp, command, data)
1480	struct ifnet		*ifp;
1481	u_long			command;
1482	caddr_t			data;
1483{
1484	struct ste_softc	*sc;
1485	struct ifreq		*ifr;
1486	struct mii_data		*mii;
1487	int			error = 0;
1488
1489	sc = ifp->if_softc;
1490	ifr = (struct ifreq *)data;
1491
1492	switch(command) {
1493	case SIOCSIFFLAGS:
1494		STE_LOCK(sc);
1495		if (ifp->if_flags & IFF_UP) {
1496			if (ifp->if_drv_flags & IFF_DRV_RUNNING &&
1497			    ifp->if_flags & IFF_PROMISC &&
1498			    !(sc->ste_if_flags & IFF_PROMISC)) {
1499				STE_SETBIT1(sc, STE_RX_MODE,
1500				    STE_RXMODE_PROMISC);
1501			} else if (ifp->if_drv_flags & IFF_DRV_RUNNING &&
1502			    !(ifp->if_flags & IFF_PROMISC) &&
1503			    sc->ste_if_flags & IFF_PROMISC) {
1504				STE_CLRBIT1(sc, STE_RX_MODE,
1505				    STE_RXMODE_PROMISC);
1506			}
1507			if (ifp->if_drv_flags & IFF_DRV_RUNNING &&
1508			    (ifp->if_flags ^ sc->ste_if_flags) & IFF_ALLMULTI)
1509				ste_setmulti(sc);
1510			if (!(ifp->if_drv_flags & IFF_DRV_RUNNING)) {
1511				sc->ste_tx_thresh = STE_TXSTART_THRESH;
1512				ste_init_locked(sc);
1513			}
1514		} else {
1515			if (ifp->if_drv_flags & IFF_DRV_RUNNING)
1516				ste_stop(sc);
1517		}
1518		sc->ste_if_flags = ifp->if_flags;
1519		STE_UNLOCK(sc);
1520		error = 0;
1521		break;
1522	case SIOCADDMULTI:
1523	case SIOCDELMULTI:
1524		STE_LOCK(sc);
1525		ste_setmulti(sc);
1526		STE_UNLOCK(sc);
1527		error = 0;
1528		break;
1529	case SIOCGIFMEDIA:
1530	case SIOCSIFMEDIA:
1531		mii = device_get_softc(sc->ste_miibus);
1532		error = ifmedia_ioctl(ifp, ifr, &mii->mii_media, command);
1533		break;
1534	case SIOCSIFCAP:
1535#ifdef DEVICE_POLLING
1536		if (ifr->ifr_reqcap & IFCAP_POLLING &&
1537		    !(ifp->if_capenable & IFCAP_POLLING)) {
1538			error = ether_poll_register(ste_poll, ifp);
1539			if (error)
1540				return(error);
1541			STE_LOCK(sc);
1542			/* Disable interrupts */
1543			CSR_WRITE_2(sc, STE_IMR, 0);
1544			ifp->if_capenable |= IFCAP_POLLING;
1545			STE_UNLOCK(sc);
1546			return (error);
1547
1548		}
1549		if (!(ifr->ifr_reqcap & IFCAP_POLLING) &&
1550		    ifp->if_capenable & IFCAP_POLLING) {
1551			error = ether_poll_deregister(ifp);
1552			/* Enable interrupts. */
1553			STE_LOCK(sc);
1554			CSR_WRITE_2(sc, STE_IMR, STE_INTRS);
1555			ifp->if_capenable &= ~IFCAP_POLLING;
1556			STE_UNLOCK(sc);
1557			return (error);
1558		}
1559#endif /* DEVICE_POLLING */
1560		break;
1561	default:
1562		error = ether_ioctl(ifp, command, data);
1563		break;
1564	}
1565
1566	return(error);
1567}
1568
1569static int
1570ste_encap(sc, c, m_head)
1571	struct ste_softc	*sc;
1572	struct ste_chain	*c;
1573	struct mbuf		*m_head;
1574{
1575	int			frag = 0;
1576	struct ste_frag		*f = NULL;
1577	struct mbuf		*m;
1578	struct ste_desc		*d;
1579
1580	d = c->ste_ptr;
1581	d->ste_ctl = 0;
1582
1583encap_retry:
1584	for (m = m_head, frag = 0; m != NULL; m = m->m_next) {
1585		if (m->m_len != 0) {
1586			if (frag == STE_MAXFRAGS)
1587				break;
1588			f = &d->ste_frags[frag];
1589			f->ste_addr = vtophys(mtod(m, vm_offset_t));
1590			f->ste_len = m->m_len;
1591			frag++;
1592		}
1593	}
1594
1595	if (m != NULL) {
1596		struct mbuf *mn;
1597
1598		/*
1599		 * We ran out of segments. We have to recopy this
1600		 * mbuf chain first. Bail out if we can't get the
1601		 * new buffers.
1602		 */
1603		mn = m_defrag(m_head, M_DONTWAIT);
1604		if (mn == NULL) {
1605			m_freem(m_head);
1606			return ENOMEM;
1607		}
1608		m_head = mn;
1609		goto encap_retry;
1610	}
1611
1612	c->ste_mbuf = m_head;
1613	d->ste_frags[frag - 1].ste_len |= STE_FRAG_LAST;
1614	d->ste_ctl = 1;
1615
1616	return(0);
1617}
1618
1619static void
1620ste_start(ifp)
1621	struct ifnet		*ifp;
1622{
1623	struct ste_softc	*sc;
1624
1625	sc = ifp->if_softc;
1626	STE_LOCK(sc);
1627	ste_start_locked(ifp);
1628	STE_UNLOCK(sc);
1629}
1630
1631static void
1632ste_start_locked(ifp)
1633	struct ifnet		*ifp;
1634{
1635	struct ste_softc	*sc;
1636	struct mbuf		*m_head = NULL;
1637	struct ste_chain	*cur_tx;
1638	int			idx;
1639
1640	sc = ifp->if_softc;
1641	STE_LOCK_ASSERT(sc);
1642
1643	if (!sc->ste_link)
1644		return;
1645
1646	if (ifp->if_drv_flags & IFF_DRV_OACTIVE)
1647		return;
1648
1649	idx = sc->ste_cdata.ste_tx_prod;
1650
1651	while(sc->ste_cdata.ste_tx_chain[idx].ste_mbuf == NULL) {
1652		/*
1653		 * We cannot re-use the last (free) descriptor;
1654		 * the chip may not have read its ste_next yet.
1655		 */
1656		if (STE_NEXT(idx, STE_TX_LIST_CNT) ==
1657		    sc->ste_cdata.ste_tx_cons) {
1658			ifp->if_drv_flags |= IFF_DRV_OACTIVE;
1659			break;
1660		}
1661
1662		IFQ_DRV_DEQUEUE(&ifp->if_snd, m_head);
1663		if (m_head == NULL)
1664			break;
1665
1666		cur_tx = &sc->ste_cdata.ste_tx_chain[idx];
1667
1668		if (ste_encap(sc, cur_tx, m_head) != 0)
1669			break;
1670
1671		cur_tx->ste_ptr->ste_next = 0;
1672
1673		if (sc->ste_tx_prev == NULL) {
1674			cur_tx->ste_ptr->ste_ctl = STE_TXCTL_DMAINTR | 1;
1675			/* Load address of the TX list */
1676			STE_SETBIT4(sc, STE_DMACTL, STE_DMACTL_TXDMA_STALL);
1677			ste_wait(sc);
1678
1679			CSR_WRITE_4(sc, STE_TX_DMALIST_PTR,
1680			    vtophys(&sc->ste_ldata->ste_tx_list[0]));
1681
1682			/* Set TX polling interval to start TX engine */
1683			CSR_WRITE_1(sc, STE_TX_DMAPOLL_PERIOD, 64);
1684
1685			STE_SETBIT4(sc, STE_DMACTL, STE_DMACTL_TXDMA_UNSTALL);
1686			ste_wait(sc);
1687		}else{
1688			cur_tx->ste_ptr->ste_ctl = STE_TXCTL_DMAINTR | 1;
1689			sc->ste_tx_prev->ste_ptr->ste_next
1690				= cur_tx->ste_phys;
1691		}
1692
1693		sc->ste_tx_prev = cur_tx;
1694
1695		/*
1696		 * If there's a BPF listener, bounce a copy of this frame
1697		 * to him.
1698	 	 */
1699		BPF_MTAP(ifp, cur_tx->ste_mbuf);
1700
1701		STE_INC(idx, STE_TX_LIST_CNT);
1702		ifp->if_timer = 5;
1703	}
1704	sc->ste_cdata.ste_tx_prod = idx;
1705
1706	return;
1707}
1708
1709static void
1710ste_watchdog(ifp)
1711	struct ifnet		*ifp;
1712{
1713	struct ste_softc	*sc;
1714
1715	sc = ifp->if_softc;
1716	STE_LOCK(sc);
1717
1718	ifp->if_oerrors++;
1719	if_printf(ifp, "watchdog timeout\n");
1720
1721	ste_txeoc(sc);
1722	ste_txeof(sc);
1723	ste_rxeoc(sc);
1724	ste_rxeof(sc);
1725	ste_reset(sc);
1726	ste_init_locked(sc);
1727
1728	if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
1729		ste_start_locked(ifp);
1730	STE_UNLOCK(sc);
1731
1732	return;
1733}
1734
1735static void
1736ste_shutdown(dev)
1737	device_t		dev;
1738{
1739	struct ste_softc	*sc;
1740
1741	sc = device_get_softc(dev);
1742
1743	STE_LOCK(sc);
1744	ste_stop(sc);
1745	STE_UNLOCK(sc);
1746
1747	return;
1748}
1749