Home | History | Annotate | Line # | Download | only in pcmcia
com_pcmcia.c revision 1.32.6.5
      1  1.32.6.5     skrll /*	$NetBSD: com_pcmcia.c,v 1.32.6.5 2005/02/04 11:47:08 skrll Exp $	 */
      2      1.13   mycroft 
      3      1.13   mycroft /*-
      4  1.32.6.2     skrll  * Copyright (c) 1998, 2004 The NetBSD Foundation, Inc.
      5      1.13   mycroft  * All rights reserved.
      6      1.13   mycroft  *
      7      1.13   mycroft  * This code is derived from software contributed to The NetBSD Foundation
      8      1.13   mycroft  * by Charles M. Hannum.
      9      1.13   mycroft  *
     10      1.13   mycroft  * Redistribution and use in source and binary forms, with or without
     11      1.13   mycroft  * modification, are permitted provided that the following conditions
     12      1.13   mycroft  * are met:
     13      1.13   mycroft  * 1. Redistributions of source code must retain the above copyright
     14      1.13   mycroft  *    notice, this list of conditions and the following disclaimer.
     15      1.13   mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     16      1.13   mycroft  *    notice, this list of conditions and the following disclaimer in the
     17      1.13   mycroft  *    documentation and/or other materials provided with the distribution.
     18      1.13   mycroft  * 3. All advertising materials mentioning features or use of this software
     19      1.13   mycroft  *    must display the following acknowledgement:
     20      1.13   mycroft  *        This product includes software developed by the NetBSD
     21      1.13   mycroft  *        Foundation, Inc. and its contributors.
     22      1.13   mycroft  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23      1.13   mycroft  *    contributors may be used to endorse or promote products derived
     24      1.13   mycroft  *    from this software without specific prior written permission.
     25      1.13   mycroft  *
     26      1.13   mycroft  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27      1.13   mycroft  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28      1.13   mycroft  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29      1.13   mycroft  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30      1.13   mycroft  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31      1.13   mycroft  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32      1.13   mycroft  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33      1.13   mycroft  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34      1.13   mycroft  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35      1.13   mycroft  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36      1.13   mycroft  * POSSIBILITY OF SUCH DAMAGE.
     37      1.13   mycroft  */
     38       1.2   thorpej 
     39       1.2   thorpej /*-
     40       1.2   thorpej  * Copyright (c) 1991 The Regents of the University of California.
     41       1.2   thorpej  * All rights reserved.
     42       1.2   thorpej  *
     43       1.2   thorpej  * Redistribution and use in source and binary forms, with or without
     44       1.2   thorpej  * modification, are permitted provided that the following conditions
     45       1.2   thorpej  * are met:
     46       1.2   thorpej  * 1. Redistributions of source code must retain the above copyright
     47       1.2   thorpej  *    notice, this list of conditions and the following disclaimer.
     48       1.2   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     49       1.2   thorpej  *    notice, this list of conditions and the following disclaimer in the
     50       1.2   thorpej  *    documentation and/or other materials provided with the distribution.
     51  1.32.6.1     skrll  * 3. Neither the name of the University nor the names of its contributors
     52       1.2   thorpej  *    may be used to endorse or promote products derived from this software
     53       1.2   thorpej  *    without specific prior written permission.
     54       1.2   thorpej  *
     55       1.2   thorpej  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     56       1.2   thorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     57       1.2   thorpej  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     58       1.2   thorpej  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     59       1.2   thorpej  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     60       1.2   thorpej  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     61       1.2   thorpej  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     62       1.2   thorpej  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     63       1.2   thorpej  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     64       1.2   thorpej  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     65       1.2   thorpej  * SUCH DAMAGE.
     66       1.2   thorpej  *
     67       1.2   thorpej  *	@(#)com.c	7.5 (Berkeley) 5/16/91
     68       1.2   thorpej  */
     69      1.22     lukem 
     70      1.22     lukem #include <sys/cdefs.h>
     71  1.32.6.5     skrll __KERNEL_RCSID(0, "$NetBSD: com_pcmcia.c,v 1.32.6.5 2005/02/04 11:47:08 skrll Exp $");
     72       1.2   thorpej 
     73       1.2   thorpej #include <sys/param.h>
     74       1.2   thorpej #include <sys/systm.h>
     75       1.2   thorpej #include <sys/ioctl.h>
     76       1.2   thorpej #include <sys/select.h>
     77       1.2   thorpej #include <sys/tty.h>
     78       1.2   thorpej #include <sys/proc.h>
     79       1.2   thorpej #include <sys/user.h>
     80       1.2   thorpej #include <sys/conf.h>
     81       1.2   thorpej #include <sys/file.h>
     82       1.2   thorpej #include <sys/uio.h>
     83       1.2   thorpej #include <sys/kernel.h>
     84       1.2   thorpej #include <sys/syslog.h>
     85       1.2   thorpej #include <sys/device.h>
     86       1.2   thorpej 
     87       1.2   thorpej #include <machine/intr.h>
     88       1.2   thorpej #include <machine/bus.h>
     89       1.2   thorpej 
     90       1.2   thorpej #include <dev/pcmcia/pcmciavar.h>
     91       1.2   thorpej #include <dev/pcmcia/pcmciareg.h>
     92       1.9  christos #include <dev/pcmcia/pcmciadevs.h>
     93       1.2   thorpej 
     94       1.2   thorpej #include <dev/ic/comreg.h>
     95       1.2   thorpej #include <dev/ic/comvar.h>
     96       1.2   thorpej 
     97       1.2   thorpej #include <dev/isa/isareg.h>
     98       1.2   thorpej 
     99  1.32.6.5     skrll int com_pcmcia_match(struct device *, struct cfdata *, void *);
    100  1.32.6.5     skrll int com_pcmcia_validate_config(struct pcmcia_config_entry *);
    101  1.32.6.5     skrll void com_pcmcia_attach(struct device *, struct device *, void *);
    102  1.32.6.5     skrll int com_pcmcia_detach(struct device *, int);
    103  1.32.6.5     skrll void com_pcmcia_cleanup(void *);
    104       1.2   thorpej 
    105  1.32.6.5     skrll int com_pcmcia_enable(struct com_softc *);
    106  1.32.6.5     skrll void com_pcmcia_disable(struct com_softc *);
    107       1.3      marc 
    108       1.2   thorpej struct com_pcmcia_softc {
    109       1.2   thorpej 	struct com_softc sc_com;		/* real "com" softc */
    110       1.2   thorpej 
    111       1.2   thorpej 	/* PCMCIA-specific goo */
    112       1.2   thorpej 	struct pcmcia_function *sc_pf;		/* our PCMCIA function */
    113       1.2   thorpej 	void *sc_ih;				/* interrupt handler */
    114  1.32.6.2     skrll 	int sc_attached;
    115       1.2   thorpej };
    116       1.2   thorpej 
    117      1.31   thorpej CFATTACH_DECL(com_pcmcia, sizeof(struct com_pcmcia_softc),
    118      1.32   thorpej     com_pcmcia_match, com_pcmcia_attach, com_pcmcia_detach, com_activate);
    119       1.2   thorpej 
    120  1.32.6.2     skrll static const struct pcmcia_product com_pcmcia_products[] = {
    121  1.32.6.2     skrll 	{ PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
    122  1.32.6.2     skrll 	  PCMCIA_CIS_MEGAHERTZ_XJ2288 },
    123  1.32.6.2     skrll };
    124  1.32.6.2     skrll static const size_t com_pcmcia_nproducts =
    125  1.32.6.2     skrll     sizeof(com_pcmcia_products) / sizeof(com_pcmcia_products[0]);
    126       1.3      marc 
    127       1.2   thorpej int
    128       1.2   thorpej com_pcmcia_match(parent, match, aux)
    129       1.2   thorpej 	struct device *parent;
    130       1.2   thorpej 	struct cfdata *match;
    131       1.2   thorpej 	void *aux;
    132       1.2   thorpej {
    133      1.11   nathanw 	int comportmask;
    134       1.2   thorpej 	struct pcmcia_attach_args *pa = aux;
    135       1.2   thorpej 	struct pcmcia_config_entry *cfe;
    136       1.2   thorpej 
    137      1.11   nathanw 	/* 1. Does it claim to be a serial device? */
    138      1.11   nathanw 	if (pa->pf->function == PCMCIA_FUNCTION_SERIAL)
    139      1.20  christos 		return 1;
    140      1.11   nathanw 
    141      1.11   nathanw 	/* 2. Does it have all four 'standard' port ranges? */
    142      1.11   nathanw 	comportmask = 0;
    143      1.29     lukem 	SIMPLEQ_FOREACH(cfe, &pa->pf->cfe_head, cfe_list) {
    144      1.20  christos 		switch (cfe->iospace[0].start) {
    145      1.20  christos 		case IO_COM1:
    146      1.20  christos 			comportmask |= 1;
    147      1.20  christos 			break;
    148      1.20  christos 		case IO_COM2:
    149      1.20  christos 			comportmask |= 2;
    150      1.20  christos 			break;
    151      1.20  christos 		case IO_COM3:
    152      1.20  christos 			comportmask |= 4;
    153      1.20  christos 			break;
    154      1.20  christos 		case IO_COM4:
    155      1.20  christos 			comportmask |= 8;
    156      1.20  christos 			break;
    157      1.20  christos 		}
    158      1.11   nathanw 	}
    159      1.11   nathanw 
    160      1.11   nathanw 	if (comportmask == 15)
    161      1.20  christos 		return 1;
    162      1.11   nathanw 
    163      1.11   nathanw 	/* 3. Is this a card we know about? */
    164  1.32.6.2     skrll 	if (pcmcia_product_lookup(pa, com_pcmcia_products, com_pcmcia_nproducts,
    165  1.32.6.2     skrll 	    sizeof(com_pcmcia_products[0]), NULL))
    166      1.20  christos 		return 1;
    167       1.2   thorpej 
    168      1.11   nathanw 	return 0;
    169       1.2   thorpej }
    170       1.2   thorpej 
    171  1.32.6.2     skrll int
    172  1.32.6.2     skrll com_pcmcia_validate_config(cfe)
    173  1.32.6.2     skrll 	struct pcmcia_config_entry *cfe;
    174  1.32.6.2     skrll {
    175  1.32.6.2     skrll 	if (cfe->iftype != PCMCIA_IFTYPE_IO ||
    176  1.32.6.2     skrll 	    cfe->num_iospace != 1)
    177  1.32.6.2     skrll 		return (EINVAL);
    178  1.32.6.2     skrll 	/* Some cards have a memory space, but we don't use it. */
    179  1.32.6.2     skrll 	cfe->num_memspace = 0;
    180  1.32.6.2     skrll 	return (0);
    181  1.32.6.2     skrll }
    182  1.32.6.2     skrll 
    183       1.2   thorpej void
    184       1.2   thorpej com_pcmcia_attach(parent, self, aux)
    185      1.20  christos 	struct device  *parent, *self;
    186       1.2   thorpej 	void *aux;
    187       1.2   thorpej {
    188       1.2   thorpej 	struct com_pcmcia_softc *psc = (void *) self;
    189       1.2   thorpej 	struct com_softc *sc = &psc->sc_com;
    190       1.2   thorpej 	struct pcmcia_attach_args *pa = aux;
    191       1.2   thorpej 	struct pcmcia_config_entry *cfe;
    192  1.32.6.2     skrll 	int error;
    193       1.2   thorpej 
    194       1.2   thorpej 	psc->sc_pf = pa->pf;
    195       1.2   thorpej 
    196  1.32.6.2     skrll 	error = pcmcia_function_configure(pa->pf, com_pcmcia_validate_config);
    197  1.32.6.2     skrll 	if (error) {
    198  1.32.6.2     skrll 		aprint_error("%s: configure failed, error=%d\n", self->dv_xname,
    199  1.32.6.2     skrll 		    error);
    200       1.2   thorpej 		return;
    201       1.2   thorpej 	}
    202       1.2   thorpej 
    203  1.32.6.2     skrll 	cfe = pa->pf->cfe;
    204  1.32.6.2     skrll 	sc->sc_iot = cfe->iospace[0].handle.iot;
    205  1.32.6.2     skrll 	sc->sc_ioh = cfe->iospace[0].handle.ioh;
    206  1.32.6.2     skrll 
    207  1.32.6.2     skrll 	error = com_pcmcia_enable(sc);
    208  1.32.6.2     skrll 	if (error)
    209  1.32.6.2     skrll 		goto fail;
    210       1.2   thorpej 
    211  1.32.6.2     skrll 	sc->enabled = 1;
    212      1.26     cyber 
    213       1.2   thorpej 	sc->sc_iobase = -1;
    214       1.2   thorpej 	sc->sc_frequency = COM_FREQ;
    215       1.2   thorpej 
    216       1.3      marc 	sc->enable = com_pcmcia_enable;
    217       1.3      marc 	sc->disable = com_pcmcia_disable;
    218      1.20  christos 
    219  1.32.6.2     skrll 	aprint_normal("%s", self->dv_xname);
    220       1.5  christos 
    221       1.2   thorpej 	com_attach_subr(sc);
    222       1.2   thorpej 
    223       1.3      marc 	sc->enabled = 0;
    224      1.20  christos 
    225  1.32.6.2     skrll 	psc->sc_attached = 1;
    226  1.32.6.2     skrll 	com_pcmcia_disable(sc);
    227  1.32.6.2     skrll 	return;
    228  1.32.6.2     skrll 
    229  1.32.6.2     skrll fail:
    230  1.32.6.2     skrll 	pcmcia_function_unconfigure(pa->pf);
    231      1.16   thorpej }
    232      1.16   thorpej 
    233      1.16   thorpej int
    234      1.16   thorpej com_pcmcia_detach(self, flags)
    235      1.20  christos 	struct device  *self;
    236      1.16   thorpej 	int flags;
    237      1.16   thorpej {
    238      1.20  christos 	struct com_pcmcia_softc *psc = (struct com_pcmcia_softc *) self;
    239      1.16   thorpej 	int error;
    240      1.16   thorpej 
    241  1.32.6.2     skrll 	if (!psc->sc_attached)
    242  1.32.6.2     skrll 		return (0);
    243      1.28  christos 
    244      1.28  christos 	if ((error = com_detach(self, flags)) != 0)
    245      1.28  christos 		return error;
    246      1.16   thorpej 
    247  1.32.6.2     skrll 	pcmcia_function_unconfigure(psc->sc_pf);
    248  1.32.6.2     skrll 	return (0);
    249       1.3      marc }
    250       1.3      marc 
    251       1.5  christos int
    252       1.5  christos com_pcmcia_enable(sc)
    253       1.5  christos 	struct com_softc *sc;
    254       1.3      marc {
    255       1.3      marc 	struct com_pcmcia_softc *psc = (struct com_pcmcia_softc *) sc;
    256       1.3      marc 	struct pcmcia_function *pf = psc->sc_pf;
    257      1.25  christos 	int error;
    258      1.25  christos 
    259       1.2   thorpej 	/* establish the interrupt. */
    260       1.3      marc 	psc->sc_ih = pcmcia_intr_establish(pf, IPL_SERIAL, comintr, sc);
    261       1.2   thorpej 	if (psc->sc_ih == NULL) {
    262       1.2   thorpej 		printf("%s: couldn't establish interrupt\n",
    263      1.20  christos 		    sc->sc_dev.dv_xname);
    264  1.32.6.2     skrll 		return (1);
    265       1.3      marc 	}
    266       1.3      marc 
    267  1.32.6.2     skrll 	if ((error = pcmcia_function_enable(pf)) != 0) {
    268  1.32.6.2     skrll 		pcmcia_intr_disestablish(pf, psc->sc_ih);
    269  1.32.6.2     skrll 		psc->sc_ih = 0;
    270  1.32.6.2     skrll 		return (error);
    271  1.32.6.2     skrll 	}
    272       1.3      marc 
    273      1.19      marc 	if ((psc->sc_pf->sc->card.product == PCMCIA_PRODUCT_3COM_3C562) ||
    274      1.21      tron 	    (psc->sc_pf->sc->card.product == PCMCIA_PRODUCT_3COM_3CXEM556) ||
    275      1.21      tron 	    (psc->sc_pf->sc->card.product == PCMCIA_PRODUCT_3COM_3CXEM556INT)) {
    276       1.3      marc 		int reg;
    277       1.3      marc 
    278       1.3      marc 		/* turn off the ethernet-disable bit */
    279       1.3      marc 		reg = pcmcia_ccr_read(pf, PCMCIA_CCR_OPTION);
    280       1.3      marc 		if (reg & 0x08) {
    281      1.20  christos 			reg &= ~0x08;
    282      1.20  christos 			pcmcia_ccr_write(pf, PCMCIA_CCR_OPTION, reg);
    283       1.3      marc 		}
    284       1.2   thorpej 	}
    285       1.5  christos 
    286  1.32.6.2     skrll 	return (0);
    287       1.5  christos }
    288       1.5  christos 
    289       1.5  christos void
    290  1.32.6.2     skrll com_pcmcia_disable(sc)
    291       1.5  christos 	struct com_softc *sc;
    292       1.3      marc {
    293       1.3      marc 	struct com_pcmcia_softc *psc = (struct com_pcmcia_softc *) sc;
    294       1.3      marc 
    295       1.3      marc 	pcmcia_function_disable(psc->sc_pf);
    296  1.32.6.2     skrll 	pcmcia_intr_disestablish(psc->sc_pf, psc->sc_ih);
    297  1.32.6.2     skrll 	psc->sc_ih = 0;
    298       1.2   thorpej }
    299