RESTRICTION: The PDP-15 FPP is only partially debugged. Do NOT enable this feature for normal operations. WARNING: The core simulator files (scp.c, sim_*.c) have been reorganized. Unzip V3.2-0 to an empty directory before attempting to compile the source. IMPORTANT: If you are compiling for UNIX, please read the notes for Ethernet very carefully. You may need to download a new version of the pcap library, or make changes to the makefile, to get Ethernet support to work. 1. New Features in 3.2-0 1.1 SCP and libraries - Added SHOW <device> RADIX command. - Added SHOW <device> MODIFIERS command. - Added SHOW <device> NAMES command. - Added SET/SHOW <device> DEBUG command. - Added sim_vm_parse_addr and sim_vm_fprint_addr optional interfaces. - Added REG_VMAD flag. - Split SCP into separate libraries for easier modification. - Added more room to the device and unit flag fields. - Changed terminal multiplexor library to support unlimited. number of async lines. 1.2 All DECtapes - Added STOP_EOR flag to enable end-of-reel error stop - Added device debug support. 1.3 Nova and Eclipse - Added QTY and ALM multiplexors (Bruce Ray). 1.4 LGP-30 - Added LGP-30/LGP-21 simulator. 1.5 PDP-11 - Added format, address increment inhibit, transfer overrun detection to RK. - Added device debug support to HK, RP, TM, TQ, TS. - Added DEUNA/DELUA (XU) support (Dave Hittner). - Add DZ per-line logging. 1.6 18b PDP's - Added support for 1-4 (PDP-9)/1-16 (PDP-15) additional terminals. 1.7 PDP-10 - Added DEUNA/DELUA (XU) support (Dave Hittner). 1.8 VAX - Added extended memory to 512MB (Mark Pizzolato). - Added RXV21 support. 2. Bugs Fixed in 3.2-0 2.1 SCP - Fixed double logging of SHOW BREAK (found by Mark Pizzolato). - Fixed implementation of REG_VMIO. 2.2 Nova and Eclipse - Fixed device enable/disable support (found by Bruce Ray). 2.3 PDP-1 - Fixed bug in LOAD (found by Mark Crispin). 2.4 PDP-10 - Fixed bug in floating point unpack. - Fixed bug in FIXR (found by Phil Stone, fixed by Chris Smith). 2.6 PDP-11 - Fixed bug in RQ interrupt control (found by Tom Evans). 2.6 PDP-18B - Fixed bug in PDP-15 XVM g_mode implementation. - Fixed bug in PDP-15 indexed address calculation. - Fixed bug in PDP-15 autoindexed address calculation. - Fixed bugs in FPP-15 instruction decode. - Fixed clock response to CAF. - Fixed bug in hardware read-in mode bootstrap. - Fixed PDP-15 XVM instruction decoding errors. 2.7 VAX - Fixed PC read fault in EXTxV. - Fixed PC write fault in INSV.
551 lines
19 KiB
C
551 lines
19 KiB
C
/* id_pas.c: Interdata programmable async line adapter simulator
|
||
|
||
Copyright (c) 2001-2004, Robert M Supnik
|
||
|
||
Permission is hereby granted, free of charge, to any person obtaining a
|
||
copy of this software and associated documentation files (the "Software"),
|
||
to deal in the Software without restriction, including without limitation
|
||
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||
and/or sell copies of the Software, and to permit persons to whom the
|
||
Software is furnished to do so, subject to the following conditions:
|
||
|
||
The above copyright notice and this permission notice shall be included in
|
||
all copies or substantial portions of the Software.
|
||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||
ROBERT M SUPNIK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||
|
||
Except as contained in this notice, the name of Robert M Supnik shall not
|
||
be used in advertising or otherwise to promote the sale, use or other dealings
|
||
in this Software without prior written authorization from Robert M Supnik.
|
||
|
||
pas Programmable asynchronous line adapter(s)
|
||
|
||
05-Jan-04 RMS Revised for tmxr library changes
|
||
09-May-03 RMS Added network device flag
|
||
|
||
This module implements up to 32 individual serial interfaces, representing
|
||
either individual PASLA modules or combinations of the 2-line and 8-line
|
||
multiplexors, which are functionally very similar. These interfaces are mapped
|
||
to Telnet based connections as the lines of a terminal multiplexor. The
|
||
connection polling mechanism and the character input polling for all lines
|
||
are done through a single polling job.
|
||
*/
|
||
|
||
#include "id_defs.h"
|
||
#include "sim_sock.h"
|
||
#include "sim_tmxr.h"
|
||
#include <ctype.h>
|
||
|
||
#define PAS_LINES 32
|
||
|
||
#define UNIT_V_8B (UNIT_V_UF + 0) /* 8B */
|
||
#define UNIT_V_UC (UNIT_V_UF + 1) /* UC only */
|
||
#define UNIT_V_MDM (UNIT_V_UF + 2) /* modem control */
|
||
#define UNIT_8B (1 << UNIT_V_8B)
|
||
#define UNIT_UC (1 << UNIT_V_UC)
|
||
#define UNIT_MDM (1 << UNIT_V_MDM)
|
||
|
||
#define PAS_INIT_POLL 8000
|
||
#define PASL_WAIT 500
|
||
|
||
/* Status byte */
|
||
|
||
#define STA_OVR 0x80 /* overrun RO */
|
||
#define STA_PF 0x40 /* parity err RONI */
|
||
#define STA_NCL2S 0x40 /* not clr to snd XO */
|
||
#define STA_FR 0x20 /* framing err RO */
|
||
#define STA_RCR 0x10 /* rv chan rcv NI */
|
||
#define STA_CROF 0x02 /* carrier off RO */
|
||
#define STA_RING 0x01 /* ring RO */
|
||
#define STA_RCV (STA_OVR|STA_PF|STA_FR|STA_RCR|STA_CROF|STA_RING)
|
||
#define SET_EX (STA_OVR|STA_PF|STA_FR)
|
||
#define STA_XMT (STA_BSY)
|
||
|
||
/* Command bytes 1,0 */
|
||
|
||
#define CMD_DTR (0x20 << 8) /* DTR */
|
||
#define CMD_ECHO (0x10 << 8) /* echoplex */
|
||
#define CMD_RCT (0x08 << 8) /* RCT/DTB NI */
|
||
#define CMD_XMTB (0x04 << 8) /* xmt break NI */
|
||
#define CMD_WRT (0x02 << 8) /* write/read */
|
||
#define CMD_V_CLK 6 /* baud rate */
|
||
#define CMD_M_CLK 0x3
|
||
#define CMD_V_DB 4 /* data bits */
|
||
#define CMD_M_DB 0x3
|
||
#define CMD_STOP 0x80 /* stop bit */
|
||
#define CMD_V_PAR 1 /* parity */
|
||
#define CMD_M_PAR 0x3
|
||
#define GET_PAR(x) (((x) >> CMD_V_PAR) & CMD_M_PAR)
|
||
#define PAR_NONE 0
|
||
#define PAR_RAW 1
|
||
#define PAR_ODD 2
|
||
#define PAR_EVEN 3
|
||
|
||
#define CMD_TYP 0x01 /* command type */
|
||
|
||
extern uint32 int_req[INTSZ], int_enb[INTSZ];
|
||
|
||
uint8 pas_sta[PAS_LINES]; /* status */
|
||
uint16 pas_cmd[PAS_LINES]; /* command */
|
||
uint8 pas_rbuf[PAS_LINES]; /* rcv buf */
|
||
uint8 pas_xbuf[PAS_LINES]; /* xmt buf */
|
||
uint8 pas_rarm[PAS_LINES]; /* rcvr int armed */
|
||
uint8 pas_xarm[PAS_LINES]; /* xmt int armed */
|
||
uint8 pas_rchp[PAS_LINES]; /* rcvr chr pend */
|
||
uint32 pas_tps = 50; /* polls/second */
|
||
uint8 pas_tplte[PAS_LINES * 2 + 1]; /* template */
|
||
|
||
TMLN pas_ldsc[PAS_LINES] = { 0 }; /* line descriptors */
|
||
TMXR pas_desc = { 8, 0, 0, pas_ldsc }; /* mux descriptor */
|
||
#define PAS_ENAB pas_desc.lines
|
||
|
||
uint32 pas (uint32 dev, uint32 op, uint32 dat);
|
||
void pas_ini (t_bool dtpl);
|
||
t_stat pasi_svc (UNIT *uptr);
|
||
t_stat paso_svc (UNIT *uptr);
|
||
t_stat pas_reset (DEVICE *dptr);
|
||
t_stat pas_attach (UNIT *uptr, char *cptr);
|
||
t_stat pas_detach (UNIT *uptr);
|
||
t_stat pas_summ (FILE *st, UNIT *uptr, int32 val, void *desc);
|
||
t_stat pas_show (FILE *st, UNIT *uptr, int32 val, void *desc);
|
||
int32 pas_par (int32 cmd, int32 c);
|
||
t_stat pas_vlines (UNIT *uptr, int32 val, char *cptr, void *desc);
|
||
void pas_reset_ln (int32 i);
|
||
|
||
/* PAS data structures
|
||
|
||
pas_dev PAS device descriptor
|
||
pas_unit PAS unit descriptor
|
||
pas_reg PAS register list
|
||
pas_mod PAS modifiers list
|
||
*/
|
||
|
||
DIB pas_dib = { d_PAS, -1, v_PAS, pas_tplte, &pas, &pas_ini };
|
||
|
||
UNIT pas_unit = { UDATA (&pasi_svc, UNIT_ATTABLE, 0), PAS_INIT_POLL };
|
||
|
||
REG pas_nlreg = { DRDATA (NLINES, PAS_ENAB, 6), PV_LEFT };
|
||
|
||
REG pas_reg[] = {
|
||
{ BRDATA (STA, pas_sta, 16, 8, PAS_LINES) },
|
||
{ BRDATA (CMD, pas_cmd, 16, 16, PAS_LINES) },
|
||
{ BRDATA (RBUF, pas_rbuf, 16, 8, PAS_LINES) },
|
||
{ BRDATA (XBUF, pas_xbuf, 16, 8, PAS_LINES) },
|
||
{ BRDATA (IREQ, &int_req[l_PAS], 16, 32, PAS_LINES / 16) },
|
||
{ BRDATA (IENB, &int_enb[l_PAS], 16, 32, PAS_LINES / 16) },
|
||
{ BRDATA (RARM, pas_rarm, 16, 1, PAS_LINES) },
|
||
{ BRDATA (XARM, pas_xarm, 16, 1, PAS_LINES) },
|
||
{ BRDATA (RCHP, pas_rchp, 16, 1, PAS_LINES) },
|
||
{ HRDATA (DEVNO, pas_dib.dno, 8), REG_HRO },
|
||
{ NULL } };
|
||
|
||
MTAB pas_mod[] = {
|
||
{ MTAB_XTD | MTAB_VDV | MTAB_VAL, 0, "lines", "LINES",
|
||
&pas_vlines, NULL, &pas_nlreg },
|
||
{ MTAB_XTD | MTAB_VDV, 1, NULL, "DISCONNECT",
|
||
&tmxr_dscln, NULL, &pas_desc },
|
||
{ UNIT_ATT, UNIT_ATT, "connections", NULL, NULL, &pas_summ },
|
||
{ MTAB_XTD | MTAB_VDV | MTAB_NMO, 1, "CONNECTIONS", NULL,
|
||
NULL, &pas_show, NULL },
|
||
{ MTAB_XTD | MTAB_VDV | MTAB_NMO, 0, "STATISTICS", NULL,
|
||
NULL, &pas_show, NULL },
|
||
{ MTAB_XTD|MTAB_VDV, 0, "DEVNO", "DEVNO",
|
||
&set_dev, &show_dev, NULL },
|
||
{ 0 } };
|
||
|
||
DEVICE pas_dev = {
|
||
"PAS", &pas_unit, pas_reg, pas_mod,
|
||
1, 10, 31, 1, 16, 8,
|
||
&tmxr_ex, &tmxr_dep, &pas_reset,
|
||
NULL, &pas_attach, &pas_detach,
|
||
&pas_dib, DEV_NET | DEV_DISABLE };
|
||
|
||
/* PASL data structures
|
||
|
||
pasl_dev PASL device descriptor
|
||
pasl_unit PASL unit descriptor
|
||
pasl_reg PASL register list
|
||
pasl_mod PASL modifiers list
|
||
*/
|
||
|
||
UNIT pasl_unit[] = {
|
||
{ UDATA (&paso_svc, 0, 0), PASL_WAIT }, /* all but 8 dis */
|
||
{ UDATA (&paso_svc, 0, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, 0, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, 0, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, 0, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, 0, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, 0, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, 0, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, UNIT_DIS, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, UNIT_DIS, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, UNIT_DIS, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, UNIT_DIS, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, UNIT_DIS, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, UNIT_DIS, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, UNIT_DIS, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, UNIT_DIS, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, UNIT_DIS, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, UNIT_DIS, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, UNIT_DIS, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, UNIT_DIS, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, UNIT_DIS, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, UNIT_DIS, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, UNIT_DIS, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, UNIT_DIS, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, UNIT_DIS, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, UNIT_DIS, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, UNIT_DIS, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, UNIT_DIS, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, UNIT_DIS, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, UNIT_DIS, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, UNIT_DIS, 0), PASL_WAIT },
|
||
{ UDATA (&paso_svc, UNIT_DIS, 0), PASL_WAIT } };
|
||
|
||
MTAB pasl_mod[] = {
|
||
{ UNIT_UC+UNIT_8B, UNIT_UC, "UC", "UC", NULL },
|
||
{ UNIT_UC+UNIT_8B, 0 , "7b", "7B", NULL },
|
||
{ UNIT_UC+UNIT_8B, UNIT_8B, "8b", "8B", NULL },
|
||
{ UNIT_MDM, 0, "no dataset", "NODATASET", NULL },
|
||
{ UNIT_MDM, UNIT_MDM, "dataset", "DATASET", NULL },
|
||
{ MTAB_XTD|MTAB_VUN|MTAB_NC, 0, "LOG", "LOG",
|
||
&tmxr_set_log, &tmxr_show_log, &pas_desc },
|
||
{ MTAB_XTD|MTAB_VUN|MTAB_NC, 0, NULL, "NOLOG",
|
||
&tmxr_set_nolog, NULL, &pas_desc },
|
||
{ 0 } };
|
||
|
||
REG pasl_reg[] = {
|
||
{ URDATA (TIME, pasl_unit[0].wait, 16, 24, 0,
|
||
PAS_LINES, REG_NZ + PV_LEFT) },
|
||
{ NULL } };
|
||
|
||
DEVICE pasl_dev = {
|
||
"PASL", pasl_unit, pasl_reg, pasl_mod,
|
||
PAS_LINES, 10, 31, 1, 16, 8,
|
||
NULL, NULL, &pas_reset,
|
||
NULL, NULL, NULL,
|
||
NULL, 0 };
|
||
|
||
/* PAS: IO routine */
|
||
|
||
uint32 pas (uint32 dev, uint32 op, uint32 dat)
|
||
{
|
||
int32 ln = (dev - pas_dib.dno) >> 1;
|
||
int32 xmt = (dev - pas_dib.dno) & 1;
|
||
int32 t, old_cmd;
|
||
|
||
switch (op) { /* case IO op */
|
||
case IO_ADR: /* select */
|
||
return BY; /* byte only */
|
||
case IO_RD: /* read */
|
||
pas_rchp[ln] = 0; /* clr chr pend */
|
||
pas_sta[ln] = pas_sta[ln] & ~STA_OVR; /* clr overrun */
|
||
return pas_rbuf[ln]; /* return buf */
|
||
case IO_WD: /* write */
|
||
pas_xbuf[ln] = dat & 0xFF; /* store char */
|
||
pas_sta[ln] = pas_sta[ln] | STA_BSY; /* set busy */
|
||
sim_activate (&pasl_unit[ln], pasl_unit[ln].wait);
|
||
break;
|
||
case IO_SS: /* status */
|
||
if (xmt) { /* xmt side? */
|
||
if (pas_ldsc[ln].conn == 0) /* not conn? */
|
||
t = STA_NCL2S | STA_BSY; /* busy, not clr */
|
||
else t = pas_sta[ln] & STA_XMT; } /* else just busy */
|
||
else {
|
||
t = pas_sta[ln] & STA_RCV; /* get static */
|
||
if (!pas_rchp[ln]) t = t | STA_BSY; /* no char? busy */
|
||
if (pas_ldsc[ln].conn == 0) /* not connected? */
|
||
t = t | STA_BSY | STA_EX; /* = !dsr */
|
||
if (t & SET_EX) t = t | STA_EX; } /* test for ex */
|
||
return t;
|
||
case IO_OC: /* command */
|
||
old_cmd = pas_cmd[ln]; /* old cmd */
|
||
if (dat & CMD_TYP) { /* type 1? */
|
||
pas_cmd[ln] = (pas_cmd[ln] & 0xFF) | (dat << 8);
|
||
if (pas_cmd[ln] & CMD_WRT) /* write? */
|
||
pas_xarm[ln] = int_chg (v_PASX + ln + ln, dat, pas_xarm[ln]);
|
||
else pas_rarm[ln] = int_chg (v_PAS + ln + ln, dat, pas_rarm[ln]); }
|
||
else pas_cmd[ln] = (pas_cmd[ln] & ~0xFF) | dat;
|
||
if (pasl_unit[ln].flags & UNIT_MDM) { /* modem ctrl? */
|
||
if ((pas_cmd[ln] & CMD_DTR) && (pas_sta[ln] & STA_RING))
|
||
pas_sta[ln] = pas_sta[ln] & ~(STA_CROF | STA_RING);
|
||
if (old_cmd & ~pas_cmd[ln] & CMD_DTR) {
|
||
tmxr_linemsg (&pas_ldsc[ln], "\r\nLine hangup\r\n");
|
||
tmxr_reset_ln (&pas_ldsc[ln]); /* reset line */
|
||
pas_sta[ln] = pas_sta[ln] | STA_CROF; /* no carrier */
|
||
if (pas_rarm[ln]) SET_INT (v_PAS + ln + ln); } }
|
||
break; }
|
||
return 0;
|
||
}
|
||
|
||
/* Unit service - receive side
|
||
|
||
Poll all active lines for input
|
||
Poll for new connections
|
||
*/
|
||
|
||
t_stat pasi_svc (UNIT *uptr)
|
||
{
|
||
int32 ln, c, out, t;
|
||
|
||
if ((uptr->flags & UNIT_ATT) == 0) return SCPE_OK; /* attached? */
|
||
t = sim_rtcn_calb (pas_tps, TMR_PAS); /* calibrate */
|
||
sim_activate (uptr, t); /* continue poll */
|
||
ln = tmxr_poll_conn (&pas_desc); /* look for connect */
|
||
if (ln >= 0) { /* got one? */
|
||
if ((pasl_unit[ln].flags & UNIT_MDM) && /* modem control */
|
||
((pas_cmd[ln] & CMD_DTR) == 0)) /* & !dtr? */
|
||
pas_sta[ln] = pas_sta[ln] | STA_RING | STA_CROF; /* set ring, no cd */
|
||
else pas_sta[ln] = pas_sta[ln] & ~STA_CROF; /* just answer */
|
||
if (pas_rarm[ln]) SET_INT (v_PAS + ln + ln); /* interrupt */
|
||
pas_ldsc[ln].rcve = 1; } /* rcv enabled */
|
||
tmxr_poll_rx (&pas_desc); /* poll for input */
|
||
for (ln = 0; ln < PAS_ENAB; ln++) { /* loop thru lines */
|
||
if (pas_ldsc[ln].conn) { /* connected? */
|
||
if (c = tmxr_getc_ln (&pas_ldsc[ln])) { /* any char? */
|
||
pas_sta[ln] = pas_sta[ln] & ~(STA_FR | STA_PF);
|
||
if (pas_rchp[ln]) pas_sta[ln] = pas_sta[ln] | STA_OVR;
|
||
if (pas_rarm[ln]) SET_INT (v_PAS + ln + ln);
|
||
if (c & SCPE_BREAK) { /* break? */
|
||
pas_sta[ln] = pas_sta[ln] | STA_FR; /* framing error */
|
||
pas_rbuf[ln] = 0; } /* no character */
|
||
else { /* normal */
|
||
out = c & 0x7F; /* echo is 7b */
|
||
if (pasl_unit[ln].flags & UNIT_8B) /* 8b? */
|
||
c = c & 0xFF;
|
||
else { /* UC or 7b */
|
||
if ((pasl_unit[ln].flags & UNIT_UC) && islower (out))
|
||
out = toupper (out); /* cvt to UC */
|
||
c = pas_par (pas_cmd[ln], out); } /* apply parity */
|
||
pas_rbuf[ln] = c; /* save char */
|
||
pas_rchp[ln] = 1; /* char pending */
|
||
if ((pas_cmd[ln] & CMD_ECHO) && pas_ldsc[ln].xmte) {
|
||
TMLN *lp = &pas_ldsc[ln]; /* get line */
|
||
tmxr_putc_ln (lp, out); /* output char */
|
||
tmxr_poll_tx (&pas_desc); } /* poll xmt */
|
||
} /* end else normal */
|
||
} /* end if char */
|
||
} /* end if conn */
|
||
else if ((pas_sta[ln] & STA_CROF) == 0) { /* not conn, was conn? */
|
||
pas_sta[ln] = pas_sta[ln] | STA_CROF; /* no carrier */
|
||
if (pas_rarm[ln]) SET_INT (v_PAS + ln + ln); } /* intr */
|
||
} /* end for */
|
||
return SCPE_OK;
|
||
}
|
||
|
||
/* Unit service - transmit side */
|
||
|
||
t_stat paso_svc (UNIT *uptr)
|
||
{
|
||
int32 c;
|
||
uint32 ln = uptr - pasl_unit; /* line # */
|
||
|
||
if (pas_ldsc[ln].conn) { /* connected? */
|
||
if (pas_ldsc[ln].xmte) { /* xmt enabled? */
|
||
TMLN *lp = &pas_ldsc[ln]; /* get line */
|
||
if (pasl_unit[ln].flags & UNIT_8B) /* 8b? */
|
||
c = pas_par (pas_cmd[ln], pas_xbuf[ln]);/* apply parity */
|
||
else { /* UC or 7b */
|
||
c = pas_xbuf[ln] & 0x7F; /* mask char */
|
||
if ((pasl_unit[ln].flags & UNIT_UC) && islower (c))
|
||
c = toupper (c); } /* cvt to UC */
|
||
tmxr_putc_ln (lp, c); /* output char */
|
||
tmxr_poll_tx (&pas_desc); } /* poll xmt */
|
||
else { /* buf full */
|
||
tmxr_poll_tx (&pas_desc); /* poll xmt */
|
||
sim_activate (uptr, pasl_unit[ln].wait); /* wait */
|
||
return SCPE_OK; } }
|
||
pas_sta[ln] = pas_sta[ln] & ~STA_BSY; /* not busy */
|
||
if (pas_xarm[ln]) SET_INT (v_PASX + ln + ln); /* set intr */
|
||
return SCPE_OK;
|
||
}
|
||
|
||
int32 pas_par (int32 cmd, int32 c)
|
||
{
|
||
int32 pf = GET_PAR (cmd);
|
||
static const uint8 odd_par[] = {
|
||
0x80, 0, 0, 0x80, 0, 0x80, 0x80, 0, /* 00 */
|
||
0, 0x80, 0x80, 0, 0x80, 0, 0, 0x80,
|
||
0, 0x80, 0x80, 0, 0x80, 0, 0, 0x80, /* 10 */
|
||
0x80, 0, 0, 0x80, 0, 0x80, 0x80, 0,
|
||
0, 0x80, 0x80, 0, 0x80, 0, 0, 0x80, /* 20 */
|
||
0x80, 0, 0, 0x80, 0, 0x80, 0x80, 0,
|
||
0x80, 0, 0, 0x80, 0, 0x80, 0x80, 0, /* 30 */
|
||
0, 0x80, 0x80, 0, 0x80, 0, 0, 0x80,
|
||
0, 0x80, 0x80, 0, 0x80, 0, 0, 0x80, /* 40 */
|
||
0x80, 0, 0, 0x80, 0, 0x80, 0x80, 0,
|
||
0x80, 0, 0, 0x80, 0, 0x80, 0x80, 0, /* 50 */
|
||
0, 0x80, 0x80, 0, 0x80, 0, 0, 0x80,
|
||
0x80, 0, 0, 0x80, 0, 0x80, 0x80, 0, /* 60 */
|
||
0, 0x80, 0x80, 0, 0x80, 0, 0, 0x80,
|
||
0, 0x80, 0x80, 0, 0x80, 0, 0, 0x80, /* 70 */
|
||
0x80, 0, 0, 0x80, 0, 0x80, 0x80, 0,
|
||
0, 0x80, 0x80, 0, 0x80, 0, 0, 0x80, /* 80 */
|
||
0x80, 0, 0, 0x80, 0, 0x80, 0x80, 0,
|
||
0x80, 0, 0, 0x80, 0, 0x80, 0x80, 0, /* 90 */
|
||
0, 0x80, 0x80, 0, 0x80, 0, 0, 0x80,
|
||
0x80, 0, 0, 0x80, 0, 0x80, 0x80, 0, /* A0 */
|
||
0, 0x80, 0x80, 0, 0x80, 0, 0, 0x80,
|
||
0, 0x80, 0x80, 0, 0x80, 0, 0, 0x80, /* B0 */
|
||
0x80, 0, 0, 0x80, 0, 0x80, 0x80, 0,
|
||
0x80, 0, 0, 0x80, 0, 0x80, 0x80, 0, /* C0 */
|
||
0, 0x80, 0x80, 0, 0x80, 0, 0, 0x80,
|
||
0, 0x80, 0x80, 0, 0x80, 0, 0, 0x80, /* D0 */
|
||
0x80, 0, 0, 0x80, 0, 0x80, 0x80, 0,
|
||
0, 0x80, 0x80, 0, 0x80, 0, 0, 0x80, /* E0 */
|
||
0x80, 0, 0, 0x80, 0, 0x80, 0x80, 0,
|
||
0x80, 0, 0, 0x80, 0, 0x80, 0x80, 0, /* F0 */
|
||
0, 0x80, 0x80, 0, 0x80, 0, 0, 0x80 };
|
||
|
||
switch (pf) { /* case on parity */
|
||
case PAR_ODD:
|
||
return (odd_par[c & 0x7F]) | (c & 0x7F);
|
||
case PAR_EVEN:
|
||
return (odd_par[c & 0x7F] ^ 0x80) | (c & 0x7F);
|
||
case PAR_NONE:
|
||
case PAR_RAW:
|
||
break; }
|
||
return c & 0xFF;
|
||
}
|
||
|
||
/* Reset routine */
|
||
|
||
t_stat pas_reset (DEVICE *dptr)
|
||
{
|
||
int32 i, t;
|
||
|
||
if (dptr->flags & DEV_DIS) { /* disabled? */
|
||
pas_dev.flags = pas_dev.flags | DEV_DIS; /* disable lines */
|
||
pasl_dev.flags = pasl_dev.flags | DEV_DIS; }
|
||
else { pas_dev.flags = pas_dev.flags & ~DEV_DIS; /* enable lines */
|
||
pasl_dev.flags = pasl_dev.flags & ~DEV_DIS; }
|
||
if (pas_unit.flags & UNIT_ATT) { /* master att? */
|
||
if (!sim_is_active (&pas_unit)) {
|
||
t = sim_rtcn_init (pas_unit.wait, TMR_PAS);
|
||
sim_activate (&pas_unit, t); } } /* activate */
|
||
else sim_cancel (&pas_unit); /* else stop */
|
||
for (i = 0; i < PAS_LINES; i++) pas_reset_ln (i);
|
||
return SCPE_OK;
|
||
}
|
||
|
||
/* Attach master unit */
|
||
|
||
t_stat pas_attach (UNIT *uptr, char *cptr)
|
||
{
|
||
t_stat r;
|
||
|
||
r = tmxr_attach (&pas_desc, uptr, cptr); /* attach */
|
||
if (r != SCPE_OK) return r; /* error */
|
||
sim_rtcn_init (pas_unit.wait, TMR_PAS);
|
||
sim_activate (uptr, 100); /* quick poll */
|
||
return SCPE_OK;
|
||
}
|
||
|
||
/* Detach master unit */
|
||
|
||
t_stat pas_detach (UNIT *uptr)
|
||
{
|
||
int32 i;
|
||
t_stat r;
|
||
|
||
r = tmxr_detach (&pas_desc, uptr); /* detach */
|
||
for (i = 0; i < PAS_LINES; i++) pas_ldsc[i].rcve = 0; /* disable rcv */
|
||
sim_cancel (uptr); /* stop poll */
|
||
return r;
|
||
}
|
||
|
||
/* Show summary processor */
|
||
|
||
t_stat pas_summ (FILE *st, UNIT *uptr, int32 val, void *desc)
|
||
{
|
||
int32 i, t;
|
||
|
||
for (i = t = 0; i < PAS_LINES; i++) t = t + (pas_ldsc[i].conn != 0);
|
||
if (t == 1) fprintf (st, "1 connection");
|
||
else fprintf (st, "%d connections", t);
|
||
return SCPE_OK;
|
||
}
|
||
|
||
/* SHOW CONN/STAT processor */
|
||
|
||
t_stat pas_show (FILE *st, UNIT *uptr, int32 val, void *desc)
|
||
{
|
||
int32 i;
|
||
|
||
for (i = 0; (i < PAS_LINES) && (pas_ldsc[i].conn == 0); i++) ;
|
||
if (i < PAS_LINES) {
|
||
for (i = 0; i < PAS_LINES; i++) {
|
||
if (pas_ldsc[i].conn)
|
||
if (val) tmxr_fconns (st, &pas_ldsc[i], i);
|
||
else tmxr_fstats (st, &pas_ldsc[i], i); } }
|
||
else fprintf (st, "all disconnected\n");
|
||
return SCPE_OK;
|
||
}
|
||
|
||
/* Change number of lines */
|
||
|
||
t_stat pas_vlines (UNIT *uptr, int32 val, char *cptr, void *desc)
|
||
{
|
||
int32 newln, i, t;
|
||
t_stat r;
|
||
|
||
if (cptr == NULL) return SCPE_ARG;
|
||
newln = get_uint (cptr, 10, PAS_LINES, &r);
|
||
if ((r != SCPE_OK) || (newln == PAS_ENAB)) return r;
|
||
if (newln == 0) return SCPE_ARG;
|
||
if (newln < PAS_ENAB) {
|
||
for (i = newln, t = 0; i < PAS_ENAB; i++) t = t | pas_ldsc[i].conn;
|
||
if (t && !get_yn ("This will disconnect users; proceed [N]?", FALSE))
|
||
return SCPE_OK;
|
||
for (i = newln; i < PAS_ENAB; i++) {
|
||
if (pas_ldsc[i].conn) {
|
||
tmxr_linemsg (&pas_ldsc[i], "\r\nOperator disconnected line\r\n");
|
||
tmxr_reset_ln (&pas_ldsc[i]); } /* reset line */
|
||
pasl_unit[i].flags = pasl_unit[i].flags | UNIT_DIS;
|
||
pas_reset_ln (i); }
|
||
}
|
||
else { for (i = PAS_ENAB; i < newln; i++) {
|
||
pasl_unit[i].flags = pasl_unit[i].flags & ~UNIT_DIS;
|
||
pas_reset_ln (i); }
|
||
}
|
||
PAS_ENAB = newln;
|
||
return SCPE_OK;
|
||
}
|
||
|
||
/* Reset an individual line */
|
||
|
||
void pas_reset_ln (int32 i)
|
||
{
|
||
CLR_INT (v_PAS + i + i); /* clear int */
|
||
CLR_ENB (v_PAS + i + i);
|
||
CLR_INT (v_PASX + i + i); /* disable int */
|
||
CLR_ENB (v_PASX + i + i);
|
||
pas_rarm[i] = pas_xarm[i] = 0; /* disarm int */
|
||
pas_rbuf[i] = pas_xbuf[i] = 0; /* clear state */
|
||
pas_cmd[i] = 0;
|
||
pas_rchp[i] = 0;
|
||
pas_sta[i] = 0;
|
||
if (pas_ldsc[i].conn == 0) /* clear carrier */
|
||
pas_sta[i] = pas_sta[i] | STA_CROF;
|
||
sim_cancel (&pasl_unit[i]);
|
||
return;
|
||
}
|
||
|
||
/* Init template */
|
||
|
||
void pas_ini (t_bool dtpl)
|
||
{
|
||
int32 i, j;
|
||
|
||
for (i = j = 0; i < PAS_ENAB; i++) {
|
||
pas_tplte[j] = j;
|
||
pas_tplte[j + 1] = j + o_PASX;
|
||
j = j + 2; }
|
||
pas_tplte[j] = TPL_END;
|
||
return;
|
||
}
|