arb.v
16.2 KB
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
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
/************************************************************************\
* *
* Copyright (C) 1994, Silicon Graphics, Inc. *
* *
* These coded instructions, statements, and computer programs contain *
* unpublished proprietary information of Silicon Graphics, Inc., and *
* are protected by Federal copyright law. They may not be disclosed *
* to third parties or copied or duplicated in any form, in whole or *
* in part, without the prior written consent of Silicon Graphics, Inc. *
* *
\************************************************************************/
// $Id: arb.v,v 1.1.1.1 2002/05/17 06:07:44 blythe Exp $
module arb(clock, reset_l,
dma_ready,
sp_dma_request, sp_read_request,
mem_read_request,
mi_dma_request, mi_write_request, mi_read_request,
cmd_dma_request, cmd_read_request,
ri_read_request,
pi_dma_request, pi_read_request,
si_dma_request, si_read_request,
ai_dma_request, ai_read_request,
vi_dma_request, vi_read_request,
span_dma_request, span_read_request,
refresh_strobe,
sp_cbus_read_enable, sp_cbus_write_enable, sp_dma_grant, sp_read_grant,
mem_cbus_write_enable,
mi_cbus_read_enable, mi_cbus_write_enable, mi_cbus_grant,
cmd_cbus_read_enable, cmd_cbus_write_enable, cmd_dma_grant, cmd_read_grant,
ri_cbus_read_enable, ri_cbus_write_enable, ri_read_grant,
pi_cbus_read_enable, pi_cbus_write_enable, pi_dma_grant, pi_read_grant,
si_cbus_read_enable, si_cbus_write_enable, si_dma_grant, si_read_grant,
ai_cbus_read_enable, ai_cbus_write_enable, ai_dma_grant, ai_read_grant,
vi_cbus_read_enable, vi_cbus_write_enable, vi_dma_grant, vi_read_grant,
span_cbus_read_enable, span_cbus_write_enable, span_dma_grant,
span_read_grant,
cbus_select, cbus_command);
`include "rcp.vh"
input clock;
input reset_l;
input dma_ready;
input sp_dma_request;
input sp_read_request;
input mem_read_request;
input mi_dma_request;
input mi_write_request;
input mi_read_request;
input cmd_dma_request;
input cmd_read_request;
input ri_read_request;
input pi_dma_request;
input pi_read_request;
input si_dma_request;
input si_read_request;
input ai_dma_request;
input ai_read_request;
input vi_dma_request;
input vi_read_request;
input span_dma_request;
input span_read_request;
input refresh_strobe;
output sp_cbus_read_enable;
output sp_cbus_write_enable;
output sp_dma_grant;
output sp_read_grant;
output mem_cbus_write_enable;
output mi_cbus_read_enable;
output mi_cbus_write_enable;
output mi_cbus_grant;
output cmd_cbus_read_enable;
output cmd_cbus_write_enable;
output cmd_dma_grant;
output cmd_read_grant;
output ri_cbus_read_enable;
output ri_cbus_write_enable;
output ri_read_grant;
output pi_cbus_read_enable;
output pi_cbus_write_enable;
output pi_dma_grant;
output pi_read_grant;
output si_cbus_read_enable;
output si_cbus_write_enable;
output si_dma_grant;
output si_read_grant;
output ai_cbus_read_enable;
output ai_cbus_write_enable;
output ai_dma_grant;
output ai_read_grant;
output vi_cbus_read_enable;
output vi_cbus_write_enable;
output vi_dma_grant;
output vi_read_grant;
output span_cbus_read_enable;
output span_cbus_write_enable;
output span_dma_grant;
output span_read_grant;
output [CBUS_SELECT_SIZE-1:0] cbus_select;
output [CBUS_COMMAND_SIZE-1:0] cbus_command;
// output registers
reg sp_dma_grant;
reg sp_read_grant;
reg mi_cbus_grant;
reg cmd_dma_grant;
reg cmd_read_grant;
reg ri_read_grant;
reg pi_dma_grant;
reg pi_read_grant;
reg si_dma_grant;
reg si_read_grant;
reg ai_dma_grant;
reg ai_read_grant;
reg vi_dma_grant;
reg vi_read_grant;
reg span_dma_grant;
reg span_read_grant;
reg [CBUS_SELECT_SIZE-1:0] cbus_select;
reg [CBUS_COMMAND_SIZE-1:0] cbus_command;
// output pseudo register
reg sp_cbus_write_enable;
reg mem_cbus_write_enable;
reg mi_cbus_write_enable;
reg cmd_cbus_write_enable;
reg ri_cbus_write_enable;
reg pi_cbus_write_enable;
reg si_cbus_write_enable;
reg ai_cbus_write_enable;
reg vi_cbus_write_enable;
reg span_cbus_write_enable;
reg sp_cbus_read_enable;
reg mi_cbus_read_enable;
reg cmd_cbus_read_enable;
reg ri_cbus_read_enable;
reg pi_cbus_read_enable;
reg si_cbus_read_enable;
reg ai_cbus_read_enable;
reg vi_cbus_read_enable;
reg span_cbus_read_enable;
// internal registers
reg sp_dma_grant_a1;
reg sp_read_grant_a1;
reg mi_cbus_grant_a1;
reg cmd_dma_grant_a1;
reg cmd_read_grant_a1;
reg ri_read_grant_a1;
reg pi_dma_grant_a1;
reg pi_read_grant_a1;
reg si_dma_grant_a1;
reg si_read_grant_a1;
reg ai_dma_grant_a1;
reg ai_read_grant_a1;
reg vi_dma_grant_a1;
reg vi_read_grant_a1;
reg span_dma_grant_a1;
reg span_read_grant_a1;
reg [DMA_DEVICE_SIZE-1:0] cbus_enable;
reg read_disable;
reg refresh_request;
// state machine register
reg [2:0] state;
parameter
STATE_IDLE = 0,
STATE_DMA = 1,
STATE_WRITE = 2,
STATE_READ = 3,
STATE_RESPONSE = 4,
STATE_REFRESH = 5,
STATE_DELAY = 6;
// cbus enable decoder
// all states must decode to exactly one active enable
always @(cbus_enable or read_disable) begin
//compass statemachine adj state
sp_cbus_write_enable = LOW;
mem_cbus_write_enable = LOW;
mi_cbus_write_enable = LOW;
cmd_cbus_write_enable = LOW;
ri_cbus_write_enable = LOW;
pi_cbus_write_enable = LOW;
si_cbus_write_enable = LOW;
ai_cbus_write_enable = LOW;
vi_cbus_write_enable = LOW;
span_cbus_write_enable = LOW;
if (read_disable) begin
sp_cbus_read_enable = LOW;
mi_cbus_read_enable = LOW;
cmd_cbus_read_enable = LOW;
ri_cbus_read_enable = LOW;
pi_cbus_read_enable = LOW;
si_cbus_read_enable = LOW;
ai_cbus_read_enable = LOW;
vi_cbus_read_enable = LOW;
span_cbus_read_enable = LOW;
end
else begin
sp_cbus_read_enable = HIGH;
mi_cbus_read_enable = HIGH;
cmd_cbus_read_enable = HIGH;
ri_cbus_read_enable = HIGH;
pi_cbus_read_enable = HIGH;
si_cbus_read_enable = HIGH;
ai_cbus_read_enable = HIGH;
vi_cbus_read_enable = HIGH;
span_cbus_read_enable = HIGH;
end
// enable the selected write device
case (cbus_enable)
BUS_DEVICE_SP: begin
sp_cbus_write_enable = HIGH;
sp_cbus_read_enable = LOW;
end
BUS_DEVICE_MEM : begin
mem_cbus_write_enable = HIGH;
end
BUS_DEVICE_MI : begin
mi_cbus_write_enable = HIGH;
mi_cbus_read_enable = LOW;
end
BUS_DEVICE_DP_CMD : begin
cmd_cbus_write_enable = HIGH;
cmd_cbus_read_enable = LOW;
end
BUS_DEVICE_RI : begin
ri_cbus_write_enable = HIGH;
ri_cbus_read_enable = LOW;
end
BUS_DEVICE_PI : begin
pi_cbus_write_enable = HIGH;
pi_cbus_read_enable = LOW;
end
BUS_DEVICE_SI : begin
si_cbus_write_enable = HIGH;
si_cbus_read_enable = LOW;
end
BUS_DEVICE_AI : begin
ai_cbus_write_enable = HIGH;
ai_cbus_read_enable = LOW;
end
BUS_DEVICE_VI : begin
vi_cbus_write_enable = HIGH;
vi_cbus_read_enable = LOW;
end
BUS_DEVICE_DP_SPAN : begin
span_cbus_write_enable = HIGH;
span_cbus_read_enable = LOW;
end
default : begin
sp_cbus_write_enable = HIGH;
sp_cbus_read_enable = LOW;
end
endcase
end
always @(posedge clock) begin
sp_dma_grant <= sp_dma_grant_a1;
sp_read_grant <= sp_read_grant_a1;
mi_cbus_grant <= mi_cbus_grant_a1;
cmd_dma_grant <= cmd_dma_grant_a1;
cmd_read_grant <= cmd_read_grant_a1;
span_dma_grant <= span_dma_grant_a1;
span_read_grant <= span_read_grant_a1;
ri_read_grant <= ri_read_grant_a1;
pi_dma_grant <= pi_dma_grant_a1;
pi_read_grant <= pi_read_grant_a1;
si_dma_grant <= si_dma_grant_a1;
si_read_grant <= si_read_grant_a1;
ai_dma_grant <= ai_dma_grant_a1;
ai_read_grant <= ai_read_grant_a1;
vi_dma_grant <= vi_dma_grant_a1;
vi_read_grant <= vi_read_grant_a1;
end
always @(posedge clock or negedge reset_l) begin
if (!reset_l) begin
sp_dma_grant_a1 <= LOW;
sp_read_grant_a1 <= LOW;
mi_cbus_grant_a1 <= LOW;
cmd_dma_grant_a1 <= LOW;
cmd_read_grant_a1 <= LOW;
ri_read_grant_a1 <= LOW;
pi_dma_grant_a1 <= LOW;
pi_read_grant_a1 <= LOW;
si_dma_grant_a1 <= LOW;
si_read_grant_a1 <= LOW;
ai_dma_grant_a1 <= LOW;
ai_read_grant_a1 <= LOW;
vi_dma_grant_a1 <= LOW;
vi_read_grant_a1 <= LOW;
span_dma_grant_a1 <= LOW;
span_read_grant_a1 <= LOW;
refresh_request <= LOW;
cbus_enable <= 0;
read_disable <= LOW;
cbus_command <= CBUS_IDLE_COMMAND;
state <= STATE_IDLE;
cbus_select <= 'bx;
end
else begin : main_block
reg next_sp_dma_grant_a1;
reg next_sp_read_grant_a1;
reg next_mi_cbus_grant_a1;
reg next_cmd_dma_grant_a1;
reg next_cmd_read_grant_a1;
reg next_ri_read_grant_a1;
reg next_pi_dma_grant_a1;
reg next_pi_read_grant_a1;
reg next_si_dma_grant_a1;
reg next_si_read_grant_a1;
reg next_ai_dma_grant_a1;
reg next_ai_read_grant_a1;
reg next_vi_dma_grant_a1;
reg next_vi_read_grant_a1;
reg next_span_dma_grant_a1;
reg next_span_read_grant_a1;
reg next_read_disable;
reg next_refresh_request;
reg [CBUS_SELECT_SIZE-1:0] next_cbus_select;
reg [CBUS_COMMAND_SIZE-1:0] next_cbus_command;
next_sp_dma_grant_a1 = LOW;
next_sp_read_grant_a1 = LOW;
next_mi_cbus_grant_a1 = LOW;
next_cmd_dma_grant_a1 = LOW;
next_cmd_read_grant_a1 = LOW;
next_ri_read_grant_a1 = LOW;
next_pi_dma_grant_a1 = LOW;
next_pi_read_grant_a1 = LOW;
next_si_dma_grant_a1 = LOW;
next_si_read_grant_a1 = LOW;
next_ai_dma_grant_a1 = LOW;
next_ai_read_grant_a1 = LOW;
next_vi_dma_grant_a1 = LOW;
next_vi_read_grant_a1 = LOW;
next_span_dma_grant_a1 = LOW;
next_span_read_grant_a1 = LOW;
next_read_disable = LOW;
next_refresh_request = refresh_request;
next_cbus_select = 'bx;
next_cbus_command = CBUS_IDLE_COMMAND;
// arbitrate the cbus
case (state)
STATE_IDLE : begin
if (sp_read_request && !sp_read_grant) begin
// sp response data
next_sp_read_grant_a1 = HIGH;
next_read_disable = HIGH;
next_cbus_select = CBUS_DATA_SELECT;
cbus_enable <= BUS_DEVICE_SP;
state <= STATE_RESPONSE;
end
else if (mem_read_request && !sp_read_grant) begin
// sp response data
next_sp_read_grant_a1 = HIGH;
next_read_disable = HIGH;
next_cbus_select = CBUS_DATA_SELECT;
cbus_enable <= BUS_DEVICE_MEM;
state <= STATE_RESPONSE;
end
else if (pi_read_request && !pi_read_grant) begin
// pi response data
next_pi_read_grant_a1 = HIGH;
next_read_disable = HIGH;
next_cbus_select = CBUS_DATA_SELECT;
cbus_enable <= BUS_DEVICE_PI;
state <= STATE_RESPONSE;
end
else if (si_read_request && !si_read_grant) begin
// si response data
next_si_read_grant_a1 = HIGH;
next_read_disable = HIGH;
next_cbus_select = CBUS_DATA_SELECT;
cbus_enable <= BUS_DEVICE_SI;
state <= STATE_RESPONSE;
end
else if (ai_read_request && !ai_read_grant) begin
// ai response data
next_ai_read_grant_a1 = HIGH;
next_read_disable = HIGH;
next_cbus_select = CBUS_DATA_SELECT;
cbus_enable <= BUS_DEVICE_AI;
state <= STATE_RESPONSE;
end
else if (vi_read_request && !vi_read_grant) begin
// vi response data
next_vi_read_grant_a1 = HIGH;
next_read_disable = HIGH;
next_cbus_select = CBUS_DATA_SELECT;
cbus_enable <= BUS_DEVICE_VI;
state <= STATE_RESPONSE;
end
else if (ri_read_request && !ri_read_grant) begin
// ri response data
next_ri_read_grant_a1 = HIGH;
next_read_disable = HIGH;
next_cbus_select = CBUS_DATA_SELECT;
cbus_enable <= BUS_DEVICE_RI;
state <= STATE_RESPONSE;
end
else if (span_read_request && !span_read_grant) begin
// dp span response data
next_span_read_grant_a1 = HIGH;
next_read_disable = HIGH;
next_cbus_select = CBUS_DATA_SELECT;
cbus_enable <= BUS_DEVICE_DP_SPAN;
state <= STATE_RESPONSE;
end
else if (cmd_read_request && !cmd_read_grant) begin
// dp command response data
next_cmd_read_grant_a1 = HIGH;
next_read_disable = HIGH;
next_cbus_select = CBUS_DATA_SELECT;
cbus_enable <= BUS_DEVICE_DP_CMD;
state <= STATE_RESPONSE;
end
else if (vi_dma_request && dma_ready) begin
// vi dma request
next_vi_dma_grant_a1 = HIGH;
next_read_disable = HIGH;
next_cbus_select = CBUS_ADDRESS_SELECT;
cbus_enable <= BUS_DEVICE_VI;
state <= STATE_DMA;
end
else if (si_dma_request && dma_ready) begin
// si dma request
next_si_dma_grant_a1 = HIGH;
next_read_disable = HIGH;
next_cbus_select = CBUS_ADDRESS_SELECT;
cbus_enable <= BUS_DEVICE_SI;
state <= STATE_DMA;
end
else if (ai_dma_request && dma_ready) begin
// ai dma request
next_ai_dma_grant_a1 = HIGH;
next_read_disable = HIGH;
next_cbus_select = CBUS_ADDRESS_SELECT;
cbus_enable <= BUS_DEVICE_AI;
state <= STATE_DMA;
end
else if (refresh_request && dma_ready) begin
next_refresh_request = LOW;
state <= STATE_REFRESH;
end
else if (pi_dma_request && dma_ready) begin
// pi dma request
next_pi_dma_grant_a1 = HIGH;
next_read_disable = HIGH;
next_cbus_select = CBUS_ADDRESS_SELECT;
cbus_enable <= BUS_DEVICE_PI;
state <= STATE_DMA;
end
else if (mi_dma_request && dma_ready) begin
// mi dma request
next_mi_cbus_grant_a1 = HIGH;
next_read_disable = HIGH;
next_cbus_select = CBUS_ADDRESS_SELECT;
cbus_enable <= BUS_DEVICE_MI;
state <= STATE_DMA;
end
else if (sp_dma_request && dma_ready) begin
// sp dma request
next_sp_dma_grant_a1 = HIGH;
next_read_disable = HIGH;
next_cbus_select = CBUS_ADDRESS_SELECT;
cbus_enable <= BUS_DEVICE_SP;
state <= STATE_DMA;
end
else if (cmd_dma_request && dma_ready) begin
// dp command dma request
next_cmd_dma_grant_a1 = HIGH;
cbus_enable <= BUS_DEVICE_DP_CMD;
next_read_disable = HIGH;
next_cbus_select = CBUS_ADDRESS_SELECT;
state <= STATE_DMA;
end
else if (span_dma_request && dma_ready) begin
// dp span dma request
next_span_dma_grant_a1 = HIGH;
cbus_enable <= BUS_DEVICE_DP_SPAN;
next_read_disable = HIGH;
next_cbus_select = CBUS_ADDRESS_SELECT;
state <= STATE_DMA;
end
else if (mi_write_request && !mi_cbus_grant) begin
// mi write request
next_mi_cbus_grant_a1 = HIGH;
next_read_disable = HIGH;
next_cbus_select = CBUS_ADDRESS_SELECT;
cbus_enable <= BUS_DEVICE_MI;
state <= STATE_WRITE;
end
else if (mi_read_request && !mi_cbus_grant) begin
// mi read request
next_mi_cbus_grant_a1 = HIGH;
next_read_disable = HIGH;
next_cbus_select = CBUS_ADDRESS_SELECT;
cbus_enable <= BUS_DEVICE_MI;
state <= STATE_READ;
end
else begin
state <= STATE_IDLE;
end
end
STATE_DMA : begin
next_cbus_select = CBUS_LENGTH_SELECT;
next_cbus_command = CBUS_DMA_COMMAND;
state <= STATE_DELAY;
end
STATE_WRITE : begin
next_cbus_select = CBUS_DATA_SELECT;
next_cbus_command = CBUS_WRITE_COMMAND;
state <= STATE_DELAY;
end
STATE_READ : begin
next_cbus_command = CBUS_READ_COMMAND;
state <= STATE_DELAY;
end
STATE_RESPONSE : begin
next_cbus_command = CBUS_RESPONSE_COMMAND;
state <= STATE_DELAY;
end
STATE_REFRESH : begin
next_cbus_command = CBUS_REFRESH_COMMAND;
state <= STATE_DELAY;
end
STATE_DELAY : begin
state <= STATE_IDLE;
end
default : begin
state <= STATE_IDLE;
end
endcase
sp_dma_grant_a1 <= next_sp_dma_grant_a1;
sp_read_grant_a1 <= next_sp_read_grant_a1;
mi_cbus_grant_a1 <= next_mi_cbus_grant_a1;
cmd_dma_grant_a1 <= next_cmd_dma_grant_a1;
cmd_read_grant_a1 <= next_cmd_read_grant_a1;
span_dma_grant_a1 <= next_span_dma_grant_a1;
span_read_grant_a1 <= next_span_read_grant_a1;
ri_read_grant_a1 <= next_ri_read_grant_a1;
pi_dma_grant_a1 <= next_pi_dma_grant_a1;
pi_read_grant_a1 <= next_pi_read_grant_a1;
si_dma_grant_a1 <= next_si_dma_grant_a1;
si_read_grant_a1 <= next_si_read_grant_a1;
ai_dma_grant_a1 <= next_ai_dma_grant_a1;
ai_read_grant_a1 <= next_ai_read_grant_a1;
vi_dma_grant_a1 <= next_vi_dma_grant_a1;
vi_read_grant_a1 <= next_vi_read_grant_a1;
read_disable <= next_read_disable;
refresh_request <= next_refresh_request || refresh_strobe;
cbus_command <= next_cbus_command;
cbus_select <= next_cbus_select;
end
end
endmodule