2020-11-24 05:20:29 +00:00
|
|
|
module mips_cpu_bus(
|
|
|
|
/* Standard signals */
|
|
|
|
input logic clk,
|
|
|
|
input logic reset,
|
|
|
|
output logic active,
|
|
|
|
output logic[31:0] register_v0,
|
|
|
|
|
|
|
|
/* Avalon memory mapped bus controller (master) */
|
|
|
|
output logic[31:0] address,
|
|
|
|
output logic write,
|
|
|
|
output logic read,
|
|
|
|
input logic waitrequest,
|
|
|
|
output logic[31:0] writedata,
|
|
|
|
output logic[3:0] byteenable,
|
|
|
|
input logic[31:0] readdata
|
|
|
|
);
|
2020-12-11 10:56:34 +00:00
|
|
|
|
2020-12-11 19:13:11 +00:00
|
|
|
logic[1:0] state; // current state of cpu within cycle
|
|
|
|
logic[1:0] n_state; // state to be set at next clk edge
|
2020-12-11 10:56:34 +00:00
|
|
|
logic[31:0] instr_reg; // instruction register / single-word cache for current instruction
|
|
|
|
logic clk_internal; // modulated clock to be passed to harvard cpu
|
2020-12-11 19:13:11 +00:00
|
|
|
logic[31:0] harvard_instr_address; // instr addr from pc
|
|
|
|
logic harvard_read; // harvard cpu read flag
|
|
|
|
logic harvard_write; // harvard cpu write flag
|
2020-12-11 19:45:00 +00:00
|
|
|
logic[31:0] harvard_data_address; // data addr from ALU
|
|
|
|
logic[31:0] harvard_readdata; // <= data read from Avalon MM Device
|
|
|
|
logic[3:0] write_byteenable; // byteenable calculator for partial write
|
|
|
|
logic clk_state; // make sure posedge and negedge of clk do not occur repeatedly
|
2020-12-11 10:56:34 +00:00
|
|
|
|
2020-12-11 19:13:11 +00:00
|
|
|
initial begin
|
|
|
|
clk_internal = 1'b0;
|
|
|
|
n_state = 2'b00;
|
|
|
|
state = 2'b00;
|
|
|
|
instr_reg = 32'h00000000;
|
|
|
|
address = 32'h00000000;
|
|
|
|
write = 1'b0;
|
|
|
|
read = 1'b0;
|
|
|
|
writedata = 32'h00000000;
|
|
|
|
byteenable = 4'b0000;
|
2020-12-11 19:45:00 +00:00
|
|
|
clk_state = 0;
|
2020-12-11 19:13:11 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
always_ff @(posedge clk) begin // CLK Rising Edge
|
2020-12-11 19:45:00 +00:00
|
|
|
if (!waitrequest && !clk_state) begin
|
2020-12-11 19:13:11 +00:00
|
|
|
case (n_state)
|
|
|
|
2'b00: begin // fetch
|
|
|
|
clk_internal <= 1'b1;
|
|
|
|
state <= 2'b00;
|
|
|
|
end
|
|
|
|
2'b01: begin // execute
|
2020-12-11 19:45:00 +00:00
|
|
|
state <= 2'b01;
|
2020-12-11 19:13:11 +00:00
|
|
|
instr_reg <= readdata;
|
|
|
|
end
|
|
|
|
2'b10: begin // read
|
2020-12-11 19:45:00 +00:00
|
|
|
state <= 2'b10;
|
2020-12-11 19:13:11 +00:00
|
|
|
end
|
|
|
|
2'b11: begin // write
|
2020-12-11 19:45:00 +00:00
|
|
|
state <= 2'b11;
|
2020-12-11 19:13:11 +00:00
|
|
|
end
|
|
|
|
endcase // state
|
2020-12-11 10:56:34 +00:00
|
|
|
end
|
2020-12-11 19:45:00 +00:00
|
|
|
clk_state <= 1'b1;
|
2020-12-11 10:56:34 +00:00
|
|
|
end
|
|
|
|
|
2020-12-11 19:13:11 +00:00
|
|
|
always_ff @(negedge clk) begin // CLK Falling Edge
|
2020-12-11 19:45:00 +00:00
|
|
|
if (!waitrequest && clk_state) begin
|
|
|
|
case (state)
|
|
|
|
2'b00: // nothing happens on fetch negedge
|
|
|
|
2'b01: begin // execute negedge
|
|
|
|
if (!harvard_read && !harvard_write) begin // instruction complete, trigger writeback
|
|
|
|
clk_internal <= 1'b0;
|
|
|
|
end // otherwise do nothing
|
|
|
|
end
|
|
|
|
2'b10: begin
|
|
|
|
clk_internal <= 1'b0;
|
|
|
|
end
|
|
|
|
2'b11: begin
|
2020-12-11 19:13:11 +00:00
|
|
|
clk_internal <= 1'b0;
|
2020-12-11 19:45:00 +00:00
|
|
|
end
|
|
|
|
endcase
|
|
|
|
end
|
|
|
|
clk_state <= 1'b0;
|
2020-12-11 19:13:11 +00:00
|
|
|
end
|
2020-12-11 10:56:34 +00:00
|
|
|
|
2020-12-11 19:13:11 +00:00
|
|
|
always_comb begin
|
|
|
|
if (reset) begin
|
|
|
|
clk_internal = 1'b0;
|
|
|
|
n_state = 2'b00;
|
|
|
|
state = 2'b00;
|
|
|
|
instr_reg = 32'h00000000;
|
|
|
|
address = 32'h00000000;
|
|
|
|
write = 1'b0;
|
|
|
|
read = 1'b0;
|
|
|
|
writedata = 32'h00000000;
|
|
|
|
byteenable = 4'b0000;
|
|
|
|
end else begin
|
|
|
|
case (state)
|
2020-12-11 19:45:00 +00:00
|
|
|
2'b00: begin // connecting wires when in fetch state
|
2020-12-11 19:13:11 +00:00
|
|
|
address = harvard_instr_address;
|
|
|
|
read = 1'b1;
|
2020-12-11 19:45:00 +00:00
|
|
|
write = 1'b0;
|
2020-12-11 19:13:11 +00:00
|
|
|
byteenable = 4'b1111;
|
2020-12-11 19:45:00 +00:00
|
|
|
harvard_readdata = 32'h00000000;
|
|
|
|
writedata = 32'h00000000;
|
2020-12-11 19:13:11 +00:00
|
|
|
n_state = 2'b01;
|
|
|
|
end
|
2020-12-11 19:45:00 +00:00
|
|
|
2'b01: begin // connecting wires when in execute state
|
2020-12-11 19:13:11 +00:00
|
|
|
address = 32'h00000000;
|
|
|
|
read = 1'b0;
|
2020-12-11 19:45:00 +00:00
|
|
|
write = 1'b0;
|
2020-12-11 19:13:11 +00:00
|
|
|
byteenable = 4'b0000;
|
2020-12-11 19:45:00 +00:00
|
|
|
harvard_readdata = 32'h00000000;
|
|
|
|
writedata = 32'h00000000;
|
2020-12-11 19:13:11 +00:00
|
|
|
if (harvard_read) begin
|
|
|
|
n_state = 2'b10; // next state is read
|
|
|
|
end else if (harvard_write) begin
|
|
|
|
n_state = 2'b11; // next state is write
|
|
|
|
end else begin
|
2020-12-11 19:45:00 +00:00
|
|
|
n_state = 2'b00; // next state is fetch
|
2020-12-11 19:13:11 +00:00
|
|
|
end
|
|
|
|
end
|
2020-12-11 19:45:00 +00:00
|
|
|
2'b10: begin // connecting wires when in read state
|
|
|
|
address = harvard_data_address;
|
|
|
|
read = 1'b1;
|
|
|
|
write = 1'b0;
|
|
|
|
byteenable = 4'b1111;
|
|
|
|
harvard_readdata = readdata;
|
|
|
|
writedata = 32'h00000000;
|
|
|
|
n_state = 2'b00;
|
|
|
|
end
|
|
|
|
2'b11: begin // connecting wires when in write state
|
|
|
|
address = harvard_data_address;
|
|
|
|
read = 1'b0;
|
|
|
|
write = 1'b1;
|
|
|
|
byteenable = write_byteenable;
|
|
|
|
harvard_readdata = 32'h00000000;
|
|
|
|
writedata = harvard_writedata;
|
|
|
|
n_state = 2'b00;
|
|
|
|
end
|
2020-12-11 19:13:11 +00:00
|
|
|
endcase // state
|
|
|
|
end
|
2020-12-11 10:56:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
mips_cpu_harvard mips_cpu_harvard( // Harvard CPU within wrapper
|
|
|
|
.clk(clk_internal), // modulated clock input to allow waiting for valid data from memory, input
|
|
|
|
.reset(reset), // CPU reset, input
|
|
|
|
.active(active), // Is CPU active, output
|
|
|
|
.register_v0(register_v0), // $2 / $v0 debug bus, output
|
|
|
|
.clk_enable(1'b0), // unused clock enable, input
|
2020-12-11 19:13:11 +00:00
|
|
|
.instr_address(harvard_instr_address), // instr addr from pc, output
|
2020-12-11 10:56:34 +00:00
|
|
|
.instr_readdata(instr_reg), // cached instruction passed into harvard cpu, input
|
2020-12-11 19:45:00 +00:00
|
|
|
.data_address(harvard_data_address), // harvard data memory address, output
|
2020-12-11 19:13:11 +00:00
|
|
|
.data_write(harvard_write), // harvard write flag, output
|
|
|
|
.data_read(harvard_read), // harvard read flag, output
|
2020-12-11 19:45:00 +00:00
|
|
|
.data_writedata(harvard_writedata), // data output from regfile readport2, output
|
|
|
|
.data_readdata(harvard_readdata) // data in from read instruction, input
|
2020-12-11 10:56:34 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
endmodule : mips_cpu_bus
|