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