boca.c revision 1.51 1 1.51 dsl /* $NetBSD: boca.c,v 1.51 2009/03/14 15:36:18 dsl 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.35 lukem
36 1.35 lukem #include <sys/cdefs.h>
37 1.51 dsl __KERNEL_RCSID(0, "$NetBSD: boca.c,v 1.51 2009/03/14 15:36:18 dsl 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.49 ad #include <sys/bus.h>
47 1.49 ad #include <sys/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.48 ad callout_t fixup;
68 1.1 mycroft };
69 1.1 mycroft
70 1.44 perry int bocaprobe(struct device *, struct cfdata *, void *);
71 1.44 perry void bocaattach(struct device *, struct device *, void *);
72 1.44 perry int bocaintr(void *);
73 1.44 perry void boca_fixup(void *);
74 1.1 mycroft
75 1.38 thorpej CFATTACH_DECL(boca, sizeof(struct boca_softc),
76 1.39 thorpej bocaprobe, bocaattach, NULL, NULL);
77 1.1 mycroft
78 1.1 mycroft int
79 1.47 christos bocaprobe(struct device *parent, struct cfdata *self,
80 1.46 christos void *aux)
81 1.1 mycroft {
82 1.1 mycroft struct isa_attach_args *ia = aux;
83 1.19 thorpej bus_space_tag_t iot = ia->ia_iot;
84 1.19 thorpej bus_space_handle_t ioh;
85 1.36 thorpej int i, iobase, rv = 1;
86 1.1 mycroft
87 1.1 mycroft /*
88 1.1 mycroft * Do the normal com probe for the first UART and assume
89 1.9 cgd * its presence, and the ability to map the other UARTS,
90 1.9 cgd * means there is a multiport board there.
91 1.1 mycroft * XXX Needs more robustness.
92 1.1 mycroft */
93 1.26 thorpej
94 1.36 thorpej if (ia->ia_nio < 1)
95 1.36 thorpej return (0);
96 1.36 thorpej if (ia->ia_nirq < 1)
97 1.36 thorpej return (0);
98 1.36 thorpej
99 1.36 thorpej if (ISA_DIRECT_CONFIG(ia))
100 1.36 thorpej return (0);
101 1.36 thorpej
102 1.26 thorpej /* Disallow wildcarded i/o address. */
103 1.43 drochner if (ia->ia_io[0].ir_addr == ISA_UNKNOWN_PORT)
104 1.36 thorpej return (0);
105 1.43 drochner if (ia->ia_irq[0].ir_irq == ISA_UNKNOWN_IRQ)
106 1.26 thorpej return (0);
107 1.1 mycroft
108 1.40 chs iobase = ia->ia_io[0].ir_addr;
109 1.40 chs
110 1.9 cgd /* if the first port is in use as console, then it. */
111 1.23 drochner if (com_is_console(iot, iobase, 0))
112 1.9 cgd goto checkmappings;
113 1.9 cgd
114 1.19 thorpej if (bus_space_map(iot, iobase, COM_NPORTS, 0, &ioh)) {
115 1.9 cgd rv = 0;
116 1.9 cgd goto out;
117 1.9 cgd }
118 1.32 enami rv = comprobe1(iot, ioh);
119 1.19 thorpej bus_space_unmap(iot, ioh, COM_NPORTS);
120 1.9 cgd if (rv == 0)
121 1.9 cgd goto out;
122 1.9 cgd
123 1.9 cgd checkmappings:
124 1.40 chs for (i = 1; i < NSLAVES; i++) {
125 1.9 cgd iobase += COM_NPORTS;
126 1.9 cgd
127 1.23 drochner if (com_is_console(iot, iobase, 0))
128 1.23 drochner continue;
129 1.9 cgd
130 1.19 thorpej if (bus_space_map(iot, iobase, COM_NPORTS, 0, &ioh)) {
131 1.9 cgd rv = 0;
132 1.9 cgd goto out;
133 1.9 cgd }
134 1.19 thorpej bus_space_unmap(iot, ioh, COM_NPORTS);
135 1.9 cgd }
136 1.1 mycroft
137 1.9 cgd out:
138 1.36 thorpej if (rv) {
139 1.36 thorpej ia->ia_nio = 1;
140 1.36 thorpej ia->ia_io[0].ir_size = NSLAVES * COM_NPORTS;
141 1.36 thorpej
142 1.36 thorpej ia->ia_nirq = 1;
143 1.36 thorpej
144 1.36 thorpej ia->ia_niomem = 0;
145 1.36 thorpej ia->ia_ndrq = 0;
146 1.36 thorpej }
147 1.9 cgd return (rv);
148 1.1 mycroft }
149 1.1 mycroft
150 1.1 mycroft void
151 1.47 christos bocaattach(struct device *parent, struct device *self, void *aux)
152 1.1 mycroft {
153 1.1 mycroft struct boca_softc *sc = (void *)self;
154 1.1 mycroft struct isa_attach_args *ia = aux;
155 1.8 cgd struct commulti_attach_args ca;
156 1.19 thorpej bus_space_tag_t iot = ia->ia_iot;
157 1.24 drochner int i, iobase;
158 1.1 mycroft
159 1.27 thorpej printf("\n");
160 1.27 thorpej
161 1.19 thorpej sc->sc_iot = ia->ia_iot;
162 1.36 thorpej sc->sc_iobase = ia->ia_io[0].ir_addr;
163 1.1 mycroft
164 1.24 drochner for (i = 0; i < NSLAVES; i++) {
165 1.24 drochner iobase = sc->sc_iobase + i * COM_NPORTS;
166 1.24 drochner if (!com_is_console(iot, iobase, &sc->sc_slaveioh[i]) &&
167 1.24 drochner bus_space_map(iot, iobase, COM_NPORTS, 0,
168 1.27 thorpej &sc->sc_slaveioh[i])) {
169 1.50 cegger aprint_error_dev(&sc->sc_dev, "can't map i/o space for slave %d\n", i);
170 1.27 thorpej return;
171 1.27 thorpej }
172 1.24 drochner }
173 1.1 mycroft
174 1.9 cgd for (i = 0; i < NSLAVES; i++) {
175 1.9 cgd
176 1.9 cgd ca.ca_slave = i;
177 1.19 thorpej ca.ca_iot = sc->sc_iot;
178 1.9 cgd ca.ca_ioh = sc->sc_slaveioh[i];
179 1.9 cgd ca.ca_iobase = sc->sc_iobase + i * COM_NPORTS;
180 1.9 cgd ca.ca_noien = 0;
181 1.9 cgd
182 1.42 drochner sc->sc_slaves[i] = config_found(self, &ca, commultiprint);
183 1.11 cgd if (sc->sc_slaves[i] != NULL)
184 1.9 cgd sc->sc_alive |= 1 << i;
185 1.1 mycroft }
186 1.1 mycroft
187 1.36 thorpej sc->sc_ih = isa_intr_establish(ia->ia_ic, ia->ia_irq[0].ir_irq,
188 1.36 thorpej IST_EDGE, IPL_SERIAL, bocaintr, sc);
189 1.48 ad callout_init(&sc->fixup, 0);
190 1.34 bouyer callout_reset(&sc->fixup, hz/10, boca_fixup, sc);
191 1.1 mycroft }
192 1.1 mycroft
193 1.1 mycroft int
194 1.51 dsl bocaintr(void *arg)
195 1.1 mycroft {
196 1.4 cgd struct boca_softc *sc = arg;
197 1.19 thorpej bus_space_tag_t iot = sc->sc_iot;
198 1.1 mycroft int alive = sc->sc_alive;
199 1.1 mycroft int bits;
200 1.1 mycroft
201 1.33 thorpej bits = bus_space_read_1(iot, sc->sc_slaveioh[0], com_scratch) & alive;
202 1.1 mycroft if (bits == 0)
203 1.1 mycroft return (0);
204 1.1 mycroft
205 1.1 mycroft for (;;) {
206 1.1 mycroft #define TRY(n) \
207 1.34 bouyer if (bits & (1 << (n))) { \
208 1.34 bouyer if (comintr(sc->sc_slaves[n]) == 0) { \
209 1.34 bouyer printf("%s: bogus intr for port %d\n", \
210 1.50 cegger device_xname(&sc->sc_dev), n); \
211 1.34 bouyer } \
212 1.34 bouyer }
213 1.1 mycroft TRY(0);
214 1.1 mycroft TRY(1);
215 1.1 mycroft TRY(2);
216 1.1 mycroft TRY(3);
217 1.1 mycroft TRY(4);
218 1.1 mycroft TRY(5);
219 1.1 mycroft TRY(6);
220 1.1 mycroft TRY(7);
221 1.1 mycroft #undef TRY
222 1.33 thorpej bits = bus_space_read_1(iot, sc->sc_slaveioh[0],
223 1.33 thorpej com_scratch) & alive;
224 1.34 bouyer if (bits == 0) {
225 1.1 mycroft return (1);
226 1.34 bouyer }
227 1.1 mycroft }
228 1.34 bouyer }
229 1.34 bouyer
230 1.34 bouyer void
231 1.51 dsl boca_fixup(void *v)
232 1.34 bouyer {
233 1.34 bouyer struct boca_softc *sc = v;
234 1.34 bouyer int alive = sc->sc_alive;
235 1.34 bouyer int i, s;
236 1.34 bouyer
237 1.34 bouyer s = splserial();
238 1.34 bouyer
239 1.34 bouyer for (i = 0; i < 8; i++) {
240 1.34 bouyer if (alive & (1 << (i)))
241 1.34 bouyer comintr(sc->sc_slaves[i]);
242 1.34 bouyer }
243 1.34 bouyer callout_reset(&sc->fixup, hz/10, boca_fixup, sc);
244 1.34 bouyer splx(s);
245 1.1 mycroft }
246