hp-saturn/saturn_bus_ctrl.v

371 lines
8.5 KiB
Coq
Raw Normal View History

2019-02-16 22:38:44 +01:00
`ifndef _SATURN_BUS_CTRL
`define _SATURN_BUS_CTRL
`include "def-clocks.v"
`include "def-buscmd.v"
module saturn_bus_ctrl (
// basic stuff
i_clk,
i_reset,
i_cycle_ctr,
i_en_bus_send,
i_en_bus_recv,
2019-02-17 08:35:26 +01:00
i_en_bus_ecmd,
2019-02-16 22:38:44 +01:00
i_stalled,
i_read_stall,
o_stalled_by_bus,
// bus i/o
i_bus_data,
o_bus_data,
o_bus_strobe,
o_bus_cmd_data,
// interface to the rest of the machine
i_alu_pc,
i_address,
i_load_pc,
i_load_dp,
i_read_pc,
i_write_dp,
2019-02-17 15:03:36 +01:00
i_cmd_reset,
i_cmd_config,
2019-02-16 22:38:44 +01:00
i_nibble,
o_nibble
);
input wire [0:0] i_clk;
input wire [0:0] i_reset;
input wire [31:0] i_cycle_ctr;
input wire [0:0] i_en_bus_send;
input wire [0:0] i_en_bus_recv;
2019-02-17 08:35:26 +01:00
input wire [0:0] i_en_bus_ecmd;
2019-02-16 22:38:44 +01:00
input wire [0:0] i_stalled;
input wire [0:0] i_read_stall;
2019-02-17 08:35:26 +01:00
2019-02-16 22:38:44 +01:00
output reg [0:0] o_stalled_by_bus;
input wire [3:0] i_bus_data;
output reg [3:0] o_bus_data;
output reg [0:0] o_bus_strobe;
output reg [0:0] o_bus_cmd_data;
input wire [19:0] i_alu_pc;
input wire [19:0] i_address;
input wire [0:0] i_load_pc;
input wire [0:0] i_load_dp;
input wire [0:0] i_read_pc;
input wire [0:0] i_write_dp;
2019-02-17 15:03:36 +01:00
input wire [0:0] i_cmd_reset;
input wire [0:0] i_cmd_config;
2019-02-16 22:38:44 +01:00
input wire [3:0] i_nibble;
output reg [3:0] o_nibble;
/*
* events
*/
wire en_bus_send;
assign en_bus_send = i_en_bus_send && !i_stalled;
wire en_bus_recv;
assign en_bus_recv = i_en_bus_recv && !i_stalled;
2019-02-17 08:35:26 +01:00
wire en_bus_ecmd;
assign en_bus_ecmd = i_en_bus_ecmd && !i_stalled;
2019-02-16 22:38:44 +01:00
/*
* states
*/
wire [0:0] addr_s;
assign addr_s = addr_cnt == 5;
reg [0:0] cmd_pc_read_s;
reg [0:0] cmd_config_s;
reg [0:0] cmd_reset_s;
wire [0:0] do_pc_read;
wire [0:0] do_cmd_config;
wire [0:0] do_pc_read_after_config;
wire [0:0] cmd_config_sc;
wire [0:0] cmd_config_uc;
wire [0:0] do_cmd_reset;
wire [0:0] do_pc_read_after_reset;
wire [0:0] cmd_reset_sc;
wire [0:0] cmd_reset_uc;
assign do_cmd_config = i_cmd_config && !cmd_config_s;
assign do_pc_read_after_config = i_cmd_config && cmd_config_s && addr_s;
assign cmd_config_sc = !o_stalled_by_bus && i_cmd_config && !cmd_config_s;
assign cmd_config_uc = cmd_config_s && cmd_pc_read_s;
assign do_cmd_reset = i_cmd_reset && !cmd_reset_s;
assign do_pc_read_after_reset = i_cmd_reset && cmd_reset_s;
assign cmd_reset_sc = !o_stalled_by_bus && i_cmd_reset && !cmd_reset_s;
assign cmd_reset_uc = cmd_reset_s && cmd_pc_read_s;
assign do_pc_read = !cmd_pc_read_s &&
(do_pc_read_after_config ||
do_pc_read_after_reset);
2019-02-16 22:38:44 +01:00
/*
* test rom...
*/
`ifdef SIM
`define ROMBITS 20
`else
`define ROMBITS 10
`endif
reg [3:0] rom [0:2**`ROMBITS-1];
initial begin
`ifdef SIM
$readmemh("rom-gx-r.hex", rom);
// $readmemh( "testrom-2.hex", rom);
2019-02-17 08:35:26 +01:00
// $monitor("addr %5h | strb %b | c/d %b | cnt %0d | odata %h | idata %h",
// i_address, o_bus_strobe, o_bus_cmd_data, addr_cnt, o_bus_data, i_bus_data);
// $monitor("MONITOR : strb %b | o_bus_data %h | i_bus_data %h", o_bus_strobe, o_bus_data, i_bus_data);
2019-02-16 22:38:44 +01:00
`endif
end
reg [3:0] last_cmd;
reg [2:0] addr_cnt;
reg [0:0] send_addr;
2019-02-17 08:35:26 +01:00
reg [19:0] local_pc;
reg [19:0] local_dp;
2019-02-16 22:38:44 +01:00
reg [0:0] reset_sent;
reg [0:0] config_sent;
reg [0:0] send_pc_read;
2019-02-16 22:38:44 +01:00
always @(posedge i_clk) begin
2019-02-17 08:35:26 +01:00
if (i_reset) begin
2019-02-17 15:03:36 +01:00
last_cmd <= 0;
2019-02-16 22:38:44 +01:00
o_stalled_by_bus <= 0;
2019-02-17 08:35:26 +01:00
o_bus_strobe <= 0;
o_bus_cmd_data <= 1; // 1 is the default level
addr_cnt <= 0;
2019-02-17 15:03:36 +01:00
send_addr <= 0;
reset_sent <= 0;
config_sent <= 0;
2019-02-17 15:03:36 +01:00
send_pc_read <= 0;
cmd_pc_read_s <= 0;
cmd_config_s <= 0;
cmd_reset_s <= 0;
2019-02-17 08:35:26 +01:00
end
2019-02-16 22:38:44 +01:00
2019-02-17 08:35:26 +01:00
/*
*
* sending commands or data to the bus
*
*/
2019-02-16 22:38:44 +01:00
if (en_bus_send) begin
2019-02-17 08:35:26 +01:00
/*
* reset flags
*/
if (cmd_reset_uc || cmd_config_uc) begin
cmd_config_s <= 0;
cmd_reset_s <= 0;
cmd_pc_read_s <= 0;
end
/*
* Sending LOAD_PC or LOAD_DP
*/
2019-02-16 22:38:44 +01:00
if (i_load_pc) begin
$display("BUS_SEND %0d: [%d] LOAD_PC %h", `PH_BUS_SEND, i_cycle_ctr, i_address);
2019-02-17 08:35:26 +01:00
o_bus_data <= `BUSCMD_LOAD_PC;
last_cmd <= `BUSCMD_LOAD_PC;
2019-02-17 08:35:26 +01:00
end
if (i_load_dp) begin
$display("BUS_SEND %0d: [%d] LOAD_DP %h", `PH_BUS_SEND, i_cycle_ctr, i_address);
2019-02-17 08:35:26 +01:00
o_bus_data <= `BUSCMD_LOAD_DP;
last_cmd <= `BUSCMD_LOAD_DP;
2019-02-17 08:35:26 +01:00
end
2019-02-16 22:38:44 +01:00
if (do_cmd_config) begin
$display("BUS_SEND %0d: [%d] CONFIGURE %h", `PH_BUS_SEND, i_cycle_ctr, i_address);
o_bus_data <= `BUSCMD_CONFIGURE;
last_cmd <= `BUSCMD_CONFIGURE;
cmd_config_s <= 1;
end
if (do_cmd_reset) begin
$display("BUS_SEND %0d: [%d] RESET", `PH_BUS_SEND, i_cycle_ctr);
o_bus_data <= `BUSCMD_RESET;
last_cmd <= `BUSCMD_RESET;
cmd_reset_s <= 1;
o_bus_strobe <= 1;
end
// configure loop to send i_address to the bus
// used for LOAD_PC, LOAD_DP, CONFIGURE,
if (i_load_pc || i_load_dp || do_cmd_config) begin
2019-02-16 22:38:44 +01:00
o_stalled_by_bus <= 1;
o_bus_cmd_data <= 0;
addr_cnt <= 0;
send_addr <= 1;
o_bus_strobe <= 1;
2019-02-16 22:38:44 +01:00
end
2019-02-17 08:35:26 +01:00
// sending address bits
2019-02-17 08:35:26 +01:00
if (send_addr) begin
$display("BUS_SEND %0d: [%d] addr[%0d] %h =>",
`PH_BUS_SEND, i_cycle_ctr, addr_cnt, i_address[addr_cnt*4+:4]);
2019-02-17 08:35:26 +01:00
o_bus_data <= i_address[addr_cnt*4+:4];
addr_cnt <= addr_cnt + 1;
o_bus_strobe <= 1;
2019-02-17 08:35:26 +01:00
end
/*
* send the PC_READ command to restore the instruction flow
* after a data transfer
*/
if (do_pc_read) begin
$display("BUS_SEND %0d: [%d] PC_READ <<<<<", `PH_BUS_SEND, i_cycle_ctr);
o_bus_data <= `BUSCMD_PC_READ;
last_cmd <= `BUSCMD_PC_READ;
cmd_pc_read_s <= 1;
end
if ((last_cmd == `BUSCMD_PC_READ) && !i_read_stall)
o_bus_strobe <= 1;
/*
* writing data to the bus,
* send DP_WRITE first if necessary
*/
if (i_write_dp && (addr_cnt == 5)) begin
if (last_cmd != `BUSCMD_DP_WRITE) begin
$display("BUS_SEND %0d: [%d] DP_WRITE", `PH_BUS_SEND, i_cycle_ctr);
o_bus_data <= `BUSCMD_DP_WRITE;
last_cmd <= `BUSCMD_DP_WRITE;
o_bus_strobe <= 1;
end else begin
$display("BUS_SEND %0d: [%d] WRITE %h =>", `PH_BUS_SEND, i_cycle_ctr, i_nibble);
o_bus_data <= i_nibble;
2019-02-17 08:35:26 +01:00
o_bus_strobe <= 1;
end
end
end
2019-02-16 22:38:44 +01:00
2019-02-17 08:35:26 +01:00
/*
*
* reading data from the bus
*
*/
2019-02-17 15:03:36 +01:00
if (en_bus_recv) begin
if (!i_read_stall)
case (last_cmd)
`BUSCMD_PC_READ: begin
$display("BUS_RECV %0d: [%d] <= READ [%5h] %h", `PH_BUS_RECV, i_cycle_ctr, local_pc, rom[local_pc[`ROMBITS-1:0]]);
o_nibble <= rom[local_pc[`ROMBITS-1:0]];
local_pc <= local_pc + 1;
end
endcase
else
if (!o_stalled_by_bus) begin
$write("BUS_RECV %0d: [%d] STALLED (last ", `PH_BUS_RECV, i_cycle_ctr);
case (last_cmd)
`BUSCMD_PC_READ: $write("PC_READ");
`BUSCMD_DP_READ: $write("DP_READ");
`BUSCMD_DP_WRITE: $write("DP_WRITE");
2019-02-17 15:03:36 +01:00
`BUSCMD_RESET: $write("RESET");
default: $write("%h", last_cmd);
endcase
$display(")");
end
2019-02-16 22:38:44 +01:00
2019-02-17 08:35:26 +01:00
/*
*
* resets the bus automatically
*
*/
2019-02-17 15:03:36 +01:00
2019-02-16 22:38:44 +01:00
o_bus_strobe <= 0;
2019-02-17 08:35:26 +01:00
o_bus_cmd_data <= 1;
2019-02-17 15:03:36 +01:00
end
if (en_bus_ecmd) begin
if (cmd_reset_sc)
o_stalled_by_bus <= 1;
if (cmd_reset_uc) begin
o_stalled_by_bus <= 0;
end
if (cmd_config_sc) begin
o_stalled_by_bus <= 1;
end
if (cmd_config_uc) begin
o_stalled_by_bus <= 0;
addr_cnt <= 0;
end
if (addr_s) begin
send_addr <= 0;
end
end
2019-02-17 15:03:36 +01:00
// command automatic switchover
if (en_bus_ecmd) begin
case (last_cmd)
`BUSCMD_LOAD_PC,
`BUSCMD_LOAD_DP:
if (send_addr && (addr_cnt == 5)) begin
// reset the addr count for next time
addr_cnt <= 0;
$display("BUS_ECMD %0d: [%d] <= %s_READ mode",
2019-02-17 15:03:36 +01:00
`PH_BUS_ECMD, i_cycle_ctr,
(last_cmd == `BUSCMD_LOAD_PC)?"PC":"DP");
2019-02-17 15:03:36 +01:00
last_cmd <= (last_cmd == `BUSCMD_LOAD_PC)?`BUSCMD_PC_READ:`BUSCMD_DP_READ;
case (last_cmd)
`BUSCMD_LOAD_PC: local_pc <= i_address;
`BUSCMD_LOAD_DP: local_dp <= i_address;
endcase
send_addr <= 0;
o_stalled_by_bus <= 0;
end
`BUSCMD_PC_READ: begin end
`BUSCMD_CONFIGURE: begin end
`BUSCMD_RESET: begin end
default: $display("------------ UNHANDLED BUSCMD %h", last_cmd);
2019-02-17 15:03:36 +01:00
endcase
2019-02-17 08:35:26 +01:00
end
2019-02-17 15:03:36 +01:00
2019-02-16 22:38:44 +01:00
end
endmodule
`endif