Home | History | Annotate | Line # | Download | only in pcmcia
pcmcom.c revision 1.4.10.1
      1  1.4.10.1   bouyer /*	$NetBSD: pcmcom.c,v 1.4.10.1 2000/11/20 11:42:48 bouyer Exp $	*/
      2       1.1  thorpej 
      3       1.1  thorpej /*-
      4  1.4.10.1   bouyer  * Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
      5       1.1  thorpej  * All rights reserved.
      6       1.1  thorpej  *
      7       1.1  thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1  thorpej  * by RedBack Networks, Inc.
      9       1.1  thorpej  *
     10       1.1  thorpej  * Redistribution and use in source and binary forms, with or without
     11       1.1  thorpej  * modification, are permitted provided that the following conditions
     12       1.1  thorpej  * are met:
     13       1.1  thorpej  * 1. Redistributions of source code must retain the above copyright
     14       1.1  thorpej  *    notice, this list of conditions and the following disclaimer.
     15       1.1  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1  thorpej  *    notice, this list of conditions and the following disclaimer in the
     17       1.1  thorpej  *    documentation and/or other materials provided with the distribution.
     18       1.1  thorpej  * 3. All advertising materials mentioning features or use of this software
     19       1.1  thorpej  *    must display the following acknowledgement:
     20       1.1  thorpej  *	This product includes software developed by the NetBSD
     21       1.1  thorpej  *	Foundation, Inc. and its contributors.
     22       1.1  thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23       1.1  thorpej  *    contributors may be used to endorse or promote products derived
     24       1.1  thorpej  *    from this software without specific prior written permission.
     25       1.1  thorpej  *
     26       1.1  thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27       1.1  thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28       1.1  thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29       1.1  thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30       1.1  thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31       1.1  thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32       1.1  thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33       1.1  thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34       1.1  thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35       1.1  thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36       1.1  thorpej  * POSSIBILITY OF SUCH DAMAGE.
     37       1.1  thorpej  */
     38       1.1  thorpej 
     39       1.1  thorpej /*
     40       1.1  thorpej  * Device driver for multi-port PCMCIA serial cards, written by
     41       1.1  thorpej  * Jason R. Thorpe for RedBack Networks, Inc.
     42       1.1  thorpej  *
     43       1.1  thorpej  * Most of these cards are simply multiple UARTs sharing a single interrupt
     44       1.1  thorpej  * line, and rely on the fact that PCMCIA level-triggered interrupts can
     45       1.1  thorpej  * be shared.  There are no special interrupt registers on them, as there
     46       1.1  thorpej  * are on most ISA multi-port serial cards.
     47       1.1  thorpej  *
     48       1.1  thorpej  * If there are other cards that have interrupt registers, they should not
     49       1.1  thorpej  * be glued into this driver.  Rather, separate drivers should be written
     50       1.1  thorpej  * for those devices, as we have in the ISA multi-port serial card case.
     51       1.1  thorpej  */
     52       1.1  thorpej 
     53       1.1  thorpej #include <sys/param.h>
     54       1.1  thorpej #include <sys/systm.h>
     55       1.1  thorpej #include <sys/device.h>
     56       1.1  thorpej #include <sys/termios.h>
     57       1.1  thorpej #include <sys/malloc.h>
     58       1.1  thorpej 
     59       1.1  thorpej #include <machine/bus.h>
     60       1.1  thorpej #include <machine/intr.h>
     61       1.1  thorpej 
     62       1.1  thorpej #include <dev/ic/comreg.h>
     63       1.1  thorpej #include <dev/ic/comvar.h>
     64       1.1  thorpej 
     65       1.1  thorpej #include <dev/pcmcia/pcmciavar.h>
     66       1.1  thorpej #include <dev/pcmcia/pcmciareg.h>
     67       1.1  thorpej #include <dev/pcmcia/pcmciadevs.h>
     68       1.1  thorpej 
     69       1.1  thorpej #include "com.h"
     70       1.1  thorpej #include "pcmcom.h"
     71       1.1  thorpej 
     72       1.1  thorpej #include "locators.h"
     73       1.1  thorpej 
     74       1.1  thorpej struct pcmcom_slave_info {
     75       1.1  thorpej 	struct pcmcia_io_handle psi_pcioh;	/* PCMCIA i/o space info */
     76       1.1  thorpej 	int psi_io_window;			/* our i/o window */
     77       1.1  thorpej 	struct device *psi_child;		/* child's device */
     78       1.1  thorpej };
     79       1.1  thorpej 
     80       1.1  thorpej struct pcmcom_softc {
     81       1.1  thorpej 	struct device sc_dev;			/* generic device glue */
     82       1.1  thorpej 
     83       1.1  thorpej 	struct pcmcia_function *sc_pf;		/* our PCMCIA function */
     84       1.1  thorpej 	void *sc_ih;				/* interrupt handle */
     85       1.1  thorpej 	int sc_enabled_count;			/* enabled count */
     86       1.1  thorpej 
     87       1.1  thorpej 	struct pcmcom_slave_info *sc_slaves;	/* slave info */
     88       1.1  thorpej 	int sc_nslaves;				/* slave count */
     89       1.1  thorpej };
     90       1.1  thorpej 
     91       1.1  thorpej struct pcmcom_attach_args {
     92       1.1  thorpej 	bus_space_tag_t pca_iot;		/* I/O tag */
     93       1.1  thorpej 	bus_space_handle_t pca_ioh;		/* I/O handle */
     94       1.1  thorpej 	int pca_slave;				/* slave # */
     95       1.1  thorpej };
     96       1.1  thorpej 
     97       1.1  thorpej int	pcmcom_match __P((struct device *, struct cfdata *, void *));
     98       1.1  thorpej void	pcmcom_attach __P((struct device *, struct device *, void *));
     99       1.3  thorpej int	pcmcom_detach __P((struct device *, int));
    100       1.3  thorpej int	pcmcom_activate __P((struct device *, enum devact));
    101       1.1  thorpej 
    102       1.1  thorpej struct cfattach pcmcom_ca = {
    103       1.3  thorpej 	sizeof(struct pcmcom_softc), pcmcom_match, pcmcom_attach,
    104       1.3  thorpej 	    pcmcom_detach, pcmcom_activate
    105       1.1  thorpej };
    106       1.1  thorpej 
    107  1.4.10.1   bouyer const struct pcmcom_product {
    108  1.4.10.1   bouyer 	struct pcmcia_product pp_product;
    109       1.1  thorpej 	int		pp_nslaves;		/* number of slaves */
    110       1.1  thorpej } pcmcom_products[] = {
    111  1.4.10.1   bouyer 	{ { PCMCIA_STR_SOCKET_DUAL_RS232,	PCMCIA_VENDOR_SOCKET,
    112  1.4.10.1   bouyer 	    PCMCIA_PRODUCT_SOCKET_DUAL_RS232,	0 },
    113  1.4.10.1   bouyer 	  2 },
    114  1.4.10.1   bouyer 
    115  1.4.10.1   bouyer 	{ { NULL } }
    116       1.1  thorpej };
    117       1.1  thorpej 
    118       1.1  thorpej int	pcmcom_print __P((void *, const char *));
    119       1.1  thorpej int	pcmcom_submatch __P((struct device *, struct cfdata *, void *));
    120       1.1  thorpej 
    121       1.1  thorpej int	pcmcom_check_cfe __P((struct pcmcom_softc *,
    122       1.1  thorpej 	    struct pcmcia_config_entry *));
    123       1.1  thorpej void	pcmcom_attach_slave __P((struct pcmcom_softc *, int));
    124       1.1  thorpej 
    125       1.1  thorpej int	pcmcom_enable __P((struct pcmcom_softc *));
    126       1.1  thorpej void	pcmcom_disable __P((struct pcmcom_softc *));
    127       1.1  thorpej 
    128       1.1  thorpej int	pcmcom_intr __P((void *));
    129       1.1  thorpej 
    130       1.1  thorpej int
    131       1.1  thorpej pcmcom_match(parent, cf, aux)
    132       1.1  thorpej 	struct device *parent;
    133       1.1  thorpej 	struct cfdata *cf;
    134       1.1  thorpej 	void *aux;
    135       1.1  thorpej {
    136       1.1  thorpej 	struct pcmcia_attach_args *pa = aux;
    137       1.1  thorpej 
    138  1.4.10.1   bouyer 	if (pcmcia_product_lookup(pa,
    139  1.4.10.1   bouyer 	    (const struct pcmcia_product *)pcmcom_products,
    140  1.4.10.1   bouyer 	    sizeof pcmcom_products[0], NULL) != NULL)
    141       1.1  thorpej 		return (10);	/* beat com_pcmcia */
    142       1.1  thorpej 	return (0);
    143       1.1  thorpej }
    144       1.1  thorpej 
    145       1.1  thorpej void
    146       1.1  thorpej pcmcom_attach(parent, self, aux)
    147       1.1  thorpej 	struct device *parent, *self;
    148       1.1  thorpej 	void *aux;
    149       1.1  thorpej {
    150       1.1  thorpej 	struct pcmcom_softc *sc = (struct pcmcom_softc *)self;
    151       1.1  thorpej 	struct pcmcia_attach_args *pa = aux;
    152       1.1  thorpej 	struct pcmcia_config_entry *cfe;
    153  1.4.10.1   bouyer 	const struct pcmcom_product *pp;
    154       1.1  thorpej 	size_t size;
    155       1.1  thorpej 	int i;
    156       1.1  thorpej 
    157       1.1  thorpej 	sc->sc_pf = pa->pf;
    158       1.1  thorpej 
    159  1.4.10.1   bouyer 	pp = (const struct pcmcom_product *)pcmcia_product_lookup(pa,
    160  1.4.10.1   bouyer             (const struct pcmcia_product *)pcmcom_products,
    161  1.4.10.1   bouyer             sizeof pcmcom_products[0], NULL);
    162       1.1  thorpej 	if (pp == NULL) {
    163       1.1  thorpej 		printf("\n");
    164       1.1  thorpej 		panic("pcmcom_attach: impossible");
    165       1.1  thorpej 	}
    166       1.1  thorpej 
    167  1.4.10.1   bouyer 	printf(": %s\n", pp->pp_product.pp_name);
    168       1.1  thorpej 
    169       1.1  thorpej 	/* Allocate the slave info. */
    170       1.1  thorpej 	sc->sc_nslaves = pp->pp_nslaves;
    171       1.1  thorpej 	size = sizeof(struct pcmcom_slave_info) * sc->sc_nslaves;
    172       1.1  thorpej 	sc->sc_slaves = malloc(size, M_DEVBUF, M_NOWAIT);
    173       1.1  thorpej 	if (sc->sc_slaves == NULL) {
    174       1.1  thorpej 		printf("%s: unable to allocate slave info\n",
    175       1.1  thorpej 		    sc->sc_dev.dv_xname);
    176       1.1  thorpej 		return;
    177       1.1  thorpej 	}
    178       1.1  thorpej 	memset(sc->sc_slaves, 0, size);
    179       1.1  thorpej 
    180       1.1  thorpej 	/*
    181       1.1  thorpej 	 * The address decoders on these cards are stupid.  They decode
    182       1.1  thorpej 	 * (usually) 10 bits of address, so you need to allocate the
    183       1.1  thorpej 	 * regions they request in order for the card to differentiate
    184       1.1  thorpej 	 * between serial ports.
    185       1.1  thorpej 	 */
    186       1.1  thorpej 	for (cfe = pa->pf->cfe_head.sqh_first; cfe != NULL;
    187       1.1  thorpej 	     cfe = cfe->cfe_list.sqe_next) {
    188       1.1  thorpej 		if (pcmcom_check_cfe(sc, cfe)) {
    189       1.1  thorpej 			/* Found one! */
    190       1.1  thorpej 			break;
    191       1.1  thorpej 		}
    192       1.1  thorpej 	}
    193       1.1  thorpej 	if (cfe == NULL) {
    194       1.1  thorpej 		printf("%s: unable to find a suitable config table entry\n",
    195       1.1  thorpej 		    sc->sc_dev.dv_xname);
    196       1.1  thorpej 		return;
    197       1.1  thorpej 	}
    198       1.1  thorpej 
    199       1.1  thorpej 	/* Enable the card. */
    200       1.1  thorpej 	pcmcia_function_init(pa->pf, cfe);
    201       1.1  thorpej 	if (pcmcia_function_enable(sc->sc_pf)) {
    202       1.1  thorpej 		printf("%s: function enable failed\n", sc->sc_dev.dv_xname);
    203       1.1  thorpej 		return;
    204       1.2  thorpej 	}
    205       1.1  thorpej 
    206       1.1  thorpej 	sc->sc_enabled_count = 1;
    207       1.1  thorpej 
    208       1.1  thorpej 	/* Attach the children. */
    209       1.1  thorpej 	for (i = 0; i < sc->sc_nslaves; i++)
    210       1.1  thorpej 		pcmcom_attach_slave(sc, i);
    211       1.1  thorpej 
    212       1.1  thorpej 	sc->sc_enabled_count = 0;
    213       1.1  thorpej 	pcmcia_function_disable(sc->sc_pf);
    214       1.1  thorpej }
    215       1.1  thorpej 
    216       1.1  thorpej int
    217       1.1  thorpej pcmcom_check_cfe(sc, cfe)
    218       1.1  thorpej 	struct pcmcom_softc *sc;
    219       1.1  thorpej 	struct pcmcia_config_entry *cfe;
    220       1.1  thorpej {
    221       1.1  thorpej 	struct pcmcom_slave_info *psi;
    222       1.1  thorpej 	int slave;
    223       1.1  thorpej 
    224       1.1  thorpej 	/* We need to have the same number of I/O spaces as we do slaves. */
    225       1.1  thorpej 	if (cfe->num_iospace != sc->sc_nslaves)
    226       1.1  thorpej 		return (0);
    227       1.1  thorpej 
    228       1.1  thorpej 	for (slave = 0; slave < sc->sc_nslaves; slave++) {
    229       1.1  thorpej 		psi = &sc->sc_slaves[slave];
    230       1.1  thorpej 		if (pcmcia_io_alloc(sc->sc_pf,
    231       1.1  thorpej 		    cfe->iospace[slave].start,
    232       1.1  thorpej 		    cfe->iospace[slave].length,
    233       1.1  thorpej 		    cfe->iospace[slave].length,
    234       1.1  thorpej 		    &psi->psi_pcioh))
    235       1.1  thorpej 			goto release;
    236       1.1  thorpej 	}
    237       1.1  thorpej 
    238       1.1  thorpej 	/* If we got here, we were able to allocate space for all slaves! */
    239       1.1  thorpej 	return (1);
    240       1.1  thorpej 
    241       1.1  thorpej  release:
    242       1.1  thorpej 	/* Release the i/o spaces we've allocated. */
    243       1.1  thorpej 	for (slave--; slave >= 0; slave--) {
    244       1.1  thorpej 		psi = &sc->sc_slaves[slave];
    245       1.1  thorpej 		pcmcia_io_free(sc->sc_pf, &psi->psi_pcioh);
    246       1.1  thorpej 	}
    247       1.1  thorpej 	return (0);
    248       1.1  thorpej }
    249       1.1  thorpej 
    250       1.1  thorpej void
    251       1.1  thorpej pcmcom_attach_slave(sc, slave)
    252       1.1  thorpej 	struct pcmcom_softc *sc;
    253       1.1  thorpej 	int slave;
    254       1.1  thorpej {
    255       1.1  thorpej 	struct pcmcom_slave_info *psi = &sc->sc_slaves[slave];
    256       1.1  thorpej 	struct pcmcom_attach_args pca;
    257       1.1  thorpej 
    258       1.1  thorpej 	printf("%s: slave %d", sc->sc_dev.dv_xname, slave);
    259       1.1  thorpej 
    260       1.1  thorpej 	if (pcmcia_io_map(sc->sc_pf, PCMCIA_WIDTH_IO8, 0, psi->psi_pcioh.size,
    261       1.1  thorpej 	    &psi->psi_pcioh, &psi->psi_io_window)) {
    262       1.1  thorpej 		printf(": can't map i/o space\n");
    263       1.1  thorpej 		return;
    264       1.1  thorpej 	}
    265       1.1  thorpej 
    266       1.1  thorpej 	printf("\n");
    267       1.1  thorpej 
    268       1.1  thorpej 	pca.pca_iot = psi->psi_pcioh.iot;
    269       1.1  thorpej 	pca.pca_ioh = psi->psi_pcioh.ioh;
    270       1.1  thorpej 	pca.pca_slave = slave;
    271       1.1  thorpej 
    272       1.1  thorpej 	psi->psi_child = config_found_sm(&sc->sc_dev, &pca, pcmcom_print,
    273       1.1  thorpej 	    pcmcom_submatch);
    274       1.1  thorpej }
    275       1.1  thorpej 
    276       1.1  thorpej int
    277       1.3  thorpej pcmcom_detach(self, flags)
    278       1.3  thorpej 	struct device *self;
    279       1.3  thorpej 	int flags;
    280       1.3  thorpej {
    281       1.3  thorpej 	struct pcmcom_softc *sc = (struct pcmcom_softc *)self;
    282       1.3  thorpej 	struct pcmcom_slave_info *psi;
    283       1.3  thorpej 	int slave, error;
    284       1.3  thorpej 
    285       1.4  thorpej 	for (slave = sc->sc_nslaves - 1; slave >= 0; slave--) {
    286       1.3  thorpej 		psi = &sc->sc_slaves[slave];
    287       1.3  thorpej 		if (psi->psi_child == NULL)
    288       1.3  thorpej 			continue;
    289       1.3  thorpej 
    290       1.3  thorpej 		/* Detach the child. */
    291  1.4.10.1   bouyer 		if ((error = config_detach(psi->psi_child, flags)) != 0)
    292       1.3  thorpej 			return (error);
    293       1.3  thorpej 		psi->psi_child = NULL;
    294       1.3  thorpej 
    295       1.3  thorpej 		/* Unmap the i/o window. */
    296       1.3  thorpej 		pcmcia_io_unmap(sc->sc_pf, psi->psi_io_window);
    297       1.3  thorpej 
    298       1.3  thorpej 		/* Free the i/o space. */
    299       1.3  thorpej 		pcmcia_io_free(sc->sc_pf, &psi->psi_pcioh);
    300       1.3  thorpej 	}
    301       1.3  thorpej 	return (0);
    302       1.3  thorpej }
    303       1.3  thorpej 
    304       1.3  thorpej int
    305       1.3  thorpej pcmcom_activate(self, act)
    306       1.3  thorpej 	struct device *self;
    307       1.3  thorpej 	enum devact act;
    308       1.3  thorpej {
    309       1.3  thorpej 	struct pcmcom_softc *sc = (struct pcmcom_softc *)self;
    310       1.3  thorpej 	struct pcmcom_slave_info *psi;
    311       1.3  thorpej 	int slave, error = 0, s;
    312       1.3  thorpej 
    313       1.3  thorpej 	s = splserial();
    314       1.3  thorpej 	switch (act) {
    315       1.3  thorpej 	case DVACT_ACTIVATE:
    316       1.3  thorpej 		error = EOPNOTSUPP;
    317       1.3  thorpej 		break;
    318       1.3  thorpej 
    319       1.3  thorpej 	case DVACT_DEACTIVATE:
    320       1.4  thorpej 		for (slave = sc->sc_nslaves - 1; slave >= 0; slave--) {
    321       1.3  thorpej 			psi = &sc->sc_slaves[slave];
    322       1.3  thorpej 			if (psi->psi_child == NULL)
    323       1.3  thorpej 				continue;
    324       1.3  thorpej 
    325       1.3  thorpej 			/*
    326       1.3  thorpej 			 * Deactivate the child.  Doing so will cause our
    327       1.3  thorpej 			 * own enabled count to drop to 0, once all children
    328       1.3  thorpej 			 * are deactivated.
    329       1.3  thorpej 			 */
    330       1.3  thorpej 			if ((error = config_deactivate(psi->psi_child)) != 0)
    331       1.3  thorpej 				break;
    332       1.3  thorpej 		}
    333       1.3  thorpej 		break;
    334       1.3  thorpej 	}
    335       1.3  thorpej 	splx(s);
    336       1.3  thorpej 	return (error);
    337       1.3  thorpej }
    338       1.3  thorpej 
    339       1.3  thorpej int
    340       1.1  thorpej pcmcom_print(aux, pnp)
    341       1.1  thorpej 	void *aux;
    342       1.1  thorpej 	const char *pnp;
    343       1.1  thorpej {
    344       1.1  thorpej 	struct pcmcom_attach_args *pca = aux;
    345       1.1  thorpej 
    346       1.1  thorpej 	/* only com's can attach to pcmcom's; easy... */
    347       1.1  thorpej 	if (pnp)
    348       1.1  thorpej 		printf("com at %s", pnp);
    349       1.1  thorpej 
    350       1.1  thorpej 	printf(" slave %d", pca->pca_slave);
    351       1.1  thorpej 
    352       1.1  thorpej 	return (UNCONF);
    353       1.1  thorpej }
    354       1.1  thorpej 
    355       1.1  thorpej int
    356       1.1  thorpej pcmcom_submatch(parent, cf, aux)
    357       1.1  thorpej 	struct device *parent;
    358       1.1  thorpej 	struct cfdata *cf;
    359       1.1  thorpej 	void *aux;
    360       1.1  thorpej {
    361       1.1  thorpej 	struct pcmcom_attach_args *pca = aux;
    362       1.1  thorpej 
    363       1.1  thorpej 	if (cf->cf_loc[PCMCOMCF_SLAVE] != pca->pca_slave &&
    364       1.1  thorpej 	    cf->cf_loc[PCMCOMCF_SLAVE] != PCMCOMCF_SLAVE_DEFAULT)
    365       1.1  thorpej 		return (0);
    366       1.1  thorpej 
    367       1.1  thorpej 	return ((*cf->cf_attach->ca_match)(parent, cf, aux));
    368       1.1  thorpej }
    369       1.1  thorpej 
    370       1.1  thorpej int
    371       1.1  thorpej pcmcom_intr(arg)
    372       1.1  thorpej 	void *arg;
    373       1.1  thorpej {
    374       1.1  thorpej #if NCOM > 0
    375       1.1  thorpej 	struct pcmcom_softc *sc = arg;
    376       1.1  thorpej 	int i, rval = 0;
    377       1.1  thorpej 
    378       1.1  thorpej 	if (sc->sc_enabled_count == 0)
    379       1.1  thorpej 		return (0);
    380       1.1  thorpej 
    381       1.1  thorpej 	for (i = 0; i < sc->sc_nslaves; i++) {
    382       1.1  thorpej 		if (sc->sc_slaves[i].psi_child != NULL)
    383       1.1  thorpej 			rval |= comintr(sc->sc_slaves[i].psi_child);
    384       1.1  thorpej 	}
    385       1.1  thorpej 
    386       1.1  thorpej 	return (rval);
    387       1.1  thorpej #else
    388       1.1  thorpej 	return (0);
    389       1.1  thorpej #endif /* NCOM > 0 */
    390       1.1  thorpej }
    391       1.1  thorpej 
    392       1.1  thorpej int
    393       1.1  thorpej pcmcom_enable(sc)
    394       1.1  thorpej 	struct pcmcom_softc *sc;
    395       1.1  thorpej {
    396       1.1  thorpej 
    397       1.1  thorpej 	sc->sc_enabled_count++;
    398       1.1  thorpej 	if (sc->sc_enabled_count > 1)
    399       1.1  thorpej 		return (0);
    400       1.1  thorpej 
    401       1.1  thorpej 	/* Establish the interrupt. */
    402       1.1  thorpej 	sc->sc_ih = pcmcia_intr_establish(sc->sc_pf, IPL_SERIAL,
    403       1.1  thorpej 	    pcmcom_intr, sc);
    404       1.1  thorpej 	if (sc->sc_ih == NULL) {
    405       1.1  thorpej 		printf("%s: couldn't establish interrupt\n",
    406       1.1  thorpej 		    sc->sc_dev.dv_xname);
    407       1.1  thorpej 		return (1);
    408       1.1  thorpej 	}
    409       1.1  thorpej 
    410       1.1  thorpej 	return (pcmcia_function_enable(sc->sc_pf));
    411       1.1  thorpej }
    412       1.1  thorpej 
    413       1.1  thorpej void
    414       1.1  thorpej pcmcom_disable(sc)
    415       1.1  thorpej 	struct pcmcom_softc *sc;
    416       1.1  thorpej {
    417       1.1  thorpej 
    418       1.1  thorpej 	sc->sc_enabled_count--;
    419       1.1  thorpej 	if (sc->sc_enabled_count != 0)
    420       1.1  thorpej 		return;
    421       1.1  thorpej 
    422       1.1  thorpej 	pcmcia_function_disable(sc->sc_pf);
    423       1.1  thorpej 	pcmcia_intr_disestablish(sc->sc_pf, sc->sc_ih);
    424       1.1  thorpej }
    425       1.1  thorpej 
    426       1.1  thorpej /****** Here begins the com attachment code. ******/
    427       1.1  thorpej 
    428       1.1  thorpej #if NCOM_PCMCOM > 0
    429       1.1  thorpej int	com_pcmcom_match __P((struct device *, struct cfdata *, void *));
    430       1.1  thorpej void	com_pcmcom_attach __P((struct device *, struct device *, void *));
    431       1.1  thorpej 
    432       1.1  thorpej /* No pcmcom-specific goo in the softc; it's all in the parent. */
    433       1.1  thorpej struct cfattach com_pcmcom_ca = {
    434       1.3  thorpej 	sizeof(struct com_softc), com_pcmcom_match, com_pcmcom_attach,
    435       1.3  thorpej 	    com_detach, com_activate
    436       1.1  thorpej };
    437       1.1  thorpej 
    438       1.1  thorpej int	com_pcmcom_enable __P((struct com_softc *));
    439       1.1  thorpej void	com_pcmcom_disable __P((struct com_softc *));
    440       1.1  thorpej 
    441       1.1  thorpej int
    442       1.1  thorpej com_pcmcom_match(parent, cf, aux)
    443       1.1  thorpej 	struct device *parent;
    444       1.1  thorpej 	struct cfdata *cf;
    445       1.1  thorpej 	void *aux;
    446       1.1  thorpej {
    447       1.1  thorpej 
    448       1.1  thorpej 	/* Device is always present. */
    449       1.1  thorpej 	return (1);
    450       1.1  thorpej }
    451       1.1  thorpej 
    452       1.1  thorpej void
    453       1.1  thorpej com_pcmcom_attach(parent, self, aux)
    454       1.1  thorpej 	struct device *parent, *self;
    455       1.1  thorpej 	void *aux;
    456       1.1  thorpej {
    457       1.1  thorpej 	struct com_softc *sc = (struct com_softc *)self;
    458       1.1  thorpej 	struct pcmcom_attach_args *pca = aux;
    459       1.1  thorpej 
    460       1.1  thorpej 	sc->sc_iot = pca->pca_iot;
    461       1.1  thorpej 	sc->sc_ioh = pca->pca_ioh;
    462       1.1  thorpej 
    463       1.1  thorpej 	sc->enabled = 1;
    464       1.1  thorpej 
    465       1.1  thorpej 	sc->sc_iobase = -1;
    466       1.1  thorpej 	sc->sc_frequency = COM_FREQ;
    467       1.1  thorpej 
    468       1.1  thorpej 	sc->enable = com_pcmcom_enable;
    469       1.1  thorpej 	sc->disable = com_pcmcom_disable;
    470       1.1  thorpej 
    471       1.1  thorpej 	com_attach_subr(sc);
    472       1.1  thorpej 
    473       1.1  thorpej 	sc->enabled = 0;
    474       1.1  thorpej }
    475       1.1  thorpej 
    476       1.1  thorpej int
    477       1.1  thorpej com_pcmcom_enable(sc)
    478       1.1  thorpej 	struct com_softc *sc;
    479       1.1  thorpej {
    480       1.1  thorpej 
    481       1.1  thorpej 	return (pcmcom_enable((struct pcmcom_softc *)sc->sc_dev.dv_parent));
    482       1.1  thorpej }
    483       1.1  thorpej 
    484       1.1  thorpej void
    485       1.1  thorpej com_pcmcom_disable(sc)
    486       1.1  thorpej 	struct com_softc *sc;
    487       1.1  thorpej {
    488       1.1  thorpej 
    489       1.1  thorpej 	pcmcom_disable((struct pcmcom_softc *)sc->sc_dev.dv_parent);
    490       1.1  thorpej }
    491       1.1  thorpej #endif /* NCOM_PCMCOM > 0 */
    492