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