This source file includes following definitions.
- bocaprobe
- bocaprint
- bocaattach
- bocaintr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37 #include <sys/param.h>
38 #include <sys/systm.h>
39 #include <sys/device.h>
40 #include <sys/termios.h>
41
42 #include <machine/bus.h>
43 #include <machine/intr.h>
44
45 #include <dev/isa/isavar.h>
46 #include <dev/ic/comreg.h>
47 #include <dev/ic/comvar.h>
48
49 #define NSLAVES 8
50
51 struct boca_softc {
52 struct device sc_dev;
53 void *sc_ih;
54
55 bus_space_tag_t sc_iot;
56 int sc_iobase;
57
58 int sc_alive;
59 void *sc_slaves[NSLAVES];
60 bus_space_handle_t sc_slaveioh[NSLAVES];
61 };
62
63 int bocaprobe(struct device *, void *, void *);
64 void bocaattach(struct device *, struct device *, void *);
65 int bocaintr(void *);
66 int bocaprint(void *, const char *);
67
68 struct cfattach boca_ca = {
69 sizeof(struct boca_softc), bocaprobe, bocaattach,
70 };
71
72 struct cfdriver boca_cd = {
73 NULL, "boca", DV_TTY
74 };
75
76 int
77 bocaprobe(parent, self, aux)
78 struct device *parent;
79 void *self;
80 void *aux;
81 {
82 struct isa_attach_args *ia = aux;
83 int iobase = ia->ia_iobase;
84 bus_space_tag_t iot = ia->ia_iot;
85 bus_space_handle_t ioh;
86 int i, rv = 1;
87
88
89
90
91
92
93
94
95
96 if (iobase == comconsaddr && !comconsattached)
97 goto checkmappings;
98
99 if (bus_space_map(iot, iobase, COM_NPORTS, 0, &ioh)) {
100 rv = 0;
101 goto out;
102 }
103 rv = comprobe1(iot, ioh);
104 bus_space_unmap(iot, ioh, COM_NPORTS);
105 if (rv == 0)
106 goto out;
107
108 checkmappings:
109 for (i = 1; i < NSLAVES; i++) {
110 iobase += COM_NPORTS;
111
112 if (iobase == comconsaddr && !comconsattached)
113 continue;
114
115 if (bus_space_map(iot, iobase, COM_NPORTS, 0, &ioh)) {
116 rv = 0;
117 goto out;
118 }
119 bus_space_unmap(iot, ioh, COM_NPORTS);
120 }
121
122 out:
123 if (rv)
124 ia->ia_iosize = NSLAVES * COM_NPORTS;
125 return (rv);
126 }
127
128 int
129 bocaprint(aux, pnp)
130 void *aux;
131 const char *pnp;
132 {
133 struct commulti_attach_args *ca = aux;
134
135 if (pnp)
136 printf("com at %s", pnp);
137 printf(" slave %d", ca->ca_slave);
138 return (UNCONF);
139 }
140
141 void
142 bocaattach(parent, self, aux)
143 struct device *parent, *self;
144 void *aux;
145 {
146 struct boca_softc *sc = (void *)self;
147 struct isa_attach_args *ia = aux;
148 struct commulti_attach_args ca;
149 bus_space_tag_t iot = ia->ia_iot;
150 int i;
151
152 sc->sc_iot = ia->ia_iot;
153 sc->sc_iobase = ia->ia_iobase;
154
155 for (i = 0; i < NSLAVES; i++)
156 if (bus_space_map(iot, sc->sc_iobase + i * COM_NPORTS,
157 COM_NPORTS, 0, &sc->sc_slaveioh[i]))
158 panic("bocaattach: couldn't map slave %d", i);
159
160 printf("\n");
161
162 for (i = 0; i < NSLAVES; i++) {
163
164 ca.ca_slave = i;
165 ca.ca_iot = sc->sc_iot;
166 ca.ca_ioh = sc->sc_slaveioh[i];
167 ca.ca_iobase = sc->sc_iobase + i * COM_NPORTS;
168 ca.ca_noien = 0;
169
170 sc->sc_slaves[i] = config_found(self, &ca, bocaprint);
171 if (sc->sc_slaves[i] != NULL)
172 sc->sc_alive |= 1 << i;
173 }
174
175 sc->sc_ih = isa_intr_establish(ia->ia_ic, ia->ia_irq, IST_EDGE,
176 IPL_TTY, bocaintr, sc, sc->sc_dev.dv_xname);
177 }
178
179 int
180 bocaintr(arg)
181 void *arg;
182 {
183 struct boca_softc *sc = arg;
184 bus_space_tag_t iot = sc->sc_iot;
185 int alive = sc->sc_alive;
186 int bits;
187
188 bits = bus_space_read_1(iot, sc->sc_slaveioh[0], 7) & alive;
189 if (bits == 0)
190 return (0);
191
192 for (;;) {
193 #define TRY(n) \
194 if (bits & (1 << (n))) \
195 comintr(sc->sc_slaves[n]);
196 TRY(0);
197 TRY(1);
198 TRY(2);
199 TRY(3);
200 TRY(4);
201 TRY(5);
202 TRY(6);
203 TRY(7);
204 #undef TRY
205 bits = bus_space_read_1(iot, sc->sc_slaveioh[0], 7) & alive;
206 if (bits == 0)
207 return (1);
208 }
209 }