xref: /netbsd-src/sys/dev/isa/boca.c (revision 5e4c038a45edbc7d63b7c2daa76e29f88b64a4e3)
1 /*	$NetBSD: boca.c,v 1.36 2002/01/07 21:47:04 thorpej 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.36 2002/01/07 21:47:04 thorpej 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 <machine/bus.h>
47 #include <machine/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 	struct callout fixup;
68 };
69 
70 int bocaprobe __P((struct device *, struct cfdata *, void *));
71 void bocaattach __P((struct device *, struct device *, void *));
72 int bocaintr __P((void *));
73 void boca_fixup __P((void *));
74 int bocaprint __P((void *, const char *));
75 
76 struct cfattach boca_ca = {
77 	sizeof(struct boca_softc), bocaprobe, bocaattach,
78 };
79 
80 int
81 bocaprobe(parent, self, aux)
82 	struct device *parent;
83 	struct cfdata *self;
84 	void *aux;
85 {
86 	struct isa_attach_args *ia = aux;
87 	bus_space_tag_t iot = ia->ia_iot;
88 	bus_space_handle_t ioh;
89 	int i, iobase, 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 (ia->ia_nio < 1)
99 		return (0);
100 	if (ia->ia_nirq < 1)
101 		return (0);
102 
103 	if (ISA_DIRECT_CONFIG(ia))
104 		return (0);
105 
106 	/* Disallow wildcarded i/o address. */
107 	if (ia->ia_io[0].ir_addr == ISACF_PORT_DEFAULT)
108 		return (0);
109 	if (ia->ia_irq[0].ir_irq == ISACF_IRQ_DEFAULT)
110 		return (0);
111 
112 	/* if the first port is in use as console, then it. */
113 	if (com_is_console(iot, iobase, 0))
114 		goto checkmappings;
115 
116 	if (bus_space_map(iot, iobase, COM_NPORTS, 0, &ioh)) {
117 		rv = 0;
118 		goto out;
119 	}
120 	rv = comprobe1(iot, ioh);
121 	bus_space_unmap(iot, ioh, COM_NPORTS);
122 	if (rv == 0)
123 		goto out;
124 
125 checkmappings:
126 	for (i = 1, iobase = ia->ia_io[0].ir_addr; i < NSLAVES; i++) {
127 		iobase += COM_NPORTS;
128 
129 		if (com_is_console(iot, iobase, 0))
130 			continue;
131 
132 		if (bus_space_map(iot, iobase, COM_NPORTS, 0, &ioh)) {
133 			rv = 0;
134 			goto out;
135 		}
136 		bus_space_unmap(iot, ioh, COM_NPORTS);
137 	}
138 
139 out:
140 	if (rv) {
141 		ia->ia_nio = 1;
142 		ia->ia_io[0].ir_size = NSLAVES * COM_NPORTS;
143 
144 		ia->ia_nirq = 1;
145 
146 		ia->ia_niomem = 0;
147 		ia->ia_ndrq = 0;
148 	}
149 	return (rv);
150 }
151 
152 int
153 bocaprint(aux, pnp)
154 	void *aux;
155 	const char *pnp;
156 {
157 	struct commulti_attach_args *ca = aux;
158 
159 	if (pnp)
160 		printf("com at %s", pnp);
161 	printf(" slave %d", ca->ca_slave);
162 	return (UNCONF);
163 }
164 
165 void
166 bocaattach(parent, self, aux)
167 	struct device *parent, *self;
168 	void *aux;
169 {
170 	struct boca_softc *sc = (void *)self;
171 	struct isa_attach_args *ia = aux;
172 	struct commulti_attach_args ca;
173 	bus_space_tag_t iot = ia->ia_iot;
174 	int i, iobase;
175 
176 	printf("\n");
177 
178 	sc->sc_iot = ia->ia_iot;
179 	sc->sc_iobase = ia->ia_io[0].ir_addr;
180 
181 	for (i = 0; i < NSLAVES; i++) {
182 		iobase = sc->sc_iobase + i * COM_NPORTS;
183 		if (!com_is_console(iot, iobase, &sc->sc_slaveioh[i]) &&
184 		    bus_space_map(iot, iobase, COM_NPORTS, 0,
185 			&sc->sc_slaveioh[i])) {
186 			printf("%s: can't map i/o space for slave %d\n",
187 			     sc->sc_dev.dv_xname, i);
188 			return;
189 		}
190 	}
191 
192 	for (i = 0; i < NSLAVES; i++) {
193 
194 		ca.ca_slave = i;
195 		ca.ca_iot = sc->sc_iot;
196 		ca.ca_ioh = sc->sc_slaveioh[i];
197 		ca.ca_iobase = sc->sc_iobase + i * COM_NPORTS;
198 		ca.ca_noien = 0;
199 
200 		sc->sc_slaves[i] = config_found(self, &ca, bocaprint);
201 		if (sc->sc_slaves[i] != NULL)
202 			sc->sc_alive |= 1 << i;
203 	}
204 
205 	sc->sc_ih = isa_intr_establish(ia->ia_ic, ia->ia_irq[0].ir_irq,
206 	    IST_EDGE, IPL_SERIAL, bocaintr, sc);
207 	callout_init(&sc->fixup);
208 	callout_reset(&sc->fixup, hz/10, boca_fixup, sc);
209 }
210 
211 int
212 bocaintr(arg)
213 	void *arg;
214 {
215 	struct boca_softc *sc = arg;
216 	bus_space_tag_t iot = sc->sc_iot;
217 	int alive = sc->sc_alive;
218 	int bits;
219 
220 	bits = bus_space_read_1(iot, sc->sc_slaveioh[0], com_scratch) & alive;
221 	if (bits == 0)
222 		return (0);
223 
224 	for (;;) {
225 #define	TRY(n) \
226 		if (bits & (1 << (n))) { \
227 			if (comintr(sc->sc_slaves[n]) == 0) { \
228 				printf("%s: bogus intr for port %d\n", \
229 				    sc->sc_dev.dv_xname, n); \
230 			} \
231 		}
232 		TRY(0);
233 		TRY(1);
234 		TRY(2);
235 		TRY(3);
236 		TRY(4);
237 		TRY(5);
238 		TRY(6);
239 		TRY(7);
240 #undef TRY
241 		bits = bus_space_read_1(iot, sc->sc_slaveioh[0],
242 		    com_scratch) & alive;
243 		if (bits == 0) {
244 			return (1);
245 		}
246  	}
247 }
248 
249 void
250 boca_fixup(v)
251 	void *v;
252 {
253 	struct boca_softc *sc = v;
254 	int alive = sc->sc_alive;
255 	int i, s;
256 
257 	s = splserial();
258 
259 	for (i = 0; i < 8; i++) {
260 		if (alive & (1 << (i)))
261 			comintr(sc->sc_slaves[i]);
262 	}
263 	callout_reset(&sc->fixup, hz/10, boca_fixup, sc);
264 	splx(s);
265 }
266