Home | History | Annotate | Line # | Download | only in isa
ast.c revision 1.27
      1 /*	$NetBSD: ast.c,v 1.27 1996/05/05 19:49:54 christos 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.
      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/systm.h>
     38 #include <sys/device.h>
     39 #include <sys/termios.h>
     40 
     41 #ifdef i386							/* XXX */
     42 #include <machine/cpu.h>					/* XXX */
     43 #else								/* XXX */
     44 #include <machine/intr.h>
     45 #endif								/* XXX */
     46 #include <machine/bus.h>
     47 
     48 #include <dev/isa/isavar.h>
     49 #include <dev/isa/comreg.h>
     50 #include <dev/isa/comvar.h>
     51 
     52 #define	NSLAVES	4
     53 
     54 struct ast_softc {
     55 	struct device sc_dev;
     56 	void *sc_ih;
     57 
     58 	bus_chipset_tag_t sc_bc;
     59 	int sc_iobase;
     60 
     61 	int sc_alive;			/* mask of slave units attached */
     62 	void *sc_slaves[NSLAVES];	/* com device unit numbers */
     63 	bus_io_handle_t sc_slaveioh[NSLAVES];
     64 };
     65 
     66 int astprobe __P((struct device *, void *, void *));
     67 void astattach __P((struct device *, struct device *, void *));
     68 int astintr __P((void *));
     69 int astprint __P((void *, char *));
     70 
     71 struct cfattach ast_ca = {
     72 	sizeof(struct ast_softc), astprobe, astattach
     73 };
     74 
     75 struct cfdriver ast_cd = {
     76 	NULL, "ast", DV_TTY
     77 };
     78 
     79 int
     80 astprobe(parent, self, aux)
     81 	struct device *parent;
     82 	void *self;
     83 	void *aux;
     84 {
     85 	struct isa_attach_args *ia = aux;
     86 	int iobase = ia->ia_iobase;
     87 	bus_chipset_tag_t bc = ia->ia_bc;
     88 	bus_io_handle_t ioh;
     89 	int i, rv = 1;
     90 
     91 	/*
     92 	 * Do the normal com probe for the first UART and assume
     93 	 * its presence, and the ability to map the other UARTS,
     94 	 * means there is a multiport board there.
     95 	 * XXX Needs more robustness.
     96 	 */
     97 
     98 	/* if the first port is in use as console, then it. */
     99 	if (iobase == comconsaddr && !comconsattached)
    100 		goto checkmappings;
    101 
    102 	if (bus_io_map(bc, iobase, COM_NPORTS, &ioh)) {
    103 		rv = 0;
    104 		goto out;
    105 	}
    106 	rv = comprobe1(bc, ioh, iobase);
    107 	bus_io_unmap(bc, ioh, COM_NPORTS);
    108 	if (rv == 0)
    109 		goto out;
    110 
    111 checkmappings:
    112 	for (i = 1; i < NSLAVES; i++) {
    113 		iobase += COM_NPORTS;
    114 
    115 		if (iobase == comconsaddr && !comconsattached)
    116 			continue;
    117 
    118 		if (bus_io_map(bc, iobase, COM_NPORTS, &ioh)) {
    119 			rv = 0;
    120 			goto out;
    121 		}
    122 		bus_io_unmap(bc, ioh, COM_NPORTS);
    123 	}
    124 
    125 out:
    126 	if (rv)
    127 		ia->ia_iosize = NSLAVES * COM_NPORTS;
    128 	return (rv);
    129 }
    130 
    131 int
    132 astprint(aux, pnp)
    133 	void *aux;
    134 	char *pnp;
    135 {
    136 	struct commulti_attach_args *ca = aux;
    137 
    138 	if (pnp)
    139 		printf("com at %s", pnp);
    140 	printf(" slave %d", ca->ca_slave);
    141 	return (UNCONF);
    142 }
    143 
    144 void
    145 astattach(parent, self, aux)
    146 	struct device *parent, *self;
    147 	void *aux;
    148 {
    149 	struct ast_softc *sc = (void *)self;
    150 	struct isa_attach_args *ia = aux;
    151 	struct commulti_attach_args ca;
    152 	bus_chipset_tag_t bc = ia->ia_bc;
    153 	int i;
    154 
    155 	sc->sc_bc = ia->ia_bc;
    156 	sc->sc_iobase = ia->ia_iobase;
    157 
    158 	for (i = 0; i < NSLAVES; i++)
    159 		if (bus_io_map(bc, sc->sc_iobase + i * COM_NPORTS, COM_NPORTS,
    160 		    &sc->sc_slaveioh[i]))
    161 			panic("astattach: couldn't map slave %d", i);
    162 
    163 	/*
    164 	 * Enable the master interrupt.
    165 	 */
    166 	bus_io_write_1(bc, sc->sc_slaveioh[3], 7, 0x80);
    167 
    168 	printf("\n");
    169 
    170 	for (i = 0; i < NSLAVES; i++) {
    171 		ca.ca_slave = i;
    172 		ca.ca_bc = sc->sc_bc;
    173 		ca.ca_ioh = sc->sc_slaveioh[i];
    174 		ca.ca_iobase = sc->sc_iobase + i * COM_NPORTS;
    175 		ca.ca_noien = 1;
    176 
    177 		sc->sc_slaves[i] = config_found(self, &ca, astprint);
    178 		if (sc->sc_slaves[i] != NULL)
    179 			sc->sc_alive |= 1 << i;
    180 	}
    181 
    182 	sc->sc_ih = isa_intr_establish(ia->ia_ic, ia->ia_irq, IST_EDGE,
    183 	    IPL_TTY, astintr, sc);
    184 }
    185 
    186 int
    187 astintr(arg)
    188 	void *arg;
    189 {
    190 	struct ast_softc *sc = arg;
    191 	bus_chipset_tag_t bc = sc->sc_bc;
    192 	int alive = sc->sc_alive;
    193 	int bits;
    194 
    195 	bits = ~bus_io_read_1(bc, sc->sc_slaveioh[3], 7) & alive;
    196 	if (bits == 0)
    197 		return (0);
    198 
    199 	for (;;) {
    200 #define	TRY(n) \
    201 		if (bits & (1 << (n))) \
    202 			comintr(sc->sc_slaves[n]);
    203 		TRY(0);
    204 		TRY(1);
    205 		TRY(2);
    206 		TRY(3);
    207 #undef TRY
    208 		bits = ~bus_io_read_1(bc, sc->sc_slaveioh[3], 7) & alive;
    209 		if (bits == 0)
    210 			return (1);
    211  	}
    212 }
    213