Home | History | Annotate | Line # | Download | only in cardbus
if_ex_cardbus.c revision 1.20.2.3
      1  1.20.2.3  jdolecek /*	$NetBSD: if_ex_cardbus.c,v 1.20.2.3 2002/10/10 18:38:32 jdolecek Exp $	*/
      2       1.1      haya 
      3       1.1      haya /*
      4       1.1      haya  * CardBus specific routines for 3Com 3C575-family CardBus ethernet adapter
      5       1.1      haya  *
      6       1.1      haya  * Copyright (c) 1998 and 1999
      7       1.1      haya  *       HAYAKAWA Koichi.  All rights reserved.
      8       1.1      haya  *
      9       1.1      haya  * Redistribution and use in source and binary forms, with or without
     10       1.1      haya  * modification, are permitted provided that the following conditions
     11       1.1      haya  * are met:
     12       1.1      haya  * 1. Redistributions of source code must retain the above copyright
     13       1.1      haya  *    notice, this list of conditions and the following disclaimer.
     14       1.1      haya  * 2. Redistributions in binary form must reproduce the above copyright
     15       1.1      haya  *    notice, this list of conditions and the following disclaimer in the
     16       1.1      haya  *    documentation and/or other materials provided with the distribution.
     17       1.1      haya  * 3. All advertising materials mentioning features or use of this software
     18       1.1      haya  *    must display the following acknowledgement:
     19       1.1      haya  *      This product includes software developed by the author.
     20       1.1      haya  * 4. Neither the name of the author nor the names of any co-contributors
     21       1.1      haya  *    may be used to endorse or promote products derived from this software
     22       1.1      haya  *    without specific prior written permission.
     23       1.1      haya  *
     24       1.1      haya  * THIS SOFTWARE IS PROVIDED BY HAYAKAWA KOICHI ``AS IS'' AND
     25       1.1      haya  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     26       1.1      haya  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     27       1.1      haya  * ARE DISCLAIMED.  IN NO EVENT SHALL TAKESHI OHASHI OR CONTRIBUTORS BE LIABLE
     28       1.1      haya  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     29       1.1      haya  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     30       1.1      haya  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     31       1.1      haya  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     32       1.1      haya  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     33       1.1      haya  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     34       1.1      haya  * SUCH DAMAGE.
     35       1.1      haya  *
     36       1.1      haya  *
     37       1.1      haya  */
     38  1.20.2.2   thorpej 
     39  1.20.2.2   thorpej #include <sys/cdefs.h>
     40  1.20.2.3  jdolecek __KERNEL_RCSID(0, "$NetBSD: if_ex_cardbus.c,v 1.20.2.3 2002/10/10 18:38:32 jdolecek Exp $");
     41       1.1      haya 
     42  1.20.2.1     lukem /* #define EX_DEBUG 4 */	/* define to report information for debugging */
     43       1.1      haya 
     44       1.1      haya #include <sys/param.h>
     45       1.1      haya #include <sys/systm.h>
     46       1.9   thorpej #include <sys/mbuf.h>
     47       1.9   thorpej #include <sys/socket.h>
     48       1.1      haya #include <sys/ioctl.h>
     49       1.1      haya #include <sys/errno.h>
     50       1.1      haya #include <sys/syslog.h>
     51       1.9   thorpej #include <sys/select.h>
     52       1.9   thorpej #include <sys/device.h>
     53       1.1      haya 
     54       1.1      haya #include <net/if.h>
     55       1.1      haya #include <net/if_dl.h>
     56       1.9   thorpej #include <net/if_ether.h>
     57       1.1      haya #include <net/if_media.h>
     58       1.1      haya 
     59       1.1      haya #include <machine/cpu.h>
     60       1.1      haya #include <machine/bus.h>
     61       1.5      haya 
     62       1.1      haya #include <dev/cardbus/cardbusvar.h>
     63       1.1      haya #include <dev/cardbus/cardbusdevs.h>
     64       1.1      haya 
     65       1.1      haya #include <dev/mii/miivar.h>
     66       1.1      haya 
     67       1.1      haya #include <dev/ic/elink3var.h>
     68       1.1      haya #include <dev/ic/elink3reg.h>
     69       1.1      haya #include <dev/ic/elinkxlreg.h>
     70       1.1      haya #include <dev/ic/elinkxlvar.h>
     71       1.1      haya 
     72       1.1      haya #if defined DEBUG && !defined EX_DEBUG
     73       1.1      haya #define EX_DEBUG
     74       1.1      haya #endif
     75       1.1      haya 
     76       1.1      haya #if defined EX_DEBUG
     77       1.1      haya #define DPRINTF(a) printf a
     78       1.1      haya #else
     79       1.1      haya #define DPRINTF(a)
     80       1.1      haya #endif
     81       1.1      haya 
     82       1.1      haya #define CARDBUS_3C575BTX_FUNCSTAT_PCIREG  CARDBUS_BASE2_REG  /* means 0x18 */
     83       1.1      haya #define EX_CB_INTR 4		/* intr acknowledge reg. CardBus only */
     84       1.1      haya #define EX_CB_INTR_ACK 0x8000 /* intr acknowledge bit */
     85       1.1      haya 
     86       1.9   thorpej int ex_cardbus_match __P((struct device *, struct cfdata *, void *));
     87       1.9   thorpej void ex_cardbus_attach __P((struct device *, struct device *,void *));
     88       1.9   thorpej int ex_cardbus_detach __P((struct device *, int));
     89       1.9   thorpej void ex_cardbus_intr_ack __P((struct ex_softc *));
     90       1.1      haya 
     91      1.19   thorpej int ex_cardbus_enable __P((struct ex_softc *));
     92      1.19   thorpej void ex_cardbus_disable __P((struct ex_softc *));
     93      1.19   thorpej void ex_cardbus_power __P((struct ex_softc *, int));
     94       1.1      haya 
     95       1.1      haya struct ex_cardbus_softc {
     96       1.9   thorpej 	struct ex_softc sc_softc;
     97       1.1      haya 
     98       1.9   thorpej 	cardbus_devfunc_t sc_ct;
     99       1.9   thorpej 	int sc_intrline;
    100       1.9   thorpej 	u_int8_t sc_cardbus_flags;
    101       1.1      haya #define EX_REATTACH		0x01
    102       1.1      haya #define EX_ABSENT		0x02
    103       1.9   thorpej 	u_int8_t sc_cardtype;
    104      1.16      haya #define EX_CB_BOOMERANG		1
    105      1.16      haya #define EX_CB_CYCLONE		2
    106       1.1      haya 
    107       1.9   thorpej 	/* CardBus function status space.  575B requests it. */
    108       1.9   thorpej 	bus_space_tag_t sc_funct;
    109       1.9   thorpej 	bus_space_handle_t sc_funch;
    110      1.11  augustss 	bus_size_t sc_funcsize;
    111      1.11  augustss 
    112      1.11  augustss 	bus_size_t sc_mapsize;		/* the size of mapped bus space region */
    113      1.19   thorpej 
    114      1.19   thorpej 	cardbustag_t sc_tag;
    115      1.19   thorpej 
    116      1.19   thorpej 	int	sc_csr;			/* CSR bits */
    117      1.19   thorpej 	int	sc_bar_reg;		/* which BAR to use */
    118      1.19   thorpej 	pcireg_t sc_bar_val;		/* value of the BAR */
    119      1.19   thorpej 	int	sc_bar_reg1;		/* which BAR to use */
    120      1.19   thorpej 	pcireg_t sc_bar_val1;		/* value of the BAR */
    121      1.19   thorpej 
    122       1.1      haya };
    123       1.1      haya 
    124  1.20.2.3  jdolecek CFATTACH_DECL(ex_cardbus, sizeof(struct ex_cardbus_softc),
    125  1.20.2.3  jdolecek     ex_cardbus_match, ex_cardbus_attach, ex_cardbus_detach, ex_activate);
    126       1.9   thorpej 
    127       1.9   thorpej const struct ex_cardbus_product {
    128       1.9   thorpej 	u_int32_t	ecp_prodid;	/* CardBus product ID */
    129       1.9   thorpej 	int		ecp_flags;	/* initial softc flags */
    130       1.9   thorpej 	pcireg_t	ecp_csr;	/* PCI CSR flags */
    131       1.9   thorpej 	int		ecp_cardtype;	/* card type */
    132       1.9   thorpej 	const char	*ecp_name;	/* device name */
    133       1.9   thorpej } ex_cardbus_products[] = {
    134       1.9   thorpej 	{ CARDBUS_PRODUCT_3COM_3C575TX,
    135      1.18      fvdl 	  EX_CONF_MII | EX_CONF_EEPROM_OFF | EX_CONF_EEPROM_8BIT,
    136       1.9   thorpej 	  CARDBUS_COMMAND_IO_ENABLE | CARDBUS_COMMAND_MASTER_ENABLE,
    137      1.16      haya 	  EX_CB_BOOMERANG,
    138       1.9   thorpej 	  "3c575-TX Ethernet" },
    139       1.9   thorpej 
    140       1.9   thorpej 	{ CARDBUS_PRODUCT_3COM_3C575BTX,
    141      1.18      fvdl 	  EX_CONF_90XB|EX_CONF_MII|EX_CONF_INV_LED_POLARITY |
    142      1.18      fvdl 	    EX_CONF_EEPROM_OFF | EX_CONF_EEPROM_8BIT,
    143       1.9   thorpej 	  CARDBUS_COMMAND_IO_ENABLE | CARDBUS_COMMAND_MEM_ENABLE |
    144       1.9   thorpej 	      CARDBUS_COMMAND_MASTER_ENABLE,
    145      1.16      haya 	  EX_CB_CYCLONE,
    146       1.9   thorpej 	  "3c575B-TX Ethernet" },
    147       1.9   thorpej 
    148      1.15      haya 	{ CARDBUS_PRODUCT_3COM_3C575CTX,
    149      1.18      fvdl 	  EX_CONF_90XB | EX_CONF_PHY_POWER | EX_CONF_EEPROM_OFF |
    150      1.18      fvdl 	    EX_CONF_EEPROM_8BIT,
    151      1.15      haya 	  CARDBUS_COMMAND_IO_ENABLE | CARDBUS_COMMAND_MEM_ENABLE |
    152      1.15      haya 	      CARDBUS_COMMAND_MASTER_ENABLE,
    153      1.16      haya 	  EX_CB_CYCLONE,
    154      1.15      haya 	  "3c575CT Ethernet" },
    155      1.15      haya 
    156       1.9   thorpej 	{ 0,
    157      1.14   thorpej 	  0,
    158       1.9   thorpej 	  0,
    159       1.9   thorpej 	  0,
    160       1.9   thorpej 	  NULL },
    161       1.1      haya };
    162       1.1      haya 
    163      1.19   thorpej 
    164      1.19   thorpej void ex_cardbus_setup __P((struct ex_cardbus_softc *));
    165      1.19   thorpej 
    166       1.9   thorpej const struct ex_cardbus_product *ex_cardbus_lookup
    167       1.9   thorpej     __P((const struct cardbus_attach_args *));
    168       1.9   thorpej 
    169       1.9   thorpej const struct ex_cardbus_product *
    170       1.9   thorpej ex_cardbus_lookup(ca)
    171       1.9   thorpej 	const struct cardbus_attach_args *ca;
    172       1.9   thorpej {
    173       1.9   thorpej 	const struct ex_cardbus_product *ecp;
    174       1.9   thorpej 
    175       1.9   thorpej 	if (CARDBUS_VENDOR(ca->ca_id) != CARDBUS_VENDOR_3COM)
    176       1.9   thorpej 		return (NULL);
    177       1.1      haya 
    178       1.9   thorpej 	for (ecp = ex_cardbus_products; ecp->ecp_name != NULL; ecp++)
    179       1.9   thorpej 		if (CARDBUS_PRODUCT(ca->ca_id) == ecp->ecp_prodid)
    180       1.9   thorpej 			return (ecp);
    181       1.9   thorpej 	return (NULL);
    182       1.9   thorpej }
    183       1.1      haya 
    184       1.9   thorpej int
    185       1.1      haya ex_cardbus_match(parent, cf, aux)
    186       1.9   thorpej 	struct device *parent;
    187       1.9   thorpej 	struct cfdata *cf;
    188       1.9   thorpej 	void *aux;
    189       1.1      haya {
    190       1.9   thorpej 	struct cardbus_attach_args *ca = aux;
    191       1.9   thorpej 
    192       1.9   thorpej 	if (ex_cardbus_lookup(ca) != NULL)
    193       1.9   thorpej 		return (1);
    194       1.1      haya 
    195       1.9   thorpej 	return (0);
    196       1.1      haya }
    197       1.1      haya 
    198       1.9   thorpej void
    199       1.9   thorpej ex_cardbus_attach(parent, self, aux)
    200       1.9   thorpej 	struct device *parent;
    201       1.9   thorpej 	struct device *self;
    202       1.9   thorpej 	void *aux;
    203       1.9   thorpej {
    204      1.17      haya 	struct ex_cardbus_softc *csc = (void *)self;
    205      1.17      haya 	struct ex_softc *sc = &csc->sc_softc;
    206       1.9   thorpej 	struct cardbus_attach_args *ca = aux;
    207       1.9   thorpej 	cardbus_devfunc_t ct = ca->ca_ct;
    208      1.19   thorpej #if rbus
    209      1.19   thorpej #else
    210       1.9   thorpej 	cardbus_chipset_tag_t cc = ct->ct_cc;
    211      1.19   thorpej #endif
    212       1.9   thorpej 	const struct ex_cardbus_product *ecp;
    213      1.19   thorpej 	bus_addr_t adr, adr1;
    214       1.9   thorpej 
    215      1.19   thorpej 	sc->ex_bustype = EX_BUS_CARDBUS;
    216      1.19   thorpej 	sc->sc_dmat = ca->ca_dmat;
    217      1.19   thorpej 	csc->sc_ct = ca->ca_ct;
    218      1.19   thorpej 	csc->sc_intrline = ca->ca_intrline;
    219      1.19   thorpej 	csc->sc_tag = ca->ca_tag;
    220       1.9   thorpej 
    221       1.9   thorpej 	ecp = ex_cardbus_lookup(ca);
    222       1.9   thorpej 	if (ecp == NULL) {
    223       1.9   thorpej 		printf("\n");
    224       1.9   thorpej 		panic("ex_cardbus_attach: impossible");
    225       1.9   thorpej 	}
    226       1.1      haya 
    227       1.9   thorpej 	printf(": 3Com %s\n", ecp->ecp_name);
    228       1.1      haya 
    229       1.9   thorpej 	sc->ex_conf = ecp->ecp_flags;
    230      1.19   thorpej 	csc->sc_cardtype = ecp->ecp_cardtype;
    231      1.19   thorpej 	csc->sc_csr = ecp->ecp_csr;
    232       1.1      haya 
    233      1.19   thorpej 	if (Cardbus_mapreg_map(ct, CARDBUS_BASE0_REG, CARDBUS_MAPREG_TYPE_IO, 0,
    234      1.19   thorpej 		&sc->sc_iot, &sc->sc_ioh, &adr, &csc->sc_mapsize) == 0) {
    235       1.1      haya #if rbus
    236       1.1      haya #else
    237      1.19   thorpej 		(*ct->ct_cf->cardbus_io_open)(cc, 0, adr, adr + csc->sc_mapsize);
    238       1.1      haya #endif
    239      1.19   thorpej 		csc->sc_bar_reg = CARDBUS_BASE0_REG;
    240      1.19   thorpej 		csc->sc_bar_val = adr | CARDBUS_MAPREG_TYPE_IO;
    241       1.1      haya 
    242      1.19   thorpej 		if (csc->sc_cardtype == EX_CB_CYCLONE) {
    243      1.19   thorpej 			/* Map CardBus function status window. */
    244      1.19   thorpej 			if (Cardbus_mapreg_map(ct,
    245      1.19   thorpej 				CARDBUS_3C575BTX_FUNCSTAT_PCIREG,
    246      1.19   thorpej 		    		CARDBUS_MAPREG_TYPE_MEM, 0,
    247      1.19   thorpej 				 &csc->sc_funct, &csc->sc_funch,
    248      1.19   thorpej 				 &adr1, &csc->sc_funcsize) == 0) {
    249      1.19   thorpej 
    250      1.19   thorpej 				csc->sc_bar_reg1 =
    251      1.19   thorpej 					CARDBUS_3C575BTX_FUNCSTAT_PCIREG;
    252      1.19   thorpej 				csc->sc_bar_val1 =
    253      1.19   thorpej 					adr1 | CARDBUS_MAPREG_TYPE_MEM;
    254      1.19   thorpej 
    255      1.19   thorpej 			} else {
    256  1.20.2.1     lukem 				printf("%s: unable to map function "
    257  1.20.2.1     lukem 					"status window\n", self->dv_xname);
    258      1.19   thorpej 				return;
    259      1.19   thorpej 			}
    260       1.9   thorpej 
    261      1.19   thorpej 			/* Setup interrupt acknowledge hook */
    262      1.19   thorpej 			sc->intr_ack = ex_cardbus_intr_ack;
    263       1.9   thorpej 		}
    264       1.9   thorpej 	}
    265      1.19   thorpej 	else {
    266      1.19   thorpej 		printf(": can't map i/o space\n");
    267      1.19   thorpej 		return;
    268       1.9   thorpej 	}
    269       1.1      haya 
    270      1.19   thorpej 	/* Power management hooks. */
    271      1.19   thorpej 	sc->enable = ex_cardbus_enable;
    272      1.19   thorpej 	sc->disable = ex_cardbus_disable;
    273      1.19   thorpej 	sc->power = ex_cardbus_power;
    274       1.1      haya 
    275      1.19   thorpej 	/*
    276      1.19   thorpej 	 *  Handle power management nonsense and
    277      1.20   kanaoka 	 * initialize the configuration registers.
    278      1.19   thorpej 	 */
    279      1.19   thorpej 	ex_cardbus_setup(csc);
    280       1.1      haya 
    281       1.9   thorpej 	ex_config(sc);
    282       1.9   thorpej 
    283      1.17      haya 	if (csc->sc_cardtype == EX_CB_CYCLONE)
    284      1.17      haya 		bus_space_write_4(csc->sc_funct, csc->sc_funch,
    285       1.9   thorpej 		    EX_CB_INTR, EX_CB_INTR_ACK);
    286       1.1      haya 
    287      1.19   thorpej 	Cardbus_function_disable(csc->sc_ct);
    288       1.1      haya }
    289       1.1      haya 
    290       1.9   thorpej void
    291       1.1      haya ex_cardbus_intr_ack(sc)
    292       1.9   thorpej 	struct ex_softc *sc;
    293       1.1      haya {
    294      1.17      haya 	struct ex_cardbus_softc *csc = (struct ex_cardbus_softc *)sc;
    295       1.9   thorpej 
    296      1.17      haya 	bus_space_write_4(csc->sc_funct, csc->sc_funch, EX_CB_INTR,
    297       1.9   thorpej 	    EX_CB_INTR_ACK);
    298       1.1      haya }
    299       1.1      haya 
    300       1.9   thorpej int
    301       1.1      haya ex_cardbus_detach(self, arg)
    302       1.9   thorpej 	struct device *self;
    303       1.9   thorpej 	int arg;
    304       1.1      haya {
    305      1.17      haya 	struct ex_cardbus_softc *csc = (void *)self;
    306      1.17      haya 	struct ex_softc *sc = &csc->sc_softc;
    307      1.17      haya 	struct cardbus_devfunc *ct = csc->sc_ct;
    308      1.11  augustss 	int rv;
    309       1.1      haya 
    310      1.11  augustss #if defined(DIAGNOSTIC)
    311      1.11  augustss 	if (ct == NULL) {
    312  1.20.2.3  jdolecek 		panic("%s: data structure lacks", sc->sc_dev.dv_xname);
    313      1.11  augustss 	}
    314      1.11  augustss #endif
    315      1.10      haya 
    316      1.11  augustss 	rv = ex_detach(sc);
    317      1.11  augustss 	if (rv == 0) {
    318      1.11  augustss 		/*
    319      1.11  augustss 		 * Unhook the interrupt handler.
    320      1.11  augustss 		 */
    321      1.11  augustss 		cardbus_intr_disestablish(ct->ct_cc, ct->ct_cf, sc->sc_ih);
    322       1.1      haya 
    323      1.17      haya 		if (csc->sc_cardtype == EX_CB_CYCLONE) {
    324      1.12   thorpej 			Cardbus_mapreg_unmap(ct,
    325      1.12   thorpej 			    CARDBUS_3C575BTX_FUNCSTAT_PCIREG,
    326      1.17      haya 			    csc->sc_funct, csc->sc_funch, csc->sc_funcsize);
    327      1.11  augustss 		}
    328       1.1      haya 
    329      1.12   thorpej 		Cardbus_mapreg_unmap(ct, CARDBUS_BASE0_REG, sc->sc_iot,
    330      1.17      haya 		    sc->sc_ioh, csc->sc_mapsize);
    331      1.11  augustss 	}
    332      1.11  augustss 	return (rv);
    333       1.1      haya }
    334       1.1      haya 
    335       1.9   thorpej int
    336       1.1      haya ex_cardbus_enable(sc)
    337       1.9   thorpej 	struct ex_softc *sc;
    338       1.1      haya {
    339       1.9   thorpej 	struct ex_cardbus_softc *csc = (struct ex_cardbus_softc *)sc;
    340       1.9   thorpej 	cardbus_function_tag_t cf = csc->sc_ct->ct_cf;
    341       1.9   thorpej 	cardbus_chipset_tag_t cc = csc->sc_ct->ct_cc;
    342       1.9   thorpej 
    343       1.9   thorpej 	Cardbus_function_enable(csc->sc_ct);
    344      1.19   thorpej 	ex_cardbus_setup(csc);
    345       1.9   thorpej 
    346       1.9   thorpej 	sc->sc_ih = cardbus_intr_establish(cc, cf, csc->sc_intrline,
    347       1.9   thorpej 	    IPL_NET, ex_intr, sc);
    348       1.9   thorpej 	if (NULL == sc->sc_ih) {
    349       1.9   thorpej 		printf("%s: couldn't establish interrupt\n",
    350       1.9   thorpej 		    sc->sc_dev.dv_xname);
    351       1.9   thorpej 		return (1);
    352       1.9   thorpej 	}
    353      1.19   thorpej 	printf("%s: interrupting at %d\n", sc->sc_dev.dv_xname,
    354      1.19   thorpej 		csc->sc_intrline);
    355       1.1      haya 
    356       1.9   thorpej 	return (0);
    357       1.1      haya }
    358       1.1      haya 
    359       1.9   thorpej void
    360       1.1      haya ex_cardbus_disable(sc)
    361       1.9   thorpej 	struct ex_softc *sc;
    362       1.1      haya {
    363       1.9   thorpej 	struct ex_cardbus_softc *csc = (struct ex_cardbus_softc *)sc;
    364       1.9   thorpej 	cardbus_function_tag_t cf = csc->sc_ct->ct_cf;
    365       1.9   thorpej 	cardbus_chipset_tag_t cc = csc->sc_ct->ct_cc;
    366       1.1      haya 
    367      1.19   thorpej 	cardbus_intr_disestablish(cc, cf, sc->sc_ih);
    368      1.19   thorpej 	sc->sc_ih = NULL;
    369      1.19   thorpej 
    370       1.9   thorpej  	Cardbus_function_disable(csc->sc_ct);
    371       1.1      haya 
    372       1.1      haya }
    373      1.19   thorpej 
    374      1.19   thorpej void
    375      1.19   thorpej ex_cardbus_power(sc, why)
    376      1.19   thorpej 	struct ex_softc *sc;
    377      1.19   thorpej 	int why;
    378      1.19   thorpej {
    379      1.19   thorpej 	struct ex_cardbus_softc *csc = (void *) sc;
    380      1.19   thorpej 
    381      1.19   thorpej 	if (why == PWR_RESUME) {
    382      1.19   thorpej 		/*
    383      1.19   thorpej 		 * Give the PCI configuration registers a kick
    384      1.19   thorpej 		 * in the head.
    385      1.19   thorpej 		 */
    386      1.19   thorpej #ifdef DIAGNOSTIC
    387      1.19   thorpej 		if (sc->enabled == 0)
    388      1.19   thorpej 			panic("ex_cardbus_power");
    389      1.19   thorpej #endif
    390      1.19   thorpej 		ex_cardbus_setup(csc);
    391      1.19   thorpej 	}
    392      1.19   thorpej }
    393      1.19   thorpej 
    394      1.19   thorpej void
    395      1.19   thorpej ex_cardbus_setup(csc)
    396      1.19   thorpej 	struct ex_cardbus_softc *csc;
    397      1.19   thorpej {
    398      1.19   thorpej 	struct ex_softc *sc = &csc->sc_softc;
    399      1.19   thorpej 	cardbus_devfunc_t ct = csc->sc_ct;
    400      1.19   thorpej 	cardbus_chipset_tag_t cc = ct->ct_cc;
    401      1.19   thorpej 	cardbus_function_tag_t cf = ct->ct_cf;
    402      1.19   thorpej 	cardbusreg_t  reg;
    403      1.19   thorpej 	int pmreg;
    404      1.19   thorpej 
    405      1.19   thorpej 	/* Get it out of power save mode if needed (BIOS bugs). */
    406      1.19   thorpej 	if (cardbus_get_capability(cc, cf, csc->sc_tag,
    407      1.19   thorpej 	    PCI_CAP_PWRMGMT, &pmreg, 0)) {
    408      1.19   thorpej 		reg = cardbus_conf_read(cc, cf, csc->sc_tag, pmreg + 4) & 0x03;
    409      1.19   thorpej #if 1 /* XXX Probably not right for CardBus. */
    410      1.19   thorpej 		if (reg == 3) {
    411      1.19   thorpej 			/*
    412      1.19   thorpej 			 * The card has lost all configuration data in
    413      1.19   thorpej 			 * this state, so punt.
    414      1.19   thorpej 			 */
    415      1.19   thorpej 			printf("%s: unable to wake up from power state D3\n",
    416      1.19   thorpej 			    sc->sc_dev.dv_xname);
    417      1.19   thorpej 			return;
    418      1.19   thorpej 		}
    419      1.19   thorpej #endif
    420      1.19   thorpej 		if (reg != 0) {
    421      1.19   thorpej 			printf("%s: waking up from power state D%d\n",
    422      1.19   thorpej 			    sc->sc_dev.dv_xname, reg);
    423      1.19   thorpej 			cardbus_conf_write(cc, cf, csc->sc_tag,
    424      1.19   thorpej 			    pmreg + 4, 0);
    425      1.19   thorpej 		}
    426      1.19   thorpej 	}
    427      1.19   thorpej 
    428      1.19   thorpej 	/* Make sure the right access type is on the CardBus bridge. */
    429      1.19   thorpej 	(ct->ct_cf->cardbus_ctrl)(cc, CARDBUS_IO_ENABLE);
    430      1.19   thorpej 	if (csc->sc_cardtype == EX_CB_CYCLONE) {
    431      1.19   thorpej 		/*
    432      1.19   thorpej 		 * Make sure CardBus brigde can access memory space.  Usually
    433      1.19   thorpej 		 * memory access is enabled by BIOS, but some BIOSes do not
    434      1.19   thorpej 		 * enable it.
    435      1.19   thorpej 		 */
    436      1.19   thorpej 		(ct->ct_cf->cardbus_ctrl)(cc, CARDBUS_MEM_ENABLE);
    437      1.19   thorpej 
    438      1.19   thorpej 		/* Program the BAR */
    439      1.19   thorpej 		cardbus_conf_write(cc, cf, csc->sc_tag,
    440      1.19   thorpej 			csc->sc_bar_reg1, csc->sc_bar_val1);
    441      1.19   thorpej 	}
    442      1.19   thorpej 	(ct->ct_cf->cardbus_ctrl)(cc, CARDBUS_BM_ENABLE);
    443      1.19   thorpej 
    444      1.19   thorpej 
    445      1.19   thorpej 	/* Program the BAR */
    446      1.19   thorpej 	cardbus_conf_write(cc, cf, csc->sc_tag,
    447      1.19   thorpej 		csc->sc_bar_reg, csc->sc_bar_val);
    448      1.19   thorpej 
    449      1.19   thorpej 	/* Enable the appropriate bits in the CARDBUS CSR. */
    450      1.19   thorpej 	reg = cardbus_conf_read(cc, cf, csc->sc_tag,
    451      1.19   thorpej 	    CARDBUS_COMMAND_STATUS_REG);
    452      1.19   thorpej 	reg |= csc->sc_csr;
    453      1.19   thorpej 	cardbus_conf_write(cc, cf, csc->sc_tag, CARDBUS_COMMAND_STATUS_REG,
    454      1.19   thorpej 	    reg);
    455      1.19   thorpej 
    456      1.19   thorpej  	/*
    457      1.19   thorpej 	 * set latency timmer
    458      1.19   thorpej 	 */
    459      1.19   thorpej 	reg = cardbus_conf_read(cc, cf, csc->sc_tag, CARDBUS_BHLC_REG);
    460      1.19   thorpej 	if (CARDBUS_LATTIMER(reg) < 0x20) {
    461      1.19   thorpej 		/* at least the value of latency timer should 0x20. */
    462      1.19   thorpej 		DPRINTF(("if_ex_cardbus: lattimer 0x%x -> 0x20\n",
    463      1.19   thorpej 		    CARDBUS_LATTIMER(reg)));
    464      1.19   thorpej 		reg &= ~(CARDBUS_LATTIMER_MASK << CARDBUS_LATTIMER_SHIFT);
    465      1.19   thorpej 		reg |= (0x20 << CARDBUS_LATTIMER_SHIFT);
    466      1.19   thorpej 		cardbus_conf_write(cc, cf, csc->sc_tag, CARDBUS_BHLC_REG, reg);
    467      1.19   thorpej 	}
    468      1.19   thorpej }
    469