boca.c revision 1.49 1 /* $NetBSD: boca.c,v 1.49 2007/10/19 12:00:15 ad Exp $ */
2
3 /*
4 * Copyright (c) 1996 Christopher G. Demetriou. All rights reserved.
5 * Copyright (c) 1995 Charles M. 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 M. 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/cdefs.h>
37 __KERNEL_RCSID(0, "$NetBSD: boca.c,v 1.49 2007/10/19 12:00:15 ad Exp $");
38
39 #include <sys/param.h>
40 #include <sys/systm.h>
41 #include <sys/device.h>
42 #include <sys/termios.h>
43 #include <sys/kernel.h>
44 #include <sys/callout.h>
45
46 #include <sys/bus.h>
47 #include <sys/intr.h>
48
49 #include <dev/ic/comreg.h>
50 #include <dev/ic/comvar.h>
51
52 #include <dev/isa/isavar.h>
53 #include <dev/isa/com_multi.h>
54
55 #define NSLAVES 8
56
57 struct boca_softc {
58 struct device sc_dev;
59 void *sc_ih;
60
61 bus_space_tag_t sc_iot;
62 int sc_iobase;
63
64 int sc_alive; /* mask of slave units attached */
65 void *sc_slaves[NSLAVES]; /* com device unit numbers */
66 bus_space_handle_t sc_slaveioh[NSLAVES];
67 callout_t fixup;
68 };
69
70 int bocaprobe(struct device *, struct cfdata *, void *);
71 void bocaattach(struct device *, struct device *, void *);
72 int bocaintr(void *);
73 void boca_fixup(void *);
74
75 CFATTACH_DECL(boca, sizeof(struct boca_softc),
76 bocaprobe, bocaattach, NULL, NULL);
77
78 int
79 bocaprobe(struct device *parent, struct cfdata *self,
80 void *aux)
81 {
82 struct isa_attach_args *ia = aux;
83 bus_space_tag_t iot = ia->ia_iot;
84 bus_space_handle_t ioh;
85 int i, iobase, 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 (ia->ia_nio < 1)
95 return (0);
96 if (ia->ia_nirq < 1)
97 return (0);
98
99 if (ISA_DIRECT_CONFIG(ia))
100 return (0);
101
102 /* Disallow wildcarded i/o address. */
103 if (ia->ia_io[0].ir_addr == ISA_UNKNOWN_PORT)
104 return (0);
105 if (ia->ia_irq[0].ir_irq == ISA_UNKNOWN_IRQ)
106 return (0);
107
108 iobase = ia->ia_io[0].ir_addr;
109
110 /* if the first port is in use as console, then it. */
111 if (com_is_console(iot, iobase, 0))
112 goto checkmappings;
113
114 if (bus_space_map(iot, iobase, COM_NPORTS, 0, &ioh)) {
115 rv = 0;
116 goto out;
117 }
118 rv = comprobe1(iot, ioh);
119 bus_space_unmap(iot, ioh, COM_NPORTS);
120 if (rv == 0)
121 goto out;
122
123 checkmappings:
124 for (i = 1; i < NSLAVES; i++) {
125 iobase += COM_NPORTS;
126
127 if (com_is_console(iot, iobase, 0))
128 continue;
129
130 if (bus_space_map(iot, iobase, COM_NPORTS, 0, &ioh)) {
131 rv = 0;
132 goto out;
133 }
134 bus_space_unmap(iot, ioh, COM_NPORTS);
135 }
136
137 out:
138 if (rv) {
139 ia->ia_nio = 1;
140 ia->ia_io[0].ir_size = NSLAVES * COM_NPORTS;
141
142 ia->ia_nirq = 1;
143
144 ia->ia_niomem = 0;
145 ia->ia_ndrq = 0;
146 }
147 return (rv);
148 }
149
150 void
151 bocaattach(struct device *parent, struct device *self, 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, iobase;
158
159 printf("\n");
160
161 sc->sc_iot = ia->ia_iot;
162 sc->sc_iobase = ia->ia_io[0].ir_addr;
163
164 for (i = 0; i < NSLAVES; i++) {
165 iobase = sc->sc_iobase + i * COM_NPORTS;
166 if (!com_is_console(iot, iobase, &sc->sc_slaveioh[i]) &&
167 bus_space_map(iot, iobase, COM_NPORTS, 0,
168 &sc->sc_slaveioh[i])) {
169 printf("%s: can't map i/o space for slave %d\n",
170 sc->sc_dev.dv_xname, i);
171 return;
172 }
173 }
174
175 for (i = 0; i < NSLAVES; i++) {
176
177 ca.ca_slave = i;
178 ca.ca_iot = sc->sc_iot;
179 ca.ca_ioh = sc->sc_slaveioh[i];
180 ca.ca_iobase = sc->sc_iobase + i * COM_NPORTS;
181 ca.ca_noien = 0;
182
183 sc->sc_slaves[i] = config_found(self, &ca, commultiprint);
184 if (sc->sc_slaves[i] != NULL)
185 sc->sc_alive |= 1 << i;
186 }
187
188 sc->sc_ih = isa_intr_establish(ia->ia_ic, ia->ia_irq[0].ir_irq,
189 IST_EDGE, IPL_SERIAL, bocaintr, sc);
190 callout_init(&sc->fixup, 0);
191 callout_reset(&sc->fixup, hz/10, boca_fixup, sc);
192 }
193
194 int
195 bocaintr(arg)
196 void *arg;
197 {
198 struct boca_softc *sc = arg;
199 bus_space_tag_t iot = sc->sc_iot;
200 int alive = sc->sc_alive;
201 int bits;
202
203 bits = bus_space_read_1(iot, sc->sc_slaveioh[0], com_scratch) & alive;
204 if (bits == 0)
205 return (0);
206
207 for (;;) {
208 #define TRY(n) \
209 if (bits & (1 << (n))) { \
210 if (comintr(sc->sc_slaves[n]) == 0) { \
211 printf("%s: bogus intr for port %d\n", \
212 sc->sc_dev.dv_xname, n); \
213 } \
214 }
215 TRY(0);
216 TRY(1);
217 TRY(2);
218 TRY(3);
219 TRY(4);
220 TRY(5);
221 TRY(6);
222 TRY(7);
223 #undef TRY
224 bits = bus_space_read_1(iot, sc->sc_slaveioh[0],
225 com_scratch) & alive;
226 if (bits == 0) {
227 return (1);
228 }
229 }
230 }
231
232 void
233 boca_fixup(v)
234 void *v;
235 {
236 struct boca_softc *sc = v;
237 int alive = sc->sc_alive;
238 int i, s;
239
240 s = splserial();
241
242 for (i = 0; i < 8; i++) {
243 if (alive & (1 << (i)))
244 comintr(sc->sc_slaves[i]);
245 }
246 callout_reset(&sc->fixup, hz/10, boca_fixup, sc);
247 splx(s);
248 }
249