Home | History | Annotate | Line # | Download | only in isa
moxa_isa.c revision 1.1.6.2
      1  1.1.6.2  jdolecek /*	$NetBSD: moxa_isa.c,v 1.1.6.2 2002/10/10 18:39:45 jdolecek Exp $	*/
      2      1.1  jdolecek 
      3      1.1  jdolecek /*
      4      1.1  jdolecek  * Copyright (c) 1996 Christopher G. Demetriou.  All rights reserved.
      5      1.1  jdolecek  * Copyright (c) 1995 Charles M. Hannum.  All rights reserved.
      6      1.1  jdolecek  *
      7      1.1  jdolecek  * This code is derived from public-domain software written by
      8      1.1  jdolecek  * Roland McGrath.
      9      1.1  jdolecek  *
     10      1.1  jdolecek  * Redistribution and use in source and binary forms, with or without
     11      1.1  jdolecek  * modification, are permitted provided that the following conditions
     12      1.1  jdolecek  * are met:
     13      1.1  jdolecek  * 1. Redistributions of source code must retain the above copyright
     14      1.1  jdolecek  *    notice, this list of conditions and the following disclaimer.
     15      1.1  jdolecek  * 2. Redistributions in binary form must reproduce the above copyright
     16      1.1  jdolecek  *    notice, this list of conditions and the following disclaimer in the
     17      1.1  jdolecek  *    documentation and/or other materials provided with the distribution.
     18      1.1  jdolecek  * 3. All advertising materials mentioning features or use of this software
     19      1.1  jdolecek  *    must display the following acknowledgement:
     20      1.1  jdolecek  *	This product includes software developed by Charles M. Hannum.
     21      1.1  jdolecek  * 4. The name of the author may not be used to endorse or promote products
     22      1.1  jdolecek  *    derived from this software without specific prior written permission.
     23      1.1  jdolecek  *
     24      1.1  jdolecek  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     25      1.1  jdolecek  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     26      1.1  jdolecek  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     27      1.1  jdolecek  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     28      1.1  jdolecek  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     29      1.1  jdolecek  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     30      1.1  jdolecek  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     31      1.1  jdolecek  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     32      1.1  jdolecek  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     33      1.1  jdolecek  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     34      1.1  jdolecek  */
     35      1.1  jdolecek 
     36  1.1.6.1   thorpej #include <sys/cdefs.h>
     37  1.1.6.2  jdolecek __KERNEL_RCSID(0, "$NetBSD: moxa_isa.c,v 1.1.6.2 2002/10/10 18:39:45 jdolecek Exp $");
     38  1.1.6.1   thorpej 
     39      1.1  jdolecek #include <sys/param.h>
     40      1.1  jdolecek #include <sys/systm.h>
     41      1.1  jdolecek #include <sys/device.h>
     42      1.1  jdolecek #include <sys/termios.h>
     43      1.1  jdolecek 
     44      1.1  jdolecek #include <machine/bus.h>
     45      1.1  jdolecek #include <machine/intr.h>
     46      1.1  jdolecek 
     47      1.1  jdolecek #include <dev/ic/comreg.h>
     48      1.1  jdolecek #include <dev/ic/comvar.h>
     49      1.1  jdolecek 
     50      1.1  jdolecek #include <dev/isa/isavar.h>
     51      1.1  jdolecek #include <dev/isa/com_multi.h>
     52      1.1  jdolecek 
     53      1.1  jdolecek #define	NSLAVES	8
     54      1.1  jdolecek 
     55      1.1  jdolecek struct moxa_isa_softc {
     56      1.1  jdolecek 	struct device sc_dev;
     57      1.1  jdolecek 	void *sc_ih;
     58      1.1  jdolecek 
     59      1.1  jdolecek 	bus_space_tag_t sc_iot;
     60      1.1  jdolecek 	int sc_iobase;
     61      1.1  jdolecek 
     62      1.1  jdolecek 	int sc_alive;			/* mask of slave units attached */
     63      1.1  jdolecek 	void *sc_slaves[NSLAVES];	/* com device unit numbers */
     64      1.1  jdolecek 	bus_space_handle_t sc_slaveioh[NSLAVES];
     65      1.1  jdolecek };
     66      1.1  jdolecek 
     67      1.1  jdolecek int moxa_isaprobe __P((struct device *, struct cfdata *, void *));
     68      1.1  jdolecek void moxa_isaattach __P((struct device *, struct device *, void *));
     69      1.1  jdolecek int moxa_isaintr __P((void *));
     70      1.1  jdolecek int moxa_isaprint __P((void *, const char *));
     71      1.1  jdolecek 
     72  1.1.6.2  jdolecek CFATTACH_DECL(moxa_isa, sizeof(struct moxa_isa_softc),
     73  1.1.6.2  jdolecek     moxa_isaprobe, moxa_isaattach, NULL, NULL);
     74      1.1  jdolecek 
     75      1.1  jdolecek int
     76      1.1  jdolecek moxa_isaprobe(parent, self, aux)
     77      1.1  jdolecek 	struct device *parent;
     78      1.1  jdolecek 	struct cfdata *self;
     79      1.1  jdolecek 	void *aux;
     80      1.1  jdolecek {
     81      1.1  jdolecek 	struct isa_attach_args *ia = aux;
     82      1.1  jdolecek 	bus_space_tag_t iot = ia->ia_iot;
     83      1.1  jdolecek 	bus_space_handle_t ioh;
     84  1.1.6.1   thorpej 	int i, iobase, rv = 1;
     85      1.1  jdolecek 
     86      1.1  jdolecek 	/*
     87      1.1  jdolecek 	 * Do the normal com probe for the first UART and assume
     88      1.1  jdolecek 	 * its presence, and the ability to map the other UARTS,
     89      1.1  jdolecek 	 * means there is a multiport board there.
     90      1.1  jdolecek 	 * XXX Needs more robustness.
     91      1.1  jdolecek 	 */
     92      1.1  jdolecek 
     93  1.1.6.1   thorpej 	if (ia->ia_nio < 1)
     94  1.1.6.1   thorpej 		return (0);
     95  1.1.6.1   thorpej 	if (ia->ia_nirq < 1)
     96  1.1.6.1   thorpej 		return (0);
     97  1.1.6.1   thorpej 
     98  1.1.6.1   thorpej 	if (ISA_DIRECT_CONFIG(ia))
     99  1.1.6.1   thorpej 		return (0);
    100  1.1.6.1   thorpej 
    101      1.1  jdolecek 	/* Disallow wildcarded i/o address. */
    102  1.1.6.1   thorpej 	if (ia->ia_io[0].ir_addr == ISACF_PORT_DEFAULT)
    103  1.1.6.1   thorpej 		return (0);
    104  1.1.6.1   thorpej 	if (ia->ia_irq[0].ir_irq == ISACF_IRQ_DEFAULT)
    105      1.1  jdolecek 		return (0);
    106      1.1  jdolecek 
    107      1.1  jdolecek 	/* if the first port is in use as console, then it. */
    108  1.1.6.1   thorpej 	if (com_is_console(iot, ia->ia_io[0].ir_addr, 0))
    109      1.1  jdolecek 		goto checkmappings;
    110      1.1  jdolecek 
    111  1.1.6.1   thorpej 	if (bus_space_map(iot, ia->ia_io[0].ir_addr, COM_NPORTS, 0, &ioh)) {
    112      1.1  jdolecek 		rv = 0;
    113      1.1  jdolecek 		goto out;
    114      1.1  jdolecek 	}
    115      1.1  jdolecek 	rv = comprobe1(iot, ioh);
    116      1.1  jdolecek 	bus_space_unmap(iot, ioh, COM_NPORTS);
    117      1.1  jdolecek 	if (rv == 0)
    118      1.1  jdolecek 		goto out;
    119      1.1  jdolecek 
    120      1.1  jdolecek checkmappings:
    121  1.1.6.1   thorpej 	for (i = 1, iobase = ia->ia_io[0].ir_addr; i < NSLAVES; i++) {
    122      1.1  jdolecek 		iobase += COM_NPORTS;
    123      1.1  jdolecek 
    124      1.1  jdolecek 		if (com_is_console(iot, iobase, 0))
    125      1.1  jdolecek 			continue;
    126      1.1  jdolecek 
    127      1.1  jdolecek 		if (bus_space_map(iot, iobase, COM_NPORTS, 0, &ioh)) {
    128      1.1  jdolecek 			rv = 0;
    129      1.1  jdolecek 			goto out;
    130      1.1  jdolecek 		}
    131      1.1  jdolecek 		bus_space_unmap(iot, ioh, COM_NPORTS);
    132      1.1  jdolecek 	}
    133      1.1  jdolecek 
    134      1.1  jdolecek out:
    135  1.1.6.1   thorpej 	if (rv) {
    136  1.1.6.1   thorpej 		ia->ia_nio = 1;
    137  1.1.6.1   thorpej 		ia->ia_io[0].ir_size = NSLAVES * COM_NPORTS;
    138  1.1.6.1   thorpej 
    139  1.1.6.1   thorpej 		ia->ia_nirq = 1;
    140  1.1.6.1   thorpej 
    141  1.1.6.1   thorpej 		ia->ia_niomem = 0;
    142  1.1.6.1   thorpej 		ia->ia_ndrq = 0;
    143  1.1.6.1   thorpej 	}
    144      1.1  jdolecek 	return (rv);
    145      1.1  jdolecek }
    146      1.1  jdolecek 
    147      1.1  jdolecek int
    148      1.1  jdolecek moxa_isaprint(aux, pnp)
    149      1.1  jdolecek 	void *aux;
    150      1.1  jdolecek 	const char *pnp;
    151      1.1  jdolecek {
    152      1.1  jdolecek 	struct commulti_attach_args *ca = aux;
    153      1.1  jdolecek 
    154      1.1  jdolecek 	if (pnp)
    155      1.1  jdolecek 		printf("com at %s", pnp);
    156      1.1  jdolecek 	printf(" slave %d", ca->ca_slave);
    157      1.1  jdolecek 	return (UNCONF);
    158      1.1  jdolecek }
    159      1.1  jdolecek 
    160      1.1  jdolecek void
    161      1.1  jdolecek moxa_isaattach(parent, self, aux)
    162      1.1  jdolecek 	struct device *parent, *self;
    163      1.1  jdolecek 	void *aux;
    164      1.1  jdolecek {
    165      1.1  jdolecek 	struct moxa_isa_softc *sc = (void *)self;
    166      1.1  jdolecek 	struct isa_attach_args *ia = aux;
    167      1.1  jdolecek 	struct commulti_attach_args ca;
    168      1.1  jdolecek 	bus_space_tag_t iot = ia->ia_iot;
    169      1.1  jdolecek 	int i, iobase;
    170      1.1  jdolecek 
    171      1.1  jdolecek 	printf("\n");
    172      1.1  jdolecek 
    173      1.1  jdolecek 	sc->sc_iot = ia->ia_iot;
    174  1.1.6.1   thorpej 	sc->sc_iobase = ia->ia_io[0].ir_addr;
    175      1.1  jdolecek 
    176      1.1  jdolecek 	for (i = 0; i < NSLAVES; i++) {
    177      1.1  jdolecek 		iobase = sc->sc_iobase + i * COM_NPORTS;
    178      1.1  jdolecek 		if (!com_is_console(iot, iobase, &sc->sc_slaveioh[i]) &&
    179      1.1  jdolecek 		    bus_space_map(iot, iobase, COM_NPORTS, 0,
    180      1.1  jdolecek 			&sc->sc_slaveioh[i])) {
    181      1.1  jdolecek 			printf("%s: can't map i/o space for slave %d\n",
    182      1.1  jdolecek 			    sc->sc_dev.dv_xname, i);
    183      1.1  jdolecek 			return;
    184      1.1  jdolecek 		}
    185      1.1  jdolecek 	}
    186      1.1  jdolecek 
    187      1.1  jdolecek 	for (i = 0; i < NSLAVES; i++) {
    188      1.1  jdolecek 		ca.ca_slave = i;
    189      1.1  jdolecek 		ca.ca_iot = sc->sc_iot;
    190      1.1  jdolecek 		ca.ca_ioh = sc->sc_slaveioh[i];
    191      1.1  jdolecek 		ca.ca_iobase = sc->sc_iobase + i * COM_NPORTS;
    192      1.1  jdolecek 		ca.ca_noien = 1;
    193      1.1  jdolecek 
    194      1.1  jdolecek 		sc->sc_slaves[i] = config_found(self, &ca, moxa_isaprint);
    195      1.1  jdolecek 		if (sc->sc_slaves[i] != NULL)
    196      1.1  jdolecek 			sc->sc_alive |= 1 << i;
    197      1.1  jdolecek 	}
    198      1.1  jdolecek 
    199  1.1.6.1   thorpej 	sc->sc_ih = isa_intr_establish(ia->ia_ic, ia->ia_irq[0].ir_irq,
    200  1.1.6.1   thorpej 	    IST_EDGE, IPL_SERIAL, moxa_isaintr, sc);
    201      1.1  jdolecek }
    202      1.1  jdolecek 
    203      1.1  jdolecek int
    204      1.1  jdolecek moxa_isaintr(arg)
    205      1.1  jdolecek 	void *arg;
    206      1.1  jdolecek {
    207      1.1  jdolecek 	struct moxa_isa_softc *sc = arg;
    208      1.1  jdolecek 	int bits;
    209      1.1  jdolecek 	int rv;
    210      1.1  jdolecek 
    211      1.1  jdolecek 	bits = sc->sc_alive;
    212      1.1  jdolecek 	if (bits == 0)
    213      1.1  jdolecek 		return (0);
    214      1.1  jdolecek 
    215      1.1  jdolecek 	for (;;rv = 0) {
    216      1.1  jdolecek #define	TRY(n) \
    217      1.1  jdolecek 		if (bits & (1 << (n))) \
    218      1.1  jdolecek 			rv += comintr(sc->sc_slaves[n]);
    219      1.1  jdolecek 		TRY(0);
    220      1.1  jdolecek 		TRY(1);
    221      1.1  jdolecek 		TRY(2);
    222      1.1  jdolecek 		TRY(3);
    223      1.1  jdolecek 		TRY(4);
    224      1.1  jdolecek 		TRY(5);
    225      1.1  jdolecek 		TRY(6);
    226      1.1  jdolecek 		TRY(7);
    227      1.1  jdolecek #undef TRY
    228      1.1  jdolecek 		if (rv == 0)
    229      1.1  jdolecek 			return (1);
    230      1.1  jdolecek  	}
    231      1.1  jdolecek }
    232