mfc.c revision 1.24.4.2 1 1.24.4.2 fvdl /* $NetBSD: mfc.c,v 1.24.4.2 2001/10/13 17:42:33 fvdl Exp $ */
2 1.3 chopps
3 1.1 chopps /*
4 1.1 chopps * Copyright (c) 1994 Michael L. Hitch
5 1.1 chopps * Copyright (c) 1982, 1990 The Regents of the University of California.
6 1.1 chopps * All rights reserved.
7 1.1 chopps *
8 1.1 chopps * Redistribution and use in source and binary forms, with or without
9 1.1 chopps * modification, are permitted provided that the following conditions
10 1.1 chopps * are met:
11 1.1 chopps * 1. Redistributions of source code must retain the above copyright
12 1.1 chopps * notice, this list of conditions and the following disclaimer.
13 1.1 chopps * 2. Redistributions in binary form must reproduce the above copyright
14 1.1 chopps * notice, this list of conditions and the following disclaimer in the
15 1.1 chopps * documentation and/or other materials provided with the distribution.
16 1.1 chopps * 3. All advertising materials mentioning features or use of this software
17 1.1 chopps * must display the following acknowledgement:
18 1.1 chopps * This product includes software developed by the University of
19 1.1 chopps * California, Berkeley and its contributors.
20 1.1 chopps * 4. Neither the name of the University nor the names of its contributors
21 1.1 chopps * may be used to endorse or promote products derived from this software
22 1.1 chopps * without specific prior written permission.
23 1.1 chopps *
24 1.1 chopps * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 1.1 chopps * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 1.1 chopps * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 1.1 chopps * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 1.1 chopps * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 1.1 chopps * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 1.1 chopps * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 1.1 chopps * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 1.1 chopps * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 1.1 chopps * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 1.1 chopps * SUCH DAMAGE.
35 1.1 chopps */
36 1.24 lukem
37 1.24 lukem #include "opt_kgdb.h"
38 1.1 chopps
39 1.1 chopps #include <sys/param.h>
40 1.1 chopps #include <sys/systm.h>
41 1.1 chopps #include <sys/kernel.h>
42 1.1 chopps #include <sys/device.h>
43 1.1 chopps #include <sys/tty.h>
44 1.1 chopps #include <sys/proc.h>
45 1.1 chopps #include <sys/file.h>
46 1.1 chopps #include <sys/malloc.h>
47 1.1 chopps #include <sys/uio.h>
48 1.1 chopps #include <sys/kernel.h>
49 1.1 chopps #include <sys/syslog.h>
50 1.1 chopps #include <sys/queue.h>
51 1.24.4.1 fvdl #include <sys/vnode.h>
52 1.1 chopps #include <machine/cpu.h>
53 1.1 chopps #include <amiga/amiga/device.h>
54 1.2 chopps #include <amiga/amiga/isr.h>
55 1.1 chopps #include <amiga/amiga/custom.h>
56 1.1 chopps #include <amiga/amiga/cia.h>
57 1.1 chopps #include <amiga/amiga/cc.h>
58 1.2 chopps #include <amiga/dev/zbusvar.h>
59 1.1 chopps
60 1.1 chopps #include <dev/cons.h>
61 1.1 chopps
62 1.12 veego #include <sys/conf.h>
63 1.12 veego #include <machine/conf.h>
64 1.12 veego
65 1.1 chopps #include "mfcs.h"
66 1.1 chopps
67 1.7 chopps #ifndef SEROBUF_SIZE
68 1.1 chopps #define SEROBUF_SIZE 128
69 1.7 chopps #endif
70 1.7 chopps #ifndef SERIBUF_SIZE
71 1.1 chopps #define SERIBUF_SIZE 1024
72 1.7 chopps #endif
73 1.1 chopps
74 1.2 chopps #define splser() spl6()
75 1.2 chopps
76 1.2 chopps /*
77 1.2 chopps * 68581 DUART registers
78 1.2 chopps */
79 1.1 chopps struct mfc_regs {
80 1.1 chopps volatile u_char du_mr1a;
81 1.1 chopps #define du_mr2a du_mr1a
82 1.1 chopps u_char pad0;
83 1.1 chopps volatile u_char du_csra;
84 1.1 chopps #define du_sra du_csra
85 1.1 chopps u_char pad2;
86 1.1 chopps volatile u_char du_cra;
87 1.1 chopps u_char pad4;
88 1.1 chopps volatile u_char du_tba;
89 1.1 chopps #define du_rba du_tba
90 1.1 chopps u_char pad6;
91 1.1 chopps volatile u_char du_acr;
92 1.1 chopps #define du_ipcr du_acr
93 1.1 chopps u_char pad8;
94 1.1 chopps volatile u_char du_imr;
95 1.1 chopps #define du_isr du_imr
96 1.1 chopps u_char pad10;
97 1.1 chopps volatile u_char du_ctur;
98 1.1 chopps #define du_cmsb du_ctur
99 1.1 chopps u_char pad12;
100 1.1 chopps volatile u_char du_ctlr;
101 1.1 chopps #define du_clsb du_ctlr
102 1.1 chopps u_char pad14;
103 1.1 chopps volatile u_char du_mr1b;
104 1.1 chopps #define du_mr2b du_mr1b
105 1.1 chopps u_char pad16;
106 1.1 chopps volatile u_char du_csrb;
107 1.1 chopps #define du_srb du_csrb
108 1.1 chopps u_char pad18;
109 1.1 chopps volatile u_char du_crb;
110 1.1 chopps u_char pad20;
111 1.1 chopps volatile u_char du_tbb;
112 1.1 chopps #define du_rbb du_tbb
113 1.1 chopps u_char pad22;
114 1.1 chopps volatile u_char du_ivr;
115 1.1 chopps u_char pad24;
116 1.1 chopps volatile u_char du_opcr;
117 1.1 chopps #define du_ip du_opcr
118 1.1 chopps u_char pad26;
119 1.1 chopps volatile u_char du_btst;
120 1.1 chopps #define du_strc du_btst
121 1.1 chopps u_char pad28;
122 1.1 chopps volatile u_char du_btrst;
123 1.1 chopps #define du_stpc du_btrst
124 1.1 chopps u_char pad30;
125 1.1 chopps };
126 1.1 chopps
127 1.2 chopps /*
128 1.2 chopps * 68681 DUART serial port registers
129 1.2 chopps */
130 1.1 chopps struct duart_regs {
131 1.1 chopps volatile u_char ch_mr1;
132 1.1 chopps #define ch_mr2 ch_mr1
133 1.1 chopps u_char pad0;
134 1.1 chopps volatile u_char ch_csr;
135 1.1 chopps #define ch_sr ch_csr
136 1.1 chopps u_char pad1;
137 1.1 chopps volatile u_char ch_cr;
138 1.1 chopps u_char pad2;
139 1.1 chopps volatile u_char ch_tb;
140 1.1 chopps #define ch_rb ch_tb
141 1.1 chopps u_char pad3;
142 1.1 chopps };
143 1.1 chopps
144 1.1 chopps struct mfc_softc {
145 1.1 chopps struct device sc_dev;
146 1.2 chopps struct isr sc_isr;
147 1.1 chopps struct mfc_regs *sc_regs;
148 1.1 chopps u_long clk_frq;
149 1.1 chopps u_short ct_val;
150 1.1 chopps u_char ct_usecnt;
151 1.1 chopps u_char imask;
152 1.1 chopps u_char mfc_iii;
153 1.1 chopps u_char last_ip;
154 1.1 chopps };
155 1.1 chopps
156 1.2 chopps #if NMFCS > 0
157 1.1 chopps struct mfcs_softc {
158 1.1 chopps struct device sc_dev;
159 1.6 chopps struct tty *sc_tty;
160 1.1 chopps struct duart_regs *sc_duart;
161 1.1 chopps struct mfc_regs *sc_regs;
162 1.1 chopps struct mfc_softc *sc_mfc;
163 1.9 jtc int swflags;
164 1.1 chopps long flags; /* XXX */
165 1.1 chopps #define CT_USED 1 /* CT in use */
166 1.1 chopps u_short *rptr, *wptr, incnt, ovfl;
167 1.1 chopps u_short inbuf[SERIBUF_SIZE];
168 1.1 chopps char *ptr, *end;
169 1.1 chopps char outbuf[SEROBUF_SIZE];
170 1.9 jtc struct vbl_node vbl_node;
171 1.1 chopps };
172 1.2 chopps #endif
173 1.2 chopps
174 1.2 chopps #if NMFCP > 0
175 1.2 chopps struct mfcp_softc {
176 1.2 chopps };
177 1.2 chopps #endif
178 1.1 chopps
179 1.1 chopps struct mfc_args {
180 1.1 chopps struct zbus_args zargs;
181 1.1 chopps char *subdev;
182 1.1 chopps char unit;
183 1.1 chopps };
184 1.1 chopps
185 1.14 cgd int mfcprint __P((void *auxp, const char *));
186 1.12 veego void mfcattach __P((struct device *, struct device *, void *));
187 1.18 veego int mfcmatch __P((struct device *, struct cfdata *, void *));
188 1.12 veego
189 1.2 chopps #if NMFCS > 0
190 1.18 veego int mfcsmatch __P((struct device *, struct cfdata *, void *));
191 1.12 veego void mfcsattach __P((struct device *, struct device *, void *));
192 1.12 veego int mfcsparam __P(( struct tty *, struct termios *));
193 1.12 veego int mfcshwiflow __P((struct tty *, int));
194 1.12 veego void mfcsstart __P((struct tty *));
195 1.24.4.1 fvdl int mfcsmctl __P((struct vnode *, int, int));
196 1.12 veego void mfcsxintr __P((int));
197 1.12 veego void mfcseint __P((int, int));
198 1.12 veego void mfcsmint __P((register int));
199 1.2 chopps #endif
200 1.12 veego
201 1.2 chopps #if NMFCP > 0
202 1.2 chopps void mfcpattach __P((struct device *, struct device *, void *));
203 1.18 veego int mfcpmatch __P((struct device *, struct cfdata *, void *));
204 1.2 chopps #endif
205 1.12 veego int mfcintr __P((void *));
206 1.1 chopps
207 1.11 mhitch struct cfattach mfc_ca = {
208 1.10 thorpej sizeof(struct mfc_softc), mfcmatch, mfcattach
209 1.10 thorpej };
210 1.10 thorpej
211 1.2 chopps #if NMFCS > 0
212 1.10 thorpej struct cfattach mfcs_ca = {
213 1.10 thorpej sizeof(struct mfcs_softc), mfcsmatch, mfcsattach
214 1.10 thorpej };
215 1.10 thorpej
216 1.19 thorpej extern struct cfdriver mfcs_cd;
217 1.2 chopps #endif
218 1.2 chopps
219 1.2 chopps #if NMFCP > 0
220 1.10 thorpej struct cfattach mfcp_ca = {
221 1.10 thorpej sizeof(struct mfcp_softc, mfcpmatch, mfcpattach
222 1.10 thorpej };
223 1.2 chopps #endif
224 1.1 chopps
225 1.12 veego
226 1.1 chopps int mfcs_active;
227 1.1 chopps int mfcsdefaultrate = 38400 /*TTYDEF_SPEED*/;
228 1.9 jtc #define SWFLAGS(dev) (sc->swflags | (((dev) & 0x80) == 0 ? TIOCFLAG_SOFTCAR : 0))
229 1.1 chopps
230 1.4 chopps #ifdef notyet
231 1.4 chopps /*
232 1.4 chopps * MultiFaceCard III, II+ (not supported yet), and
233 1.4 chopps * SerialMaster 500+ (not supported yet)
234 1.4 chopps * baud rate tables for BRG set 1 [not used yet]
235 1.4 chopps */
236 1.4 chopps
237 1.4 chopps struct speedtab mfcs3speedtab1[] = {
238 1.12 veego { 0, 0 },
239 1.12 veego { 100, 0x00 },
240 1.12 veego { 220, 0x11 },
241 1.12 veego { 600, 0x44 },
242 1.12 veego { 1200, 0x55 },
243 1.12 veego { 2400, 0x66 },
244 1.12 veego { 4800, 0x88 },
245 1.12 veego { 9600, 0x99 },
246 1.12 veego { 19200, 0xbb },
247 1.12 veego { 115200, 0xcc },
248 1.12 veego { -1, -1 }
249 1.4 chopps };
250 1.4 chopps
251 1.4 chopps /*
252 1.4 chopps * MultiFaceCard II, I, and SerialMaster 500
253 1.4 chopps * baud rate tables for BRG set 1 [not used yet]
254 1.4 chopps */
255 1.4 chopps
256 1.4 chopps struct speedtab mfcs2speedtab1[] = {
257 1.12 veego { 0, 0 },
258 1.12 veego { 50, 0x00 },
259 1.12 veego { 110, 0x11 },
260 1.12 veego { 300, 0x44 },
261 1.12 veego { 600, 0x55 },
262 1.12 veego { 1200, 0x66 },
263 1.12 veego { 2400, 0x88 },
264 1.12 veego { 4800, 0x99 },
265 1.12 veego { 9600, 0xbb },
266 1.12 veego { 38400, 0xcc },
267 1.12 veego { -1, -1 }
268 1.4 chopps };
269 1.4 chopps #endif
270 1.4 chopps
271 1.4 chopps /*
272 1.4 chopps * MultiFaceCard III, II+ (not supported yet), and
273 1.4 chopps * SerialMaster 500+ (not supported yet)
274 1.4 chopps * baud rate tables for BRG set 2
275 1.4 chopps */
276 1.4 chopps
277 1.4 chopps struct speedtab mfcs3speedtab2[] = {
278 1.12 veego { 0, 0 },
279 1.12 veego { 150, 0x00 },
280 1.12 veego { 200, 0x11 },
281 1.12 veego { 300, 0x33 },
282 1.12 veego { 600, 0x44 },
283 1.12 veego { 1200, 0x55 },
284 1.12 veego { 2400, 0x66 },
285 1.12 veego { 4800, 0x88 },
286 1.12 veego { 9600, 0x99 },
287 1.12 veego { 19200, 0xbb },
288 1.12 veego { 38400, 0xcc },
289 1.12 veego { -1, -1 }
290 1.1 chopps };
291 1.1 chopps
292 1.4 chopps /*
293 1.4 chopps * MultiFaceCard II, I, and SerialMaster 500
294 1.4 chopps * baud rate tables for BRG set 2
295 1.4 chopps */
296 1.4 chopps
297 1.4 chopps struct speedtab mfcs2speedtab2[] = {
298 1.12 veego { 0, 0 },
299 1.12 veego { 75, 0x00 },
300 1.12 veego { 100, 0x11 },
301 1.12 veego { 150, 0x33 },
302 1.12 veego { 300, 0x44 },
303 1.12 veego { 600, 0x55 },
304 1.12 veego { 1200, 0x66 },
305 1.12 veego { 2400, 0x88 },
306 1.12 veego { 4800, 0x99 },
307 1.12 veego { 9600, 0xbb },
308 1.12 veego { 19200, 0xcc },
309 1.12 veego { -1, -1 }
310 1.1 chopps };
311 1.1 chopps
312 1.1 chopps /*
313 1.1 chopps * if we are an bsc/Alf Data MultFaceCard (I, II, and III)
314 1.1 chopps */
315 1.1 chopps int
316 1.18 veego mfcmatch(pdp, cfp, auxp)
317 1.1 chopps struct device *pdp;
318 1.18 veego struct cfdata *cfp;
319 1.18 veego void *auxp;
320 1.1 chopps {
321 1.1 chopps struct zbus_args *zap;
322 1.1 chopps
323 1.1 chopps zap = auxp;
324 1.1 chopps if (zap->manid == 2092 &&
325 1.1 chopps (zap->prodid == 16 || zap->prodid == 17 || zap->prodid == 18))
326 1.2 chopps
327 1.1 chopps return(1);
328 1.1 chopps return(0);
329 1.1 chopps }
330 1.1 chopps
331 1.1 chopps void
332 1.1 chopps mfcattach(pdp, dp, auxp)
333 1.1 chopps struct device *pdp, *dp;
334 1.1 chopps void *auxp;
335 1.1 chopps {
336 1.1 chopps struct mfc_softc *scc;
337 1.1 chopps struct zbus_args *zap;
338 1.1 chopps struct mfc_args ma;
339 1.1 chopps int unit;
340 1.1 chopps struct mfc_regs *rp;
341 1.1 chopps
342 1.1 chopps zap = auxp;
343 1.2 chopps
344 1.17 christos printf ("\n");
345 1.1 chopps
346 1.1 chopps scc = (struct mfc_softc *)dp;
347 1.1 chopps unit = scc->sc_dev.dv_unit;
348 1.1 chopps scc->sc_regs = rp = zap->va;
349 1.1 chopps if (zap->prodid == 18)
350 1.1 chopps scc->mfc_iii = 3;
351 1.1 chopps scc->clk_frq = scc->mfc_iii ? 230400 : 115200;
352 1.1 chopps
353 1.1 chopps rp->du_opcr = 0x00; /* configure output port? */
354 1.1 chopps rp->du_btrst = 0x0f; /* clear modem lines */
355 1.1 chopps rp->du_ivr = 0; /* IVR */
356 1.1 chopps rp->du_imr = 0; /* IMR */
357 1.1 chopps rp->du_acr = 0xe0; /* baud rate generate set 2 */
358 1.1 chopps rp->du_ctur = 0;
359 1.1 chopps rp->du_ctlr = 4;
360 1.1 chopps rp->du_csra = 0xcc; /* clock select = 38400 */
361 1.1 chopps rp->du_cra = 0x10; /* reset mode register ptr */
362 1.1 chopps rp->du_cra = 0x20;
363 1.1 chopps rp->du_cra = 0x30;
364 1.1 chopps rp->du_cra = 0x40;
365 1.1 chopps rp->du_mr1a = 0x93; /* MRA1 */
366 1.1 chopps rp->du_mr2a = 0x17; /* MRA2 */
367 1.1 chopps rp->du_csrb = 0xcc; /* clock select = 38400 */
368 1.1 chopps rp->du_crb = 0x10; /* reset mode register ptr */
369 1.1 chopps rp->du_crb = 0x20;
370 1.1 chopps rp->du_crb = 0x30;
371 1.1 chopps rp->du_crb = 0x40;
372 1.1 chopps rp->du_mr1b = 0x93; /* MRB1 */
373 1.1 chopps rp->du_mr2b = 0x17; /* MRB2 */
374 1.1 chopps rp->du_cra = 0x05; /* enable A Rx & Tx */
375 1.1 chopps rp->du_crb = 0x05; /* enable B Rx & Tx */
376 1.1 chopps
377 1.2 chopps scc->sc_isr.isr_intr = mfcintr;
378 1.2 chopps scc->sc_isr.isr_arg = scc;
379 1.2 chopps scc->sc_isr.isr_ipl = 6;
380 1.2 chopps add_isr(&scc->sc_isr);
381 1.1 chopps
382 1.1 chopps /* configure ports */
383 1.1 chopps bcopy(zap, &ma.zargs, sizeof(struct zbus_args));
384 1.1 chopps ma.subdev = "mfcs";
385 1.1 chopps ma.unit = unit * 2;
386 1.1 chopps config_found(dp, &ma, mfcprint);
387 1.1 chopps ma.unit = unit * 2 + 1;
388 1.1 chopps config_found(dp, &ma, mfcprint);
389 1.1 chopps ma.subdev = "mfcp";
390 1.1 chopps ma.unit = unit;
391 1.1 chopps config_found(dp, &ma, mfcprint);
392 1.1 chopps }
393 1.1 chopps
394 1.1 chopps /*
395 1.2 chopps *
396 1.1 chopps */
397 1.1 chopps int
398 1.18 veego mfcsmatch(pdp, cfp, auxp)
399 1.1 chopps struct device *pdp;
400 1.18 veego struct cfdata *cfp;
401 1.18 veego void *auxp;
402 1.1 chopps {
403 1.1 chopps struct mfc_args *ma;
404 1.1 chopps
405 1.1 chopps ma = auxp;
406 1.1 chopps if (strcmp(ma->subdev, "mfcs") == 0)
407 1.1 chopps return (1);
408 1.1 chopps return (0);
409 1.1 chopps }
410 1.1 chopps
411 1.1 chopps void
412 1.1 chopps mfcsattach(pdp, dp, auxp)
413 1.1 chopps struct device *pdp, *dp;
414 1.1 chopps void *auxp;
415 1.1 chopps {
416 1.1 chopps int unit;
417 1.1 chopps struct mfcs_softc *sc;
418 1.1 chopps struct mfc_softc *scc;
419 1.1 chopps struct mfc_args *ma;
420 1.1 chopps struct mfc_regs *rp;
421 1.1 chopps
422 1.1 chopps sc = (struct mfcs_softc *) dp;
423 1.1 chopps scc = (struct mfc_softc *) pdp;
424 1.1 chopps ma = auxp;
425 1.1 chopps
426 1.1 chopps if (dp) {
427 1.17 christos printf (": input fifo %d output fifo %d\n", SERIBUF_SIZE,
428 1.1 chopps SEROBUF_SIZE);
429 1.1 chopps alloc_sicallback();
430 1.1 chopps }
431 1.1 chopps
432 1.1 chopps unit = ma->unit;
433 1.1 chopps mfcs_active |= 1 << unit;
434 1.1 chopps sc->rptr = sc->wptr = sc->inbuf;
435 1.1 chopps sc->sc_mfc = scc;
436 1.1 chopps sc->sc_regs = rp = scc->sc_regs;
437 1.1 chopps sc->sc_duart = (struct duart_regs *) ((unit & 1) ? &rp->du_mr1b :
438 1.1 chopps &rp->du_mr1a);
439 1.1 chopps /*
440 1.1 chopps * should have only one vbl routine to handle all ports?
441 1.1 chopps */
442 1.9 jtc sc->vbl_node.function = (void (*) (void *)) mfcsmint;
443 1.9 jtc sc->vbl_node.data = (void *) unit;
444 1.9 jtc add_vbl_function(&sc->vbl_node, 1, (void *) unit);
445 1.1 chopps }
446 1.1 chopps
447 1.1 chopps /*
448 1.1 chopps * print diag if pnp is NULL else just extra
449 1.1 chopps */
450 1.1 chopps int
451 1.1 chopps mfcprint(auxp, pnp)
452 1.1 chopps void *auxp;
453 1.14 cgd const char *pnp;
454 1.1 chopps {
455 1.1 chopps if (pnp == NULL)
456 1.1 chopps return(UNCONF);
457 1.1 chopps return(QUIET);
458 1.1 chopps }
459 1.1 chopps
460 1.1 chopps int
461 1.24.4.1 fvdl mfcsopen(devvp, flag, mode, p)
462 1.24.4.1 fvdl struct vnode *devvp;
463 1.1 chopps int flag, mode;
464 1.1 chopps struct proc *p;
465 1.1 chopps {
466 1.1 chopps struct tty *tp;
467 1.6 chopps struct mfcs_softc *sc;
468 1.1 chopps int unit, error, s;
469 1.24.4.1 fvdl dev_t dev;
470 1.1 chopps
471 1.24.4.1 fvdl dev = vdev_rdev(devvp);
472 1.1 chopps error = 0;
473 1.1 chopps unit = dev & 0x1f;
474 1.1 chopps
475 1.10 thorpej if (unit >= mfcs_cd.cd_ndevs || (mfcs_active & (1 << unit)) == 0)
476 1.1 chopps return (ENXIO);
477 1.10 thorpej sc = mfcs_cd.cd_devs[unit];
478 1.1 chopps
479 1.1 chopps s = spltty();
480 1.1 chopps
481 1.6 chopps if (sc->sc_tty)
482 1.6 chopps tp = sc->sc_tty;
483 1.13 mhitch else {
484 1.6 chopps tp = sc->sc_tty = ttymalloc();
485 1.13 mhitch tty_attach(tp);
486 1.13 mhitch }
487 1.1 chopps
488 1.1 chopps tp->t_oproc = (void (*) (struct tty *)) mfcsstart;
489 1.1 chopps tp->t_param = mfcsparam;
490 1.24.4.2 fvdl tp->t_dev = dev;
491 1.1 chopps tp->t_hwiflow = mfcshwiflow;
492 1.1 chopps
493 1.24.4.1 fvdl vdev_setprivdata(devvp, sc);
494 1.24.4.1 fvdl
495 1.20 mhitch if ((tp->t_state & TS_ISOPEN) == 0 && tp->t_wopen == 0) {
496 1.1 chopps ttychars(tp);
497 1.1 chopps if (tp->t_ispeed == 0) {
498 1.1 chopps /*
499 1.1 chopps * only when cleared do we reset to defaults.
500 1.1 chopps */
501 1.1 chopps tp->t_iflag = TTYDEF_IFLAG;
502 1.1 chopps tp->t_oflag = TTYDEF_OFLAG;
503 1.1 chopps tp->t_cflag = TTYDEF_CFLAG;
504 1.1 chopps tp->t_lflag = TTYDEF_LFLAG;
505 1.1 chopps tp->t_ispeed = tp->t_ospeed = mfcsdefaultrate;
506 1.1 chopps }
507 1.1 chopps /*
508 1.1 chopps * do these all the time
509 1.1 chopps */
510 1.9 jtc if (sc->swflags & TIOCFLAG_CLOCAL)
511 1.1 chopps tp->t_cflag |= CLOCAL;
512 1.9 jtc if (sc->swflags & TIOCFLAG_CRTSCTS)
513 1.1 chopps tp->t_cflag |= CRTSCTS;
514 1.9 jtc if (sc->swflags & TIOCFLAG_MDMBUF)
515 1.1 chopps tp->t_cflag |= MDMBUF;
516 1.1 chopps mfcsparam(tp, &tp->t_termios);
517 1.1 chopps ttsetwater(tp);
518 1.2 chopps
519 1.24.4.1 fvdl (void)mfcsmctl(devvp, TIOCM_DTR | TIOCM_RTS, DMSET);
520 1.2 chopps if ((SWFLAGS(dev) & TIOCFLAG_SOFTCAR) ||
521 1.24.4.1 fvdl (mfcsmctl(devvp, 0, DMGET) & TIOCM_CD))
522 1.1 chopps tp->t_state |= TS_CARR_ON;
523 1.1 chopps else
524 1.1 chopps tp->t_state &= ~TS_CARR_ON;
525 1.1 chopps } else if (tp->t_state & TS_XCLUDE && p->p_ucred->cr_uid != 0) {
526 1.1 chopps splx(s);
527 1.1 chopps return(EBUSY);
528 1.1 chopps }
529 1.1 chopps
530 1.1 chopps /*
531 1.1 chopps * if NONBLOCK requested, ignore carrier
532 1.1 chopps */
533 1.1 chopps if (flag & O_NONBLOCK)
534 1.1 chopps goto done;
535 1.1 chopps
536 1.1 chopps /*
537 1.1 chopps * block waiting for carrier
538 1.1 chopps */
539 1.1 chopps while ((tp->t_state & TS_CARR_ON) == 0 && (tp->t_cflag & CLOCAL) == 0) {
540 1.20 mhitch tp->t_wopen++;
541 1.2 chopps error = ttysleep(tp, (caddr_t)&tp->t_rawq,
542 1.1 chopps TTIPRI | PCATCH, ttopen, 0);
543 1.20 mhitch tp->t_wopen--;
544 1.1 chopps if (error) {
545 1.1 chopps splx(s);
546 1.1 chopps return(error);
547 1.1 chopps }
548 1.1 chopps }
549 1.1 chopps done:
550 1.1 chopps /* This is a way to handle lost XON characters */
551 1.1 chopps if ((flag & O_TRUNC) && (tp->t_state & TS_TTSTOP)) {
552 1.1 chopps tp->t_state &= ~TS_TTSTOP;
553 1.1 chopps ttstart (tp);
554 1.1 chopps }
555 1.1 chopps
556 1.1 chopps splx(s);
557 1.1 chopps /*
558 1.1 chopps * Reset the tty pointer, as there could have been a dialout
559 1.1 chopps * use of the tty with a dialin open waiting.
560 1.1 chopps */
561 1.24.4.2 fvdl tp->t_dev = dev;
562 1.24.4.1 fvdl return tp->t_linesw->l_open(devvp, tp);
563 1.1 chopps }
564 1.1 chopps
565 1.1 chopps /*ARGSUSED*/
566 1.1 chopps int
567 1.24.4.1 fvdl mfcsclose(devvp, flag, mode, p)
568 1.24.4.1 fvdl struct vnode *devvp;
569 1.1 chopps int flag, mode;
570 1.1 chopps struct proc *p;
571 1.1 chopps {
572 1.1 chopps struct tty *tp;
573 1.24.4.1 fvdl struct mfcs_softc *sc;
574 1.24.4.1 fvdl struct mfc_softc *scc;
575 1.1 chopps int unit;
576 1.1 chopps
577 1.24.4.1 fvdl sc = vdev_privdata(devvp);
578 1.24.4.1 fvdl scc= sc->sc_mfc;
579 1.24.4.1 fvdl unit = vdev_rdev(devvp) & 31;
580 1.1 chopps
581 1.6 chopps tp = sc->sc_tty;
582 1.22 aymeric tp->t_linesw->l_close(tp, flag);
583 1.1 chopps sc->sc_duart->ch_cr = 0x70; /* stop break */
584 1.1 chopps
585 1.1 chopps scc->imask &= ~(0x7 << ((unit & 1) * 4));
586 1.1 chopps scc->sc_regs->du_imr = scc->imask;
587 1.1 chopps if (sc->flags & CT_USED) {
588 1.1 chopps --scc->ct_usecnt;
589 1.1 chopps sc->flags &= ~CT_USED;
590 1.1 chopps }
591 1.1 chopps
592 1.1 chopps /*
593 1.1 chopps * If the device is closed, it's close, no matter whether we deal with
594 1.1 chopps * modem control signals nor not.
595 1.1 chopps */
596 1.1 chopps #if 0
597 1.20 mhitch if (tp->t_cflag & HUPCL || tp->t_wopen != 0 ||
598 1.1 chopps (tp->t_state & TS_ISOPEN) == 0)
599 1.1 chopps #endif
600 1.24.4.1 fvdl (void) mfcsmctl(devvp, 0, DMSET);
601 1.1 chopps ttyclose(tp);
602 1.1 chopps #if not_yet
603 1.1 chopps if (tp != &mfcs_cons) {
604 1.9 jtc remove_vbl_function(&sc->vbl_node);
605 1.1 chopps ttyfree(tp);
606 1.6 chopps sc->sc_tty = (struct tty *) NULL;
607 1.1 chopps }
608 1.1 chopps #endif
609 1.1 chopps return (0);
610 1.1 chopps }
611 1.1 chopps
612 1.1 chopps int
613 1.24.4.1 fvdl mfcsread(devvp, uio, flag)
614 1.24.4.1 fvdl struct vnode *devvp;
615 1.1 chopps struct uio *uio;
616 1.1 chopps int flag;
617 1.1 chopps {
618 1.24.4.1 fvdl struct mfcs_softc *sc;
619 1.24.4.1 fvdl struct tty *tp;
620 1.24.4.1 fvdl
621 1.24.4.1 fvdl sc = vdev_privdata(devvp);
622 1.24.4.1 fvdl tp = sc->sc_tty;
623 1.24.4.1 fvdl
624 1.6 chopps if (tp == NULL)
625 1.1 chopps return(ENXIO);
626 1.22 aymeric return tp->t_linesw->l_read(tp, uio, flag);
627 1.1 chopps }
628 1.1 chopps
629 1.1 chopps int
630 1.24.4.1 fvdl mfcswrite(devvp, uio, flag)
631 1.24.4.1 fvdl struct vnode *devvp;
632 1.1 chopps struct uio *uio;
633 1.1 chopps int flag;
634 1.1 chopps {
635 1.24.4.1 fvdl struct mfcs_softc *sc;
636 1.24.4.1 fvdl struct tty *tp;
637 1.24.4.1 fvdl
638 1.24.4.1 fvdl sc = vdev_privdata(devvp);
639 1.24.4.1 fvdl tp = sc->sc_tty;
640 1.1 chopps
641 1.6 chopps if (tp == NULL)
642 1.1 chopps return(ENXIO);
643 1.22 aymeric return tp->t_linesw->l_write(tp, uio, flag);
644 1.23 scw }
645 1.23 scw
646 1.23 scw int
647 1.24.4.1 fvdl mfcspoll(devvp, events, p)
648 1.24.4.1 fvdl struct vnode *devvp;
649 1.23 scw int events;
650 1.23 scw struct proc *p;
651 1.23 scw {
652 1.24.4.1 fvdl struct mfcs_softc *sc;
653 1.24.4.1 fvdl struct tty *tp;
654 1.23 scw
655 1.24.4.1 fvdl sc = vdev_privdata(devvp);
656 1.24.4.1 fvdl tp = sc->sc_tty;
657 1.23 scw if (tp == NULL)
658 1.23 scw return(ENXIO);
659 1.23 scw return ((*tp->t_linesw->l_poll)(tp, events, p));
660 1.1 chopps }
661 1.5 chopps
662 1.5 chopps struct tty *
663 1.24.4.1 fvdl mfcstty(devvp)
664 1.24.4.1 fvdl struct vnode *devvp;
665 1.5 chopps {
666 1.24.4.1 fvdl struct mfcs_softc *sc;
667 1.24.4.1 fvdl
668 1.24.4.1 fvdl sc = vdev_privdata(devvp);
669 1.6 chopps
670 1.6 chopps return (sc->sc_tty);
671 1.5 chopps }
672 1.5 chopps
673 1.1 chopps int
674 1.24.4.1 fvdl mfcsioctl(devvp, cmd, data, flag, p)
675 1.24.4.1 fvdl struct vnode *devvp;
676 1.12 veego u_long cmd;
677 1.1 chopps caddr_t data;
678 1.12 veego int flag;
679 1.1 chopps struct proc *p;
680 1.1 chopps {
681 1.1 chopps register struct tty *tp;
682 1.1 chopps register int error;
683 1.24.4.1 fvdl struct mfcs_softc *sc;
684 1.24.4.1 fvdl
685 1.24.4.1 fvdl sc = vdev_privdata(devvp);
686 1.1 chopps
687 1.6 chopps tp = sc->sc_tty;
688 1.1 chopps if (!tp)
689 1.1 chopps return ENXIO;
690 1.1 chopps
691 1.22 aymeric error = tp->t_linesw->l_ioctl(tp, cmd, data, flag, p);
692 1.1 chopps if (error >= 0)
693 1.1 chopps return(error);
694 1.1 chopps
695 1.24.4.2 fvdl error = ttioctl(tp, devvp, cmd, data, flag, p);
696 1.1 chopps if (error >= 0)
697 1.1 chopps return(error);
698 1.1 chopps
699 1.1 chopps switch (cmd) {
700 1.1 chopps case TIOCSBRK:
701 1.1 chopps sc->sc_duart->ch_cr = 0x60; /* start break */
702 1.1 chopps break;
703 1.1 chopps
704 1.1 chopps case TIOCCBRK:
705 1.1 chopps sc->sc_duart->ch_cr = 0x70; /* stop break */
706 1.1 chopps break;
707 1.1 chopps
708 1.1 chopps case TIOCSDTR:
709 1.24.4.1 fvdl (void) mfcsmctl(devvp, TIOCM_DTR | TIOCM_RTS, DMBIS);
710 1.1 chopps break;
711 1.1 chopps
712 1.1 chopps case TIOCCDTR:
713 1.24.4.1 fvdl (void) mfcsmctl(devvp, TIOCM_DTR | TIOCM_RTS, DMBIC);
714 1.1 chopps break;
715 1.1 chopps
716 1.1 chopps case TIOCMSET:
717 1.24.4.1 fvdl (void) mfcsmctl(devvp, *(int *) data, DMSET);
718 1.1 chopps break;
719 1.1 chopps
720 1.1 chopps case TIOCMBIS:
721 1.24.4.1 fvdl (void) mfcsmctl(devvp, *(int *) data, DMBIS);
722 1.1 chopps break;
723 1.1 chopps
724 1.1 chopps case TIOCMBIC:
725 1.24.4.1 fvdl (void) mfcsmctl(devvp, *(int *) data, DMBIC);
726 1.1 chopps break;
727 1.1 chopps
728 1.1 chopps case TIOCMGET:
729 1.24.4.1 fvdl *(int *)data = mfcsmctl(devvp, 0, DMGET);
730 1.1 chopps break;
731 1.1 chopps case TIOCGFLAGS:
732 1.24.4.1 fvdl *(int *)data = SWFLAGS(vdev_rdev(devvp));
733 1.1 chopps break;
734 1.1 chopps case TIOCSFLAGS:
735 1.2 chopps error = suser(p->p_ucred, &p->p_acflag);
736 1.1 chopps if (error != 0)
737 1.2 chopps return(EPERM);
738 1.1 chopps
739 1.9 jtc sc->swflags = *(int *)data;
740 1.9 jtc sc->swflags &= /* only allow valid flags */
741 1.1 chopps (TIOCFLAG_SOFTCAR | TIOCFLAG_CLOCAL | TIOCFLAG_CRTSCTS);
742 1.4 chopps /* XXXX need to change duart parameters? */
743 1.1 chopps break;
744 1.1 chopps default:
745 1.1 chopps return(ENOTTY);
746 1.1 chopps }
747 1.1 chopps
748 1.1 chopps return(0);
749 1.1 chopps }
750 1.1 chopps
751 1.1 chopps int
752 1.1 chopps mfcsparam(tp, t)
753 1.1 chopps struct tty *tp;
754 1.1 chopps struct termios *t;
755 1.1 chopps {
756 1.12 veego int cflag, unit, ospeed;
757 1.24.4.2 fvdl struct mfcs_softc *sc = mfcs_cd.cd_devs[tp->t_dev & 31];
758 1.1 chopps struct mfc_softc *scc= sc->sc_mfc;
759 1.2 chopps
760 1.1 chopps cflag = t->c_cflag;
761 1.24.4.2 fvdl unit = tp->t_dev & 31;
762 1.1 chopps if (sc->flags & CT_USED) {
763 1.1 chopps --scc->ct_usecnt;
764 1.1 chopps sc->flags &= ~CT_USED;
765 1.1 chopps }
766 1.4 chopps ospeed = ttspeedtab(t->c_ospeed, scc->mfc_iii ? mfcs3speedtab2 :
767 1.4 chopps mfcs2speedtab2);
768 1.1 chopps
769 1.1 chopps /*
770 1.1 chopps * If Baud Rate Generator can't generate requested speed,
771 1.1 chopps * try to use the counter/timer.
772 1.1 chopps */
773 1.1 chopps if (ospeed < 0 && (scc->clk_frq % t->c_ospeed) == 0) {
774 1.1 chopps ospeed = scc->clk_frq / t->c_ospeed; /* divisor */
775 1.1 chopps if (scc->ct_usecnt > 0 && scc->ct_val != ospeed)
776 1.1 chopps ospeed = -1;
777 1.1 chopps else {
778 1.1 chopps scc->sc_regs->du_ctur = ospeed >> 8;
779 1.1 chopps scc->sc_regs->du_ctlr = ospeed;
780 1.1 chopps scc->ct_val = ospeed;
781 1.1 chopps ++scc->ct_usecnt;
782 1.1 chopps sc->flags |= CT_USED;
783 1.1 chopps ospeed = 0xdd;
784 1.1 chopps }
785 1.1 chopps }
786 1.1 chopps /* XXXX 68681 duart could handle split speeds */
787 1.1 chopps if (ospeed < 0 || (t->c_ispeed && t->c_ispeed != t->c_ospeed))
788 1.1 chopps return(EINVAL);
789 1.1 chopps
790 1.4 chopps /* XXXX handle parity, character size, stop bits, flow control */
791 1.4 chopps
792 1.2 chopps /*
793 1.1 chopps * copy to tty
794 1.1 chopps */
795 1.1 chopps tp->t_ispeed = t->c_ispeed;
796 1.1 chopps tp->t_ospeed = t->c_ospeed;
797 1.1 chopps tp->t_cflag = cflag;
798 1.1 chopps
799 1.1 chopps /*
800 1.1 chopps * enable interrupts
801 1.1 chopps */
802 1.1 chopps scc->imask |= (0x2 << ((unit & 1) * 4)) | 0x80;
803 1.1 chopps scc->sc_regs->du_imr = scc->imask;
804 1.1 chopps #if defined(DEBUG) && 0
805 1.17 christos printf("mfcsparam: speed %d => %x ct %d imask %x cflag %x\n",
806 1.1 chopps t->c_ospeed, ospeed, scc->ct_val, scc->imask, cflag);
807 1.1 chopps #endif
808 1.1 chopps if (ospeed == 0)
809 1.24.4.2 fvdl (void)mfcsmctl(tp->t_dev, 0, DMSET); /* hang up line */
810 1.1 chopps else {
811 1.2 chopps /*
812 1.1 chopps * (re)enable DTR
813 1.1 chopps * and set baud rate. (8 bit mode)
814 1.1 chopps */
815 1.24.4.2 fvdl (void)mfcsmctl(tp->t_dev, TIOCM_DTR | TIOCM_RTS, DMSET);
816 1.1 chopps sc->sc_duart->ch_csr = ospeed;
817 1.1 chopps }
818 1.1 chopps return(0);
819 1.1 chopps }
820 1.1 chopps
821 1.12 veego int
822 1.12 veego mfcshwiflow(tp, flag)
823 1.1 chopps struct tty *tp;
824 1.1 chopps int flag;
825 1.1 chopps {
826 1.24.4.2 fvdl struct mfcs_softc *sc = mfcs_cd.cd_devs[tp->t_dev & 31];
827 1.24.4.2 fvdl int unit = tp->t_dev & 1;
828 1.1 chopps
829 1.1 chopps if (flag)
830 1.1 chopps sc->sc_regs->du_btrst = 1 << unit;
831 1.1 chopps else
832 1.1 chopps sc->sc_regs->du_btst = 1 << unit;
833 1.1 chopps return 1;
834 1.1 chopps }
835 1.1 chopps
836 1.12 veego void
837 1.1 chopps mfcsstart(tp)
838 1.1 chopps struct tty *tp;
839 1.1 chopps {
840 1.1 chopps int cc, s, unit;
841 1.24.4.2 fvdl struct mfcs_softc *sc = mfcs_cd.cd_devs[tp->t_dev & 31];
842 1.1 chopps struct mfc_softc *scc= sc->sc_mfc;
843 1.1 chopps
844 1.1 chopps if ((tp->t_state & TS_ISOPEN) == 0)
845 1.1 chopps return;
846 1.1 chopps
847 1.24.4.2 fvdl unit = tp->t_dev & 1;
848 1.1 chopps
849 1.2 chopps s = splser();
850 1.1 chopps if (tp->t_state & (TS_TIMEOUT | TS_TTSTOP))
851 1.1 chopps goto out;
852 1.1 chopps
853 1.1 chopps cc = tp->t_outq.c_cc;
854 1.1 chopps if (cc <= tp->t_lowat) {
855 1.1 chopps if (tp->t_state & TS_ASLEEP) {
856 1.1 chopps tp->t_state &= ~TS_ASLEEP;
857 1.1 chopps wakeup((caddr_t) & tp->t_outq);
858 1.1 chopps }
859 1.1 chopps selwakeup(&tp->t_wsel);
860 1.1 chopps }
861 1.1 chopps if (cc == 0 || (tp->t_state & TS_BUSY))
862 1.1 chopps goto out;
863 1.1 chopps
864 1.1 chopps /*
865 1.1 chopps * We only do bulk transfers if using CTSRTS flow control, not for
866 1.1 chopps * (probably sloooow) ixon/ixoff devices.
867 1.1 chopps */
868 1.1 chopps if ((tp->t_cflag & CRTSCTS) == 0)
869 1.1 chopps cc = 1;
870 1.1 chopps
871 1.1 chopps /*
872 1.1 chopps * Limit the amount of output we do in one burst
873 1.1 chopps * to prevent hogging the CPU.
874 1.1 chopps */
875 1.1 chopps if (cc > SEROBUF_SIZE)
876 1.1 chopps cc = SEROBUF_SIZE;
877 1.1 chopps cc = q_to_b(&tp->t_outq, sc->outbuf, cc);
878 1.1 chopps if (cc > 0) {
879 1.1 chopps tp->t_state |= TS_BUSY;
880 1.1 chopps
881 1.1 chopps sc->ptr = sc->outbuf;
882 1.1 chopps sc->end = sc->outbuf + cc;
883 1.1 chopps
884 1.1 chopps /*
885 1.1 chopps * Get first character out, then have TBE-interrupts blow out
886 1.1 chopps * further characters, until buffer is empty, and TS_BUSY gets
887 1.2 chopps * cleared.
888 1.1 chopps */
889 1.1 chopps sc->sc_duart->ch_tb = *sc->ptr++;
890 1.1 chopps scc->imask |= 1 << (unit * 4);
891 1.1 chopps sc->sc_regs->du_imr = scc->imask;
892 1.1 chopps }
893 1.1 chopps out:
894 1.1 chopps splx(s);
895 1.1 chopps }
896 1.1 chopps
897 1.1 chopps /*
898 1.1 chopps * Stop output on a line.
899 1.1 chopps */
900 1.1 chopps /*ARGSUSED*/
901 1.15 mycroft void
902 1.1 chopps mfcsstop(tp, flag)
903 1.1 chopps struct tty *tp;
904 1.12 veego int flag;
905 1.1 chopps {
906 1.1 chopps int s;
907 1.1 chopps
908 1.2 chopps s = splser();
909 1.1 chopps if (tp->t_state & TS_BUSY) {
910 1.1 chopps if ((tp->t_state & TS_TTSTOP) == 0)
911 1.1 chopps tp->t_state |= TS_FLUSH;
912 1.1 chopps }
913 1.1 chopps splx(s);
914 1.1 chopps }
915 1.1 chopps
916 1.1 chopps int
917 1.24.4.1 fvdl mfcsmctl(devvp, bits, how)
918 1.24.4.1 fvdl struct vnode *devvp;
919 1.1 chopps int bits, how;
920 1.1 chopps {
921 1.1 chopps int unit, s;
922 1.12 veego u_char ub = 0;
923 1.24.4.1 fvdl struct mfcs_softc *sc;
924 1.1 chopps
925 1.24.4.1 fvdl sc = vdev_privdata(devvp);
926 1.24.4.1 fvdl unit = vdev_rdev(devvp) & 1;
927 1.1 chopps
928 1.1 chopps /*
929 1.1 chopps * convert TIOCM* mask into CIA mask
930 1.1 chopps * which is active low
931 1.1 chopps */
932 1.1 chopps if (how != DMGET) {
933 1.1 chopps /*
934 1.1 chopps * need to save current state of DTR & RTS ?
935 1.1 chopps */
936 1.1 chopps if (bits & TIOCM_DTR)
937 1.1 chopps ub |= 0x04 << unit;
938 1.1 chopps if (bits & TIOCM_RTS)
939 1.1 chopps ub |= 0x01 << unit;
940 1.1 chopps }
941 1.2 chopps s = splser();
942 1.1 chopps switch (how) {
943 1.1 chopps case DMSET:
944 1.1 chopps sc->sc_regs->du_btst = ub;
945 1.4 chopps sc->sc_regs->du_btrst = ub ^ (0x05 << unit);
946 1.1 chopps break;
947 1.1 chopps
948 1.1 chopps case DMBIC:
949 1.1 chopps sc->sc_regs->du_btrst = ub;
950 1.1 chopps ub = ~sc->sc_regs->du_ip;
951 1.1 chopps break;
952 1.1 chopps
953 1.1 chopps case DMBIS:
954 1.1 chopps sc->sc_regs->du_btst = ub;
955 1.1 chopps ub = ~sc->sc_regs->du_ip;
956 1.1 chopps break;
957 1.1 chopps
958 1.1 chopps case DMGET:
959 1.1 chopps ub = ~sc->sc_regs->du_ip;
960 1.1 chopps break;
961 1.1 chopps }
962 1.1 chopps (void)splx(s);
963 1.1 chopps
964 1.4 chopps /* XXXX should keep DTR & RTS states in softc? */
965 1.1 chopps bits = TIOCM_DTR | TIOCM_RTS;
966 1.1 chopps if (ub & (1 << unit))
967 1.1 chopps bits |= TIOCM_CTS;
968 1.1 chopps if (ub & (4 << unit))
969 1.1 chopps bits |= TIOCM_DSR;
970 1.1 chopps if (ub & (0x10 << unit))
971 1.1 chopps bits |= TIOCM_CD;
972 1.4 chopps /* XXXX RI is not supported on all boards */
973 1.1 chopps if (sc->sc_regs->pad26 & (1 << unit))
974 1.1 chopps bits |= TIOCM_RI;
975 1.1 chopps
976 1.1 chopps return(bits);
977 1.1 chopps }
978 1.1 chopps
979 1.1 chopps /*
980 1.2 chopps * Level 6 interrupt processing for the MultiFaceCard 68681 DUART
981 1.1 chopps */
982 1.1 chopps
983 1.1 chopps int
984 1.12 veego mfcintr(arg)
985 1.12 veego void *arg;
986 1.1 chopps {
987 1.12 veego struct mfc_softc *scc = arg;
988 1.1 chopps struct mfcs_softc *sc;
989 1.1 chopps struct mfc_regs *regs;
990 1.2 chopps struct tty *tp;
991 1.2 chopps int istat, unit;
992 1.2 chopps u_short c;
993 1.1 chopps
994 1.2 chopps regs = scc->sc_regs;
995 1.2 chopps istat = regs->du_isr & scc->imask;
996 1.2 chopps if (istat == 0)
997 1.2 chopps return (0);
998 1.2 chopps unit = scc->sc_dev.dv_unit * 2;
999 1.2 chopps if (istat & 0x02) { /* channel A receive interrupt */
1000 1.10 thorpej sc = mfcs_cd.cd_devs[unit];
1001 1.2 chopps while (1) {
1002 1.2 chopps c = regs->du_sra << 8;
1003 1.2 chopps if ((c & 0x0100) == 0)
1004 1.2 chopps break;
1005 1.2 chopps c |= regs->du_rba;
1006 1.2 chopps if (sc->incnt == SERIBUF_SIZE)
1007 1.2 chopps ++sc->ovfl;
1008 1.2 chopps else {
1009 1.2 chopps *sc->wptr++ = c;
1010 1.2 chopps if (sc->wptr == sc->inbuf + SERIBUF_SIZE)
1011 1.2 chopps sc->wptr = sc->inbuf;
1012 1.2 chopps ++sc->incnt;
1013 1.2 chopps if (sc->incnt > SERIBUF_SIZE - 16)
1014 1.2 chopps regs->du_btrst = 1;
1015 1.1 chopps }
1016 1.2 chopps if (c & 0x1000)
1017 1.2 chopps regs->du_cra = 0x40;
1018 1.1 chopps }
1019 1.2 chopps }
1020 1.2 chopps if (istat & 0x20) { /* channel B receive interrupt */
1021 1.10 thorpej sc = mfcs_cd.cd_devs[unit + 1];
1022 1.2 chopps while (1) {
1023 1.2 chopps c = regs->du_srb << 8;
1024 1.2 chopps if ((c & 0x0100) == 0)
1025 1.2 chopps break;
1026 1.2 chopps c |= regs->du_rbb;
1027 1.2 chopps if (sc->incnt == SERIBUF_SIZE)
1028 1.2 chopps ++sc->ovfl;
1029 1.2 chopps else {
1030 1.2 chopps *sc->wptr++ = c;
1031 1.2 chopps if (sc->wptr == sc->inbuf + SERIBUF_SIZE)
1032 1.2 chopps sc->wptr = sc->inbuf;
1033 1.2 chopps ++sc->incnt;
1034 1.2 chopps if (sc->incnt > SERIBUF_SIZE - 16)
1035 1.2 chopps regs->du_btrst = 2;
1036 1.1 chopps }
1037 1.2 chopps if (c & 0x1000)
1038 1.2 chopps regs->du_crb = 0x40;
1039 1.1 chopps }
1040 1.2 chopps }
1041 1.2 chopps if (istat & 0x01) { /* channel A transmit interrupt */
1042 1.10 thorpej sc = mfcs_cd.cd_devs[unit];
1043 1.6 chopps tp = sc->sc_tty;
1044 1.2 chopps if (sc->ptr == sc->end) {
1045 1.2 chopps tp->t_state &= ~(TS_BUSY | TS_FLUSH);
1046 1.2 chopps scc->imask &= ~0x01;
1047 1.2 chopps regs->du_imr = scc->imask;
1048 1.22 aymeric add_sicallback (tp->t_linesw ?
1049 1.21 eeh (sifunc_t)tp->t_linesw->l_start
1050 1.8 chopps : (sifunc_t)mfcsstart, tp, NULL);
1051 1.2 chopps
1052 1.1 chopps }
1053 1.2 chopps else
1054 1.2 chopps regs->du_tba = *sc->ptr++;
1055 1.2 chopps }
1056 1.2 chopps if (istat & 0x10) { /* channel B transmit interrupt */
1057 1.10 thorpej sc = mfcs_cd.cd_devs[unit + 1];
1058 1.6 chopps tp = sc->sc_tty;
1059 1.2 chopps if (sc->ptr == sc->end) {
1060 1.2 chopps tp->t_state &= ~(TS_BUSY | TS_FLUSH);
1061 1.2 chopps scc->imask &= ~0x10;
1062 1.2 chopps regs->du_imr = scc->imask;
1063 1.22 aymeric add_sicallback (tp->t_linesw ?
1064 1.21 eeh (sifunc_t)tp->t_linesw->l_start
1065 1.8 chopps : (sifunc_t)mfcsstart, tp, NULL);
1066 1.1 chopps }
1067 1.2 chopps else
1068 1.2 chopps regs->du_tbb = *sc->ptr++;
1069 1.2 chopps }
1070 1.2 chopps if (istat & 0x80) { /* input port change interrupt */
1071 1.2 chopps c = regs->du_ipcr;
1072 1.17 christos printf ("%s: ipcr %02x", scc->sc_dev.dv_xname, c);
1073 1.1 chopps }
1074 1.2 chopps return(1);
1075 1.1 chopps }
1076 1.1 chopps
1077 1.12 veego void
1078 1.1 chopps mfcsxintr(unit)
1079 1.1 chopps int unit;
1080 1.1 chopps {
1081 1.1 chopps int s1, s2, ovfl;
1082 1.10 thorpej struct mfcs_softc *sc = mfcs_cd.cd_devs[unit];
1083 1.6 chopps struct tty *tp = sc->sc_tty;
1084 1.1 chopps
1085 1.1 chopps /*
1086 1.1 chopps * Make sure we're not interrupted by another
1087 1.1 chopps * vbl, but allow level6 ints
1088 1.1 chopps */
1089 1.1 chopps s1 = spltty();
1090 1.1 chopps
1091 1.1 chopps /*
1092 1.1 chopps * pass along any acumulated information
1093 1.1 chopps * while input is not blocked
1094 1.1 chopps */
1095 1.1 chopps while (sc->incnt && (tp->t_state & TS_TBLOCK) == 0) {
1096 1.2 chopps /*
1097 1.1 chopps * no collision with ser_fastint()
1098 1.1 chopps */
1099 1.1 chopps mfcseint(unit, *sc->rptr++);
1100 1.1 chopps
1101 1.1 chopps ovfl = 0;
1102 1.1 chopps /* lock against mfcs_fastint() */
1103 1.2 chopps s2 = splser();
1104 1.1 chopps --sc->incnt;
1105 1.1 chopps if (sc->rptr == sc->inbuf + SERIBUF_SIZE)
1106 1.1 chopps sc->rptr = sc->inbuf;
1107 1.1 chopps if (sc->ovfl != 0) {
1108 1.1 chopps ovfl = sc->ovfl;
1109 1.1 chopps sc->ovfl = 0;
1110 1.1 chopps }
1111 1.1 chopps splx(s2);
1112 1.1 chopps if (ovfl != 0)
1113 1.1 chopps log(LOG_WARNING, "%s: %d buffer overflow!\n",
1114 1.1 chopps sc->sc_dev.dv_xname, ovfl);
1115 1.1 chopps }
1116 1.1 chopps if (sc->incnt == 0 && (tp->t_state & TS_TBLOCK) == 0) {
1117 1.4 chopps sc->sc_regs->du_btst = 1 << unit; /* XXXX */
1118 1.1 chopps }
1119 1.1 chopps splx(s1);
1120 1.1 chopps }
1121 1.1 chopps
1122 1.12 veego void
1123 1.1 chopps mfcseint(unit, stat)
1124 1.1 chopps int unit, stat;
1125 1.1 chopps {
1126 1.10 thorpej struct mfcs_softc *sc = mfcs_cd.cd_devs[unit];
1127 1.1 chopps struct tty *tp;
1128 1.1 chopps u_char ch;
1129 1.1 chopps int c;
1130 1.1 chopps
1131 1.6 chopps tp = sc->sc_tty;
1132 1.1 chopps ch = stat & 0xff;
1133 1.1 chopps c = ch;
1134 1.1 chopps
1135 1.1 chopps if ((tp->t_state & TS_ISOPEN) == 0) {
1136 1.1 chopps #ifdef KGDB
1137 1.1 chopps /* we don't care about parity errors */
1138 1.1 chopps if (kgdb_dev == makedev(sermajor, unit) && c == FRAME_END)
1139 1.1 chopps kgdb_connect(0); /* trap into kgdb */
1140 1.1 chopps #endif
1141 1.1 chopps return;
1142 1.1 chopps }
1143 1.1 chopps
1144 1.1 chopps /*
1145 1.1 chopps * Check for break and (if enabled) parity error.
1146 1.1 chopps */
1147 1.1 chopps if (stat & 0xc000)
1148 1.1 chopps c |= TTY_FE;
1149 1.1 chopps else if (stat & 0x2000)
1150 1.1 chopps c |= TTY_PE;
1151 1.1 chopps
1152 1.1 chopps if (stat & 0x1000)
1153 1.2 chopps log(LOG_WARNING, "%s: fifo overflow\n",
1154 1.10 thorpej ((struct mfcs_softc *)mfcs_cd.cd_devs[unit])->sc_dev.dv_xname);
1155 1.1 chopps
1156 1.22 aymeric tp->t_linesw->l_rint(c, tp);
1157 1.1 chopps }
1158 1.1 chopps
1159 1.1 chopps /*
1160 1.1 chopps * This interrupt is periodically invoked in the vertical blank
1161 1.1 chopps * interrupt. It's used to keep track of the modem control lines
1162 1.1 chopps * and (new with the fast_int code) to move accumulated data
1163 1.1 chopps * up into the tty layer.
1164 1.1 chopps */
1165 1.1 chopps void
1166 1.1 chopps mfcsmint(unit)
1167 1.1 chopps int unit;
1168 1.1 chopps {
1169 1.1 chopps struct tty *tp;
1170 1.10 thorpej struct mfcs_softc *sc = mfcs_cd.cd_devs[unit];
1171 1.1 chopps u_char stat, last, istat;
1172 1.1 chopps
1173 1.6 chopps tp = sc->sc_tty;
1174 1.1 chopps if (!tp)
1175 1.1 chopps return;
1176 1.1 chopps
1177 1.20 mhitch if ((tp->t_state & TS_ISOPEN) == 0 && tp->t_wopen == 0) {
1178 1.1 chopps sc->rptr = sc->wptr = sc->inbuf;
1179 1.1 chopps sc->incnt = 0;
1180 1.1 chopps return;
1181 1.1 chopps }
1182 1.1 chopps /*
1183 1.1 chopps * empty buffer
1184 1.1 chopps */
1185 1.1 chopps mfcsxintr(unit);
1186 1.1 chopps
1187 1.1 chopps stat = ~sc->sc_regs->du_ip;
1188 1.1 chopps last = sc->sc_mfc->last_ip;
1189 1.1 chopps sc->sc_mfc->last_ip = stat;
1190 1.1 chopps
1191 1.1 chopps /*
1192 1.1 chopps * check whether any interesting signal changed state
1193 1.1 chopps */
1194 1.1 chopps istat = stat ^ last;
1195 1.1 chopps
1196 1.1 chopps if ((istat & (0x10 << (unit & 1))) && /* CD changed */
1197 1.24.4.2 fvdl (SWFLAGS(tp->t_dev) & TIOCFLAG_SOFTCAR) == 0) {
1198 1.1 chopps if (stat & (0x10 << (unit & 1)))
1199 1.22 aymeric tp->t_linesw->l_modem(tp, 1);
1200 1.22 aymeric else if (tp->t_linesw->l_modem(tp, 0) == 0) {
1201 1.1 chopps sc->sc_regs->du_btrst = 0x0a << (unit & 1);
1202 1.1 chopps }
1203 1.1 chopps }
1204 1.1 chopps }
1205