simh-testsetgenerator/PDP10/kx10_df.c
Richard Cornwell 25f053e45d KA10: Added switch for DF10 vs DF10C.
Fix bug in interrupt handling in KI when EPT not at 0.
      Fix bug with handling of CCW_COMP flag on DF10 devices.
2022-06-21 09:43:17 -04:00

184 lines
5.3 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.

/* kx10_df.c: DF10 common routines.
Copyright (c) 2015-2020, Richard Cornwell
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
RICHARD CORNWELL 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.
*/
#include "kx10_defs.h"
/* Set an IRQ for a DF10 device */
void
df10_setirq(struct df10 *df) {
df->status |= PI_ENABLE;
set_interrupt(df->devnum, df->status);
}
/* Generate the DF10 complete word */
void
df10_writecw(struct df10 *df) {
uint64 wrd;
if (df->wcr != 0)
df->cda++;
wrd = ((uint64)(df->ccw & df->wmask) << df->cshift) | ((uint64)(df->cda) & df->amask);
(void)Mem_write_word(df->cia|1, &wrd, 0);
}
/* Finish off a DF10 transfer */
void
df10_finish_op(struct df10 *df, int flags) {
df->status &= ~BUSY;
df->status |= flags;
df10_writecw(df);
df10_setirq(df);
}
/* Setup for a DF10 transfer */
void
df10_setup(struct df10 *df, uint32 addr) {
df->cia = addr & ICWA;
df->ccw = df->cia;
df->wcr = 0;
df->status |= BUSY;
}
/* Fetch the next IO control word */
int
df10_fetch(struct df10 *df) {
uint64 data;
if (Mem_read_word(df->ccw, &data, 0)) {
df10_finish_op(df, df->nxmerr);
return 0;
}
while((data & (df->wmask << df->cshift)) == 0) {
if ((data & df->amask) == 0 || (uint32)(data & df->amask) == df->ccw) {
df10_finish_op(df,0);
return 0;
}
df->ccw = (uint32)(data & df->amask);
if (Mem_read_word(df->ccw, &data, 0)) {
df10_finish_op(df, 1<<df->nxmerr);
return 0;
}
}
#if KA & ITS
if (cpu_unit[0].flags & UNIT_ITSPAGE) {
df->wcr = (uint32)((data >> df->cshift) & 0077777) | 0700000;
df->cda = (uint32)(data & RMASK);
df->cda |= (uint32)((data >> 15) & 00000007000000LL) ^ 07000000;
df->ccw = (uint32)((df->ccw + 1) & df->amask);
return 1;
}
#endif
df->wcr = (uint32)((data >> df->cshift) & df->wmask);
df->cda = (uint32)(data & df->amask);
df->ccw = (uint32)((df->ccw + 1) & df->amask);
return 1;
}
/* Read next word */
int
df10_read(struct df10 *df) {
uint64 data;
if (df->wcr == 0) {
if (!df10_fetch(df))
return 0;
}
df->wcr = (uint32)((df->wcr + 1) & df->wmask);
if (df->cda != 0) {
if (df->cda > MEMSIZE) {
df10_finish_op(df, 1<<df->nxmerr);
return 0;
}
#if KA & ITS
if (cpu_unit[0].flags & UNIT_ITSPAGE)
df->cda = (uint32)((df->cda + 1) & RMASK) | (df->cda & 07000000);
else
#endif
df->cda = (uint32)((df->cda + 1) & df->amask);
if (Mem_read_word(df->cda, &data, 0)) {
df10_finish_op(df, 1<<df->nxmerr);
return 0;
}
} else {
data = 0;
}
df->buf = data;
if (df->wcr == 0) {
return df10_fetch(df);
}
return 1;
}
/* Write next word */
int
df10_write(struct df10 *df) {
if (df->wcr == 0) {
if (!df10_fetch(df))
return 0;
}
df->wcr = (uint32)((df->wcr + 1) & df->wmask);
if (df->cda != 0) {
if (df->cda > MEMSIZE) {
df10_finish_op(df, 1<<df->nxmerr);
return 0;
}
#if KA & ITS
if (cpu_unit[0].flags & UNIT_ITSPAGE)
df->cda = (uint32)((df->cda + 1) & RMASK) | (df->cda & 07000000);
else
#endif
df->cda = (uint32)((df->cda + 1) & df->amask);
if (Mem_write_word(df->cda, &df->buf, 0)) {
df10_finish_op(df, 1<<df->nxmerr);
return 0;
}
}
if (df->wcr == 0) {
return df10_fetch(df);
}
return 1;
}
/* Initialize a DF10 to default values */
void
df10_init(struct df10 *df, uint32 dev_num, uint8 nxmerr)
{
df->status = 0;
df->devnum = dev_num; /* Set device number link */
df->nxmerr = nxmerr; /* Set bit in status for NXM */
#if KI_22BIT
if (cpu_unit[0].flags & UNIT_DF10C) {
df->amask = 00000017777777LL;
df->wmask = 0037777LL;
df->cshift = 22;
} else {
df->amask = RMASK;
df->wmask = RMASK;
df->cshift = 18;
}
#else
df->amask = RMASK;
df->wmask = RMASK;
df->cshift = 18;
#endif
}