2022-10-22 18:34:54 -04:00
|
|
|
/* (c) Peter McGoron 2022
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v.2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
module simtop
|
|
|
|
#(
|
|
|
|
parameter POLARITY = 0,
|
|
|
|
parameter PHASE = 0,
|
|
|
|
parameter WID = 24,
|
|
|
|
parameter WID_LEN = 5
|
|
|
|
) (
|
|
|
|
input clk,
|
2023-04-20 15:10:04 -04:00
|
|
|
input rst_L,
|
2022-10-22 18:34:54 -04:00
|
|
|
`ifndef SPI_MASTER_NO_WRITE
|
|
|
|
input [WID-1:0] master_to_slave,
|
|
|
|
output [WID-1:0] from_master,
|
|
|
|
`endif
|
|
|
|
`ifndef SPI_MASTER_NO_READ
|
|
|
|
input [WID-1:0] slave_to_master,
|
|
|
|
output [WID-1:0] from_slave,
|
|
|
|
`endif
|
|
|
|
input activate,
|
2022-10-23 12:37:07 -04:00
|
|
|
`ifndef SPI_MASTER_SS
|
2022-10-22 18:34:54 -04:00
|
|
|
input ss,
|
2022-10-23 12:37:07 -04:00
|
|
|
`endif
|
2022-10-22 18:34:54 -04:00
|
|
|
input rdy,
|
|
|
|
output master_finished,
|
2023-04-20 12:23:23 -04:00
|
|
|
output ready_to_arm,
|
2022-10-22 18:34:54 -04:00
|
|
|
output err
|
|
|
|
);
|
|
|
|
|
|
|
|
`ifndef SPI_MASTER_NO_READ
|
|
|
|
wire miso;
|
|
|
|
`endif
|
|
|
|
|
|
|
|
`ifndef SPI_MASTER_NO_WRITE
|
|
|
|
wire mosi;
|
|
|
|
`endif
|
|
|
|
|
|
|
|
wire sck;
|
2022-10-23 12:37:07 -04:00
|
|
|
wire ss_L;
|
|
|
|
|
|
|
|
`ifndef SPI_MASTER_SS
|
|
|
|
assign ss_L = !ss;
|
|
|
|
`endif
|
2022-10-22 18:34:54 -04:00
|
|
|
|
|
|
|
reg slave_finished;
|
|
|
|
reg slave_error;
|
|
|
|
|
|
|
|
`SPI_MASTER_TYPE
|
|
|
|
#(
|
2022-10-23 12:37:07 -04:00
|
|
|
`ifdef SPI_MASTER_SS
|
|
|
|
.SS_WAIT(5),
|
|
|
|
.SS_WAIT_TIMER_LEN(3),
|
|
|
|
`endif
|
|
|
|
.CYCLE_HALF_WAIT(5),
|
|
|
|
.TIMER_LEN(3),
|
2022-10-22 18:34:54 -04:00
|
|
|
.POLARITY(POLARITY),
|
|
|
|
.PHASE(PHASE),
|
|
|
|
.WID(WID),
|
2022-10-23 12:37:07 -04:00
|
|
|
.WID_LEN(WID_LEN)
|
2022-10-22 18:34:54 -04:00
|
|
|
) master (
|
|
|
|
.clk(clk),
|
2023-04-20 15:10:04 -04:00
|
|
|
.rst_L(rst_L),
|
2022-10-22 18:34:54 -04:00
|
|
|
`ifndef SPI_MASTER_NO_WRITE
|
|
|
|
.to_slave(master_to_slave),
|
|
|
|
.mosi(mosi),
|
|
|
|
`endif
|
|
|
|
`ifndef SPI_MASTER_NO_READ
|
|
|
|
.from_slave(from_slave),
|
|
|
|
.miso(miso),
|
2022-10-23 12:37:07 -04:00
|
|
|
`endif
|
|
|
|
`ifdef SPI_MASTER_SS
|
|
|
|
.ss_L(ss_L),
|
2022-10-22 18:34:54 -04:00
|
|
|
`endif
|
|
|
|
.sck_wire(sck),
|
|
|
|
.finished(master_finished),
|
2023-04-20 12:23:23 -04:00
|
|
|
.ready_to_arm(ready_to_arm),
|
2022-10-22 18:34:54 -04:00
|
|
|
.arm(activate)
|
|
|
|
);
|
|
|
|
|
|
|
|
`SPI_SLAVE_TYPE #(
|
|
|
|
.POLARITY(POLARITY),
|
|
|
|
.PHASE(PHASE),
|
|
|
|
.WID(WID),
|
|
|
|
.WID_LEN(WID_LEN)
|
|
|
|
) slave (
|
|
|
|
.clk(clk),
|
2023-04-20 15:10:04 -04:00
|
|
|
.rst_L(rst_L),
|
2022-10-22 18:34:54 -04:00
|
|
|
.sck(sck),
|
|
|
|
.ss_L(ss_L),
|
|
|
|
`ifndef SPI_MASTER_NO_WRITE
|
|
|
|
.from_master(from_master),
|
|
|
|
.mosi(mosi),
|
|
|
|
`endif
|
|
|
|
`ifndef SPI_MASTER_NO_READ
|
|
|
|
.to_master(slave_to_master),
|
|
|
|
.miso(miso),
|
|
|
|
`endif
|
|
|
|
.finished(slave_finished),
|
|
|
|
.rdy(rdy),
|
|
|
|
.err(err)
|
|
|
|
);
|
|
|
|
|
2023-04-20 12:23:23 -04:00
|
|
|
`ifdef SIMULATION
|
2022-10-23 12:37:07 -04:00
|
|
|
initial begin
|
|
|
|
$dumpfile(`VCDFILE);
|
|
|
|
$dumpvars;
|
|
|
|
end
|
2023-04-20 12:23:23 -04:00
|
|
|
`endif
|
2022-10-23 12:37:07 -04:00
|
|
|
|
2022-10-22 18:34:54 -04:00
|
|
|
endmodule
|