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