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