forked from k5mwe/DtCyber
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathddp.c
494 lines (437 loc) · 13.1 KB
/
ddp.c
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
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
/*--------------------------------------------------------------------------
**
** Copyright (c) 2003-2011, Paul Koning, Tom Hunter
**
** Name: ddp.c
**
** Description:
** Perform emulation of CDC Distributive Data Path
**
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License version 3 as
** published by the Free Software Foundation.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License version 3 for more details.
**
** You should have received a copy of the GNU General Public License
** version 3 along with this program in file "license-gpl-3.0.txt".
** If not, see <http://www.gnu.org/licenses/gpl-3.0.txt>.
**
**--------------------------------------------------------------------------
*/
/*
** -------------
** Include Files
** -------------
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "const.h"
#include "types.h"
#include "proto.h"
/*
** -----------------
** Private Constants
** -----------------
*/
/*
** DDP function and status codes.
*/
#define FcDdpReadECS 05001
#define FcDdpWriteECS 05002
#define FcDdpStatus 05004
#define FcDdpMasterClear 05010
/*
** Status reply flags
**
** 0001 = ECS abort
** 0002 = ECS accept
** 0004 = ECS parity error
** 0010 = ECS write pending
** 0020 = Channel parity error
** 0040 = 6640 parity error
*/
#define StDdpAbort 00001
#define StDdpAccept 00002
#define StDdpParErr 00004
#define StDdpWrite 00010
#define StDdpChParErr 00020
#define StDdp6640ParErr 00040
/*
** DDP magical ECS address bits
*/
#define DdpAddrMaint (1 << 21)
#define DdpAddrReadOne (1 << 22)
#define DdpAddrFlagReg (1 << 23)
/*
** -----------------------
** Private Macro Functions
** -----------------------
*/
/*
** -----------------------------------------
** Private Typedef and Structure Definitions
** -----------------------------------------
*/
typedef struct
{
CpWord curword;
u32 addr;
int dbyte;
int abyte;
int endaddrcycle;
PpWord stat;
} DdpContext;
/*
** ---------------------------
** Private Function Prototypes
** ---------------------------
*/
static FcStatus ddpFunc(PpWord funcCode);
static void ddpIo(void);
static void ddpActivate(void);
static void ddpDisconnect(void);
static char *ddpFunc2String(PpWord funcCode);
/*
** ----------------
** Public Variables
** ----------------
*/
/*
** -----------------
** Private Variables
** -----------------
*/
#if DEBUG
static FILE *ddpLog = NULL;
#endif
/*
**--------------------------------------------------------------------------
**
** Public Functions
**
**--------------------------------------------------------------------------
*/
/*--------------------------------------------------------------------------
** Purpose: Initialise DDP.
**
** Parameters: Name Description.
** model Cyber model number
** increment clock increment per iteration.
**
** Returns: Nothing.
**
**------------------------------------------------------------------------*/
void ddpInit(u8 eqNo, u8 unitNo, u8 channelNo, char *deviceName)
{
DevSlot *dp;
DdpContext *dc;
(void)eqNo;
(void)unitNo;
(void)deviceName;
if (extMaxMemory == 0)
{
fprintf (stderr, "Cannot configure DDP, no ECS configured\n");
exit (1);
}
#if DEBUG
if (ddpLog == NULL)
{
ddpLog = fopen("ddplog.txt", "wt");
}
#endif
dp = channelAttach(channelNo, eqNo, DtDdp);
dp->activate = ddpActivate;
dp->disconnect = ddpDisconnect;
dp->func = ddpFunc;
dp->io = ddpIo;
dc = calloc(1, sizeof (DdpContext));
if (dc == NULL)
{
fprintf(stderr, "Failed to allocate DDP context block\n");
exit(1);
}
dp->context[0] = dc;
dc->stat = StDdpAccept;
/*
** Print a friendly message.
*/
printf("DDP initialised on channel %o\n", channelNo);
}
/*--------------------------------------------------------------------------
** Purpose: Execute function code on DDP device.
**
** Parameters: Name Description.
** funcCode function code
**
** Returns: Nothing.
**
**------------------------------------------------------------------------*/
static FcStatus ddpFunc(PpWord funcCode)
{
DdpContext *dc;
dc = (DdpContext *)(activeDevice->context[0]);
#if DEBUG
fprintf(ddpLog, "\n%06d PP:%02o CH:%02o f:%04o T:%-25s > ",
traceSequenceNo,
activePpu->id,
activeDevice->channel->id,
funcCode,
ddpFunc2String(funcCode));
#endif
switch (funcCode)
{
default:
#if DEBUG
fprintf(ddpLog, " FUNC not implemented & declined!");
#endif
break;
case FcDdpWriteECS:
dc->curword = 0;
case FcDdpReadECS:
case FcDdpStatus:
dc->abyte = 0;
dc->dbyte = 0;
dc->addr = 0;
activeDevice->fcode = funcCode;
return(FcAccepted);
case FcDdpMasterClear:
activeDevice->fcode = 0;
dc->stat = StDdpAccept;
return(FcProcessed);
}
return(FcDeclined);
}
/*--------------------------------------------------------------------------
** Purpose: Perform I/O.
**
** Parameters: Name Description.
**
** Returns: Nothing.
**
**------------------------------------------------------------------------*/
static void ddpIo(void)
{
DdpContext *dc;
dc = (DdpContext *) (activeDevice->context[0]);
switch (activeDevice->fcode)
{
default:
return;
case FcDdpStatus:
if (!activeChannel->full)
{
activeChannel->data = dc->stat;
activeChannel->full = TRUE;
activeDevice->fcode = 0;
// ? activeChannel->discAfterInput = TRUE;
#if DEBUG
fprintf(ddpLog, " %04o", activeChannel->data);
#endif
}
break;
case FcDdpReadECS:
case FcDdpWriteECS:
if (dc->abyte < 2)
{
/*
** We need to get two address bytes from the PPU.
*/
if (activeChannel->full)
{
dc->addr <<= 12;
dc->addr += activeChannel->data;
dc->abyte++;
activeChannel->full = FALSE;
}
if (dc->abyte == 2)
{
#if DEBUG
fprintf(ddpLog, " ECS addr: %08o Data: ", dc->addr);
#endif
if (activeDevice->fcode == FcDdpReadECS)
{
/*
** Delay a bit before we set channel full.
*/
dc->endaddrcycle = cycles;
/*
** A flag register reference occurs when bit 23 is set address.
*/
if ((dc->addr & DdpAddrFlagReg) != 0)
{
if (cpuEcsFlagRegister(dc->addr))
{
dc->stat = StDdpAccept;
}
else
{
activeChannel->discAfterInput = TRUE;
dc->stat = StDdpAbort;
}
dc->dbyte = 0;
dc->curword = 0;
}
else
{
dc->dbyte = -1;
}
}
}
break;
}
if (activeDevice->fcode == FcDdpReadECS)
{
if (!activeChannel->full && cycles - dc->endaddrcycle > 20)
{
if (dc->dbyte == -1)
{
/*
** Fetch next 60 bits from ECS.
*/
if (cpuDdpTransfer(dc->addr, &dc->curword, FALSE))
{
dc->stat = StDdpAccept;
}
else
{
activeChannel->discAfterInput = TRUE;
dc->stat = StDdpAbort;
}
dc->dbyte = 0;
}
/*
** Return next byte to PPU.
*/
activeChannel->data = (PpWord)((dc->curword >> 48) & Mask12);
activeChannel->full = TRUE;
#if DEBUG
fprintf(ddpLog, " %04o", activeChannel->data);
#endif
/*
** Update admin stuff.
*/
dc->curword <<= 12;
if (++dc->dbyte == 5)
{
if (dc->addr & (DdpAddrReadOne | DdpAddrFlagReg))
{
activeChannel->discAfterInput = TRUE;
}
dc->dbyte = -1;
dc->addr++;
}
}
}
else if (activeChannel->full)
{
dc->stat = StDdpAccept;
dc->curword <<= 12;
dc->curword += activeChannel->data;
activeChannel->full = FALSE;
#if DEBUG
fprintf(ddpLog, " %04o", activeChannel->data);
#endif
if (++dc->dbyte == 5)
{
/*
** Write next 60 bit to ECS.
*/
if (!cpuDdpTransfer(dc->addr, &dc->curword, TRUE))
{
activeChannel->active = FALSE;
dc->stat = StDdpAbort;
return;
}
dc->curword = 0;
dc->dbyte = 0;
dc->addr++;
}
}
}
}
/*--------------------------------------------------------------------------
** Purpose: Handle channel activation.
**
** Parameters: Name Description.
**
** Returns: Nothing.
**
**------------------------------------------------------------------------*/
static void ddpActivate(void)
{
#if DEBUG
fprintf(ddpLog, "\n%06d PP:%02o CH:%02o Activate",
traceSequenceNo,
activePpu->id,
activeDevice->channel->id);
#endif
}
/*--------------------------------------------------------------------------
** Purpose: Handle disconnecting of channel.
**
** Parameters: Name Description.
**
** Returns: Nothing.
**
**------------------------------------------------------------------------*/
static void ddpDisconnect(void)
{
DdpContext *dc;
dc = (DdpContext *) (activeDevice->context[0]);
#if DEBUG
fprintf(ddpLog, "\n%06d PP:%02o CH:%02o Disconnect",
traceSequenceNo,
activePpu->id,
activeDevice->channel->id);
#endif
if (activeDevice->fcode == FcDdpWriteECS && dc->dbyte != 0)
{
/*
** Write final 60 bit to ECS padded with zeros.
*/
dc->curword <<= 5 - dc->dbyte;
if (!cpuDdpTransfer(dc->addr, &dc->curword, TRUE))
{
activeChannel->active = FALSE;
dc->stat = StDdpAbort;
return;
}
dc->curword = 0;
dc->dbyte = 0;
dc->addr++;
}
/*
** Abort pending device disconnects - the PP is doing the disconnect.
*/
activeChannel->discAfterInput = FALSE;
}
/*--------------------------------------------------------------------------
** Purpose: Convert function code to string.
**
** Parameters: Name Description.
** funcCode function code
**
** Returns: String equivalent of function code.
**
**------------------------------------------------------------------------*/
static char *ddpFunc2String(PpWord funcCode)
{
static char buf[30];
#if DEBUG
switch(funcCode)
{
case FcDdpReadECS : return "FcDdpReadECS";
case FcDdpWriteECS : return "FcDdpWriteECS";
case FcDdpStatus : return "FcDdpStatus";
case FcDdpMasterClear : return "FcDdpMasterClear";
}
#endif
sprintf(buf, "UNKNOWN: %04o", funcCode);
return(buf);
}
/*--------------------------- End Of File ------------------------------*/