xref: /csrg-svn/sys/vax/uba/dmf.c (revision 7726)
1*7726Sroot /*	dmf.c	4.6	82/08/13	*/
26940Ssam 
36940Ssam #include "dmf.h"
46940Ssam #if NDMF > 0
56940Ssam /*
66940Ssam  * DMF32 driver
76940Ssam  *
86940Ssam  * TODO:
96940Ssam  *	test with modem
106940Ssam  *	load as much as possible into silo
116940Ssam  *	get correct numbers for receive silo parameter timeout
126940Ssam  *	use auto XON/XOFF
136940Ssam  *	test reset code
146940Ssam  *	test with more than one unit
156940Ssam  *	optimize for efficient DMA and dynamically
166940Ssam  *	  decide between silo and DMA mode
176940Ssam  */
186940Ssam #include "bk.h"
196940Ssam #include "../h/param.h"
206940Ssam #include "../h/conf.h"
216940Ssam #include "../h/dir.h"
226940Ssam #include "../h/user.h"
236940Ssam #include "../h/tty.h"
246940Ssam #include "../h/map.h"
256940Ssam #include "../h/pte.h"
266940Ssam #include "../h/buf.h"
276940Ssam #include "../h/vm.h"
286940Ssam #include "../h/ubareg.h"
296940Ssam #include "../h/ubavar.h"
306940Ssam #include "../h/bk.h"
316940Ssam #include "../h/clist.h"
326940Ssam #include "../h/file.h"
33*7726Sroot #include "../h/uio.h"
346940Ssam 
356940Ssam /*
366940Ssam  * Definition of the driver for the auto-configuration program.
376940Ssam  */
386940Ssam int	dmfprobe(), dmfattach(), dmfrint(), dmfxint();
396940Ssam struct	uba_device *dmfinfo[NDMF];
406940Ssam u_short	dmfstd[] = { 0 };
416940Ssam struct	uba_driver dmfdriver =
426940Ssam 	{ dmfprobe, 0, dmfattach, 0, dmfstd, "dmf", dmfinfo };
436940Ssam 
446940Ssam /*
456940Ssam  * In this driver, "dmf" (unqualified) refers to the async portion
466940Ssam  * of the dmf32, "dmfc" to the combo portion, "dmfs" to the sync
476940Ssam  * portion, "dmfl" to the lp portion, and "dmfd" to the dr portion.
486940Ssam  */
496940Ssam struct dmfdevice
506940Ssam {
516940Ssam 	short	dmfccsr0;		/* combo csr 0 */
526940Ssam 	short	dmfccsr1;		/* combo csr 1 */
536940Ssam 	short	dmfs[4];
546940Ssam 	short	dmfcsr;			/* control-status register */
556940Ssam 	short	dmflpr;			/* line parameter register */
566940Ssam 	short	dmfrbuf;		/* receiver buffer (ro) */
576940Ssam 	union {
586940Ssam 		u_short	dmfirw;		/* indirect register word */
596940Ssam 		u_char	dmfirc[2];	/*    "         "    bytes */
606940Ssam 	} dmfun;
616940Ssam 	short	dmfl[2];
626940Ssam 	short	dmfd[4];
636940Ssam };
646940Ssam 
656940Ssam #define	dmfrsp	dmfrbuf		/* receive silo parameter register (wo) */
666940Ssam #define	dmftbuf	dmfun.dmfirc[0]	/* transmit buffer */
676940Ssam #define	dmftsc	dmfun.dmfirc[0]	/* transmit silo count */
686940Ssam #define	dmfrms	dmfun.dmfirc[1]	/* receive modem status */
696940Ssam #define	dmflcr	dmfun.dmfirc[0]	/* line control register */
706940Ssam #define	dmftms	dmfun.dmfirc[1]	/* transmit modem status */
716940Ssam #define	dmftba	dmfun.dmfirw	/* transmit buffer address */
726940Ssam #define	dmftcc	dmfun.dmfirw	/* transmit character count */
736940Ssam 
746940Ssam /* bits in dmfcsr */
756940Ssam #define	DMF_TI	0100000		/* transmit interrupt */
766940Ssam #define	DMF_TIE	0040000		/* transmit interrupt enable */
776940Ssam #define	DMF_NXM	0020000		/* non-existant memory */
786940Ssam #define	DMF_LIN	0003400		/* transmit line number */
796940Ssam #define	DMF_RI	0000200		/* receiver interrupt */
806940Ssam #define	DMF_RIE	0000100		/* receiver interrupt enable */
816940Ssam #define	DMF_CLR	0000040		/* master reset */
826940Ssam #define	DMF_IAD	0000037		/* indirect address register */
836940Ssam 
846940Ssam #define	DMFIR_TBUF	000	/* select tbuf indirect register */
856940Ssam #define	DMFIR_LCR	010	/* select lcr indirect register */
866940Ssam #define	DMFIR_TBA	020	/* select tba indirect register */
876940Ssam #define	DMFIR_TCC	030	/* select tcc indirect register */
886940Ssam 
896940Ssam /* bits in dmflpr */
906940Ssam #define	BITS6	(01<<3)
916940Ssam #define	BITS7	(02<<3)
926940Ssam #define	BITS8	(03<<3)
936940Ssam #define	TWOSB	0200
946940Ssam #define	PENABLE	040
956940Ssam /* DEC manuals incorrectly say this bit causes generation of even parity. */
966940Ssam #define	OPAR	0100
976940Ssam 
986940Ssam #define	DMF_IE	(DMF_TIE|DMF_RIE)
996940Ssam 
1006940Ssam #define	DMF_SILOCNT	32		/* size of DMF output silo (per line) */
1016940Ssam 
1026940Ssam /* bits in dmfrbuf */
1036940Ssam #define	DMF_DSC		0004000		/* data set change */
1046940Ssam #define	DMF_PE		0010000		/* parity error */
1056940Ssam #define	DMF_FE		0020000		/* framing error */
1066940Ssam #define	DMF_DO		0040000		/* data overrun */
1076940Ssam 
1086940Ssam /* bits in dmfrms */
1096940Ssam #define	DMF_USRR	0004		/* user modem signal (pin 25) */
1106940Ssam #define	DMF_SR		0010		/* secondary receive */
1116940Ssam #define	DMF_CTS		0020		/* clear to send */
1126940Ssam #define	DMF_CAR		0040		/* carrier detect */
1136940Ssam #define	DMF_RNG		0100		/* ring */
1146940Ssam #define	DMF_DSR		0200		/* data set ready */
1156940Ssam 
1166940Ssam /* bits in dmftms */
1176940Ssam #define	DMF_USRW	0001		/* user modem signal (pin 18) */
1186940Ssam #define	DMF_DTR		0002		/* data terminal ready */
1196940Ssam #define	DMF_RATE	0004		/* data signal rate select */
1206940Ssam #define	DMF_ST		0010		/* secondary transmit */
1216940Ssam #define	DMF_RTS		0020		/* request to send */
1226940Ssam #define	DMF_BRK		0040		/* pseudo break bit */
1236940Ssam #define	DMF_PREEMPT	0200		/* preempt output */
1246940Ssam 
1256940Ssam /* flags for modem control */
1266940Ssam #define	DMF_ON	(DMF_DTR|DMF_RTS)
1276940Ssam #define	DMF_OFF	0
1286940Ssam 
1296940Ssam /* bits in dmflcr */
1306940Ssam #define	DMF_MIE		0040		/* modem interrupt enable */
1316940Ssam #define	DMF_FLUSH	0020		/* flush transmit silo */
1326940Ssam #define	DMF_RBRK	0010		/* real break bit */
1336940Ssam #define	DMF_RE		0004		/* receive enable */
1346940Ssam #define	DMF_AUTOX	0002		/* auto XON/XOFF */
1356940Ssam #define	DMF_TE		0001		/* transmit enable */
1366940Ssam 
1376940Ssam #define	DMFLCR_ENA	(DMF_MIE|DMF_RE|DMF_TE)
1386940Ssam 
1396940Ssam /* bits in dm lsr, copied from dh.c */
1406940Ssam #define	DML_USR		0001000		/* usr modem sig, not a real DM bit */
1416940Ssam #define	DML_DSR		0000400		/* data set ready, not a real DM bit */
1426940Ssam #define	DML_RNG		0000200		/* ring */
1436940Ssam #define	DML_CAR		0000100		/* carrier detect */
1446940Ssam #define	DML_CTS		0000040		/* clear to send */
1456940Ssam #define	DML_SR		0000020		/* secondary receive */
1466940Ssam #define	DML_ST		0000010		/* secondary transmit */
1476940Ssam #define	DML_RTS		0000004		/* request to send */
1486940Ssam #define	DML_DTR		0000002		/* data terminal ready */
1496940Ssam #define	DML_LE		0000001		/* line enable */
1506940Ssam 
1516940Ssam /*
1526940Ssam  * Local variables for the driver
1536940Ssam  */
1546940Ssam char	dmf_speeds[] =
1556940Ssam 	{ 0, 0, 1, 2, 3, 4, 0, 5, 6, 7, 010, 012, 014, 016, 017, 0 };
1566940Ssam 
1576940Ssam struct	tty dmf_tty[NDMF*8];
1586940Ssam char	dmfsoftCAR[NDMF];
1596940Ssam int	ndmf = NDMF*8;
1606940Ssam int	dmfact;				/* mask of active dmf's */
1616940Ssam int	dmfstart(), ttrstrt();
1626940Ssam 
1636940Ssam #ifdef DMFDMA
1646940Ssam /*
1656940Ssam  * The clist space is mapped by the driver onto each UNIBUS.
1666940Ssam  * The UBACVT macro converts a clist space address for unibus uban
1676940Ssam  * into an i/o space address for the DMA routine.
1686940Ssam  */
1696940Ssam int	dmf_ubinfo[MAXNUBA];		/* info about allocated unibus map */
1706940Ssam static int cbase[MAXNUBA];		/* base address in unibus map */
1716940Ssam #define	UBACVT(x, uban)		(cbase[uban] + ((x)-(char *)cfree))
1726940Ssam #endif
1736940Ssam 
1746940Ssam /*
1756940Ssam  * Routine for configuration to set dmf interrupt.
1766940Ssam  */
1776940Ssam /*ARGSUSED*/
1786940Ssam dmfprobe(reg, ctlr)
1796940Ssam 	caddr_t reg;
1806940Ssam 	int ctlr;
1816940Ssam {
1826940Ssam 	register int br, cvec;		/* these are ``value-result'' */
1836940Ssam 	register struct dmfdevice *dmfaddr = (struct dmfdevice *)reg;
1846940Ssam 
1856940Ssam #ifdef lint
1866940Ssam 	br = 0; cvec = br; br = cvec;
1876940Ssam #endif
1886940Ssam 	br = 0x15;
1896940Ssam 	cvec = (uba_hd[numuba].uh_lastiv -= 4*8);
1906940Ssam 	dmfaddr->dmfccsr0 = cvec >> 2;
1916940Ssam 	/* NEED TO SAVE IT SOMEWHERE FOR OTHER DEVICES */
1927412Skre 	return (sizeof (struct dmfdevice));
1936940Ssam }
1946940Ssam 
1956940Ssam /*
1966940Ssam  * Routine called to attach a dmf.
1976940Ssam  */
1986940Ssam dmfattach(ui)
1996940Ssam 	struct uba_device *ui;
2006940Ssam {
2016940Ssam 
2026940Ssam 	dmfsoftCAR[ui->ui_unit] = ui->ui_flags;
2036940Ssam }
2046940Ssam 
2056940Ssam 
2066940Ssam /*
2076940Ssam  * Open a DMF32 line, mapping the clist onto the uba if this
2086940Ssam  * is the first dmf on this uba.  Turn on this dmf if this is
2096940Ssam  * the first use of it.
2106940Ssam  */
2116940Ssam /*ARGSUSED*/
2126940Ssam dmfopen(dev, flag)
2136940Ssam 	dev_t dev;
2146940Ssam {
2156940Ssam 	register struct tty *tp;
2166940Ssam 	register int unit, dmf;
2176940Ssam 	register struct dmfdevice *addr;
2186940Ssam 	register struct uba_device *ui;
2196940Ssam 	int s;
2206940Ssam 
2216940Ssam 	unit = minor(dev);
2226940Ssam 	dmf = unit >> 3;
2236940Ssam 	if (unit >= NDMF*8 || (ui = dmfinfo[dmf])== 0 || ui->ui_alive == 0) {
2246940Ssam 		u.u_error = ENXIO;
2256940Ssam 		return;
2266940Ssam 	}
2276940Ssam 	tp = &dmf_tty[unit];
2286971Ssam 	if (tp->t_state&TS_XCLUDE && u.u_uid!=0) {
2296940Ssam 		u.u_error = EBUSY;
2306940Ssam 		return;
2316940Ssam 	}
2326940Ssam 	addr = (struct dmfdevice *)ui->ui_addr;
2336940Ssam 	tp->t_addr = (caddr_t)addr;
2346940Ssam 	tp->t_oproc = dmfstart;
2356971Ssam 	tp->t_state |= TS_WOPEN;
2366940Ssam 	/*
2376940Ssam 	 * While setting up state for this uba and this dmf,
2386940Ssam 	 * block uba resets which can clear the state.
2396940Ssam 	 */
2406940Ssam 	s = spl5();
2416940Ssam #ifdef DMFDMA
2426940Ssam 	if (dmf_ubinfo[ui->ui_ubanum] == 0) {
2436940Ssam 		dmf_ubinfo[ui->ui_ubanum] =
2446940Ssam 		    uballoc(ui->ui_ubanum, (caddr_t)cfree,
2456940Ssam 			nclist*sizeof(struct cblock), 0);
2466940Ssam 		cbase[ui->ui_ubanum] = dmf_ubinfo[ui->ui_ubanum]&0x3ffff;
2476940Ssam 	}
2486940Ssam #endif
2496940Ssam 	if ((dmfact&(1<<dmf)) == 0) {
2506940Ssam 		addr->dmfcsr |= DMF_IE;
2516940Ssam 		dmfact |= (1<<dmf);
2526940Ssam 		addr->dmfrsp = 1;	/* DON'T KNOW WHAT TO SET IT TO YET */
2536940Ssam 	}
2546940Ssam 	splx(s);
2556940Ssam 	/*
2566940Ssam 	 * If this is first open, initialze tty state to default.
2576940Ssam 	 */
2586971Ssam 	if ((tp->t_state&TS_ISOPEN) == 0) {
2596940Ssam 		ttychars(tp);
2606940Ssam 		if (tp->t_ispeed == 0) {
2616940Ssam 			tp->t_ispeed = B300;
2626940Ssam 			tp->t_ospeed = B300;
2636940Ssam 			tp->t_flags = ODDP|EVENP|ECHO;
2646940Ssam 		}
2656940Ssam 		dmfparam(unit);
2666940Ssam 	}
2676940Ssam 	/*
2686940Ssam 	 * Wait for carrier, then process line discipline specific open.
2696940Ssam 	 */
2706940Ssam 	if ((dmfmctl(dev, DMF_ON, DMSET) & (DMF_CAR<<8)) ||
2716940Ssam 	    (dmfsoftCAR[dmf] & (1<<(unit&07))))
2726971Ssam 		tp->t_state |= TS_CARR_ON;
2736940Ssam 	s = spl5();
2746971Ssam 	while ((tp->t_state & TS_CARR_ON) == 0) {
2756971Ssam 		tp->t_state |= TS_WOPEN;
2766940Ssam 		sleep((caddr_t)&tp->t_rawq, TTIPRI);
2776940Ssam 	}
2786940Ssam 	splx(s);
2796940Ssam 	(*linesw[tp->t_line].l_open)(dev, tp);
2806940Ssam }
2816940Ssam 
2826940Ssam /*
2836940Ssam  * Close a DMF32 line.
2846940Ssam  */
2856940Ssam /*ARGSUSED*/
2866940Ssam dmfclose(dev, flag)
2876940Ssam 	dev_t dev;
2886940Ssam 	int flag;
2896940Ssam {
2906940Ssam 	register struct tty *tp;
2916940Ssam 	register unit;
2926940Ssam 
2936940Ssam 	unit = minor(dev);
2946940Ssam 	tp = &dmf_tty[unit];
2956940Ssam 	(*linesw[tp->t_line].l_close)(tp);
2966940Ssam 	dmfmctl(unit, DMF_BRK, DMBIC);
2976971Ssam 	if (tp->t_state&TS_HUPCLS || (tp->t_state&TS_ISOPEN)==0)
2986940Ssam 		dmfmctl(unit, DMF_OFF, DMSET);
2996940Ssam 	ttyclose(tp);
3006940Ssam }
3016940Ssam 
302*7726Sroot dmfread(dev, uio)
3036940Ssam 	dev_t dev;
304*7726Sroot 	struct uio *uio;
3056940Ssam {
3066940Ssam 	register struct tty *tp;
3076940Ssam 
3086940Ssam 	tp = &dmf_tty[minor(dev)];
309*7726Sroot 	return ((*linesw[tp->t_line].l_read)(tp, uio));
3106940Ssam }
3116940Ssam 
3126940Ssam dmfwrite(dev)
3136940Ssam 	dev_t dev;
3146940Ssam {
3156940Ssam 	register struct tty *tp;
3166940Ssam 
3176940Ssam 	tp = &dmf_tty[minor(dev)];
3186940Ssam 	(*linesw[tp->t_line].l_write)(tp);
3196940Ssam }
3206940Ssam 
3216940Ssam /*
3226940Ssam  * DMF32 receiver interrupt.
3236940Ssam  */
3246940Ssam dmfrint(dmf)
3256940Ssam 	int dmf;
3266940Ssam {
3276940Ssam 	register struct tty *tp;
3286940Ssam 	register c;
3296940Ssam 	register struct dmfdevice *addr;
3306940Ssam 	register struct tty *tp0;
3316940Ssam 	register struct uba_device *ui;
3326940Ssam 	int overrun = 0;
3336940Ssam 
3346940Ssam 	ui = dmfinfo[dmf];
3356940Ssam 	if (ui == 0 || ui->ui_alive == 0)
3366940Ssam 		return;
3376940Ssam 	addr = (struct dmfdevice *)ui->ui_addr;
3386940Ssam 	tp0 = &dmf_tty[dmf<<3];
3396940Ssam 	/*
3406940Ssam 	 * Loop fetching characters from the silo for this
3416940Ssam 	 * dmf until there are no more in the silo.
3426940Ssam 	 */
3436940Ssam 	while ((c = addr->dmfrbuf) < 0) {
3446940Ssam 		tp = tp0 + ((c>>8)&07);
3456940Ssam 		if (c & DMF_DSC) {
3466940Ssam 			addr->dmfcsr = DMF_IE | DMFIR_TBUF | ((c>>8)&07);
3476940Ssam 			if (addr->dmfrms & DMF_CAR) {
3486971Ssam 				if ((tp->t_state & TS_CARR_ON) == 0) {
3496940Ssam 					wakeup((caddr_t)&tp->t_rawq);
3506971Ssam 					tp->t_state |= TS_CARR_ON;
3516940Ssam 				}
3526940Ssam 			} else {
3536971Ssam 				if (tp->t_state & TS_CARR_ON) {
3546940Ssam 					gsignal(tp->t_pgrp, SIGHUP);
3556940Ssam 					gsignal(tp->t_pgrp, SIGCONT);
3566940Ssam 					addr->dmfcsr = DMF_IE | DMFIR_LCR |
3576940Ssam 						((c>>8)&07);
3586940Ssam 					addr->dmftms = 0;
3596940Ssam 					flushtty(tp, FREAD|FWRITE);
3606940Ssam 				}
3616971Ssam 				tp->t_state &= ~TS_CARR_ON;
3626940Ssam 			}
3636940Ssam 			continue;
3646940Ssam 		}
3656971Ssam 		if ((tp->t_state&TS_ISOPEN)==0) {
3666940Ssam 			wakeup((caddr_t)tp);
3676940Ssam 			continue;
3686940Ssam 		}
3696940Ssam 		if (c & DMF_PE)
3706940Ssam 			if ((tp->t_flags&(EVENP|ODDP))==EVENP
3716940Ssam 			 || (tp->t_flags&(EVENP|ODDP))==ODDP )
3726940Ssam 				continue;
3736940Ssam 		if ((c & DMF_DO) && overrun == 0) {
3746940Ssam 			printf("dmf%d: silo overflow\n", dmf);
3756940Ssam 			overrun = 1;
3766940Ssam 		}
3776940Ssam 		if (c & DMF_FE)
3786940Ssam 			/*
3796940Ssam 			 * At framing error (break) generate
3806940Ssam 			 * a null (in raw mode, for getty), or a
3816940Ssam 			 * interrupt (in cooked/cbreak mode).
3826940Ssam 			 */
3836940Ssam 			if (tp->t_flags&RAW)
3846940Ssam 				c = 0;
3856940Ssam 			else
3866940Ssam 				c = tun.t_intrc;
3876940Ssam #if NBK > 0
3886940Ssam 		if (tp->t_line == NETLDISC) {
3896940Ssam 			c &= 0177;
3906940Ssam 			BKINPUT(c, tp);
3916940Ssam 		} else
3926940Ssam #endif
3936940Ssam 			(*linesw[tp->t_line].l_rint)(c, tp);
3946940Ssam 	}
3956940Ssam }
3966940Ssam 
3976940Ssam /*
3986940Ssam  * Ioctl for DMF32.
3996940Ssam  */
4006940Ssam /*ARGSUSED*/
4017630Ssam dmfioctl(dev, cmd, data, flag)
4026940Ssam 	dev_t dev;
4037630Ssam 	caddr_t data;
4046940Ssam {
4056940Ssam 	register struct tty *tp;
4066940Ssam 	register int unit = minor(dev);
4076940Ssam 	register int dmf = unit >> 3;
4086940Ssam 	register struct device *dmfaddr;
4096940Ssam 
4106940Ssam 	tp = &dmf_tty[unit];
4117630Ssam 	cmd = (*linesw[tp->t_line].l_ioctl)(tp, cmd, data, flag);
4126940Ssam 	if (cmd == 0)
4136940Ssam 		return;
4147630Ssam 	if (ttioctl(tp, cmd, data, flag)) {
4157630Ssam 		if (cmd == TIOCSETP || cmd == TIOCSETN)
4166940Ssam 			dmfparam(unit);
4176940Ssam 	} else switch(cmd) {
4186940Ssam 
4196940Ssam 	case TIOCSBRK:
4206940Ssam 		dmfmctl(dev, DMF_BRK, DMBIS);
4216940Ssam 		break;
4227630Ssam 
4236940Ssam 	case TIOCCBRK:
4246940Ssam 		dmfmctl(dev, DMF_BRK, DMBIC);
4256940Ssam 		break;
4267630Ssam 
4276940Ssam 	case TIOCSDTR:
4286940Ssam 		dmfmctl(dev, DMF_DTR|DMF_RTS, DMBIS);
4296940Ssam 		break;
4307630Ssam 
4316940Ssam 	case TIOCCDTR:
4326940Ssam 		dmfmctl(dev, DMF_DTR|DMF_RTS, DMBIC);
4336940Ssam 		break;
4347630Ssam 
4356940Ssam 	case TIOCMSET:
4367630Ssam 		dmfmctl(dev, dmtodmf(*(int *)data), DMSET);
4376940Ssam 		break;
4387630Ssam 
4396940Ssam 	case TIOCMBIS:
4407630Ssam 		dmfmctl(dev, dmtodmf(*(int *)data), DMBIS);
4416940Ssam 		break;
4427630Ssam 
4436940Ssam 	case TIOCMBIC:
4447630Ssam 		dmfmctl(dev, dmtodmf(*(int *)data), DMBIC);
4456940Ssam 		break;
4467630Ssam 
4476940Ssam 	case TIOCMGET:
4487630Ssam 		*(int *)data = dmftodm(dmfmctl(dev, 0, DMGET));
4496940Ssam 		break;
4507630Ssam 
4516940Ssam 	default:
4526940Ssam 		u.u_error = ENOTTY;
4536940Ssam 	}
4546940Ssam }
4556940Ssam 
4566940Ssam dmtodmf(bits)
4576940Ssam 	register int bits;
4586940Ssam {
4596940Ssam 	register int b;
4606940Ssam 
4616940Ssam 	b = bits & 012;
4626940Ssam 	if (bits & DML_ST) b |= DMF_RATE;
4636940Ssam 	if (bits & DML_RTS) b |= DMF_RTS;
4646940Ssam 	if (bits & DML_USR) b |= DMF_USRW;
4656940Ssam 	return(b);
4666940Ssam }
4676940Ssam 
4686940Ssam dmftodm(bits)
4696940Ssam 	register int bits;
4706940Ssam {
4716940Ssam 	register int b;
4726940Ssam 
4736940Ssam 	b = (bits & 012) | ((bits >> 7) & 0760) | DML_LE;
4746940Ssam 	if (bits & DMF_USRR) b |= DML_USR;
4756940Ssam 	if (bits & DMF_RTS) b |= DML_RTS;
4766940Ssam 	return(b);
4776940Ssam }
4786940Ssam 
4796940Ssam 
4806940Ssam /*
4816940Ssam  * Set parameters from open or stty into the DMF hardware
4826940Ssam  * registers.
4836940Ssam  */
4846940Ssam dmfparam(unit)
4856940Ssam 	register int unit;
4866940Ssam {
4876940Ssam 	register struct tty *tp;
4886940Ssam 	register struct dmfdevice *addr;
4896940Ssam 	register int lpar, lcr;
4906940Ssam 	int s;
4916940Ssam 
4926940Ssam 	tp = &dmf_tty[unit];
4936940Ssam 	addr = (struct dmfdevice *)tp->t_addr;
4946940Ssam 	/*
4956940Ssam 	 * Block interrupts so parameters will be set
4966940Ssam 	 * before the line interrupts.
4976940Ssam 	 */
4986940Ssam 	s = spl5();
4996940Ssam 	addr->dmfcsr = (unit&07) | DMFIR_LCR | DMF_IE;
5006940Ssam 	if ((tp->t_ispeed)==0) {
5016971Ssam 		tp->t_state |= TS_HUPCLS;
5026940Ssam 		dmfmctl(unit, DMF_OFF, DMSET);
5036940Ssam 		return;
5046940Ssam 	}
5056940Ssam 	lpar = (dmf_speeds[tp->t_ospeed]<<12) | (dmf_speeds[tp->t_ispeed]<<8);
5066940Ssam 	lcr = DMFLCR_ENA;
5076940Ssam 	if ((tp->t_ispeed) == B134)
5086940Ssam 		lpar |= BITS6|PENABLE;
5096940Ssam 	else if ((tp->t_flags&RAW) || (tp->t_local&LLITOUT))
5106940Ssam 		lpar |= BITS8;
5116940Ssam 	else {
5126940Ssam 		lpar |= BITS7|PENABLE;
5136940Ssam 		/* CHECK FOR XON/XOFF AND SET lcr |= DMF_AUTOX; */
5146940Ssam 	}
5156940Ssam 	if ((tp->t_flags&EVENP) == 0)
5166940Ssam 		lpar |= OPAR;
5176940Ssam 	if ((tp->t_ospeed) == B110)
5186940Ssam 		lpar |= TWOSB;
5196940Ssam 	lpar |= (unit&07);
5206940Ssam 	addr->dmflpr = lpar;
5216940Ssam 	addr->dmflcr = lcr;
5226940Ssam 	splx(s);
5236940Ssam }
5246940Ssam 
5256940Ssam /*
5266940Ssam  * DMF32 transmitter interrupt.
5276940Ssam  * Restart the idle line.
5286940Ssam  */
5296940Ssam dmfxint(dmf)
5306940Ssam 	int dmf;
5316940Ssam {
5326940Ssam 	register struct tty *tp;
5336940Ssam 	register struct dmfdevice *addr;
5346940Ssam 	register struct uba_device *ui;
5356940Ssam 	register int unit, t;
5366940Ssam #ifdef DMFDMA
5376940Ssam 	short cntr;
5386940Ssam #endif
5396940Ssam 
5406940Ssam 	ui = dmfinfo[dmf];
5416940Ssam 	addr = (struct dmfdevice *)ui->ui_addr;
5426940Ssam 	while ((t = addr->dmfcsr) & DMF_TI) {
5436940Ssam 		unit = dmf*8 + ((t>>8)&07);
5446940Ssam 		tp = &dmf_tty[unit];
5456971Ssam 		tp->t_state &= ~TS_BUSY;
5466940Ssam 		if (t & DMF_NXM) {
5476940Ssam 			printf("dmf%d: NXM line %d\n", dmf, unit&7);
5486940Ssam 			/* SHOULD RESTART OR SOMETHING... */
5496940Ssam 		}
5506971Ssam 		if (tp->t_state&TS_FLUSH)
5516971Ssam 			tp->t_state &= ~TS_FLUSH;
5526940Ssam #ifdef DMFDMA
5536940Ssam 		else {
5546940Ssam 			addr->dmfcsr = DMFIR_TBUF | DMF_IE | (unit&07);
5556940Ssam 			if (addr->dmftsc == 0) {
5566940Ssam 				/*
5576940Ssam 				 * Do arithmetic in a short to make up
5586940Ssam 				 * for lost 16&17 bits.
5596940Ssam 				 */
5606940Ssam 				addr->dmfcsr = DMFIR_TBA | DMF_IE | (unit&07);
5616940Ssam 				cntr = addr->dmftba -
5626940Ssam 				    UBACVT(tp->t_outq.c_cf, ui->ui_ubanum);
5636940Ssam 				ndflush(&tp->t_outq, (int)cntr);
5646940Ssam 			}
5656940Ssam 		}
5666940Ssam #endif
5676940Ssam 		if (tp->t_line)
5686940Ssam 			(*linesw[tp->t_line].l_start)(tp);
5696940Ssam 		else
5706940Ssam 			dmfstart(tp);
5716940Ssam 	}
5726940Ssam }
5736940Ssam 
5746940Ssam /*
5756940Ssam  * Start (restart) transmission on the given DMF32 line.
5766940Ssam  */
5776940Ssam dmfstart(tp)
5786940Ssam 	register struct tty *tp;
5796940Ssam {
5806940Ssam 	register struct dmfdevice *addr;
5816940Ssam 	register int car, dmf, unit, nch;
5826940Ssam 	int s;
5836940Ssam 
5846940Ssam 	unit = minor(tp->t_dev);
5856940Ssam 	dmf = unit >> 3;
5866940Ssam 	unit &= 07;
5876940Ssam 	addr = (struct dmfdevice *)tp->t_addr;
5886940Ssam 
5896940Ssam 	/*
5906940Ssam 	 * Must hold interrupts in following code to prevent
5916940Ssam 	 * state of the tp from changing.
5926940Ssam 	 */
5936940Ssam 	s = spl5();
5946940Ssam 	/*
5956940Ssam 	 * If it's currently active, or delaying, no need to do anything.
5966940Ssam 	 */
5976971Ssam 	if (tp->t_state&(TS_TIMEOUT|TS_BUSY|TS_TTSTOP))
5986940Ssam 		goto out;
5996940Ssam 	/*
6006940Ssam 	 * If there are still characters in the silo,
6016940Ssam 	 * just reenable the transmitter.
6026940Ssam 	 */
6036940Ssam 	addr->dmfcsr = DMF_IE | DMFIR_TBUF | unit;
6046940Ssam 	if (addr->dmftsc) {
6056940Ssam 		addr->dmfcsr = DMF_IE | DMFIR_LCR | unit;
6066940Ssam 		addr->dmflcr |= DMF_TE;
6076971Ssam 		tp->t_state |= TS_BUSY;
6086940Ssam 		goto out;
6096940Ssam 	}
6106940Ssam 	/*
6116940Ssam 	 * If there are sleepers, and output has drained below low
6126940Ssam 	 * water mark, wake up the sleepers.
6136940Ssam 	 */
6146971Ssam 	if ((tp->t_state&TS_ASLEEP) && tp->t_outq.c_cc<=TTLOWAT(tp)) {
6156971Ssam 		tp->t_state &= ~TS_ASLEEP;
6166963Ssam 		wakeup((caddr_t)&tp->t_outq);
6176940Ssam 	}
6186940Ssam 	/*
6196940Ssam 	 * Now restart transmission unless the output queue is
6206940Ssam 	 * empty.
6216940Ssam 	 */
6226940Ssam 	if (tp->t_outq.c_cc == 0)
6236940Ssam 		goto out;
6246940Ssam 	if (tp->t_flags&RAW || tp->t_local&LLITOUT)
6256940Ssam 		nch = ndqb(&tp->t_outq, 0);
6266940Ssam 	else {
6276940Ssam 		nch = ndqb(&tp->t_outq, 0200);
6286940Ssam 		/*
6296940Ssam 		 * If first thing on queue is a delay process it.
6306940Ssam 		 */
6316940Ssam 		if (nch == 0) {
6326940Ssam 			nch = getc(&tp->t_outq);
6336940Ssam 			timeout(ttrstrt, (caddr_t)tp, (nch&0x7f)+6);
6346971Ssam 			tp->t_state |= TS_TIMEOUT;
6356940Ssam 			goto out;
6366940Ssam 		}
6376940Ssam 	}
6386940Ssam 	/*
6396940Ssam 	 * If characters to transmit, restart transmission.
6406940Ssam 	 */
6416940Ssam 	if (nch) {
6426940Ssam #ifdef DMFDMA
6436940Ssam 		addr->dmfcsr = DMF_IE | DMFIR_LCR | unit;
6446940Ssam 		addr->dmflcr |= DMF_TE;
6456940Ssam 		car = UBACVT(tp->t_outq.c_cf, dmfinfo[dmf]->ui_ubanum);
6466940Ssam 		addr->dmfcsr = DMF_IE | DMFIR_TBA | unit;
6476940Ssam 		addr->dmftba = car;
6486940Ssam 		addr->dmftcc = ((car>>2)&0xc000) | nch;
6496940Ssam #else
6506940Ssam 		register char *cp = tp->t_outq.c_cf;
6516940Ssam 		register int i;
6526940Ssam 
6536940Ssam 		nch = MIN(nch, DMF_SILOCNT);
6546940Ssam 		addr->dmfcsr = DMF_IE | DMFIR_LCR | unit;
6556940Ssam 		addr->dmflcr |= DMF_TE;
6566940Ssam 		addr->dmfcsr = DMF_IE | DMFIR_TBUF | unit;
6576940Ssam 		for (i = 0; i < nch; i++)
6586940Ssam 			addr->dmftbuf = *cp++;
6596940Ssam 		ndflush(&tp->t_outq, nch);
6606940Ssam #endif
6616971Ssam 		tp->t_state |= TS_BUSY;
6626940Ssam 	}
6636940Ssam out:
6646940Ssam 	splx(s);
6656940Ssam }
6666940Ssam 
6676940Ssam /*
6686940Ssam  * Stop output on a line, e.g. for ^S/^Q or output flush.
6696940Ssam  */
6706940Ssam /*ARGSUSED*/
6716940Ssam dmfstop(tp, flag)
6726940Ssam 	register struct tty *tp;
6736940Ssam {
6746940Ssam 	register struct dmfdevice *addr;
6756940Ssam 	register int unit, s;
6766940Ssam 
6776940Ssam 	addr = (struct dmfdevice *)tp->t_addr;
6786940Ssam 	/*
6796940Ssam 	 * Block input/output interrupts while messing with state.
6806940Ssam 	 */
6816940Ssam 	s = spl5();
6826971Ssam 	if (tp->t_state & TS_BUSY) {
6836940Ssam 		/*
6846940Ssam 		 * Device is transmitting; stop output
6856940Ssam 		 * by selecting the line and disabling
6866940Ssam 		 * the transmitter.  If this is a flush
6876940Ssam 		 * request then flush the output silo,
6886940Ssam 		 * otherwise we will pick up where we
6896940Ssam 		 * left off by enabling the transmitter.
6906940Ssam 		 */
6916940Ssam 		unit = minor(tp->t_dev);
6926940Ssam 		addr->dmfcsr = DMFIR_LCR | (unit&07) | DMF_IE;
6936940Ssam 		addr->dmflcr &= ~DMF_TE;
6946971Ssam 		if ((tp->t_state&TS_TTSTOP)==0) {
6956971Ssam 			tp->t_state |= TS_FLUSH;
6966940Ssam 			addr->dmflcr |= DMF_FLUSH;
6976940Ssam 		} else
6986971Ssam 			tp->t_state &= ~TS_BUSY;
6996940Ssam 	}
7006940Ssam 	splx(s);
7016940Ssam }
7026940Ssam 
7036940Ssam /*
7046940Ssam  * DMF32 modem control
7056940Ssam  */
7066940Ssam dmfmctl(dev, bits, how)
7076940Ssam 	dev_t dev;
7086940Ssam 	int bits, how;
7096940Ssam {
7106940Ssam 	register struct dmfdevice *dmfaddr;
7116940Ssam 	register int unit, mbits, lcr;
7126940Ssam 	int s;
7136940Ssam 
7146940Ssam 	unit = minor(dev);
7156940Ssam 	dmfaddr = (struct dmfdevice *)(dmf_tty[unit].t_addr);
7166940Ssam 	unit &= 07;
7176940Ssam 	s = spl5();
7186940Ssam 	dmfaddr->dmfcsr = DMF_IE | DMFIR_TBUF | unit;
7196940Ssam 	mbits = dmfaddr->dmfrms << 8;
7206940Ssam 	dmfaddr->dmfcsr = DMF_IE | DMFIR_LCR | unit;
7216940Ssam 	mbits |= dmfaddr->dmftms;
7226940Ssam 	lcr = dmfaddr->dmflcr;
7236940Ssam 	switch (how) {
7246940Ssam 	case DMSET:
7256940Ssam 		mbits = bits;
7266940Ssam 		break;
7276940Ssam 
7286940Ssam 	case DMBIS:
7296940Ssam 		mbits |= bits;
7306940Ssam 		break;
7316940Ssam 
7326940Ssam 	case DMBIC:
7336940Ssam 		mbits &= ~bits;
7346940Ssam 		break;
7356940Ssam 
7366940Ssam 	case DMGET:
7376940Ssam 		(void) splx(s);
7386940Ssam 		return(mbits);
7396940Ssam 	}
7406940Ssam 	dmfaddr->dmftms = mbits&037;
7416940Ssam 	if (mbits & DMF_BRK)
7426940Ssam 		lcr |= DMF_RBRK;
7436940Ssam 	else
7446940Ssam 		lcr &= ~DMF_RBRK;
7456940Ssam 	dmfaddr->dmflcr = lcr;
7466940Ssam 	(void) splx(s);
7476940Ssam 	return(mbits);
7486940Ssam }
7496940Ssam 
7506940Ssam /*
7516940Ssam  * Reset state of driver if UBA reset was necessary.
7526940Ssam  * Reset the csr, lpr, and lcr registers on open lines, and
7536940Ssam  * restart transmitters.
7546940Ssam  */
7556940Ssam dmfreset(uban)
7566940Ssam 	int uban;
7576940Ssam {
7586940Ssam 	register int dmf, unit;
7596940Ssam 	register struct tty *tp;
7606940Ssam 	register struct uba_device *ui;
7616940Ssam 	register struct dmfdevice *addr;
7626940Ssam 	int i;
7636940Ssam 
7646940Ssam #ifdef DMFDMA
7656940Ssam 	if (dmf_ubinfo[uban] == 0)
7666940Ssam 		return;
7676940Ssam 	ubarelse(uban, &dmf_ubinfo[uban]);
7686940Ssam 	dmf_ubinfo[uban] = uballoc(uban, (caddr_t)cfree,
7696940Ssam 	    nclist*sizeof (struct cblock), 0);
7706940Ssam 	cbase[uban] = dmf_ubinfo[uban]&0x3ffff;
7716940Ssam #endif
7726940Ssam 	for (dmf = 0; dmf < NDMF; dmf++) {
7736940Ssam 		ui = dmfinfo[dmf];
7746940Ssam 		if (ui == 0 || ui->ui_alive == 0 || ui->ui_ubanum != uban)
7756940Ssam 			continue;
7766940Ssam 		printf(" dmf%d", dmf);
7776940Ssam 		addr = (struct dmfdevice *)ui->ui_addr;
7786940Ssam 		addr->dmfcsr = DMF_IE;
7796940Ssam 		addr->dmfrsp = 1;
7806940Ssam 		unit = dmf * 8;
7816940Ssam 		for (i = 0; i < 8; i++) {
7826940Ssam 			tp = &dmf_tty[unit];
7836971Ssam 			if (tp->t_state & (TS_ISOPEN|TS_WOPEN)) {
7846940Ssam 				dmfparam(unit);
7856940Ssam 				dmfmctl(unit, DMF_ON, DMSET);
7866971Ssam 				tp->t_state &= ~TS_BUSY;
7876940Ssam 				dmfstart(tp);
7886940Ssam 			}
7896940Ssam 			unit++;
7906940Ssam 		}
7916940Ssam 	}
7926940Ssam }
7936940Ssam 
7946940Ssam /* stubs for interrupt routines for devices not yet supported */
7956940Ssam 
7966940Ssam dmfsrint() { printf("dmfsrint\n"); }
7976940Ssam 
7986940Ssam dmfsxint() { printf("dmfsxint\n"); }
7996940Ssam 
8006940Ssam dmfdaint() { printf("dmfdaint\n"); }
8016940Ssam 
8026940Ssam dmfdbint() { printf("dmfdbint\n"); }
8036940Ssam 
8046940Ssam dmflint() { printf("dmflint\n"); }
8056940Ssam #endif
806