-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpipe_MIPS32.v
More file actions
159 lines (119 loc) · 5.03 KB
/
Copy pathpipe_MIPS32.v
File metadata and controls
159 lines (119 loc) · 5.03 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
module pipe_MIPS32(clk1, clk2);
input clk1,clk2; //Two-phase clock
reg[31:0] PC, IF_ID_IR, IF_ID_NPC;
reg [31:0] ID_EX_IR, ID_EX_NPC, ID_EX_A, ID_EX_B, ID_EX_Imm;
reg [2:0] ID_EX_type, EX_MEM_type, MEM_WB_type;
reg [31:0] EX_MEM_IR, EX_MEM_ALUout, EX_MEM_B;
reg [31:0] MEM_WB_IR, MEM_WB_ALUout, MEM_WB_LMD;
reg EX_MEM_cond;
reg [31:0] Reg [0:31]; // Register bank (32*32)
reg [31:0] Mem [0:1023]; // 1024832 memory
parameter ADD=6'b000000, SUB=6'b000001, AND=6'b000010, OR=6'b000011,
SLT=6'b000100, MUL=6'b000101, HLT=6'b111111, LW=6'b001000,
SW=6'b001001, ADDI=6'b001010, SUBI=6'b001011, SLTI=6'b001100,
BNEQZ=6'b001101, BEQZ=6'b001110;
parameter RR_ALU=3'b000, RM_ALU=3'b001, LOAD=3'b010, STORE=3'b011,
BRANCH=3'b100, HALT=3'b101;
reg HALTED; //Set after HTL instruction is completed (in WB stage)
reg TAKEN_BRANCH; // Require to disable instructions after branch
//*** Instruction Fetch Stage***
always @(posedge clk1)
if(HALTED==0)
begin
if(((EX_MEM_IR[31:26]==BEQZ) && (EX_MEM_cond==1)) || ((EX_MEM_IR[31:26]== BNEQZ) &&(EX_MEM_cond==0)))
begin
IF_ID_IR <= #2 Mem[EX_MEM_ALUout];
TAKEN_BRANCH <= #2 1'b1;
IF_ID_NPC <= #2 EX_MEM_ALUout+1;
PC <= #2 EX_MEM_ALUout+1;
end
else
begin
IF_ID_IR <= #2 Mem[PC];
IF_ID_NPC <= #2 PC+1;
PC <= #2 PC+1;
end
end
// **** Instruction Decode Stage ****
always @(posedge clk2)
if (HALTED==0)
begin
if(IF_ID_IR[25:21]== 5'b00000) ID_EX_A<=0;
else ID_EX_A <= #2 Reg[IF_ID_IR[25:21]];//rs
if(IF_ID_IR[20:16]==5'b00000) ID_EX_B<=0;
else ID_EX_B <= #2 Reg[IF_ID_IR[20:16]];
ID_EX_NPC <= #2 IF_ID_NPC;
ID_EX_IR <= #2 IF_ID_IR;
ID_EX_Imm <= #2 {{16{IF_ID_IR[15]}},{IF_ID_IR[15:0]}};
case(IF_ID_IR[31:26])
ADD,SUB,AND,OR,SLT,MUL : ID_EX_type <= #2 RR_ALU;
ADDI,SUBI,SLTI: ID_EX_type <= #2 RR_ALU;
LW: ID_EX_type <= #2 LOAD;
SW: ID_EX_type <= #2 STORE;
BNEQZ, BEQZ: ID_EX_type <= #2 BRANCH;
HLT: ID_EX_type <= #2 HALT;
default: ID_EX_type <= #2 HALT; //invalid opcode
endcase
end
//*** Instruction Execution Stage***
always @(posedge clk1)
if(HALTED==0)
begin
EX_MEM_type <= #2 ID_EX_type;
EX_MEM_type <= #2 ID_EX_IR;
TAKEN_BRANCH <= #2 0;
case(ID_EX_type)
RR_ALU : begin
case(ID_EX_IR[31:26]) // opcode
ADD: EX_MEM_ALUout <= #2 ID_EX_A + ID_EX_B;
SUB: EX_MEM_ALUout <= #2 ID_EX_A - ID_EX_B;
AND: EX_MEM_ALUout <= #2 ID_EX_A & ID_EX_B;
OR: EX_MEM_ALUout <= #2 ID_EX_A | ID_EX_B;
SLT: EX_MEM_ALUout <= #2 ID_EX_A < ID_EX_B;
MUL: EX_MEM_ALUout <= #2 ID_EX_A * ID_EX_B;
default: EX_MEM_ALUout <= #2 32'hxxxxxxxx;
endcase
end
RM_ALU: begin
case(ID_EX_IR[31:26]) //opcode
ADDI: EX_MEM_ALUout <= #2 ID_EX_A + ID_EX_Imm;
SUBI: EX_MEM_ALUout <= #2 ID_EX_A - ID_EX_Imm;
SLTI: EX_MEM_ALUout <= #2 ID_EX_A < ID_EX_Imm;
default: EX_MEM_ALUout <= #2 32'hxxxxxxxx;
endcase
end
LOAD, STORE: begin
EX_MEM_ALUout <= #2 ID_EX_A + ID_EX_Imm;
EX_MEM_B <= #2 ID_EX_B;
end
BRANCH: begin
EX_MEM_ALUout <= #2 ID_EX_NPC + ID_EX_Imm;
EX_MEM_cond <= #2 (ID_EX_A==0);
end
endcase
end
always @(posedge clk2)
if(HALTED==0)
begin
MEM_WB_type <= #2 EX_MEM_type;
MEM_WB_IR <= #2 EX_MEM_IR;
case(EX_MEM_type)
RR_ALU, RM_ALU:
MEM_WB_ALUout <= #2 EX_MEM_ALUout;
LOAD: MEM_WB_LMD <= #2 Mem[EX_MEM_ALUout];
STORE: if(TAKEN_BRANCH==0) // DISABLE WRITE
Mem[EX_MEM_ALUout] <=#2 EX_MEM_B;
endcase
end
//**** WRITEBACK STAGE****
always @(posedge clk1)
begin
if(TAKEN_BRANCH==0)
case(MEM_WB_type)
RR_ALU: Reg[MEM_WB_IR[15:11]] <= #2 MEM_WB_ALUout;
RM_ALU: Reg[MEM_WB_IR[20:16]] <= #2 MEM_WB_ALUout;
LOAD : Reg[MEM_WB_IR[20:16]] <= #2 MEM_WB_LMD;
HALT : HALTED<= 1'b1;
endcase
end
endmodule