1 /* $NetBSD: z8530tty.c,v 1.126 2009/05/12 14:25:18 cegger Exp $ */
4 * Copyright (c) 1993, 1994, 1995, 1996, 1997, 1998, 1999
5 * Charles M. Hannum. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by Charles M. Hannum.
18 * 4. The name of the author may not be used to endorse or promote products
19 * derived from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 * Copyright (c) 1992, 1993
35 * The Regents of the University of California. All rights reserved.
37 * This software was developed by the Computer Systems Engineering group
38 * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
39 * contributed to Berkeley.
41 * All advertising materials mentioning features or use of this software
42 * must display the following acknowledgement:
43 * This product includes software developed by the University of
44 * California, Lawrence Berkeley Laboratory.
46 * Redistribution and use in source and binary forms, with or without
47 * modification, are permitted provided that the following conditions
49 * 1. Redistributions of source code must retain the above copyright
50 * notice, this list of conditions and the following disclaimer.
51 * 2. Redistributions in binary form must reproduce the above copyright
52 * notice, this list of conditions and the following disclaimer in the
53 * documentation and/or other materials provided with the distribution.
54 * 3. Neither the name of the University nor the names of its contributors
55 * may be used to endorse or promote products derived from this software
56 * without specific prior written permission.
58 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
59 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
60 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
61 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
62 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
63 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
64 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
65 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
66 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
67 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
70 * @(#)zs.c 8.1 (Berkeley) 7/19/93
74 * Copyright (c) 1994 Gordon W. Ross
76 * This software was developed by the Computer Systems Engineering group
77 * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
78 * contributed to Berkeley.
80 * All advertising materials mentioning features or use of this software
81 * must display the following acknowledgement:
82 * This product includes software developed by the University of
83 * California, Lawrence Berkeley Laboratory.
85 * Redistribution and use in source and binary forms, with or without
86 * modification, are permitted provided that the following conditions
88 * 1. Redistributions of source code must retain the above copyright
89 * notice, this list of conditions and the following disclaimer.
90 * 2. Redistributions in binary form must reproduce the above copyright
91 * notice, this list of conditions and the following disclaimer in the
92 * documentation and/or other materials provided with the distribution.
93 * 3. All advertising materials mentioning features or use of this software
94 * must display the following acknowledgement:
95 * This product includes software developed by the University of
96 * California, Berkeley and its contributors.
97 * 4. Neither the name of the University nor the names of its contributors
98 * may be used to endorse or promote products derived from this software
99 * without specific prior written permission.
101 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
102 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
103 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
104 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
105 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
106 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
107 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
108 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
109 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
110 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
113 * @(#)zs.c 8.1 (Berkeley) 7/19/93
117 * Zilog Z8530 Dual UART driver (tty interface)
119 * This is the "slave" driver that will be attached to
120 * the "zsc" driver for plain "tty" async. serial lines.
124 * The original version of this code was the sparc/dev/zs.c driver
125 * as distributed with the Berkeley 4.4 Lite release. Since then,
126 * Gordon Ross reorganized the code into the current parent/child
127 * driver scheme, separating the Sun keyboard and mouse support
128 * into independent child drivers.
130 * RTS/CTS flow-control support was a collaboration of:
131 * Gordon Ross <gwr@NetBSD.org>,
132 * Bill Studenmund <wrstuden@loki.stanford.edu>
133 * Ian Dall <Ian.Dall@dsto.defence.gov.au>
135 * The driver was massively overhauled in November 1997 by Charles Hannum,
136 * fixing *many* bugs, and substantially improving performance.
139 #include <sys/cdefs.h>
140 __KERNEL_RCSID(0, "$NetBSD: z8530tty.c,v 1.126 2009/05/12 14:25:18 cegger Exp $");
142 #include "opt_kgdb.h"
145 #include <sys/param.h>
146 #include <sys/systm.h>
147 #include <sys/proc.h>
148 #include <sys/device.h>
149 #include <sys/conf.h>
150 #include <sys/file.h>
151 #include <sys/ioctl.h>
152 #include <sys/malloc.h>
153 #include <sys/timepps.h>
155 #include <sys/time.h>
156 #include <sys/kernel.h>
157 #include <sys/syslog.h>
158 #include <sys/kauth.h>
160 #include <dev/ic/z8530reg.h>
161 #include <machine/z8530var.h>
163 #include <dev/cons.h>
166 #include "locators.h"
169 * How many input characters we can buffer.
170 * The port-specific var.h may override this.
171 * Note: must be a power of two!
173 #ifndef ZSTTY_RING_SIZE
174 #define ZSTTY_RING_SIZE 2048
177 static struct cnm_state zstty_cnm_state
;
179 * Make this an option variable one can patch.
180 * But be warned: this must be a power of 2!
182 u_int zstty_rbuf_size
= ZSTTY_RING_SIZE
;
184 /* Stop input when 3/4 of the ring is full; restart when only 1/4 is full. */
185 u_int zstty_rbuf_hiwat
= (ZSTTY_RING_SIZE
* 1) / 4;
186 u_int zstty_rbuf_lowat
= (ZSTTY_RING_SIZE
* 3) / 4;
189 device_t zst_dev
; /* required first: base device */
191 struct zs_chanstate
*zst_cs
;
193 struct callout zst_diag_ch
;
199 int zst_hwflags
, /* see z8530var.h */
200 zst_swflags
; /* TIOCFLAG_SOFTCAR, ... <ttycom.h> */
204 uint8_t *volatile zst_rbget
,
206 volatile u_int zst_rbavail
;
211 * The transmit byte count and address are used for pseudo-DMA
212 * output in the hardware interrupt code. PDMA can be suspended
213 * to get pending changes done; heldtbc is used for this. It can
214 * also be stopped for ^S; this sets TS_TTSTOP in tp->t_state.
216 uint8_t *zst_tba
; /* transmit buffer address */
217 u_int zst_tbc
, /* transmit byte count */
218 zst_heldtbc
; /* held tbc while xmission stopped */
220 /* Flags to communicate with zstty_softint() */
221 volatile uint8_t zst_rx_flags
, /* receiver blocked */
222 #define RX_TTY_BLOCKED 0x01
223 #define RX_TTY_OVERFLOWED 0x02
224 #define RX_IBUF_BLOCKED 0x04
225 #define RX_IBUF_OVERFLOWED 0x08
226 #define RX_ANY_BLOCK 0x0f
227 zst_tx_busy
, /* working on an output chunk */
228 zst_tx_done
, /* done with one output chunk */
229 zst_tx_stopped
, /* H/W level stop (lost CTS) */
230 zst_st_check
, /* got a status interrupt */
233 /* PPS signal on DCD, with or without inkernel clock disciplining */
234 uint8_t zst_ppsmask
; /* pps signal mask */
235 struct pps_state zst_pps_state
;
238 /* Definition of the driver for autoconfig. */
239 static int zstty_match(device_t
, cfdata_t
, void *);
240 static void zstty_attach(device_t
, device_t
, void *);
242 CFATTACH_DECL_NEW(zstty
, sizeof(struct zstty_softc
),
243 zstty_match
, zstty_attach
, NULL
, NULL
);
245 dev_type_open(zsopen
);
246 dev_type_close(zsclose
);
247 dev_type_read(zsread
);
248 dev_type_write(zswrite
);
249 dev_type_ioctl(zsioctl
);
250 dev_type_stop(zsstop
);
252 dev_type_poll(zspoll
);
254 const struct cdevsw zstty_cdevsw
= {
255 zsopen
, zsclose
, zsread
, zswrite
, zsioctl
,
256 zsstop
, zstty
, zspoll
, nommap
, ttykqfilter
, D_TTY
259 struct zsops zsops_tty
;
261 static void zs_shutdown(struct zstty_softc
*);
262 static void zsstart(struct tty
*);
263 static int zsparam(struct tty
*, struct termios
*);
264 static void zs_modem(struct zstty_softc
*, int);
265 static void tiocm_to_zs(struct zstty_softc
*, u_long
, int);
266 static int zs_to_tiocm(struct zstty_softc
*);
267 static int zshwiflow(struct tty
*, int);
268 static void zs_hwiflow(struct zstty_softc
*);
269 static void zs_maskintr(struct zstty_softc
*);
271 /* Low-level routines. */
272 static void zstty_rxint (struct zs_chanstate
*);
273 static void zstty_stint (struct zs_chanstate
*, int);
274 static void zstty_txint (struct zs_chanstate
*);
275 static void zstty_softint(struct zs_chanstate
*);
276 static void zstty_softint1(struct zs_chanstate
*);
278 #define ZSUNIT(x) (minor(x) & 0x7ffff)
279 #define ZSDIALOUT(x) (minor(x) & 0x80000)
281 struct tty
*zstty_get_tty_from_dev(device_t
);
284 * XXX get the (struct tty *) out of a (device_t) we trust to be a
285 * (struct zstty_softc *) - needed by sparc/dev/zs.c, sparc64/dev/zs.c,
286 * sun3/dev/zs.c and sun2/dev/zs.c will probably need it at some point
290 zstty_get_tty_from_dev(device_t dev
)
292 struct zstty_softc
*sc
= device_private(dev
);
298 * zstty_match: how is this zs channel configured?
301 zstty_match(device_t parent
, cfdata_t cf
, void *aux
)
303 struct zsc_attach_args
*args
= aux
;
305 /* Exact match is better than wildcard. */
306 if (cf
->zsccf_channel
== args
->channel
)
309 /* This driver accepts wildcard. */
310 if (cf
->zsccf_channel
== ZSCCF_CHANNEL_DEFAULT
)
317 zstty_attach(device_t parent
, device_t self
, void *aux
)
319 struct zstty_softc
*zst
= device_private(self
);
320 struct zsc_softc
*zsc
= device_private(parent
);
321 cfdata_t cf
= device_cfdata(self
);
322 struct zsc_attach_args
*args
= aux
;
323 struct zs_chanstate
*cs
;
325 int channel
, tty_unit
;
333 callout_init(&zst
->zst_diag_ch
, 0);
334 cn_init_magic(&zstty_cnm_state
);
336 tty_unit
= device_unit(self
);
337 channel
= args
->channel
;
338 cs
= zsc
->zsc_cs
[channel
];
339 cs
->cs_private
= zst
;
340 cs
->cs_ops
= &zsops_tty
;
343 zst
->zst_swflags
= cf
->cf_flags
; /* softcar, etc. */
344 zst
->zst_hwflags
= args
->hwflags
;
345 dev
= makedev(cdevsw_lookup_major(&zstty_cdevsw
), tty_unit
);
347 if (zst
->zst_swflags
)
348 aprint_normal(" flags 0x%x", zst
->zst_swflags
);
351 * Check whether we serve as a console device.
352 * XXX - split console input/output channels aren't
353 * supported yet on /dev/console
356 if ((zst
->zst_hwflags
& ZS_HWFLAG_CONSOLE_INPUT
) != 0) {
358 if ((args
->hwflags
& ZS_HWFLAG_USE_CONSDEV
) != 0) {
359 args
->consdev
->cn_dev
= dev
;
360 cn_tab
->cn_pollc
= args
->consdev
->cn_pollc
;
361 cn_tab
->cn_getc
= args
->consdev
->cn_getc
;
363 cn_tab
->cn_dev
= dev
;
364 /* Set console magic to BREAK */
365 cn_set_magic("\047\001");
367 if ((zst
->zst_hwflags
& ZS_HWFLAG_CONSOLE_OUTPUT
) != 0) {
369 if ((args
->hwflags
& ZS_HWFLAG_USE_CONSDEV
) != 0) {
370 cn_tab
->cn_putc
= args
->consdev
->cn_putc
;
372 cn_tab
->cn_dev
= dev
;
374 if (i
!= NULL
|| o
!= NULL
)
375 aprint_normal(" (console %s)", i
? (o
? "i/o" : i
) : o
);
378 if (zs_check_kgdb(cs
, dev
)) {
380 * Allow kgdb to "take over" this port. Returns true
381 * if this serial port is in-use by kgdb.
383 aprint_normal(" (kgdb)\n");
385 * This is the kgdb port (exclusive use)
386 * so skip the normal attach code.
395 tp
->t_oproc
= zsstart
;
396 tp
->t_param
= zsparam
;
397 tp
->t_hwiflow
= zshwiflow
;
401 zst
->zst_rbuf
= malloc(zstty_rbuf_size
<< 1, M_DEVBUF
, M_NOWAIT
);
402 if (zst
->zst_rbuf
== NULL
) {
403 aprint_error_dev(zst
->zst_dev
,
404 "unable to allocate ring buffer\n");
407 zst
->zst_ebuf
= zst
->zst_rbuf
+ (zstty_rbuf_size
<< 1);
408 /* Disable the high water mark. */
409 zst
->zst_r_hiwat
= 0;
410 zst
->zst_r_lowat
= 0;
411 zst
->zst_rbget
= zst
->zst_rbput
= zst
->zst_rbuf
;
412 zst
->zst_rbavail
= zstty_rbuf_size
;
414 /* if there are no enable/disable functions, assume the device
424 if (ISSET(zst
->zst_hwflags
, ZS_HWFLAG_CONSOLE
)) {
425 /* Call zsparam similar to open. */
428 /* Wait a while for previous console output to complete */
431 /* Setup the "new" parameters in t. */
433 t
.c_ospeed
= cs
->cs_defspeed
;
434 t
.c_cflag
= cs
->cs_defcflag
;
437 * Turn on receiver and status interrupts.
438 * We defer the actual write of the register to zsparam(),
439 * but we must make sure status interrupts are turned on by
440 * the time zsparam() reads the initial rr0 state.
442 SET(cs
->cs_preg
[1], ZSWR1_RIE
| ZSWR1_TIE
| ZSWR1_SIE
);
444 /* Make sure zsparam will see changes. */
446 (void) zsparam(tp
, &t
);
448 /* Make sure DTR is on now. */
451 } else if (!ISSET(zst
->zst_hwflags
, ZS_HWFLAG_NORESET
)) {
452 /* Not the console; may need reset. */
453 resetbit
= (channel
== 0) ? ZSWR9_A_RESET
: ZSWR9_B_RESET
;
456 mutex_spin_enter(&cs
->cs_lock
);
458 zs_write_reg(cs
, 9, resetbit
);
459 zs_modem(zst
, dtr_on
);
460 mutex_spin_exit(&cs
->cs_lock
);
465 * Return pointer to our tty.
470 struct zstty_softc
*zst
;
472 zst
= device_lookup_private(&zstty_cd
, ZSUNIT(dev
));
474 return (zst
->zst_tty
);
479 zs_shutdown(struct zstty_softc
*zst
)
481 struct zs_chanstate
*cs
= zst
->zst_cs
;
482 struct tty
*tp
= zst
->zst_tty
;
484 mutex_spin_enter(&cs
->cs_lock
);
486 /* If we were asserting flow control, then deassert it. */
487 SET(zst
->zst_rx_flags
, RX_IBUF_BLOCKED
);
490 /* Clear any break condition set with TIOCSBRK. */
494 * Hang up if necessary. Wait a bit, so the other side has time to
495 * notice even if we immediately open the port again.
497 if (ISSET(tp
->t_cflag
, HUPCL
)) {
499 mutex_spin_exit(&cs
->cs_lock
);
501 * XXX - another process is not prevented from opening
502 * the device during our sleep.
504 (void) tsleep(cs
, TTIPRI
, ttclos
, hz
);
505 /* Re-check state in case we were opened during our sleep */
506 if (ISSET(tp
->t_state
, TS_ISOPEN
) || tp
->t_wopen
!= 0)
509 mutex_spin_enter(&cs
->cs_lock
);
512 /* Turn off interrupts if not the console. */
513 if (!ISSET(zst
->zst_hwflags
, ZS_HWFLAG_CONSOLE
)) {
514 CLR(cs
->cs_preg
[1], ZSWR1_RIE
| ZSWR1_TIE
| ZSWR1_SIE
);
515 cs
->cs_creg
[1] = cs
->cs_preg
[1];
516 zs_write_reg(cs
, 1, cs
->cs_creg
[1]);
519 /* Call the power management hook. */
523 panic("%s: not enabled?", __func__
);
525 (*cs
->disable
)(zst
->zst_cs
);
528 mutex_spin_exit(&cs
->cs_lock
);
532 * Open a zs serial (tty) port.
535 zsopen(dev_t dev
, int flags
, int mode
, struct lwp
*l
)
537 struct zstty_softc
*zst
;
538 struct zs_chanstate
*cs
;
542 zst
= device_lookup_private(&zstty_cd
, ZSUNIT(dev
));
549 /* If KGDB took the line, then tp==NULL */
553 if (kauth_authorize_device_tty(l
->l_cred
, KAUTH_DEVICE_TTY_OPEN
, tp
))
556 mutex_spin_enter(&tty_lock
);
559 * Do the following iff this is a first open.
561 if (!ISSET(tp
->t_state
, TS_ISOPEN
) && tp
->t_wopen
== 0) {
566 /* Call the power management hook. */
568 if ((*cs
->enable
)(cs
)) {
569 mutex_spin_exit(&tty_lock
);
570 printf("%s: device enable failed\n",
571 device_xname(zst
->zst_dev
));
577 * Initialize the termios status to the defaults. Add in the
578 * sticky bits from TIOCSFLAGS.
581 t
.c_ospeed
= cs
->cs_defspeed
;
582 t
.c_cflag
= cs
->cs_defcflag
;
583 if (ISSET(zst
->zst_swflags
, TIOCFLAG_CLOCAL
))
584 SET(t
.c_cflag
, CLOCAL
);
585 if (ISSET(zst
->zst_swflags
, TIOCFLAG_CRTSCTS
))
586 SET(t
.c_cflag
, CRTSCTS
);
587 if (ISSET(zst
->zst_swflags
, TIOCFLAG_CDTRCTS
))
588 SET(t
.c_cflag
, CDTRCTS
);
589 if (ISSET(zst
->zst_swflags
, TIOCFLAG_MDMBUF
))
590 SET(t
.c_cflag
, MDMBUF
);
592 mutex_spin_enter(&cs
->cs_lock
);
595 * Turn on receiver and status interrupts.
596 * We defer the actual write of the register to zsparam(),
597 * but we must make sure status interrupts are turned on by
598 * the time zsparam() reads the initial rr0 state.
600 SET(cs
->cs_preg
[1], ZSWR1_RIE
| ZSWR1_TIE
| ZSWR1_SIE
);
602 /* Clear PPS capture state on first open. */
603 mutex_spin_enter(&timecounter_lock
);
604 zst
->zst_ppsmask
= 0;
605 memset(&zst
->zst_pps_state
, 0, sizeof(zst
->zst_pps_state
));
606 zst
->zst_pps_state
.ppscap
=
607 PPS_CAPTUREASSERT
| PPS_CAPTURECLEAR
;
608 pps_init(&zst
->zst_pps_state
);
609 mutex_spin_exit(&timecounter_lock
);
611 mutex_spin_exit(&cs
->cs_lock
);
613 /* Make sure zsparam will see changes. */
615 (void) zsparam(tp
, &t
);
618 * Note: zsparam has done: cflag, ispeed, ospeed
619 * so we just need to do: iflag, oflag, lflag, cc
620 * For "raw" mode, just leave all zeros.
622 if (!ISSET(zst
->zst_hwflags
, ZS_HWFLAG_RAW
)) {
623 tp
->t_iflag
= TTYDEF_IFLAG
;
624 tp
->t_oflag
= TTYDEF_OFLAG
;
625 tp
->t_lflag
= TTYDEF_LFLAG
;
634 mutex_spin_enter(&cs
->cs_lock
);
637 * Turn on DTR. We must always do this, even if carrier is not
638 * present, because otherwise we'd have to use TIOCSDTR
639 * immediately after setting CLOCAL, which applications do not
640 * expect. We always assert DTR while the device is open
641 * unless explicitly requested to deassert it.
645 /* Clear the input ring, and unblock. */
646 zst
->zst_rbget
= zst
->zst_rbput
= zst
->zst_rbuf
;
647 zst
->zst_rbavail
= zstty_rbuf_size
;
649 CLR(zst
->zst_rx_flags
, RX_ANY_BLOCK
);
652 mutex_spin_exit(&cs
->cs_lock
);
655 mutex_spin_exit(&tty_lock
);
657 error
= ttyopen(tp
, ZSDIALOUT(dev
), ISSET(flags
, O_NONBLOCK
));
661 error
= (*tp
->t_linesw
->l_open
)(dev
, tp
);
668 if (!ISSET(tp
->t_state
, TS_ISOPEN
) && tp
->t_wopen
== 0) {
670 * We failed to open the device, and nobody else had it opened.
671 * Clean up the state as appropriate.
680 * Close a zs serial port.
683 zsclose(dev_t dev
, int flags
, int mode
, struct lwp
*l
)
685 struct zstty_softc
*zst
;
688 zst
= device_lookup_private(&zstty_cd
, ZSUNIT(dev
));
691 /* XXX This is for cons.c. */
692 if (!ISSET(tp
->t_state
, TS_ISOPEN
))
695 (*tp
->t_linesw
->l_close
)(tp
, flags
);
698 if (!ISSET(tp
->t_state
, TS_ISOPEN
) && tp
->t_wopen
== 0) {
700 * Although we got a last close, the device may still be in
701 * use; e.g. if this was the dialout node, and there are still
702 * processes waiting for carrier on the non-dialout node.
711 * Read/write zs serial port.
714 zsread(dev_t dev
, struct uio
*uio
, int flags
)
716 struct zstty_softc
*zst
;
719 zst
= device_lookup_private(&zstty_cd
, ZSUNIT(dev
));
722 return ((*tp
->t_linesw
->l_read
)(tp
, uio
, flags
));
726 zswrite(dev_t dev
, struct uio
*uio
, int flags
)
728 struct zstty_softc
*zst
;
731 zst
= device_lookup_private(&zstty_cd
, ZSUNIT(dev
));
734 return ((*tp
->t_linesw
->l_write
)(tp
, uio
, flags
));
738 zspoll(dev_t dev
, int events
, struct lwp
*l
)
740 struct zstty_softc
*zst
;
743 zst
= device_lookup_private(&zstty_cd
, ZSUNIT(dev
));
746 return ((*tp
->t_linesw
->l_poll
)(tp
, events
, l
));
750 zsioctl(dev_t dev
, u_long cmd
, void *data
, int flag
, struct lwp
*l
)
752 struct zstty_softc
*zst
;
753 struct zs_chanstate
*cs
;
757 zst
= device_lookup_private(&zstty_cd
, ZSUNIT(dev
));
760 error
= (*tp
->t_linesw
->l_ioctl
)(tp
, cmd
, data
, flag
, l
);
761 if (error
!= EPASSTHROUGH
)
764 error
= ttioctl(tp
, cmd
, data
, flag
, l
);
765 if (error
!= EPASSTHROUGH
)
769 error
= ZS_MD_IOCTL(cs
, cmd
, data
);
770 if (error
!= EPASSTHROUGH
)
772 #endif /* ZS_MD_IOCTL */
776 mutex_spin_enter(&cs
->cs_lock
);
788 *(int *)data
= zst
->zst_swflags
;
792 error
= kauth_authorize_device_tty(l
->l_cred
,
793 KAUTH_DEVICE_TTY_PRIVSET
, tp
);
796 zst
->zst_swflags
= *(int *)data
;
810 tiocm_to_zs(zst
, cmd
, *(int *)data
);
814 *(int *)data
= zs_to_tiocm(zst
);
818 case PPS_IOC_DESTROY
:
819 case PPS_IOC_GETPARAMS
:
820 case PPS_IOC_SETPARAMS
:
826 mutex_spin_enter(&timecounter_lock
);
827 error
= pps_ioctl(cmd
, data
, &zst
->zst_pps_state
);
828 if (zst
->zst_pps_state
.ppsparam
.mode
& PPS_CAPTUREBOTH
)
829 zst
->zst_ppsmask
= ZSRR0_DCD
;
831 zst
->zst_ppsmask
= 0;
832 mutex_spin_exit(&timecounter_lock
);
835 case TIOCDCDTIMESTAMP
: /* XXX old, overloaded API used by xntpd v3 */
836 if (cs
->cs_rr0_pps
== 0) {
840 mutex_spin_enter(&timecounter_lock
);
841 #ifndef PPS_TRAILING_EDGE
842 TIMESPEC_TO_TIMEVAL((struct timeval
*)data
,
843 &zst
->zst_pps_state
.ppsinfo
.assert_timestamp
);
845 TIMESPEC_TO_TIMEVAL((struct timeval
*)data
,
846 &zst
->zst_pps_state
.ppsinfo
.clear_timestamp
);
848 mutex_spin_exit(&timecounter_lock
);
850 * Now update interrupts.
854 * If nothing is being transmitted, set up new current values,
855 * else mark them as pending.
857 if (!cs
->cs_heldchange
) {
858 if (zst
->zst_tx_busy
) {
859 zst
->zst_heldtbc
= zst
->zst_tbc
;
861 cs
->cs_heldchange
= 1;
863 zs_loadchannelregs(cs
);
869 error
= EPASSTHROUGH
;
873 mutex_spin_exit(&cs
->cs_lock
);
879 * Start or restart transmission.
882 zsstart(struct tty
*tp
)
884 struct zstty_softc
*zst
;
885 struct zs_chanstate
*cs
;
889 zst
= device_lookup_private(&zstty_cd
, ZSUNIT(tp
->t_dev
));
892 if (ISSET(tp
->t_state
, TS_BUSY
| TS_TIMEOUT
| TS_TTSTOP
))
894 if (zst
->zst_tx_stopped
)
899 /* Grab the first contiguous region of buffer space. */
900 tba
= tp
->t_outq
.c_cf
;
901 tbc
= ndqb(&tp
->t_outq
, 0);
903 mutex_spin_enter(&cs
->cs_lock
);
907 SET(tp
->t_state
, TS_BUSY
);
908 zst
->zst_tx_busy
= 1;
911 if (zst
->zst_tbc
> 1) {
912 zs_dma_setup(cs
, zst
->zst_tba
, zst
->zst_tbc
);
913 mutex_spin_exit(&cs
->cs_lock
);
918 /* Output the first character of the contiguous buffer. */
919 zs_write_data(cs
, *zst
->zst_tba
);
923 mutex_spin_exit(&cs
->cs_lock
);
927 * Stop output, e.g., for ^S or output flush.
930 zsstop(struct tty
*tp
, int flag
)
932 struct zstty_softc
*zst
;
934 zst
= device_lookup_private(&zstty_cd
, ZSUNIT(tp
->t_dev
));
936 mutex_spin_enter(&zst
->zst_cs
->cs_lock
);
937 if (ISSET(tp
->t_state
, TS_BUSY
)) {
938 /* Stop transmitting at the next chunk. */
940 zst
->zst_heldtbc
= 0;
941 if (!ISSET(tp
->t_state
, TS_TTSTOP
))
942 SET(tp
->t_state
, TS_FLUSH
);
944 mutex_spin_exit(&zst
->zst_cs
->cs_lock
);
948 * Set ZS tty parameters from termios.
949 * XXX - Should just copy the whole termios after
950 * making sure all the changes could be done.
953 zsparam(struct tty
*tp
, struct termios
*t
)
955 struct zstty_softc
*zst
;
956 struct zs_chanstate
*cs
;
959 uint8_t tmp3
, tmp4
, tmp5
;
962 zst
= device_lookup_private(&zstty_cd
, ZSUNIT(tp
->t_dev
));
964 ospeed
= t
->c_ospeed
;
967 /* Check requested parameters. */
970 if (t
->c_ispeed
&& t
->c_ispeed
!= ospeed
)
974 * For the console, always force CLOCAL and !HUPCL, so that the port
977 if (ISSET(zst
->zst_swflags
, TIOCFLAG_SOFTCAR
) ||
978 ISSET(zst
->zst_hwflags
, ZS_HWFLAG_CONSOLE
)) {
984 * Only whack the UART when params change.
985 * Some callers need to clear tp->t_ospeed
986 * to make sure initialization gets done.
988 if (tp
->t_ospeed
== ospeed
&&
989 tp
->t_cflag
== cflag
)
993 * Call MD functions to deal with changed
994 * clock modes or H/W flow control modes.
995 * The BRG divisor is set now. (reg 12,13)
997 error
= zs_set_speed(cs
, ospeed
);
1000 error
= zs_set_modes(cs
, cflag
);
1005 * Block interrupts so that state will not
1006 * be altered until we are done setting it up.
1008 * Initial values in cs_preg are set before
1009 * our attach routine is called. The master
1010 * interrupt enable is handled by zsc.c
1013 mutex_spin_enter(&cs
->cs_lock
);
1016 * Recalculate which status ints to enable.
1020 /* Recompute character size bits. */
1021 tmp3
= cs
->cs_preg
[3];
1022 tmp5
= cs
->cs_preg
[5];
1023 CLR(tmp3
, ZSWR3_RXSIZE
);
1024 CLR(tmp5
, ZSWR5_TXSIZE
);
1025 switch (ISSET(cflag
, CSIZE
)) {
1027 SET(tmp3
, ZSWR3_RX_5
);
1028 SET(tmp5
, ZSWR5_TX_5
);
1031 SET(tmp3
, ZSWR3_RX_6
);
1032 SET(tmp5
, ZSWR5_TX_6
);
1035 SET(tmp3
, ZSWR3_RX_7
);
1036 SET(tmp5
, ZSWR5_TX_7
);
1039 SET(tmp3
, ZSWR3_RX_8
);
1040 SET(tmp5
, ZSWR5_TX_8
);
1043 cs
->cs_preg
[3] = tmp3
;
1044 cs
->cs_preg
[5] = tmp5
;
1047 * Recompute the stop bits and parity bits. Note that
1048 * zs_set_speed() may have set clock selection bits etc.
1049 * in wr4, so those must preserved.
1051 tmp4
= cs
->cs_preg
[4];
1052 CLR(tmp4
, ZSWR4_SBMASK
| ZSWR4_PARMASK
);
1053 if (ISSET(cflag
, CSTOPB
))
1054 SET(tmp4
, ZSWR4_TWOSB
);
1056 SET(tmp4
, ZSWR4_ONESB
);
1057 if (!ISSET(cflag
, PARODD
))
1058 SET(tmp4
, ZSWR4_EVENP
);
1059 if (ISSET(cflag
, PARENB
))
1060 SET(tmp4
, ZSWR4_PARENB
);
1061 cs
->cs_preg
[4] = tmp4
;
1063 /* And copy to tty. */
1065 tp
->t_ospeed
= ospeed
;
1066 tp
->t_cflag
= cflag
;
1069 * If nothing is being transmitted, set up new current values,
1070 * else mark them as pending.
1072 if (!cs
->cs_heldchange
) {
1073 if (zst
->zst_tx_busy
) {
1074 zst
->zst_heldtbc
= zst
->zst_tbc
;
1076 cs
->cs_heldchange
= 1;
1078 zs_loadchannelregs(cs
);
1082 * If hardware flow control is disabled, turn off the buffer water
1083 * marks and unblock any soft flow control state. Otherwise, enable
1086 if (!ISSET(cflag
, CHWFLOW
)) {
1087 zst
->zst_r_hiwat
= 0;
1088 zst
->zst_r_lowat
= 0;
1089 if (ISSET(zst
->zst_rx_flags
, RX_TTY_OVERFLOWED
)) {
1090 CLR(zst
->zst_rx_flags
, RX_TTY_OVERFLOWED
);
1091 zst
->zst_rx_ready
= 1;
1094 if (ISSET(zst
->zst_rx_flags
, RX_TTY_BLOCKED
|RX_IBUF_BLOCKED
)) {
1095 CLR(zst
->zst_rx_flags
, RX_TTY_BLOCKED
|RX_IBUF_BLOCKED
);
1099 zst
->zst_r_hiwat
= zstty_rbuf_hiwat
;
1100 zst
->zst_r_lowat
= zstty_rbuf_lowat
;
1104 * Force a recheck of the hardware carrier and flow control status,
1105 * since we may have changed which bits we're looking at.
1109 mutex_spin_exit(&cs
->cs_lock
);
1112 * If hardware flow control is disabled, unblock any hard flow control
1115 if (!ISSET(cflag
, CHWFLOW
)) {
1116 if (zst
->zst_tx_stopped
) {
1117 zst
->zst_tx_stopped
= 0;
1128 * Compute interrupt enable bits and set in the pending bits. Called both
1129 * in zsparam() and when PPS (pulse per second timing) state changes.
1130 * Must be called at splzs().
1133 zs_maskintr(struct zstty_softc
*zst
)
1135 struct zs_chanstate
*cs
= zst
->zst_cs
;
1138 cs
->cs_rr0_mask
= cs
->cs_rr0_cts
| cs
->cs_rr0_dcd
;
1139 if (zst
->zst_ppsmask
!= 0)
1140 cs
->cs_rr0_mask
|= cs
->cs_rr0_pps
;
1141 tmp15
= cs
->cs_preg
[15];
1142 if (ISSET(cs
->cs_rr0_mask
, ZSRR0_DCD
))
1143 SET(tmp15
, ZSWR15_DCD_IE
);
1145 CLR(tmp15
, ZSWR15_DCD_IE
);
1146 if (ISSET(cs
->cs_rr0_mask
, ZSRR0_CTS
))
1147 SET(tmp15
, ZSWR15_CTS_IE
);
1149 CLR(tmp15
, ZSWR15_CTS_IE
);
1150 cs
->cs_preg
[15] = tmp15
;
1155 * Raise or lower modem control (DTR/RTS) signals. If a character is
1156 * in transmission, the change is deferred.
1157 * Called at splzs() and with the channel lock held.
1160 zs_modem(struct zstty_softc
*zst
, int onoff
)
1162 struct zs_chanstate
*cs
= zst
->zst_cs
, *ccs
;
1164 if (cs
->cs_wr5_dtr
== 0)
1167 ccs
= (cs
->cs_ctl_chan
!= NULL
? cs
->cs_ctl_chan
: cs
);
1170 SET(ccs
->cs_preg
[5], cs
->cs_wr5_dtr
);
1172 CLR(ccs
->cs_preg
[5], cs
->cs_wr5_dtr
);
1174 if (!cs
->cs_heldchange
) {
1175 if (zst
->zst_tx_busy
) {
1176 zst
->zst_heldtbc
= zst
->zst_tbc
;
1178 cs
->cs_heldchange
= 1;
1180 zs_loadchannelregs(cs
);
1186 * Called at splzs() and with the channel lock held.
1189 tiocm_to_zs(struct zstty_softc
*zst
, u_long how
, int ttybits
)
1191 struct zs_chanstate
*cs
= zst
->zst_cs
, *ccs
;
1194 ccs
= (cs
->cs_ctl_chan
!= NULL
? cs
->cs_ctl_chan
: cs
);
1197 if (ISSET(ttybits
, TIOCM_DTR
))
1198 SET(zsbits
, ZSWR5_DTR
);
1199 if (ISSET(ttybits
, TIOCM_RTS
))
1200 SET(zsbits
, ZSWR5_RTS
);
1204 CLR(ccs
->cs_preg
[5], zsbits
);
1208 SET(ccs
->cs_preg
[5], zsbits
);
1212 CLR(ccs
->cs_preg
[5], ZSWR5_RTS
| ZSWR5_DTR
);
1213 SET(ccs
->cs_preg
[5], zsbits
);
1217 if (!cs
->cs_heldchange
) {
1218 if (zst
->zst_tx_busy
) {
1219 zst
->zst_heldtbc
= zst
->zst_tbc
;
1221 cs
->cs_heldchange
= 1;
1223 zs_loadchannelregs(cs
);
1229 * Called at splzs() and with the channel lock held.
1232 zs_to_tiocm(struct zstty_softc
*zst
)
1234 struct zs_chanstate
*cs
= zst
->zst_cs
, *ccs
;
1238 ccs
= (cs
->cs_ctl_chan
!= NULL
? cs
->cs_ctl_chan
: cs
);
1240 zsbits
= ccs
->cs_preg
[5];
1241 if (ISSET(zsbits
, ZSWR5_DTR
))
1242 SET(ttybits
, TIOCM_DTR
);
1243 if (ISSET(zsbits
, ZSWR5_RTS
))
1244 SET(ttybits
, TIOCM_RTS
);
1246 zsbits
= cs
->cs_rr0
;
1247 if (ISSET(zsbits
, ZSRR0_DCD
))
1248 SET(ttybits
, TIOCM_CD
);
1249 if (ISSET(zsbits
, ZSRR0_CTS
))
1250 SET(ttybits
, TIOCM_CTS
);
1256 * Try to block or unblock input using hardware flow-control.
1257 * This is called by kern/tty.c if MDMBUF|CRTSCTS is set, and
1258 * if this function returns non-zero, the TS_TBLOCK flag will
1259 * be set or cleared according to the "block" arg passed.
1262 zshwiflow(struct tty
*tp
, int block
)
1264 struct zstty_softc
*zst
;
1265 struct zs_chanstate
*cs
;
1267 zst
= device_lookup_private(&zstty_cd
, ZSUNIT(tp
->t_dev
));
1270 if (cs
->cs_wr5_rts
== 0)
1273 mutex_spin_enter(&cs
->cs_lock
);
1275 if (!ISSET(zst
->zst_rx_flags
, RX_TTY_BLOCKED
)) {
1276 SET(zst
->zst_rx_flags
, RX_TTY_BLOCKED
);
1280 if (ISSET(zst
->zst_rx_flags
, RX_TTY_OVERFLOWED
)) {
1281 CLR(zst
->zst_rx_flags
, RX_TTY_OVERFLOWED
);
1282 zst
->zst_rx_ready
= 1;
1285 if (ISSET(zst
->zst_rx_flags
, RX_TTY_BLOCKED
)) {
1286 CLR(zst
->zst_rx_flags
, RX_TTY_BLOCKED
);
1290 mutex_spin_exit(&cs
->cs_lock
);
1295 * Internal version of zshwiflow
1296 * Called at splzs() and with the channel lock held.
1299 zs_hwiflow(struct zstty_softc
*zst
)
1301 struct zs_chanstate
*cs
= zst
->zst_cs
, *ccs
;
1303 if (cs
->cs_wr5_rts
== 0)
1306 ccs
= (cs
->cs_ctl_chan
!= NULL
? cs
->cs_ctl_chan
: cs
);
1308 if (ISSET(zst
->zst_rx_flags
, RX_ANY_BLOCK
)) {
1309 CLR(ccs
->cs_preg
[5], cs
->cs_wr5_rts
);
1310 CLR(ccs
->cs_creg
[5], cs
->cs_wr5_rts
);
1312 SET(ccs
->cs_preg
[5], cs
->cs_wr5_rts
);
1313 SET(ccs
->cs_creg
[5], cs
->cs_wr5_rts
);
1315 zs_write_reg(ccs
, 5, ccs
->cs_creg
[5]);
1319 /****************************************************************
1320 * Interface to the lower layer (zscc)
1321 ****************************************************************/
1323 #define integrate static inline
1324 integrate
void zstty_rxsoft(struct zstty_softc
*, struct tty
*);
1325 integrate
void zstty_txsoft(struct zstty_softc
*, struct tty
*);
1326 integrate
void zstty_stsoft(struct zstty_softc
*, struct tty
*);
1327 static void zstty_diag(void *);
1330 * Receiver Ready interrupt.
1331 * Called at splzs() and with the channel lock held.
1334 zstty_rxint(struct zs_chanstate
*cs
)
1336 struct zstty_softc
*zst
= cs
->cs_private
;
1339 uint8_t rr0
, rr1
, c
;
1341 end
= zst
->zst_ebuf
;
1342 put
= zst
->zst_rbput
;
1343 cc
= zst
->zst_rbavail
;
1347 * First read the status, because reading the received char
1348 * destroys the status of this char.
1350 rr1
= zs_read_reg(cs
, 1);
1351 c
= zs_read_data(cs
);
1353 if (ISSET(rr1
, ZSRR1_FE
| ZSRR1_DO
| ZSRR1_PE
)) {
1354 /* Clear the receive error. */
1355 zs_write_csr(cs
, ZSWR0_RESET_ERRORS
);
1358 cn_check_magic(zst
->zst_tty
->t_dev
, c
, zstty_cnm_state
);
1363 put
= zst
->zst_rbuf
;
1366 rr0
= zs_read_csr(cs
);
1367 if (!ISSET(rr0
, ZSRR0_RX_READY
))
1372 * Current string of incoming characters ended because
1373 * no more data was available or we ran out of space.
1374 * Schedule a receive event if any data was received.
1375 * If we're out of space, turn off receive interrupts.
1377 zst
->zst_rbput
= put
;
1378 zst
->zst_rbavail
= cc
;
1379 if (!ISSET(zst
->zst_rx_flags
, RX_TTY_OVERFLOWED
)) {
1380 zst
->zst_rx_ready
= 1;
1385 * See if we are in danger of overflowing a buffer. If
1386 * so, use hardware flow control to ease the pressure.
1388 if (!ISSET(zst
->zst_rx_flags
, RX_IBUF_BLOCKED
) &&
1389 cc
< zst
->zst_r_hiwat
) {
1390 SET(zst
->zst_rx_flags
, RX_IBUF_BLOCKED
);
1395 * If we're out of space, disable receive interrupts
1396 * until the queue has drained a bit.
1399 SET(zst
->zst_rx_flags
, RX_IBUF_OVERFLOWED
);
1400 CLR(cs
->cs_preg
[1], ZSWR1_RIE
);
1401 cs
->cs_creg
[1] = cs
->cs_preg
[1];
1402 zs_write_reg(cs
, 1, cs
->cs_creg
[1]);
1406 printf("%xH%04d\n", zst
->zst_rx_flags
, zst
->zst_rbavail
);
1411 * Transmitter Ready interrupt.
1412 * Called at splzs() and with the channel lock held.
1415 zstty_txint(struct zs_chanstate
*cs
)
1417 struct zstty_softc
*zst
= cs
->cs_private
;
1419 zs_write_csr(cs
, ZSWR0_RESET_TXINT
);
1422 * If we've delayed a parameter change, do it now, and restart
1425 if (cs
->cs_heldchange
) {
1426 zs_loadchannelregs(cs
);
1427 cs
->cs_heldchange
= 0;
1428 zst
->zst_tbc
= zst
->zst_heldtbc
;
1429 zst
->zst_heldtbc
= 0;
1432 /* Output the next character in the buffer, if any. */
1433 if (zst
->zst_tbc
> 0) {
1434 zs_write_data(cs
, *zst
->zst_tba
);
1438 if (zst
->zst_tx_busy
) {
1439 zst
->zst_tx_busy
= 0;
1440 zst
->zst_tx_done
= 1;
1447 * Status Change interrupt.
1448 * Called at splzs() and with the channel lock held.
1451 zstty_stint(struct zs_chanstate
*cs
, int force
)
1453 struct zstty_softc
*zst
= cs
->cs_private
;
1456 rr0
= zs_read_csr(cs
);
1457 zs_write_csr(cs
, ZSWR0_RESET_STATUS
);
1460 * Check here for console break, so that we can abort
1461 * even when interrupts are locking up the machine.
1463 if (ISSET(rr0
, ZSRR0_BREAK
))
1464 cn_check_magic(zst
->zst_tty
->t_dev
, CNC_BREAK
, zstty_cnm_state
);
1467 delta
= rr0
^ cs
->cs_rr0
;
1469 delta
= cs
->cs_rr0_mask
;
1472 if (ISSET(delta
, cs
->cs_rr0_mask
)) {
1473 SET(cs
->cs_rr0_delta
, delta
);
1476 * Pulse-per-second clock signal on edge of DCD?
1478 if (ISSET(delta
, zst
->zst_ppsmask
)) {
1479 if (zst
->zst_pps_state
.ppsparam
.mode
&
1481 mutex_spin_enter(&timecounter_lock
);
1482 pps_capture(&zst
->zst_pps_state
);
1483 pps_event(&zst
->zst_pps_state
,
1484 (ISSET(cs
->cs_rr0
, zst
->zst_ppsmask
))
1486 : PPS_CAPTURECLEAR
);
1487 mutex_spin_exit(&timecounter_lock
);
1492 * Stop output immediately if we lose the output
1493 * flow control signal or carrier detect.
1495 if (ISSET(~rr0
, cs
->cs_rr0_mask
)) {
1497 zst
->zst_heldtbc
= 0;
1500 zst
->zst_st_check
= 1;
1506 zstty_diag(void *arg
)
1508 struct zstty_softc
*zst
= arg
;
1509 int overflows
, floods
;
1511 mutex_spin_enter(&zst
->zst_cs
->cs_lock
);
1512 overflows
= zst
->zst_overflows
;
1513 zst
->zst_overflows
= 0;
1514 floods
= zst
->zst_floods
;
1515 zst
->zst_floods
= 0;
1516 zst
->zst_errors
= 0;
1517 mutex_spin_exit(&zst
->zst_cs
->cs_lock
);
1519 log(LOG_WARNING
, "%s: %d silo overflow%s, %d ibuf flood%s\n",
1520 device_xname(zst
->zst_dev
),
1521 overflows
, overflows
== 1 ? "" : "s",
1522 floods
, floods
== 1 ? "" : "s");
1526 zstty_rxsoft(struct zstty_softc
*zst
, struct tty
*tp
)
1528 struct zs_chanstate
*cs
= zst
->zst_cs
;
1529 int (*rint
)(int, struct tty
*) = tp
->t_linesw
->l_rint
;
1535 end
= zst
->zst_ebuf
;
1536 get
= zst
->zst_rbget
;
1537 scc
= cc
= zstty_rbuf_size
- zst
->zst_rbavail
;
1539 if (cc
== zstty_rbuf_size
) {
1541 if (zst
->zst_errors
++ == 0)
1542 callout_reset(&zst
->zst_diag_ch
, 60 * hz
,
1546 /* If not yet open, drop the entire buffer content here */
1547 if (!ISSET(tp
->t_state
, TS_ISOPEN
)) {
1550 get
-= zstty_rbuf_size
<< 1;
1556 if (ISSET(rr1
, ZSRR1_DO
| ZSRR1_FE
| ZSRR1_PE
)) {
1557 if (ISSET(rr1
, ZSRR1_DO
)) {
1558 zst
->zst_overflows
++;
1559 if (zst
->zst_errors
++ == 0)
1560 callout_reset(&zst
->zst_diag_ch
,
1561 60 * hz
, zstty_diag
, zst
);
1563 if (ISSET(rr1
, ZSRR1_FE
))
1565 if (ISSET(rr1
, ZSRR1_PE
))
1568 if ((*rint
)(code
, tp
) == -1) {
1570 * The line discipline's buffer is out of space.
1572 if (!ISSET(zst
->zst_rx_flags
, RX_TTY_BLOCKED
)) {
1574 * We're either not using flow control, or the
1575 * line discipline didn't tell us to block for
1576 * some reason. Either way, we have no way to
1577 * know when there's more space available, so
1578 * just drop the rest of the data.
1582 get
-= zstty_rbuf_size
<< 1;
1586 * Don't schedule any more receive processing
1587 * until the line discipline tells us there's
1588 * space available (through comhwiflow()).
1589 * Leave the rest of the data in the input
1592 SET(zst
->zst_rx_flags
, RX_TTY_OVERFLOWED
);
1598 get
= zst
->zst_rbuf
;
1603 zst
->zst_rbget
= get
;
1604 mutex_spin_enter(&cs
->cs_lock
);
1605 cc
= zst
->zst_rbavail
+= scc
- cc
;
1606 /* Buffers should be ok again, release possible block. */
1607 if (cc
>= zst
->zst_r_lowat
) {
1608 if (ISSET(zst
->zst_rx_flags
, RX_IBUF_OVERFLOWED
)) {
1609 CLR(zst
->zst_rx_flags
, RX_IBUF_OVERFLOWED
);
1610 SET(cs
->cs_preg
[1], ZSWR1_RIE
);
1611 cs
->cs_creg
[1] = cs
->cs_preg
[1];
1612 zs_write_reg(cs
, 1, cs
->cs_creg
[1]);
1614 if (ISSET(zst
->zst_rx_flags
, RX_IBUF_BLOCKED
)) {
1615 CLR(zst
->zst_rx_flags
, RX_IBUF_BLOCKED
);
1619 mutex_spin_exit(&cs
->cs_lock
);
1623 printf("%xS%04d\n", zst
->zst_rx_flags
, zst
->zst_rbavail
);
1628 zstty_txsoft(struct zstty_softc
*zst
, struct tty
*tp
)
1630 struct zs_chanstate
*cs
= zst
->zst_cs
;
1632 mutex_spin_enter(&cs
->cs_lock
);
1633 CLR(tp
->t_state
, TS_BUSY
);
1634 if (ISSET(tp
->t_state
, TS_FLUSH
))
1635 CLR(tp
->t_state
, TS_FLUSH
);
1637 ndflush(&tp
->t_outq
, (int)(zst
->zst_tba
- tp
->t_outq
.c_cf
));
1638 mutex_spin_exit(&cs
->cs_lock
);
1639 (*tp
->t_linesw
->l_start
)(tp
);
1643 zstty_stsoft(struct zstty_softc
*zst
, struct tty
*tp
)
1645 struct zs_chanstate
*cs
= zst
->zst_cs
;
1648 mutex_spin_enter(&cs
->cs_lock
);
1650 delta
= cs
->cs_rr0_delta
;
1651 cs
->cs_rr0_delta
= 0;
1652 mutex_spin_exit(&cs
->cs_lock
);
1654 if (ISSET(delta
, cs
->cs_rr0_dcd
)) {
1656 * Inform the tty layer that carrier detect changed.
1658 mutex_spin_exit(&tty_lock
);
1659 (void) (*tp
->t_linesw
->l_modem
)(tp
, ISSET(rr0
, ZSRR0_DCD
));
1660 mutex_spin_enter(&tty_lock
);
1663 if (ISSET(delta
, cs
->cs_rr0_cts
)) {
1664 /* Block or unblock output according to flow control. */
1665 if (ISSET(rr0
, cs
->cs_rr0_cts
)) {
1666 zst
->zst_tx_stopped
= 0;
1667 (*tp
->t_linesw
->l_start
)(tp
);
1669 zst
->zst_tx_stopped
= 1;
1675 * Software interrupt. Called at zssoft
1677 * The main job to be done here is to empty the input ring
1678 * by passing its contents up to the tty layer. The ring is
1679 * always emptied during this operation, therefore the ring
1680 * must not be larger than the space after "high water" in
1681 * the tty layer, or the tty layer might drop our input.
1683 * Note: an "input blockage" condition is assumed to exist if
1684 * EITHER the TS_TBLOCK flag or zst_rx_blocked flag is set.
1687 zstty_softint(struct zs_chanstate
*cs
)
1694 zstty_softint1(struct zs_chanstate
*cs
)
1696 struct zstty_softc
*zst
= cs
->cs_private
;
1697 struct tty
*tp
= zst
->zst_tty
;
1700 if (zst
->zst_rx_ready
) {
1701 zst
->zst_rx_ready
= 0;
1702 zstty_rxsoft(zst
, tp
);
1705 if (zst
->zst_st_check
) {
1706 zst
->zst_st_check
= 0;
1707 zstty_stsoft(zst
, tp
);
1710 if (zst
->zst_tx_done
) {
1711 zst
->zst_tx_done
= 0;
1712 zstty_txsoft(zst
, tp
);
1716 struct zsops zsops_tty
= {
1717 zstty_rxint
, /* receive char available */
1718 zstty_stint
, /* external/status */
1719 zstty_txint
, /* xmit buffer empty */
1720 zstty_softint
, /* process software interrupt */
1725 zstty_txdma_int(void *arg
)
1727 struct zs_chanstate
*cs
= arg
;
1728 struct zstty_softc
*zst
= cs
->cs_private
;
1730 zst
->zst_tba
+= zst
->zst_tbc
;
1733 if (zst
->zst_tx_busy
) {
1734 zst
->zst_tx_busy
= 0;
1735 zst
->zst_tx_done
= 1;