simh-testsetgenerator/SDS/sds_rad.c
Bob Supnik 26aa6de663 Notes For V3.2-0
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.
2011-04-15 08:34:26 -07:00

288 lines
9.7 KiB
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* sds_rad.c: SDS 940 fixed head disk 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.
rad fixed head disk
The fixed head disk is a head-per-track disk, with up to four disks. Each
disk is divided into two logical units. Reads and writes cannot cross logical
unit boundaries. The fixed head disk transfers 12b characters, rather than 6b
characters. To minimize overhead, the disk is buffered in memory.
*/
#include "sds_defs.h"
#include <math.h>
/* Constants */
#define RAD_NUMWD 64 /* words/sector */
#define RAD_NUMSC 64 /* sectors/track */
#define RAD_NUMTR 64 /* tracks/log unit */
#define RAD_NUMLU 8 /* log units/ctrl */
#define RAD_SCSIZE (RAD_NUMLU*RAD_NUMTR*RAD_NUMSC) /* sectors/disk */
#define RAD_AMASK (RAD_SCSIZE - 1) /* sec addr mask */
#define RAD_SIZE (RAD_SCSIZE * RAD_NUMWD) /* words/disk */
#define RAD_GETLUN(x) ((x) / (RAD_NUMTR * RAD_NUMSC))
#define RAD_SCMASK (RAD_NUMSC - 1) /* sector mask */
#define RAD_TRSCMASK ((RAD_NUMSC * RAD_NUMTR) - 1) /* track/sec mask */
#define GET_SECTOR(x) ((int) fmod (sim_gtime() / ((double) (x)), \
((double) RAD_NUMSC)))
extern uint32 xfr_req;
extern uint32 alert;
extern int32 stop_invins, stop_invdev, stop_inviop;
int32 rad_err = 0; /* error */
int32 rad_nobi = 0; /* !incr x track */
int32 rad_da = 0; /* disk address */
int32 rad_sba = 0; /* sec byte addr */
int32 rad_wrp = 0; /* write prot */
int32 rad_time = 2; /* time per 12b */
int32 rad_stopioe = 1; /* stop on error */
DSPT rad_tplt[] = { /* template */
{ 1, 0 }, { 1, DEV_OUT }, { 0, 0 } };
DEVICE rad_dev;
t_stat rad_svc (UNIT *uptr);
t_stat rad_reset (DEVICE *dptr);
t_stat rad_fill (int32 sba);
void rad_end_op (int32 fl);
int32 rad_adjda (int32 sba, int32 inc);
t_stat rad (uint32 fnc, uint32 inst, uint32 *dat);
/* RAD data structures
rad_dev device descriptor
rad_unit unit descriptor
rad_reg register list
*/
DIB rad_dib = { CHAN_E, DEV_RAD, XFR_RAD, rad_tplt, &rad };
UNIT rad_unit =
{ UDATA (&rad_svc, UNIT_FIX+UNIT_ATTABLE+UNIT_BUFABLE+UNIT_MUSTBUF,
RAD_SIZE) };
REG rad_reg[] = {
{ ORDATA (DA, rad_da, 15) },
{ GRDATA (SA, rad_sba, 8, 6, 1) },
{ FLDATA (BP, rad_sba, 0) },
{ FLDATA (XFR, xfr_req, XFR_V_RAD) },
{ FLDATA (NOBD, rad_nobi, 0) },
{ FLDATA (ERR, rad_err, 0) },
{ ORDATA (PROT, rad_wrp, 8) },
{ DRDATA (TIME, rad_time, 24), REG_NZ + PV_LEFT },
{ FLDATA (STOP_IOE, rad_stopioe, 0) },
{ NULL } };
MTAB rad_mod[] = {
{ MTAB_XTD|MTAB_VDV, 0, "CHANNEL", "CHANNEL",
&set_chan, &show_chan, NULL },
{ 0 } };
DEVICE rad_dev = {
"RAD", &rad_unit, rad_reg, rad_mod,
1, 8, 21, 1, 8, 24,
NULL, NULL, &rad_reset,
NULL, NULL, NULL,
&rad_dib, DEV_DISABLE };
/* Fixed head disk routine
conn - inst = EOM0, dat = NULL
eom1 - inst = EOM1, dat = NULL
sks - inst = SKS, dat = ptr to result
disc - inst = device number, dat = NULL
wreor - inst = device number, dat = NULL
read - inst = device number, dat = ptr to data
write - inst = device number, dat = ptr to result
*/
t_stat rad (uint32 fnc, uint32 inst, uint32 *dat)
{
int32 t, lun, new_ch;
uint32 p;
uint32 *fbuf = rad_unit.filebuf;
switch (fnc) { /* case function */
case IO_CONN: /* connect */
new_ch = I_GETEOCH (inst); /* get new chan */
if (new_ch != rad_dib.chan) return SCPE_IERR; /* wrong chan? */
if (CHC_GETCPW (inst) > 1) return STOP_INVIOP; /* 1-2 char/word? */
if (sim_is_active (&rad_unit) || (alert == POT_RADA)) /* protocol viol? */
return STOP_INVIOP;
rad_err = 0; /* clr error */
rad_sba = 0; /* clr sec bptr */
chan_set_flag (rad_dib.chan, CHF_12B); /* 12B mode */
t = (rad_da & RAD_SCMASK) - GET_SECTOR (rad_time * RAD_NUMWD);
if (t <= 0) t = t + RAD_NUMSC; /* seek */
sim_activate (&rad_unit, t * rad_time * (RAD_NUMWD / 2));
xfr_req = xfr_req & ~XFR_RAD; /* clr xfr flg */
break;
case IO_EOM1: /* EOM mode 1 */
new_ch = I_GETEOCH (inst); /* get new chan */
if (new_ch != rad_dib.chan) return SCPE_IERR; /* wrong chan? */
if ((inst & 00600) == 00200) alert = POT_RADS; /* alert for sec */
else if ((inst & 06600) == 0) { /* alert for addr */
if (sim_is_active (&rad_unit)) rad_err = 1; /* busy? */
else {
rad_nobi = (inst & 01000)? 1: 0; /* save inc type */
alert = POT_RADA; } } /* set alert */
break;
case IO_DISC: /* disconnect */
rad_end_op (0); /* normal term */
if (inst & DEV_OUT) return rad_fill (rad_sba); /* fill write */
break;
case IO_WREOR: /* write eor */
rad_end_op (CHF_EOR); /* eor term */
return rad_fill (rad_sba); /* fill write */
case IO_SKS: /* SKS */
new_ch = I_GETSKCH (inst); /* sks chan */
if (new_ch != rad_dib.chan) return SCPE_IERR; /* wrong chan? */
t = I_GETSKCND (inst); /* sks cond */
lun = RAD_GETLUN (rad_da);
if (((t == 000) && !sim_is_active (&rad_unit)) || /* 10026: ready */
((t == 004) && !rad_err) || /* 11026: !err */
((t == 014) && !(rad_wrp & (1 << lun)))) /* 13026: !wrprot */
*dat = 1;
break;
case IO_READ: /* read */
p = (rad_da * RAD_NUMWD) + (rad_sba >> 1); /* buf wd addr */
xfr_req = xfr_req & ~XFR_RAD; /* clr xfr req */
if ((rad_unit.flags & UNIT_BUF) == 0) { /* not buffered? */
rad_end_op (CHF_ERR | CHF_EOR); /* set rad err */
CRETIOE (rad_stopioe, SCPE_UNATT); }
if (p >= rad_unit.capac) { /* end of disk? */
rad_end_op (CHF_ERR | CHF_EOR); /* set rad err */
return SCPE_OK; }
if (rad_sba & 1) *dat = fbuf[p] & 07777; /* odd byte? */
else *dat = (fbuf[p] >> 12) & 07777; /* even */
rad_sba = rad_adjda (rad_sba, 1); /* next byte */
break;
case IO_WRITE:
p = (rad_da * RAD_NUMWD) + (rad_sba >> 1);
xfr_req = xfr_req & ~XFR_RAD; /* clr xfr req */
if ((rad_unit.flags & UNIT_BUF) == 0) { /* not buffered? */
rad_end_op (CHF_ERR | CHF_EOR); /* set rad err */
CRETIOE (rad_stopioe, SCPE_UNATT); }
if ((p >= rad_unit.capac) || /* end of disk? */
(rad_wrp & (1 << RAD_GETLUN (rad_da)))) { /* write prot? */
rad_end_op (CHF_ERR | CHF_EOR); /* set rad err */
return SCPE_OK; }
if (rad_sba & 1) fbuf[p] = fbuf[p] | (*dat & 07777); /* odd byte? */
else fbuf[p] = (*dat & 07777) << 12; /* even */
if (p >= rad_unit.hwmark) rad_unit.hwmark = p + 1; /* mark hiwater */
rad_sba = rad_adjda (rad_sba, 1); /* next byte */
break;
default:
CRETINS; }
return SCPE_OK;
}
/* PIN routine */
t_stat pin_rads (uint32 num, uint32 *dat)
{
*dat = GET_SECTOR (rad_time * RAD_NUMWD); /* ret curr sec */
return SCPE_OK;
}
/* POT routine */
t_stat pot_rada (uint32 num, uint32 *dat)
{
rad_da = (*dat) & RAD_AMASK; /* save dsk addr */
return SCPE_OK;
}
/* Unit service and read/write */
t_stat rad_svc (UNIT *uptr)
{
xfr_req = xfr_req | XFR_RAD; /* set xfr req */
sim_activate (&rad_unit, rad_time); /* activate */
return SCPE_OK;
}
/* Fill incomplete sector */
t_stat rad_fill (int32 sba)
{
uint32 p = rad_da * RAD_NUMWD;
uint32 *fbuf = rad_unit.filebuf;
int32 wa = (sba + 1) >> 1; /* whole words */
if (sba && (p < rad_unit.capac)) { /* fill needed? */
for ( ; wa < RAD_NUMWD; wa++) fbuf[p + wa] = 0;
if ((p + wa) >= rad_unit.hwmark) rad_unit.hwmark = p + wa + 1;
rad_adjda (sba, RAD_NUMWD - 1); } /* inc da */
return SCPE_OK;
}
/* Adjust disk address */
int32 rad_adjda (int32 sba, int32 inc)
{
sba = sba + inc;
if (rad_sba >= (RAD_NUMWD * 2)) { /* next sector? */
if (rad_nobi) rad_da = (rad_da & ~RAD_SCMASK) + /* within band? */
((rad_da + 1) & RAD_SCMASK);
else rad_da = (rad_da & ~RAD_TRSCMASK) + /* cross band */
((rad_da + 1) & RAD_TRSCMASK);
sba = 0; } /* start new sec */
return sba;
}
/* Terminate disk operation */
void rad_end_op (int32 fl)
{
if (fl) chan_set_flag (rad_dib.chan, fl); /* set flags */
xfr_req = xfr_req & ~XFR_RAD; /* clear xfr */
sim_cancel (&rad_unit); /* stop */
if (fl & CHF_ERR) { /* error? */
chan_disc (rad_dib.chan); /* disconnect */
rad_err = 1; } /* set rad err */
return;
}
/* Reset routine */
t_stat rad_reset (DEVICE *dptr)
{
chan_disc (rad_dib.chan); /* disconnect */
rad_nobi = 0; /* clear state */
rad_da = 0;
rad_sba = 0;
xfr_req = xfr_req & ~XFR_RAD; /* clr xfr req */
sim_cancel (&rad_unit); /* deactivate */
return SCPE_OK;
}