dcm.c revision 1.34 1 1.34 thorpej /* $NetBSD: dcm.c,v 1.34 1996/12/17 08:41:01 thorpej Exp $ */
2 1.15 cgd
3 1.1 cgd /*
4 1.24 thorpej * Copyright (c) 1995, 1996 Jason R. Thorpe. All rights reserved.
5 1.1 cgd * Copyright (c) 1988 University of Utah.
6 1.14 mycroft * Copyright (c) 1982, 1986, 1990, 1993
7 1.14 mycroft * The Regents of the University of California. All rights reserved.
8 1.1 cgd *
9 1.1 cgd * This code is derived from software contributed to Berkeley by
10 1.1 cgd * the Systems Programming Group of the University of Utah Computer
11 1.1 cgd * Science Department.
12 1.1 cgd *
13 1.1 cgd * Redistribution and use in source and binary forms, with or without
14 1.1 cgd * modification, are permitted provided that the following conditions
15 1.1 cgd * are met:
16 1.1 cgd * 1. Redistributions of source code must retain the above copyright
17 1.1 cgd * notice, this list of conditions and the following disclaimer.
18 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
19 1.1 cgd * notice, this list of conditions and the following disclaimer in the
20 1.1 cgd * documentation and/or other materials provided with the distribution.
21 1.1 cgd * 3. All advertising materials mentioning features or use of this software
22 1.1 cgd * must display the following acknowledgement:
23 1.1 cgd * This product includes software developed by the University of
24 1.1 cgd * California, Berkeley and its contributors.
25 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
26 1.1 cgd * may be used to endorse or promote products derived from this software
27 1.1 cgd * without specific prior written permission.
28 1.1 cgd *
29 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
30 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
32 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
33 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 1.1 cgd * SUCH DAMAGE.
40 1.1 cgd *
41 1.14 mycroft * from Utah: $Hdr: dcm.c 1.29 92/01/21$
42 1.14 mycroft *
43 1.15 cgd * @(#)dcm.c 8.4 (Berkeley) 1/12/94
44 1.1 cgd */
45 1.1 cgd
46 1.1 cgd /*
47 1.1 cgd * TODO:
48 1.1 cgd * Timeouts
49 1.1 cgd * Test console support.
50 1.1 cgd */
51 1.1 cgd
52 1.1 cgd /*
53 1.1 cgd * 98642/MUX
54 1.1 cgd */
55 1.13 mycroft #include <sys/param.h>
56 1.13 mycroft #include <sys/systm.h>
57 1.13 mycroft #include <sys/ioctl.h>
58 1.13 mycroft #include <sys/proc.h>
59 1.13 mycroft #include <sys/tty.h>
60 1.13 mycroft #include <sys/conf.h>
61 1.13 mycroft #include <sys/file.h>
62 1.13 mycroft #include <sys/uio.h>
63 1.13 mycroft #include <sys/kernel.h>
64 1.13 mycroft #include <sys/syslog.h>
65 1.13 mycroft #include <sys/time.h>
66 1.34 thorpej #include <sys/device.h>
67 1.13 mycroft
68 1.24 thorpej #include <machine/autoconf.h>
69 1.14 mycroft #include <machine/cpu.h>
70 1.14 mycroft
71 1.22 thorpej #include <dev/cons.h>
72 1.22 thorpej
73 1.34 thorpej #ifndef NEWCONFIG
74 1.13 mycroft #include <hp300/dev/device.h>
75 1.34 thorpej #endif
76 1.34 thorpej
77 1.34 thorpej #include <hp300/dev/dioreg.h>
78 1.34 thorpej #include <hp300/dev/diovar.h>
79 1.34 thorpej #include <hp300/dev/diodevs.h>
80 1.13 mycroft #include <hp300/dev/dcmreg.h>
81 1.13 mycroft #include <hp300/hp300/isr.h>
82 1.1 cgd
83 1.1 cgd #ifndef DEFAULT_BAUD_RATE
84 1.1 cgd #define DEFAULT_BAUD_RATE 9600
85 1.1 cgd #endif
86 1.1 cgd
87 1.1 cgd struct speedtab dcmspeedtab[] = {
88 1.1 cgd 0, BR_0,
89 1.1 cgd 50, BR_50,
90 1.1 cgd 75, BR_75,
91 1.1 cgd 110, BR_110,
92 1.1 cgd 134, BR_134,
93 1.1 cgd 150, BR_150,
94 1.1 cgd 300, BR_300,
95 1.1 cgd 600, BR_600,
96 1.1 cgd 1200, BR_1200,
97 1.1 cgd 1800, BR_1800,
98 1.1 cgd 2400, BR_2400,
99 1.1 cgd 4800, BR_4800,
100 1.1 cgd 9600, BR_9600,
101 1.1 cgd 19200, BR_19200,
102 1.1 cgd 38400, BR_38400,
103 1.1 cgd -1, -1
104 1.1 cgd };
105 1.1 cgd
106 1.1 cgd /* u-sec per character based on baudrate (assumes 1 start/8 data/1 stop bit) */
107 1.1 cgd #define DCM_USPERCH(s) (10000000 / (s))
108 1.1 cgd
109 1.1 cgd /*
110 1.1 cgd * Per board interrupt scheme. 16.7ms is the polling interrupt rate
111 1.1 cgd * (16.7ms is about 550 baud, 38.4k is 72 chars in 16.7ms).
112 1.1 cgd */
113 1.1 cgd #define DIS_TIMER 0
114 1.1 cgd #define DIS_PERCHAR 1
115 1.1 cgd #define DIS_RESET 2
116 1.1 cgd
117 1.1 cgd int dcmistype = -1; /* -1 == dynamic, 0 == timer, 1 == perchar */
118 1.1 cgd int dcminterval = 5; /* interval (secs) between checks */
119 1.1 cgd struct dcmischeme {
120 1.1 cgd int dis_perchar; /* non-zero if interrupting per char */
121 1.1 cgd long dis_time; /* last time examined */
122 1.1 cgd int dis_intr; /* recv interrupts during last interval */
123 1.1 cgd int dis_char; /* characters read during last interval */
124 1.20 thorpej };
125 1.1 cgd
126 1.1 cgd /*
127 1.22 thorpej * Stuff for DCM console support. This could probably be done a little
128 1.22 thorpej * better.
129 1.1 cgd */
130 1.22 thorpej static struct dcmdevice *dcm_cn = NULL; /* pointer to hardware */
131 1.22 thorpej static int dcm_lastcnpri = CN_DEAD; /* XXX last priority */
132 1.22 thorpej static int dcmconsinit; /* has been initialized */
133 1.22 thorpej
134 1.1 cgd int dcmdefaultrate = DEFAULT_BAUD_RATE;
135 1.1 cgd int dcmconbrdbusy = 0;
136 1.1 cgd int dcmmajor;
137 1.1 cgd
138 1.1 cgd #ifdef KGDB
139 1.1 cgd /*
140 1.1 cgd * Kernel GDB support
141 1.1 cgd */
142 1.14 mycroft #include <machine/remote-sl.h>
143 1.1 cgd
144 1.1 cgd extern dev_t kgdb_dev;
145 1.1 cgd extern int kgdb_rate;
146 1.1 cgd extern int kgdb_debug_init;
147 1.1 cgd #endif
148 1.1 cgd
149 1.14 mycroft /* #define DCMSTATS */
150 1.1 cgd
151 1.1 cgd #ifdef DEBUG
152 1.1 cgd int dcmdebug = 0x0;
153 1.1 cgd #define DDB_SIOERR 0x01
154 1.1 cgd #define DDB_PARAM 0x02
155 1.1 cgd #define DDB_INPUT 0x04
156 1.1 cgd #define DDB_OUTPUT 0x08
157 1.1 cgd #define DDB_INTR 0x10
158 1.1 cgd #define DDB_IOCTL 0x20
159 1.1 cgd #define DDB_INTSCHM 0x40
160 1.1 cgd #define DDB_MODEM 0x80
161 1.1 cgd #define DDB_OPENCLOSE 0x100
162 1.1 cgd #endif
163 1.1 cgd
164 1.14 mycroft #ifdef DCMSTATS
165 1.1 cgd #define DCMRBSIZE 94
166 1.1 cgd #define DCMXBSIZE 24
167 1.1 cgd
168 1.1 cgd struct dcmstats {
169 1.1 cgd long xints; /* # of xmit ints */
170 1.1 cgd long xchars; /* # of xmit chars */
171 1.1 cgd long xempty; /* times outq is empty in dcmstart */
172 1.1 cgd long xrestarts; /* times completed while xmitting */
173 1.1 cgd long rints; /* # of recv ints */
174 1.1 cgd long rchars; /* # of recv chars */
175 1.1 cgd long xsilo[DCMXBSIZE+2]; /* times this many chars xmit on one int */
176 1.1 cgd long rsilo[DCMRBSIZE+2]; /* times this many chars read on one int */
177 1.20 thorpej };
178 1.1 cgd #endif
179 1.1 cgd
180 1.20 thorpej #define DCMUNIT(x) minor(x)
181 1.20 thorpej #define DCMBOARD(x) (((x) >> 2) & 0x3f)
182 1.20 thorpej #define DCMPORT(x) ((x) & 3)
183 1.1 cgd
184 1.1 cgd /*
185 1.1 cgd * Conversion from "HP DCE" to almost-normal DCE: on the 638 8-port mux,
186 1.1 cgd * the distribution panel uses "HP DCE" conventions. If requested via
187 1.1 cgd * the device flags, we swap the inputs to something closer to normal DCE,
188 1.1 cgd * allowing a straight-through cable to a DTE or a reversed cable
189 1.1 cgd * to a DCE (reversing 2-3, 4-5, 8-20 and leaving 6 unconnected;
190 1.1 cgd * this gets "DCD" on pin 20 and "CTS" on 4, but doesn't connect
191 1.1 cgd * DSR or make RTS work, though). The following gives the full
192 1.1 cgd * details of a cable from this mux panel to a modem:
193 1.1 cgd *
194 1.1 cgd * HP modem
195 1.1 cgd * name pin pin name
196 1.1 cgd * HP inputs:
197 1.1 cgd * "Rx" 2 3 Tx
198 1.1 cgd * CTS 4 5 CTS (only needed for CCTS_OFLOW)
199 1.1 cgd * DCD 20 8 DCD
200 1.1 cgd * "DSR" 9 6 DSR (unneeded)
201 1.1 cgd * RI 22 22 RI (unneeded)
202 1.1 cgd *
203 1.1 cgd * HP outputs:
204 1.1 cgd * "Tx" 3 2 Rx
205 1.1 cgd * "DTR" 6 not connected
206 1.1 cgd * "RTS" 8 20 DTR
207 1.1 cgd * "SR" 23 4 RTS (often not needed)
208 1.1 cgd */
209 1.1 cgd #define hp2dce_in(ibits) (iconv[(ibits) & 0xf])
210 1.1 cgd static char iconv[16] = {
211 1.1 cgd 0, MI_DM, MI_CTS, MI_CTS|MI_DM,
212 1.1 cgd MI_CD, MI_CD|MI_DM, MI_CD|MI_CTS, MI_CD|MI_CTS|MI_DM,
213 1.1 cgd MI_RI, MI_RI|MI_DM, MI_RI|MI_CTS, MI_RI|MI_CTS|MI_DM,
214 1.1 cgd MI_RI|MI_CD, MI_RI|MI_CD|MI_DM, MI_RI|MI_CD|MI_CTS,
215 1.1 cgd MI_RI|MI_CD|MI_CTS|MI_DM
216 1.1 cgd };
217 1.1 cgd
218 1.21 thorpej /*
219 1.21 thorpej * Note that 8-port boards appear as 2 4-port boards at consecutive
220 1.21 thorpej * select codes.
221 1.21 thorpej */
222 1.21 thorpej #define NDCMPORT 4
223 1.20 thorpej
224 1.20 thorpej struct dcm_softc {
225 1.34 thorpej struct device sc_dev; /* generic device glue */
226 1.34 thorpej #ifndef NEWCONFIG
227 1.20 thorpej struct hp_device *sc_hd; /* device info */
228 1.34 thorpej #endif
229 1.20 thorpej struct dcmdevice *sc_dcm; /* pointer to hardware */
230 1.20 thorpej struct tty *sc_tty[NDCMPORT]; /* our tty instances */
231 1.20 thorpej struct modemreg *sc_modem[NDCMPORT]; /* modem control */
232 1.20 thorpej char sc_mcndlast[NDCMPORT]; /* XXX last modem status for port */
233 1.20 thorpej short sc_softCAR; /* mask of ports with soft-carrier */
234 1.20 thorpej struct dcmischeme sc_scheme; /* interrupt scheme for board */
235 1.20 thorpej
236 1.20 thorpej /*
237 1.20 thorpej * Mask of soft-carrier bits in config flags.
238 1.20 thorpej */
239 1.20 thorpej #define DCM_SOFTCAR 0x0000000f
240 1.20 thorpej
241 1.20 thorpej int sc_flags; /* misc. configuration info */
242 1.20 thorpej
243 1.20 thorpej /*
244 1.20 thorpej * Bits for sc_flags
245 1.20 thorpej */
246 1.20 thorpej #define DCM_ACTIVE 0x00000001 /* indicates board is alive */
247 1.24 thorpej #define DCM_ISCONSOLE 0x00000002 /* indicates board is console */
248 1.20 thorpej #define DCM_STDDCE 0x00000010 /* re-map DCE to standard */
249 1.20 thorpej #define DCM_FLAGMASK (DCM_STDDCE) /* mask of valid bits in config flags */
250 1.20 thorpej
251 1.20 thorpej #ifdef DCMSTATS
252 1.20 thorpej struct dcmstats sc_stats; /* metrics gathering */
253 1.20 thorpej #endif
254 1.34 thorpej };
255 1.34 thorpej
256 1.34 thorpej #ifdef NEWCONFIG
257 1.34 thorpej int dcmmatch __P((struct device *, struct cfdata *, void *));
258 1.34 thorpej void dcmattach __P((struct device *, struct device *, void *));
259 1.34 thorpej
260 1.34 thorpej struct cfattach dcm_ca = {
261 1.34 thorpej sizeof(struct dcm_softc), dcmmatch, dcmattach
262 1.34 thorpej };
263 1.34 thorpej
264 1.34 thorpej struct cfdriver dcm_cd = {
265 1.34 thorpej NULL, "dcm", DV_TTY
266 1.34 thorpej };
267 1.34 thorpej #else /* ! NEWCONFIG */
268 1.34 thorpej int dcmmatch();
269 1.34 thorpej void dcmattach();
270 1.34 thorpej
271 1.34 thorpej struct driver dcmdriver = {
272 1.34 thorpej dcmmatch, dcmattach, "dcm",
273 1.34 thorpej };
274 1.34 thorpej
275 1.34 thorpej #include "dcm.h"
276 1.34 thorpej struct dcm_softc dcm_softc[NDCM];
277 1.34 thorpej #endif /* NEWCONFIG */
278 1.34 thorpej
279 1.34 thorpej int dcmparam();
280 1.34 thorpej void dcmstart();
281 1.20 thorpej
282 1.22 thorpej void dcminit __P((struct dcmdevice *, int, int));
283 1.23 thorpej int dcmintr __P((void *));
284 1.22 thorpej
285 1.34 thorpej int dcmselftest __P((struct dcm_softc *));
286 1.34 thorpej
287 1.34 thorpej #ifdef NEWCONFIG
288 1.34 thorpej int
289 1.34 thorpej dcmmatch(parent, match, aux)
290 1.34 thorpej struct device *parent;
291 1.34 thorpej struct cfdata *match;
292 1.34 thorpej void *aux;
293 1.34 thorpej {
294 1.34 thorpej struct dio_attach_args *da = aux;
295 1.34 thorpej
296 1.34 thorpej switch (da->da_id) {
297 1.34 thorpej case DIO_DEVICE_ID_DCM:
298 1.34 thorpej case DIO_DEVICE_ID_DCMREM:
299 1.34 thorpej return (1);
300 1.34 thorpej }
301 1.34 thorpej
302 1.34 thorpej return (0);
303 1.34 thorpej }
304 1.34 thorpej #else /* ! NEWCONFIG */
305 1.20 thorpej int
306 1.20 thorpej dcmmatch(hd)
307 1.1 cgd register struct hp_device *hd;
308 1.1 cgd {
309 1.20 thorpej struct dcm_softc *sc = &dcm_softc[hd->hp_unit];
310 1.34 thorpej struct dcmdevice *dcm = (struct dcmdevice *)hd->hp_addr;
311 1.1 cgd
312 1.1 cgd if ((dcm->dcm_rsid & 0x1f) != DCMID)
313 1.1 cgd return (0);
314 1.20 thorpej
315 1.20 thorpej sc->sc_hd = hd;
316 1.20 thorpej hd->hp_ipl = DCMIPL(dcm->dcm_ic);
317 1.20 thorpej }
318 1.34 thorpej #endif /* NEWCONFIG */
319 1.20 thorpej
320 1.34 thorpej #ifdef NEWCONFIG
321 1.34 thorpej void
322 1.34 thorpej dcmattach(parent, self, aux)
323 1.34 thorpej struct device *parent, *self;
324 1.34 thorpej void *aux;
325 1.34 thorpej {
326 1.34 thorpej struct dcm_softc *sc = (struct dcm_softc *)self;
327 1.34 thorpej struct dio_attach_args *da = aux;
328 1.34 thorpej struct dcmdevice *dcm;
329 1.34 thorpej int brd = self->dv_unit;
330 1.34 thorpej int scode = da->da_scode;
331 1.34 thorpej int i, mbits, ipl;
332 1.34 thorpej #else /* ! NEWCONFIG */
333 1.20 thorpej void
334 1.20 thorpej dcmattach(hd)
335 1.20 thorpej register struct hp_device *hd;
336 1.20 thorpej {
337 1.20 thorpej struct dcm_softc *sc = &dcm_softc[hd->hp_unit];
338 1.34 thorpej struct dcmdevice *dcm = (struct dcmdevice *)hd->hp_addr;
339 1.34 thorpej int brd = hd->hp_unit;
340 1.34 thorpej int scode = hd->hp_args->hw_sc;
341 1.34 thorpej int i, mbits, ipl = hd->hp_ipl;
342 1.34 thorpej #endif /* NEWCONFIG */
343 1.20 thorpej
344 1.34 thorpej if (scode == conscode) {
345 1.34 thorpej dcm = (struct dcmdevice *)conaddr;
346 1.24 thorpej sc->sc_flags |= DCM_ISCONSOLE;
347 1.24 thorpej
348 1.24 thorpej /*
349 1.24 thorpej * We didn't know which unit this would be during
350 1.24 thorpej * the console probe, so we have to fixup cn_dev here.
351 1.24 thorpej * Note that we always assume port 1 on the board.
352 1.24 thorpej */
353 1.24 thorpej cn_tab->cn_dev = makedev(dcmmajor, (brd << 2) | DCMCONSPORT);
354 1.34 thorpej } else {
355 1.34 thorpej #ifdef NEWCONFIG
356 1.34 thorpej dcm = (struct dcmdevice *)iomap(dio_scodetopa(da->da_scode),
357 1.34 thorpej da->da_size);
358 1.34 thorpej if (dcm == NULL) {
359 1.34 thorpej printf("\n%s: can't map registers\n",
360 1.34 thorpej sc->sc_dev.dv_xname);
361 1.34 thorpej return;
362 1.34 thorpej }
363 1.34 thorpej #endif
364 1.34 thorpej }
365 1.34 thorpej
366 1.34 thorpej sc->sc_dcm = dcm;
367 1.34 thorpej
368 1.34 thorpej #ifdef NEWCONFIG
369 1.34 thorpej ipl = DIO_IPL(dcm);
370 1.34 thorpej printf(" ipl %d", ipl);
371 1.34 thorpej #else /* ! NEWCONFIG */
372 1.34 thorpej /* XXX Set the device class. */
373 1.34 thorpej hd->hp_dev.dv_class = DV_TTY;
374 1.34 thorpej bcopy(&hd->hp_dev, &sc->sc_dev, sizeof(struct device));
375 1.34 thorpej #endif /* NEWCONFIG */
376 1.34 thorpej
377 1.34 thorpej if (dcmselftest(sc)) {
378 1.34 thorpej printf("\n%s: self-test failed\n", sc->sc_dev.dv_xname);
379 1.34 thorpej return;
380 1.24 thorpej }
381 1.20 thorpej
382 1.20 thorpej /* Extract configuration info from flags. */
383 1.34 thorpej #ifdef NEWCONFIG
384 1.34 thorpej sc->sc_softCAR = self->dv_cfdata->cf_flags & DCM_SOFTCAR;
385 1.34 thorpej sc->sc_flags = self->dv_cfdata->cf_flags & DCM_FLAGMASK;
386 1.34 thorpej #else
387 1.20 thorpej sc->sc_softCAR = (hd->hp_flags & DCM_SOFTCAR);
388 1.20 thorpej sc->sc_flags = (hd->hp_flags & DCM_FLAGMASK);
389 1.34 thorpej #endif /* NEWCONFIG */
390 1.20 thorpej
391 1.20 thorpej /* Mark our unit as configured. */
392 1.20 thorpej sc->sc_flags |= DCM_ACTIVE;
393 1.20 thorpej
394 1.20 thorpej /* Establish the interrupt handler. */
395 1.34 thorpej (void) isrlink(dcmintr, sc, ipl, ISRPRI_TTY);
396 1.20 thorpej
397 1.1 cgd if (dcmistype == DIS_TIMER)
398 1.1 cgd dcmsetischeme(brd, DIS_RESET|DIS_TIMER);
399 1.1 cgd else
400 1.1 cgd dcmsetischeme(brd, DIS_RESET|DIS_PERCHAR);
401 1.1 cgd
402 1.1 cgd /* load pointers to modem control */
403 1.20 thorpej sc->sc_modem[0] = &dcm->dcm_modem0;
404 1.20 thorpej sc->sc_modem[1] = &dcm->dcm_modem1;
405 1.20 thorpej sc->sc_modem[2] = &dcm->dcm_modem2;
406 1.20 thorpej sc->sc_modem[3] = &dcm->dcm_modem3;
407 1.20 thorpej
408 1.1 cgd /* set DCD (modem) and CTS (flow control) on all ports */
409 1.20 thorpej if (sc->sc_flags & DCM_STDDCE)
410 1.1 cgd mbits = hp2dce_in(MI_CD|MI_CTS);
411 1.1 cgd else
412 1.1 cgd mbits = MI_CD|MI_CTS;
413 1.20 thorpej
414 1.20 thorpej for (i = 0; i < NDCMPORT; i++)
415 1.20 thorpej sc->sc_modem[i]->mdmmsk = mbits;
416 1.1 cgd
417 1.1 cgd dcm->dcm_ic = IC_IE; /* turn all interrupts on */
418 1.20 thorpej
419 1.1 cgd /*
420 1.24 thorpej * Need to reset baud rate, etc. of next print so reset dcmconsinit.
421 1.1 cgd * Also make sure console is always "hardwired"
422 1.1 cgd */
423 1.24 thorpej if (sc->sc_flags & DCM_ISCONSOLE) {
424 1.1 cgd dcmconsinit = 0;
425 1.24 thorpej sc->sc_softCAR |= (1 << DCMCONSPORT);
426 1.31 christos printf(": console on port %d\n", DCMCONSPORT);
427 1.20 thorpej } else
428 1.31 christos printf("\n");
429 1.20 thorpej
430 1.20 thorpej #ifdef KGDB
431 1.20 thorpej if (major(kgdb_dev) == dcmmajor &&
432 1.20 thorpej DCMBOARD(DCMUNIT(kgdb_dev)) == brd) {
433 1.24 thorpej if (dcmconsole == DCMUNIT(kgdb_dev)) /* XXX fixme */
434 1.20 thorpej kgdb_dev = NODEV; /* can't debug over console port */
435 1.20 thorpej #ifndef KGDB_CHEAT
436 1.20 thorpej /*
437 1.20 thorpej * The following could potentially be replaced
438 1.20 thorpej * by the corresponding code in dcmcnprobe.
439 1.20 thorpej */
440 1.20 thorpej else {
441 1.22 thorpej dcminit(dcm, DCMPORT(DCMUNIT(kgdb_dev)),
442 1.22 thorpej kgdb_rate);
443 1.20 thorpej if (kgdb_debug_init) {
444 1.34 thorpej printf("%s port %d: ", sc->sc_dev.dv_xname,
445 1.20 thorpej DCMPORT(DCMUNIT(kgdb_dev)));
446 1.20 thorpej kgdb_connect(1);
447 1.20 thorpej } else
448 1.31 christos printf("%s port %d: kgdb enabled\n",
449 1.34 thorpej sc->sc_dev.dv_xname,
450 1.20 thorpej DCMPORT(DCMUNIT(kgdb_dev)));
451 1.20 thorpej }
452 1.20 thorpej /* end could be replaced */
453 1.34 thorpej #endif /* KGDB_CHEAT */
454 1.1 cgd }
455 1.34 thorpej #endif /* KGDB */
456 1.1 cgd }
457 1.1 cgd
458 1.1 cgd /* ARGSUSED */
459 1.17 mycroft int
460 1.1 cgd dcmopen(dev, flag, mode, p)
461 1.1 cgd dev_t dev;
462 1.1 cgd int flag, mode;
463 1.1 cgd struct proc *p;
464 1.1 cgd {
465 1.20 thorpej struct dcm_softc *sc;
466 1.20 thorpej struct tty *tp;
467 1.20 thorpej int unit, brd, port;
468 1.18 thorpej int error = 0, mbits, s;
469 1.1 cgd
470 1.20 thorpej unit = DCMUNIT(dev);
471 1.20 thorpej brd = DCMBOARD(unit);
472 1.20 thorpej port = DCMPORT(unit);
473 1.20 thorpej
474 1.34 thorpej #ifdef NEWCONFIG
475 1.34 thorpej if (brd >= dcm_cd.cd_ndevs || port >= NDCMPORT ||
476 1.34 thorpej (sc = dcm_cd.cd_devs[brd]) == NULL)
477 1.34 thorpej return (ENXIO);
478 1.34 thorpej #else /* ! NEWCONFIG */
479 1.20 thorpej if ((brd >= NDCM) || (port >= NDCMPORT))
480 1.1 cgd return (ENXIO);
481 1.34 thorpej sc = &dcm_softc[brd];
482 1.34 thorpej #endif /* NEWCONFIG */
483 1.20 thorpej
484 1.20 thorpej if ((sc->sc_flags & DCM_ACTIVE) == 0)
485 1.20 thorpej return (ENXIO);
486 1.20 thorpej
487 1.28 thorpej if (sc->sc_tty[port] == NULL) {
488 1.20 thorpej tp = sc->sc_tty[port] = ttymalloc();
489 1.28 thorpej tty_attach(tp);
490 1.28 thorpej } else
491 1.20 thorpej tp = sc->sc_tty[port];
492 1.20 thorpej
493 1.1 cgd tp->t_oproc = dcmstart;
494 1.1 cgd tp->t_param = dcmparam;
495 1.1 cgd tp->t_dev = dev;
496 1.18 thorpej
497 1.1 cgd if ((tp->t_state & TS_ISOPEN) == 0) {
498 1.18 thorpej /*
499 1.18 thorpej * Sanity clause: reset the card on first open.
500 1.18 thorpej * The card might be left in an inconsistent state
501 1.18 thorpej * if the card memory is read inadvertently.
502 1.18 thorpej */
503 1.22 thorpej dcminit(sc->sc_dcm, port, dcmdefaultrate);
504 1.18 thorpej
505 1.1 cgd tp->t_state |= TS_WOPEN;
506 1.1 cgd ttychars(tp);
507 1.18 thorpej tp->t_iflag = TTYDEF_IFLAG;
508 1.18 thorpej tp->t_oflag = TTYDEF_OFLAG;
509 1.18 thorpej tp->t_cflag = TTYDEF_CFLAG;
510 1.18 thorpej tp->t_lflag = TTYDEF_LFLAG;
511 1.18 thorpej tp->t_ispeed = tp->t_ospeed = TTYDEF_SPEED;
512 1.18 thorpej
513 1.18 thorpej s = spltty();
514 1.18 thorpej
515 1.1 cgd (void) dcmparam(tp, &tp->t_termios);
516 1.1 cgd ttsetwater(tp);
517 1.18 thorpej } else if (tp->t_state & TS_XCLUDE && p->p_ucred->cr_uid != 0)
518 1.1 cgd return (EBUSY);
519 1.18 thorpej else
520 1.18 thorpej s = spltty();
521 1.18 thorpej
522 1.18 thorpej /* Set modem control state. */
523 1.1 cgd mbits = MO_ON;
524 1.20 thorpej if (sc->sc_flags & DCM_STDDCE)
525 1.1 cgd mbits |= MO_SR; /* pin 23, could be used as RTS */
526 1.20 thorpej
527 1.1 cgd (void) dcmmctl(dev, mbits, DMSET); /* enable port */
528 1.18 thorpej
529 1.18 thorpej /* Set soft-carrier if so configured. */
530 1.20 thorpej if ((sc->sc_softCAR & (1 << port)) ||
531 1.1 cgd (dcmmctl(dev, MO_OFF, DMGET) & MI_CD))
532 1.1 cgd tp->t_state |= TS_CARR_ON;
533 1.18 thorpej
534 1.1 cgd #ifdef DEBUG
535 1.1 cgd if (dcmdebug & DDB_MODEM)
536 1.31 christos printf("%s: dcmopen port %d softcarr %c\n",
537 1.34 thorpej sc->sc_dev.dv_xname, port,
538 1.20 thorpej (tp->t_state & TS_CARR_ON) ? '1' : '0');
539 1.1 cgd #endif
540 1.18 thorpej
541 1.18 thorpej /* Wait for carrier if necessary. */
542 1.18 thorpej if ((flag & O_NONBLOCK) == 0)
543 1.18 thorpej while ((tp->t_cflag & CLOCAL) == 0 &&
544 1.18 thorpej (tp->t_state & TS_CARR_ON) == 0) {
545 1.18 thorpej tp->t_state |= TS_WOPEN;
546 1.18 thorpej error = ttysleep(tp, (caddr_t)&tp->t_rawq,
547 1.18 thorpej TTIPRI | PCATCH, ttopen, 0);
548 1.18 thorpej if (error) {
549 1.18 thorpej splx(s);
550 1.18 thorpej return (error);
551 1.18 thorpej }
552 1.18 thorpej }
553 1.18 thorpej
554 1.18 thorpej splx(s);
555 1.1 cgd
556 1.1 cgd #ifdef DEBUG
557 1.1 cgd if (dcmdebug & DDB_OPENCLOSE)
558 1.31 christos printf("%s port %d: dcmopen: st %x fl %x\n",
559 1.34 thorpej sc->sc_dev.dv_xname, port, tp->t_state, tp->t_flags);
560 1.1 cgd #endif
561 1.1 cgd if (error == 0)
562 1.1 cgd error = (*linesw[tp->t_line].l_open)(dev, tp);
563 1.18 thorpej
564 1.1 cgd return (error);
565 1.1 cgd }
566 1.1 cgd
567 1.1 cgd /*ARGSUSED*/
568 1.17 mycroft int
569 1.1 cgd dcmclose(dev, flag, mode, p)
570 1.1 cgd dev_t dev;
571 1.1 cgd int flag, mode;
572 1.1 cgd struct proc *p;
573 1.1 cgd {
574 1.20 thorpej int s, unit, board, port;
575 1.20 thorpej struct dcm_softc *sc;
576 1.20 thorpej struct tty *tp;
577 1.1 cgd
578 1.20 thorpej unit = DCMUNIT(dev);
579 1.20 thorpej board = DCMBOARD(unit);
580 1.20 thorpej port = DCMPORT(unit);
581 1.20 thorpej
582 1.34 thorpej #ifdef NEWCONFIG
583 1.34 thorpej sc = dcm_cd.cd_devs[board];
584 1.34 thorpej #else
585 1.20 thorpej sc = &dcm_softc[board];
586 1.34 thorpej #endif
587 1.20 thorpej tp = sc->sc_tty[port];
588 1.20 thorpej
589 1.1 cgd (*linesw[tp->t_line].l_close)(tp, flag);
590 1.18 thorpej
591 1.18 thorpej s = spltty();
592 1.18 thorpej
593 1.18 thorpej if (tp->t_cflag & HUPCL || tp->t_state & TS_WOPEN ||
594 1.18 thorpej (tp->t_state & TS_ISOPEN) == 0)
595 1.1 cgd (void) dcmmctl(dev, MO_OFF, DMSET);
596 1.1 cgd #ifdef DEBUG
597 1.1 cgd if (dcmdebug & DDB_OPENCLOSE)
598 1.31 christos printf("%s port %d: dcmclose: st %x fl %x\n",
599 1.34 thorpej sc->sc_dev.dv_xname, port, tp->t_state, tp->t_flags);
600 1.1 cgd #endif
601 1.18 thorpej splx(s);
602 1.1 cgd ttyclose(tp);
603 1.12 mycroft #if 0
604 1.28 thorpej tty_detach(tp);
605 1.7 mycroft ttyfree(tp);
606 1.20 thorpej sc->sc_tty[port] == NULL;
607 1.12 mycroft #endif
608 1.1 cgd return (0);
609 1.1 cgd }
610 1.1 cgd
611 1.17 mycroft int
612 1.1 cgd dcmread(dev, uio, flag)
613 1.1 cgd dev_t dev;
614 1.1 cgd struct uio *uio;
615 1.14 mycroft int flag;
616 1.1 cgd {
617 1.20 thorpej int unit, board, port;
618 1.20 thorpej struct dcm_softc *sc;
619 1.20 thorpej register struct tty *tp;
620 1.20 thorpej
621 1.20 thorpej unit = DCMUNIT(dev);
622 1.20 thorpej board = DCMBOARD(unit);
623 1.20 thorpej port = DCMPORT(unit);
624 1.20 thorpej
625 1.34 thorpej #ifdef NEWCONFIG
626 1.34 thorpej sc = dcm_cd.cd_devs[board];
627 1.34 thorpej #else
628 1.20 thorpej sc = &dcm_softc[board];
629 1.34 thorpej #endif
630 1.20 thorpej tp = sc->sc_tty[port];
631 1.14 mycroft
632 1.1 cgd return ((*linesw[tp->t_line].l_read)(tp, uio, flag));
633 1.1 cgd }
634 1.1 cgd
635 1.17 mycroft int
636 1.1 cgd dcmwrite(dev, uio, flag)
637 1.1 cgd dev_t dev;
638 1.1 cgd struct uio *uio;
639 1.14 mycroft int flag;
640 1.1 cgd {
641 1.20 thorpej int unit, board, port;
642 1.20 thorpej struct dcm_softc *sc;
643 1.20 thorpej register struct tty *tp;
644 1.20 thorpej
645 1.20 thorpej unit = DCMUNIT(dev);
646 1.20 thorpej board = DCMBOARD(unit);
647 1.20 thorpej port = DCMPORT(unit);
648 1.20 thorpej
649 1.34 thorpej #ifdef NEWCONFIG
650 1.34 thorpej sc = dcm_cd.cd_devs[board];
651 1.34 thorpej #else
652 1.20 thorpej sc = &dcm_softc[board];
653 1.34 thorpej #endif
654 1.20 thorpej tp = sc->sc_tty[port];
655 1.14 mycroft
656 1.1 cgd return ((*linesw[tp->t_line].l_write)(tp, uio, flag));
657 1.1 cgd }
658 1.17 mycroft
659 1.17 mycroft struct tty *
660 1.17 mycroft dcmtty(dev)
661 1.17 mycroft dev_t dev;
662 1.17 mycroft {
663 1.20 thorpej int unit, board, port;
664 1.20 thorpej struct dcm_softc *sc;
665 1.17 mycroft
666 1.20 thorpej unit = DCMUNIT(dev);
667 1.20 thorpej board = DCMBOARD(unit);
668 1.20 thorpej port = DCMPORT(unit);
669 1.20 thorpej
670 1.34 thorpej #ifdef NEWCONFIG
671 1.34 thorpej sc = dcm_cd.cd_devs[board];
672 1.34 thorpej #else
673 1.20 thorpej sc = &dcm_softc[board];
674 1.34 thorpej #endif
675 1.20 thorpej
676 1.20 thorpej return (sc->sc_tty[port]);
677 1.17 mycroft }
678 1.1 cgd
679 1.17 mycroft int
680 1.23 thorpej dcmintr(arg)
681 1.23 thorpej void *arg;
682 1.1 cgd {
683 1.23 thorpej struct dcm_softc *sc = arg;
684 1.20 thorpej struct dcmdevice *dcm = sc->sc_dcm;
685 1.20 thorpej struct dcmischeme *dis = &sc->sc_scheme;
686 1.34 thorpej int brd = sc->sc_dev.dv_unit;
687 1.20 thorpej int code, i;
688 1.1 cgd int pcnd[4], mcode, mcnd[4];
689 1.1 cgd
690 1.1 cgd /*
691 1.1 cgd * Do all guarded register accesses right off to minimize
692 1.1 cgd * block out of hardware.
693 1.1 cgd */
694 1.1 cgd SEM_LOCK(dcm);
695 1.1 cgd if ((dcm->dcm_ic & IC_IR) == 0) {
696 1.1 cgd SEM_UNLOCK(dcm);
697 1.1 cgd return (0);
698 1.1 cgd }
699 1.1 cgd for (i = 0; i < 4; i++) {
700 1.1 cgd pcnd[i] = dcm->dcm_icrtab[i].dcm_data;
701 1.1 cgd dcm->dcm_icrtab[i].dcm_data = 0;
702 1.20 thorpej code = sc->sc_modem[i]->mdmin;
703 1.20 thorpej if (sc->sc_flags & DCM_STDDCE)
704 1.1 cgd code = hp2dce_in(code);
705 1.1 cgd mcnd[i] = code;
706 1.1 cgd }
707 1.1 cgd code = dcm->dcm_iir & IIR_MASK;
708 1.1 cgd dcm->dcm_iir = 0; /* XXX doc claims read clears interrupt?! */
709 1.1 cgd mcode = dcm->dcm_modemintr;
710 1.1 cgd dcm->dcm_modemintr = 0;
711 1.1 cgd SEM_UNLOCK(dcm);
712 1.1 cgd
713 1.1 cgd #ifdef DEBUG
714 1.1 cgd if (dcmdebug & DDB_INTR) {
715 1.31 christos printf("%s: dcmintr: iir %x pc %x/%x/%x/%x ",
716 1.34 thorpej sc->sc_dev.dv_xname, code, pcnd[0], pcnd[1],
717 1.20 thorpej pcnd[2], pcnd[3]);
718 1.31 christos printf("miir %x mc %x/%x/%x/%x\n",
719 1.1 cgd mcode, mcnd[0], mcnd[1], mcnd[2], mcnd[3]);
720 1.1 cgd }
721 1.1 cgd #endif
722 1.1 cgd if (code & IIR_TIMEO)
723 1.20 thorpej dcmrint(sc);
724 1.1 cgd if (code & IIR_PORT0)
725 1.20 thorpej dcmpint(sc, 0, pcnd[0]);
726 1.1 cgd if (code & IIR_PORT1)
727 1.20 thorpej dcmpint(sc, 1, pcnd[1]);
728 1.1 cgd if (code & IIR_PORT2)
729 1.20 thorpej dcmpint(sc, 2, pcnd[2]);
730 1.1 cgd if (code & IIR_PORT3)
731 1.20 thorpej dcmpint(sc, 3, pcnd[3]);
732 1.1 cgd if (code & IIR_MODM) {
733 1.1 cgd if (mcode == 0 || mcode & 0x1) /* mcode==0 -> 98642 board */
734 1.20 thorpej dcmmint(sc, 0, mcnd[0]);
735 1.1 cgd if (mcode & 0x2)
736 1.20 thorpej dcmmint(sc, 1, mcnd[1]);
737 1.1 cgd if (mcode & 0x4)
738 1.20 thorpej dcmmint(sc, 2, mcnd[2]);
739 1.1 cgd if (mcode & 0x8)
740 1.20 thorpej dcmmint(sc, 3, mcnd[3]);
741 1.1 cgd }
742 1.1 cgd
743 1.1 cgd /*
744 1.1 cgd * Chalk up a receiver interrupt if the timer running or one of
745 1.1 cgd * the ports reports a special character interrupt.
746 1.1 cgd */
747 1.1 cgd if ((code & IIR_TIMEO) ||
748 1.1 cgd ((pcnd[0]|pcnd[1]|pcnd[2]|pcnd[3]) & IT_SPEC))
749 1.1 cgd dis->dis_intr++;
750 1.1 cgd /*
751 1.1 cgd * See if it is time to check/change the interrupt rate.
752 1.1 cgd */
753 1.1 cgd if (dcmistype < 0 &&
754 1.1 cgd (i = time.tv_sec - dis->dis_time) >= dcminterval) {
755 1.1 cgd /*
756 1.1 cgd * If currently per-character and averaged over 70 interrupts
757 1.1 cgd * per-second (66 is threshold of 600 baud) in last interval,
758 1.1 cgd * switch to timer mode.
759 1.1 cgd *
760 1.1 cgd * XXX decay counts ala load average to avoid spikes?
761 1.1 cgd */
762 1.1 cgd if (dis->dis_perchar && dis->dis_intr > 70 * i)
763 1.1 cgd dcmsetischeme(brd, DIS_TIMER);
764 1.1 cgd /*
765 1.1 cgd * If currently using timer and had more interrupts than
766 1.1 cgd * received characters in the last interval, switch back
767 1.1 cgd * to per-character. Note that after changing to per-char
768 1.1 cgd * we must process any characters already in the queue
769 1.1 cgd * since they may have arrived before the bitmap was setup.
770 1.1 cgd *
771 1.1 cgd * XXX decay counts?
772 1.1 cgd */
773 1.1 cgd else if (!dis->dis_perchar && dis->dis_intr > dis->dis_char) {
774 1.1 cgd dcmsetischeme(brd, DIS_PERCHAR);
775 1.20 thorpej dcmrint(sc);
776 1.1 cgd }
777 1.1 cgd dis->dis_intr = dis->dis_char = 0;
778 1.1 cgd dis->dis_time = time.tv_sec;
779 1.1 cgd }
780 1.1 cgd return (1);
781 1.1 cgd }
782 1.1 cgd
783 1.1 cgd /*
784 1.1 cgd * Port interrupt. Can be two things:
785 1.1 cgd * First, it might be a special character (exception interrupt);
786 1.1 cgd * Second, it may be a buffer empty (transmit interrupt);
787 1.1 cgd */
788 1.20 thorpej dcmpint(sc, port, code)
789 1.20 thorpej struct dcm_softc *sc;
790 1.20 thorpej int port, code;
791 1.1 cgd {
792 1.1 cgd
793 1.1 cgd if (code & IT_SPEC)
794 1.20 thorpej dcmreadbuf(sc, port);
795 1.1 cgd if (code & IT_TX)
796 1.20 thorpej dcmxint(sc, port);
797 1.1 cgd }
798 1.1 cgd
799 1.20 thorpej dcmrint(sc)
800 1.20 thorpej struct dcm_softc *sc;
801 1.1 cgd {
802 1.20 thorpej int port;
803 1.1 cgd
804 1.20 thorpej for (port = 0; port < NDCMPORT; port++)
805 1.20 thorpej dcmreadbuf(sc, port);
806 1.1 cgd }
807 1.1 cgd
808 1.20 thorpej dcmreadbuf(sc, port)
809 1.20 thorpej struct dcm_softc *sc;
810 1.20 thorpej int port;
811 1.1 cgd {
812 1.20 thorpej struct dcmdevice *dcm = sc->sc_dcm;
813 1.20 thorpej struct tty *tp = sc->sc_tty[port];
814 1.20 thorpej struct dcmpreg *pp = dcm_preg(dcm, port);
815 1.20 thorpej struct dcmrfifo *fifo;
816 1.20 thorpej int c, stat;
817 1.20 thorpej u_int head;
818 1.1 cgd int nch = 0;
819 1.14 mycroft #ifdef DCMSTATS
820 1.20 thorpej struct dcmstats *dsp = &sc->sc_stats;
821 1.1 cgd
822 1.1 cgd dsp->rints++;
823 1.1 cgd #endif
824 1.1 cgd if ((tp->t_state & TS_ISOPEN) == 0) {
825 1.1 cgd #ifdef KGDB
826 1.20 thorpej if ((makedev(dcmmajor, minor(tp->t_dev)) == kgdb_dev) &&
827 1.1 cgd (head = pp->r_head & RX_MASK) != (pp->r_tail & RX_MASK) &&
828 1.14 mycroft dcm->dcm_rfifos[3-port][head>>1].data_char == FRAME_START) {
829 1.1 cgd pp->r_head = (head + 2) & RX_MASK;
830 1.1 cgd kgdb_connect(0); /* trap into kgdb */
831 1.1 cgd return;
832 1.1 cgd }
833 1.1 cgd #endif /* KGDB */
834 1.1 cgd pp->r_head = pp->r_tail & RX_MASK;
835 1.1 cgd return;
836 1.1 cgd }
837 1.1 cgd
838 1.1 cgd head = pp->r_head & RX_MASK;
839 1.1 cgd fifo = &dcm->dcm_rfifos[3-port][head>>1];
840 1.1 cgd /*
841 1.1 cgd * XXX upper bound on how many chars we will take in one swallow?
842 1.1 cgd */
843 1.1 cgd while (head != (pp->r_tail & RX_MASK)) {
844 1.1 cgd /*
845 1.1 cgd * Get character/status and update head pointer as fast
846 1.1 cgd * as possible to make room for more characters.
847 1.1 cgd */
848 1.1 cgd c = fifo->data_char;
849 1.1 cgd stat = fifo->data_stat;
850 1.1 cgd head = (head + 2) & RX_MASK;
851 1.1 cgd pp->r_head = head;
852 1.1 cgd fifo = head ? fifo+1 : &dcm->dcm_rfifos[3-port][0];
853 1.1 cgd nch++;
854 1.1 cgd
855 1.1 cgd #ifdef DEBUG
856 1.1 cgd if (dcmdebug & DDB_INPUT)
857 1.31 christos printf("%s port %d: dcmreadbuf: c%x('%c') s%x f%x h%x t%x\n",
858 1.34 thorpej sc->sc_dev.dv_xname, port,
859 1.20 thorpej c&0xFF, c, stat&0xFF,
860 1.1 cgd tp->t_flags, head, pp->r_tail);
861 1.1 cgd #endif
862 1.1 cgd /*
863 1.1 cgd * Check for and handle errors
864 1.1 cgd */
865 1.1 cgd if (stat & RD_MASK) {
866 1.1 cgd #ifdef DEBUG
867 1.1 cgd if (dcmdebug & (DDB_INPUT|DDB_SIOERR))
868 1.31 christos printf("%s port %d: dcmreadbuf: err: c%x('%c') s%x\n",
869 1.34 thorpej sc->sc_dev.dv_xname, port,
870 1.20 thorpej stat, c&0xFF, c);
871 1.1 cgd #endif
872 1.1 cgd if (stat & (RD_BD | RD_FE))
873 1.1 cgd c |= TTY_FE;
874 1.1 cgd else if (stat & RD_PE)
875 1.1 cgd c |= TTY_PE;
876 1.1 cgd else if (stat & RD_OVF)
877 1.1 cgd log(LOG_WARNING,
878 1.20 thorpej "%s port %d: silo overflow\n",
879 1.34 thorpej sc->sc_dev.dv_xname, port);
880 1.1 cgd else if (stat & RD_OE)
881 1.1 cgd log(LOG_WARNING,
882 1.20 thorpej "%s port %d: uart overflow\n",
883 1.34 thorpej sc->sc_dev.dv_xname, port);
884 1.1 cgd }
885 1.1 cgd (*linesw[tp->t_line].l_rint)(c, tp);
886 1.1 cgd }
887 1.20 thorpej sc->sc_scheme.dis_char += nch;
888 1.20 thorpej
889 1.14 mycroft #ifdef DCMSTATS
890 1.1 cgd dsp->rchars += nch;
891 1.1 cgd if (nch <= DCMRBSIZE)
892 1.1 cgd dsp->rsilo[nch]++;
893 1.1 cgd else
894 1.1 cgd dsp->rsilo[DCMRBSIZE+1]++;
895 1.1 cgd #endif
896 1.1 cgd }
897 1.1 cgd
898 1.20 thorpej dcmxint(sc, port)
899 1.20 thorpej struct dcm_softc *sc;
900 1.20 thorpej int port;
901 1.1 cgd {
902 1.20 thorpej struct tty *tp = sc->sc_tty[port];
903 1.20 thorpej
904 1.1 cgd tp->t_state &= ~TS_BUSY;
905 1.1 cgd if (tp->t_state & TS_FLUSH)
906 1.1 cgd tp->t_state &= ~TS_FLUSH;
907 1.1 cgd (*linesw[tp->t_line].l_start)(tp);
908 1.1 cgd }
909 1.1 cgd
910 1.20 thorpej dcmmint(sc, port, mcnd)
911 1.20 thorpej struct dcm_softc *sc;
912 1.20 thorpej int port, mcnd;
913 1.1 cgd {
914 1.1 cgd int delta;
915 1.20 thorpej struct tty *tp;
916 1.20 thorpej struct dcmdevice *dcm = sc->sc_dcm;
917 1.20 thorpej
918 1.20 thorpej tp = sc->sc_tty[port];
919 1.1 cgd
920 1.1 cgd #ifdef DEBUG
921 1.1 cgd if (dcmdebug & DDB_MODEM)
922 1.31 christos printf("%s port %d: dcmmint: mcnd %x mcndlast %x\n",
923 1.34 thorpej sc->sc_dev.dv_xname, port, mcnd, sc->sc_mcndlast[port]);
924 1.1 cgd #endif
925 1.20 thorpej delta = mcnd ^ sc->sc_mcndlast[port];
926 1.20 thorpej sc->sc_mcndlast[port] = mcnd;
927 1.1 cgd if ((delta & MI_CTS) && (tp->t_state & TS_ISOPEN) &&
928 1.1 cgd (tp->t_flags & CCTS_OFLOW)) {
929 1.1 cgd if (mcnd & MI_CTS) {
930 1.1 cgd tp->t_state &= ~TS_TTSTOP;
931 1.1 cgd ttstart(tp);
932 1.1 cgd } else
933 1.1 cgd tp->t_state |= TS_TTSTOP; /* inline dcmstop */
934 1.1 cgd }
935 1.1 cgd if (delta & MI_CD) {
936 1.1 cgd if (mcnd & MI_CD)
937 1.1 cgd (void)(*linesw[tp->t_line].l_modem)(tp, 1);
938 1.20 thorpej else if ((sc->sc_softCAR & (1 << port)) == 0 &&
939 1.1 cgd (*linesw[tp->t_line].l_modem)(tp, 0) == 0) {
940 1.20 thorpej sc->sc_modem[port]->mdmout = MO_OFF;
941 1.1 cgd SEM_LOCK(dcm);
942 1.20 thorpej dcm->dcm_modemchng |= (1 << port);
943 1.1 cgd dcm->dcm_cr |= CR_MODM;
944 1.1 cgd SEM_UNLOCK(dcm);
945 1.1 cgd DELAY(10); /* time to change lines */
946 1.1 cgd }
947 1.1 cgd }
948 1.1 cgd }
949 1.1 cgd
950 1.17 mycroft int
951 1.13 mycroft dcmioctl(dev, cmd, data, flag, p)
952 1.1 cgd dev_t dev;
953 1.13 mycroft int cmd;
954 1.1 cgd caddr_t data;
955 1.13 mycroft int flag;
956 1.13 mycroft struct proc *p;
957 1.1 cgd {
958 1.20 thorpej struct dcm_softc *sc;
959 1.20 thorpej struct tty *tp;
960 1.20 thorpej struct dcmdevice *dcm;
961 1.20 thorpej int board, port, unit = DCMUNIT(dev);
962 1.1 cgd int error, s;
963 1.20 thorpej
964 1.20 thorpej port = DCMPORT(unit);
965 1.20 thorpej board = DCMBOARD(unit);
966 1.20 thorpej
967 1.34 thorpej #ifdef NEWCONFIG
968 1.34 thorpej sc = dcm_cd.cd_devs[board];
969 1.34 thorpej #else
970 1.20 thorpej sc = &dcm_softc[board];
971 1.34 thorpej #endif
972 1.20 thorpej dcm = sc->sc_dcm;
973 1.20 thorpej tp = sc->sc_tty[port];
974 1.1 cgd
975 1.1 cgd #ifdef DEBUG
976 1.1 cgd if (dcmdebug & DDB_IOCTL)
977 1.31 christos printf("%s port %d: dcmioctl: cmd %x data %x flag %x\n",
978 1.34 thorpej sc->sc_dev.dv_xname, port, cmd, *data, flag);
979 1.1 cgd #endif
980 1.13 mycroft error = (*linesw[tp->t_line].l_ioctl)(tp, cmd, data, flag, p);
981 1.1 cgd if (error >= 0)
982 1.1 cgd return (error);
983 1.13 mycroft error = ttioctl(tp, cmd, data, flag, p);
984 1.1 cgd if (error >= 0)
985 1.1 cgd return (error);
986 1.1 cgd
987 1.1 cgd switch (cmd) {
988 1.1 cgd case TIOCSBRK:
989 1.1 cgd /*
990 1.1 cgd * Wait for transmitter buffer to empty
991 1.1 cgd */
992 1.1 cgd s = spltty();
993 1.1 cgd while (dcm->dcm_thead[port].ptr != dcm->dcm_ttail[port].ptr)
994 1.1 cgd DELAY(DCM_USPERCH(tp->t_ospeed));
995 1.1 cgd SEM_LOCK(dcm);
996 1.1 cgd dcm->dcm_cmdtab[port].dcm_data |= CT_BRK;
997 1.1 cgd dcm->dcm_cr |= (1 << port); /* start break */
998 1.1 cgd SEM_UNLOCK(dcm);
999 1.1 cgd splx(s);
1000 1.1 cgd break;
1001 1.1 cgd
1002 1.1 cgd case TIOCCBRK:
1003 1.1 cgd SEM_LOCK(dcm);
1004 1.1 cgd dcm->dcm_cmdtab[port].dcm_data |= CT_BRK;
1005 1.1 cgd dcm->dcm_cr |= (1 << port); /* end break */
1006 1.1 cgd SEM_UNLOCK(dcm);
1007 1.1 cgd break;
1008 1.1 cgd
1009 1.1 cgd case TIOCSDTR:
1010 1.1 cgd (void) dcmmctl(dev, MO_ON, DMBIS);
1011 1.1 cgd break;
1012 1.1 cgd
1013 1.1 cgd case TIOCCDTR:
1014 1.1 cgd (void) dcmmctl(dev, MO_ON, DMBIC);
1015 1.1 cgd break;
1016 1.1 cgd
1017 1.1 cgd case TIOCMSET:
1018 1.1 cgd (void) dcmmctl(dev, *(int *)data, DMSET);
1019 1.1 cgd break;
1020 1.1 cgd
1021 1.1 cgd case TIOCMBIS:
1022 1.1 cgd (void) dcmmctl(dev, *(int *)data, DMBIS);
1023 1.1 cgd break;
1024 1.1 cgd
1025 1.1 cgd case TIOCMBIC:
1026 1.1 cgd (void) dcmmctl(dev, *(int *)data, DMBIC);
1027 1.1 cgd break;
1028 1.1 cgd
1029 1.1 cgd case TIOCMGET:
1030 1.1 cgd *(int *)data = dcmmctl(dev, 0, DMGET);
1031 1.1 cgd break;
1032 1.18 thorpej
1033 1.18 thorpej case TIOCGFLAGS: {
1034 1.18 thorpej int bits = 0;
1035 1.18 thorpej
1036 1.20 thorpej if ((sc->sc_softCAR & (1 << port)))
1037 1.18 thorpej bits |= TIOCFLAG_SOFTCAR;
1038 1.18 thorpej
1039 1.18 thorpej if (tp->t_cflag & CLOCAL)
1040 1.18 thorpej bits |= TIOCFLAG_CLOCAL;
1041 1.18 thorpej
1042 1.18 thorpej *(int *)data = bits;
1043 1.18 thorpej break;
1044 1.18 thorpej }
1045 1.18 thorpej
1046 1.18 thorpej case TIOCSFLAGS: {
1047 1.18 thorpej int userbits;
1048 1.18 thorpej
1049 1.18 thorpej error = suser(p->p_ucred, &p->p_acflag);
1050 1.18 thorpej if (error)
1051 1.18 thorpej return (EPERM);
1052 1.18 thorpej
1053 1.18 thorpej userbits = *(int *)data;
1054 1.18 thorpej
1055 1.18 thorpej if ((userbits & TIOCFLAG_SOFTCAR) ||
1056 1.24 thorpej ((sc->sc_flags & DCM_ISCONSOLE) &&
1057 1.24 thorpej (port == DCMCONSPORT)))
1058 1.20 thorpej sc->sc_softCAR |= (1 << port);
1059 1.18 thorpej
1060 1.18 thorpej if (userbits & TIOCFLAG_CLOCAL)
1061 1.18 thorpej tp->t_cflag |= CLOCAL;
1062 1.18 thorpej
1063 1.18 thorpej break;
1064 1.18 thorpej }
1065 1.1 cgd
1066 1.1 cgd default:
1067 1.1 cgd return (ENOTTY);
1068 1.1 cgd }
1069 1.1 cgd return (0);
1070 1.1 cgd }
1071 1.1 cgd
1072 1.17 mycroft int
1073 1.1 cgd dcmparam(tp, t)
1074 1.1 cgd register struct tty *tp;
1075 1.1 cgd register struct termios *t;
1076 1.1 cgd {
1077 1.20 thorpej struct dcm_softc *sc;
1078 1.20 thorpej struct dcmdevice *dcm;
1079 1.20 thorpej int unit, board, port, mode, cflag = t->c_cflag;
1080 1.1 cgd int ospeed = ttspeedtab(t->c_ospeed, dcmspeedtab);
1081 1.1 cgd
1082 1.20 thorpej unit = DCMUNIT(tp->t_dev);
1083 1.20 thorpej board = DCMBOARD(unit);
1084 1.20 thorpej port = DCMPORT(unit);
1085 1.20 thorpej
1086 1.34 thorpej #ifdef NEWCONFIG
1087 1.34 thorpej sc = dcm_cd.cd_devs[board];
1088 1.34 thorpej #else
1089 1.20 thorpej sc = &dcm_softc[board];
1090 1.34 thorpej #endif
1091 1.20 thorpej dcm = sc->sc_dcm;
1092 1.20 thorpej
1093 1.1 cgd /* check requested parameters */
1094 1.1 cgd if (ospeed < 0 || (t->c_ispeed && t->c_ispeed != t->c_ospeed))
1095 1.1 cgd return (EINVAL);
1096 1.1 cgd /* and copy to tty */
1097 1.1 cgd tp->t_ispeed = t->c_ispeed;
1098 1.1 cgd tp->t_ospeed = t->c_ospeed;
1099 1.1 cgd tp->t_cflag = cflag;
1100 1.1 cgd if (ospeed == 0) {
1101 1.20 thorpej (void) dcmmctl(DCMUNIT(tp->t_dev), MO_OFF, DMSET);
1102 1.1 cgd return (0);
1103 1.1 cgd }
1104 1.1 cgd
1105 1.1 cgd mode = 0;
1106 1.1 cgd switch (cflag&CSIZE) {
1107 1.1 cgd case CS5:
1108 1.1 cgd mode = LC_5BITS; break;
1109 1.1 cgd case CS6:
1110 1.1 cgd mode = LC_6BITS; break;
1111 1.1 cgd case CS7:
1112 1.1 cgd mode = LC_7BITS; break;
1113 1.1 cgd case CS8:
1114 1.1 cgd mode = LC_8BITS; break;
1115 1.1 cgd }
1116 1.1 cgd if (cflag&PARENB) {
1117 1.1 cgd if (cflag&PARODD)
1118 1.1 cgd mode |= LC_PODD;
1119 1.1 cgd else
1120 1.1 cgd mode |= LC_PEVEN;
1121 1.1 cgd }
1122 1.1 cgd if (cflag&CSTOPB)
1123 1.1 cgd mode |= LC_2STOP;
1124 1.1 cgd else
1125 1.1 cgd mode |= LC_1STOP;
1126 1.1 cgd #ifdef DEBUG
1127 1.1 cgd if (dcmdebug & DDB_PARAM)
1128 1.31 christos printf("%s port %d: dcmparam: cflag %x mode %x speed %d uperch %d\n",
1129 1.34 thorpej sc->sc_dev.dv_xname, port, cflag, mode, tp->t_ospeed,
1130 1.1 cgd DCM_USPERCH(tp->t_ospeed));
1131 1.1 cgd #endif
1132 1.1 cgd
1133 1.1 cgd /*
1134 1.1 cgd * Wait for transmitter buffer to empty.
1135 1.1 cgd */
1136 1.1 cgd while (dcm->dcm_thead[port].ptr != dcm->dcm_ttail[port].ptr)
1137 1.1 cgd DELAY(DCM_USPERCH(tp->t_ospeed));
1138 1.1 cgd /*
1139 1.1 cgd * Make changes known to hardware.
1140 1.1 cgd */
1141 1.1 cgd dcm->dcm_data[port].dcm_baud = ospeed;
1142 1.1 cgd dcm->dcm_data[port].dcm_conf = mode;
1143 1.1 cgd SEM_LOCK(dcm);
1144 1.1 cgd dcm->dcm_cmdtab[port].dcm_data |= CT_CON;
1145 1.1 cgd dcm->dcm_cr |= (1 << port);
1146 1.1 cgd SEM_UNLOCK(dcm);
1147 1.1 cgd /*
1148 1.1 cgd * Delay for config change to take place. Weighted by baud.
1149 1.1 cgd * XXX why do we do this?
1150 1.1 cgd */
1151 1.1 cgd DELAY(16 * DCM_USPERCH(tp->t_ospeed));
1152 1.1 cgd return (0);
1153 1.1 cgd }
1154 1.1 cgd
1155 1.9 deraadt void
1156 1.1 cgd dcmstart(tp)
1157 1.1 cgd register struct tty *tp;
1158 1.1 cgd {
1159 1.20 thorpej struct dcm_softc *sc;
1160 1.20 thorpej struct dcmdevice *dcm;
1161 1.20 thorpej struct dcmpreg *pp;
1162 1.20 thorpej struct dcmtfifo *fifo;
1163 1.20 thorpej char *bp;
1164 1.20 thorpej u_int head, tail, next;
1165 1.20 thorpej int unit, board, port, nch;
1166 1.1 cgd char buf[16];
1167 1.1 cgd int s;
1168 1.14 mycroft #ifdef DCMSTATS
1169 1.20 thorpej struct dcmstats *dsp = &sc->sc_stats;
1170 1.1 cgd int tch = 0;
1171 1.1 cgd #endif
1172 1.1 cgd
1173 1.20 thorpej unit = DCMUNIT(tp->t_dev);
1174 1.20 thorpej board = DCMBOARD(unit);
1175 1.20 thorpej port = DCMPORT(unit);
1176 1.20 thorpej
1177 1.34 thorpej #ifdef NEWCONFIG
1178 1.34 thorpej sc = dcm_cd.cd_devs[board];
1179 1.34 thorpej #else
1180 1.20 thorpej sc = &dcm_softc[board];
1181 1.34 thorpej #endif
1182 1.20 thorpej dcm = sc->sc_dcm;
1183 1.20 thorpej
1184 1.1 cgd s = spltty();
1185 1.14 mycroft #ifdef DCMSTATS
1186 1.1 cgd dsp->xints++;
1187 1.1 cgd #endif
1188 1.1 cgd #ifdef DEBUG
1189 1.1 cgd if (dcmdebug & DDB_OUTPUT)
1190 1.31 christos printf("%s port %d: dcmstart: state %x flags %x outcc %d\n",
1191 1.34 thorpej sc->sc_dev.dv_xname, port, tp->t_state, tp->t_flags,
1192 1.7 mycroft tp->t_outq.c_cc);
1193 1.1 cgd #endif
1194 1.1 cgd if (tp->t_state & (TS_TIMEOUT|TS_BUSY|TS_TTSTOP))
1195 1.1 cgd goto out;
1196 1.7 mycroft if (tp->t_outq.c_cc <= tp->t_lowat) {
1197 1.1 cgd if (tp->t_state&TS_ASLEEP) {
1198 1.1 cgd tp->t_state &= ~TS_ASLEEP;
1199 1.7 mycroft wakeup((caddr_t)&tp->t_outq);
1200 1.1 cgd }
1201 1.2 cgd selwakeup(&tp->t_wsel);
1202 1.1 cgd }
1203 1.7 mycroft if (tp->t_outq.c_cc == 0) {
1204 1.14 mycroft #ifdef DCMSTATS
1205 1.1 cgd dsp->xempty++;
1206 1.1 cgd #endif
1207 1.1 cgd goto out;
1208 1.1 cgd }
1209 1.1 cgd
1210 1.1 cgd pp = dcm_preg(dcm, port);
1211 1.1 cgd tail = pp->t_tail & TX_MASK;
1212 1.1 cgd next = (tail + 1) & TX_MASK;
1213 1.1 cgd head = pp->t_head & TX_MASK;
1214 1.1 cgd if (head == next)
1215 1.1 cgd goto out;
1216 1.1 cgd fifo = &dcm->dcm_tfifos[3-port][tail];
1217 1.1 cgd again:
1218 1.1 cgd nch = q_to_b(&tp->t_outq, buf, (head - next) & TX_MASK);
1219 1.14 mycroft #ifdef DCMSTATS
1220 1.1 cgd tch += nch;
1221 1.1 cgd #endif
1222 1.1 cgd #ifdef DEBUG
1223 1.1 cgd if (dcmdebug & DDB_OUTPUT)
1224 1.31 christos printf("\thead %x tail %x nch %d\n", head, tail, nch);
1225 1.1 cgd #endif
1226 1.1 cgd /*
1227 1.1 cgd * Loop transmitting all the characters we can.
1228 1.1 cgd */
1229 1.1 cgd for (bp = buf; --nch >= 0; bp++) {
1230 1.1 cgd fifo->data_char = *bp;
1231 1.1 cgd pp->t_tail = next;
1232 1.1 cgd /*
1233 1.1 cgd * If this is the first character,
1234 1.1 cgd * get the hardware moving right now.
1235 1.1 cgd */
1236 1.1 cgd if (bp == buf) {
1237 1.1 cgd tp->t_state |= TS_BUSY;
1238 1.1 cgd SEM_LOCK(dcm);
1239 1.1 cgd dcm->dcm_cmdtab[port].dcm_data |= CT_TX;
1240 1.1 cgd dcm->dcm_cr |= (1 << port);
1241 1.1 cgd SEM_UNLOCK(dcm);
1242 1.1 cgd }
1243 1.1 cgd tail = next;
1244 1.1 cgd fifo = tail ? fifo+1 : &dcm->dcm_tfifos[3-port][0];
1245 1.1 cgd next = (next + 1) & TX_MASK;
1246 1.1 cgd }
1247 1.1 cgd /*
1248 1.1 cgd * Head changed while we were loading the buffer,
1249 1.1 cgd * go back and load some more if we can.
1250 1.1 cgd */
1251 1.7 mycroft if (tp->t_outq.c_cc && head != (pp->t_head & TX_MASK)) {
1252 1.14 mycroft #ifdef DCMSTATS
1253 1.1 cgd dsp->xrestarts++;
1254 1.1 cgd #endif
1255 1.1 cgd head = pp->t_head & TX_MASK;
1256 1.1 cgd goto again;
1257 1.1 cgd }
1258 1.1 cgd
1259 1.1 cgd /*
1260 1.1 cgd * Kick it one last time in case it finished while we were
1261 1.1 cgd * loading the last bunch.
1262 1.1 cgd */
1263 1.1 cgd if (bp > &buf[1]) {
1264 1.1 cgd tp->t_state |= TS_BUSY;
1265 1.1 cgd SEM_LOCK(dcm);
1266 1.1 cgd dcm->dcm_cmdtab[port].dcm_data |= CT_TX;
1267 1.1 cgd dcm->dcm_cr |= (1 << port);
1268 1.1 cgd SEM_UNLOCK(dcm);
1269 1.1 cgd }
1270 1.1 cgd #ifdef DEBUG
1271 1.1 cgd if (dcmdebug & DDB_INTR)
1272 1.31 christos printf("%s port %d: dcmstart(%d): head %x tail %x outqcc %d\n",
1273 1.34 thorpej sc->sc_dev.dv_xname, port, head, tail, tp->t_outq.c_cc);
1274 1.1 cgd #endif
1275 1.1 cgd out:
1276 1.14 mycroft #ifdef DCMSTATS
1277 1.1 cgd dsp->xchars += tch;
1278 1.1 cgd if (tch <= DCMXBSIZE)
1279 1.1 cgd dsp->xsilo[tch]++;
1280 1.1 cgd else
1281 1.1 cgd dsp->xsilo[DCMXBSIZE+1]++;
1282 1.1 cgd #endif
1283 1.1 cgd splx(s);
1284 1.1 cgd }
1285 1.1 cgd
1286 1.1 cgd /*
1287 1.1 cgd * Stop output on a line.
1288 1.1 cgd */
1289 1.29 mycroft void
1290 1.1 cgd dcmstop(tp, flag)
1291 1.1 cgd register struct tty *tp;
1292 1.14 mycroft int flag;
1293 1.1 cgd {
1294 1.1 cgd int s;
1295 1.1 cgd
1296 1.1 cgd s = spltty();
1297 1.1 cgd if (tp->t_state & TS_BUSY) {
1298 1.1 cgd /* XXX is there some way to safely stop transmission? */
1299 1.1 cgd if ((tp->t_state&TS_TTSTOP) == 0)
1300 1.1 cgd tp->t_state |= TS_FLUSH;
1301 1.1 cgd }
1302 1.1 cgd splx(s);
1303 1.1 cgd }
1304 1.1 cgd
1305 1.1 cgd /*
1306 1.1 cgd * Modem control
1307 1.1 cgd */
1308 1.1 cgd dcmmctl(dev, bits, how)
1309 1.1 cgd dev_t dev;
1310 1.1 cgd int bits, how;
1311 1.1 cgd {
1312 1.20 thorpej struct dcm_softc *sc;
1313 1.20 thorpej struct dcmdevice *dcm;
1314 1.20 thorpej int s, unit, brd, port, hit = 0;
1315 1.20 thorpej
1316 1.20 thorpej unit = DCMUNIT(dev);
1317 1.20 thorpej brd = DCMBOARD(unit);
1318 1.20 thorpej port = DCMPORT(unit);
1319 1.34 thorpej
1320 1.34 thorpej #ifdef NEWCONFIG
1321 1.34 thorpej sc = dcm_cd.cd_devs[brd];
1322 1.34 thorpej #else
1323 1.20 thorpej sc = &dcm_softc[brd];
1324 1.34 thorpej #endif
1325 1.20 thorpej dcm = sc->sc_dcm;
1326 1.1 cgd
1327 1.1 cgd #ifdef DEBUG
1328 1.1 cgd if (dcmdebug & DDB_MODEM)
1329 1.31 christos printf("%s port %d: dcmmctl: bits 0x%x how %x\n",
1330 1.34 thorpej sc->sc_dev.dv_xname, port, bits, how);
1331 1.1 cgd #endif
1332 1.1 cgd
1333 1.1 cgd s = spltty();
1334 1.20 thorpej
1335 1.1 cgd switch (how) {
1336 1.1 cgd case DMSET:
1337 1.20 thorpej sc->sc_modem[port]->mdmout = bits;
1338 1.1 cgd hit++;
1339 1.1 cgd break;
1340 1.1 cgd
1341 1.1 cgd case DMBIS:
1342 1.20 thorpej sc->sc_modem[port]->mdmout |= bits;
1343 1.1 cgd hit++;
1344 1.1 cgd break;
1345 1.1 cgd
1346 1.1 cgd case DMBIC:
1347 1.20 thorpej sc->sc_modem[port]->mdmout &= ~bits;
1348 1.1 cgd hit++;
1349 1.1 cgd break;
1350 1.1 cgd
1351 1.1 cgd case DMGET:
1352 1.20 thorpej bits = sc->sc_modem[port]->mdmin;
1353 1.20 thorpej if (sc->sc_flags & DCM_STDDCE)
1354 1.1 cgd bits = hp2dce_in(bits);
1355 1.1 cgd break;
1356 1.1 cgd }
1357 1.1 cgd if (hit) {
1358 1.1 cgd SEM_LOCK(dcm);
1359 1.1 cgd dcm->dcm_modemchng |= 1<<(unit & 3);
1360 1.1 cgd dcm->dcm_cr |= CR_MODM;
1361 1.1 cgd SEM_UNLOCK(dcm);
1362 1.1 cgd DELAY(10); /* delay until done */
1363 1.1 cgd (void) splx(s);
1364 1.1 cgd }
1365 1.1 cgd return (bits);
1366 1.1 cgd }
1367 1.1 cgd
1368 1.1 cgd /*
1369 1.1 cgd * Set board to either interrupt per-character or at a fixed interval.
1370 1.1 cgd */
1371 1.1 cgd dcmsetischeme(brd, flags)
1372 1.1 cgd int brd, flags;
1373 1.1 cgd {
1374 1.34 thorpej #ifdef NEWCONFIG
1375 1.34 thorpej struct dcm_softc *sc = dcm_cd.cd_devs[brd];
1376 1.34 thorpej #else
1377 1.20 thorpej struct dcm_softc *sc = &dcm_softc[brd];
1378 1.34 thorpej #endif
1379 1.20 thorpej struct dcmdevice *dcm = sc->sc_dcm;
1380 1.20 thorpej struct dcmischeme *dis = &sc->sc_scheme;
1381 1.20 thorpej int i;
1382 1.1 cgd u_char mask;
1383 1.1 cgd int perchar = flags & DIS_PERCHAR;
1384 1.1 cgd
1385 1.1 cgd #ifdef DEBUG
1386 1.1 cgd if (dcmdebug & DDB_INTSCHM)
1387 1.31 christos printf("%s: dcmsetischeme(%d): cur %d, ints %d, chars %d\n",
1388 1.34 thorpej sc->sc_dev.dv_xname, perchar, dis->dis_perchar,
1389 1.1 cgd dis->dis_intr, dis->dis_char);
1390 1.1 cgd if ((flags & DIS_RESET) == 0 && perchar == dis->dis_perchar) {
1391 1.31 christos printf("%s: dcmsetischeme: redundent request %d\n",
1392 1.34 thorpej sc->sc_dev.dv_xname, perchar);
1393 1.1 cgd return;
1394 1.1 cgd }
1395 1.1 cgd #endif
1396 1.1 cgd /*
1397 1.1 cgd * If perchar is non-zero, we enable interrupts on all characters
1398 1.1 cgd * otherwise we disable perchar interrupts and use periodic
1399 1.1 cgd * polling interrupts.
1400 1.1 cgd */
1401 1.1 cgd dis->dis_perchar = perchar;
1402 1.1 cgd mask = perchar ? 0xf : 0x0;
1403 1.1 cgd for (i = 0; i < 256; i++)
1404 1.1 cgd dcm->dcm_bmap[i].data_data = mask;
1405 1.1 cgd /*
1406 1.1 cgd * Don't slow down tandem mode, interrupt on flow control
1407 1.1 cgd * chars for any port on the board.
1408 1.1 cgd */
1409 1.1 cgd if (!perchar) {
1410 1.20 thorpej register struct tty *tp;
1411 1.1 cgd int c;
1412 1.1 cgd
1413 1.20 thorpej for (i = 0; i < NDCMPORT; i++) {
1414 1.20 thorpej tp = sc->sc_tty[i];
1415 1.20 thorpej
1416 1.1 cgd if ((c = tp->t_cc[VSTART]) != _POSIX_VDISABLE)
1417 1.1 cgd dcm->dcm_bmap[c].data_data |= (1 << i);
1418 1.1 cgd if ((c = tp->t_cc[VSTOP]) != _POSIX_VDISABLE)
1419 1.1 cgd dcm->dcm_bmap[c].data_data |= (1 << i);
1420 1.1 cgd }
1421 1.1 cgd }
1422 1.1 cgd /*
1423 1.1 cgd * Board starts with timer disabled so if first call is to
1424 1.1 cgd * set perchar mode then we don't want to toggle the timer.
1425 1.1 cgd */
1426 1.1 cgd if (flags == (DIS_RESET|DIS_PERCHAR))
1427 1.1 cgd return;
1428 1.1 cgd /*
1429 1.1 cgd * Toggle card 16.7ms interrupts (we first make sure that card
1430 1.1 cgd * has cleared the bit so it will see the toggle).
1431 1.1 cgd */
1432 1.1 cgd while (dcm->dcm_cr & CR_TIMER)
1433 1.1 cgd ;
1434 1.1 cgd SEM_LOCK(dcm);
1435 1.1 cgd dcm->dcm_cr |= CR_TIMER;
1436 1.1 cgd SEM_UNLOCK(dcm);
1437 1.1 cgd }
1438 1.1 cgd
1439 1.22 thorpej void
1440 1.22 thorpej dcminit(dcm, port, rate)
1441 1.22 thorpej struct dcmdevice *dcm;
1442 1.22 thorpej int port, rate;
1443 1.22 thorpej {
1444 1.22 thorpej int s, mode;
1445 1.22 thorpej
1446 1.22 thorpej mode = LC_8BITS | LC_1STOP;
1447 1.22 thorpej
1448 1.22 thorpej s = splhigh();
1449 1.22 thorpej
1450 1.22 thorpej /*
1451 1.22 thorpej * Wait for transmitter buffer to empty.
1452 1.22 thorpej */
1453 1.22 thorpej while (dcm->dcm_thead[port].ptr != dcm->dcm_ttail[port].ptr)
1454 1.22 thorpej DELAY(DCM_USPERCH(rate));
1455 1.22 thorpej
1456 1.22 thorpej /*
1457 1.22 thorpej * Make changes known to hardware.
1458 1.22 thorpej */
1459 1.22 thorpej dcm->dcm_data[port].dcm_baud = ttspeedtab(rate, dcmspeedtab);
1460 1.22 thorpej dcm->dcm_data[port].dcm_conf = mode;
1461 1.22 thorpej SEM_LOCK(dcm);
1462 1.22 thorpej dcm->dcm_cmdtab[port].dcm_data |= CT_CON;
1463 1.22 thorpej dcm->dcm_cr |= (1 << port);
1464 1.22 thorpej SEM_UNLOCK(dcm);
1465 1.22 thorpej
1466 1.22 thorpej /*
1467 1.22 thorpej * Delay for config change to take place. Weighted by baud.
1468 1.22 thorpej * XXX why do we do this?
1469 1.22 thorpej */
1470 1.22 thorpej DELAY(16 * DCM_USPERCH(rate));
1471 1.22 thorpej splx(s);
1472 1.22 thorpej }
1473 1.22 thorpej
1474 1.1 cgd /*
1475 1.34 thorpej * Empirically derived self-test magic
1476 1.34 thorpej */
1477 1.34 thorpej int
1478 1.34 thorpej dcmselftest(sc)
1479 1.34 thorpej struct dcm_softc *sc;
1480 1.34 thorpej {
1481 1.34 thorpej struct dcmdevice *dcm = sc->sc_dcm;
1482 1.34 thorpej int i, timo = 0;
1483 1.34 thorpej int s, brd, mbits;
1484 1.34 thorpej
1485 1.34 thorpej s = spltty();
1486 1.34 thorpej dcm->dcm_rsid = DCMRS;
1487 1.34 thorpej DELAY(50000); /* 5000 is not long enough */
1488 1.34 thorpej dcm->dcm_rsid = 0;
1489 1.34 thorpej dcm->dcm_ic = IC_IE;
1490 1.34 thorpej dcm->dcm_cr = CR_SELFT;
1491 1.34 thorpej while ((dcm->dcm_ic & IC_IR) == 0)
1492 1.34 thorpej if (++timo == 20000)
1493 1.34 thorpej return (1);
1494 1.34 thorpej DELAY(50000); /* XXX why is this needed ???? */
1495 1.34 thorpej while ((dcm->dcm_iir & IIR_SELFT) == 0)
1496 1.34 thorpej if (++timo == 400000)
1497 1.34 thorpej return (1);
1498 1.34 thorpej DELAY(50000); /* XXX why is this needed ???? */
1499 1.34 thorpej if (dcm->dcm_stcon != ST_OK) {
1500 1.34 thorpej #if 0
1501 1.34 thorpej if (hd->hp_args->hw_sc != conscode)
1502 1.34 thorpej printf("dcm%d: self test failed: %x\n",
1503 1.34 thorpej brd, dcm->dcm_stcon);
1504 1.34 thorpej #endif
1505 1.34 thorpej return (1);
1506 1.34 thorpej }
1507 1.34 thorpej dcm->dcm_ic = IC_ID;
1508 1.34 thorpej splx(s);
1509 1.34 thorpej
1510 1.34 thorpej return (0);
1511 1.34 thorpej }
1512 1.34 thorpej
1513 1.34 thorpej /*
1514 1.1 cgd * Following are all routines needed for DCM to act as console
1515 1.1 cgd */
1516 1.1 cgd
1517 1.24 thorpej int
1518 1.24 thorpej dcm_console_scan(scode, va, arg)
1519 1.24 thorpej int scode;
1520 1.24 thorpej caddr_t va;
1521 1.24 thorpej void *arg;
1522 1.1 cgd {
1523 1.24 thorpej struct dcmdevice *dcm = (struct dcmdevice *)va;
1524 1.24 thorpej struct consdev *cp = arg;
1525 1.24 thorpej u_char *dioiidev;
1526 1.25 thorpej int force = 0, pri;
1527 1.1 cgd
1528 1.20 thorpej switch (dcm->dcm_rsid) {
1529 1.1 cgd case DCMID:
1530 1.25 thorpej pri = CN_NORMAL;
1531 1.1 cgd break;
1532 1.20 thorpej
1533 1.1 cgd case DCMID|DCMCON:
1534 1.25 thorpej pri = CN_REMOTE;
1535 1.1 cgd break;
1536 1.20 thorpej
1537 1.1 cgd default:
1538 1.24 thorpej return (0);
1539 1.1 cgd }
1540 1.20 thorpej
1541 1.24 thorpej #ifdef CONSCODE
1542 1.1 cgd /*
1543 1.24 thorpej * Raise our priority, if appropriate.
1544 1.1 cgd */
1545 1.24 thorpej if (scode == CONSCODE) {
1546 1.25 thorpej pri = CN_REMOTE;
1547 1.24 thorpej force = conforced = 1;
1548 1.24 thorpej }
1549 1.24 thorpej #endif
1550 1.22 thorpej
1551 1.26 thorpej /* Only raise priority. */
1552 1.26 thorpej if (pri > cp->cn_pri)
1553 1.26 thorpej cp->cn_pri = pri;
1554 1.26 thorpej
1555 1.22 thorpej /*
1556 1.22 thorpej * If our priority is higher than the currently-remembered
1557 1.24 thorpej * console, stash our priority, for the benefit of dcmcninit().
1558 1.22 thorpej */
1559 1.26 thorpej if (((cn_tab == NULL) || (cp->cn_pri > cn_tab->cn_pri)) || force) {
1560 1.26 thorpej cn_tab = cp;
1561 1.24 thorpej if (scode >= 132) {
1562 1.24 thorpej dioiidev = (u_char *)va;
1563 1.24 thorpej return ((dioiidev[0x101] + 1) * 0x100000);
1564 1.24 thorpej }
1565 1.24 thorpej return (DIOCSIZE);
1566 1.22 thorpej }
1567 1.24 thorpej return (0);
1568 1.24 thorpej }
1569 1.24 thorpej
1570 1.24 thorpej void
1571 1.24 thorpej dcmcnprobe(cp)
1572 1.24 thorpej struct consdev *cp;
1573 1.24 thorpej {
1574 1.24 thorpej
1575 1.24 thorpej /* locate the major number */
1576 1.24 thorpej for (dcmmajor = 0; dcmmajor < nchrdev; dcmmajor++)
1577 1.24 thorpej if (cdevsw[dcmmajor].d_open == dcmopen)
1578 1.24 thorpej break;
1579 1.24 thorpej
1580 1.24 thorpej /* initialize required fields */
1581 1.24 thorpej cp->cn_dev = makedev(dcmmajor, 0); /* XXX */
1582 1.24 thorpej cp->cn_pri = CN_DEAD;
1583 1.24 thorpej
1584 1.24 thorpej /* Abort early if console already forced. */
1585 1.24 thorpej if (conforced)
1586 1.24 thorpej return;
1587 1.24 thorpej
1588 1.24 thorpej console_scan(dcm_console_scan, cp);
1589 1.22 thorpej
1590 1.1 cgd #ifdef KGDB_CHEAT
1591 1.24 thorpej /* XXX this needs to be fixed. */
1592 1.1 cgd /*
1593 1.1 cgd * This doesn't currently work, at least not with ite consoles;
1594 1.1 cgd * the console hasn't been initialized yet.
1595 1.1 cgd */
1596 1.20 thorpej if (major(kgdb_dev) == dcmmajor &&
1597 1.20 thorpej DCMBOARD(DCMUNIT(kgdb_dev)) == DCMBOARD(unit)) {
1598 1.22 thorpej dcminit(dcm_cn, DCMPORT(DCMUNIT(kgdb_dev)), kgdb_rate);
1599 1.1 cgd if (kgdb_debug_init) {
1600 1.1 cgd /*
1601 1.1 cgd * We assume that console is ready for us...
1602 1.1 cgd * this assumes that a dca or ite console
1603 1.1 cgd * has been selected already and will init
1604 1.1 cgd * on the first putc.
1605 1.1 cgd */
1606 1.31 christos printf("dcm%d: ", DCMUNIT(kgdb_dev));
1607 1.1 cgd kgdb_connect(1);
1608 1.1 cgd }
1609 1.1 cgd }
1610 1.1 cgd #endif
1611 1.1 cgd }
1612 1.1 cgd
1613 1.24 thorpej /* ARGSUSED */
1614 1.16 mycroft void
1615 1.1 cgd dcmcninit(cp)
1616 1.1 cgd struct consdev *cp;
1617 1.1 cgd {
1618 1.20 thorpej
1619 1.24 thorpej dcm_cn = (struct dcmdevice *)conaddr;
1620 1.24 thorpej dcminit(dcm_cn, DCMCONSPORT, dcmdefaultrate);
1621 1.1 cgd dcmconsinit = 1;
1622 1.1 cgd }
1623 1.1 cgd
1624 1.24 thorpej /* ARGSUSED */
1625 1.17 mycroft int
1626 1.1 cgd dcmcngetc(dev)
1627 1.1 cgd dev_t dev;
1628 1.1 cgd {
1629 1.20 thorpej struct dcmrfifo *fifo;
1630 1.20 thorpej struct dcmpreg *pp;
1631 1.20 thorpej u_int head;
1632 1.24 thorpej int s, c, stat;
1633 1.22 thorpej
1634 1.24 thorpej pp = dcm_preg(dcm_cn, DCMCONSPORT);
1635 1.20 thorpej
1636 1.1 cgd s = splhigh();
1637 1.1 cgd head = pp->r_head & RX_MASK;
1638 1.24 thorpej fifo = &dcm_cn->dcm_rfifos[3-DCMCONSPORT][head>>1];
1639 1.1 cgd while (head == (pp->r_tail & RX_MASK))
1640 1.1 cgd ;
1641 1.1 cgd /*
1642 1.1 cgd * If board interrupts are enabled, just let our received char
1643 1.1 cgd * interrupt through in case some other port on the board was
1644 1.1 cgd * busy. Otherwise we must clear the interrupt.
1645 1.1 cgd */
1646 1.22 thorpej SEM_LOCK(dcm_cn);
1647 1.22 thorpej if ((dcm_cn->dcm_ic & IC_IE) == 0)
1648 1.22 thorpej stat = dcm_cn->dcm_iir;
1649 1.22 thorpej SEM_UNLOCK(dcm_cn);
1650 1.1 cgd c = fifo->data_char;
1651 1.1 cgd stat = fifo->data_stat;
1652 1.1 cgd pp->r_head = (head + 2) & RX_MASK;
1653 1.1 cgd splx(s);
1654 1.1 cgd return (c);
1655 1.1 cgd }
1656 1.1 cgd
1657 1.1 cgd /*
1658 1.1 cgd * Console kernel output character routine.
1659 1.1 cgd */
1660 1.24 thorpej /* ARGSUSED */
1661 1.16 mycroft void
1662 1.1 cgd dcmcnputc(dev, c)
1663 1.1 cgd dev_t dev;
1664 1.1 cgd int c;
1665 1.1 cgd {
1666 1.20 thorpej struct dcmpreg *pp;
1667 1.1 cgd unsigned tail;
1668 1.24 thorpej int s, unit, stat;
1669 1.22 thorpej
1670 1.24 thorpej pp = dcm_preg(dcm_cn, DCMCONSPORT);
1671 1.20 thorpej
1672 1.1 cgd s = splhigh();
1673 1.1 cgd #ifdef KGDB
1674 1.1 cgd if (dev != kgdb_dev)
1675 1.1 cgd #endif
1676 1.1 cgd if (dcmconsinit == 0) {
1677 1.24 thorpej dcminit(dcm_cn, DCMCONSPORT, dcmdefaultrate);
1678 1.1 cgd dcmconsinit = 1;
1679 1.1 cgd }
1680 1.1 cgd tail = pp->t_tail & TX_MASK;
1681 1.1 cgd while (tail != (pp->t_head & TX_MASK))
1682 1.1 cgd ;
1683 1.24 thorpej dcm_cn->dcm_tfifos[3-DCMCONSPORT][tail].data_char = c;
1684 1.1 cgd pp->t_tail = tail = (tail + 1) & TX_MASK;
1685 1.22 thorpej SEM_LOCK(dcm_cn);
1686 1.24 thorpej dcm_cn->dcm_cmdtab[DCMCONSPORT].dcm_data |= CT_TX;
1687 1.24 thorpej dcm_cn->dcm_cr |= (1 << DCMCONSPORT);
1688 1.22 thorpej SEM_UNLOCK(dcm_cn);
1689 1.1 cgd while (tail != (pp->t_head & TX_MASK))
1690 1.1 cgd ;
1691 1.1 cgd /*
1692 1.1 cgd * If board interrupts are enabled, just let our completion
1693 1.1 cgd * interrupt through in case some other port on the board
1694 1.1 cgd * was busy. Otherwise we must clear the interrupt.
1695 1.1 cgd */
1696 1.22 thorpej if ((dcm_cn->dcm_ic & IC_IE) == 0) {
1697 1.22 thorpej SEM_LOCK(dcm_cn);
1698 1.22 thorpej stat = dcm_cn->dcm_iir;
1699 1.22 thorpej SEM_UNLOCK(dcm_cn);
1700 1.1 cgd }
1701 1.1 cgd splx(s);
1702 1.1 cgd }
1703