boca.c revision 1.20.4.1 1 /* $NetBSD: boca.c,v 1.20.4.1 1997/08/23 07:13:11 thorpej 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/systm.h>
38 #include <sys/device.h>
39 #include <sys/termios.h>
40
41 #include <machine/bus.h>
42 #include <machine/intr.h>
43
44 #include <dev/isa/isavar.h>
45 #include <dev/isa/comreg.h>
46 #include <dev/isa/comvar.h>
47 #include <dev/isa/com_multi.h>
48
49 #define NSLAVES 8
50
51 struct boca_softc {
52 struct device sc_dev;
53 void *sc_ih;
54
55 bus_space_tag_t sc_iot;
56 int sc_iobase;
57
58 int sc_alive; /* mask of slave units attached */
59 void *sc_slaves[NSLAVES]; /* com device unit numbers */
60 bus_space_handle_t sc_slaveioh[NSLAVES];
61 };
62
63 int bocaprobe __P((struct device *, void *, void *));
64 void bocaattach __P((struct device *, struct device *, void *));
65 int bocaintr __P((void *));
66 int bocaprint __P((void *, const char *));
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;
79 void *self;
80 void *aux;
81 {
82 struct isa_attach_args *ia = aux;
83 int iobase = ia->ia_iobase;
84 bus_space_tag_t iot = ia->ia_iot;
85 bus_space_handle_t ioh;
86 int i, rv = 1;
87
88 /*
89 * Do the normal com probe for the first UART and assume
90 * its presence, and the ability to map the other UARTS,
91 * means there is a multiport board there.
92 * XXX Needs more robustness.
93 */
94
95 /* if the first port is in use as console, then it. */
96 if ((iobase == comconsaddr && !comconsattached)
97 #ifdef KGDB
98 || iobase == com_kgdb_addr
99 #endif
100 )
101 goto checkmappings;
102
103 if (bus_space_map(iot, iobase, COM_NPORTS, 0, &ioh)) {
104 rv = 0;
105 goto out;
106 }
107 rv = comprobe1(iot, ioh, iobase);
108 bus_space_unmap(iot, ioh, COM_NPORTS);
109 if (rv == 0)
110 goto out;
111
112 checkmappings:
113 for (i = 1; i < NSLAVES; i++) {
114 iobase += COM_NPORTS;
115
116 if ((iobase == comconsaddr && !comconsattached)
117 #ifdef KGDB
118 || iobase == com_kgdb_addr
119 #endif
120 )
121
122 if (bus_space_map(iot, iobase, COM_NPORTS, 0, &ioh)) {
123 rv = 0;
124 goto out;
125 }
126 bus_space_unmap(iot, ioh, COM_NPORTS);
127 }
128
129 out:
130 if (rv)
131 ia->ia_iosize = NSLAVES * COM_NPORTS;
132 return (rv);
133 }
134
135 int
136 bocaprint(aux, pnp)
137 void *aux;
138 const char *pnp;
139 {
140 struct commulti_attach_args *ca = aux;
141
142 if (pnp)
143 printf("com at %s", pnp);
144 printf(" slave %d", ca->ca_slave);
145 return (UNCONF);
146 }
147
148 void
149 bocaattach(parent, self, aux)
150 struct device *parent, *self;
151 void *aux;
152 {
153 struct boca_softc *sc = (void *)self;
154 struct isa_attach_args *ia = aux;
155 struct commulti_attach_args ca;
156 bus_space_tag_t iot = ia->ia_iot;
157 int i;
158
159 sc->sc_iot = ia->ia_iot;
160 sc->sc_iobase = ia->ia_iobase;
161
162 for (i = 0; i < NSLAVES; i++)
163 if (bus_space_map(iot, sc->sc_iobase + i * COM_NPORTS,
164 COM_NPORTS, 0, &sc->sc_slaveioh[i]))
165 panic("bocaattach: couldn't map slave %d", i);
166
167 printf("\n");
168
169 for (i = 0; i < NSLAVES; i++) {
170
171 ca.ca_slave = i;
172 ca.ca_iot = sc->sc_iot;
173 ca.ca_ioh = sc->sc_slaveioh[i];
174 ca.ca_iobase = sc->sc_iobase + i * COM_NPORTS;
175 ca.ca_noien = 0;
176
177 sc->sc_slaves[i] = config_found(self, &ca, bocaprint);
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_SERIAL, bocaintr, sc);
184 }
185
186 int
187 bocaintr(arg)
188 void *arg;
189 {
190 struct boca_softc *sc = arg;
191 bus_space_tag_t iot = sc->sc_iot;
192 int alive = sc->sc_alive;
193 int bits;
194
195 bits = bus_space_read_1(iot, sc->sc_slaveioh[0], 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 TRY(4);
208 TRY(5);
209 TRY(6);
210 TRY(7);
211 #undef TRY
212 bits = bus_space_read_1(iot, sc->sc_slaveioh[0], 7) & alive;
213 if (bits == 0)
214 return (1);
215 }
216 }
217