Home | History | Annotate | Line # | Download | only in cardbus
if_tlp_cardbus.c revision 1.55
      1 /*	$NetBSD: if_tlp_cardbus.c,v 1.55 2007/12/09 20:27:56 jmcneill Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9  * NASA Ames Research Center.
     10  *
     11  * Redistribution and use in source and binary forms, with or without
     12  * modification, are permitted provided that the following conditions
     13  * are met:
     14  * 1. Redistributions of source code must retain the above copyright
     15  *    notice, this list of conditions and the following disclaimer.
     16  * 2. Redistributions in binary form must reproduce the above copyright
     17  *    notice, this list of conditions and the following disclaimer in the
     18  *    documentation and/or other materials provided with the distribution.
     19  * 3. All advertising materials mentioning features or use of this software
     20  *    must display the following acknowledgement:
     21  *	This product includes software developed by the NetBSD
     22  *	Foundation, Inc. and its contributors.
     23  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24  *    contributors may be used to endorse or promote products derived
     25  *    from this software without specific prior written permission.
     26  *
     27  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37  * POSSIBILITY OF SUCH DAMAGE.
     38  */
     39 
     40 /*
     41  * CardBus bus front-end for the Digital Semiconductor ``Tulip'' (21x4x)
     42  * Ethernet controller family driver.
     43  */
     44 
     45 #include <sys/cdefs.h>
     46 __KERNEL_RCSID(0, "$NetBSD: if_tlp_cardbus.c,v 1.55 2007/12/09 20:27:56 jmcneill Exp $");
     47 
     48 #include "opt_inet.h"
     49 #include "bpfilter.h"
     50 
     51 #include <sys/param.h>
     52 #include <sys/systm.h>
     53 #include <sys/mbuf.h>
     54 #include <sys/malloc.h>
     55 #include <sys/kernel.h>
     56 #include <sys/socket.h>
     57 #include <sys/ioctl.h>
     58 #include <sys/errno.h>
     59 #include <sys/device.h>
     60 
     61 #include <machine/endian.h>
     62 
     63 #include <net/if.h>
     64 #include <net/if_dl.h>
     65 #include <net/if_media.h>
     66 #include <net/if_ether.h>
     67 
     68 #if NBPFILTER > 0
     69 #include <net/bpf.h>
     70 #endif
     71 
     72 #ifdef INET
     73 #include <netinet/in.h>
     74 #include <netinet/if_inarp.h>
     75 #endif
     76 
     77 
     78 #include <sys/bus.h>
     79 #include <sys/intr.h>
     80 
     81 #include <dev/mii/miivar.h>
     82 #include <dev/mii/mii_bitbang.h>
     83 
     84 #include <dev/ic/tulipreg.h>
     85 #include <dev/ic/tulipvar.h>
     86 
     87 #include <dev/pci/pcivar.h>
     88 #include <dev/pci/pcireg.h>
     89 #include <dev/pci/pcidevs.h>
     90 
     91 #include <dev/cardbus/cardbusvar.h>
     92 #include <dev/pci/pcidevs.h>
     93 
     94 /*
     95  * PCI configuration space registers used by the Tulip.
     96  */
     97 #define	TULIP_PCI_IOBA		0x10	/* i/o mapped base */
     98 #define	TULIP_PCI_MMBA		0x14	/* memory mapped base */
     99 #define	TULIP_PCI_CFDA		0x40	/* configuration driver area */
    100 
    101 #define	CFDA_SLEEP		0x80000000	/* sleep mode */
    102 #define	CFDA_SNOOZE		0x40000000	/* snooze mode */
    103 
    104 struct tulip_cardbus_softc {
    105 	struct tulip_softc sc_tulip;	/* real Tulip softc */
    106 
    107 	/* CardBus-specific goo. */
    108 	void	*sc_ih;			/* interrupt handle */
    109 	cardbus_devfunc_t sc_ct;	/* our CardBus devfuncs */
    110 	cardbustag_t sc_tag;		/* our CardBus tag */
    111 	int	sc_csr;			/* CSR bits */
    112 	bus_size_t sc_mapsize;		/* the size of mapped bus space
    113 					   region */
    114 
    115 	int	sc_cben;		/* CardBus enables */
    116 	int	sc_bar_reg;		/* which BAR to use */
    117 	pcireg_t sc_bar_val;		/* value of the BAR */
    118 
    119 	int	sc_intrline;		/* interrupt line */
    120 };
    121 
    122 int	tlp_cardbus_match(struct device *, struct cfdata *, void *);
    123 void	tlp_cardbus_attach(struct device *, struct device *, void *);
    124 int	tlp_cardbus_detach(struct device *, int);
    125 
    126 CFATTACH_DECL(tlp_cardbus, sizeof(struct tulip_cardbus_softc),
    127     tlp_cardbus_match, tlp_cardbus_attach, tlp_cardbus_detach, tlp_activate);
    128 
    129 const struct tulip_cardbus_product {
    130 	u_int32_t	tcp_vendor;	/* PCI vendor ID */
    131 	u_int32_t	tcp_product;	/* PCI product ID */
    132 	tulip_chip_t	tcp_chip;	/* base Tulip chip type */
    133 } tlp_cardbus_products[] = {
    134 	{ PCI_VENDOR_DEC,	PCI_PRODUCT_DEC_21142,
    135 	  TULIP_CHIP_21142 },
    136 
    137 	{ PCI_VENDOR_XIRCOM,	PCI_PRODUCT_XIRCOM_X3201_3_21143,
    138 	  TULIP_CHIP_X3201_3 },
    139 
    140 	{ PCI_VENDOR_ADMTEK,	PCI_PRODUCT_ADMTEK_AN983,
    141 	  TULIP_CHIP_AN985 },
    142 
    143 	{ PCI_VENDOR_ACCTON,	PCI_PRODUCT_ACCTON_EN2242,
    144 	  TULIP_CHIP_AN985 },
    145 
    146 	{ PCI_VENDOR_ABOCOM,	PCI_PRODUCT_ABOCOM_FE2500,
    147 	  TULIP_CHIP_AN985 },
    148 
    149 	{ PCI_VENDOR_ABOCOM,	PCI_PRODUCT_ABOCOM_PCM200,
    150 	  TULIP_CHIP_AN985 },
    151 
    152 	{ PCI_VENDOR_ABOCOM,	PCI_PRODUCT_ABOCOM_FE2500MX,
    153 	  TULIP_CHIP_AN985 },
    154 
    155 	{ PCI_VENDOR_HAWKING,	PCI_PRODUCT_HAWKING_PN672TX,
    156 	  TULIP_CHIP_AN985 },
    157 
    158 	{ PCI_VENDOR_ADMTEK,	PCI_PRODUCT_ADMTEK_AN985,
    159 	  TULIP_CHIP_AN985 },
    160 
    161 	{ PCI_VENDOR_MICROSOFT,	PCI_PRODUCT_MICROSOFT_MN120,
    162 	  TULIP_CHIP_AN985 },
    163 
    164 	{ PCI_VENDOR_LINKSYS, PCI_PRODUCT_LINKSYS_PCMPC200,
    165 	  TULIP_CHIP_AN985 },
    166 
    167 	{ 0,				0,
    168 	  TULIP_CHIP_INVALID },
    169 };
    170 
    171 struct tlp_cardbus_quirks {
    172 	void		(*tpq_func)(struct tulip_cardbus_softc *,
    173 			    const u_int8_t *);
    174 	u_int8_t	tpq_oui[3];
    175 };
    176 
    177 void	tlp_cardbus_lxt_quirks(struct tulip_cardbus_softc *,
    178 	    const u_int8_t *);
    179 
    180 const struct tlp_cardbus_quirks tlp_cardbus_21142_quirks[] = {
    181 	{ tlp_cardbus_lxt_quirks,	{ 0x00, 0x40, 0x05 } },
    182 	{ NULL,				{ 0, 0, 0 } }
    183 };
    184 
    185 void	tlp_cardbus_setup(struct tulip_cardbus_softc *);
    186 
    187 int	tlp_cardbus_enable(struct tulip_softc *);
    188 void	tlp_cardbus_disable(struct tulip_softc *);
    189 void	tlp_cardbus_power(struct tulip_softc *, int);
    190 
    191 void	tlp_cardbus_x3201_reset(struct tulip_softc *);
    192 
    193 const struct tulip_cardbus_product *tlp_cardbus_lookup
    194    (const struct cardbus_attach_args *);
    195 void tlp_cardbus_get_quirks(struct tulip_cardbus_softc *,
    196     const u_int8_t *, const struct tlp_cardbus_quirks *);
    197 
    198 const struct tulip_cardbus_product *
    199 tlp_cardbus_lookup(ca)
    200 	const struct cardbus_attach_args *ca;
    201 {
    202 	const struct tulip_cardbus_product *tcp;
    203 
    204 	for (tcp = tlp_cardbus_products;
    205 	     tlp_chip_names[tcp->tcp_chip] != NULL;
    206 	     tcp++) {
    207 		if (PCI_VENDOR(ca->ca_id) == tcp->tcp_vendor &&
    208 		    PCI_PRODUCT(ca->ca_id) == tcp->tcp_product)
    209 			return (tcp);
    210 	}
    211 	return (NULL);
    212 }
    213 
    214 void
    215 tlp_cardbus_get_quirks(csc, enaddr, tpq)
    216 	struct tulip_cardbus_softc *csc;
    217 	const u_int8_t *enaddr;
    218 	const struct tlp_cardbus_quirks *tpq;
    219 {
    220 
    221 	for (; tpq->tpq_func != NULL; tpq++) {
    222 		if (tpq->tpq_oui[0] == enaddr[0] &&
    223 		    tpq->tpq_oui[1] == enaddr[1] &&
    224 		    tpq->tpq_oui[2] == enaddr[2]) {
    225 			(*tpq->tpq_func)(csc, enaddr);
    226 			return;
    227 		}
    228 	}
    229 }
    230 
    231 int
    232 tlp_cardbus_match(struct device *parent, struct cfdata *match,
    233     void *aux)
    234 {
    235 	struct cardbus_attach_args *ca = aux;
    236 
    237 	if (tlp_cardbus_lookup(ca) != NULL)
    238 		return (1);
    239 
    240 	return (0);
    241 }
    242 
    243 void
    244 tlp_cardbus_attach(struct device *parent, struct device *self,
    245     void *aux)
    246 {
    247 	struct tulip_cardbus_softc *csc = device_private(self);
    248 	struct tulip_softc *sc = &csc->sc_tulip;
    249 	struct cardbus_attach_args *ca = aux;
    250 	cardbus_devfunc_t ct = ca->ca_ct;
    251 	const struct tulip_cardbus_product *tcp;
    252 	u_int8_t enaddr[ETHER_ADDR_LEN];
    253 	bus_addr_t adr;
    254 	pcireg_t reg;
    255 
    256 	sc->sc_devno = 0;
    257 	sc->sc_dmat = ca->ca_dmat;
    258 	csc->sc_ct = ct;
    259 	csc->sc_tag = ca->ca_tag;
    260 
    261 	tcp = tlp_cardbus_lookup(ca);
    262 	if (tcp == NULL) {
    263 		printf("\n");
    264 		panic("tlp_cardbus_attach: impossible");
    265 	}
    266 	sc->sc_chip = tcp->tcp_chip;
    267 
    268 	/*
    269 	 * By default, Tulip registers are 8 bytes long (4 bytes
    270 	 * followed by a 4 byte pad).
    271 	 */
    272 	sc->sc_regshift = 3;
    273 
    274 	/*
    275 	 * Power management hooks.
    276 	 */
    277 	sc->sc_enable = tlp_cardbus_enable;
    278 	sc->sc_disable = tlp_cardbus_disable;
    279 	sc->sc_power = tlp_cardbus_power;
    280 
    281 	/*
    282 	 * Get revision info, and set some chip-specific variables.
    283 	 */
    284 	sc->sc_rev = PCI_REVISION(ca->ca_class);
    285 	switch (sc->sc_chip) {
    286 	case TULIP_CHIP_21142:
    287 		if (sc->sc_rev >= 0x20)
    288 			sc->sc_chip = TULIP_CHIP_21143;
    289 		break;
    290 
    291 	case TULIP_CHIP_AN985:
    292 		/*
    293 		 * The AN983 and AN985 are very similar, and are
    294 		 * differentiated by a "signature" register that
    295 		 * is like, but not identical, to a PCI ID register.
    296 		 */
    297 		reg = cardbus_conf_read(ct->ct_cc, ct->ct_cf, csc->sc_tag,
    298 		    0x80);
    299 		switch (reg) {
    300 		case 0x09811317:
    301 			sc->sc_chip = TULIP_CHIP_AN985;
    302 			break;
    303 
    304 		case 0x09851317:
    305 			sc->sc_chip = TULIP_CHIP_AN983;
    306 			break;
    307 
    308 		}
    309 		break;
    310 
    311 	default:
    312 		/* Nothing. -- to make gcc happy */
    313 		break;
    314 	}
    315 
    316 	printf(": %s Ethernet, pass %d.%d\n",
    317 	    tlp_chip_names[sc->sc_chip],
    318 	    (sc->sc_rev >> 4) & 0xf, sc->sc_rev & 0xf);
    319 
    320 	/*
    321 	 * Map the device.
    322 	 */
    323 	csc->sc_csr = CARDBUS_COMMAND_MASTER_ENABLE;
    324 	if (Cardbus_mapreg_map(ct, TULIP_PCI_MMBA,
    325 	    CARDBUS_MAPREG_TYPE_MEM, 0, &sc->sc_st, &sc->sc_sh, &adr,
    326 	    &csc->sc_mapsize) == 0) {
    327 #if rbus
    328 #else
    329 		(*ct->ct_cf->cardbus_mem_open)(cc, 0, adr, adr+csc->sc_mapsize);
    330 #endif
    331 		csc->sc_cben = CARDBUS_MEM_ENABLE;
    332 		csc->sc_csr |= CARDBUS_COMMAND_MEM_ENABLE;
    333 		csc->sc_bar_reg = TULIP_PCI_MMBA;
    334 		csc->sc_bar_val = adr | CARDBUS_MAPREG_TYPE_MEM;
    335 	} else if (Cardbus_mapreg_map(ct, TULIP_PCI_IOBA,
    336 	    CARDBUS_MAPREG_TYPE_IO, 0, &sc->sc_st, &sc->sc_sh, &adr,
    337 	    &csc->sc_mapsize) == 0) {
    338 #if rbus
    339 #else
    340 		(*ct->ct_cf->cardbus_io_open)(cc, 0, adr, adr+csc->sc_mapsize);
    341 #endif
    342 		csc->sc_cben = CARDBUS_IO_ENABLE;
    343 		csc->sc_csr |= CARDBUS_COMMAND_IO_ENABLE;
    344 		csc->sc_bar_reg = TULIP_PCI_IOBA;
    345 		csc->sc_bar_val = adr | CARDBUS_MAPREG_TYPE_IO;
    346 	} else {
    347 		printf("%s: unable to map device registers\n",
    348 		    sc->sc_dev.dv_xname);
    349 		return;
    350 	}
    351 
    352 	/*
    353 	 * Bring the chip out of powersave mode and initialize the
    354 	 * configuration registers.
    355 	 */
    356 	tlp_cardbus_setup(csc);
    357 
    358 	/*
    359 	 * Read the contents of the Ethernet Address ROM/SROM.
    360 	 */
    361 	switch (sc->sc_chip) {
    362 	case TULIP_CHIP_X3201_3:
    363 		/*
    364 		 * No SROM on this chip.
    365 		 */
    366 		break;
    367 
    368 	default:
    369 		if (tlp_read_srom(sc) == 0)
    370 			goto cant_cope;
    371 		break;
    372 	}
    373 
    374 	/*
    375 	 * Deal with chip/board quirks.  This includes setting up
    376 	 * the mediasw, and extracting the Ethernet address from
    377 	 * the rombuf.
    378 	 */
    379 	switch (sc->sc_chip) {
    380 	case TULIP_CHIP_21142:
    381 	case TULIP_CHIP_21143:
    382 		/* Check for new format SROM. */
    383 		if (tlp_isv_srom_enaddr(sc, enaddr) != 0) {
    384 			/*
    385 			 * We start out with the 2114x ISV media switch.
    386 			 * When we search for quirks, we may change to
    387 			 * a different switch.
    388 			 */
    389 			sc->sc_mediasw = &tlp_2114x_isv_mediasw;
    390 		} else if (tlp_parse_old_srom(sc, enaddr) == 0) {
    391 			/*
    392 			 * Not an ISV SROM, and not in old DEC Address
    393 			 * ROM format.  Try to snarf it out of the CIS.
    394 			 */
    395 			if (ca->ca_cis.funce.network.netid_present == 0)
    396 				goto cant_cope;
    397 
    398 			/* Grab the MAC address from the CIS. */
    399 			memcpy(enaddr, ca->ca_cis.funce.network.netid,
    400 			    sizeof(enaddr));
    401 		}
    402 
    403 		/*
    404 		 * Deal with any quirks this board might have.
    405 		 */
    406 		tlp_cardbus_get_quirks(csc, enaddr, tlp_cardbus_21142_quirks);
    407 
    408 		/*
    409 		 * If we don't already have a media switch, default to
    410 		 * MII-over-SIO, with no special reset routine.
    411 		 */
    412 		if (sc->sc_mediasw == NULL) {
    413 			printf("%s: defaulting to MII-over-SIO; no bets...\n",
    414 			    sc->sc_dev.dv_xname);
    415 			sc->sc_mediasw = &tlp_sio_mii_mediasw;
    416 		}
    417 		break;
    418 
    419 	case TULIP_CHIP_AN983:
    420 	case TULIP_CHIP_AN985:
    421 		/*
    422 		 * The ADMtek AN985's Ethernet address is located
    423 		 * at offset 8 of its EEPROM.
    424 		 */
    425 		memcpy(enaddr, &sc->sc_srom[8], ETHER_ADDR_LEN);
    426 
    427 		/*
    428 		 * The ADMtek AN985 can be configured in Single-Chip
    429 		 * mode or MAC-only mode.  Single-Chip uses the built-in
    430 		 * PHY, MAC-only has an external PHY (usually HomePNA).
    431 		 * The selection is based on an EEPROM setting, and both
    432 		 * PHYs are access via MII attached to SIO.
    433 		 *
    434 		 * The AN985 "ghosts" the internal PHY onto all
    435 		 * MII addresses, so we have to use a media init
    436 		 * routine that limits the search.
    437 		 * XXX How does this work with MAC-only mode?
    438 		 */
    439 		sc->sc_mediasw = &tlp_an985_mediasw;
    440 		break;
    441 
    442 	case TULIP_CHIP_X3201_3:
    443 		/*
    444 		 * The X3201 doesn't have an SROM.  Lift the MAC address
    445 		 * from the CIS.  Also, we have a special media switch:
    446 		 * MII-on-SIO, plus some special GPIO setup.
    447 		 */
    448 		memcpy(enaddr, ca->ca_cis.funce.network.netid, sizeof(enaddr));
    449 		sc->sc_reset = tlp_cardbus_x3201_reset;
    450 		sc->sc_mediasw = &tlp_sio_mii_mediasw;
    451 		break;
    452 
    453 	default:
    454  cant_cope:
    455 		printf("%s: sorry, unable to handle your board\n",
    456 		    sc->sc_dev.dv_xname);
    457 		return;
    458 	}
    459 
    460 	/* Remember which interrupt line. */
    461 	csc->sc_intrline = ca->ca_intrline;
    462 
    463 	/*
    464 	 * The CardBus cards will make it to store-and-forward mode as
    465 	 * soon as you put them under any kind of load, so just start
    466 	 * out there.
    467 	 */
    468 	sc->sc_txthresh = TXTH_SF;
    469 
    470 	/*
    471 	 * Finish off the attach.
    472 	 */
    473 	tlp_attach(sc, enaddr);
    474 
    475 	/*
    476 	 * Power down the socket.
    477 	 */
    478 	Cardbus_function_disable(csc->sc_ct);
    479 }
    480 
    481 int
    482 tlp_cardbus_detach(struct device *self, int flags)
    483 {
    484 	struct tulip_cardbus_softc *csc = device_private(self);
    485 	struct tulip_softc *sc = &csc->sc_tulip;
    486 	struct cardbus_devfunc *ct = csc->sc_ct;
    487 	int rv;
    488 
    489 #if defined(DIAGNOSTIC)
    490 	if (ct == NULL)
    491 		panic("%s: data structure lacks", sc->sc_dev.dv_xname);
    492 #endif
    493 
    494 	rv = tlp_detach(sc);
    495 	if (rv)
    496 		return (rv);
    497 
    498 	/*
    499 	 * Unhook the interrupt handler.
    500 	 */
    501 	if (csc->sc_ih != NULL)
    502 		cardbus_intr_disestablish(ct->ct_cc, ct->ct_cf, csc->sc_ih);
    503 
    504 	/*
    505 	 * Release bus space and close window.
    506 	 */
    507 	if (csc->sc_bar_reg != 0)
    508 		Cardbus_mapreg_unmap(ct, csc->sc_bar_reg,
    509 		    sc->sc_st, sc->sc_sh, csc->sc_mapsize);
    510 
    511 	return (0);
    512 }
    513 
    514 int
    515 tlp_cardbus_enable(sc)
    516 	struct tulip_softc *sc;
    517 {
    518 	struct tulip_cardbus_softc *csc = (void *) sc;
    519 	cardbus_devfunc_t ct = csc->sc_ct;
    520 	cardbus_chipset_tag_t cc = ct->ct_cc;
    521 	cardbus_function_tag_t cf = ct->ct_cf;
    522 
    523 	/*
    524 	 * Power on the socket.
    525 	 */
    526 	Cardbus_function_enable(ct);
    527 
    528 	/*
    529 	 * Set up the PCI configuration registers.
    530 	 */
    531 	tlp_cardbus_setup(csc);
    532 
    533 	/*
    534 	 * Map and establish the interrupt.
    535 	 */
    536 	csc->sc_ih = cardbus_intr_establish(cc, cf, csc->sc_intrline, IPL_NET,
    537 	    tlp_intr, sc);
    538 	if (csc->sc_ih == NULL) {
    539 		printf("%s: unable to establish interrupt at %d\n",
    540 		    sc->sc_dev.dv_xname, csc->sc_intrline);
    541 		Cardbus_function_disable(csc->sc_ct);
    542 		return (1);
    543 	}
    544 	printf("%s: interrupting at %d\n", sc->sc_dev.dv_xname,
    545 	    csc->sc_intrline);
    546 
    547 	return (0);
    548 }
    549 
    550 void
    551 tlp_cardbus_disable(sc)
    552 	struct tulip_softc *sc;
    553 {
    554 	struct tulip_cardbus_softc *csc = (void *) sc;
    555 	cardbus_devfunc_t ct = csc->sc_ct;
    556 	cardbus_chipset_tag_t cc = ct->ct_cc;
    557 	cardbus_function_tag_t cf = ct->ct_cf;
    558 
    559 	/* Unhook the interrupt handler. */
    560 	cardbus_intr_disestablish(cc, cf, csc->sc_ih);
    561 	csc->sc_ih = NULL;
    562 
    563 	/* Power down the socket. */
    564 	Cardbus_function_disable(ct);
    565 }
    566 
    567 void
    568 tlp_cardbus_power(sc, why)
    569 	struct tulip_softc *sc;
    570 	int why;
    571 {
    572 
    573 	switch (why) {
    574 	case PWR_RESUME:
    575 		tlp_cardbus_enable(sc);
    576 		break;
    577 	case PWR_SUSPEND:
    578 		tlp_cardbus_disable(sc);
    579 		break;
    580 	}
    581 }
    582 
    583 void
    584 tlp_cardbus_setup(csc)
    585 	struct tulip_cardbus_softc *csc;
    586 {
    587 	struct tulip_softc *sc = &csc->sc_tulip;
    588 	cardbus_devfunc_t ct = csc->sc_ct;
    589 	cardbus_chipset_tag_t cc = ct->ct_cc;
    590 	cardbus_function_tag_t cf = ct->ct_cf;
    591 	pcireg_t reg;
    592 
    593 	/*
    594 	 * Check to see if the device is in power-save mode, and
    595 	 * bring it out if necessary.
    596 	 */
    597 	switch (sc->sc_chip) {
    598 	case TULIP_CHIP_21142:
    599 	case TULIP_CHIP_21143:
    600 	case TULIP_CHIP_X3201_3:
    601 		/*
    602 		 * Clear the "sleep mode" bit in the CFDA register.
    603 		 */
    604 		reg = cardbus_conf_read(cc, cf, csc->sc_tag, TULIP_PCI_CFDA);
    605 		if (reg & (CFDA_SLEEP|CFDA_SNOOZE))
    606 			cardbus_conf_write(cc, cf, csc->sc_tag, TULIP_PCI_CFDA,
    607 			    reg & ~(CFDA_SLEEP|CFDA_SNOOZE));
    608 		break;
    609 
    610 	default:
    611 		/* Nothing. -- to make gcc happy */
    612 		break;
    613 	}
    614 
    615 	(void)cardbus_set_powerstate(ct, csc->sc_tag, PCI_PWR_D0);
    616 
    617 	/* Program the BAR. */
    618 	cardbus_conf_write(cc, cf, csc->sc_tag, csc->sc_bar_reg,
    619 	    csc->sc_bar_val);
    620 
    621 	/* Make sure the right access type is on the CardBus bridge. */
    622 	(*ct->ct_cf->cardbus_ctrl)(cc, csc->sc_cben);
    623 	(*ct->ct_cf->cardbus_ctrl)(cc, CARDBUS_BM_ENABLE);
    624 
    625 	/* Enable the appropriate bits in the PCI CSR. */
    626 	reg = cardbus_conf_read(cc, cf, csc->sc_tag, PCI_COMMAND_STATUS_REG);
    627 	reg &= ~(PCI_COMMAND_IO_ENABLE|PCI_COMMAND_MEM_ENABLE);
    628 	reg |= csc->sc_csr;
    629 	cardbus_conf_write(cc, cf, csc->sc_tag, PCI_COMMAND_STATUS_REG, reg);
    630 
    631 	/*
    632 	 * Make sure the latency timer is set to some reasonable
    633 	 * value.
    634 	 */
    635 	reg = cardbus_conf_read(cc, cf, csc->sc_tag, PCI_BHLC_REG);
    636 	if (PCI_LATTIMER(reg) < 0x20) {
    637 		reg &= ~(PCI_LATTIMER_MASK << PCI_LATTIMER_SHIFT);
    638 		reg |= (0x20 << PCI_LATTIMER_SHIFT);
    639 		cardbus_conf_write(cc, cf, csc->sc_tag, PCI_BHLC_REG, reg);
    640 	}
    641 }
    642 
    643 void
    644 tlp_cardbus_x3201_reset(sc)
    645 	struct tulip_softc *sc;
    646 {
    647 	u_int32_t reg;
    648 
    649 	reg = TULIP_READ(sc, CSR_SIAGEN);
    650 
    651 	/* make GP[2,0] outputs */
    652 	TULIP_WRITE(sc, CSR_SIAGEN, (reg & ~SIAGEN_MD) | SIAGEN_CWE |
    653 	    0x00050000);
    654 	TULIP_WRITE(sc, CSR_SIAGEN, (reg & ~SIAGEN_CWE) | SIAGEN_MD);
    655 }
    656 
    657 void
    658 tlp_cardbus_lxt_quirks(struct tulip_cardbus_softc *csc,
    659     const u_int8_t *enaddr)
    660 {
    661 	struct tulip_softc *sc = &csc->sc_tulip;
    662 
    663 	sc->sc_mediasw = &tlp_sio_mii_mediasw;
    664 }
    665