z8530tty.c revision 1.92 1 1.92 agc /* $NetBSD: z8530tty.c,v 1.92 2003/08/07 16:31:04 agc Exp $ */
2 1.21 mycroft
3 1.21 mycroft /*-
4 1.57 mycroft * Copyright (c) 1993, 1994, 1995, 1996, 1997, 1998, 1999
5 1.21 mycroft * Charles M. Hannum. All rights reserved.
6 1.21 mycroft *
7 1.21 mycroft * Redistribution and use in source and binary forms, with or without
8 1.21 mycroft * modification, are permitted provided that the following conditions
9 1.21 mycroft * are met:
10 1.21 mycroft * 1. Redistributions of source code must retain the above copyright
11 1.21 mycroft * notice, this list of conditions and the following disclaimer.
12 1.21 mycroft * 2. Redistributions in binary form must reproduce the above copyright
13 1.21 mycroft * notice, this list of conditions and the following disclaimer in the
14 1.21 mycroft * documentation and/or other materials provided with the distribution.
15 1.21 mycroft * 3. All advertising materials mentioning features or use of this software
16 1.21 mycroft * must display the following acknowledgement:
17 1.21 mycroft * This product includes software developed by Charles M. Hannum.
18 1.21 mycroft * 4. The name of the author may not be used to endorse or promote products
19 1.21 mycroft * derived from this software without specific prior written permission.
20 1.21 mycroft *
21 1.21 mycroft * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 1.21 mycroft * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 1.21 mycroft * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 1.21 mycroft * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 1.21 mycroft * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 1.21 mycroft * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 1.21 mycroft * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 1.21 mycroft * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 1.21 mycroft * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 1.21 mycroft * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 1.21 mycroft */
32 1.1 gwr
33 1.1 gwr /*
34 1.1 gwr * Copyright (c) 1992, 1993
35 1.1 gwr * The Regents of the University of California. All rights reserved.
36 1.1 gwr *
37 1.1 gwr * This software was developed by the Computer Systems Engineering group
38 1.1 gwr * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
39 1.1 gwr * contributed to Berkeley.
40 1.1 gwr *
41 1.1 gwr * All advertising materials mentioning features or use of this software
42 1.1 gwr * must display the following acknowledgement:
43 1.1 gwr * This product includes software developed by the University of
44 1.1 gwr * California, Lawrence Berkeley Laboratory.
45 1.1 gwr *
46 1.1 gwr * Redistribution and use in source and binary forms, with or without
47 1.1 gwr * modification, are permitted provided that the following conditions
48 1.1 gwr * are met:
49 1.1 gwr * 1. Redistributions of source code must retain the above copyright
50 1.1 gwr * notice, this list of conditions and the following disclaimer.
51 1.1 gwr * 2. Redistributions in binary form must reproduce the above copyright
52 1.1 gwr * notice, this list of conditions and the following disclaimer in the
53 1.1 gwr * documentation and/or other materials provided with the distribution.
54 1.92 agc * 3. Neither the name of the University nor the names of its contributors
55 1.92 agc * may be used to endorse or promote products derived from this software
56 1.92 agc * without specific prior written permission.
57 1.92 agc *
58 1.92 agc * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
59 1.92 agc * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
60 1.92 agc * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
61 1.92 agc * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
62 1.92 agc * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
63 1.92 agc * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
64 1.92 agc * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
65 1.92 agc * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
66 1.92 agc * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
67 1.92 agc * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
68 1.92 agc * SUCH DAMAGE.
69 1.92 agc *
70 1.92 agc * @(#)zs.c 8.1 (Berkeley) 7/19/93
71 1.92 agc */
72 1.92 agc
73 1.92 agc /*
74 1.92 agc * Copyright (c) 1994 Gordon W. Ross
75 1.92 agc *
76 1.92 agc * This software was developed by the Computer Systems Engineering group
77 1.92 agc * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
78 1.92 agc * contributed to Berkeley.
79 1.92 agc *
80 1.92 agc * All advertising materials mentioning features or use of this software
81 1.92 agc * must display the following acknowledgement:
82 1.92 agc * This product includes software developed by the University of
83 1.92 agc * California, Lawrence Berkeley Laboratory.
84 1.92 agc *
85 1.92 agc * Redistribution and use in source and binary forms, with or without
86 1.92 agc * modification, are permitted provided that the following conditions
87 1.92 agc * are met:
88 1.92 agc * 1. Redistributions of source code must retain the above copyright
89 1.92 agc * notice, this list of conditions and the following disclaimer.
90 1.92 agc * 2. Redistributions in binary form must reproduce the above copyright
91 1.92 agc * notice, this list of conditions and the following disclaimer in the
92 1.92 agc * documentation and/or other materials provided with the distribution.
93 1.1 gwr * 3. All advertising materials mentioning features or use of this software
94 1.1 gwr * must display the following acknowledgement:
95 1.1 gwr * This product includes software developed by the University of
96 1.1 gwr * California, Berkeley and its contributors.
97 1.1 gwr * 4. Neither the name of the University nor the names of its contributors
98 1.1 gwr * may be used to endorse or promote products derived from this software
99 1.1 gwr * without specific prior written permission.
100 1.1 gwr *
101 1.1 gwr * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
102 1.1 gwr * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
103 1.1 gwr * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
104 1.1 gwr * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
105 1.1 gwr * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
106 1.1 gwr * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
107 1.1 gwr * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
108 1.1 gwr * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
109 1.1 gwr * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
110 1.1 gwr * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
111 1.1 gwr * SUCH DAMAGE.
112 1.1 gwr *
113 1.1 gwr * @(#)zs.c 8.1 (Berkeley) 7/19/93
114 1.1 gwr */
115 1.1 gwr
116 1.1 gwr /*
117 1.1 gwr * Zilog Z8530 Dual UART driver (tty interface)
118 1.1 gwr *
119 1.1 gwr * This is the "slave" driver that will be attached to
120 1.1 gwr * the "zsc" driver for plain "tty" async. serial lines.
121 1.8 gwr *
122 1.8 gwr * Credits, history:
123 1.8 gwr *
124 1.8 gwr * The original version of this code was the sparc/dev/zs.c driver
125 1.8 gwr * as distributed with the Berkeley 4.4 Lite release. Since then,
126 1.8 gwr * Gordon Ross reorganized the code into the current parent/child
127 1.8 gwr * driver scheme, separating the Sun keyboard and mouse support
128 1.8 gwr * into independent child drivers.
129 1.8 gwr *
130 1.8 gwr * RTS/CTS flow-control support was a collaboration of:
131 1.8 gwr * Gordon Ross <gwr (at) netbsd.org>,
132 1.8 gwr * Bill Studenmund <wrstuden (at) loki.stanford.edu>
133 1.8 gwr * Ian Dall <Ian.Dall (at) dsto.defence.gov.au>
134 1.57 mycroft *
135 1.57 mycroft * The driver was massively overhauled in November 1997 by Charles Hannum,
136 1.57 mycroft * fixing *many* bugs, and substantially improving performance.
137 1.1 gwr */
138 1.78 lukem
139 1.78 lukem #include <sys/cdefs.h>
140 1.92 agc __KERNEL_RCSID(0, "$NetBSD: z8530tty.c,v 1.92 2003/08/07 16:31:04 agc Exp $");
141 1.77 lukem
142 1.77 lukem #include "opt_kgdb.h"
143 1.1 gwr
144 1.1 gwr #include <sys/param.h>
145 1.1 gwr #include <sys/systm.h>
146 1.1 gwr #include <sys/proc.h>
147 1.1 gwr #include <sys/device.h>
148 1.1 gwr #include <sys/conf.h>
149 1.1 gwr #include <sys/file.h>
150 1.1 gwr #include <sys/ioctl.h>
151 1.6 gwr #include <sys/malloc.h>
152 1.59 wrstuden #include <sys/timepps.h>
153 1.1 gwr #include <sys/tty.h>
154 1.1 gwr #include <sys/time.h>
155 1.1 gwr #include <sys/kernel.h>
156 1.1 gwr #include <sys/syslog.h>
157 1.1 gwr
158 1.1 gwr #include <dev/ic/z8530reg.h>
159 1.1 gwr #include <machine/z8530var.h>
160 1.1 gwr
161 1.52 drochner #include <dev/cons.h>
162 1.52 drochner
163 1.17 jtk #include "locators.h"
164 1.17 jtk
165 1.1 gwr /*
166 1.1 gwr * How many input characters we can buffer.
167 1.1 gwr * The port-specific var.h may override this.
168 1.1 gwr * Note: must be a power of two!
169 1.1 gwr */
170 1.1 gwr #ifndef ZSTTY_RING_SIZE
171 1.36 mycroft #define ZSTTY_RING_SIZE 2048
172 1.1 gwr #endif
173 1.6 gwr
174 1.72 eeh static struct cnm_state zstty_cnm_state;
175 1.6 gwr /*
176 1.6 gwr * Make this an option variable one can patch.
177 1.6 gwr * But be warned: this must be a power of 2!
178 1.6 gwr */
179 1.35 mycroft u_int zstty_rbuf_size = ZSTTY_RING_SIZE;
180 1.1 gwr
181 1.35 mycroft /* Stop input when 3/4 of the ring is full; restart when only 1/4 is full. */
182 1.35 mycroft u_int zstty_rbuf_hiwat = (ZSTTY_RING_SIZE * 1) / 4;
183 1.35 mycroft u_int zstty_rbuf_lowat = (ZSTTY_RING_SIZE * 3) / 4;
184 1.8 gwr
185 1.59 wrstuden static int zsppscap =
186 1.59 wrstuden PPS_TSFMT_TSPEC |
187 1.59 wrstuden PPS_CAPTUREASSERT |
188 1.59 wrstuden PPS_CAPTURECLEAR |
189 1.59 wrstuden #ifdef PPS_SYNC
190 1.59 wrstuden PPS_HARDPPSONASSERT | PPS_HARDPPSONCLEAR |
191 1.59 wrstuden #endif /* PPS_SYNC */
192 1.59 wrstuden PPS_OFFSETASSERT | PPS_OFFSETCLEAR;
193 1.59 wrstuden
194 1.1 gwr struct zstty_softc {
195 1.1 gwr struct device zst_dev; /* required first: base device */
196 1.1 gwr struct tty *zst_tty;
197 1.1 gwr struct zs_chanstate *zst_cs;
198 1.1 gwr
199 1.65 thorpej struct callout zst_diag_ch;
200 1.65 thorpej
201 1.35 mycroft u_int zst_overflows,
202 1.35 mycroft zst_floods,
203 1.35 mycroft zst_errors;
204 1.35 mycroft
205 1.35 mycroft int zst_hwflags, /* see z8530var.h */
206 1.35 mycroft zst_swflags; /* TIOCFLAG_SOFTCAR, ... <ttycom.h> */
207 1.35 mycroft
208 1.35 mycroft u_int zst_r_hiwat,
209 1.35 mycroft zst_r_lowat;
210 1.35 mycroft u_char *volatile zst_rbget,
211 1.35 mycroft *volatile zst_rbput;
212 1.35 mycroft volatile u_int zst_rbavail;
213 1.35 mycroft u_char *zst_rbuf,
214 1.35 mycroft *zst_ebuf;
215 1.1 gwr
216 1.1 gwr /*
217 1.1 gwr * The transmit byte count and address are used for pseudo-DMA
218 1.1 gwr * output in the hardware interrupt code. PDMA can be suspended
219 1.1 gwr * to get pending changes done; heldtbc is used for this. It can
220 1.1 gwr * also be stopped for ^S; this sets TS_TTSTOP in tp->t_state.
221 1.1 gwr */
222 1.35 mycroft u_char *zst_tba; /* transmit buffer address */
223 1.35 mycroft u_int zst_tbc, /* transmit byte count */
224 1.35 mycroft zst_heldtbc; /* held tbc while xmission stopped */
225 1.1 gwr
226 1.8 gwr /* Flags to communicate with zstty_softint() */
227 1.35 mycroft volatile u_char zst_rx_flags, /* receiver blocked */
228 1.35 mycroft #define RX_TTY_BLOCKED 0x01
229 1.35 mycroft #define RX_TTY_OVERFLOWED 0x02
230 1.35 mycroft #define RX_IBUF_BLOCKED 0x04
231 1.35 mycroft #define RX_IBUF_OVERFLOWED 0x08
232 1.35 mycroft #define RX_ANY_BLOCK 0x0f
233 1.35 mycroft zst_tx_busy, /* working on an output chunk */
234 1.35 mycroft zst_tx_done, /* done with one output chunk */
235 1.35 mycroft zst_tx_stopped, /* H/W level stop (lost CTS) */
236 1.35 mycroft zst_st_check, /* got a status interrupt */
237 1.35 mycroft zst_rx_ready;
238 1.59 wrstuden
239 1.59 wrstuden /* PPS signal on DCD, with or without inkernel clock disciplining */
240 1.59 wrstuden u_char zst_ppsmask; /* pps signal mask */
241 1.59 wrstuden u_char zst_ppsassert; /* pps leading edge */
242 1.59 wrstuden u_char zst_ppsclear; /* pps trailing edge */
243 1.59 wrstuden pps_info_t ppsinfo;
244 1.59 wrstuden pps_params_t ppsparam;
245 1.1 gwr };
246 1.1 gwr
247 1.35 mycroft /* Macros to clear/set/test flags. */
248 1.35 mycroft #define SET(t, f) (t) |= (f)
249 1.35 mycroft #define CLR(t, f) (t) &= ~(f)
250 1.35 mycroft #define ISSET(t, f) ((t) & (f))
251 1.1 gwr
252 1.1 gwr /* Definition of the driver for autoconfig. */
253 1.14 gwr static int zstty_match(struct device *, struct cfdata *, void *);
254 1.1 gwr static void zstty_attach(struct device *, struct device *, void *);
255 1.1 gwr
256 1.83 thorpej CFATTACH_DECL(zstty, sizeof(struct zstty_softc),
257 1.84 thorpej zstty_match, zstty_attach, NULL, NULL);
258 1.4 thorpej
259 1.42 thorpej extern struct cfdriver zstty_cd;
260 1.1 gwr
261 1.80 gehenna dev_type_open(zsopen);
262 1.80 gehenna dev_type_close(zsclose);
263 1.80 gehenna dev_type_read(zsread);
264 1.80 gehenna dev_type_write(zswrite);
265 1.80 gehenna dev_type_ioctl(zsioctl);
266 1.80 gehenna dev_type_stop(zsstop);
267 1.80 gehenna dev_type_tty(zstty);
268 1.80 gehenna dev_type_poll(zspoll);
269 1.80 gehenna
270 1.80 gehenna const struct cdevsw zstty_cdevsw = {
271 1.80 gehenna zsopen, zsclose, zsread, zswrite, zsioctl,
272 1.85 jdolecek zsstop, zstty, zspoll, nommap, ttykqfilter, D_TTY
273 1.80 gehenna };
274 1.80 gehenna
275 1.1 gwr struct zsops zsops_tty;
276 1.1 gwr
277 1.45 mycroft static void zs_shutdown __P((struct zstty_softc *));
278 1.14 gwr static void zsstart __P((struct tty *));
279 1.14 gwr static int zsparam __P((struct tty *, struct termios *));
280 1.54 christos static void zs_modem __P((struct zstty_softc *, int));
281 1.69 toshii static void tiocm_to_zs __P((struct zstty_softc *, u_long, int));
282 1.58 mycroft static int zs_to_tiocm __P((struct zstty_softc *));
283 1.54 christos static int zshwiflow __P((struct tty *, int));
284 1.54 christos static void zs_hwiflow __P((struct zstty_softc *));
285 1.59 wrstuden static void zs_maskintr __P((struct zstty_softc *));
286 1.1 gwr
287 1.57 mycroft /* Low-level routines. */
288 1.57 mycroft static void zstty_rxint __P((struct zs_chanstate *));
289 1.57 mycroft static void zstty_stint __P((struct zs_chanstate *, int));
290 1.57 mycroft static void zstty_txint __P((struct zs_chanstate *));
291 1.57 mycroft static void zstty_softint __P((struct zs_chanstate *));
292 1.57 mycroft
293 1.47 mycroft #define ZSUNIT(x) (minor(x) & 0x7ffff)
294 1.47 mycroft #define ZSDIALOUT(x) (minor(x) & 0x80000)
295 1.47 mycroft
296 1.1 gwr /*
297 1.1 gwr * zstty_match: how is this zs channel configured?
298 1.1 gwr */
299 1.1 gwr int
300 1.14 gwr zstty_match(parent, cf, aux)
301 1.1 gwr struct device *parent;
302 1.14 gwr struct cfdata *cf;
303 1.14 gwr void *aux;
304 1.1 gwr {
305 1.1 gwr struct zsc_attach_args *args = aux;
306 1.1 gwr
307 1.1 gwr /* Exact match is better than wildcard. */
308 1.17 jtk if (cf->cf_loc[ZSCCF_CHANNEL] == args->channel)
309 1.1 gwr return 2;
310 1.1 gwr
311 1.1 gwr /* This driver accepts wildcard. */
312 1.17 jtk if (cf->cf_loc[ZSCCF_CHANNEL] == ZSCCF_CHANNEL_DEFAULT)
313 1.1 gwr return 1;
314 1.1 gwr
315 1.1 gwr return 0;
316 1.1 gwr }
317 1.1 gwr
318 1.1 gwr void
319 1.1 gwr zstty_attach(parent, self, aux)
320 1.1 gwr struct device *parent, *self;
321 1.1 gwr void *aux;
322 1.1 gwr
323 1.1 gwr {
324 1.1 gwr struct zsc_softc *zsc = (void *) parent;
325 1.1 gwr struct zstty_softc *zst = (void *) self;
326 1.14 gwr struct cfdata *cf = self->dv_cfdata;
327 1.1 gwr struct zsc_attach_args *args = aux;
328 1.1 gwr struct zs_chanstate *cs;
329 1.1 gwr struct tty *tp;
330 1.34 gwr int channel, s, tty_unit;
331 1.1 gwr dev_t dev;
332 1.64 pk char *i, *o;
333 1.89 pk int dtr_on;
334 1.89 pk int resetbit;
335 1.1 gwr
336 1.65 thorpej callout_init(&zst->zst_diag_ch);
337 1.72 eeh cn_init_magic(&zstty_cnm_state);
338 1.65 thorpej
339 1.3 gwr tty_unit = zst->zst_dev.dv_unit;
340 1.1 gwr channel = args->channel;
341 1.14 gwr cs = zsc->zsc_cs[channel];
342 1.1 gwr cs->cs_private = zst;
343 1.1 gwr cs->cs_ops = &zsops_tty;
344 1.1 gwr
345 1.1 gwr zst->zst_cs = cs;
346 1.1 gwr zst->zst_swflags = cf->cf_flags; /* softcar, etc. */
347 1.1 gwr zst->zst_hwflags = args->hwflags;
348 1.80 gehenna dev = makedev(cdevsw_lookup_major(&zstty_cdevsw), tty_unit);
349 1.1 gwr
350 1.1 gwr if (zst->zst_swflags)
351 1.12 christos printf(" flags 0x%x", zst->zst_swflags);
352 1.1 gwr
353 1.64 pk /*
354 1.64 pk * Check whether we serve as a console device.
355 1.64 pk * XXX - split console input/output channels aren't
356 1.64 pk * supported yet on /dev/console
357 1.64 pk */
358 1.64 pk i = o = NULL;
359 1.64 pk if ((zst->zst_hwflags & ZS_HWFLAG_CONSOLE_INPUT) != 0) {
360 1.64 pk i = "input";
361 1.64 pk if ((args->hwflags & ZS_HWFLAG_USE_CONSDEV) != 0) {
362 1.72 eeh args->consdev->cn_dev = dev;
363 1.64 pk cn_tab->cn_pollc = args->consdev->cn_pollc;
364 1.64 pk cn_tab->cn_getc = args->consdev->cn_getc;
365 1.64 pk }
366 1.64 pk cn_tab->cn_dev = dev;
367 1.72 eeh /* Set console magic to BREAK */
368 1.72 eeh cn_set_magic("\047\001");
369 1.64 pk }
370 1.64 pk if ((zst->zst_hwflags & ZS_HWFLAG_CONSOLE_OUTPUT) != 0) {
371 1.64 pk o = "output";
372 1.64 pk if ((args->hwflags & ZS_HWFLAG_USE_CONSDEV) != 0) {
373 1.64 pk cn_tab->cn_putc = args->consdev->cn_putc;
374 1.64 pk }
375 1.52 drochner cn_tab->cn_dev = dev;
376 1.64 pk }
377 1.64 pk if (i != NULL || o != NULL)
378 1.64 pk printf(" (console %s)", i ? (o ? "i/o" : i) : o);
379 1.64 pk
380 1.1 gwr #ifdef KGDB
381 1.57 mycroft if (zs_check_kgdb(cs, dev)) {
382 1.1 gwr /*
383 1.15 gwr * Allow kgdb to "take over" this port. Returns true
384 1.15 gwr * if this serial port is in-use by kgdb.
385 1.1 gwr */
386 1.73 wdk printf(" (kgdb)\n");
387 1.57 mycroft /*
388 1.57 mycroft * This is the kgdb port (exclusive use)
389 1.57 mycroft * so skip the normal attach code.
390 1.57 mycroft */
391 1.57 mycroft return;
392 1.64 pk }
393 1.1 gwr #endif
394 1.64 pk printf("\n");
395 1.1 gwr
396 1.6 gwr tp = ttymalloc();
397 1.49 wrstuden tp->t_dev = dev;
398 1.1 gwr tp->t_oproc = zsstart;
399 1.1 gwr tp->t_param = zsparam;
400 1.8 gwr tp->t_hwiflow = zshwiflow;
401 1.9 gwr tty_attach(tp);
402 1.1 gwr
403 1.6 gwr zst->zst_tty = tp;
404 1.35 mycroft zst->zst_rbuf = malloc(zstty_rbuf_size << 1, M_DEVBUF, M_WAITOK);
405 1.35 mycroft zst->zst_ebuf = zst->zst_rbuf + (zstty_rbuf_size << 1);
406 1.35 mycroft /* Disable the high water mark. */
407 1.35 mycroft zst->zst_r_hiwat = 0;
408 1.35 mycroft zst->zst_r_lowat = 0;
409 1.35 mycroft zst->zst_rbget = zst->zst_rbput = zst->zst_rbuf;
410 1.35 mycroft zst->zst_rbavail = zstty_rbuf_size;
411 1.6 gwr
412 1.63 jdc /* if there are no enable/disable functions, assume the device
413 1.63 jdc is always enabled */
414 1.63 jdc if (!cs->enable)
415 1.63 jdc cs->enabled = 1;
416 1.14 gwr
417 1.1 gwr /*
418 1.1 gwr * Hardware init
419 1.1 gwr */
420 1.89 pk dtr_on = 0;
421 1.89 pk resetbit = 0;
422 1.35 mycroft if (ISSET(zst->zst_hwflags, ZS_HWFLAG_CONSOLE)) {
423 1.14 gwr /* Call zsparam similar to open. */
424 1.14 gwr struct termios t;
425 1.74 tsutsui
426 1.74 tsutsui /* Wait a while for previous console output to complete */
427 1.74 tsutsui DELAY(10000);
428 1.52 drochner
429 1.57 mycroft /* Setup the "new" parameters in t. */
430 1.57 mycroft t.c_ispeed = 0;
431 1.57 mycroft t.c_ospeed = cs->cs_defspeed;
432 1.57 mycroft t.c_cflag = cs->cs_defcflag;
433 1.14 gwr
434 1.57 mycroft /*
435 1.57 mycroft * Turn on receiver and status interrupts.
436 1.57 mycroft * We defer the actual write of the register to zsparam(),
437 1.57 mycroft * but we must make sure status interrupts are turned on by
438 1.57 mycroft * the time zsparam() reads the initial rr0 state.
439 1.57 mycroft */
440 1.57 mycroft SET(cs->cs_preg[1], ZSWR1_RIE | ZSWR1_SIE);
441 1.34 gwr
442 1.14 gwr /* Make sure zsparam will see changes. */
443 1.14 gwr tp->t_ospeed = 0;
444 1.34 gwr (void) zsparam(tp, &t);
445 1.35 mycroft
446 1.34 gwr /* Make sure DTR is on now. */
447 1.89 pk dtr_on = 1;
448 1.43 mycroft
449 1.76 thorpej } else if (!ISSET(zst->zst_hwflags, ZS_HWFLAG_NORESET)) {
450 1.1 gwr /* Not the console; may need reset. */
451 1.89 pk resetbit = (channel == 0) ? ZSWR9_A_RESET : ZSWR9_B_RESET;
452 1.89 pk }
453 1.43 mycroft
454 1.89 pk s = splzs();
455 1.89 pk simple_lock(&cs->cs_lock);
456 1.89 pk if (resetbit)
457 1.89 pk zs_write_reg(cs, 9, resetbit);
458 1.89 pk zs_modem(zst, dtr_on);
459 1.89 pk simple_unlock(&cs->cs_lock);
460 1.89 pk splx(s);
461 1.1 gwr }
462 1.1 gwr
463 1.1 gwr
464 1.1 gwr /*
465 1.1 gwr * Return pointer to our tty.
466 1.1 gwr */
467 1.1 gwr struct tty *
468 1.1 gwr zstty(dev)
469 1.1 gwr dev_t dev;
470 1.1 gwr {
471 1.68 thorpej struct zstty_softc *zst = device_lookup(&zstty_cd, ZSUNIT(dev));
472 1.1 gwr
473 1.1 gwr return (zst->zst_tty);
474 1.1 gwr }
475 1.1 gwr
476 1.1 gwr
477 1.45 mycroft void
478 1.45 mycroft zs_shutdown(zst)
479 1.45 mycroft struct zstty_softc *zst;
480 1.45 mycroft {
481 1.46 mycroft struct zs_chanstate *cs = zst->zst_cs;
482 1.45 mycroft struct tty *tp = zst->zst_tty;
483 1.45 mycroft int s;
484 1.45 mycroft
485 1.45 mycroft s = splzs();
486 1.89 pk simple_lock(&cs->cs_lock);
487 1.45 mycroft
488 1.45 mycroft /* If we were asserting flow control, then deassert it. */
489 1.45 mycroft SET(zst->zst_rx_flags, RX_IBUF_BLOCKED);
490 1.45 mycroft zs_hwiflow(zst);
491 1.45 mycroft
492 1.45 mycroft /* Clear any break condition set with TIOCSBRK. */
493 1.45 mycroft zs_break(cs, 0);
494 1.45 mycroft
495 1.59 wrstuden /* Turn off PPS capture on last close. */
496 1.59 wrstuden zst->zst_ppsmask = 0;
497 1.59 wrstuden zst->ppsparam.mode = 0;
498 1.59 wrstuden
499 1.45 mycroft /*
500 1.45 mycroft * Hang up if necessary. Wait a bit, so the other side has time to
501 1.45 mycroft * notice even if we immediately open the port again.
502 1.45 mycroft */
503 1.45 mycroft if (ISSET(tp->t_cflag, HUPCL)) {
504 1.45 mycroft zs_modem(zst, 0);
505 1.89 pk simple_unlock(&cs->cs_lock);
506 1.88 pk splx(s);
507 1.88 pk /*
508 1.88 pk * XXX - another process is not prevented from opening
509 1.88 pk * the device during our sleep.
510 1.88 pk */
511 1.45 mycroft (void) tsleep(cs, TTIPRI, ttclos, hz);
512 1.89 pk /* Re-check state in case we were opened during our sleep */
513 1.89 pk if (ISSET(tp->t_state, TS_ISOPEN) || tp->t_wopen != 0)
514 1.89 pk return;
515 1.89 pk
516 1.88 pk s = splzs();
517 1.89 pk simple_lock(&cs->cs_lock);
518 1.45 mycroft }
519 1.45 mycroft
520 1.45 mycroft /* Turn off interrupts if not the console. */
521 1.57 mycroft if (!ISSET(zst->zst_hwflags, ZS_HWFLAG_CONSOLE)) {
522 1.57 mycroft CLR(cs->cs_preg[1], ZSWR1_RIE | ZSWR1_SIE);
523 1.57 mycroft cs->cs_creg[1] = cs->cs_preg[1];
524 1.57 mycroft zs_write_reg(cs, 1, cs->cs_creg[1]);
525 1.57 mycroft }
526 1.45 mycroft
527 1.63 jdc /* Call the power management hook. */
528 1.63 jdc if (cs->disable) {
529 1.63 jdc #ifdef DIAGNOSTIC
530 1.63 jdc if (!cs->enabled)
531 1.63 jdc panic("zs_shutdown: not enabled?");
532 1.63 jdc #endif
533 1.63 jdc (*cs->disable)(zst->zst_cs);
534 1.63 jdc }
535 1.63 jdc
536 1.89 pk simple_unlock(&cs->cs_lock);
537 1.45 mycroft splx(s);
538 1.45 mycroft }
539 1.45 mycroft
540 1.1 gwr /*
541 1.1 gwr * Open a zs serial (tty) port.
542 1.1 gwr */
543 1.1 gwr int
544 1.91 fvdl zsopen(dev, flags, mode, p)
545 1.1 gwr dev_t dev;
546 1.1 gwr int flags;
547 1.1 gwr int mode;
548 1.91 fvdl struct proc *p;
549 1.1 gwr {
550 1.45 mycroft struct zstty_softc *zst;
551 1.45 mycroft struct zs_chanstate *cs;
552 1.35 mycroft struct tty *tp;
553 1.45 mycroft int s, s2;
554 1.45 mycroft int error;
555 1.1 gwr
556 1.68 thorpej zst = device_lookup(&zstty_cd, ZSUNIT(dev));
557 1.68 thorpej if (zst == NULL)
558 1.1 gwr return (ENXIO);
559 1.68 thorpej
560 1.1 gwr tp = zst->zst_tty;
561 1.1 gwr cs = zst->zst_cs;
562 1.1 gwr
563 1.1 gwr /* If KGDB took the line, then tp==NULL */
564 1.1 gwr if (tp == NULL)
565 1.1 gwr return (EBUSY);
566 1.1 gwr
567 1.35 mycroft if (ISSET(tp->t_state, TS_ISOPEN) &&
568 1.35 mycroft ISSET(tp->t_state, TS_XCLUDE) &&
569 1.91 fvdl p->p_ucred->cr_uid != 0)
570 1.1 gwr return (EBUSY);
571 1.1 gwr
572 1.1 gwr s = spltty();
573 1.1 gwr
574 1.35 mycroft /*
575 1.35 mycroft * Do the following iff this is a first open.
576 1.35 mycroft */
577 1.45 mycroft if (!ISSET(tp->t_state, TS_ISOPEN) && tp->t_wopen == 0) {
578 1.14 gwr struct termios t;
579 1.50 wrstuden
580 1.50 wrstuden tp->t_dev = dev;
581 1.63 jdc
582 1.63 jdc /* Call the power management hook. */
583 1.63 jdc if (cs->enable) {
584 1.63 jdc if ((*cs->enable)(cs)) {
585 1.63 jdc splx(s);
586 1.63 jdc printf("%s: device enable failed\n",
587 1.63 jdc zst->zst_dev.dv_xname);
588 1.63 jdc return (EIO);
589 1.63 jdc }
590 1.63 jdc }
591 1.35 mycroft
592 1.14 gwr /*
593 1.35 mycroft * Initialize the termios status to the defaults. Add in the
594 1.35 mycroft * sticky bits from TIOCSFLAGS.
595 1.14 gwr */
596 1.20 mycroft t.c_ispeed = 0;
597 1.20 mycroft t.c_ospeed = cs->cs_defspeed;
598 1.20 mycroft t.c_cflag = cs->cs_defcflag;
599 1.35 mycroft if (ISSET(zst->zst_swflags, TIOCFLAG_CLOCAL))
600 1.35 mycroft SET(t.c_cflag, CLOCAL);
601 1.35 mycroft if (ISSET(zst->zst_swflags, TIOCFLAG_CRTSCTS))
602 1.35 mycroft SET(t.c_cflag, CRTSCTS);
603 1.40 mycroft if (ISSET(zst->zst_swflags, TIOCFLAG_CDTRCTS))
604 1.40 mycroft SET(t.c_cflag, CDTRCTS);
605 1.35 mycroft if (ISSET(zst->zst_swflags, TIOCFLAG_MDMBUF))
606 1.35 mycroft SET(t.c_cflag, MDMBUF);
607 1.57 mycroft
608 1.57 mycroft s2 = splzs();
609 1.89 pk simple_lock(&cs->cs_lock);
610 1.57 mycroft
611 1.57 mycroft /*
612 1.57 mycroft * Turn on receiver and status interrupts.
613 1.57 mycroft * We defer the actual write of the register to zsparam(),
614 1.57 mycroft * but we must make sure status interrupts are turned on by
615 1.57 mycroft * the time zsparam() reads the initial rr0 state.
616 1.57 mycroft */
617 1.57 mycroft SET(cs->cs_preg[1], ZSWR1_RIE | ZSWR1_SIE);
618 1.57 mycroft
619 1.59 wrstuden /* Clear PPS capture state on first open. */
620 1.59 wrstuden zst->zst_ppsmask = 0;
621 1.59 wrstuden zst->ppsparam.mode = 0;
622 1.59 wrstuden
623 1.89 pk simple_unlock(&cs->cs_lock);
624 1.57 mycroft splx(s2);
625 1.57 mycroft
626 1.14 gwr /* Make sure zsparam will see changes. */
627 1.14 gwr tp->t_ospeed = 0;
628 1.14 gwr (void) zsparam(tp, &t);
629 1.57 mycroft
630 1.14 gwr /*
631 1.14 gwr * Note: zsparam has done: cflag, ispeed, ospeed
632 1.14 gwr * so we just need to do: iflag, oflag, lflag, cc
633 1.14 gwr * For "raw" mode, just leave all zeros.
634 1.14 gwr */
635 1.35 mycroft if (!ISSET(zst->zst_hwflags, ZS_HWFLAG_RAW)) {
636 1.14 gwr tp->t_iflag = TTYDEF_IFLAG;
637 1.14 gwr tp->t_oflag = TTYDEF_OFLAG;
638 1.14 gwr tp->t_lflag = TTYDEF_LFLAG;
639 1.35 mycroft } else {
640 1.35 mycroft tp->t_iflag = 0;
641 1.35 mycroft tp->t_oflag = 0;
642 1.35 mycroft tp->t_lflag = 0;
643 1.14 gwr }
644 1.19 gwr ttychars(tp);
645 1.1 gwr ttsetwater(tp);
646 1.20 mycroft
647 1.43 mycroft s2 = splzs();
648 1.89 pk simple_lock(&cs->cs_lock);
649 1.43 mycroft
650 1.20 mycroft /*
651 1.20 mycroft * Turn on DTR. We must always do this, even if carrier is not
652 1.20 mycroft * present, because otherwise we'd have to use TIOCSDTR
653 1.28 mycroft * immediately after setting CLOCAL, which applications do not
654 1.28 mycroft * expect. We always assert DTR while the device is open
655 1.28 mycroft * unless explicitly requested to deassert it.
656 1.20 mycroft */
657 1.20 mycroft zs_modem(zst, 1);
658 1.20 mycroft
659 1.20 mycroft /* Clear the input ring, and unblock. */
660 1.35 mycroft zst->zst_rbget = zst->zst_rbput = zst->zst_rbuf;
661 1.35 mycroft zst->zst_rbavail = zstty_rbuf_size;
662 1.20 mycroft zs_iflush(cs);
663 1.35 mycroft CLR(zst->zst_rx_flags, RX_ANY_BLOCK);
664 1.24 mycroft zs_hwiflow(zst);
665 1.26 mycroft
666 1.89 pk simple_unlock(&cs->cs_lock);
667 1.26 mycroft splx(s2);
668 1.1 gwr }
669 1.14 gwr
670 1.47 mycroft splx(s);
671 1.1 gwr
672 1.47 mycroft error = ttyopen(tp, ZSDIALOUT(dev), ISSET(flags, O_NONBLOCK));
673 1.47 mycroft if (error)
674 1.47 mycroft goto bad;
675 1.45 mycroft
676 1.70 eeh error = (*tp->t_linesw->l_open)(dev, tp);
677 1.45 mycroft if (error)
678 1.45 mycroft goto bad;
679 1.45 mycroft
680 1.45 mycroft return (0);
681 1.45 mycroft
682 1.45 mycroft bad:
683 1.45 mycroft if (!ISSET(tp->t_state, TS_ISOPEN) && tp->t_wopen == 0) {
684 1.45 mycroft /*
685 1.45 mycroft * We failed to open the device, and nobody else had it opened.
686 1.45 mycroft * Clean up the state as appropriate.
687 1.45 mycroft */
688 1.45 mycroft zs_shutdown(zst);
689 1.45 mycroft }
690 1.45 mycroft
691 1.1 gwr return (error);
692 1.1 gwr }
693 1.1 gwr
694 1.1 gwr /*
695 1.1 gwr * Close a zs serial port.
696 1.1 gwr */
697 1.1 gwr int
698 1.91 fvdl zsclose(dev, flags, mode, p)
699 1.1 gwr dev_t dev;
700 1.1 gwr int flags;
701 1.1 gwr int mode;
702 1.91 fvdl struct proc *p;
703 1.1 gwr {
704 1.68 thorpej struct zstty_softc *zst = device_lookup(&zstty_cd, ZSUNIT(dev));
705 1.35 mycroft struct tty *tp = zst->zst_tty;
706 1.1 gwr
707 1.1 gwr /* XXX This is for cons.c. */
708 1.35 mycroft if (!ISSET(tp->t_state, TS_ISOPEN))
709 1.1 gwr return 0;
710 1.1 gwr
711 1.70 eeh (*tp->t_linesw->l_close)(tp, flags);
712 1.20 mycroft ttyclose(tp);
713 1.20 mycroft
714 1.47 mycroft if (!ISSET(tp->t_state, TS_ISOPEN) && tp->t_wopen == 0) {
715 1.47 mycroft /*
716 1.47 mycroft * Although we got a last close, the device may still be in
717 1.47 mycroft * use; e.g. if this was the dialout node, and there are still
718 1.47 mycroft * processes waiting for carrier on the non-dialout node.
719 1.47 mycroft */
720 1.47 mycroft zs_shutdown(zst);
721 1.47 mycroft }
722 1.14 gwr
723 1.1 gwr return (0);
724 1.1 gwr }
725 1.1 gwr
726 1.1 gwr /*
727 1.1 gwr * Read/write zs serial port.
728 1.1 gwr */
729 1.1 gwr int
730 1.1 gwr zsread(dev, uio, flags)
731 1.1 gwr dev_t dev;
732 1.1 gwr struct uio *uio;
733 1.1 gwr int flags;
734 1.1 gwr {
735 1.68 thorpej struct zstty_softc *zst = device_lookup(&zstty_cd, ZSUNIT(dev));
736 1.35 mycroft struct tty *tp = zst->zst_tty;
737 1.1 gwr
738 1.70 eeh return ((*tp->t_linesw->l_read)(tp, uio, flags));
739 1.1 gwr }
740 1.1 gwr
741 1.1 gwr int
742 1.1 gwr zswrite(dev, uio, flags)
743 1.1 gwr dev_t dev;
744 1.1 gwr struct uio *uio;
745 1.1 gwr int flags;
746 1.1 gwr {
747 1.68 thorpej struct zstty_softc *zst = device_lookup(&zstty_cd, ZSUNIT(dev));
748 1.35 mycroft struct tty *tp = zst->zst_tty;
749 1.1 gwr
750 1.70 eeh return ((*tp->t_linesw->l_write)(tp, uio, flags));
751 1.75 scw }
752 1.75 scw
753 1.75 scw int
754 1.91 fvdl zspoll(dev, events, p)
755 1.75 scw dev_t dev;
756 1.75 scw int events;
757 1.91 fvdl struct proc *p;
758 1.75 scw {
759 1.75 scw struct zstty_softc *zst = device_lookup(&zstty_cd, ZSUNIT(dev));
760 1.75 scw struct tty *tp = zst->zst_tty;
761 1.75 scw
762 1.91 fvdl return ((*tp->t_linesw->l_poll)(tp, events, p));
763 1.1 gwr }
764 1.1 gwr
765 1.1 gwr int
766 1.91 fvdl zsioctl(dev, cmd, data, flag, p)
767 1.1 gwr dev_t dev;
768 1.1 gwr u_long cmd;
769 1.1 gwr caddr_t data;
770 1.1 gwr int flag;
771 1.91 fvdl struct proc *p;
772 1.1 gwr {
773 1.68 thorpej struct zstty_softc *zst = device_lookup(&zstty_cd, ZSUNIT(dev));
774 1.35 mycroft struct zs_chanstate *cs = zst->zst_cs;
775 1.35 mycroft struct tty *tp = zst->zst_tty;
776 1.35 mycroft int error;
777 1.43 mycroft int s;
778 1.1 gwr
779 1.91 fvdl error = (*tp->t_linesw->l_ioctl)(tp, cmd, data, flag, p);
780 1.79 atatat if (error != EPASSTHROUGH)
781 1.1 gwr return (error);
782 1.14 gwr
783 1.91 fvdl error = ttioctl(tp, cmd, data, flag, p);
784 1.79 atatat if (error != EPASSTHROUGH)
785 1.1 gwr return (error);
786 1.1 gwr
787 1.14 gwr #ifdef ZS_MD_IOCTL
788 1.79 atatat error = ZS_MD_IOCTL(cs, cmd, data);
789 1.79 atatat if (error != EPASSTHROUGH)
790 1.14 gwr return (error);
791 1.14 gwr #endif /* ZS_MD_IOCTL */
792 1.44 mycroft
793 1.44 mycroft error = 0;
794 1.14 gwr
795 1.43 mycroft s = splzs();
796 1.89 pk simple_lock(&cs->cs_lock);
797 1.43 mycroft
798 1.1 gwr switch (cmd) {
799 1.1 gwr case TIOCSBRK:
800 1.1 gwr zs_break(cs, 1);
801 1.1 gwr break;
802 1.1 gwr
803 1.1 gwr case TIOCCBRK:
804 1.1 gwr zs_break(cs, 0);
805 1.1 gwr break;
806 1.1 gwr
807 1.1 gwr case TIOCGFLAGS:
808 1.1 gwr *(int *)data = zst->zst_swflags;
809 1.1 gwr break;
810 1.1 gwr
811 1.1 gwr case TIOCSFLAGS:
812 1.91 fvdl error = suser(p->p_ucred, &p->p_acflag);
813 1.20 mycroft if (error)
814 1.43 mycroft break;
815 1.20 mycroft zst->zst_swflags = *(int *)data;
816 1.1 gwr break;
817 1.1 gwr
818 1.1 gwr case TIOCSDTR:
819 1.1 gwr zs_modem(zst, 1);
820 1.1 gwr break;
821 1.1 gwr
822 1.1 gwr case TIOCCDTR:
823 1.1 gwr zs_modem(zst, 0);
824 1.1 gwr break;
825 1.1 gwr
826 1.1 gwr case TIOCMSET:
827 1.1 gwr case TIOCMBIS:
828 1.1 gwr case TIOCMBIC:
829 1.58 mycroft tiocm_to_zs(zst, cmd, *(int *)data);
830 1.54 christos break;
831 1.54 christos
832 1.1 gwr case TIOCMGET:
833 1.58 mycroft *(int *)data = zs_to_tiocm(zst);
834 1.54 christos break;
835 1.54 christos
836 1.62 jonathan case PPS_IOC_CREATE:
837 1.59 wrstuden break;
838 1.59 wrstuden
839 1.62 jonathan case PPS_IOC_DESTROY:
840 1.59 wrstuden break;
841 1.59 wrstuden
842 1.62 jonathan case PPS_IOC_GETPARAMS: {
843 1.59 wrstuden pps_params_t *pp;
844 1.59 wrstuden pp = (pps_params_t *)data;
845 1.59 wrstuden *pp = zst->ppsparam;
846 1.59 wrstuden break;
847 1.59 wrstuden }
848 1.59 wrstuden
849 1.62 jonathan case PPS_IOC_SETPARAMS: {
850 1.59 wrstuden pps_params_t *pp;
851 1.59 wrstuden int mode;
852 1.59 wrstuden if (cs->cs_rr0_pps == 0) {
853 1.59 wrstuden error = EINVAL;
854 1.59 wrstuden break;
855 1.59 wrstuden }
856 1.59 wrstuden pp = (pps_params_t *)data;
857 1.59 wrstuden if (pp->mode & ~zsppscap) {
858 1.59 wrstuden error = EINVAL;
859 1.59 wrstuden break;
860 1.59 wrstuden }
861 1.59 wrstuden zst->ppsparam = *pp;
862 1.59 wrstuden /*
863 1.59 wrstuden * compute masks from user-specified timestamp state.
864 1.59 wrstuden */
865 1.59 wrstuden mode = zst->ppsparam.mode;
866 1.59 wrstuden #ifdef PPS_SYNC
867 1.59 wrstuden if (mode & PPS_HARDPPSONASSERT) {
868 1.59 wrstuden mode |= PPS_CAPTUREASSERT;
869 1.59 wrstuden /* XXX revoke any previous HARDPPS source */
870 1.59 wrstuden }
871 1.59 wrstuden if (mode & PPS_HARDPPSONCLEAR) {
872 1.59 wrstuden mode |= PPS_CAPTURECLEAR;
873 1.59 wrstuden /* XXX revoke any previous HARDPPS source */
874 1.59 wrstuden }
875 1.59 wrstuden #endif /* PPS_SYNC */
876 1.59 wrstuden switch (mode & PPS_CAPTUREBOTH) {
877 1.59 wrstuden case 0:
878 1.59 wrstuden zst->zst_ppsmask = 0;
879 1.59 wrstuden break;
880 1.59 wrstuden
881 1.59 wrstuden case PPS_CAPTUREASSERT:
882 1.59 wrstuden zst->zst_ppsmask = ZSRR0_DCD;
883 1.59 wrstuden zst->zst_ppsassert = ZSRR0_DCD;
884 1.59 wrstuden zst->zst_ppsclear = -1;
885 1.59 wrstuden break;
886 1.59 wrstuden
887 1.59 wrstuden case PPS_CAPTURECLEAR:
888 1.59 wrstuden zst->zst_ppsmask = ZSRR0_DCD;
889 1.59 wrstuden zst->zst_ppsassert = -1;
890 1.59 wrstuden zst->zst_ppsclear = 0;
891 1.59 wrstuden break;
892 1.59 wrstuden
893 1.59 wrstuden case PPS_CAPTUREBOTH:
894 1.59 wrstuden zst->zst_ppsmask = ZSRR0_DCD;
895 1.59 wrstuden zst->zst_ppsassert = ZSRR0_DCD;
896 1.59 wrstuden zst->zst_ppsclear = 0;
897 1.59 wrstuden break;
898 1.59 wrstuden
899 1.59 wrstuden default:
900 1.59 wrstuden error = EINVAL;
901 1.59 wrstuden break;
902 1.59 wrstuden }
903 1.59 wrstuden
904 1.59 wrstuden /*
905 1.59 wrstuden * Now update interrupts.
906 1.59 wrstuden */
907 1.59 wrstuden zs_maskintr(zst);
908 1.59 wrstuden /*
909 1.59 wrstuden * If nothing is being transmitted, set up new current values,
910 1.59 wrstuden * else mark them as pending.
911 1.59 wrstuden */
912 1.59 wrstuden if (!cs->cs_heldchange) {
913 1.59 wrstuden if (zst->zst_tx_busy) {
914 1.59 wrstuden zst->zst_heldtbc = zst->zst_tbc;
915 1.59 wrstuden zst->zst_tbc = 0;
916 1.59 wrstuden cs->cs_heldchange = 1;
917 1.59 wrstuden } else
918 1.59 wrstuden zs_loadchannelregs(cs);
919 1.59 wrstuden }
920 1.59 wrstuden
921 1.59 wrstuden break;
922 1.59 wrstuden }
923 1.59 wrstuden
924 1.62 jonathan case PPS_IOC_GETCAP:
925 1.59 wrstuden *(int *)data = zsppscap;
926 1.59 wrstuden break;
927 1.59 wrstuden
928 1.62 jonathan case PPS_IOC_FETCH: {
929 1.59 wrstuden pps_info_t *pi;
930 1.59 wrstuden pi = (pps_info_t *)data;
931 1.59 wrstuden *pi = zst->ppsinfo;
932 1.59 wrstuden break;
933 1.59 wrstuden }
934 1.59 wrstuden
935 1.59 wrstuden case TIOCDCDTIMESTAMP: /* XXX old, overloaded API used by xntpd v3 */
936 1.59 wrstuden if (cs->cs_rr0_pps == 0) {
937 1.59 wrstuden error = EINVAL;
938 1.59 wrstuden break;
939 1.59 wrstuden }
940 1.59 wrstuden /*
941 1.59 wrstuden * Some GPS clocks models use the falling rather than
942 1.59 wrstuden * rising edge as the on-the-second signal.
943 1.59 wrstuden * The old API has no way to specify PPS polarity.
944 1.59 wrstuden */
945 1.59 wrstuden zst->zst_ppsmask = ZSRR0_DCD;
946 1.59 wrstuden #ifndef PPS_TRAILING_EDGE
947 1.59 wrstuden zst->zst_ppsassert = ZSRR0_DCD;
948 1.59 wrstuden zst->zst_ppsclear = -1;
949 1.59 wrstuden TIMESPEC_TO_TIMEVAL((struct timeval *)data,
950 1.59 wrstuden &zst->ppsinfo.assert_timestamp);
951 1.59 wrstuden #else
952 1.59 wrstuden zst->zst_ppsassert = -1;
953 1.59 wrstuden zst->zst_ppsclear = 01;
954 1.59 wrstuden TIMESPEC_TO_TIMEVAL((struct timeval *)data,
955 1.59 wrstuden &zst->ppsinfo.clear_timestamp);
956 1.59 wrstuden #endif
957 1.59 wrstuden /*
958 1.59 wrstuden * Now update interrupts.
959 1.59 wrstuden */
960 1.59 wrstuden zs_maskintr(zst);
961 1.59 wrstuden /*
962 1.59 wrstuden * If nothing is being transmitted, set up new current values,
963 1.59 wrstuden * else mark them as pending.
964 1.59 wrstuden */
965 1.59 wrstuden if (!cs->cs_heldchange) {
966 1.59 wrstuden if (zst->zst_tx_busy) {
967 1.59 wrstuden zst->zst_heldtbc = zst->zst_tbc;
968 1.59 wrstuden zst->zst_tbc = 0;
969 1.59 wrstuden cs->cs_heldchange = 1;
970 1.59 wrstuden } else
971 1.59 wrstuden zs_loadchannelregs(cs);
972 1.59 wrstuden }
973 1.59 wrstuden
974 1.59 wrstuden break;
975 1.59 wrstuden
976 1.1 gwr default:
977 1.79 atatat error = EPASSTHROUGH;
978 1.43 mycroft break;
979 1.1 gwr }
980 1.43 mycroft
981 1.89 pk simple_unlock(&cs->cs_lock);
982 1.43 mycroft splx(s);
983 1.43 mycroft
984 1.43 mycroft return (error);
985 1.1 gwr }
986 1.1 gwr
987 1.1 gwr /*
988 1.1 gwr * Start or restart transmission.
989 1.1 gwr */
990 1.1 gwr static void
991 1.1 gwr zsstart(tp)
992 1.35 mycroft struct tty *tp;
993 1.1 gwr {
994 1.68 thorpej struct zstty_softc *zst = device_lookup(&zstty_cd, ZSUNIT(tp->t_dev));
995 1.35 mycroft struct zs_chanstate *cs = zst->zst_cs;
996 1.35 mycroft int s;
997 1.1 gwr
998 1.1 gwr s = spltty();
999 1.35 mycroft if (ISSET(tp->t_state, TS_BUSY | TS_TIMEOUT | TS_TTSTOP))
1000 1.1 gwr goto out;
1001 1.14 gwr if (zst->zst_tx_stopped)
1002 1.35 mycroft goto out;
1003 1.8 gwr
1004 1.1 gwr if (tp->t_outq.c_cc <= tp->t_lowat) {
1005 1.35 mycroft if (ISSET(tp->t_state, TS_ASLEEP)) {
1006 1.35 mycroft CLR(tp->t_state, TS_ASLEEP);
1007 1.1 gwr wakeup((caddr_t)&tp->t_outq);
1008 1.1 gwr }
1009 1.1 gwr selwakeup(&tp->t_wsel);
1010 1.20 mycroft if (tp->t_outq.c_cc == 0)
1011 1.35 mycroft goto out;
1012 1.1 gwr }
1013 1.1 gwr
1014 1.20 mycroft /* Grab the first contiguous region of buffer space. */
1015 1.20 mycroft {
1016 1.20 mycroft u_char *tba;
1017 1.20 mycroft int tbc;
1018 1.20 mycroft
1019 1.20 mycroft tba = tp->t_outq.c_cf;
1020 1.20 mycroft tbc = ndqb(&tp->t_outq, 0);
1021 1.20 mycroft
1022 1.20 mycroft (void) splzs();
1023 1.89 pk simple_lock(&cs->cs_lock);
1024 1.20 mycroft
1025 1.20 mycroft zst->zst_tba = tba;
1026 1.20 mycroft zst->zst_tbc = tbc;
1027 1.20 mycroft }
1028 1.8 gwr
1029 1.35 mycroft SET(tp->t_state, TS_BUSY);
1030 1.20 mycroft zst->zst_tx_busy = 1;
1031 1.1 gwr
1032 1.20 mycroft /* Enable transmit completion interrupts if necessary. */
1033 1.35 mycroft if (!ISSET(cs->cs_preg[1], ZSWR1_TIE)) {
1034 1.35 mycroft SET(cs->cs_preg[1], ZSWR1_TIE);
1035 1.8 gwr cs->cs_creg[1] = cs->cs_preg[1];
1036 1.2 gwr zs_write_reg(cs, 1, cs->cs_creg[1]);
1037 1.20 mycroft }
1038 1.20 mycroft
1039 1.20 mycroft /* Output the first character of the contiguous buffer. */
1040 1.35 mycroft {
1041 1.35 mycroft zs_write_data(cs, *zst->zst_tba);
1042 1.35 mycroft zst->zst_tbc--;
1043 1.35 mycroft zst->zst_tba++;
1044 1.1 gwr }
1045 1.89 pk simple_unlock(&cs->cs_lock);
1046 1.1 gwr out:
1047 1.1 gwr splx(s);
1048 1.20 mycroft return;
1049 1.1 gwr }
1050 1.1 gwr
1051 1.1 gwr /*
1052 1.1 gwr * Stop output, e.g., for ^S or output flush.
1053 1.1 gwr */
1054 1.10 mycroft void
1055 1.1 gwr zsstop(tp, flag)
1056 1.1 gwr struct tty *tp;
1057 1.1 gwr int flag;
1058 1.1 gwr {
1059 1.68 thorpej struct zstty_softc *zst = device_lookup(&zstty_cd, ZSUNIT(tp->t_dev));
1060 1.35 mycroft int s;
1061 1.1 gwr
1062 1.1 gwr s = splzs();
1063 1.35 mycroft if (ISSET(tp->t_state, TS_BUSY)) {
1064 1.35 mycroft /* Stop transmitting at the next chunk. */
1065 1.1 gwr zst->zst_tbc = 0;
1066 1.8 gwr zst->zst_heldtbc = 0;
1067 1.35 mycroft if (!ISSET(tp->t_state, TS_TTSTOP))
1068 1.35 mycroft SET(tp->t_state, TS_FLUSH);
1069 1.1 gwr }
1070 1.1 gwr splx(s);
1071 1.1 gwr }
1072 1.1 gwr
1073 1.1 gwr /*
1074 1.1 gwr * Set ZS tty parameters from termios.
1075 1.1 gwr * XXX - Should just copy the whole termios after
1076 1.1 gwr * making sure all the changes could be done.
1077 1.1 gwr */
1078 1.1 gwr static int
1079 1.1 gwr zsparam(tp, t)
1080 1.35 mycroft struct tty *tp;
1081 1.35 mycroft struct termios *t;
1082 1.1 gwr {
1083 1.68 thorpej struct zstty_softc *zst = device_lookup(&zstty_cd, ZSUNIT(tp->t_dev));
1084 1.35 mycroft struct zs_chanstate *cs = zst->zst_cs;
1085 1.86 thorpej int ospeed;
1086 1.86 thorpej tcflag_t cflag;
1087 1.59 wrstuden u_char tmp3, tmp4, tmp5;
1088 1.35 mycroft int s, error;
1089 1.1 gwr
1090 1.35 mycroft ospeed = t->c_ospeed;
1091 1.14 gwr cflag = t->c_cflag;
1092 1.1 gwr
1093 1.35 mycroft /* Check requested parameters. */
1094 1.35 mycroft if (ospeed < 0)
1095 1.35 mycroft return (EINVAL);
1096 1.35 mycroft if (t->c_ispeed && t->c_ispeed != ospeed)
1097 1.1 gwr return (EINVAL);
1098 1.14 gwr
1099 1.14 gwr /*
1100 1.20 mycroft * For the console, always force CLOCAL and !HUPCL, so that the port
1101 1.20 mycroft * is always active.
1102 1.20 mycroft */
1103 1.35 mycroft if (ISSET(zst->zst_swflags, TIOCFLAG_SOFTCAR) ||
1104 1.35 mycroft ISSET(zst->zst_hwflags, ZS_HWFLAG_CONSOLE)) {
1105 1.35 mycroft SET(cflag, CLOCAL);
1106 1.35 mycroft CLR(cflag, HUPCL);
1107 1.20 mycroft }
1108 1.20 mycroft
1109 1.20 mycroft /*
1110 1.14 gwr * Only whack the UART when params change.
1111 1.14 gwr * Some callers need to clear tp->t_ospeed
1112 1.14 gwr * to make sure initialization gets done.
1113 1.14 gwr */
1114 1.35 mycroft if (tp->t_ospeed == ospeed &&
1115 1.20 mycroft tp->t_cflag == cflag)
1116 1.1 gwr return (0);
1117 1.1 gwr
1118 1.14 gwr /*
1119 1.14 gwr * Call MD functions to deal with changed
1120 1.14 gwr * clock modes or H/W flow control modes.
1121 1.14 gwr * The BRG divisor is set now. (reg 12,13)
1122 1.14 gwr */
1123 1.35 mycroft error = zs_set_speed(cs, ospeed);
1124 1.14 gwr if (error)
1125 1.14 gwr return (error);
1126 1.14 gwr error = zs_set_modes(cs, cflag);
1127 1.14 gwr if (error)
1128 1.14 gwr return (error);
1129 1.1 gwr
1130 1.1 gwr /*
1131 1.1 gwr * Block interrupts so that state will not
1132 1.1 gwr * be altered until we are done setting it up.
1133 1.14 gwr *
1134 1.1 gwr * Initial values in cs_preg are set before
1135 1.1 gwr * our attach routine is called. The master
1136 1.1 gwr * interrupt enable is handled by zsc.c
1137 1.14 gwr *
1138 1.1 gwr */
1139 1.14 gwr s = splzs();
1140 1.89 pk simple_lock(&cs->cs_lock);
1141 1.29 mycroft
1142 1.59 wrstuden /*
1143 1.59 wrstuden * Recalculate which status ints to enable.
1144 1.59 wrstuden */
1145 1.59 wrstuden zs_maskintr(zst);
1146 1.1 gwr
1147 1.14 gwr /* Recompute character size bits. */
1148 1.35 mycroft tmp3 = cs->cs_preg[3];
1149 1.35 mycroft tmp5 = cs->cs_preg[5];
1150 1.35 mycroft CLR(tmp3, ZSWR3_RXSIZE);
1151 1.35 mycroft CLR(tmp5, ZSWR5_TXSIZE);
1152 1.35 mycroft switch (ISSET(cflag, CSIZE)) {
1153 1.1 gwr case CS5:
1154 1.35 mycroft SET(tmp3, ZSWR3_RX_5);
1155 1.35 mycroft SET(tmp5, ZSWR5_TX_5);
1156 1.1 gwr break;
1157 1.1 gwr case CS6:
1158 1.35 mycroft SET(tmp3, ZSWR3_RX_6);
1159 1.35 mycroft SET(tmp5, ZSWR5_TX_6);
1160 1.1 gwr break;
1161 1.1 gwr case CS7:
1162 1.35 mycroft SET(tmp3, ZSWR3_RX_7);
1163 1.35 mycroft SET(tmp5, ZSWR5_TX_7);
1164 1.1 gwr break;
1165 1.1 gwr case CS8:
1166 1.35 mycroft SET(tmp3, ZSWR3_RX_8);
1167 1.35 mycroft SET(tmp5, ZSWR5_TX_8);
1168 1.1 gwr break;
1169 1.1 gwr }
1170 1.14 gwr cs->cs_preg[3] = tmp3;
1171 1.14 gwr cs->cs_preg[5] = tmp5;
1172 1.14 gwr
1173 1.14 gwr /*
1174 1.14 gwr * Recompute the stop bits and parity bits. Note that
1175 1.14 gwr * zs_set_speed() may have set clock selection bits etc.
1176 1.14 gwr * in wr4, so those must preserved.
1177 1.14 gwr */
1178 1.14 gwr tmp4 = cs->cs_preg[4];
1179 1.35 mycroft CLR(tmp4, ZSWR4_SBMASK | ZSWR4_PARMASK);
1180 1.35 mycroft if (ISSET(cflag, CSTOPB))
1181 1.35 mycroft SET(tmp4, ZSWR4_TWOSB);
1182 1.35 mycroft else
1183 1.35 mycroft SET(tmp4, ZSWR4_ONESB);
1184 1.35 mycroft if (!ISSET(cflag, PARODD))
1185 1.35 mycroft SET(tmp4, ZSWR4_EVENP);
1186 1.35 mycroft if (ISSET(cflag, PARENB))
1187 1.35 mycroft SET(tmp4, ZSWR4_PARENB);
1188 1.1 gwr cs->cs_preg[4] = tmp4;
1189 1.1 gwr
1190 1.35 mycroft /* And copy to tty. */
1191 1.35 mycroft tp->t_ispeed = 0;
1192 1.35 mycroft tp->t_ospeed = ospeed;
1193 1.35 mycroft tp->t_cflag = cflag;
1194 1.8 gwr
1195 1.8 gwr /*
1196 1.1 gwr * If nothing is being transmitted, set up new current values,
1197 1.1 gwr * else mark them as pending.
1198 1.1 gwr */
1199 1.25 mycroft if (!cs->cs_heldchange) {
1200 1.8 gwr if (zst->zst_tx_busy) {
1201 1.1 gwr zst->zst_heldtbc = zst->zst_tbc;
1202 1.1 gwr zst->zst_tbc = 0;
1203 1.25 mycroft cs->cs_heldchange = 1;
1204 1.25 mycroft } else
1205 1.1 gwr zs_loadchannelregs(cs);
1206 1.1 gwr }
1207 1.20 mycroft
1208 1.57 mycroft /*
1209 1.57 mycroft * If hardware flow control is disabled, turn off the buffer water
1210 1.57 mycroft * marks and unblock any soft flow control state. Otherwise, enable
1211 1.57 mycroft * the water marks.
1212 1.57 mycroft */
1213 1.35 mycroft if (!ISSET(cflag, CHWFLOW)) {
1214 1.35 mycroft zst->zst_r_hiwat = 0;
1215 1.35 mycroft zst->zst_r_lowat = 0;
1216 1.35 mycroft if (ISSET(zst->zst_rx_flags, RX_TTY_OVERFLOWED)) {
1217 1.35 mycroft CLR(zst->zst_rx_flags, RX_TTY_OVERFLOWED);
1218 1.35 mycroft zst->zst_rx_ready = 1;
1219 1.35 mycroft cs->cs_softreq = 1;
1220 1.35 mycroft }
1221 1.35 mycroft if (ISSET(zst->zst_rx_flags, RX_TTY_BLOCKED|RX_IBUF_BLOCKED)) {
1222 1.35 mycroft CLR(zst->zst_rx_flags, RX_TTY_BLOCKED|RX_IBUF_BLOCKED);
1223 1.33 mycroft zs_hwiflow(zst);
1224 1.33 mycroft }
1225 1.33 mycroft } else {
1226 1.35 mycroft zst->zst_r_hiwat = zstty_rbuf_hiwat;
1227 1.35 mycroft zst->zst_r_lowat = zstty_rbuf_lowat;
1228 1.33 mycroft }
1229 1.33 mycroft
1230 1.56 wrstuden /*
1231 1.57 mycroft * Force a recheck of the hardware carrier and flow control status,
1232 1.57 mycroft * since we may have changed which bits we're looking at.
1233 1.56 wrstuden */
1234 1.57 mycroft zstty_stint(cs, 1);
1235 1.56 wrstuden
1236 1.89 pk simple_unlock(&cs->cs_lock);
1237 1.1 gwr splx(s);
1238 1.15 gwr
1239 1.20 mycroft /*
1240 1.57 mycroft * If hardware flow control is disabled, unblock any hard flow control
1241 1.57 mycroft * state.
1242 1.55 wrstuden */
1243 1.35 mycroft if (!ISSET(cflag, CHWFLOW)) {
1244 1.14 gwr if (zst->zst_tx_stopped) {
1245 1.14 gwr zst->zst_tx_stopped = 0;
1246 1.14 gwr zsstart(tp);
1247 1.14 gwr }
1248 1.14 gwr }
1249 1.14 gwr
1250 1.57 mycroft zstty_softint(cs);
1251 1.57 mycroft
1252 1.1 gwr return (0);
1253 1.1 gwr }
1254 1.1 gwr
1255 1.1 gwr /*
1256 1.87 wiz * Compute interrupt enable bits and set in the pending bits. Called both
1257 1.59 wrstuden * in zsparam() and when PPS (pulse per second timing) state changes.
1258 1.59 wrstuden * Must be called at splzs().
1259 1.59 wrstuden */
1260 1.59 wrstuden static void
1261 1.59 wrstuden zs_maskintr(zst)
1262 1.59 wrstuden struct zstty_softc *zst;
1263 1.59 wrstuden {
1264 1.59 wrstuden struct zs_chanstate *cs = zst->zst_cs;
1265 1.59 wrstuden int tmp15;
1266 1.59 wrstuden
1267 1.59 wrstuden cs->cs_rr0_mask = cs->cs_rr0_cts | cs->cs_rr0_dcd;
1268 1.59 wrstuden if (zst->zst_ppsmask != 0)
1269 1.59 wrstuden cs->cs_rr0_mask |= cs->cs_rr0_pps;
1270 1.59 wrstuden tmp15 = cs->cs_preg[15];
1271 1.59 wrstuden if (ISSET(cs->cs_rr0_mask, ZSRR0_DCD))
1272 1.59 wrstuden SET(tmp15, ZSWR15_DCD_IE);
1273 1.59 wrstuden else
1274 1.59 wrstuden CLR(tmp15, ZSWR15_DCD_IE);
1275 1.59 wrstuden if (ISSET(cs->cs_rr0_mask, ZSRR0_CTS))
1276 1.59 wrstuden SET(tmp15, ZSWR15_CTS_IE);
1277 1.59 wrstuden else
1278 1.59 wrstuden CLR(tmp15, ZSWR15_CTS_IE);
1279 1.59 wrstuden cs->cs_preg[15] = tmp15;
1280 1.59 wrstuden }
1281 1.59 wrstuden
1282 1.59 wrstuden
1283 1.59 wrstuden /*
1284 1.1 gwr * Raise or lower modem control (DTR/RTS) signals. If a character is
1285 1.1 gwr * in transmission, the change is deferred.
1286 1.89 pk * Called at splzs() and with the channel lock held.
1287 1.1 gwr */
1288 1.1 gwr static void
1289 1.1 gwr zs_modem(zst, onoff)
1290 1.1 gwr struct zstty_softc *zst;
1291 1.1 gwr int onoff;
1292 1.1 gwr {
1293 1.81 ad struct zs_chanstate *cs = zst->zst_cs, *ccs;
1294 1.1 gwr
1295 1.14 gwr if (cs->cs_wr5_dtr == 0)
1296 1.14 gwr return;
1297 1.1 gwr
1298 1.81 ad ccs = (cs->cs_ctl_chan != NULL ? cs->cs_ctl_chan : cs);
1299 1.81 ad
1300 1.24 mycroft if (onoff)
1301 1.81 ad SET(ccs->cs_preg[5], cs->cs_wr5_dtr);
1302 1.24 mycroft else
1303 1.81 ad CLR(ccs->cs_preg[5], cs->cs_wr5_dtr);
1304 1.14 gwr
1305 1.25 mycroft if (!cs->cs_heldchange) {
1306 1.8 gwr if (zst->zst_tx_busy) {
1307 1.1 gwr zst->zst_heldtbc = zst->zst_tbc;
1308 1.1 gwr zst->zst_tbc = 0;
1309 1.25 mycroft cs->cs_heldchange = 1;
1310 1.25 mycroft } else
1311 1.25 mycroft zs_loadchannelregs(cs);
1312 1.1 gwr }
1313 1.54 christos }
1314 1.54 christos
1315 1.89 pk /*
1316 1.89 pk * Set modem bits.
1317 1.89 pk * Called at splzs() and with the channel lock held.
1318 1.89 pk */
1319 1.54 christos static void
1320 1.58 mycroft tiocm_to_zs(zst, how, ttybits)
1321 1.54 christos struct zstty_softc *zst;
1322 1.69 toshii u_long how;
1323 1.69 toshii int ttybits;
1324 1.54 christos {
1325 1.81 ad struct zs_chanstate *cs = zst->zst_cs, *ccs;
1326 1.58 mycroft u_char zsbits;
1327 1.54 christos
1328 1.81 ad ccs = (cs->cs_ctl_chan != NULL ? cs->cs_ctl_chan : cs);
1329 1.81 ad
1330 1.57 mycroft zsbits = 0;
1331 1.57 mycroft if (ISSET(ttybits, TIOCM_DTR))
1332 1.57 mycroft SET(zsbits, ZSWR5_DTR);
1333 1.57 mycroft if (ISSET(ttybits, TIOCM_RTS))
1334 1.57 mycroft SET(zsbits, ZSWR5_RTS);
1335 1.54 christos
1336 1.54 christos switch (how) {
1337 1.54 christos case TIOCMBIC:
1338 1.81 ad CLR(ccs->cs_preg[5], zsbits);
1339 1.54 christos break;
1340 1.54 christos
1341 1.54 christos case TIOCMBIS:
1342 1.81 ad SET(ccs->cs_preg[5], zsbits);
1343 1.54 christos break;
1344 1.54 christos
1345 1.54 christos case TIOCMSET:
1346 1.81 ad CLR(ccs->cs_preg[5], ZSWR5_RTS | ZSWR5_DTR);
1347 1.81 ad SET(ccs->cs_preg[5], zsbits);
1348 1.54 christos break;
1349 1.54 christos }
1350 1.54 christos
1351 1.54 christos if (!cs->cs_heldchange) {
1352 1.54 christos if (zst->zst_tx_busy) {
1353 1.54 christos zst->zst_heldtbc = zst->zst_tbc;
1354 1.54 christos zst->zst_tbc = 0;
1355 1.54 christos cs->cs_heldchange = 1;
1356 1.57 mycroft } else
1357 1.57 mycroft zs_loadchannelregs(cs);
1358 1.54 christos }
1359 1.54 christos }
1360 1.54 christos
1361 1.89 pk /*
1362 1.89 pk * Get modem bits.
1363 1.89 pk * Called at splzs() and with the channel lock held.
1364 1.89 pk */
1365 1.54 christos static int
1366 1.58 mycroft zs_to_tiocm(zst)
1367 1.58 mycroft struct zstty_softc *zst;
1368 1.54 christos {
1369 1.81 ad struct zs_chanstate *cs = zst->zst_cs, *ccs;
1370 1.57 mycroft u_char zsbits;
1371 1.57 mycroft int ttybits = 0;
1372 1.54 christos
1373 1.81 ad ccs = (cs->cs_ctl_chan != NULL ? cs->cs_ctl_chan : cs);
1374 1.81 ad
1375 1.81 ad zsbits = ccs->cs_preg[5];
1376 1.57 mycroft if (ISSET(zsbits, ZSWR5_DTR))
1377 1.57 mycroft SET(ttybits, TIOCM_DTR);
1378 1.57 mycroft if (ISSET(zsbits, ZSWR5_RTS))
1379 1.57 mycroft SET(ttybits, TIOCM_RTS);
1380 1.57 mycroft
1381 1.57 mycroft zsbits = cs->cs_rr0;
1382 1.57 mycroft if (ISSET(zsbits, ZSRR0_DCD))
1383 1.57 mycroft SET(ttybits, TIOCM_CD);
1384 1.57 mycroft if (ISSET(zsbits, ZSRR0_CTS))
1385 1.57 mycroft SET(ttybits, TIOCM_CTS);
1386 1.54 christos
1387 1.57 mycroft return (ttybits);
1388 1.1 gwr }
1389 1.1 gwr
1390 1.8 gwr /*
1391 1.8 gwr * Try to block or unblock input using hardware flow-control.
1392 1.8 gwr * This is called by kern/tty.c if MDMBUF|CRTSCTS is set, and
1393 1.8 gwr * if this function returns non-zero, the TS_TBLOCK flag will
1394 1.24 mycroft * be set or cleared according to the "block" arg passed.
1395 1.8 gwr */
1396 1.8 gwr int
1397 1.24 mycroft zshwiflow(tp, block)
1398 1.8 gwr struct tty *tp;
1399 1.24 mycroft int block;
1400 1.8 gwr {
1401 1.68 thorpej struct zstty_softc *zst = device_lookup(&zstty_cd, ZSUNIT(tp->t_dev));
1402 1.35 mycroft struct zs_chanstate *cs = zst->zst_cs;
1403 1.8 gwr int s;
1404 1.8 gwr
1405 1.14 gwr if (cs->cs_wr5_rts == 0)
1406 1.14 gwr return (0);
1407 1.8 gwr
1408 1.8 gwr s = splzs();
1409 1.89 pk simple_lock(&cs->cs_lock);
1410 1.24 mycroft if (block) {
1411 1.35 mycroft if (!ISSET(zst->zst_rx_flags, RX_TTY_BLOCKED)) {
1412 1.35 mycroft SET(zst->zst_rx_flags, RX_TTY_BLOCKED);
1413 1.24 mycroft zs_hwiflow(zst);
1414 1.24 mycroft }
1415 1.8 gwr } else {
1416 1.35 mycroft if (ISSET(zst->zst_rx_flags, RX_TTY_OVERFLOWED)) {
1417 1.35 mycroft CLR(zst->zst_rx_flags, RX_TTY_OVERFLOWED);
1418 1.35 mycroft zst->zst_rx_ready = 1;
1419 1.35 mycroft cs->cs_softreq = 1;
1420 1.35 mycroft }
1421 1.35 mycroft if (ISSET(zst->zst_rx_flags, RX_TTY_BLOCKED)) {
1422 1.35 mycroft CLR(zst->zst_rx_flags, RX_TTY_BLOCKED);
1423 1.24 mycroft zs_hwiflow(zst);
1424 1.24 mycroft }
1425 1.8 gwr }
1426 1.89 pk simple_unlock(&cs->cs_lock);
1427 1.8 gwr splx(s);
1428 1.35 mycroft return (1);
1429 1.8 gwr }
1430 1.8 gwr
1431 1.8 gwr /*
1432 1.8 gwr * Internal version of zshwiflow
1433 1.89 pk * Called at splzs() and with the channel lock held.
1434 1.8 gwr */
1435 1.8 gwr static void
1436 1.24 mycroft zs_hwiflow(zst)
1437 1.35 mycroft struct zstty_softc *zst;
1438 1.8 gwr {
1439 1.81 ad struct zs_chanstate *cs = zst->zst_cs, *ccs;
1440 1.8 gwr
1441 1.14 gwr if (cs->cs_wr5_rts == 0)
1442 1.14 gwr return;
1443 1.8 gwr
1444 1.81 ad ccs = (cs->cs_ctl_chan != NULL ? cs->cs_ctl_chan : cs);
1445 1.81 ad
1446 1.35 mycroft if (ISSET(zst->zst_rx_flags, RX_ANY_BLOCK)) {
1447 1.81 ad CLR(ccs->cs_preg[5], cs->cs_wr5_rts);
1448 1.81 ad CLR(ccs->cs_creg[5], cs->cs_wr5_rts);
1449 1.8 gwr } else {
1450 1.81 ad SET(ccs->cs_preg[5], cs->cs_wr5_rts);
1451 1.81 ad SET(ccs->cs_creg[5], cs->cs_wr5_rts);
1452 1.8 gwr }
1453 1.81 ad zs_write_reg(ccs, 5, ccs->cs_creg[5]);
1454 1.8 gwr }
1455 1.8 gwr
1456 1.1 gwr
1457 1.1 gwr /****************************************************************
1458 1.1 gwr * Interface to the lower layer (zscc)
1459 1.1 gwr ****************************************************************/
1460 1.3 gwr
1461 1.35 mycroft #define integrate static inline
1462 1.35 mycroft integrate void zstty_rxsoft __P((struct zstty_softc *, struct tty *));
1463 1.35 mycroft integrate void zstty_txsoft __P((struct zstty_softc *, struct tty *));
1464 1.35 mycroft integrate void zstty_stsoft __P((struct zstty_softc *, struct tty *));
1465 1.35 mycroft static void zstty_diag __P((void *));
1466 1.1 gwr
1467 1.6 gwr /*
1468 1.89 pk * Receiver Ready interrupt.
1469 1.89 pk * Called at splzs() and with the channel lock held.
1470 1.6 gwr */
1471 1.6 gwr static void
1472 1.1 gwr zstty_rxint(cs)
1473 1.35 mycroft struct zs_chanstate *cs;
1474 1.1 gwr {
1475 1.35 mycroft struct zstty_softc *zst = cs->cs_private;
1476 1.35 mycroft u_char *put, *end;
1477 1.35 mycroft u_int cc;
1478 1.35 mycroft u_char rr0, rr1, c;
1479 1.1 gwr
1480 1.35 mycroft end = zst->zst_ebuf;
1481 1.1 gwr put = zst->zst_rbput;
1482 1.35 mycroft cc = zst->zst_rbavail;
1483 1.1 gwr
1484 1.35 mycroft while (cc > 0) {
1485 1.35 mycroft /*
1486 1.35 mycroft * First read the status, because reading the received char
1487 1.35 mycroft * destroys the status of this char.
1488 1.35 mycroft */
1489 1.35 mycroft rr1 = zs_read_reg(cs, 1);
1490 1.35 mycroft c = zs_read_data(cs);
1491 1.35 mycroft
1492 1.35 mycroft if (ISSET(rr1, ZSRR1_FE | ZSRR1_DO | ZSRR1_PE)) {
1493 1.35 mycroft /* Clear the receive error. */
1494 1.35 mycroft zs_write_csr(cs, ZSWR0_RESET_ERRORS);
1495 1.35 mycroft }
1496 1.35 mycroft
1497 1.72 eeh cn_check_magic(zst->zst_tty->t_dev, c, zstty_cnm_state);
1498 1.35 mycroft put[0] = c;
1499 1.35 mycroft put[1] = rr1;
1500 1.35 mycroft put += 2;
1501 1.35 mycroft if (put >= end)
1502 1.35 mycroft put = zst->zst_rbuf;
1503 1.35 mycroft cc--;
1504 1.35 mycroft
1505 1.35 mycroft rr0 = zs_read_csr(cs);
1506 1.35 mycroft if (!ISSET(rr0, ZSRR0_RX_READY))
1507 1.35 mycroft break;
1508 1.35 mycroft }
1509 1.1 gwr
1510 1.5 gwr /*
1511 1.35 mycroft * Current string of incoming characters ended because
1512 1.35 mycroft * no more data was available or we ran out of space.
1513 1.35 mycroft * Schedule a receive event if any data was received.
1514 1.35 mycroft * If we're out of space, turn off receive interrupts.
1515 1.5 gwr */
1516 1.35 mycroft zst->zst_rbput = put;
1517 1.35 mycroft zst->zst_rbavail = cc;
1518 1.35 mycroft if (!ISSET(zst->zst_rx_flags, RX_TTY_OVERFLOWED)) {
1519 1.35 mycroft zst->zst_rx_ready = 1;
1520 1.35 mycroft cs->cs_softreq = 1;
1521 1.1 gwr }
1522 1.1 gwr
1523 1.35 mycroft /*
1524 1.35 mycroft * See if we are in danger of overflowing a buffer. If
1525 1.35 mycroft * so, use hardware flow control to ease the pressure.
1526 1.35 mycroft */
1527 1.35 mycroft if (!ISSET(zst->zst_rx_flags, RX_IBUF_BLOCKED) &&
1528 1.35 mycroft cc < zst->zst_r_hiwat) {
1529 1.35 mycroft SET(zst->zst_rx_flags, RX_IBUF_BLOCKED);
1530 1.35 mycroft zs_hwiflow(zst);
1531 1.1 gwr }
1532 1.1 gwr
1533 1.8 gwr /*
1534 1.35 mycroft * If we're out of space, disable receive interrupts
1535 1.35 mycroft * until the queue has drained a bit.
1536 1.8 gwr */
1537 1.35 mycroft if (!cc) {
1538 1.35 mycroft SET(zst->zst_rx_flags, RX_IBUF_OVERFLOWED);
1539 1.35 mycroft CLR(cs->cs_preg[1], ZSWR1_RIE);
1540 1.35 mycroft cs->cs_creg[1] = cs->cs_preg[1];
1541 1.35 mycroft zs_write_reg(cs, 1, cs->cs_creg[1]);
1542 1.8 gwr }
1543 1.8 gwr
1544 1.35 mycroft #if 0
1545 1.35 mycroft printf("%xH%04d\n", zst->zst_rx_flags, zst->zst_rbavail);
1546 1.35 mycroft #endif
1547 1.1 gwr }
1548 1.1 gwr
1549 1.6 gwr /*
1550 1.89 pk * Transmitter Ready interrupt.
1551 1.89 pk * Called at splzs() and with the channel lock held.
1552 1.6 gwr */
1553 1.6 gwr static void
1554 1.1 gwr zstty_txint(cs)
1555 1.35 mycroft struct zs_chanstate *cs;
1556 1.1 gwr {
1557 1.35 mycroft struct zstty_softc *zst = cs->cs_private;
1558 1.8 gwr
1559 1.8 gwr /*
1560 1.35 mycroft * If we've delayed a parameter change, do it now, and restart
1561 1.35 mycroft * output.
1562 1.8 gwr */
1563 1.8 gwr if (cs->cs_heldchange) {
1564 1.25 mycroft zs_loadchannelregs(cs);
1565 1.8 gwr cs->cs_heldchange = 0;
1566 1.35 mycroft zst->zst_tbc = zst->zst_heldtbc;
1567 1.35 mycroft zst->zst_heldtbc = 0;
1568 1.35 mycroft }
1569 1.1 gwr
1570 1.35 mycroft /* Output the next character in the buffer, if any. */
1571 1.48 mycroft if (zst->zst_tbc > 0) {
1572 1.2 gwr zs_write_data(cs, *zst->zst_tba);
1573 1.35 mycroft zst->zst_tbc--;
1574 1.2 gwr zst->zst_tba++;
1575 1.35 mycroft } else {
1576 1.35 mycroft /* Disable transmit completion interrupts if necessary. */
1577 1.35 mycroft if (ISSET(cs->cs_preg[1], ZSWR1_TIE)) {
1578 1.35 mycroft CLR(cs->cs_preg[1], ZSWR1_TIE);
1579 1.35 mycroft cs->cs_creg[1] = cs->cs_preg[1];
1580 1.35 mycroft zs_write_reg(cs, 1, cs->cs_creg[1]);
1581 1.35 mycroft }
1582 1.35 mycroft if (zst->zst_tx_busy) {
1583 1.35 mycroft zst->zst_tx_busy = 0;
1584 1.35 mycroft zst->zst_tx_done = 1;
1585 1.35 mycroft cs->cs_softreq = 1;
1586 1.35 mycroft }
1587 1.1 gwr }
1588 1.1 gwr }
1589 1.1 gwr
1590 1.6 gwr /*
1591 1.89 pk * Status Change interrupt.
1592 1.89 pk * Called at splzs() and with the channel lock held.
1593 1.6 gwr */
1594 1.6 gwr static void
1595 1.57 mycroft zstty_stint(cs, force)
1596 1.35 mycroft struct zs_chanstate *cs;
1597 1.57 mycroft int force;
1598 1.1 gwr {
1599 1.35 mycroft struct zstty_softc *zst = cs->cs_private;
1600 1.35 mycroft u_char rr0, delta;
1601 1.1 gwr
1602 1.2 gwr rr0 = zs_read_csr(cs);
1603 1.2 gwr zs_write_csr(cs, ZSWR0_RESET_STATUS);
1604 1.1 gwr
1605 1.6 gwr /*
1606 1.6 gwr * Check here for console break, so that we can abort
1607 1.6 gwr * even when interrupts are locking up the machine.
1608 1.6 gwr */
1609 1.72 eeh if (ISSET(rr0, ZSRR0_BREAK))
1610 1.72 eeh cn_check_magic(zst->zst_tty->t_dev, CNC_BREAK, zstty_cnm_state);
1611 1.1 gwr
1612 1.57 mycroft if (!force)
1613 1.57 mycroft delta = rr0 ^ cs->cs_rr0;
1614 1.57 mycroft else
1615 1.57 mycroft delta = cs->cs_rr0_mask;
1616 1.14 gwr cs->cs_rr0 = rr0;
1617 1.57 mycroft
1618 1.35 mycroft if (ISSET(delta, cs->cs_rr0_mask)) {
1619 1.35 mycroft SET(cs->cs_rr0_delta, delta);
1620 1.59 wrstuden
1621 1.59 wrstuden /*
1622 1.59 wrstuden * Pulse-per-second clock signal on edge of DCD?
1623 1.59 wrstuden */
1624 1.59 wrstuden if (ISSET(delta, zst->zst_ppsmask)) {
1625 1.59 wrstuden struct timeval tv;
1626 1.59 wrstuden if (ISSET(rr0, zst->zst_ppsmask) == zst->zst_ppsassert) {
1627 1.59 wrstuden /* XXX nanotime() */
1628 1.59 wrstuden microtime(&tv);
1629 1.59 wrstuden TIMEVAL_TO_TIMESPEC(&tv,
1630 1.59 wrstuden &zst->ppsinfo.assert_timestamp);
1631 1.59 wrstuden if (zst->ppsparam.mode & PPS_OFFSETASSERT) {
1632 1.59 wrstuden timespecadd(&zst->ppsinfo.assert_timestamp,
1633 1.59 wrstuden &zst->ppsparam.assert_offset,
1634 1.59 wrstuden &zst->ppsinfo.assert_timestamp);
1635 1.59 wrstuden }
1636 1.59 wrstuden
1637 1.59 wrstuden #ifdef PPS_SYNC
1638 1.59 wrstuden if (zst->ppsparam.mode & PPS_HARDPPSONASSERT)
1639 1.59 wrstuden hardpps(&tv, tv.tv_usec);
1640 1.59 wrstuden #endif
1641 1.59 wrstuden zst->ppsinfo.assert_sequence++;
1642 1.59 wrstuden zst->ppsinfo.current_mode = zst->ppsparam.mode;
1643 1.59 wrstuden } else if (ISSET(rr0, zst->zst_ppsmask) ==
1644 1.59 wrstuden zst->zst_ppsclear) {
1645 1.59 wrstuden /* XXX nanotime() */
1646 1.59 wrstuden microtime(&tv);
1647 1.59 wrstuden TIMEVAL_TO_TIMESPEC(&tv,
1648 1.59 wrstuden &zst->ppsinfo.clear_timestamp);
1649 1.59 wrstuden if (zst->ppsparam.mode & PPS_OFFSETCLEAR) {
1650 1.59 wrstuden timespecadd(&zst->ppsinfo.clear_timestamp,
1651 1.59 wrstuden &zst->ppsparam.clear_offset,
1652 1.59 wrstuden &zst->ppsinfo.clear_timestamp);
1653 1.59 wrstuden }
1654 1.59 wrstuden
1655 1.59 wrstuden #ifdef PPS_SYNC
1656 1.59 wrstuden if (zst->ppsparam.mode & PPS_HARDPPSONCLEAR)
1657 1.59 wrstuden hardpps(&tv, tv.tv_usec);
1658 1.59 wrstuden #endif
1659 1.59 wrstuden zst->ppsinfo.clear_sequence++;
1660 1.59 wrstuden zst->ppsinfo.current_mode = zst->ppsparam.mode;
1661 1.59 wrstuden }
1662 1.59 wrstuden }
1663 1.14 gwr
1664 1.22 mycroft /*
1665 1.22 mycroft * Stop output immediately if we lose the output
1666 1.22 mycroft * flow control signal or carrier detect.
1667 1.22 mycroft */
1668 1.35 mycroft if (ISSET(~rr0, cs->cs_rr0_mask)) {
1669 1.22 mycroft zst->zst_tbc = 0;
1670 1.22 mycroft zst->zst_heldtbc = 0;
1671 1.22 mycroft }
1672 1.22 mycroft
1673 1.22 mycroft zst->zst_st_check = 1;
1674 1.35 mycroft cs->cs_softreq = 1;
1675 1.35 mycroft }
1676 1.35 mycroft }
1677 1.35 mycroft
1678 1.35 mycroft void
1679 1.35 mycroft zstty_diag(arg)
1680 1.35 mycroft void *arg;
1681 1.35 mycroft {
1682 1.35 mycroft struct zstty_softc *zst = arg;
1683 1.35 mycroft int overflows, floods;
1684 1.35 mycroft int s;
1685 1.35 mycroft
1686 1.35 mycroft s = splzs();
1687 1.35 mycroft overflows = zst->zst_overflows;
1688 1.35 mycroft zst->zst_overflows = 0;
1689 1.35 mycroft floods = zst->zst_floods;
1690 1.35 mycroft zst->zst_floods = 0;
1691 1.35 mycroft zst->zst_errors = 0;
1692 1.35 mycroft splx(s);
1693 1.35 mycroft
1694 1.35 mycroft log(LOG_WARNING, "%s: %d silo overflow%s, %d ibuf flood%s\n",
1695 1.35 mycroft zst->zst_dev.dv_xname,
1696 1.35 mycroft overflows, overflows == 1 ? "" : "s",
1697 1.35 mycroft floods, floods == 1 ? "" : "s");
1698 1.35 mycroft }
1699 1.35 mycroft
1700 1.35 mycroft integrate void
1701 1.35 mycroft zstty_rxsoft(zst, tp)
1702 1.35 mycroft struct zstty_softc *zst;
1703 1.35 mycroft struct tty *tp;
1704 1.35 mycroft {
1705 1.35 mycroft struct zs_chanstate *cs = zst->zst_cs;
1706 1.70 eeh int (*rint) __P((int c, struct tty *tp)) = tp->t_linesw->l_rint;
1707 1.35 mycroft u_char *get, *end;
1708 1.35 mycroft u_int cc, scc;
1709 1.35 mycroft u_char rr1;
1710 1.35 mycroft int code;
1711 1.35 mycroft int s;
1712 1.35 mycroft
1713 1.35 mycroft end = zst->zst_ebuf;
1714 1.35 mycroft get = zst->zst_rbget;
1715 1.35 mycroft scc = cc = zstty_rbuf_size - zst->zst_rbavail;
1716 1.35 mycroft
1717 1.35 mycroft if (cc == zstty_rbuf_size) {
1718 1.35 mycroft zst->zst_floods++;
1719 1.35 mycroft if (zst->zst_errors++ == 0)
1720 1.66 hannken callout_reset(&zst->zst_diag_ch, 60 * hz,
1721 1.65 thorpej zstty_diag, zst);
1722 1.35 mycroft }
1723 1.35 mycroft
1724 1.60 pk /* If not yet open, drop the entire buffer content here */
1725 1.60 pk if (!ISSET(tp->t_state, TS_ISOPEN)) {
1726 1.60 pk get += cc << 1;
1727 1.60 pk if (get >= end)
1728 1.60 pk get -= zstty_rbuf_size << 1;
1729 1.60 pk cc = 0;
1730 1.60 pk }
1731 1.35 mycroft while (cc) {
1732 1.37 mycroft code = get[0];
1733 1.35 mycroft rr1 = get[1];
1734 1.37 mycroft if (ISSET(rr1, ZSRR1_DO | ZSRR1_FE | ZSRR1_PE)) {
1735 1.37 mycroft if (ISSET(rr1, ZSRR1_DO)) {
1736 1.37 mycroft zst->zst_overflows++;
1737 1.37 mycroft if (zst->zst_errors++ == 0)
1738 1.66 hannken callout_reset(&zst->zst_diag_ch,
1739 1.65 thorpej 60 * hz, zstty_diag, zst);
1740 1.37 mycroft }
1741 1.35 mycroft if (ISSET(rr1, ZSRR1_FE))
1742 1.35 mycroft SET(code, TTY_FE);
1743 1.35 mycroft if (ISSET(rr1, ZSRR1_PE))
1744 1.35 mycroft SET(code, TTY_PE);
1745 1.35 mycroft }
1746 1.35 mycroft if ((*rint)(code, tp) == -1) {
1747 1.35 mycroft /*
1748 1.35 mycroft * The line discipline's buffer is out of space.
1749 1.35 mycroft */
1750 1.35 mycroft if (!ISSET(zst->zst_rx_flags, RX_TTY_BLOCKED)) {
1751 1.35 mycroft /*
1752 1.35 mycroft * We're either not using flow control, or the
1753 1.35 mycroft * line discipline didn't tell us to block for
1754 1.35 mycroft * some reason. Either way, we have no way to
1755 1.35 mycroft * know when there's more space available, so
1756 1.35 mycroft * just drop the rest of the data.
1757 1.35 mycroft */
1758 1.35 mycroft get += cc << 1;
1759 1.35 mycroft if (get >= end)
1760 1.35 mycroft get -= zstty_rbuf_size << 1;
1761 1.35 mycroft cc = 0;
1762 1.35 mycroft } else {
1763 1.35 mycroft /*
1764 1.35 mycroft * Don't schedule any more receive processing
1765 1.35 mycroft * until the line discipline tells us there's
1766 1.35 mycroft * space available (through comhwiflow()).
1767 1.35 mycroft * Leave the rest of the data in the input
1768 1.35 mycroft * buffer.
1769 1.35 mycroft */
1770 1.35 mycroft SET(zst->zst_rx_flags, RX_TTY_OVERFLOWED);
1771 1.35 mycroft }
1772 1.35 mycroft break;
1773 1.35 mycroft }
1774 1.35 mycroft get += 2;
1775 1.35 mycroft if (get >= end)
1776 1.35 mycroft get = zst->zst_rbuf;
1777 1.35 mycroft cc--;
1778 1.8 gwr }
1779 1.6 gwr
1780 1.35 mycroft if (cc != scc) {
1781 1.35 mycroft zst->zst_rbget = get;
1782 1.35 mycroft s = splzs();
1783 1.89 pk simple_lock(&cs->cs_lock);
1784 1.35 mycroft cc = zst->zst_rbavail += scc - cc;
1785 1.35 mycroft /* Buffers should be ok again, release possible block. */
1786 1.35 mycroft if (cc >= zst->zst_r_lowat) {
1787 1.35 mycroft if (ISSET(zst->zst_rx_flags, RX_IBUF_OVERFLOWED)) {
1788 1.35 mycroft CLR(zst->zst_rx_flags, RX_IBUF_OVERFLOWED);
1789 1.35 mycroft SET(cs->cs_preg[1], ZSWR1_RIE);
1790 1.35 mycroft cs->cs_creg[1] = cs->cs_preg[1];
1791 1.35 mycroft zs_write_reg(cs, 1, cs->cs_creg[1]);
1792 1.35 mycroft }
1793 1.35 mycroft if (ISSET(zst->zst_rx_flags, RX_IBUF_BLOCKED)) {
1794 1.35 mycroft CLR(zst->zst_rx_flags, RX_IBUF_BLOCKED);
1795 1.35 mycroft zs_hwiflow(zst);
1796 1.35 mycroft }
1797 1.35 mycroft }
1798 1.89 pk simple_unlock(&cs->cs_lock);
1799 1.35 mycroft splx(s);
1800 1.35 mycroft }
1801 1.35 mycroft
1802 1.35 mycroft #if 0
1803 1.35 mycroft printf("%xS%04d\n", zst->zst_rx_flags, zst->zst_rbavail);
1804 1.35 mycroft #endif
1805 1.1 gwr }
1806 1.1 gwr
1807 1.35 mycroft integrate void
1808 1.35 mycroft zstty_txsoft(zst, tp)
1809 1.35 mycroft struct zstty_softc *zst;
1810 1.35 mycroft struct tty *tp;
1811 1.35 mycroft {
1812 1.89 pk struct zs_chanstate *cs = zst->zst_cs;
1813 1.89 pk int s;
1814 1.35 mycroft
1815 1.89 pk s = splzs();
1816 1.89 pk simple_lock(&cs->cs_lock);
1817 1.35 mycroft CLR(tp->t_state, TS_BUSY);
1818 1.35 mycroft if (ISSET(tp->t_state, TS_FLUSH))
1819 1.35 mycroft CLR(tp->t_state, TS_FLUSH);
1820 1.35 mycroft else
1821 1.35 mycroft ndflush(&tp->t_outq, (int)(zst->zst_tba - tp->t_outq.c_cf));
1822 1.89 pk simple_unlock(&cs->cs_lock);
1823 1.89 pk splx(s);
1824 1.70 eeh (*tp->t_linesw->l_start)(tp);
1825 1.35 mycroft }
1826 1.35 mycroft
1827 1.35 mycroft integrate void
1828 1.35 mycroft zstty_stsoft(zst, tp)
1829 1.1 gwr struct zstty_softc *zst;
1830 1.35 mycroft struct tty *tp;
1831 1.1 gwr {
1832 1.35 mycroft struct zs_chanstate *cs = zst->zst_cs;
1833 1.35 mycroft u_char rr0, delta;
1834 1.35 mycroft int s;
1835 1.35 mycroft
1836 1.35 mycroft s = splzs();
1837 1.89 pk simple_lock(&cs->cs_lock);
1838 1.35 mycroft rr0 = cs->cs_rr0;
1839 1.35 mycroft delta = cs->cs_rr0_delta;
1840 1.35 mycroft cs->cs_rr0_delta = 0;
1841 1.89 pk simple_unlock(&cs->cs_lock);
1842 1.35 mycroft splx(s);
1843 1.35 mycroft
1844 1.35 mycroft if (ISSET(delta, cs->cs_rr0_dcd)) {
1845 1.35 mycroft /*
1846 1.35 mycroft * Inform the tty layer that carrier detect changed.
1847 1.35 mycroft */
1848 1.70 eeh (void) (*tp->t_linesw->l_modem)(tp, ISSET(rr0, ZSRR0_DCD));
1849 1.35 mycroft }
1850 1.1 gwr
1851 1.35 mycroft if (ISSET(delta, cs->cs_rr0_cts)) {
1852 1.35 mycroft /* Block or unblock output according to flow control. */
1853 1.35 mycroft if (ISSET(rr0, cs->cs_rr0_cts)) {
1854 1.35 mycroft zst->zst_tx_stopped = 0;
1855 1.70 eeh (*tp->t_linesw->l_start)(tp);
1856 1.35 mycroft } else {
1857 1.35 mycroft zst->zst_tx_stopped = 1;
1858 1.35 mycroft }
1859 1.1 gwr }
1860 1.1 gwr }
1861 1.1 gwr
1862 1.6 gwr /*
1863 1.6 gwr * Software interrupt. Called at zssoft
1864 1.8 gwr *
1865 1.8 gwr * The main job to be done here is to empty the input ring
1866 1.8 gwr * by passing its contents up to the tty layer. The ring is
1867 1.8 gwr * always emptied during this operation, therefore the ring
1868 1.8 gwr * must not be larger than the space after "high water" in
1869 1.8 gwr * the tty layer, or the tty layer might drop our input.
1870 1.8 gwr *
1871 1.8 gwr * Note: an "input blockage" condition is assumed to exist if
1872 1.8 gwr * EITHER the TS_TBLOCK flag or zst_rx_blocked flag is set.
1873 1.6 gwr */
1874 1.6 gwr static void
1875 1.1 gwr zstty_softint(cs)
1876 1.1 gwr struct zs_chanstate *cs;
1877 1.1 gwr {
1878 1.35 mycroft struct zstty_softc *zst = cs->cs_private;
1879 1.35 mycroft struct tty *tp = zst->zst_tty;
1880 1.35 mycroft int s;
1881 1.1 gwr
1882 1.8 gwr s = spltty();
1883 1.1 gwr
1884 1.35 mycroft if (zst->zst_rx_ready) {
1885 1.35 mycroft zst->zst_rx_ready = 0;
1886 1.35 mycroft zstty_rxsoft(zst, tp);
1887 1.1 gwr }
1888 1.1 gwr
1889 1.8 gwr if (zst->zst_st_check) {
1890 1.8 gwr zst->zst_st_check = 0;
1891 1.35 mycroft zstty_stsoft(zst, tp);
1892 1.8 gwr }
1893 1.8 gwr
1894 1.8 gwr if (zst->zst_tx_done) {
1895 1.8 gwr zst->zst_tx_done = 0;
1896 1.35 mycroft zstty_txsoft(zst, tp);
1897 1.1 gwr }
1898 1.1 gwr
1899 1.6 gwr splx(s);
1900 1.1 gwr }
1901 1.1 gwr
1902 1.1 gwr struct zsops zsops_tty = {
1903 1.1 gwr zstty_rxint, /* receive char available */
1904 1.1 gwr zstty_stint, /* external/status */
1905 1.1 gwr zstty_txint, /* xmit buffer empty */
1906 1.1 gwr zstty_softint, /* process software interrupt */
1907 1.1 gwr };
1908