xref: /netbsd-src/sys/dev/isa/boca.c (revision 404fbe5fb94ca1e054339640cabb2801ce52dd30)
1 /*	$NetBSD: boca.c,v 1.50 2008/04/08 20:08:49 cegger 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.50 2008/04/08 20:08:49 cegger 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 			aprint_error_dev(&sc->sc_dev, "can't map i/o space for slave %d\n", i);
170 			return;
171 		}
172 	}
173 
174 	for (i = 0; i < NSLAVES; i++) {
175 
176 		ca.ca_slave = i;
177 		ca.ca_iot = sc->sc_iot;
178 		ca.ca_ioh = sc->sc_slaveioh[i];
179 		ca.ca_iobase = sc->sc_iobase + i * COM_NPORTS;
180 		ca.ca_noien = 0;
181 
182 		sc->sc_slaves[i] = config_found(self, &ca, commultiprint);
183 		if (sc->sc_slaves[i] != NULL)
184 			sc->sc_alive |= 1 << i;
185 	}
186 
187 	sc->sc_ih = isa_intr_establish(ia->ia_ic, ia->ia_irq[0].ir_irq,
188 	    IST_EDGE, IPL_SERIAL, bocaintr, sc);
189 	callout_init(&sc->fixup, 0);
190 	callout_reset(&sc->fixup, hz/10, boca_fixup, sc);
191 }
192 
193 int
194 bocaintr(arg)
195 	void *arg;
196 {
197 	struct boca_softc *sc = arg;
198 	bus_space_tag_t iot = sc->sc_iot;
199 	int alive = sc->sc_alive;
200 	int bits;
201 
202 	bits = bus_space_read_1(iot, sc->sc_slaveioh[0], com_scratch) & alive;
203 	if (bits == 0)
204 		return (0);
205 
206 	for (;;) {
207 #define	TRY(n) \
208 		if (bits & (1 << (n))) { \
209 			if (comintr(sc->sc_slaves[n]) == 0) { \
210 				printf("%s: bogus intr for port %d\n", \
211 				    device_xname(&sc->sc_dev), n); \
212 			} \
213 		}
214 		TRY(0);
215 		TRY(1);
216 		TRY(2);
217 		TRY(3);
218 		TRY(4);
219 		TRY(5);
220 		TRY(6);
221 		TRY(7);
222 #undef TRY
223 		bits = bus_space_read_1(iot, sc->sc_slaveioh[0],
224 		    com_scratch) & alive;
225 		if (bits == 0) {
226 			return (1);
227 		}
228  	}
229 }
230 
231 void
232 boca_fixup(v)
233 	void *v;
234 {
235 	struct boca_softc *sc = v;
236 	int alive = sc->sc_alive;
237 	int i, s;
238 
239 	s = splserial();
240 
241 	for (i = 0; i < 8; i++) {
242 		if (alive & (1 << (i)))
243 			comintr(sc->sc_slaves[i]);
244 	}
245 	callout_reset(&sc->fixup, hz/10, boca_fixup, sc);
246 	splx(s);
247 }
248