if_tl.c revision 67087
136270Swpaul/*
236270Swpaul * Copyright (c) 1997, 1998
336270Swpaul *	Bill Paul <wpaul@ctr.columbia.edu>.  All rights reserved.
436270Swpaul *
536270Swpaul * Redistribution and use in source and binary forms, with or without
636270Swpaul * modification, are permitted provided that the following conditions
736270Swpaul * are met:
836270Swpaul * 1. Redistributions of source code must retain the above copyright
936270Swpaul *    notice, this list of conditions and the following disclaimer.
1036270Swpaul * 2. Redistributions in binary form must reproduce the above copyright
1136270Swpaul *    notice, this list of conditions and the following disclaimer in the
1236270Swpaul *    documentation and/or other materials provided with the distribution.
1336270Swpaul * 3. All advertising materials mentioning features or use of this software
1436270Swpaul *    must display the following acknowledgement:
1536270Swpaul *	This product includes software developed by Bill Paul.
1636270Swpaul * 4. Neither the name of the author nor the names of any co-contributors
1736270Swpaul *    may be used to endorse or promote products derived from this software
1836270Swpaul *    without specific prior written permission.
1936270Swpaul *
2036270Swpaul * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
2136270Swpaul * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2236270Swpaul * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2336270Swpaul * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
2436270Swpaul * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
2536270Swpaul * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
2636270Swpaul * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
2736270Swpaul * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
2836270Swpaul * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
2936270Swpaul * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
3036270Swpaul * THE POSSIBILITY OF SUCH DAMAGE.
3136270Swpaul *
3250477Speter * $FreeBSD: head/sys/pci/if_tl.c 67087 2000-10-13 17:54:19Z wpaul $
3336270Swpaul */
3436270Swpaul
3536270Swpaul/*
3636270Swpaul * Texas Instruments ThunderLAN driver for FreeBSD 2.2.6 and 3.x.
3736270Swpaul * Supports many Compaq PCI NICs based on the ThunderLAN ethernet controller,
3836270Swpaul * the National Semiconductor DP83840A physical interface and the
3936270Swpaul * Microchip Technology 24Cxx series serial EEPROM.
4036270Swpaul *
4139583Swpaul * Written using the following four documents:
4236270Swpaul *
4336270Swpaul * Texas Instruments ThunderLAN Programmer's Guide (www.ti.com)
4436270Swpaul * National Semiconductor DP83840A data sheet (www.national.com)
4536270Swpaul * Microchip Technology 24C02C data sheet (www.microchip.com)
4639583Swpaul * Micro Linear ML6692 100BaseTX only PHY data sheet (www.microlinear.com)
4736270Swpaul *
4836270Swpaul * Written by Bill Paul <wpaul@ctr.columbia.edu>
4936270Swpaul * Electrical Engineering Department
5036270Swpaul * Columbia University, New York City
5136270Swpaul */
5236270Swpaul
5336270Swpaul/*
5436270Swpaul * Some notes about the ThunderLAN:
5536270Swpaul *
5636270Swpaul * The ThunderLAN controller is a single chip containing PCI controller
5736270Swpaul * logic, approximately 3K of on-board SRAM, a LAN controller, and media
5839583Swpaul * independent interface (MII) bus. The MII allows the ThunderLAN chip to
5936270Swpaul * control up to 32 different physical interfaces (PHYs). The ThunderLAN
6036270Swpaul * also has a built-in 10baseT PHY, allowing a single ThunderLAN controller
6136270Swpaul * to act as a complete ethernet interface.
6236270Swpaul *
6336270Swpaul * Other PHYs may be attached to the ThunderLAN; the Compaq 10/100 cards
6436270Swpaul * use a National Semiconductor DP83840A PHY that supports 10 or 100Mb/sec
6536270Swpaul * in full or half duplex. Some of the Compaq Deskpro machines use a
6639583Swpaul * Level 1 LXT970 PHY with the same capabilities. Certain Olicom adapters
6739583Swpaul * use a Micro Linear ML6692 100BaseTX only PHY, which can be used in
6839583Swpaul * concert with the ThunderLAN's internal PHY to provide full 10/100
6939583Swpaul * support. This is cheaper than using a standalone external PHY for both
7039583Swpaul * 10/100 modes and letting the ThunderLAN's internal PHY go to waste.
7139583Swpaul * A serial EEPROM is also attached to the ThunderLAN chip to provide
7239583Swpaul * power-up default register settings and for storing the adapter's
7339583Swpaul * station address. Although not supported by this driver, the ThunderLAN
7439583Swpaul * chip can also be connected to token ring PHYs.
7536270Swpaul *
7636270Swpaul * The ThunderLAN has a set of registers which can be used to issue
7739583Swpaul * commands, acknowledge interrupts, and to manipulate other internal
7836270Swpaul * registers on its DIO bus. The primary registers can be accessed
7936270Swpaul * using either programmed I/O (inb/outb) or via PCI memory mapping,
8036270Swpaul * depending on how the card is configured during the PCI probing
8136270Swpaul * phase. It is even possible to have both PIO and memory mapped
8236270Swpaul * access turned on at the same time.
8336270Swpaul *
8436270Swpaul * Frame reception and transmission with the ThunderLAN chip is done
8536270Swpaul * using frame 'lists.' A list structure looks more or less like this:
8636270Swpaul *
8736270Swpaul * struct tl_frag {
8836270Swpaul *	u_int32_t		fragment_address;
8936270Swpaul *	u_int32_t		fragment_size;
9036270Swpaul * };
9136270Swpaul * struct tl_list {
9236270Swpaul *	u_int32_t		forward_pointer;
9336270Swpaul *	u_int16_t		cstat;
9436270Swpaul *	u_int16_t		frame_size;
9536270Swpaul *	struct tl_frag		fragments[10];
9636270Swpaul * };
9736270Swpaul *
9836270Swpaul * The forward pointer in the list header can be either a 0 or the address
9936270Swpaul * of another list, which allows several lists to be linked together. Each
10036270Swpaul * list contains up to 10 fragment descriptors. This means the chip allows
10136270Swpaul * ethernet frames to be broken up into up to 10 chunks for transfer to
10236270Swpaul * and from the SRAM. Note that the forward pointer and fragment buffer
10336270Swpaul * addresses are physical memory addresses, not virtual. Note also that
10436270Swpaul * a single ethernet frame can not span lists: if the host wants to
10536270Swpaul * transmit a frame and the frame data is split up over more than 10
10636270Swpaul * buffers, the frame has to collapsed before it can be transmitted.
10736270Swpaul *
10836270Swpaul * To receive frames, the driver sets up a number of lists and populates
10936270Swpaul * the fragment descriptors, then it sends an RX GO command to the chip.
11036270Swpaul * When a frame is received, the chip will DMA it into the memory regions
11136270Swpaul * specified by the fragment descriptors and then trigger an RX 'end of
11236270Swpaul * frame interrupt' when done. The driver may choose to use only one
11336270Swpaul * fragment per list; this may result is slighltly less efficient use
11436270Swpaul * of memory in exchange for improving performance.
11536270Swpaul *
11636270Swpaul * To transmit frames, the driver again sets up lists and fragment
11736270Swpaul * descriptors, only this time the buffers contain frame data that
11836270Swpaul * is to be DMA'ed into the chip instead of out of it. Once the chip
11936270Swpaul * has transfered the data into its on-board SRAM, it will trigger a
12036270Swpaul * TX 'end of frame' interrupt. It will also generate an 'end of channel'
12136270Swpaul * interrupt when it reaches the end of the list.
12236270Swpaul */
12336270Swpaul
12436270Swpaul/*
12536270Swpaul * Some notes about this driver:
12636270Swpaul *
12736270Swpaul * The ThunderLAN chip provides a couple of different ways to organize
12836270Swpaul * reception, transmission and interrupt handling. The simplest approach
12936270Swpaul * is to use one list each for transmission and reception. In this mode,
13036270Swpaul * the ThunderLAN will generate two interrupts for every received frame
13136270Swpaul * (one RX EOF and one RX EOC) and two for each transmitted frame (one
13236270Swpaul * TX EOF and one TX EOC). This may make the driver simpler but it hurts
13336270Swpaul * performance to have to handle so many interrupts.
13436270Swpaul *
13536270Swpaul * Initially I wanted to create a circular list of receive buffers so
13636270Swpaul * that the ThunderLAN chip would think there was an infinitely long
13736270Swpaul * receive channel and never deliver an RXEOC interrupt. However this
13836270Swpaul * doesn't work correctly under heavy load: while the manual says the
13936270Swpaul * chip will trigger an RXEOF interrupt each time a frame is copied into
14036270Swpaul * memory, you can't count on the chip waiting around for you to acknowledge
14136270Swpaul * the interrupt before it starts trying to DMA the next frame. The result
14236270Swpaul * is that the chip might traverse the entire circular list and then wrap
14336270Swpaul * around before you have a chance to do anything about it. Consequently,
14436270Swpaul * the receive list is terminated (with a 0 in the forward pointer in the
14536270Swpaul * last element). Each time an RXEOF interrupt arrives, the used list
14636270Swpaul * is shifted to the end of the list. This gives the appearance of an
14736270Swpaul * infinitely large RX chain so long as the driver doesn't fall behind
14836270Swpaul * the chip and allow all of the lists to be filled up.
14936270Swpaul *
15036270Swpaul * If all the lists are filled, the adapter will deliver an RX 'end of
15136270Swpaul * channel' interrupt when it hits the 0 forward pointer at the end of
15236270Swpaul * the chain. The RXEOC handler then cleans out the RX chain and resets
15336270Swpaul * the list head pointer in the ch_parm register and restarts the receiver.
15436270Swpaul *
15536270Swpaul * For frame transmission, it is possible to program the ThunderLAN's
15636270Swpaul * transmit interrupt threshold so that the chip can acknowledge multiple
15736270Swpaul * lists with only a single TX EOF interrupt. This allows the driver to
15836270Swpaul * queue several frames in one shot, and only have to handle a total
15936270Swpaul * two interrupts (one TX EOF and one TX EOC) no matter how many frames
16036270Swpaul * are transmitted. Frame transmission is done directly out of the
16136270Swpaul * mbufs passed to the tl_start() routine via the interface send queue.
16236270Swpaul * The driver simply sets up the fragment descriptors in the transmit
16336270Swpaul * lists to point to the mbuf data regions and sends a TX GO command.
16436270Swpaul *
16536270Swpaul * Note that since the RX and TX lists themselves are always used
16636270Swpaul * only by the driver, the are malloc()ed once at driver initialization
16736270Swpaul * time and never free()ed.
16836270Swpaul *
16936270Swpaul * Also, in order to remain as platform independent as possible, this
17036270Swpaul * driver uses memory mapped register access to manipulate the card
17136270Swpaul * as opposed to programmed I/O. This avoids the use of the inb/outb
17236270Swpaul * (and related) instructions which are specific to the i386 platform.
17336270Swpaul *
17436270Swpaul * Using these techniques, this driver achieves very high performance
17536270Swpaul * by minimizing the amount of interrupts generated during large
17636270Swpaul * transfers and by completely avoiding buffer copies. Frame transfer
17736270Swpaul * to and from the ThunderLAN chip is performed entirely by the chip
17836270Swpaul * itself thereby reducing the load on the host CPU.
17936270Swpaul */
18036270Swpaul
18136270Swpaul#include <sys/param.h>
18236270Swpaul#include <sys/systm.h>
18336270Swpaul#include <sys/sockio.h>
18436270Swpaul#include <sys/mbuf.h>
18536270Swpaul#include <sys/malloc.h>
18636270Swpaul#include <sys/kernel.h>
18736270Swpaul#include <sys/socket.h>
18836270Swpaul
18936270Swpaul#include <net/if.h>
19036270Swpaul#include <net/if_arp.h>
19136270Swpaul#include <net/ethernet.h>
19236270Swpaul#include <net/if_dl.h>
19336270Swpaul#include <net/if_media.h>
19436270Swpaul
19536270Swpaul#include <net/bpf.h>
19636270Swpaul
19736270Swpaul#include <vm/vm.h>              /* for vtophys */
19836270Swpaul#include <vm/pmap.h>            /* for vtophys */
19936270Swpaul#include <machine/clock.h>      /* for DELAY */
20045155Swpaul#include <machine/bus_memio.h>
20145155Swpaul#include <machine/bus_pio.h>
20245155Swpaul#include <machine/bus.h>
20348992Swpaul#include <machine/resource.h>
20448992Swpaul#include <sys/bus.h>
20548992Swpaul#include <sys/rman.h>
20636270Swpaul
20750462Swpaul#include <dev/mii/mii.h>
20850462Swpaul#include <dev/mii/miivar.h>
20950462Swpaul
21036270Swpaul#include <pci/pcireg.h>
21136270Swpaul#include <pci/pcivar.h>
21236270Swpaul
21339957Swpaul/*
21439957Swpaul * Default to using PIO register access mode to pacify certain
21539957Swpaul * laptop docking stations with built-in ThunderLAN chips that
21639957Swpaul * don't seem to handle memory mapped mode properly.
21739957Swpaul */
21839957Swpaul#define TL_USEIOSPACE
21939957Swpaul
22036270Swpaul#include <pci/if_tlreg.h>
22136270Swpaul
22259758SpeterMODULE_DEPEND(tl, miibus, 1, 1, 1);
22359758Speter
22451089Speter/* "controller miibus0" required.  See GENERIC if you get errors here. */
22550462Swpaul#include "miibus_if.h"
22650462Swpaul
22741591Sarchie#if !defined(lint)
22841591Sarchiestatic const char rcsid[] =
22950477Speter  "$FreeBSD: head/sys/pci/if_tl.c 67087 2000-10-13 17:54:19Z wpaul $";
23036270Swpaul#endif
23136270Swpaul
23236270Swpaul/*
23336270Swpaul * Various supported device vendors/types and their names.
23436270Swpaul */
23536270Swpaul
23636270Swpaulstatic struct tl_type tl_devs[] = {
23736270Swpaul	{ TI_VENDORID,	TI_DEVICEID_THUNDERLAN,
23836270Swpaul		"Texas Instruments ThunderLAN" },
23936270Swpaul	{ COMPAQ_VENDORID, COMPAQ_DEVICEID_NETEL_10,
24036270Swpaul		"Compaq Netelligent 10" },
24136270Swpaul	{ COMPAQ_VENDORID, COMPAQ_DEVICEID_NETEL_10_100,
24236270Swpaul		"Compaq Netelligent 10/100" },
24336270Swpaul	{ COMPAQ_VENDORID, COMPAQ_DEVICEID_NETEL_10_100_PROLIANT,
24436270Swpaul		"Compaq Netelligent 10/100 Proliant" },
24536270Swpaul	{ COMPAQ_VENDORID, COMPAQ_DEVICEID_NETEL_10_100_DUAL,
24636270Swpaul		"Compaq Netelligent 10/100 Dual Port" },
24736270Swpaul	{ COMPAQ_VENDORID, COMPAQ_DEVICEID_NETFLEX_3P_INTEGRATED,
24836270Swpaul		"Compaq NetFlex-3/P Integrated" },
24936270Swpaul	{ COMPAQ_VENDORID, COMPAQ_DEVICEID_NETFLEX_3P,
25036270Swpaul		"Compaq NetFlex-3/P" },
25136270Swpaul	{ COMPAQ_VENDORID, COMPAQ_DEVICEID_NETFLEX_3P_BNC,
25236270Swpaul		"Compaq NetFlex 3/P w/ BNC" },
25337626Swpaul	{ COMPAQ_VENDORID, COMPAQ_DEVICEID_NETEL_10_100_EMBEDDED,
25437626Swpaul		"Compaq Netelligent 10/100 TX Embedded UTP" },
25537626Swpaul	{ COMPAQ_VENDORID, COMPAQ_DEVICEID_NETEL_10_T2_UTP_COAX,
25637626Swpaul		"Compaq Netelligent 10 T/2 PCI UTP/Coax" },
25737626Swpaul	{ COMPAQ_VENDORID, COMPAQ_DEVICEID_NETEL_10_100_TX_UTP,
25837626Swpaul		"Compaq Netelligent 10/100 TX UTP" },
25937626Swpaul	{ OLICOM_VENDORID, OLICOM_DEVICEID_OC2183,
26037626Swpaul		"Olicom OC-2183/2185" },
26137626Swpaul	{ OLICOM_VENDORID, OLICOM_DEVICEID_OC2325,
26237626Swpaul		"Olicom OC-2325" },
26337626Swpaul	{ OLICOM_VENDORID, OLICOM_DEVICEID_OC2326,
26437626Swpaul		"Olicom OC-2326 10/100 TX UTP" },
26536270Swpaul	{ 0, 0, NULL }
26636270Swpaul};
26736270Swpaul
26848992Swpaulstatic int tl_probe		__P((device_t));
26948992Swpaulstatic int tl_attach		__P((device_t));
27048992Swpaulstatic int tl_detach		__P((device_t));
27136270Swpaulstatic int tl_intvec_rxeoc	__P((void *, u_int32_t));
27236270Swpaulstatic int tl_intvec_txeoc	__P((void *, u_int32_t));
27336270Swpaulstatic int tl_intvec_txeof	__P((void *, u_int32_t));
27436270Swpaulstatic int tl_intvec_rxeof	__P((void *, u_int32_t));
27536270Swpaulstatic int tl_intvec_adchk	__P((void *, u_int32_t));
27636270Swpaulstatic int tl_intvec_netsts	__P((void *, u_int32_t));
27736270Swpaul
27837626Swpaulstatic int tl_newbuf		__P((struct tl_softc *,
27937626Swpaul					struct tl_chain_onefrag *));
28036270Swpaulstatic void tl_stats_update	__P((void *));
28136270Swpaulstatic int tl_encap		__P((struct tl_softc *, struct tl_chain *,
28236270Swpaul						struct mbuf *));
28336270Swpaul
28436270Swpaulstatic void tl_intr		__P((void *));
28536270Swpaulstatic void tl_start		__P((struct ifnet *));
28636735Sdfrstatic int tl_ioctl		__P((struct ifnet *, u_long, caddr_t));
28736270Swpaulstatic void tl_init		__P((void *));
28836270Swpaulstatic void tl_stop		__P((struct tl_softc *));
28936270Swpaulstatic void tl_watchdog		__P((struct ifnet *));
29048992Swpaulstatic void tl_shutdown		__P((device_t));
29136270Swpaulstatic int tl_ifmedia_upd	__P((struct ifnet *));
29236270Swpaulstatic void tl_ifmedia_sts	__P((struct ifnet *, struct ifmediareq *));
29336270Swpaul
29441656Swpaulstatic u_int8_t tl_eeprom_putbyte	__P((struct tl_softc *, int));
29539583Swpaulstatic u_int8_t	tl_eeprom_getbyte	__P((struct tl_softc *,
29641656Swpaul						int, u_int8_t *));
29739583Swpaulstatic int tl_read_eeprom	__P((struct tl_softc *, caddr_t, int, int));
29836270Swpaul
29939583Swpaulstatic void tl_mii_sync		__P((struct tl_softc *));
30039583Swpaulstatic void tl_mii_send		__P((struct tl_softc *, u_int32_t, int));
30139583Swpaulstatic int tl_mii_readreg	__P((struct tl_softc *, struct tl_mii_frame *));
30239583Swpaulstatic int tl_mii_writereg	__P((struct tl_softc *, struct tl_mii_frame *));
30350462Swpaulstatic int tl_miibus_readreg	__P((device_t, int, int));
30450462Swpaulstatic int tl_miibus_writereg	__P((device_t, int, int, int));
30550462Swpaulstatic void tl_miibus_statchg	__P((device_t));
30636270Swpaul
30736270Swpaulstatic void tl_setmode		__P((struct tl_softc *, int));
30841656Swpaulstatic int tl_calchash		__P((caddr_t));
30936270Swpaulstatic void tl_setmulti		__P((struct tl_softc *));
31041656Swpaulstatic void tl_setfilt		__P((struct tl_softc *, caddr_t, int));
31139583Swpaulstatic void tl_softreset	__P((struct tl_softc *, int));
31250468Swpaulstatic void tl_hardreset	__P((device_t));
31336270Swpaulstatic int tl_list_rx_init	__P((struct tl_softc *));
31436270Swpaulstatic int tl_list_tx_init	__P((struct tl_softc *));
31536270Swpaul
31641656Swpaulstatic u_int8_t tl_dio_read8	__P((struct tl_softc *, int));
31741656Swpaulstatic u_int16_t tl_dio_read16	__P((struct tl_softc *, int));
31841656Swpaulstatic u_int32_t tl_dio_read32	__P((struct tl_softc *, int));
31941656Swpaulstatic void tl_dio_write8	__P((struct tl_softc *, int, int));
32041656Swpaulstatic void tl_dio_write16	__P((struct tl_softc *, int, int));
32141656Swpaulstatic void tl_dio_write32	__P((struct tl_softc *, int, int));
32241656Swpaulstatic void tl_dio_setbit	__P((struct tl_softc *, int, int));
32341656Swpaulstatic void tl_dio_clrbit	__P((struct tl_softc *, int, int));
32441656Swpaulstatic void tl_dio_setbit16	__P((struct tl_softc *, int, int));
32541656Swpaulstatic void tl_dio_clrbit16	__P((struct tl_softc *, int, int));
32639583Swpaul
32749010Swpaul#ifdef TL_USEIOSPACE
32849010Swpaul#define TL_RES		SYS_RES_IOPORT
32949010Swpaul#define TL_RID		TL_PCI_LOIO
33049010Swpaul#else
33149010Swpaul#define TL_RES		SYS_RES_MEMORY
33249010Swpaul#define TL_RID		TL_PCI_LOMEM
33349010Swpaul#endif
33449010Swpaul
33548992Swpaulstatic device_method_t tl_methods[] = {
33648992Swpaul	/* Device interface */
33748992Swpaul	DEVMETHOD(device_probe,		tl_probe),
33848992Swpaul	DEVMETHOD(device_attach,	tl_attach),
33948992Swpaul	DEVMETHOD(device_detach,	tl_detach),
34048992Swpaul	DEVMETHOD(device_shutdown,	tl_shutdown),
34150462Swpaul
34250462Swpaul	/* bus interface */
34350462Swpaul	DEVMETHOD(bus_print_child,	bus_generic_print_child),
34450462Swpaul	DEVMETHOD(bus_driver_added,	bus_generic_driver_added),
34550462Swpaul
34650462Swpaul	/* MII interface */
34750462Swpaul	DEVMETHOD(miibus_readreg,	tl_miibus_readreg),
34850462Swpaul	DEVMETHOD(miibus_writereg,	tl_miibus_writereg),
34950462Swpaul	DEVMETHOD(miibus_statchg,	tl_miibus_statchg),
35050462Swpaul
35148992Swpaul	{ 0, 0 }
35248992Swpaul};
35348992Swpaul
35448992Swpaulstatic driver_t tl_driver = {
35551455Swpaul	"tl",
35648992Swpaul	tl_methods,
35748992Swpaul	sizeof(struct tl_softc)
35848992Swpaul};
35948992Swpaul
36048992Swpaulstatic devclass_t tl_devclass;
36148992Swpaul
36251533SwpaulDRIVER_MODULE(if_tl, pci, tl_driver, tl_devclass, 0, 0);
36351473SwpaulDRIVER_MODULE(miibus, tl, miibus_driver, miibus_devclass, 0, 0);
36448992Swpaul
36539583Swpaulstatic u_int8_t tl_dio_read8(sc, reg)
36641656Swpaul	struct tl_softc		*sc;
36741656Swpaul	int			reg;
36839583Swpaul{
36939583Swpaul	CSR_WRITE_2(sc, TL_DIO_ADDR, reg);
37039583Swpaul	return(CSR_READ_1(sc, TL_DIO_DATA + (reg & 3)));
37139583Swpaul}
37239583Swpaul
37339583Swpaulstatic u_int16_t tl_dio_read16(sc, reg)
37441656Swpaul	struct tl_softc		*sc;
37541656Swpaul	int			reg;
37639583Swpaul{
37739583Swpaul	CSR_WRITE_2(sc, TL_DIO_ADDR, reg);
37839583Swpaul	return(CSR_READ_2(sc, TL_DIO_DATA + (reg & 3)));
37939583Swpaul}
38039583Swpaul
38139583Swpaulstatic u_int32_t tl_dio_read32(sc, reg)
38241656Swpaul	struct tl_softc		*sc;
38341656Swpaul	int			reg;
38439583Swpaul{
38539583Swpaul	CSR_WRITE_2(sc, TL_DIO_ADDR, reg);
38639583Swpaul	return(CSR_READ_4(sc, TL_DIO_DATA + (reg & 3)));
38739583Swpaul}
38839583Swpaul
38939583Swpaulstatic void tl_dio_write8(sc, reg, val)
39041656Swpaul	struct tl_softc		*sc;
39141656Swpaul	int			reg;
39241656Swpaul	int			val;
39339583Swpaul{
39439583Swpaul	CSR_WRITE_2(sc, TL_DIO_ADDR, reg);
39539583Swpaul	CSR_WRITE_1(sc, TL_DIO_DATA + (reg & 3), val);
39639583Swpaul	return;
39739583Swpaul}
39839583Swpaul
39939583Swpaulstatic void tl_dio_write16(sc, reg, val)
40041656Swpaul	struct tl_softc		*sc;
40141656Swpaul	int			reg;
40241656Swpaul	int			val;
40339583Swpaul{
40439583Swpaul	CSR_WRITE_2(sc, TL_DIO_ADDR, reg);
40539583Swpaul	CSR_WRITE_2(sc, TL_DIO_DATA + (reg & 3), val);
40639583Swpaul	return;
40739583Swpaul}
40839583Swpaul
40939583Swpaulstatic void tl_dio_write32(sc, reg, val)
41041656Swpaul	struct tl_softc		*sc;
41141656Swpaul	int			reg;
41241656Swpaul	int			val;
41339583Swpaul{
41439583Swpaul	CSR_WRITE_2(sc, TL_DIO_ADDR, reg);
41539583Swpaul	CSR_WRITE_4(sc, TL_DIO_DATA + (reg & 3), val);
41639583Swpaul	return;
41739583Swpaul}
41839583Swpaul
41939583Swpaulstatic void tl_dio_setbit(sc, reg, bit)
42041656Swpaul	struct tl_softc		*sc;
42141656Swpaul	int			reg;
42241656Swpaul	int			bit;
42339583Swpaul{
42439583Swpaul	u_int8_t			f;
42539583Swpaul
42639583Swpaul	CSR_WRITE_2(sc, TL_DIO_ADDR, reg);
42739583Swpaul	f = CSR_READ_1(sc, TL_DIO_DATA + (reg & 3));
42839583Swpaul	f |= bit;
42939583Swpaul	CSR_WRITE_1(sc, TL_DIO_DATA + (reg & 3), f);
43039583Swpaul
43139583Swpaul	return;
43239583Swpaul}
43339583Swpaul
43439583Swpaulstatic void tl_dio_clrbit(sc, reg, bit)
43541656Swpaul	struct tl_softc		*sc;
43641656Swpaul	int			reg;
43741656Swpaul	int			bit;
43839583Swpaul{
43939583Swpaul	u_int8_t			f;
44039583Swpaul
44139583Swpaul	CSR_WRITE_2(sc, TL_DIO_ADDR, reg);
44239583Swpaul	f = CSR_READ_1(sc, TL_DIO_DATA + (reg & 3));
44339583Swpaul	f &= ~bit;
44439583Swpaul	CSR_WRITE_1(sc, TL_DIO_DATA + (reg & 3), f);
44539583Swpaul
44639583Swpaul	return;
44739583Swpaul}
44839583Swpaul
44939583Swpaulstatic void tl_dio_setbit16(sc, reg, bit)
45041656Swpaul	struct tl_softc		*sc;
45141656Swpaul	int			reg;
45241656Swpaul	int			bit;
45339583Swpaul{
45439583Swpaul	u_int16_t			f;
45539583Swpaul
45639583Swpaul	CSR_WRITE_2(sc, TL_DIO_ADDR, reg);
45739583Swpaul	f = CSR_READ_2(sc, TL_DIO_DATA + (reg & 3));
45839583Swpaul	f |= bit;
45939583Swpaul	CSR_WRITE_2(sc, TL_DIO_DATA + (reg & 3), f);
46039583Swpaul
46139583Swpaul	return;
46239583Swpaul}
46339583Swpaul
46439583Swpaulstatic void tl_dio_clrbit16(sc, reg, bit)
46541656Swpaul	struct tl_softc		*sc;
46641656Swpaul	int			reg;
46741656Swpaul	int			bit;
46839583Swpaul{
46939583Swpaul	u_int16_t			f;
47039583Swpaul
47139583Swpaul	CSR_WRITE_2(sc, TL_DIO_ADDR, reg);
47239583Swpaul	f = CSR_READ_2(sc, TL_DIO_DATA + (reg & 3));
47339583Swpaul	f &= ~bit;
47439583Swpaul	CSR_WRITE_2(sc, TL_DIO_DATA + (reg & 3), f);
47539583Swpaul
47639583Swpaul	return;
47739583Swpaul}
47839583Swpaul
47936270Swpaul/*
48036270Swpaul * Send an instruction or address to the EEPROM, check for ACK.
48136270Swpaul */
48239583Swpaulstatic u_int8_t tl_eeprom_putbyte(sc, byte)
48339583Swpaul	struct tl_softc		*sc;
48441656Swpaul	int			byte;
48536270Swpaul{
48636270Swpaul	register int		i, ack = 0;
48736270Swpaul
48836270Swpaul	/*
48936270Swpaul	 * Make sure we're in TX mode.
49036270Swpaul	 */
49139583Swpaul	tl_dio_setbit(sc, TL_NETSIO, TL_SIO_ETXEN);
49236270Swpaul
49336270Swpaul	/*
49436270Swpaul	 * Feed in each bit and stobe the clock.
49536270Swpaul	 */
49636270Swpaul	for (i = 0x80; i; i >>= 1) {
49736270Swpaul		if (byte & i) {
49839583Swpaul			tl_dio_setbit(sc, TL_NETSIO, TL_SIO_EDATA);
49936270Swpaul		} else {
50039583Swpaul			tl_dio_clrbit(sc, TL_NETSIO, TL_SIO_EDATA);
50136270Swpaul		}
50239583Swpaul		DELAY(1);
50339583Swpaul		tl_dio_setbit(sc, TL_NETSIO, TL_SIO_ECLOK);
50439583Swpaul		DELAY(1);
50539583Swpaul		tl_dio_clrbit(sc, TL_NETSIO, TL_SIO_ECLOK);
50636270Swpaul	}
50736270Swpaul
50836270Swpaul	/*
50936270Swpaul	 * Turn off TX mode.
51036270Swpaul	 */
51139583Swpaul	tl_dio_clrbit(sc, TL_NETSIO, TL_SIO_ETXEN);
51236270Swpaul
51336270Swpaul	/*
51436270Swpaul	 * Check for ack.
51536270Swpaul	 */
51639583Swpaul	tl_dio_setbit(sc, TL_NETSIO, TL_SIO_ECLOK);
51739583Swpaul	ack = tl_dio_read8(sc, TL_NETSIO) & TL_SIO_EDATA;
51839583Swpaul	tl_dio_clrbit(sc, TL_NETSIO, TL_SIO_ECLOK);
51936270Swpaul
52036270Swpaul	return(ack);
52136270Swpaul}
52236270Swpaul
52336270Swpaul/*
52436270Swpaul * Read a byte of data stored in the EEPROM at address 'addr.'
52536270Swpaul */
52639583Swpaulstatic u_int8_t tl_eeprom_getbyte(sc, addr, dest)
52739583Swpaul	struct tl_softc		*sc;
52841656Swpaul	int			addr;
52936270Swpaul	u_int8_t		*dest;
53036270Swpaul{
53136270Swpaul	register int		i;
53236270Swpaul	u_int8_t		byte = 0;
53336270Swpaul
53439583Swpaul	tl_dio_write8(sc, TL_NETSIO, 0);
53539583Swpaul
53636270Swpaul	EEPROM_START;
53739583Swpaul
53836270Swpaul	/*
53936270Swpaul	 * Send write control code to EEPROM.
54036270Swpaul	 */
54139583Swpaul	if (tl_eeprom_putbyte(sc, EEPROM_CTL_WRITE)) {
54239583Swpaul		printf("tl%d: failed to send write command, status: %x\n",
54339583Swpaul				sc->tl_unit, tl_dio_read8(sc, TL_NETSIO));
54436270Swpaul		return(1);
54539583Swpaul	}
54636270Swpaul
54736270Swpaul	/*
54836270Swpaul	 * Send address of byte we want to read.
54936270Swpaul	 */
55039583Swpaul	if (tl_eeprom_putbyte(sc, addr)) {
55139583Swpaul		printf("tl%d: failed to send address, status: %x\n",
55239583Swpaul				sc->tl_unit, tl_dio_read8(sc, TL_NETSIO));
55336270Swpaul		return(1);
55439583Swpaul	}
55536270Swpaul
55636270Swpaul	EEPROM_STOP;
55736270Swpaul	EEPROM_START;
55836270Swpaul	/*
55936270Swpaul	 * Send read control code to EEPROM.
56036270Swpaul	 */
56139583Swpaul	if (tl_eeprom_putbyte(sc, EEPROM_CTL_READ)) {
56239583Swpaul		printf("tl%d: failed to send write command, status: %x\n",
56339583Swpaul				sc->tl_unit, tl_dio_read8(sc, TL_NETSIO));
56436270Swpaul		return(1);
56539583Swpaul	}
56636270Swpaul
56736270Swpaul	/*
56836270Swpaul	 * Start reading bits from EEPROM.
56936270Swpaul	 */
57039583Swpaul	tl_dio_clrbit(sc, TL_NETSIO, TL_SIO_ETXEN);
57136270Swpaul	for (i = 0x80; i; i >>= 1) {
57239583Swpaul		tl_dio_setbit(sc, TL_NETSIO, TL_SIO_ECLOK);
57339583Swpaul		DELAY(1);
57439583Swpaul		if (tl_dio_read8(sc, TL_NETSIO) & TL_SIO_EDATA)
57536270Swpaul			byte |= i;
57639583Swpaul		tl_dio_clrbit(sc, TL_NETSIO, TL_SIO_ECLOK);
57736501Swpaul		DELAY(1);
57836270Swpaul	}
57936270Swpaul
58036270Swpaul	EEPROM_STOP;
58136270Swpaul
58236270Swpaul	/*
58336270Swpaul	 * No ACK generated for read, so just return byte.
58436270Swpaul	 */
58536270Swpaul
58636270Swpaul	*dest = byte;
58736270Swpaul
58836270Swpaul	return(0);
58936270Swpaul}
59036270Swpaul
59139583Swpaul/*
59239583Swpaul * Read a sequence of bytes from the EEPROM.
59339583Swpaul */
59439583Swpaulstatic int tl_read_eeprom(sc, dest, off, cnt)
59539583Swpaul	struct tl_softc		*sc;
59639583Swpaul	caddr_t			dest;
59739583Swpaul	int			off;
59839583Swpaul	int			cnt;
59936270Swpaul{
60039583Swpaul	int			err = 0, i;
60139583Swpaul	u_int8_t		byte = 0;
60239583Swpaul
60339583Swpaul	for (i = 0; i < cnt; i++) {
60439583Swpaul		err = tl_eeprom_getbyte(sc, off + i, &byte);
60539583Swpaul		if (err)
60639583Swpaul			break;
60739583Swpaul		*(dest + i) = byte;
60839583Swpaul	}
60939583Swpaul
61039583Swpaul	return(err ? 1 : 0);
61139583Swpaul}
61239583Swpaul
61339583Swpaulstatic void tl_mii_sync(sc)
61439583Swpaul	struct tl_softc		*sc;
61539583Swpaul{
61636270Swpaul	register int		i;
61736270Swpaul
61839583Swpaul	tl_dio_clrbit(sc, TL_NETSIO, TL_SIO_MTXEN);
61936270Swpaul
62036270Swpaul	for (i = 0; i < 32; i++) {
62139583Swpaul		tl_dio_setbit(sc, TL_NETSIO, TL_SIO_MCLK);
62239583Swpaul		tl_dio_clrbit(sc, TL_NETSIO, TL_SIO_MCLK);
62336270Swpaul	}
62436270Swpaul
62536270Swpaul	return;
62636270Swpaul}
62736270Swpaul
62839583Swpaulstatic void tl_mii_send(sc, bits, cnt)
62939583Swpaul	struct tl_softc		*sc;
63036270Swpaul	u_int32_t		bits;
63136270Swpaul	int			cnt;
63236270Swpaul{
63336270Swpaul	int			i;
63436270Swpaul
63536270Swpaul	for (i = (0x1 << (cnt - 1)); i; i >>= 1) {
63639583Swpaul		tl_dio_clrbit(sc, TL_NETSIO, TL_SIO_MCLK);
63736270Swpaul		if (bits & i) {
63839583Swpaul			tl_dio_setbit(sc, TL_NETSIO, TL_SIO_MDATA);
63936270Swpaul		} else {
64039583Swpaul			tl_dio_clrbit(sc, TL_NETSIO, TL_SIO_MDATA);
64136270Swpaul		}
64239583Swpaul		tl_dio_setbit(sc, TL_NETSIO, TL_SIO_MCLK);
64336270Swpaul	}
64436270Swpaul}
64536270Swpaul
64639583Swpaulstatic int tl_mii_readreg(sc, frame)
64739583Swpaul	struct tl_softc		*sc;
64836270Swpaul	struct tl_mii_frame	*frame;
64936270Swpaul
65036270Swpaul{
65167087Swpaul	int			i, ack;
65236270Swpaul	int			minten = 0;
65336270Swpaul
65467087Swpaul	TL_LOCK(sc);
65536270Swpaul
65639583Swpaul	tl_mii_sync(sc);
65736270Swpaul
65836270Swpaul	/*
65936270Swpaul	 * Set up frame for RX.
66036270Swpaul	 */
66136270Swpaul	frame->mii_stdelim = TL_MII_STARTDELIM;
66236270Swpaul	frame->mii_opcode = TL_MII_READOP;
66336270Swpaul	frame->mii_turnaround = 0;
66436270Swpaul	frame->mii_data = 0;
66536270Swpaul
66636270Swpaul	/*
66736270Swpaul	 * Turn off MII interrupt by forcing MINTEN low.
66836270Swpaul	 */
66939583Swpaul	minten = tl_dio_read8(sc, TL_NETSIO) & TL_SIO_MINTEN;
67036270Swpaul	if (minten) {
67139583Swpaul		tl_dio_clrbit(sc, TL_NETSIO, TL_SIO_MINTEN);
67236270Swpaul	}
67336270Swpaul
67436270Swpaul	/*
67536270Swpaul 	 * Turn on data xmit.
67636270Swpaul	 */
67739583Swpaul	tl_dio_setbit(sc, TL_NETSIO, TL_SIO_MTXEN);
67836270Swpaul
67936270Swpaul	/*
68036270Swpaul	 * Send command/address info.
68136270Swpaul	 */
68239583Swpaul	tl_mii_send(sc, frame->mii_stdelim, 2);
68339583Swpaul	tl_mii_send(sc, frame->mii_opcode, 2);
68439583Swpaul	tl_mii_send(sc, frame->mii_phyaddr, 5);
68539583Swpaul	tl_mii_send(sc, frame->mii_regaddr, 5);
68636270Swpaul
68736270Swpaul	/*
68836270Swpaul	 * Turn off xmit.
68936270Swpaul	 */
69039583Swpaul	tl_dio_clrbit(sc, TL_NETSIO, TL_SIO_MTXEN);
69136270Swpaul
69236270Swpaul	/* Idle bit */
69339583Swpaul	tl_dio_clrbit(sc, TL_NETSIO, TL_SIO_MCLK);
69439583Swpaul	tl_dio_setbit(sc, TL_NETSIO, TL_SIO_MCLK);
69536270Swpaul
69636270Swpaul	/* Check for ack */
69739583Swpaul	tl_dio_clrbit(sc, TL_NETSIO, TL_SIO_MCLK);
69839583Swpaul	ack = tl_dio_read8(sc, TL_NETSIO) & TL_SIO_MDATA;
69936270Swpaul
70036270Swpaul	/* Complete the cycle */
70139583Swpaul	tl_dio_setbit(sc, TL_NETSIO, TL_SIO_MCLK);
70236270Swpaul
70336270Swpaul	/*
70436270Swpaul	 * Now try reading data bits. If the ack failed, we still
70536270Swpaul	 * need to clock through 16 cycles to keep the PHYs in sync.
70636270Swpaul	 */
70736270Swpaul	if (ack) {
70836270Swpaul		for(i = 0; i < 16; i++) {
70939583Swpaul			tl_dio_clrbit(sc, TL_NETSIO, TL_SIO_MCLK);
71039583Swpaul			tl_dio_setbit(sc, TL_NETSIO, TL_SIO_MCLK);
71136270Swpaul		}
71236270Swpaul		goto fail;
71336270Swpaul	}
71436270Swpaul
71536270Swpaul	for (i = 0x8000; i; i >>= 1) {
71639583Swpaul		tl_dio_clrbit(sc, TL_NETSIO, TL_SIO_MCLK);
71736270Swpaul		if (!ack) {
71839583Swpaul			if (tl_dio_read8(sc, TL_NETSIO) & TL_SIO_MDATA)
71936270Swpaul				frame->mii_data |= i;
72036270Swpaul		}
72139583Swpaul		tl_dio_setbit(sc, TL_NETSIO, TL_SIO_MCLK);
72236270Swpaul	}
72336270Swpaul
72436270Swpaulfail:
72536270Swpaul
72639583Swpaul	tl_dio_setbit(sc, TL_NETSIO, TL_SIO_MCLK);
72739583Swpaul	tl_dio_clrbit(sc, TL_NETSIO, TL_SIO_MCLK);
72836270Swpaul
72936270Swpaul	/* Reenable interrupts */
73036270Swpaul	if (minten) {
73139583Swpaul		tl_dio_setbit(sc, TL_NETSIO, TL_SIO_MINTEN);
73236270Swpaul	}
73336270Swpaul
73467087Swpaul	TL_UNLOCK(sc);
73536270Swpaul
73636270Swpaul	if (ack)
73736270Swpaul		return(1);
73836270Swpaul	return(0);
73936270Swpaul}
74036270Swpaul
74139583Swpaulstatic int tl_mii_writereg(sc, frame)
74239583Swpaul	struct tl_softc		*sc;
74336270Swpaul	struct tl_mii_frame	*frame;
74436270Swpaul
74536270Swpaul{
74636270Swpaul	int			minten;
74736270Swpaul
74867087Swpaul	TL_LOCK(sc);
74967087Swpaul
75039583Swpaul	tl_mii_sync(sc);
75136270Swpaul
75236270Swpaul	/*
75336270Swpaul	 * Set up frame for TX.
75436270Swpaul	 */
75536270Swpaul
75636270Swpaul	frame->mii_stdelim = TL_MII_STARTDELIM;
75736270Swpaul	frame->mii_opcode = TL_MII_WRITEOP;
75836270Swpaul	frame->mii_turnaround = TL_MII_TURNAROUND;
75936270Swpaul
76036270Swpaul	/*
76136270Swpaul	 * Turn off MII interrupt by forcing MINTEN low.
76236270Swpaul	 */
76339583Swpaul	minten = tl_dio_read8(sc, TL_NETSIO) & TL_SIO_MINTEN;
76436270Swpaul	if (minten) {
76539583Swpaul		tl_dio_clrbit(sc, TL_NETSIO, TL_SIO_MINTEN);
76636270Swpaul	}
76736270Swpaul
76836270Swpaul	/*
76936270Swpaul 	 * Turn on data output.
77036270Swpaul	 */
77139583Swpaul	tl_dio_setbit(sc, TL_NETSIO, TL_SIO_MTXEN);
77236270Swpaul
77339583Swpaul	tl_mii_send(sc, frame->mii_stdelim, 2);
77439583Swpaul	tl_mii_send(sc, frame->mii_opcode, 2);
77539583Swpaul	tl_mii_send(sc, frame->mii_phyaddr, 5);
77639583Swpaul	tl_mii_send(sc, frame->mii_regaddr, 5);
77739583Swpaul	tl_mii_send(sc, frame->mii_turnaround, 2);
77839583Swpaul	tl_mii_send(sc, frame->mii_data, 16);
77936270Swpaul
78039583Swpaul	tl_dio_setbit(sc, TL_NETSIO, TL_SIO_MCLK);
78139583Swpaul	tl_dio_clrbit(sc, TL_NETSIO, TL_SIO_MCLK);
78236270Swpaul
78336270Swpaul	/*
78436270Swpaul	 * Turn off xmit.
78536270Swpaul	 */
78639583Swpaul	tl_dio_clrbit(sc, TL_NETSIO, TL_SIO_MTXEN);
78736270Swpaul
78836270Swpaul	/* Reenable interrupts */
78936270Swpaul	if (minten)
79039583Swpaul		tl_dio_setbit(sc, TL_NETSIO, TL_SIO_MINTEN);
79136270Swpaul
79267087Swpaul	TL_UNLOCK(sc);
79336270Swpaul
79436270Swpaul	return(0);
79536270Swpaul}
79636270Swpaul
79750462Swpaulstatic int tl_miibus_readreg(dev, phy, reg)
79850462Swpaul	device_t		dev;
79950462Swpaul	int			phy, reg;
80050462Swpaul{
80136270Swpaul	struct tl_softc		*sc;
80236270Swpaul	struct tl_mii_frame	frame;
80336270Swpaul
80450462Swpaul	sc = device_get_softc(dev);
80536270Swpaul	bzero((char *)&frame, sizeof(frame));
80636270Swpaul
80750462Swpaul	frame.mii_phyaddr = phy;
80836270Swpaul	frame.mii_regaddr = reg;
80939583Swpaul	tl_mii_readreg(sc, &frame);
81036270Swpaul
81136270Swpaul	return(frame.mii_data);
81236270Swpaul}
81336270Swpaul
81450462Swpaulstatic int tl_miibus_writereg(dev, phy, reg, data)
81550462Swpaul	device_t		dev;
81650462Swpaul	int			phy, reg, data;
81750462Swpaul{
81836270Swpaul	struct tl_softc		*sc;
81936270Swpaul	struct tl_mii_frame	frame;
82036270Swpaul
82150462Swpaul	sc = device_get_softc(dev);
82236270Swpaul	bzero((char *)&frame, sizeof(frame));
82336270Swpaul
82450462Swpaul	frame.mii_phyaddr = phy;
82536270Swpaul	frame.mii_regaddr = reg;
82636270Swpaul	frame.mii_data = data;
82736270Swpaul
82839583Swpaul	tl_mii_writereg(sc, &frame);
82936270Swpaul
83050462Swpaul	return(0);
83136270Swpaul}
83236270Swpaul
83350462Swpaulstatic void tl_miibus_statchg(dev)
83450462Swpaul	device_t		dev;
83550462Swpaul{
83636270Swpaul	struct tl_softc		*sc;
83750462Swpaul	struct mii_data		*mii;
83836270Swpaul
83950462Swpaul	sc = device_get_softc(dev);
84067087Swpaul	TL_LOCK(sc);
84150462Swpaul	mii = device_get_softc(sc->tl_miibus);
84236270Swpaul
84350462Swpaul	if ((mii->mii_media_active & IFM_GMASK) == IFM_FDX) {
84450462Swpaul		tl_dio_setbit(sc, TL_NETCMD, TL_CMD_DUPLEX);
84536270Swpaul	} else {
84650462Swpaul		tl_dio_clrbit(sc, TL_NETCMD, TL_CMD_DUPLEX);
84736270Swpaul	}
84867087Swpaul	TL_UNLOCK(sc);
84936270Swpaul
85036270Swpaul	return;
85136270Swpaul}
85236270Swpaul
85336270Swpaul/*
85450462Swpaul * Set modes for bitrate devices.
85536270Swpaul */
85636270Swpaulstatic void tl_setmode(sc, media)
85736270Swpaul	struct tl_softc		*sc;
85836270Swpaul	int			media;
85936270Swpaul{
86050462Swpaul	if (IFM_SUBTYPE(media) == IFM_10_5)
86150462Swpaul		tl_dio_setbit(sc, TL_ACOMMIT, TL_AC_MTXD1);
86236270Swpaul	if (IFM_SUBTYPE(media) == IFM_10_T) {
86350462Swpaul		tl_dio_clrbit(sc, TL_ACOMMIT, TL_AC_MTXD1);
86436270Swpaul		if ((media & IFM_GMASK) == IFM_FDX) {
86550462Swpaul			tl_dio_clrbit(sc, TL_ACOMMIT, TL_AC_MTXD3);
86639583Swpaul			tl_dio_setbit(sc, TL_NETCMD, TL_CMD_DUPLEX);
86736270Swpaul		} else {
86850462Swpaul			tl_dio_setbit(sc, TL_ACOMMIT, TL_AC_MTXD3);
86939583Swpaul			tl_dio_clrbit(sc, TL_NETCMD, TL_CMD_DUPLEX);
87036270Swpaul		}
87136270Swpaul	}
87236270Swpaul
87336270Swpaul	return;
87436270Swpaul}
87536270Swpaul
87636464Swpaul/*
87736464Swpaul * Calculate the hash of a MAC address for programming the multicast hash
87836464Swpaul * table.  This hash is simply the address split into 6-bit chunks
87936464Swpaul * XOR'd, e.g.
88036464Swpaul * byte: 000000|00 1111|1111 22|222222|333333|33 4444|4444 55|555555
88136464Swpaul * bit:  765432|10 7654|3210 76|543210|765432|10 7654|3210 76|543210
88236464Swpaul * Bytes 0-2 and 3-5 are symmetrical, so are folded together.  Then
88336464Swpaul * the folded 24-bit value is split into 6-bit portions and XOR'd.
88436464Swpaul */
88536270Swpaulstatic int tl_calchash(addr)
88641656Swpaul	caddr_t			addr;
88736270Swpaul{
88837626Swpaul	int			t;
88936270Swpaul
89036464Swpaul	t = (addr[0] ^ addr[3]) << 16 | (addr[1] ^ addr[4]) << 8 |
89136464Swpaul		(addr[2] ^ addr[5]);
89236464Swpaul	return ((t >> 18) ^ (t >> 12) ^ (t >> 6) ^ t) & 0x3f;
89336270Swpaul}
89436270Swpaul
89539583Swpaul/*
89639583Swpaul * The ThunderLAN has a perfect MAC address filter in addition to
89739583Swpaul * the multicast hash filter. The perfect filter can be programmed
89839583Swpaul * with up to four MAC addresses. The first one is always used to
89939583Swpaul * hold the station address, which leaves us free to use the other
90039583Swpaul * three for multicast addresses.
90139583Swpaul */
90239583Swpaulstatic void tl_setfilt(sc, addr, slot)
90339583Swpaul	struct tl_softc		*sc;
90441656Swpaul	caddr_t			addr;
90539583Swpaul	int			slot;
90639583Swpaul{
90739583Swpaul	int			i;
90839583Swpaul	u_int16_t		regaddr;
90939583Swpaul
91039583Swpaul	regaddr = TL_AREG0_B5 + (slot * ETHER_ADDR_LEN);
91139583Swpaul
91239583Swpaul	for (i = 0; i < ETHER_ADDR_LEN; i++)
91339583Swpaul		tl_dio_write8(sc, regaddr + i, *(addr + i));
91439583Swpaul
91539583Swpaul	return;
91639583Swpaul}
91739583Swpaul
91839583Swpaul/*
91939583Swpaul * XXX In FreeBSD 3.0, multicast addresses are managed using a doubly
92039583Swpaul * linked list. This is fine, except addresses are added from the head
92139583Swpaul * end of the list. We want to arrange for 224.0.0.1 (the "all hosts")
92239583Swpaul * group to always be in the perfect filter, but as more groups are added,
92339583Swpaul * the 224.0.0.1 entry (which is always added first) gets pushed down
92439583Swpaul * the list and ends up at the tail. So after 3 or 4 multicast groups
92539583Swpaul * are added, the all-hosts entry gets pushed out of the perfect filter
92639583Swpaul * and into the hash table.
92739583Swpaul *
92839583Swpaul * Because the multicast list is a doubly-linked list as opposed to a
92939583Swpaul * circular queue, we don't have the ability to just grab the tail of
93039583Swpaul * the list and traverse it backwards. Instead, we have to traverse
93139583Swpaul * the list once to find the tail, then traverse it again backwards to
93239583Swpaul * update the multicast filter.
93339583Swpaul */
93436270Swpaulstatic void tl_setmulti(sc)
93536270Swpaul	struct tl_softc		*sc;
93636270Swpaul{
93736270Swpaul	struct ifnet		*ifp;
93836270Swpaul	u_int32_t		hashes[2] = { 0, 0 };
93939583Swpaul	int			h, i;
94036270Swpaul	struct ifmultiaddr	*ifma;
94139583Swpaul	u_int8_t		dummy[] = { 0, 0, 0, 0, 0 ,0 };
94236270Swpaul	ifp = &sc->arpcom.ac_if;
94336270Swpaul
94439583Swpaul	/* First, zot all the existing filters. */
94539583Swpaul	for (i = 1; i < 4; i++)
94641656Swpaul		tl_setfilt(sc, (caddr_t)&dummy, i);
94739583Swpaul	tl_dio_write32(sc, TL_HASH1, 0);
94839583Swpaul	tl_dio_write32(sc, TL_HASH2, 0);
94939583Swpaul
95039583Swpaul	/* Now program new ones. */
95139583Swpaul	if (ifp->if_flags & IFF_ALLMULTI) {
95236270Swpaul		hashes[0] = 0xFFFFFFFF;
95336270Swpaul		hashes[1] = 0xFFFFFFFF;
95436270Swpaul	} else {
95539583Swpaul		i = 1;
95639583Swpaul		/* First find the tail of the list. */
95736270Swpaul		for (ifma = ifp->if_multiaddrs.lh_first; ifma != NULL;
95836270Swpaul					ifma = ifma->ifma_link.le_next) {
95939583Swpaul			if (ifma->ifma_link.le_next == NULL)
96039583Swpaul				break;
96139583Swpaul		}
96239583Swpaul		/* Now traverse the list backwards. */
96339583Swpaul		for (; ifma != NULL && ifma != (void *)&ifp->if_multiaddrs;
96439583Swpaul			ifma = (struct ifmultiaddr *)ifma->ifma_link.le_prev) {
96536270Swpaul			if (ifma->ifma_addr->sa_family != AF_LINK)
96636270Swpaul				continue;
96739583Swpaul			/*
96839583Swpaul			 * Program the first three multicast groups
96939583Swpaul			 * into the perfect filter. For all others,
97039583Swpaul			 * use the hash table.
97139583Swpaul			 */
97239583Swpaul			if (i < 4) {
97339583Swpaul				tl_setfilt(sc,
97439583Swpaul			LLADDR((struct sockaddr_dl *)ifma->ifma_addr), i);
97539583Swpaul				i++;
97639583Swpaul				continue;
97739583Swpaul			}
97839583Swpaul
97936270Swpaul			h = tl_calchash(
98036270Swpaul				LLADDR((struct sockaddr_dl *)ifma->ifma_addr));
98136270Swpaul			if (h < 32)
98236270Swpaul				hashes[0] |= (1 << h);
98336270Swpaul			else
98436317Swpaul				hashes[1] |= (1 << (h - 32));
98536270Swpaul		}
98636270Swpaul	}
98736270Swpaul
98839583Swpaul	tl_dio_write32(sc, TL_HASH1, hashes[0]);
98939583Swpaul	tl_dio_write32(sc, TL_HASH2, hashes[1]);
99036270Swpaul
99136270Swpaul	return;
99236270Swpaul}
99336270Swpaul
99439583Swpaul/*
99539583Swpaul * This routine is recommended by the ThunderLAN manual to insure that
99639583Swpaul * the internal PHY is powered up correctly. It also recommends a one
99739583Swpaul * second pause at the end to 'wait for the clocks to start' but in my
99839583Swpaul * experience this isn't necessary.
99939583Swpaul */
100050468Swpaulstatic void tl_hardreset(dev)
100150468Swpaul	device_t		dev;
100250468Swpaul{
100339583Swpaul	struct tl_softc		*sc;
100439583Swpaul	int			i;
100550468Swpaul	u_int16_t		flags;
100639583Swpaul
100750468Swpaul	sc = device_get_softc(dev);
100839583Swpaul
100950468Swpaul	tl_mii_sync(sc);
101039583Swpaul
101150468Swpaul	flags = BMCR_LOOP|BMCR_ISO|BMCR_PDOWN;
101239583Swpaul
101350468Swpaul	for (i = 0; i < MII_NPHY; i++)
101450468Swpaul		tl_miibus_writereg(dev, i, MII_BMCR, flags);
101539583Swpaul
101650468Swpaul	tl_miibus_writereg(dev, 31, MII_BMCR, BMCR_ISO);
101739583Swpaul	DELAY(50000);
101850468Swpaul	tl_miibus_writereg(dev, 31, MII_BMCR, BMCR_LOOP|BMCR_ISO);
101939583Swpaul	tl_mii_sync(sc);
102050468Swpaul	while(tl_miibus_readreg(dev, 31, MII_BMCR) & BMCR_RESET);
102139583Swpaul
102250468Swpaul	DELAY(50000);
102339583Swpaul	return;
102439583Swpaul}
102539583Swpaul
102639583Swpaulstatic void tl_softreset(sc, internal)
102739583Swpaul	struct tl_softc		*sc;
102836270Swpaul	int			internal;
102936270Swpaul{
103039583Swpaul        u_int32_t               cmd, dummy, i;
103136270Swpaul
103236270Swpaul        /* Assert the adapter reset bit. */
103339583Swpaul	CMD_SET(sc, TL_CMD_ADRST);
103450468Swpaul
103536270Swpaul        /* Turn off interrupts */
103639583Swpaul	CMD_SET(sc, TL_CMD_INTSOFF);
103736270Swpaul
103836270Swpaul	/* First, clear the stats registers. */
103939583Swpaul	for (i = 0; i < 5; i++)
104039583Swpaul		dummy = tl_dio_read32(sc, TL_TXGOODFRAMES);
104136270Swpaul
104236270Swpaul        /* Clear Areg and Hash registers */
104339583Swpaul	for (i = 0; i < 8; i++)
104439583Swpaul		tl_dio_write32(sc, TL_AREG0_B5, 0x00000000);
104536270Swpaul
104636270Swpaul        /*
104736270Swpaul	 * Set up Netconfig register. Enable one channel and
104836270Swpaul	 * one fragment mode.
104936270Swpaul	 */
105039583Swpaul	tl_dio_setbit16(sc, TL_NETCONFIG, TL_CFG_ONECHAN|TL_CFG_ONEFRAG);
105145155Swpaul	if (internal && !sc->tl_bitrate) {
105239583Swpaul		tl_dio_setbit16(sc, TL_NETCONFIG, TL_CFG_PHYEN);
105336270Swpaul	} else {
105439583Swpaul		tl_dio_clrbit16(sc, TL_NETCONFIG, TL_CFG_PHYEN);
105536270Swpaul	}
105636270Swpaul
105745155Swpaul	/* Handle cards with bitrate devices. */
105845155Swpaul	if (sc->tl_bitrate)
105945155Swpaul		tl_dio_setbit16(sc, TL_NETCONFIG, TL_CFG_BITRATE);
106045155Swpaul
106136270Swpaul	/*
106236270Swpaul	 * Load adapter irq pacing timer and tx threshold.
106336270Swpaul	 * We make the transmit threshold 1 initially but we may
106436270Swpaul	 * change that later.
106536270Swpaul	 */
106639583Swpaul	cmd = CSR_READ_4(sc, TL_HOSTCMD);
106736270Swpaul	cmd |= TL_CMD_NES;
106836270Swpaul	cmd &= ~(TL_CMD_RT|TL_CMD_EOC|TL_CMD_ACK_MASK|TL_CMD_CHSEL_MASK);
106939583Swpaul	CMD_PUT(sc, cmd | (TL_CMD_LDTHR | TX_THR));
107039583Swpaul	CMD_PUT(sc, cmd | (TL_CMD_LDTMR | 0x00000003));
107136270Swpaul
107236270Swpaul        /* Unreset the MII */
107339583Swpaul	tl_dio_setbit(sc, TL_NETSIO, TL_SIO_NMRST);
107436270Swpaul
107536270Swpaul	/* Take the adapter out of reset */
107639583Swpaul	tl_dio_setbit(sc, TL_NETCMD, TL_CMD_NRESET|TL_CMD_NWRAP);
107736270Swpaul
107836270Swpaul	/* Wait for things to settle down a little. */
107936270Swpaul	DELAY(500);
108036270Swpaul
108136270Swpaul        return;
108236270Swpaul}
108336270Swpaul
108436270Swpaul/*
108536270Swpaul * Probe for a ThunderLAN chip. Check the PCI vendor and device IDs
108639583Swpaul * against our list and return its name if we find a match.
108736270Swpaul */
108848992Swpaulstatic int tl_probe(dev)
108948992Swpaul	device_t		dev;
109036270Swpaul{
109136270Swpaul	struct tl_type		*t;
109236270Swpaul
109336270Swpaul	t = tl_devs;
109436270Swpaul
109536270Swpaul	while(t->tl_name != NULL) {
109648992Swpaul		if ((pci_get_vendor(dev) == t->tl_vid) &&
109748992Swpaul		    (pci_get_device(dev) == t->tl_did)) {
109848992Swpaul			device_set_desc(dev, t->tl_name);
109948992Swpaul			return(0);
110048992Swpaul		}
110136270Swpaul		t++;
110236270Swpaul	}
110336270Swpaul
110448992Swpaul	return(ENXIO);
110536270Swpaul}
110636270Swpaul
110748992Swpaulstatic int tl_attach(dev)
110848992Swpaul	device_t		dev;
110936270Swpaul{
111067087Swpaul	int			i;
111136270Swpaul	u_int32_t		command;
111239583Swpaul	u_int16_t		did, vid;
111339583Swpaul	struct tl_type		*t;
111439583Swpaul	struct ifnet		*ifp;
111539583Swpaul	struct tl_softc		*sc;
111648992Swpaul	int			unit, error = 0, rid;
111736270Swpaul
111848992Swpaul	vid = pci_get_vendor(dev);
111948992Swpaul	did = pci_get_device(dev);
112048992Swpaul	sc = device_get_softc(dev);
112148992Swpaul	unit = device_get_unit(dev);
112248992Swpaul	bzero(sc, sizeof(struct tl_softc));
112339583Swpaul
112439583Swpaul	t = tl_devs;
112539583Swpaul	while(t->tl_name != NULL) {
112639583Swpaul		if (vid == t->tl_vid && did == t->tl_did)
112736270Swpaul			break;
112839583Swpaul		t++;
112939583Swpaul	}
113036270Swpaul
113139583Swpaul	if (t->tl_name == NULL) {
113239583Swpaul		printf("tl%d: unknown device!?\n", unit);
113336270Swpaul		goto fail;
113436270Swpaul	}
113536270Swpaul
113636270Swpaul	/*
113736270Swpaul	 * Map control/status registers.
113836270Swpaul	 */
113961041Speter	command = pci_read_config(dev, PCIR_COMMAND, 4);
114039583Swpaul	command |= (PCIM_CMD_PORTEN|PCIM_CMD_MEMEN|PCIM_CMD_BUSMASTEREN);
114161041Speter	pci_write_config(dev, PCIR_COMMAND, command, 4);
114261041Speter	command = pci_read_config(dev, PCIR_COMMAND, 4);
114336270Swpaul
114439583Swpaul#ifdef TL_USEIOSPACE
114539583Swpaul	if (!(command & PCIM_CMD_PORTEN)) {
114639583Swpaul		printf("tl%d: failed to enable I/O ports!\n", unit);
114748992Swpaul		error = ENXIO;
114839583Swpaul		goto fail;
114939583Swpaul	}
115039583Swpaul
115148992Swpaul	rid = TL_PCI_LOIO;
115248992Swpaul	sc->tl_res = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid,
115348992Swpaul		0, ~0, 1, RF_ACTIVE);
115448992Swpaul
115548992Swpaul	/*
115648992Swpaul	 * Some cards have the I/O and memory mapped address registers
115748992Swpaul	 * reversed. Try both combinations before giving up.
115848992Swpaul	 */
115948992Swpaul	if (sc->tl_res == NULL) {
116048992Swpaul		rid = TL_PCI_LOMEM;
116148992Swpaul		sc->tl_res = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid,
116248992Swpaul		    0, ~0, 1, RF_ACTIVE);
116345155Swpaul	}
116439583Swpaul#else
116536270Swpaul	if (!(command & PCIM_CMD_MEMEN)) {
116639583Swpaul		printf("tl%d: failed to enable memory mapping!\n", unit);
116748992Swpaul		error = ENXIO;
116836270Swpaul		goto fail;
116936270Swpaul	}
117036270Swpaul
117148992Swpaul	rid = TL_PCI_LOMEM;
117248992Swpaul	sc->tl_res = bus_alloc_resource(dev, SYS_RES_MEMORY, &rid,
117348992Swpaul	    0, ~0, 1, RF_ACTIVE);
117448992Swpaul	if (sc->tl_res == NULL) {
117548992Swpaul		rid = TL_PCI_LOIO;
117648992Swpaul		sc->tl_res = bus_alloc_resource(dev, SYS_RES_MEMORY, &rid,
117748992Swpaul		    0, ~0, 1, RF_ACTIVE);
117836270Swpaul	}
117939583Swpaul#endif
118036270Swpaul
118148992Swpaul	if (sc->tl_res == NULL) {
118248992Swpaul		printf("tl%d: couldn't map ports/memory\n", unit);
118348992Swpaul		error = ENXIO;
118448992Swpaul		goto fail;
118548992Swpaul	}
118648992Swpaul
118748992Swpaul	sc->tl_btag = rman_get_bustag(sc->tl_res);
118848992Swpaul	sc->tl_bhandle = rman_get_bushandle(sc->tl_res);
118948992Swpaul
119039583Swpaul#ifdef notdef
119139583Swpaul	/*
119239583Swpaul	 * The ThunderLAN manual suggests jacking the PCI latency
119339583Swpaul	 * timer all the way up to its maximum value. I'm not sure
119439583Swpaul	 * if this is really necessary, but what the manual wants,
119539583Swpaul	 * the manual gets.
119639583Swpaul	 */
119748992Swpaul	command = pci_read_config(dev, TL_PCI_LATENCY_TIMER, 4);
119839583Swpaul	command |= 0x0000FF00;
119948992Swpaul	pci_write_config(dev, TL_PCI_LATENCY_TIMER, command, 4);
120039583Swpaul#endif
120136270Swpaul
120236270Swpaul	/* Allocate interrupt */
120348992Swpaul	rid = 0;
120448992Swpaul	sc->tl_irq = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0, ~0, 1,
120548992Swpaul	    RF_SHAREABLE | RF_ACTIVE);
120648992Swpaul
120748992Swpaul	if (sc->tl_irq == NULL) {
120849010Swpaul		bus_release_resource(dev, TL_RES, TL_RID, sc->tl_res);
120939583Swpaul		printf("tl%d: couldn't map interrupt\n", unit);
121048992Swpaul		error = ENXIO;
121136270Swpaul		goto fail;
121236270Swpaul	}
121336270Swpaul
121448992Swpaul	error = bus_setup_intr(dev, sc->tl_irq, INTR_TYPE_NET,
121548992Swpaul	    tl_intr, sc, &sc->tl_intrhand);
121648992Swpaul
121748992Swpaul	if (error) {
121849010Swpaul		bus_release_resource(dev, SYS_RES_IRQ, 0, sc->tl_res);
121949010Swpaul		bus_release_resource(dev, TL_RES, TL_RID, sc->tl_res);
122048992Swpaul		printf("tl%d: couldn't set up irq\n", unit);
122148992Swpaul		goto fail;
122248992Swpaul	}
122348992Swpaul
122436270Swpaul	/*
122551439Swpaul	 * Now allocate memory for the TX and RX lists.
122636270Swpaul	 */
122751439Swpaul	sc->tl_ldata = contigmalloc(sizeof(struct tl_list_data), M_DEVBUF,
122851657Swpaul	    M_NOWAIT, 0, 0xffffffff, PAGE_SIZE, 0);
122939583Swpaul
123051439Swpaul	if (sc->tl_ldata == NULL) {
123149010Swpaul		bus_teardown_intr(dev, sc->tl_irq, sc->tl_intrhand);
123248992Swpaul		bus_release_resource(dev, SYS_RES_IRQ, 0, sc->tl_irq);
123349010Swpaul		bus_release_resource(dev, TL_RES, TL_RID, sc->tl_res);
123439583Swpaul		printf("tl%d: no memory for list buffers!\n", unit);
123548992Swpaul		error = ENXIO;
123636270Swpaul		goto fail;
123736270Swpaul	}
123836270Swpaul
123939583Swpaul	bzero(sc->tl_ldata, sizeof(struct tl_list_data));
124039583Swpaul
124139583Swpaul	sc->tl_unit = unit;
124239583Swpaul	sc->tl_dinfo = t;
124343235Swpaul	if (t->tl_vid == COMPAQ_VENDORID || t->tl_vid == TI_VENDORID)
124439583Swpaul		sc->tl_eeaddr = TL_EEPROM_EADDR;
124539583Swpaul	if (t->tl_vid == OLICOM_VENDORID)
124639583Swpaul		sc->tl_eeaddr = TL_EEPROM_EADDR_OC;
124739583Swpaul
124867087Swpaul	mtx_init(&sc->tl_mtx, "tl", MTX_DEF);
124967087Swpaul	TL_LOCK(sc);
125067087Swpaul
125139583Swpaul	/* Reset the adapter. */
125239583Swpaul	tl_softreset(sc, 1);
125350468Swpaul	tl_hardreset(dev);
125439583Swpaul	tl_softreset(sc, 1);
125539583Swpaul
125638030Swpaul	/*
125739583Swpaul	 * Get station address from the EEPROM.
125839583Swpaul	 */
125939583Swpaul	if (tl_read_eeprom(sc, (caddr_t)&sc->arpcom.ac_enaddr,
126039583Swpaul				sc->tl_eeaddr, ETHER_ADDR_LEN)) {
126149010Swpaul		bus_teardown_intr(dev, sc->tl_irq, sc->tl_intrhand);
126248992Swpaul		bus_release_resource(dev, SYS_RES_IRQ, 0, sc->tl_irq);
126349010Swpaul		bus_release_resource(dev, TL_RES, TL_RID, sc->tl_res);
126451439Swpaul		contigfree(sc->tl_ldata,
126551439Swpaul		    sizeof(struct tl_list_data), M_DEVBUF);
126639583Swpaul		printf("tl%d: failed to read station address\n", unit);
126748992Swpaul		error = ENXIO;
126839583Swpaul		goto fail;
126939583Swpaul	}
127039583Swpaul
127139583Swpaul        /*
127239583Swpaul         * XXX Olicom, in its desire to be different from the
127339583Swpaul         * rest of the world, has done strange things with the
127439583Swpaul         * encoding of the station address in the EEPROM. First
127539583Swpaul         * of all, they store the address at offset 0xF8 rather
127639583Swpaul         * than at 0x83 like the ThunderLAN manual suggests.
127739583Swpaul         * Second, they store the address in three 16-bit words in
127839583Swpaul         * network byte order, as opposed to storing it sequentially
127939583Swpaul         * like all the other ThunderLAN cards. In order to get
128039583Swpaul         * the station address in a form that matches what the Olicom
128139583Swpaul         * diagnostic utility specifies, we have to byte-swap each
128239583Swpaul         * word. To make things even more confusing, neither 00:00:28
128339583Swpaul         * nor 00:00:24 appear in the IEEE OUI database.
128439583Swpaul         */
128539583Swpaul        if (sc->tl_dinfo->tl_vid == OLICOM_VENDORID) {
128639583Swpaul                for (i = 0; i < ETHER_ADDR_LEN; i += 2) {
128739583Swpaul                        u_int16_t               *p;
128839583Swpaul                        p = (u_int16_t *)&sc->arpcom.ac_enaddr[i];
128939583Swpaul                        *p = ntohs(*p);
129039583Swpaul                }
129139583Swpaul        }
129239583Swpaul
129339583Swpaul	/*
129436270Swpaul	 * A ThunderLAN chip was detected. Inform the world.
129536270Swpaul	 */
129639583Swpaul	printf("tl%d: Ethernet address: %6D\n", unit,
129739583Swpaul				sc->arpcom.ac_enaddr, ":");
129836270Swpaul
129939583Swpaul	ifp = &sc->arpcom.ac_if;
130039583Swpaul	ifp->if_softc = sc;
130139583Swpaul	ifp->if_unit = sc->tl_unit;
130239583Swpaul	ifp->if_name = "tl";
130339583Swpaul	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
130439583Swpaul	ifp->if_ioctl = tl_ioctl;
130539583Swpaul	ifp->if_output = ether_output;
130639583Swpaul	ifp->if_start = tl_start;
130739583Swpaul	ifp->if_watchdog = tl_watchdog;
130839583Swpaul	ifp->if_init = tl_init;
130939583Swpaul	ifp->if_mtu = ETHERMTU;
131051439Swpaul	ifp->if_snd.ifq_maxlen = TL_TX_LIST_CNT - 1;
131139583Swpaul	callout_handle_init(&sc->tl_stat_ch);
131239583Swpaul
131339583Swpaul	/* Reset the adapter again. */
131439583Swpaul	tl_softreset(sc, 1);
131550468Swpaul	tl_hardreset(dev);
131639583Swpaul	tl_softreset(sc, 1);
131739583Swpaul
131836270Swpaul	/*
131950462Swpaul	 * Do MII setup. If no PHYs are found, then this is a
132050462Swpaul	 * bitrate ThunderLAN chip that only supports 10baseT
132150462Swpaul	 * and AUI/BNC.
132236270Swpaul	 */
132350462Swpaul	if (mii_phy_probe(dev, &sc->tl_miibus,
132450462Swpaul	    tl_ifmedia_upd, tl_ifmedia_sts)) {
132545155Swpaul		struct ifmedia		*ifm;
132645155Swpaul		sc->tl_bitrate = 1;
132745155Swpaul		ifmedia_init(&sc->ifmedia, 0, tl_ifmedia_upd, tl_ifmedia_sts);
132845155Swpaul		ifmedia_add(&sc->ifmedia, IFM_ETHER|IFM_10_T, 0, NULL);
132945155Swpaul		ifmedia_add(&sc->ifmedia, IFM_ETHER|IFM_10_T|IFM_HDX, 0, NULL);
133045155Swpaul		ifmedia_add(&sc->ifmedia, IFM_ETHER|IFM_10_T|IFM_FDX, 0, NULL);
133145155Swpaul		ifmedia_add(&sc->ifmedia, IFM_ETHER|IFM_10_5, 0, NULL);
133245166Swpaul		ifmedia_set(&sc->ifmedia, IFM_ETHER|IFM_10_T);
133345155Swpaul		/* Reset again, this time setting bitrate mode. */
133445155Swpaul		tl_softreset(sc, 1);
133545155Swpaul		ifm = &sc->ifmedia;
133645155Swpaul		ifm->ifm_media = ifm->ifm_cur->ifm_media;
133745155Swpaul		tl_ifmedia_upd(ifp);
133836270Swpaul	}
133936270Swpaul
134039583Swpaul	/*
134163090Sarchie	 * Call MI attach routine.
134239583Swpaul	 */
134363090Sarchie	ether_ifattach(ifp, ETHER_BPF_SUPPORTED);
134467087Swpaul	TL_UNLOCK(sc);
134567087Swpaul	return(0);
134638030Swpaul
134736270Swpaulfail:
134867087Swpaul	TL_UNLOCK(sc);
134967087Swpaul	mtx_destroy(&sc->tl_mtx);
135048992Swpaul	return(error);
135136270Swpaul}
135236270Swpaul
135348992Swpaulstatic int tl_detach(dev)
135448992Swpaul	device_t		dev;
135548992Swpaul{
135648992Swpaul	struct tl_softc		*sc;
135748992Swpaul	struct ifnet		*ifp;
135848992Swpaul
135948992Swpaul	sc = device_get_softc(dev);
136067087Swpaul	TL_LOCK(sc);
136148992Swpaul	ifp = &sc->arpcom.ac_if;
136248992Swpaul
136348992Swpaul	tl_stop(sc);
136463090Sarchie	ether_ifdetach(ifp, ETHER_BPF_SUPPORTED);
136548992Swpaul
136650462Swpaul	bus_generic_detach(dev);
136750462Swpaul	device_delete_child(dev, sc->tl_miibus);
136850462Swpaul
136951439Swpaul	contigfree(sc->tl_ldata, sizeof(struct tl_list_data), M_DEVBUF);
137050462Swpaul	if (sc->tl_bitrate)
137150462Swpaul		ifmedia_removeall(&sc->ifmedia);
137248992Swpaul
137348992Swpaul	bus_teardown_intr(dev, sc->tl_irq, sc->tl_intrhand);
137448992Swpaul	bus_release_resource(dev, SYS_RES_IRQ, 0, sc->tl_irq);
137549010Swpaul	bus_release_resource(dev, TL_RES, TL_RID, sc->tl_res);
137648992Swpaul
137767087Swpaul	TL_UNLOCK(sc);
137867087Swpaul	mtx_destroy(&sc->tl_mtx);
137948992Swpaul
138048992Swpaul	return(0);
138148992Swpaul}
138248992Swpaul
138336270Swpaul/*
138436270Swpaul * Initialize the transmit lists.
138536270Swpaul */
138636270Swpaulstatic int tl_list_tx_init(sc)
138736270Swpaul	struct tl_softc		*sc;
138836270Swpaul{
138936270Swpaul	struct tl_chain_data	*cd;
139036270Swpaul	struct tl_list_data	*ld;
139136270Swpaul	int			i;
139236270Swpaul
139336270Swpaul	cd = &sc->tl_cdata;
139436270Swpaul	ld = sc->tl_ldata;
139536270Swpaul	for (i = 0; i < TL_TX_LIST_CNT; i++) {
139636270Swpaul		cd->tl_tx_chain[i].tl_ptr = &ld->tl_tx_list[i];
139736270Swpaul		if (i == (TL_TX_LIST_CNT - 1))
139836270Swpaul			cd->tl_tx_chain[i].tl_next = NULL;
139936270Swpaul		else
140036270Swpaul			cd->tl_tx_chain[i].tl_next = &cd->tl_tx_chain[i + 1];
140136270Swpaul	}
140236270Swpaul
140336270Swpaul	cd->tl_tx_free = &cd->tl_tx_chain[0];
140436270Swpaul	cd->tl_tx_tail = cd->tl_tx_head = NULL;
140536270Swpaul	sc->tl_txeoc = 1;
140636270Swpaul
140736270Swpaul	return(0);
140836270Swpaul}
140936270Swpaul
141036270Swpaul/*
141136270Swpaul * Initialize the RX lists and allocate mbufs for them.
141236270Swpaul */
141336270Swpaulstatic int tl_list_rx_init(sc)
141436270Swpaul	struct tl_softc		*sc;
141536270Swpaul{
141636270Swpaul	struct tl_chain_data	*cd;
141736270Swpaul	struct tl_list_data	*ld;
141836270Swpaul	int			i;
141936270Swpaul
142036270Swpaul	cd = &sc->tl_cdata;
142136270Swpaul	ld = sc->tl_ldata;
142236270Swpaul
142340795Swpaul	for (i = 0; i < TL_RX_LIST_CNT; i++) {
142436270Swpaul		cd->tl_rx_chain[i].tl_ptr =
142537626Swpaul			(struct tl_list_onefrag *)&ld->tl_rx_list[i];
142639583Swpaul		if (tl_newbuf(sc, &cd->tl_rx_chain[i]) == ENOBUFS)
142739583Swpaul			return(ENOBUFS);
142840795Swpaul		if (i == (TL_RX_LIST_CNT - 1)) {
142936270Swpaul			cd->tl_rx_chain[i].tl_next = NULL;
143036270Swpaul			ld->tl_rx_list[i].tlist_fptr = 0;
143136270Swpaul		} else {
143236270Swpaul			cd->tl_rx_chain[i].tl_next = &cd->tl_rx_chain[i + 1];
143336270Swpaul			ld->tl_rx_list[i].tlist_fptr =
143436270Swpaul					vtophys(&ld->tl_rx_list[i + 1]);
143536270Swpaul		}
143636270Swpaul	}
143736270Swpaul
143836270Swpaul	cd->tl_rx_head = &cd->tl_rx_chain[0];
143936270Swpaul	cd->tl_rx_tail = &cd->tl_rx_chain[TL_RX_LIST_CNT - 1];
144036270Swpaul
144136270Swpaul	return(0);
144236270Swpaul}
144336270Swpaul
144436270Swpaulstatic int tl_newbuf(sc, c)
144536270Swpaul	struct tl_softc		*sc;
144637626Swpaul	struct tl_chain_onefrag	*c;
144736270Swpaul{
144836270Swpaul	struct mbuf		*m_new = NULL;
144936270Swpaul
145036270Swpaul	MGETHDR(m_new, M_DONTWAIT, MT_DATA);
145136270Swpaul	if (m_new == NULL) {
145256060Swpaul		printf("tl%d: no memory for rx list -- packet dropped!\n",
145336270Swpaul				sc->tl_unit);
145436270Swpaul		return(ENOBUFS);
145536270Swpaul	}
145636270Swpaul
145736270Swpaul	MCLGET(m_new, M_DONTWAIT);
145836270Swpaul	if (!(m_new->m_flags & M_EXT)) {
145956060Swpaul		printf("tl%d: no memory for rx list -- packet dropped!\n",
146039583Swpaul				 sc->tl_unit);
146136270Swpaul		m_freem(m_new);
146236270Swpaul		return(ENOBUFS);
146336270Swpaul	}
146436270Swpaul
146545155Swpaul#ifdef __alpha__
146645155Swpaul	m_new->m_data += 2;
146745155Swpaul#endif
146845155Swpaul
146936270Swpaul	c->tl_mbuf = m_new;
147036270Swpaul	c->tl_next = NULL;
147136270Swpaul	c->tl_ptr->tlist_frsize = MCLBYTES;
147236270Swpaul	c->tl_ptr->tlist_fptr = 0;
147337626Swpaul	c->tl_ptr->tl_frag.tlist_dadr = vtophys(mtod(m_new, caddr_t));
147437626Swpaul	c->tl_ptr->tl_frag.tlist_dcnt = MCLBYTES;
147556060Swpaul	c->tl_ptr->tlist_cstat = TL_CSTAT_READY;
147636270Swpaul
147736270Swpaul	return(0);
147836270Swpaul}
147936270Swpaul/*
148036270Swpaul * Interrupt handler for RX 'end of frame' condition (EOF). This
148136270Swpaul * tells us that a full ethernet frame has been captured and we need
148236270Swpaul * to handle it.
148336270Swpaul *
148436270Swpaul * Reception is done using 'lists' which consist of a header and a
148536270Swpaul * series of 10 data count/data address pairs that point to buffers.
148636270Swpaul * Initially you're supposed to create a list, populate it with pointers
148736270Swpaul * to buffers, then load the physical address of the list into the
148836270Swpaul * ch_parm register. The adapter is then supposed to DMA the received
148936270Swpaul * frame into the buffers for you.
149036270Swpaul *
149136270Swpaul * To make things as fast as possible, we have the chip DMA directly
149236270Swpaul * into mbufs. This saves us from having to do a buffer copy: we can
149336270Swpaul * just hand the mbufs directly to ether_input(). Once the frame has
149436270Swpaul * been sent on its way, the 'list' structure is assigned a new buffer
149536270Swpaul * and moved to the end of the RX chain. As long we we stay ahead of
149636270Swpaul * the chip, it will always think it has an endless receive channel.
149736270Swpaul *
149836270Swpaul * If we happen to fall behind and the chip manages to fill up all of
149936270Swpaul * the buffers, it will generate an end of channel interrupt and wait
150036270Swpaul * for us to empty the chain and restart the receiver.
150136270Swpaul */
150236270Swpaulstatic int tl_intvec_rxeof(xsc, type)
150336270Swpaul	void			*xsc;
150436270Swpaul	u_int32_t		type;
150536270Swpaul{
150636270Swpaul	struct tl_softc		*sc;
150736270Swpaul	int			r = 0, total_len = 0;
150836270Swpaul	struct ether_header	*eh;
150936270Swpaul	struct mbuf		*m;
151036270Swpaul	struct ifnet		*ifp;
151137626Swpaul	struct tl_chain_onefrag	*cur_rx;
151236270Swpaul
151336270Swpaul	sc = xsc;
151436270Swpaul	ifp = &sc->arpcom.ac_if;
151536270Swpaul
151656060Swpaul	while(sc->tl_cdata.tl_rx_head != NULL) {
151756060Swpaul		cur_rx = sc->tl_cdata.tl_rx_head;
151856060Swpaul		if (!(cur_rx->tl_ptr->tlist_cstat & TL_CSTAT_FRAMECMP))
151956060Swpaul			break;
152036270Swpaul		r++;
152136270Swpaul		sc->tl_cdata.tl_rx_head = cur_rx->tl_next;
152236270Swpaul		m = cur_rx->tl_mbuf;
152336270Swpaul		total_len = cur_rx->tl_ptr->tlist_frsize;
152436270Swpaul
152539583Swpaul		if (tl_newbuf(sc, cur_rx) == ENOBUFS) {
152639583Swpaul			ifp->if_ierrors++;
152739583Swpaul			cur_rx->tl_ptr->tlist_frsize = MCLBYTES;
152839583Swpaul			cur_rx->tl_ptr->tlist_cstat = TL_CSTAT_READY;
152939583Swpaul			cur_rx->tl_ptr->tl_frag.tlist_dcnt = MCLBYTES;
153039583Swpaul			continue;
153139583Swpaul		}
153236270Swpaul
153336270Swpaul		sc->tl_cdata.tl_rx_tail->tl_ptr->tlist_fptr =
153436270Swpaul						vtophys(cur_rx->tl_ptr);
153536270Swpaul		sc->tl_cdata.tl_rx_tail->tl_next = cur_rx;
153636270Swpaul		sc->tl_cdata.tl_rx_tail = cur_rx;
153736270Swpaul
153836270Swpaul		eh = mtod(m, struct ether_header *);
153936270Swpaul		m->m_pkthdr.rcvif = ifp;
154036270Swpaul
154137626Swpaul		/*
154237626Swpaul		 * Note: when the ThunderLAN chip is in 'capture all
154337626Swpaul		 * frames' mode, it will receive its own transmissions.
154437626Swpaul		 * We drop don't need to process our own transmissions,
154537626Swpaul		 * so we drop them here and continue.
154637626Swpaul		 */
154739583Swpaul		/*if (ifp->if_flags & IFF_PROMISC && */
154839583Swpaul		if (!bcmp(eh->ether_shost, sc->arpcom.ac_enaddr,
154937626Swpaul		 					ETHER_ADDR_LEN)) {
155037626Swpaul				m_freem(m);
155137626Swpaul				continue;
155237626Swpaul		}
155337626Swpaul
155436270Swpaul		/* Remove header from mbuf and pass it on. */
155536270Swpaul		m->m_pkthdr.len = m->m_len =
155636270Swpaul				total_len - sizeof(struct ether_header);
155736270Swpaul		m->m_data += sizeof(struct ether_header);
155836270Swpaul		ether_input(ifp, eh, m);
155936270Swpaul	}
156036270Swpaul
156136270Swpaul	return(r);
156236270Swpaul}
156336270Swpaul
156436270Swpaul/*
156536270Swpaul * The RX-EOC condition hits when the ch_parm address hasn't been
156636270Swpaul * initialized or the adapter reached a list with a forward pointer
156736270Swpaul * of 0 (which indicates the end of the chain). In our case, this means
156836270Swpaul * the card has hit the end of the receive buffer chain and we need to
156936270Swpaul * empty out the buffers and shift the pointer back to the beginning again.
157036270Swpaul */
157136270Swpaulstatic int tl_intvec_rxeoc(xsc, type)
157236270Swpaul	void			*xsc;
157336270Swpaul	u_int32_t		type;
157436270Swpaul{
157536270Swpaul	struct tl_softc		*sc;
157636270Swpaul	int			r;
157756060Swpaul	struct tl_chain_data	*cd;
157836270Swpaul
157956060Swpaul
158036270Swpaul	sc = xsc;
158156060Swpaul	cd = &sc->tl_cdata;
158236270Swpaul
158336270Swpaul	/* Flush out the receive queue and ack RXEOF interrupts. */
158436270Swpaul	r = tl_intvec_rxeof(xsc, type);
158539583Swpaul	CMD_PUT(sc, TL_CMD_ACK | r | (type & ~(0x00100000)));
158636270Swpaul	r = 1;
158756060Swpaul	cd->tl_rx_head = &cd->tl_rx_chain[0];
158856060Swpaul	cd->tl_rx_tail = &cd->tl_rx_chain[TL_RX_LIST_CNT - 1];
158939583Swpaul	CSR_WRITE_4(sc, TL_CH_PARM, vtophys(sc->tl_cdata.tl_rx_head->tl_ptr));
159036270Swpaul	r |= (TL_CMD_GO|TL_CMD_RT);
159136270Swpaul	return(r);
159236270Swpaul}
159336270Swpaul
159436270Swpaulstatic int tl_intvec_txeof(xsc, type)
159536270Swpaul	void			*xsc;
159636270Swpaul	u_int32_t		type;
159736270Swpaul{
159836270Swpaul	struct tl_softc		*sc;
159936270Swpaul	int			r = 0;
160036270Swpaul	struct tl_chain		*cur_tx;
160136270Swpaul
160236270Swpaul	sc = xsc;
160336270Swpaul
160436270Swpaul	/*
160536270Swpaul	 * Go through our tx list and free mbufs for those
160636270Swpaul	 * frames that have been sent.
160736270Swpaul	 */
160836270Swpaul	while (sc->tl_cdata.tl_tx_head != NULL) {
160936270Swpaul		cur_tx = sc->tl_cdata.tl_tx_head;
161036270Swpaul		if (!(cur_tx->tl_ptr->tlist_cstat & TL_CSTAT_FRAMECMP))
161136270Swpaul			break;
161236270Swpaul		sc->tl_cdata.tl_tx_head = cur_tx->tl_next;
161336270Swpaul
161436270Swpaul		r++;
161536270Swpaul		m_freem(cur_tx->tl_mbuf);
161636270Swpaul		cur_tx->tl_mbuf = NULL;
161736270Swpaul
161836270Swpaul		cur_tx->tl_next = sc->tl_cdata.tl_tx_free;
161936270Swpaul		sc->tl_cdata.tl_tx_free = cur_tx;
162037626Swpaul		if (!cur_tx->tl_ptr->tlist_fptr)
162137626Swpaul			break;
162236270Swpaul	}
162336270Swpaul
162436270Swpaul	return(r);
162536270Swpaul}
162636270Swpaul
162736270Swpaul/*
162836270Swpaul * The transmit end of channel interrupt. The adapter triggers this
162936270Swpaul * interrupt to tell us it hit the end of the current transmit list.
163036270Swpaul *
163136270Swpaul * A note about this: it's possible for a condition to arise where
163236270Swpaul * tl_start() may try to send frames between TXEOF and TXEOC interrupts.
163336270Swpaul * You have to avoid this since the chip expects things to go in a
163436270Swpaul * particular order: transmit, acknowledge TXEOF, acknowledge TXEOC.
163536270Swpaul * When the TXEOF handler is called, it will free all of the transmitted
163636270Swpaul * frames and reset the tx_head pointer to NULL. However, a TXEOC
163736270Swpaul * interrupt should be received and acknowledged before any more frames
163836270Swpaul * are queued for transmission. If tl_statrt() is called after TXEOF
163936270Swpaul * resets the tx_head pointer but _before_ the TXEOC interrupt arrives,
164036270Swpaul * it could attempt to issue a transmit command prematurely.
164136270Swpaul *
164236270Swpaul * To guard against this, tl_start() will only issue transmit commands
164336270Swpaul * if the tl_txeoc flag is set, and only the TXEOC interrupt handler
164436270Swpaul * can set this flag once tl_start() has cleared it.
164536270Swpaul */
164636270Swpaulstatic int tl_intvec_txeoc(xsc, type)
164736270Swpaul	void			*xsc;
164836270Swpaul	u_int32_t		type;
164936270Swpaul{
165036270Swpaul	struct tl_softc		*sc;
165136270Swpaul	struct ifnet		*ifp;
165236270Swpaul	u_int32_t		cmd;
165336270Swpaul
165436270Swpaul	sc = xsc;
165536270Swpaul	ifp = &sc->arpcom.ac_if;
165636270Swpaul
165736270Swpaul	/* Clear the timeout timer. */
165836270Swpaul	ifp->if_timer = 0;
165936270Swpaul
166036270Swpaul	if (sc->tl_cdata.tl_tx_head == NULL) {
166136270Swpaul		ifp->if_flags &= ~IFF_OACTIVE;
166236270Swpaul		sc->tl_cdata.tl_tx_tail = NULL;
166336270Swpaul		sc->tl_txeoc = 1;
166436270Swpaul	} else {
166536270Swpaul		sc->tl_txeoc = 0;
166636270Swpaul		/* First we have to ack the EOC interrupt. */
166739583Swpaul		CMD_PUT(sc, TL_CMD_ACK | 0x00000001 | type);
166836270Swpaul		/* Then load the address of the next TX list. */
166939583Swpaul		CSR_WRITE_4(sc, TL_CH_PARM,
167051439Swpaul		    vtophys(sc->tl_cdata.tl_tx_head->tl_ptr));
167136270Swpaul		/* Restart TX channel. */
167239583Swpaul		cmd = CSR_READ_4(sc, TL_HOSTCMD);
167336270Swpaul		cmd &= ~TL_CMD_RT;
167436270Swpaul		cmd |= TL_CMD_GO|TL_CMD_INTSON;
167539583Swpaul		CMD_PUT(sc, cmd);
167636270Swpaul		return(0);
167736270Swpaul	}
167836270Swpaul
167936270Swpaul	return(1);
168036270Swpaul}
168136270Swpaul
168236270Swpaulstatic int tl_intvec_adchk(xsc, type)
168336270Swpaul	void			*xsc;
168436270Swpaul	u_int32_t		type;
168536270Swpaul{
168636270Swpaul	struct tl_softc		*sc;
168736270Swpaul
168836270Swpaul	sc = xsc;
168936270Swpaul
169039627Swpaul	if (type)
169139627Swpaul		printf("tl%d: adapter check: %x\n", sc->tl_unit,
169241656Swpaul			(unsigned int)CSR_READ_4(sc, TL_CH_PARM));
169336270Swpaul
169439583Swpaul	tl_softreset(sc, 1);
169537626Swpaul	tl_stop(sc);
169636270Swpaul	tl_init(sc);
169739583Swpaul	CMD_SET(sc, TL_CMD_INTSON);
169836270Swpaul
169936270Swpaul	return(0);
170036270Swpaul}
170136270Swpaul
170236270Swpaulstatic int tl_intvec_netsts(xsc, type)
170336270Swpaul	void			*xsc;
170436270Swpaul	u_int32_t		type;
170536270Swpaul{
170636270Swpaul	struct tl_softc		*sc;
170736270Swpaul	u_int16_t		netsts;
170836270Swpaul
170936270Swpaul	sc = xsc;
171036270Swpaul
171139583Swpaul	netsts = tl_dio_read16(sc, TL_NETSTS);
171239583Swpaul	tl_dio_write16(sc, TL_NETSTS, netsts);
171336270Swpaul
171436270Swpaul	printf("tl%d: network status: %x\n", sc->tl_unit, netsts);
171536270Swpaul
171636270Swpaul	return(1);
171736270Swpaul}
171836270Swpaul
171939583Swpaulstatic void tl_intr(xsc)
172039583Swpaul	void			*xsc;
172136270Swpaul{
172236270Swpaul	struct tl_softc		*sc;
172336270Swpaul	struct ifnet		*ifp;
172436270Swpaul	int			r = 0;
172536270Swpaul	u_int32_t		type = 0;
172636270Swpaul	u_int16_t		ints = 0;
172736270Swpaul	u_int8_t		ivec = 0;
172836270Swpaul
172939583Swpaul	sc = xsc;
173067087Swpaul	TL_LOCK(sc);
173136270Swpaul
173236270Swpaul	/* Disable interrupts */
173339583Swpaul	ints = CSR_READ_2(sc, TL_HOST_INT);
173439583Swpaul	CSR_WRITE_2(sc, TL_HOST_INT, ints);
173536270Swpaul	type = (ints << 16) & 0xFFFF0000;
173636270Swpaul	ivec = (ints & TL_VEC_MASK) >> 5;
173736270Swpaul	ints = (ints & TL_INT_MASK) >> 2;
173836270Swpaul
173936270Swpaul	ifp = &sc->arpcom.ac_if;
174036270Swpaul
174136270Swpaul	switch(ints) {
174236270Swpaul	case (TL_INTR_INVALID):
174339583Swpaul#ifdef DIAGNOSTIC
174439583Swpaul		printf("tl%d: got an invalid interrupt!\n", sc->tl_unit);
174539583Swpaul#endif
174639583Swpaul		/* Re-enable interrupts but don't ack this one. */
174739583Swpaul		CMD_PUT(sc, type);
174839583Swpaul		r = 0;
174936270Swpaul		break;
175036270Swpaul	case (TL_INTR_TXEOF):
175136270Swpaul		r = tl_intvec_txeof((void *)sc, type);
175236270Swpaul		break;
175336270Swpaul	case (TL_INTR_TXEOC):
175436270Swpaul		r = tl_intvec_txeoc((void *)sc, type);
175536270Swpaul		break;
175636270Swpaul	case (TL_INTR_STATOFLOW):
175739583Swpaul		tl_stats_update(sc);
175839583Swpaul		r = 1;
175936270Swpaul		break;
176036270Swpaul	case (TL_INTR_RXEOF):
176136270Swpaul		r = tl_intvec_rxeof((void *)sc, type);
176236270Swpaul		break;
176336270Swpaul	case (TL_INTR_DUMMY):
176439583Swpaul		printf("tl%d: got a dummy interrupt\n", sc->tl_unit);
176539583Swpaul		r = 1;
176636270Swpaul		break;
176736270Swpaul	case (TL_INTR_ADCHK):
176836270Swpaul		if (ivec)
176936270Swpaul			r = tl_intvec_adchk((void *)sc, type);
177036270Swpaul		else
177136270Swpaul			r = tl_intvec_netsts((void *)sc, type);
177236270Swpaul		break;
177336270Swpaul	case (TL_INTR_RXEOC):
177436270Swpaul		r = tl_intvec_rxeoc((void *)sc, type);
177536270Swpaul		break;
177636270Swpaul	default:
177736270Swpaul		printf("tl%d: bogus interrupt type\n", ifp->if_unit);
177836270Swpaul		break;
177936270Swpaul	}
178036270Swpaul
178136270Swpaul	/* Re-enable interrupts */
178237626Swpaul	if (r) {
178339583Swpaul		CMD_PUT(sc, TL_CMD_ACK | r | type);
178437626Swpaul	}
178536270Swpaul
178637626Swpaul	if (ifp->if_snd.ifq_head != NULL)
178737626Swpaul		tl_start(ifp);
178837626Swpaul
178967087Swpaul	TL_UNLOCK(sc);
179067087Swpaul
179136270Swpaul	return;
179236270Swpaul}
179336270Swpaul
179436270Swpaulstatic void tl_stats_update(xsc)
179536270Swpaul	void			*xsc;
179636270Swpaul{
179736270Swpaul	struct tl_softc		*sc;
179836270Swpaul	struct ifnet		*ifp;
179936270Swpaul	struct tl_stats		tl_stats;
180050462Swpaul	struct mii_data		*mii;
180136270Swpaul	u_int32_t		*p;
180236270Swpaul
180336270Swpaul	bzero((char *)&tl_stats, sizeof(struct tl_stats));
180436270Swpaul
180536270Swpaul	sc = xsc;
180667087Swpaul	TL_LOCK(sc);
180736270Swpaul	ifp = &sc->arpcom.ac_if;
180836270Swpaul
180936270Swpaul	p = (u_int32_t *)&tl_stats;
181036270Swpaul
181139583Swpaul	CSR_WRITE_2(sc, TL_DIO_ADDR, TL_TXGOODFRAMES|TL_DIO_ADDR_INC);
181239583Swpaul	*p++ = CSR_READ_4(sc, TL_DIO_DATA);
181339583Swpaul	*p++ = CSR_READ_4(sc, TL_DIO_DATA);
181439583Swpaul	*p++ = CSR_READ_4(sc, TL_DIO_DATA);
181539583Swpaul	*p++ = CSR_READ_4(sc, TL_DIO_DATA);
181639583Swpaul	*p++ = CSR_READ_4(sc, TL_DIO_DATA);
181736270Swpaul
181836270Swpaul	ifp->if_opackets += tl_tx_goodframes(tl_stats);
181936270Swpaul	ifp->if_collisions += tl_stats.tl_tx_single_collision +
182036270Swpaul				tl_stats.tl_tx_multi_collision;
182136270Swpaul	ifp->if_ipackets += tl_rx_goodframes(tl_stats);
182236270Swpaul	ifp->if_ierrors += tl_stats.tl_crc_errors + tl_stats.tl_code_errors +
182336270Swpaul			    tl_rx_overrun(tl_stats);
182436270Swpaul	ifp->if_oerrors += tl_tx_underrun(tl_stats);
182536270Swpaul
182651439Swpaul	if (tl_tx_underrun(tl_stats)) {
182751439Swpaul		u_int8_t		tx_thresh;
182851439Swpaul		tx_thresh = tl_dio_read8(sc, TL_ACOMMIT) & TL_AC_TXTHRESH;
182951439Swpaul		if (tx_thresh != TL_AC_TXTHRESH_WHOLEPKT) {
183051439Swpaul			tx_thresh >>= 4;
183151439Swpaul			tx_thresh++;
183251439Swpaul			printf("tl%d: tx underrun -- increasing "
183351439Swpaul			    "tx threshold to %d bytes\n", sc->tl_unit,
183451439Swpaul			    (64 * (tx_thresh * 4)));
183551439Swpaul			tl_dio_clrbit(sc, TL_ACOMMIT, TL_AC_TXTHRESH);
183651439Swpaul			tl_dio_setbit(sc, TL_ACOMMIT, tx_thresh << 4);
183751439Swpaul		}
183851439Swpaul	}
183951439Swpaul
184036270Swpaul	sc->tl_stat_ch = timeout(tl_stats_update, sc, hz);
184136302Swpaul
184250462Swpaul	if (!sc->tl_bitrate) {
184350462Swpaul		mii = device_get_softc(sc->tl_miibus);
184450462Swpaul		mii_tick(mii);
184550462Swpaul	}
184650462Swpaul
184767087Swpaul	TL_UNLOCK(sc);
184848992Swpaul
184936302Swpaul	return;
185036270Swpaul}
185136270Swpaul
185236270Swpaul/*
185336270Swpaul * Encapsulate an mbuf chain in a list by coupling the mbuf data
185436270Swpaul * pointers to the fragment pointers.
185536270Swpaul */
185636270Swpaulstatic int tl_encap(sc, c, m_head)
185736270Swpaul	struct tl_softc		*sc;
185836270Swpaul	struct tl_chain		*c;
185936270Swpaul	struct mbuf		*m_head;
186036270Swpaul{
186136270Swpaul	int			frag = 0;
186236270Swpaul	struct tl_frag		*f = NULL;
186336270Swpaul	int			total_len;
186436270Swpaul	struct mbuf		*m;
186536270Swpaul
186636270Swpaul	/*
186736270Swpaul 	 * Start packing the mbufs in this chain into
186836270Swpaul	 * the fragment pointers. Stop when we run out
186936270Swpaul 	 * of fragments or hit the end of the mbuf chain.
187036270Swpaul	 */
187136270Swpaul	m = m_head;
187236270Swpaul	total_len = 0;
187336270Swpaul
187436270Swpaul	for (m = m_head, frag = 0; m != NULL; m = m->m_next) {
187536270Swpaul		if (m->m_len != 0) {
187636270Swpaul			if (frag == TL_MAXFRAGS)
187736270Swpaul				break;
187836270Swpaul			total_len+= m->m_len;
187936270Swpaul			c->tl_ptr->tl_frag[frag].tlist_dadr =
188036270Swpaul				vtophys(mtod(m, vm_offset_t));
188136270Swpaul			c->tl_ptr->tl_frag[frag].tlist_dcnt = m->m_len;
188236270Swpaul			frag++;
188336270Swpaul		}
188436270Swpaul	}
188536270Swpaul
188636270Swpaul	/*
188736270Swpaul	 * Handle special cases.
188836270Swpaul	 * Special case #1: we used up all 10 fragments, but
188936270Swpaul	 * we have more mbufs left in the chain. Copy the
189036270Swpaul	 * data into an mbuf cluster. Note that we don't
189136270Swpaul	 * bother clearing the values in the other fragment
189236270Swpaul	 * pointers/counters; it wouldn't gain us anything,
189336270Swpaul	 * and would waste cycles.
189436270Swpaul	 */
189536270Swpaul	if (m != NULL) {
189636270Swpaul		struct mbuf		*m_new = NULL;
189736270Swpaul
189836270Swpaul		MGETHDR(m_new, M_DONTWAIT, MT_DATA);
189936270Swpaul		if (m_new == NULL) {
190056060Swpaul			printf("tl%d: no memory for tx list\n", sc->tl_unit);
190136270Swpaul			return(1);
190236270Swpaul		}
190336270Swpaul		if (m_head->m_pkthdr.len > MHLEN) {
190436270Swpaul			MCLGET(m_new, M_DONTWAIT);
190536270Swpaul			if (!(m_new->m_flags & M_EXT)) {
190636270Swpaul				m_freem(m_new);
190756060Swpaul				printf("tl%d: no memory for tx list\n",
190836270Swpaul				sc->tl_unit);
190936270Swpaul				return(1);
191036270Swpaul			}
191136270Swpaul		}
191236270Swpaul		m_copydata(m_head, 0, m_head->m_pkthdr.len,
191336270Swpaul					mtod(m_new, caddr_t));
191436270Swpaul		m_new->m_pkthdr.len = m_new->m_len = m_head->m_pkthdr.len;
191536270Swpaul		m_freem(m_head);
191636270Swpaul		m_head = m_new;
191736270Swpaul		f = &c->tl_ptr->tl_frag[0];
191836270Swpaul		f->tlist_dadr = vtophys(mtod(m_new, caddr_t));
191936270Swpaul		f->tlist_dcnt = total_len = m_new->m_len;
192036270Swpaul		frag = 1;
192136270Swpaul	}
192236270Swpaul
192336270Swpaul	/*
192436270Swpaul	 * Special case #2: the frame is smaller than the minimum
192536270Swpaul	 * frame size. We have to pad it to make the chip happy.
192636270Swpaul	 */
192736270Swpaul	if (total_len < TL_MIN_FRAMELEN) {
192836270Swpaul		if (frag == TL_MAXFRAGS)
192939583Swpaul			printf("tl%d: all frags filled but "
193039583Swpaul				"frame still to small!\n", sc->tl_unit);
193136270Swpaul		f = &c->tl_ptr->tl_frag[frag];
193236270Swpaul		f->tlist_dcnt = TL_MIN_FRAMELEN - total_len;
193336270Swpaul		f->tlist_dadr = vtophys(&sc->tl_ldata->tl_pad);
193436270Swpaul		total_len += f->tlist_dcnt;
193536270Swpaul		frag++;
193636270Swpaul	}
193736270Swpaul
193836270Swpaul	c->tl_mbuf = m_head;
193936270Swpaul	c->tl_ptr->tl_frag[frag - 1].tlist_dcnt |= TL_LAST_FRAG;
194036270Swpaul	c->tl_ptr->tlist_frsize = total_len;
194136270Swpaul	c->tl_ptr->tlist_cstat = TL_CSTAT_READY;
194236270Swpaul	c->tl_ptr->tlist_fptr = 0;
194336270Swpaul
194436270Swpaul	return(0);
194536270Swpaul}
194636270Swpaul
194736270Swpaul/*
194836270Swpaul * Main transmit routine. To avoid having to do mbuf copies, we put pointers
194936270Swpaul * to the mbuf data regions directly in the transmit lists. We also save a
195036270Swpaul * copy of the pointers since the transmit list fragment pointers are
195136270Swpaul * physical addresses.
195236270Swpaul */
195336270Swpaulstatic void tl_start(ifp)
195436270Swpaul	struct ifnet		*ifp;
195536270Swpaul{
195636270Swpaul	struct tl_softc		*sc;
195736270Swpaul	struct mbuf		*m_head = NULL;
195836270Swpaul	u_int32_t		cmd;
195936270Swpaul	struct tl_chain		*prev = NULL, *cur_tx = NULL, *start_tx;
196036270Swpaul
196136270Swpaul	sc = ifp->if_softc;
196267087Swpaul	TL_LOCK(sc);
196336270Swpaul
196436270Swpaul	/*
196536270Swpaul	 * Check for an available queue slot. If there are none,
196636270Swpaul	 * punt.
196736270Swpaul	 */
196836270Swpaul	if (sc->tl_cdata.tl_tx_free == NULL) {
196936270Swpaul		ifp->if_flags |= IFF_OACTIVE;
197067087Swpaul		TL_UNLOCK(sc);
197136270Swpaul		return;
197236270Swpaul	}
197336270Swpaul
197436270Swpaul	start_tx = sc->tl_cdata.tl_tx_free;
197536270Swpaul
197636270Swpaul	while(sc->tl_cdata.tl_tx_free != NULL) {
197736270Swpaul		IF_DEQUEUE(&ifp->if_snd, m_head);
197836270Swpaul		if (m_head == NULL)
197936270Swpaul			break;
198036270Swpaul
198136270Swpaul		/* Pick a chain member off the free list. */
198236270Swpaul		cur_tx = sc->tl_cdata.tl_tx_free;
198336270Swpaul		sc->tl_cdata.tl_tx_free = cur_tx->tl_next;
198436270Swpaul
198536270Swpaul		cur_tx->tl_next = NULL;
198636270Swpaul
198736270Swpaul		/* Pack the data into the list. */
198836270Swpaul		tl_encap(sc, cur_tx, m_head);
198936270Swpaul
199036270Swpaul		/* Chain it together */
199136270Swpaul		if (prev != NULL) {
199236270Swpaul			prev->tl_next = cur_tx;
199336270Swpaul			prev->tl_ptr->tlist_fptr = vtophys(cur_tx->tl_ptr);
199436270Swpaul		}
199536270Swpaul		prev = cur_tx;
199636270Swpaul
199736270Swpaul		/*
199836270Swpaul		 * If there's a BPF listener, bounce a copy of this frame
199936270Swpaul		 * to him.
200036270Swpaul		 */
200136270Swpaul		if (ifp->if_bpf)
200236270Swpaul			bpf_mtap(ifp, cur_tx->tl_mbuf);
200336270Swpaul	}
200436270Swpaul
200536270Swpaul	/*
200641526Swpaul	 * If there are no packets queued, bail.
200741526Swpaul	 */
200867087Swpaul	if (cur_tx == NULL) {
200967087Swpaul		TL_UNLOCK(sc);
201041526Swpaul		return;
201167087Swpaul	}
201241526Swpaul
201341526Swpaul	/*
201436270Swpaul	 * That's all we can stands, we can't stands no more.
201536270Swpaul	 * If there are no other transfers pending, then issue the
201636270Swpaul	 * TX GO command to the adapter to start things moving.
201736270Swpaul	 * Otherwise, just leave the data in the queue and let
201836270Swpaul	 * the EOF/EOC interrupt handler send.
201936270Swpaul	 */
202036270Swpaul	if (sc->tl_cdata.tl_tx_head == NULL) {
202136270Swpaul		sc->tl_cdata.tl_tx_head = start_tx;
202236270Swpaul		sc->tl_cdata.tl_tx_tail = cur_tx;
202339583Swpaul
202436270Swpaul		if (sc->tl_txeoc) {
202536270Swpaul			sc->tl_txeoc = 0;
202639583Swpaul			CSR_WRITE_4(sc, TL_CH_PARM, vtophys(start_tx->tl_ptr));
202739583Swpaul			cmd = CSR_READ_4(sc, TL_HOSTCMD);
202836270Swpaul			cmd &= ~TL_CMD_RT;
202936270Swpaul			cmd |= TL_CMD_GO|TL_CMD_INTSON;
203039583Swpaul			CMD_PUT(sc, cmd);
203136270Swpaul		}
203236270Swpaul	} else {
203336270Swpaul		sc->tl_cdata.tl_tx_tail->tl_next = start_tx;
203442146Swpaul		sc->tl_cdata.tl_tx_tail = cur_tx;
203536270Swpaul	}
203636270Swpaul
203736270Swpaul	/*
203836270Swpaul	 * Set a timeout in case the chip goes out to lunch.
203936270Swpaul	 */
204036270Swpaul	ifp->if_timer = 5;
204167087Swpaul	TL_UNLOCK(sc);
204236270Swpaul
204336270Swpaul	return;
204436270Swpaul}
204536270Swpaul
204636270Swpaulstatic void tl_init(xsc)
204736270Swpaul	void			*xsc;
204836270Swpaul{
204936270Swpaul	struct tl_softc		*sc = xsc;
205036270Swpaul	struct ifnet		*ifp = &sc->arpcom.ac_if;
205150462Swpaul	struct mii_data		*mii;
205236270Swpaul
205367087Swpaul	TL_LOCK(sc);
205436270Swpaul
205536270Swpaul	ifp = &sc->arpcom.ac_if;
205636270Swpaul
205736270Swpaul	/*
205836270Swpaul	 * Cancel pending I/O.
205936270Swpaul	 */
206036270Swpaul	tl_stop(sc);
206136270Swpaul
206251439Swpaul	/* Initialize TX FIFO threshold */
206351439Swpaul	tl_dio_clrbit(sc, TL_ACOMMIT, TL_AC_TXTHRESH);
206451439Swpaul	tl_dio_setbit(sc, TL_ACOMMIT, TL_AC_TXTHRESH_16LONG);
206551439Swpaul
206651439Swpaul        /* Set PCI burst size */
206751439Swpaul	tl_dio_write8(sc, TL_BSIZEREG, TL_RXBURST_16LONG|TL_TXBURST_16LONG);
206851439Swpaul
206936270Swpaul	/*
207036270Swpaul	 * Set 'capture all frames' bit for promiscuous mode.
207136270Swpaul	 */
207239583Swpaul	if (ifp->if_flags & IFF_PROMISC)
207339583Swpaul		tl_dio_setbit(sc, TL_NETCMD, TL_CMD_CAF);
207439583Swpaul	else
207539583Swpaul		tl_dio_clrbit(sc, TL_NETCMD, TL_CMD_CAF);
207636270Swpaul
207736270Swpaul	/*
207836270Swpaul	 * Set capture broadcast bit to capture broadcast frames.
207936270Swpaul	 */
208039583Swpaul	if (ifp->if_flags & IFF_BROADCAST)
208139583Swpaul		tl_dio_clrbit(sc, TL_NETCMD, TL_CMD_NOBRX);
208239583Swpaul	else
208339583Swpaul		tl_dio_setbit(sc, TL_NETCMD, TL_CMD_NOBRX);
208436270Swpaul
208550468Swpaul	tl_dio_write16(sc, TL_MAXRX, MCLBYTES);
208650468Swpaul
208736270Swpaul	/* Init our MAC address */
208841656Swpaul	tl_setfilt(sc, (caddr_t)&sc->arpcom.ac_enaddr, 0);
208936270Swpaul
209039583Swpaul	/* Init multicast filter, if needed. */
209139583Swpaul	tl_setmulti(sc);
209239583Swpaul
209336270Swpaul	/* Init circular RX list. */
209439583Swpaul	if (tl_list_rx_init(sc) == ENOBUFS) {
209539583Swpaul		printf("tl%d: initialization failed: no "
209639583Swpaul			"memory for rx buffers\n", sc->tl_unit);
209739583Swpaul		tl_stop(sc);
209867087Swpaul		TL_UNLOCK(sc);
209936270Swpaul		return;
210036270Swpaul	}
210136270Swpaul
210236270Swpaul	/* Init TX pointers. */
210336270Swpaul	tl_list_tx_init(sc);
210436270Swpaul
210539583Swpaul	/* Enable PCI interrupts. */
210639583Swpaul	CMD_SET(sc, TL_CMD_INTSON);
210736270Swpaul
210836270Swpaul	/* Load the address of the rx list */
210939583Swpaul	CMD_SET(sc, TL_CMD_RT);
211039583Swpaul	CSR_WRITE_4(sc, TL_CH_PARM, vtophys(&sc->tl_ldata->tl_rx_list[0]));
211136270Swpaul
211250462Swpaul	if (!sc->tl_bitrate) {
211350462Swpaul		if (sc->tl_miibus != NULL) {
211450462Swpaul			mii = device_get_softc(sc->tl_miibus);
211550462Swpaul			mii_mediachg(mii);
211650462Swpaul		}
211750462Swpaul	}
211838030Swpaul
211936270Swpaul	/* Send the RX go command */
212050468Swpaul	CMD_SET(sc, TL_CMD_GO|TL_CMD_NES|TL_CMD_RT);
212136270Swpaul
212236270Swpaul	ifp->if_flags |= IFF_RUNNING;
212336270Swpaul	ifp->if_flags &= ~IFF_OACTIVE;
212436270Swpaul
212536270Swpaul	/* Start the stats update counter */
212636270Swpaul	sc->tl_stat_ch = timeout(tl_stats_update, sc, hz);
212767087Swpaul	TL_UNLOCK(sc);
212836270Swpaul
212936270Swpaul	return;
213036270Swpaul}
213136270Swpaul
213236270Swpaul/*
213336270Swpaul * Set media options.
213436270Swpaul */
213536270Swpaulstatic int tl_ifmedia_upd(ifp)
213636270Swpaul	struct ifnet		*ifp;
213736270Swpaul{
213836270Swpaul	struct tl_softc		*sc;
213950462Swpaul	struct mii_data		*mii = NULL;
214036270Swpaul
214136270Swpaul	sc = ifp->if_softc;
214236270Swpaul
214350462Swpaul	if (sc->tl_bitrate)
214450462Swpaul		tl_setmode(sc, sc->ifmedia.ifm_media);
214550462Swpaul	else {
214650462Swpaul		mii = device_get_softc(sc->tl_miibus);
214750462Swpaul		mii_mediachg(mii);
214850462Swpaul	}
214936270Swpaul
215036270Swpaul	return(0);
215136270Swpaul}
215236270Swpaul
215336270Swpaul/*
215436270Swpaul * Report current media status.
215536270Swpaul */
215636270Swpaulstatic void tl_ifmedia_sts(ifp, ifmr)
215736270Swpaul	struct ifnet		*ifp;
215836270Swpaul	struct ifmediareq	*ifmr;
215936270Swpaul{
216036270Swpaul	struct tl_softc		*sc;
216150462Swpaul	struct mii_data		*mii;
216236270Swpaul
216336270Swpaul	sc = ifp->if_softc;
216436270Swpaul
216536270Swpaul	ifmr->ifm_active = IFM_ETHER;
216636270Swpaul
216745155Swpaul	if (sc->tl_bitrate) {
216845155Swpaul		if (tl_dio_read8(sc, TL_ACOMMIT) & TL_AC_MTXD1)
216945155Swpaul			ifmr->ifm_active = IFM_ETHER|IFM_10_5;
217045155Swpaul		else
217145155Swpaul			ifmr->ifm_active = IFM_ETHER|IFM_10_T;
217245155Swpaul		if (tl_dio_read8(sc, TL_ACOMMIT) & TL_AC_MTXD3)
217345155Swpaul			ifmr->ifm_active |= IFM_HDX;
217445155Swpaul		else
217545155Swpaul			ifmr->ifm_active |= IFM_FDX;
217645155Swpaul		return;
217736270Swpaul	} else {
217850462Swpaul		mii = device_get_softc(sc->tl_miibus);
217950462Swpaul		mii_pollstat(mii);
218050462Swpaul		ifmr->ifm_active = mii->mii_media_active;
218150462Swpaul		ifmr->ifm_status = mii->mii_media_status;
218236270Swpaul	}
218336270Swpaul
218436270Swpaul	return;
218536270Swpaul}
218636270Swpaul
218736270Swpaulstatic int tl_ioctl(ifp, command, data)
218836270Swpaul	struct ifnet		*ifp;
218936735Sdfr	u_long			command;
219036270Swpaul	caddr_t			data;
219136270Swpaul{
219236270Swpaul	struct tl_softc		*sc = ifp->if_softc;
219336270Swpaul	struct ifreq		*ifr = (struct ifreq *) data;
219436270Swpaul	int			s, error = 0;
219536270Swpaul
219636270Swpaul	s = splimp();
219736270Swpaul
219836270Swpaul	switch(command) {
219936270Swpaul	case SIOCSIFADDR:
220036270Swpaul	case SIOCGIFADDR:
220136270Swpaul	case SIOCSIFMTU:
220236270Swpaul		error = ether_ioctl(ifp, command, data);
220336270Swpaul		break;
220436270Swpaul	case SIOCSIFFLAGS:
220536270Swpaul		if (ifp->if_flags & IFF_UP) {
220650462Swpaul			if (ifp->if_flags & IFF_RUNNING &&
220750462Swpaul			    ifp->if_flags & IFF_PROMISC &&
220850462Swpaul			    !(sc->tl_if_flags & IFF_PROMISC)) {
220950462Swpaul				tl_dio_setbit(sc, TL_NETCMD, TL_CMD_CAF);
221050462Swpaul				tl_setmulti(sc);
221150462Swpaul			} else if (ifp->if_flags & IFF_RUNNING &&
221250462Swpaul			    !(ifp->if_flags & IFF_PROMISC) &&
221350462Swpaul			    sc->tl_if_flags & IFF_PROMISC) {
221450462Swpaul				tl_dio_clrbit(sc, TL_NETCMD, TL_CMD_CAF);
221550462Swpaul				tl_setmulti(sc);
221650462Swpaul			} else
221750462Swpaul				tl_init(sc);
221836270Swpaul		} else {
221936270Swpaul			if (ifp->if_flags & IFF_RUNNING) {
222036270Swpaul				tl_stop(sc);
222136270Swpaul			}
222236270Swpaul		}
222350462Swpaul		sc->tl_if_flags = ifp->if_flags;
222436270Swpaul		error = 0;
222536270Swpaul		break;
222636270Swpaul	case SIOCADDMULTI:
222736270Swpaul	case SIOCDELMULTI:
222836270Swpaul		tl_setmulti(sc);
222936270Swpaul		error = 0;
223036270Swpaul		break;
223136270Swpaul	case SIOCSIFMEDIA:
223236270Swpaul	case SIOCGIFMEDIA:
223350462Swpaul		if (sc->tl_bitrate)
223450462Swpaul			error = ifmedia_ioctl(ifp, ifr, &sc->ifmedia, command);
223550462Swpaul		else {
223650462Swpaul			struct mii_data		*mii;
223750462Swpaul			mii = device_get_softc(sc->tl_miibus);
223850462Swpaul			error = ifmedia_ioctl(ifp, ifr,
223950462Swpaul			    &mii->mii_media, command);
224050462Swpaul		}
224136270Swpaul		break;
224236270Swpaul	default:
224336270Swpaul		error = EINVAL;
224436270Swpaul		break;
224536270Swpaul	}
224636270Swpaul
224736270Swpaul	(void)splx(s);
224836270Swpaul
224936270Swpaul	return(error);
225036270Swpaul}
225136270Swpaul
225236270Swpaulstatic void tl_watchdog(ifp)
225336270Swpaul	struct ifnet		*ifp;
225436270Swpaul{
225536270Swpaul	struct tl_softc		*sc;
225636270Swpaul
225736270Swpaul	sc = ifp->if_softc;
225836270Swpaul
225950462Swpaul	printf("tl%d: device timeout\n", sc->tl_unit);
226036270Swpaul
226136270Swpaul	ifp->if_oerrors++;
226236270Swpaul
226350468Swpaul	tl_softreset(sc, 1);
226436270Swpaul	tl_init(sc);
226536270Swpaul
226636270Swpaul	return;
226736270Swpaul}
226836270Swpaul
226936270Swpaul/*
227036270Swpaul * Stop the adapter and free any mbufs allocated to the
227136270Swpaul * RX and TX lists.
227236270Swpaul */
227336270Swpaulstatic void tl_stop(sc)
227436270Swpaul	struct tl_softc		*sc;
227536270Swpaul{
227636270Swpaul	register int		i;
227736270Swpaul	struct ifnet		*ifp;
227836270Swpaul
227967087Swpaul	TL_LOCK(sc);
228067087Swpaul
228136270Swpaul	ifp = &sc->arpcom.ac_if;
228236270Swpaul
228336270Swpaul	/* Stop the stats updater. */
228436270Swpaul	untimeout(tl_stats_update, sc, sc->tl_stat_ch);
228536270Swpaul
228636270Swpaul	/* Stop the transmitter */
228739583Swpaul	CMD_CLR(sc, TL_CMD_RT);
228839583Swpaul	CMD_SET(sc, TL_CMD_STOP);
228939583Swpaul	CSR_WRITE_4(sc, TL_CH_PARM, 0);
229036270Swpaul
229136270Swpaul	/* Stop the receiver */
229239583Swpaul	CMD_SET(sc, TL_CMD_RT);
229339583Swpaul	CMD_SET(sc, TL_CMD_STOP);
229439583Swpaul	CSR_WRITE_4(sc, TL_CH_PARM, 0);
229536270Swpaul
229636270Swpaul	/*
229736270Swpaul	 * Disable host interrupts.
229836270Swpaul	 */
229939583Swpaul	CMD_SET(sc, TL_CMD_INTSOFF);
230036270Swpaul
230136270Swpaul	/*
230236270Swpaul	 * Clear list pointer.
230336270Swpaul	 */
230439583Swpaul	CSR_WRITE_4(sc, TL_CH_PARM, 0);
230536270Swpaul
230636270Swpaul	/*
230736270Swpaul	 * Free the RX lists.
230836270Swpaul	 */
230936270Swpaul	for (i = 0; i < TL_RX_LIST_CNT; i++) {
231036270Swpaul		if (sc->tl_cdata.tl_rx_chain[i].tl_mbuf != NULL) {
231136270Swpaul			m_freem(sc->tl_cdata.tl_rx_chain[i].tl_mbuf);
231236270Swpaul			sc->tl_cdata.tl_rx_chain[i].tl_mbuf = NULL;
231336270Swpaul		}
231436270Swpaul	}
231536270Swpaul	bzero((char *)&sc->tl_ldata->tl_rx_list,
231636270Swpaul		sizeof(sc->tl_ldata->tl_rx_list));
231736270Swpaul
231836270Swpaul	/*
231936270Swpaul	 * Free the TX list buffers.
232036270Swpaul	 */
232136270Swpaul	for (i = 0; i < TL_TX_LIST_CNT; i++) {
232236270Swpaul		if (sc->tl_cdata.tl_tx_chain[i].tl_mbuf != NULL) {
232336270Swpaul			m_freem(sc->tl_cdata.tl_tx_chain[i].tl_mbuf);
232436270Swpaul			sc->tl_cdata.tl_tx_chain[i].tl_mbuf = NULL;
232536270Swpaul		}
232636270Swpaul	}
232736270Swpaul	bzero((char *)&sc->tl_ldata->tl_tx_list,
232836270Swpaul		sizeof(sc->tl_ldata->tl_tx_list));
232936270Swpaul
233036270Swpaul	ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
233167087Swpaul	TL_UNLOCK(sc);
233236270Swpaul
233336270Swpaul	return;
233436270Swpaul}
233536270Swpaul
233636270Swpaul/*
233736270Swpaul * Stop all chip I/O so that the kernel's probe routines don't
233836270Swpaul * get confused by errant DMAs when rebooting.
233936270Swpaul */
234048992Swpaulstatic void tl_shutdown(dev)
234148992Swpaul	device_t		dev;
234236270Swpaul{
234339583Swpaul	struct tl_softc		*sc;
234436270Swpaul
234548992Swpaul	sc = device_get_softc(dev);
234636270Swpaul
234739583Swpaul	tl_stop(sc);
234836270Swpaul
234936270Swpaul	return;
235036270Swpaul}
2351