File: sds_rad.c

package info (click to toggle)
simh 3.8.1-6.2
  • links: PTS
  • area: main
  • in suites: sid
  • size: 16,328 kB
  • sloc: ansic: 209,819; makefile: 325
file content (321 lines) | stat: -rw-r--r-- 12,774 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
/* sds_rad.c: SDS 940 fixed head disk simulator

   Copyright (c) 2001-2008, 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)                     /* wrong chan? */
            return SCPE_IERR;
        if (CHC_GETCPW (inst) > 1)                      /* 1-2 char/word? */
            return STOP_INVIOP;
        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)                                     /* seek */
            t = t + RAD_NUMSC;
        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)                     /* wrong chan? */
            return SCPE_IERR;
        if ((inst & 00600) == 00200)                    /* alert for sec */
            alert = POT_RADS;     
        else if ((inst & 06600) == 0) {                 /* alert for addr */
            if (sim_is_active (&rad_unit))              /* busy? */
                rad_err = 1;
            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)                             /* fill write */
            return rad_fill (rad_sba);
        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)                     /* wrong chan? */
            return SCPE_IERR;
        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)                                /* odd byte? */
            *dat = fbuf[p] & 07777;
        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)                                /* odd byte? */
            fbuf[p] = fbuf[p] | (*dat & 07777);
        else fbuf[p] = (*dat & 07777) << 12;            /* even */
        if (p >= rad_unit.hwmark)                       /* mark hiwater */
            rad_unit.hwmark = p + 1;
        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)                                                 /* set flags */
    chan_set_flag (rad_dib.chan, fl);
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;
}