boca.c revision 1.18 1 /* $NetBSD: boca.c,v 1.18 1996/10/13 01:37:37 christos 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
48 #define NSLAVES 8
49
50 struct boca_softc {
51 struct device sc_dev;
52 void *sc_ih;
53
54 bus_chipset_tag_t sc_bc;
55 int sc_iobase;
56
57 int sc_alive; /* mask of slave units attached */
58 void *sc_slaves[NSLAVES]; /* com device unit numbers */
59 bus_io_handle_t sc_slaveioh[NSLAVES];
60 };
61
62 int bocaprobe __P((struct device *, void *, void *));
63 void bocaattach __P((struct device *, struct device *, void *));
64 int bocaintr __P((void *));
65 int bocaprint __P((void *, const char *));
66
67 struct cfattach boca_ca = {
68 sizeof(struct boca_softc), bocaprobe, bocaattach,
69 };
70
71 struct cfdriver boca_cd = {
72 NULL, "boca", DV_TTY
73 };
74
75 int
76 bocaprobe(parent, self, aux)
77 struct device *parent;
78 void *self;
79 void *aux;
80 {
81 struct isa_attach_args *ia = aux;
82 int iobase = ia->ia_iobase;
83 bus_chipset_tag_t bc = ia->ia_bc;
84 bus_io_handle_t ioh;
85 int i, 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 the first port is in use as console, then it. */
95 if (iobase == comconsaddr && !comconsattached)
96 goto checkmappings;
97
98 if (bus_io_map(bc, iobase, COM_NPORTS, &ioh)) {
99 rv = 0;
100 goto out;
101 }
102 rv = comprobe1(bc, ioh, iobase);
103 bus_io_unmap(bc, ioh, COM_NPORTS);
104 if (rv == 0)
105 goto out;
106
107 checkmappings:
108 for (i = 1; i < NSLAVES; i++) {
109 iobase += COM_NPORTS;
110
111 if (iobase == comconsaddr && !comconsattached)
112 continue;
113
114 if (bus_io_map(bc, iobase, COM_NPORTS, &ioh)) {
115 rv = 0;
116 goto out;
117 }
118 bus_io_unmap(bc, ioh, COM_NPORTS);
119 }
120
121 out:
122 if (rv)
123 ia->ia_iosize = NSLAVES * COM_NPORTS;
124 return (rv);
125 }
126
127 int
128 bocaprint(aux, pnp)
129 void *aux;
130 const char *pnp;
131 {
132 struct commulti_attach_args *ca = aux;
133
134 if (pnp)
135 printf("com at %s", pnp);
136 printf(" slave %d", ca->ca_slave);
137 return (UNCONF);
138 }
139
140 void
141 bocaattach(parent, self, aux)
142 struct device *parent, *self;
143 void *aux;
144 {
145 struct boca_softc *sc = (void *)self;
146 struct isa_attach_args *ia = aux;
147 struct commulti_attach_args ca;
148 bus_chipset_tag_t bc = ia->ia_bc;
149 int i;
150
151 sc->sc_bc = ia->ia_bc;
152 sc->sc_iobase = ia->ia_iobase;
153
154 for (i = 0; i < NSLAVES; i++)
155 if (bus_io_map(bc, sc->sc_iobase + i * COM_NPORTS, COM_NPORTS,
156 &sc->sc_slaveioh[i]))
157 panic("bocaattach: couldn't map slave %d", i);
158
159 printf("\n");
160
161 for (i = 0; i < NSLAVES; i++) {
162
163 ca.ca_slave = i;
164 ca.ca_bc = sc->sc_bc;
165 ca.ca_ioh = sc->sc_slaveioh[i];
166 ca.ca_iobase = sc->sc_iobase + i * COM_NPORTS;
167 ca.ca_noien = 0;
168
169 sc->sc_slaves[i] = config_found(self, &ca, bocaprint);
170 if (sc->sc_slaves[i] != NULL)
171 sc->sc_alive |= 1 << i;
172 }
173
174 sc->sc_ih = isa_intr_establish(ia->ia_ic, ia->ia_irq, IST_EDGE,
175 IPL_TTY, bocaintr, sc);
176 }
177
178 int
179 bocaintr(arg)
180 void *arg;
181 {
182 struct boca_softc *sc = arg;
183 bus_chipset_tag_t bc = sc->sc_bc;
184 int alive = sc->sc_alive;
185 int bits;
186
187 bits = bus_io_read_1(bc, sc->sc_slaveioh[0], 7) & alive;
188 if (bits == 0)
189 return (0);
190
191 for (;;) {
192 #define TRY(n) \
193 if (bits & (1 << (n))) \
194 comintr(sc->sc_slaves[n]);
195 TRY(0);
196 TRY(1);
197 TRY(2);
198 TRY(3);
199 TRY(4);
200 TRY(5);
201 TRY(6);
202 TRY(7);
203 #undef TRY
204 bits = bus_io_read_1(bc, sc->sc_slaveioh[0], 7) & alive;
205 if (bits == 0)
206 return (1);
207 }
208 }
209