21
21
//
22
22
//
23
23
// ------------------------------------------------------------------------
24
+ //
25
+ // Copyright (c) 2020 Ted Fried
26
+ //
27
+ // Permission is hereby granted, free of charge, to any person obtaining a copy
28
+ // of this software and associated documentation files (the "Software"), to deal
29
+ // in the Software without restriction, including without limitation the rights
30
+ // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
31
+ // copies of the Software, and to permit persons to whom the Software is
32
+ // furnished to do so, subject to the following conditions:
33
+ //
34
+ // The above copyright notice and this permission notice shall be included in all
35
+ // copies or substantial portions of the Software.
36
+ //
37
+ // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
38
+ // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
39
+ // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
40
+ // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
41
+ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
42
+ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
43
+ // SOFTWARE.
44
+ //
45
+ // ------------------------------------------------------------------------
24
46
25
47
`timescale 1ns/ 100ps
26
48
@@ -49,23 +71,23 @@ module module_block
49
71
input [7 :0 ] BROADCAST_DATA_IN0,
50
72
input [15 :0 ] BROADCAST_IP_IN0,
51
73
input BROADCAST_SYNC_IN0,
52
- input BROADCAST_IDSBL_IN0,
74
+ input BROADCAST_IDSBL_IN0,
53
75
54
76
input BROADCAST_OK_IN1,
55
77
input [7 :0 ] BROADCAST_STROBE_IN1,
56
78
input [15 :0 ] BROADCAST_ADDRESS_IN1,
57
79
input [7 :0 ] BROADCAST_DATA_IN1,
58
80
input [15 :0 ] BROADCAST_IP_IN1,
59
81
input BROADCAST_SYNC_IN1,
60
- input BROADCAST_IDSBL_IN1,
82
+ input BROADCAST_IDSBL_IN1,
61
83
62
84
input BROADCAST_OK_IN2,
63
85
input [7 :0 ] BROADCAST_STROBE_IN2,
64
86
input [15 :0 ] BROADCAST_ADDRESS_IN2,
65
87
input [7 :0 ] BROADCAST_DATA_IN2,
66
88
input [15 :0 ] BROADCAST_IP_IN2,
67
89
input BROADCAST_SYNC_IN2,
68
- input BROADCAST_IDSBL_IN2,
90
+ input BROADCAST_IDSBL_IN2,
69
91
70
92
71
93
@@ -268,7 +290,7 @@ assign BROADCAST_DATA = ((KILL_MODE==4'h2 && kill_d4==1'b1) || (run_level!
268
290
assign BROADCAST_IP = eu_register_ip;
269
291
assign BROADCAST_STROBE = (run_level!= 2'h3 ) ? { 6'h0 , MODULE_ID } : eu_biu_strobe;
270
292
assign BROADCAST_SYNC = (eu_rom_address== 9'h103 ) ? 1'b1 : 1'b0 ;
271
- assign BROADCAST_IDSBL = core_interrupt_disable;
293
+ assign BROADCAST_IDSBL = core_interrupt_disable;
272
294
273
295
274
296
@@ -589,12 +611,12 @@ kill_d4 <= kill_d3;
589
611
590
612
591
613
// Register writeback
592
- if (run_level== 2'h1 )
593
- begin
614
+ if (run_level== 2'h1 )
615
+ begin
594
616
eu_register_ip <= rebuild_ip_in;
595
617
eu_biu_strobe <= 'h0;
596
- end
597
-
618
+ end
619
+
598
620
else if (eu_stall_pipeline== 1'b0 && eu_opcode_type!= 3'h0 && eu_opcode_type!= 3'h1 )
599
621
begin
600
622
eu_alu_last_result <= eu_alu_out[15 :0 ];
@@ -645,14 +667,14 @@ kill_d4 <= kill_d3;
645
667
else
646
668
begin
647
669
eu_stall_pipeline <= 1'b0 ; // Debounce the pipeline stall
648
- if (KILL_MODE== 4'h1 && kill_d4== 1'b1 )
649
- begin
650
- eu_rom_address <= 'h0;
651
- end
652
- else
653
- begin
654
- eu_rom_address <= eu_rom_address + 1'b1 ;
655
- end
670
+ if (KILL_MODE== 4'h1 && kill_d4== 1'b1 )
671
+ begin
672
+ eu_rom_address <= 'h0;
673
+ end
674
+ else
675
+ begin
676
+ eu_rom_address <= eu_rom_address + 1'b1 ;
677
+ end
656
678
end
657
679
658
680
end
@@ -683,24 +705,24 @@ begin : BIU_CONTROLLER
683
705
rebuild_addr_out <= 'h0;
684
706
rebuild_addr_out_d <= 'h0;
685
707
rebuild_cross_zero <= 'h0;
686
- run_level <= 'h3;
708
+ run_level <= 'h3;
687
709
end
688
710
689
711
else
690
712
begin
691
713
692
714
// Delay address out by one clock to line up with the broadcast data
693
715
if (KILL_MODE== 4'h5 && kill_d4== 1'b1 )
694
- begin
695
- rebuild_addr_out_d <= 'h0;
696
- end
697
- else
698
- begin
699
- rebuild_addr_out_d <= rebuild_addr_out;
700
- end
701
-
702
- // Pipeline the neighboring code SYNC pulse
703
- rebuild_sync_in_d1 <= rebuild_sync_in;
716
+ begin
717
+ rebuild_addr_out_d <= 'h0;
718
+ end
719
+ else
720
+ begin
721
+ rebuild_addr_out_d <= rebuild_addr_out;
722
+ end
723
+
724
+ // Pipeline the neighboring code SYNC pulse
725
+ rebuild_sync_in_d1 <= rebuild_sync_in;
704
726
rebuild_sync_in_d2 <= rebuild_sync_in_d1;
705
727
rebuild_sync_in_d3 <= rebuild_sync_in_d2;
706
728
@@ -721,17 +743,17 @@ begin : BIU_CONTROLLER
721
743
end
722
744
723
745
724
- // Allow four passes of the full range or memory and register addresses when rebuilding a module
746
+ // Allow four passes of the full range or memory and register addresses when rebuilding a module
725
747
if (run_level== 2'h3 )
726
- begin
748
+ begin
727
749
rebuild_cross_zero <= 'h0;
728
- end
750
+ end
729
751
else if (run_level== 2'h0 && rebuild_addr== 'h0)
730
752
begin
731
753
rebuild_cross_zero <= rebuild_cross_zero + 1'b1 ;
732
754
end
733
755
734
-
756
+
735
757
// If Voter has detected a failure and module is not currently in rebuilding mode, then enter rebuilding mode.
736
758
if ( run_level== 2'h3 && voter_good== 1'b0 )
737
759
begin
@@ -757,12 +779,12 @@ begin : BIU_CONTROLLER
757
779
758
780
759
781
eu_register_r3_d1 <= eu_register_r3;
760
-
782
+
761
783
if (run_level== 2'h2 )
762
- begin
763
- core_interrupt_disable <= neighbor_idsbl;
764
- end
765
- else if (eu_biu_strobe_int== 3'h3 )
784
+ begin
785
+ core_interrupt_disable <= neighbor_idsbl;
786
+ end
787
+ else if (eu_biu_strobe_int== 3'h3 )
766
788
begin
767
789
core_interrupt_disable <= 1'b1 ;
768
790
end
0 commit comments