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