forked from NYU-Processor-Design/nyu-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGeneral_Control_Module.sv
148 lines (137 loc) · 3.29 KB
/
General_Control_Module.sv
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
module GENERAL_CONTROL_MODULE(
input clk,
input rstn,
input ins [31:0],
output pc_en,
output immode[2:0],
output wbe,
output branch_occr[1:0],
output a_sel[1:0],
output b_sel[1:0],
output alu_mode[5:0],
output branch_cond[1:0],
output data_mode[1:0],
output dcache_rw,
output dcache_en,
output wbs[2:0]
);
//states
logic ID_ins[31:0], EX_ins[31:0], MEN_ins[31:0], WB_ins[31:0], hazard;
parameter
R = 7'b0110011,
I_1 = 7'b0010011,
I_2 = 7'b0000011,
I_3 = 7'b1100111,
S = 7'b0100011,
B = 7'b1100011,
U1 = 7'b0110111,
U2 = 7'b0010111,
J = 7'b1101111,
NOP1 = 7'b0000000,
NOP2 = 7'b0001111,
NOP3 = 7'b1110011;
assign immode = (ins[6:0] == R) ? (0):
(ins[6:0] == I_1 || ins[6:0] == I_2 || ins[6:0] == I_3) ? (1):
(ins[6:0] == S) ? (2):
(ins[6:0] == B) ? (3):
(ins[6:0] == U) ? (4):
(ins[6:0] == J) ? (5):
(ins[6:0] == NOP1 || ins[6:0] == NOP2 || ins[6:0] == NOP3) ? (0):
(0);
always_comb
begin
case(ID_ins[6:0])
R || I_2:
begin
addr_mode = 0;
branch_occr = 0;
a_sel = 0;
b_sel = 0;
end
I_1 || I_2:
begin
addr_mode = 0;
branch_occr = 0;
a_sel = 0;
b_sel = 1;
end
I_3:
begin
addr_mode = 1;
branch_occr = 1;
a_sel = 1;
b_sel = 2;
end
S:
begin
addr_mode = 1;
branch_occr = 0;
a_sel = 0;
b_sel = 0;
end
B:
begin
addr_mode = 0;
branch_occr = 2;
a_sel = 0;
b_sel = 0;
end
U1 || U2:
begin
addr_mode = 0;
branch_occr = 0;
a_sel = ID_ins[5:4];
b_sel = 0;
end
J:
begin
addr_mode = 0;
branch_occr = 1;
a_sel = 1;
b_sel = 2;
end
NOP1 || NOP2 || NOP3:
begin
addr_mode = 0;
branch_occr = 0;
a_sel = 0;
b_sel = 0;
end
endcase
end
always_comb
begin
case(EX_ins[6:0])
R:
begin
alu_mode = EX_ins[31:25] + EX_ins[14:12];
branch_cond = 0;
end
I_1: //is this correct?
begin
alu_mode = (EX_ins[14:12] == 3'h5) ? (EX_ins[31:25] + EX_ins[14:12]) :
(EX_ins[14:12]);
branch_cond = 0;
end
I_2 || I_3 || S || U1 || U2 || NOP1 || NOP2 || NOP3:
begin
alu_mode = EX_ins[31:25] + EX_ins[14:12];
branch_cond = (EX_ins[6:0] == I_3 || EX_ins[6:0] == J) ? (3) : (0);
end
B:
begin
alu_mode = (EX_ins[14:12] == 4 || EX_ins[14:12] == 5) ? (6'h02):
(EX_ins[14:12] == 6 || EX_ins[14:12] == 7) ? (6'h03):
(6'h20);
branch_cond = (EX_ins[14:12] == 1 || EX_ins[14:12] == 4 || EX_ins[14:12] == 6) ? (1) :
(2);
end
J:
begin
alu_mode = 0;
branch_cond = 0;
end
endcase
end
//always @(posedge clk)
endmodule