2003-08-07 20:26:28 +04:00
|
|
|
/* $NetBSD: z8530sc.c,v 1.19 2003/08/07 16:31:03 agc Exp $ */
|
1996-01-24 04:07:21 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1992, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This software was developed by the Computer Systems Engineering group
|
|
|
|
* at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
|
|
|
|
* contributed to Berkeley.
|
|
|
|
*
|
|
|
|
* All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Lawrence Berkeley Laboratory.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 20:26:28 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* @(#)zs.c 8.1 (Berkeley) 7/19/93
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1994 Gordon W. Ross
|
|
|
|
*
|
|
|
|
* This software was developed by the Computer Systems Engineering group
|
|
|
|
* at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
|
|
|
|
* contributed to Berkeley.
|
|
|
|
*
|
|
|
|
* All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Lawrence Berkeley Laboratory.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
1996-01-24 04:07:21 +03:00
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* @(#)zs.c 8.1 (Berkeley) 7/19/93
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Zilog Z8530 Dual UART driver (common part)
|
|
|
|
*
|
|
|
|
* This file contains the machine-independent parts of the
|
|
|
|
* driver common to tty and keyboard/mouse sub-drivers.
|
|
|
|
*/
|
|
|
|
|
2001-11-13 16:14:31 +03:00
|
|
|
#include <sys/cdefs.h>
|
2003-08-07 20:26:28 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: z8530sc.c,v 1.19 2003/08/07 16:31:03 agc Exp $");
|
2001-11-13 16:14:31 +03:00
|
|
|
|
1996-01-24 04:07:21 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
#include <sys/conf.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/tty.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/syslog.h>
|
|
|
|
|
|
|
|
#include <dev/ic/z8530reg.h>
|
|
|
|
#include <machine/z8530var.h>
|
|
|
|
|
1996-12-17 23:42:40 +03:00
|
|
|
void
|
1996-01-24 04:07:21 +03:00
|
|
|
zs_break(cs, set)
|
|
|
|
struct zs_chanstate *cs;
|
|
|
|
int set;
|
|
|
|
{
|
|
|
|
|
|
|
|
if (set) {
|
|
|
|
cs->cs_preg[5] |= ZSWR5_BREAK;
|
|
|
|
cs->cs_creg[5] |= ZSWR5_BREAK;
|
|
|
|
} else {
|
|
|
|
cs->cs_preg[5] &= ~ZSWR5_BREAK;
|
|
|
|
cs->cs_creg[5] &= ~ZSWR5_BREAK;
|
|
|
|
}
|
1996-01-31 01:34:52 +03:00
|
|
|
zs_write_reg(cs, 5, cs->cs_creg[5]);
|
1996-01-24 04:07:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* drain on-chip fifo
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
zs_iflush(cs)
|
|
|
|
struct zs_chanstate *cs;
|
|
|
|
{
|
|
|
|
u_char c, rr0, rr1;
|
1998-03-06 01:03:34 +03:00
|
|
|
int i;
|
1996-01-24 04:07:21 +03:00
|
|
|
|
1998-03-06 01:03:34 +03:00
|
|
|
/*
|
|
|
|
* Count how many times we loop. Some systems, such as some
|
|
|
|
* Apple PowerBooks, claim to have SCC's which they really don't.
|
|
|
|
*/
|
1998-03-22 05:36:02 +03:00
|
|
|
for (i = 0; i < 32; i++) {
|
1996-01-24 04:07:21 +03:00
|
|
|
/* Is there input available? */
|
1996-01-31 01:34:52 +03:00
|
|
|
rr0 = zs_read_csr(cs);
|
1996-01-24 04:07:21 +03:00
|
|
|
if ((rr0 & ZSRR0_RX_READY) == 0)
|
|
|
|
break;
|
|
|
|
|
1996-04-11 01:44:35 +04:00
|
|
|
/*
|
|
|
|
* First read the status, because reading the data
|
|
|
|
* destroys the status of this char.
|
|
|
|
*/
|
|
|
|
rr1 = zs_read_reg(cs, 1);
|
1996-01-31 01:34:52 +03:00
|
|
|
c = zs_read_data(cs);
|
1996-01-24 04:07:21 +03:00
|
|
|
|
|
|
|
if (rr1 & (ZSRR1_FE | ZSRR1_DO | ZSRR1_PE)) {
|
|
|
|
/* Clear the receive error. */
|
1996-01-31 01:34:52 +03:00
|
|
|
zs_write_csr(cs, ZSWR0_RESET_ERRORS);
|
1996-01-24 04:07:21 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Write the given register set to the given zs channel in the proper order.
|
|
|
|
* The channel must not be transmitting at the time. The receiver will
|
|
|
|
* be disabled for the time it takes to write all the registers.
|
|
|
|
* Call this with interrupts disabled.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
zs_loadchannelregs(cs)
|
|
|
|
struct zs_chanstate *cs;
|
|
|
|
{
|
2002-09-24 17:23:31 +04:00
|
|
|
u_char *reg, v;
|
1996-01-24 04:07:21 +03:00
|
|
|
|
2001-06-25 12:30:11 +04:00
|
|
|
zs_write_csr(cs, ZSM_RESET_ERR); /* XXX: reset error condition */
|
1996-01-24 04:07:21 +03:00
|
|
|
|
|
|
|
#if 1
|
|
|
|
/*
|
|
|
|
* XXX: Is this really a good idea?
|
|
|
|
* XXX: Should go elsewhere! -gwr
|
|
|
|
*/
|
|
|
|
zs_iflush(cs); /* XXX */
|
|
|
|
#endif
|
|
|
|
|
2002-09-24 17:23:31 +04:00
|
|
|
if (cs->cs_ctl_chan != NULL)
|
|
|
|
v = ((cs->cs_ctl_chan->cs_creg[5] & (ZSWR5_RTS | ZSWR5_DTR)) !=
|
|
|
|
(cs->cs_ctl_chan->cs_preg[5] & (ZSWR5_RTS | ZSWR5_DTR)));
|
|
|
|
else
|
|
|
|
v = 0;
|
|
|
|
|
|
|
|
if (memcmp((caddr_t)cs->cs_preg, (caddr_t)cs->cs_creg, 16) == 0 && !v)
|
|
|
|
return; /* only change if values are different */
|
2001-06-25 12:30:11 +04:00
|
|
|
|
|
|
|
/* Copy "pending" regs to "current" */
|
2001-07-07 19:53:13 +04:00
|
|
|
memcpy((caddr_t)cs->cs_creg, (caddr_t)cs->cs_preg, 16);
|
2001-06-25 12:30:11 +04:00
|
|
|
reg = cs->cs_creg; /* current regs */
|
|
|
|
|
1996-12-17 23:42:40 +03:00
|
|
|
/* disable interrupts */
|
|
|
|
zs_write_reg(cs, 1, reg[1] & ~ZSWR1_IMASK);
|
|
|
|
|
1996-01-24 04:07:21 +03:00
|
|
|
/* baud clock divisor, stop bits, parity */
|
1996-01-31 01:34:52 +03:00
|
|
|
zs_write_reg(cs, 4, reg[4]);
|
1996-01-24 04:07:21 +03:00
|
|
|
|
|
|
|
/* misc. TX/RX control bits */
|
1996-01-31 01:34:52 +03:00
|
|
|
zs_write_reg(cs, 10, reg[10]);
|
1996-01-24 04:07:21 +03:00
|
|
|
|
|
|
|
/* char size, enable (RX/TX) */
|
1996-01-31 01:34:52 +03:00
|
|
|
zs_write_reg(cs, 3, reg[3] & ~ZSWR3_RX_ENABLE);
|
|
|
|
zs_write_reg(cs, 5, reg[5] & ~ZSWR5_TX_ENABLE);
|
1996-01-24 04:07:21 +03:00
|
|
|
|
1996-12-17 23:42:40 +03:00
|
|
|
/* synchronous mode stuff */
|
|
|
|
zs_write_reg(cs, 6, reg[6]);
|
|
|
|
zs_write_reg(cs, 7, reg[7]);
|
1996-01-24 04:07:21 +03:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
/*
|
|
|
|
* Registers 2 and 9 are special because they are
|
|
|
|
* actually common to both channels, but must be
|
|
|
|
* programmed through channel A. The "zsc" attach
|
|
|
|
* function takes care of setting these registers
|
|
|
|
* and they should not be touched thereafter.
|
|
|
|
*/
|
|
|
|
/* interrupt vector */
|
1996-01-31 01:34:52 +03:00
|
|
|
zs_write_reg(cs, 2, reg[2]);
|
1996-01-24 04:07:21 +03:00
|
|
|
/* master interrupt control */
|
1996-01-31 01:34:52 +03:00
|
|
|
zs_write_reg(cs, 9, reg[9]);
|
1996-01-24 04:07:21 +03:00
|
|
|
#endif
|
|
|
|
|
1996-12-17 23:42:40 +03:00
|
|
|
/* Shut down the BRG */
|
|
|
|
zs_write_reg(cs, 14, reg[14] & ~ZSWR14_BAUD_ENA);
|
|
|
|
|
|
|
|
#ifdef ZS_MD_SETCLK
|
|
|
|
/* Let the MD code setup any external clock. */
|
|
|
|
ZS_MD_SETCLK(cs);
|
|
|
|
#endif /* ZS_MD_SETCLK */
|
|
|
|
|
1996-01-24 04:07:21 +03:00
|
|
|
/* clock mode control */
|
1996-01-31 01:34:52 +03:00
|
|
|
zs_write_reg(cs, 11, reg[11]);
|
1996-01-24 04:07:21 +03:00
|
|
|
|
|
|
|
/* baud rate (lo/hi) */
|
1996-01-31 01:34:52 +03:00
|
|
|
zs_write_reg(cs, 12, reg[12]);
|
|
|
|
zs_write_reg(cs, 13, reg[13]);
|
1996-01-24 04:07:21 +03:00
|
|
|
|
|
|
|
/* Misc. control bits */
|
1996-01-31 01:34:52 +03:00
|
|
|
zs_write_reg(cs, 14, reg[14]);
|
1996-01-24 04:07:21 +03:00
|
|
|
|
|
|
|
/* which lines cause status interrupts */
|
1996-01-31 01:34:52 +03:00
|
|
|
zs_write_reg(cs, 15, reg[15]);
|
1996-01-24 04:07:21 +03:00
|
|
|
|
1996-12-17 23:42:40 +03:00
|
|
|
/*
|
|
|
|
* Zilog docs recommend resetting external status twice at this
|
|
|
|
* point. Mainly as the status bits are latched, and the first
|
|
|
|
* interrupt clear might unlatch them to new values, generating
|
|
|
|
* a second interrupt request.
|
|
|
|
*/
|
|
|
|
zs_write_csr(cs, ZSM_RESET_STINT);
|
|
|
|
zs_write_csr(cs, ZSM_RESET_STINT);
|
|
|
|
|
1996-01-24 04:07:21 +03:00
|
|
|
/* char size, enable (RX/TX)*/
|
1996-01-31 01:34:52 +03:00
|
|
|
zs_write_reg(cs, 3, reg[3]);
|
|
|
|
zs_write_reg(cs, 5, reg[5]);
|
1996-12-17 23:42:40 +03:00
|
|
|
|
2002-09-24 17:23:31 +04:00
|
|
|
/* Write the status bits on the alternate channel also. */
|
|
|
|
if (cs->cs_ctl_chan != NULL) {
|
|
|
|
v = cs->cs_ctl_chan->cs_preg[5];
|
|
|
|
cs->cs_ctl_chan->cs_creg[5] = v;
|
|
|
|
zs_write_reg(cs->cs_ctl_chan, 5, v);
|
|
|
|
}
|
|
|
|
|
1996-12-17 23:42:40 +03:00
|
|
|
/* interrupt enables: RX, TX, STATUS */
|
|
|
|
zs_write_reg(cs, 1, reg[1]);
|
1996-01-24 04:07:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ZS hardware interrupt. Scan all ZS channels. NB: we know here that
|
|
|
|
* channels are kept in (A,B) pairs.
|
|
|
|
*
|
|
|
|
* Do just a little, then get out; set a software interrupt if more
|
|
|
|
* work is needed.
|
|
|
|
*
|
|
|
|
* We deliberately ignore the vectoring Zilog gives us, and match up
|
|
|
|
* only the number of `reset interrupt under service' operations, not
|
|
|
|
* the order.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
zsc_intr_hard(arg)
|
|
|
|
void *arg;
|
|
|
|
{
|
1997-10-05 02:30:30 +04:00
|
|
|
struct zsc_softc *zsc = arg;
|
2000-03-30 16:41:09 +04:00
|
|
|
struct zs_chanstate *cs;
|
|
|
|
u_char rr3;
|
1996-01-24 04:07:21 +03:00
|
|
|
|
1997-10-05 02:30:30 +04:00
|
|
|
/* First look at channel A. */
|
|
|
|
cs = zsc->zsc_cs[0];
|
2003-01-28 15:35:31 +03:00
|
|
|
|
|
|
|
/* Lock both channels */
|
|
|
|
simple_lock(&cs->cs_lock);
|
|
|
|
simple_lock(&zsc->zsc_cs[1]->cs_lock);
|
1996-01-24 04:07:21 +03:00
|
|
|
/* Note: only channel A has an RR3 */
|
1997-10-05 02:30:30 +04:00
|
|
|
rr3 = zs_read_reg(cs, 3);
|
1996-12-17 23:42:40 +03:00
|
|
|
|
1997-10-05 02:30:30 +04:00
|
|
|
/*
|
|
|
|
* Clear interrupt first to avoid a race condition.
|
|
|
|
* If a new interrupt condition happens while we are
|
|
|
|
* servicing this one, we will get another interrupt
|
|
|
|
* shortly. We can NOT just sit here in a loop, or
|
|
|
|
* we will cause horrible latency for other devices
|
|
|
|
* on this interrupt level (i.e. sun3x floppy disk).
|
|
|
|
*/
|
|
|
|
if (rr3 & (ZSRR3_IP_A_RX | ZSRR3_IP_A_TX | ZSRR3_IP_A_STAT)) {
|
|
|
|
zs_write_csr(cs, ZSWR0_CLR_INTR);
|
1996-12-17 23:42:40 +03:00
|
|
|
if (rr3 & ZSRR3_IP_A_RX)
|
1997-10-05 02:30:30 +04:00
|
|
|
(*cs->cs_ops->zsop_rxint)(cs);
|
1996-12-17 23:42:40 +03:00
|
|
|
if (rr3 & ZSRR3_IP_A_STAT)
|
1999-02-03 23:22:28 +03:00
|
|
|
(*cs->cs_ops->zsop_stint)(cs, 0);
|
1996-12-17 23:42:40 +03:00
|
|
|
if (rr3 & ZSRR3_IP_A_TX)
|
1997-10-05 02:30:30 +04:00
|
|
|
(*cs->cs_ops->zsop_txint)(cs);
|
1996-12-17 23:42:40 +03:00
|
|
|
}
|
1996-01-24 04:07:21 +03:00
|
|
|
|
2003-01-28 15:35:31 +03:00
|
|
|
/* Done with channel A */
|
|
|
|
simple_unlock(&cs->cs_lock);
|
|
|
|
|
1997-10-05 02:30:30 +04:00
|
|
|
/* Now look at channel B. */
|
|
|
|
cs = zsc->zsc_cs[1];
|
|
|
|
if (rr3 & (ZSRR3_IP_B_RX | ZSRR3_IP_B_TX | ZSRR3_IP_B_STAT)) {
|
|
|
|
zs_write_csr(cs, ZSWR0_CLR_INTR);
|
|
|
|
if (rr3 & ZSRR3_IP_B_RX)
|
|
|
|
(*cs->cs_ops->zsop_rxint)(cs);
|
|
|
|
if (rr3 & ZSRR3_IP_B_STAT)
|
1999-02-03 23:22:28 +03:00
|
|
|
(*cs->cs_ops->zsop_stint)(cs, 0);
|
1997-10-05 02:30:30 +04:00
|
|
|
if (rr3 & ZSRR3_IP_B_TX)
|
|
|
|
(*cs->cs_ops->zsop_txint)(cs);
|
1996-01-24 04:07:21 +03:00
|
|
|
}
|
|
|
|
|
2003-01-28 15:35:31 +03:00
|
|
|
simple_unlock(&cs->cs_lock);
|
|
|
|
|
1996-12-17 23:42:40 +03:00
|
|
|
/* Note: caller will check cs_x->cs_softreq and DTRT. */
|
1997-10-05 02:30:30 +04:00
|
|
|
return (rr3);
|
1996-01-24 04:07:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ZS software interrupt. Scan all channels for deferred interrupts.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
zsc_intr_soft(arg)
|
|
|
|
void *arg;
|
|
|
|
{
|
2000-03-30 16:41:09 +04:00
|
|
|
struct zsc_softc *zsc = arg;
|
|
|
|
struct zs_chanstate *cs;
|
|
|
|
int rval, chan;
|
1996-01-24 04:07:21 +03:00
|
|
|
|
|
|
|
rval = 0;
|
1996-12-17 23:42:40 +03:00
|
|
|
for (chan = 0; chan < 2; chan++) {
|
|
|
|
cs = zsc->zsc_cs[chan];
|
1996-01-24 04:07:21 +03:00
|
|
|
|
1996-04-11 01:44:35 +04:00
|
|
|
/*
|
|
|
|
* The softint flag can be safely cleared once
|
|
|
|
* we have decided to call the softint routine.
|
|
|
|
* (No need to do splzs() first.)
|
|
|
|
*/
|
|
|
|
if (cs->cs_softreq) {
|
|
|
|
cs->cs_softreq = 0;
|
1996-01-24 04:07:21 +03:00
|
|
|
(*cs->cs_ops->zsop_softint)(cs);
|
1996-12-17 23:42:40 +03:00
|
|
|
rval++;
|
1996-01-24 04:07:21 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return (rval);
|
|
|
|
}
|
|
|
|
|
1996-12-17 23:42:40 +03:00
|
|
|
/*
|
|
|
|
* Provide a null zs "ops" vector.
|
|
|
|
*/
|
|
|
|
|
1999-02-03 23:22:28 +03:00
|
|
|
static void zsnull_rxint __P((struct zs_chanstate *));
|
|
|
|
static void zsnull_stint __P((struct zs_chanstate *, int));
|
|
|
|
static void zsnull_txint __P((struct zs_chanstate *));
|
1996-12-17 23:42:40 +03:00
|
|
|
static void zsnull_softint __P((struct zs_chanstate *));
|
1996-01-24 04:07:21 +03:00
|
|
|
|
1996-04-11 01:44:35 +04:00
|
|
|
static void
|
1999-02-03 23:22:28 +03:00
|
|
|
zsnull_rxint(cs)
|
|
|
|
struct zs_chanstate *cs;
|
|
|
|
{
|
|
|
|
/* Ask for softint() call. */
|
|
|
|
cs->cs_softreq = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
zsnull_stint(cs, force)
|
|
|
|
struct zs_chanstate *cs;
|
|
|
|
int force;
|
|
|
|
{
|
|
|
|
/* Ask for softint() call. */
|
|
|
|
cs->cs_softreq = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
zsnull_txint(cs)
|
1996-01-24 04:07:21 +03:00
|
|
|
struct zs_chanstate *cs;
|
|
|
|
{
|
1996-12-17 23:42:40 +03:00
|
|
|
/* Ask for softint() call. */
|
|
|
|
cs->cs_softreq = 1;
|
1996-01-24 04:07:21 +03:00
|
|
|
}
|
|
|
|
|
1996-04-11 01:44:35 +04:00
|
|
|
static void
|
1996-01-24 04:07:21 +03:00
|
|
|
zsnull_softint(cs)
|
|
|
|
struct zs_chanstate *cs;
|
|
|
|
{
|
1996-12-17 23:42:40 +03:00
|
|
|
zs_write_reg(cs, 1, 0);
|
|
|
|
zs_write_reg(cs, 15, 0);
|
1996-01-24 04:07:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
struct zsops zsops_null = {
|
1999-02-03 23:22:28 +03:00
|
|
|
zsnull_rxint, /* receive char available */
|
|
|
|
zsnull_stint, /* external/status */
|
|
|
|
zsnull_txint, /* xmit buffer empty */
|
1996-01-24 04:07:21 +03:00
|
|
|
zsnull_softint, /* process software interrupt */
|
|
|
|
};
|