summaryrefslogtreecommitdiff
path: root/rtl
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2023-11-17 20:22:02 -0600
committerAlejandro Soto <alejandro@34project.org>2023-11-17 20:22:02 -0600
commite573ddb5814ac1c9cafd6376c3052ca01dddeae8 (patch)
treec8f89ebb19f99fff123ed634d9d3c0f951641d58 /rtl
parent7275f342f2b8d97ae02e0e51011442f063660b5d (diff)
tb: add test: fifo
Diffstat (limited to 'rtl')
-rw-r--r--rtl/gfx/gfx_fifo.sv15
-rw-r--r--rtl/top/test_fifo.sv20
2 files changed, 30 insertions, 5 deletions
diff --git a/rtl/gfx/gfx_fifo.sv b/rtl/gfx/gfx_fifo.sv
index 7314b4b..e9fa8f5 100644
--- a/rtl/gfx/gfx_fifo.sv
+++ b/rtl/gfx/gfx_fifo.sv
@@ -13,10 +13,15 @@ module gfx_fifo
output logic[WIDTH - 1:0] out
);
- logic full_if_eq, in_stall, out_stall, may_read, may_write, read, read_ok, write;
+ logic do_read, do_write, full_if_eq, in_stall, out_stall,
+ may_read, may_write, read, read_ok, write;
+
logic[WIDTH - 1:0] fifo[DEPTH], read_data, write_data;
logic[$clog2(DEPTH) - 1:0] read_ptr, write_ptr;
+ assign do_read = read && may_read;
+ assign do_write = write && may_write;
+
always_comb begin
may_read = full_if_eq;
may_write = !full_if_eq;
@@ -70,15 +75,15 @@ module gfx_fifo
if (!out_stall)
read_ok <= read && may_read;
- if (read && may_read)
+ if (do_read)
read_ptr <= read_ptr + 1;
- if (write && may_write)
+ if (do_write)
write_ptr <= write_ptr + 1;
- if (read && !write)
+ if (do_read && !do_write)
full_if_eq <= 0;
- else if (!read && write)
+ else if (!do_read && do_write)
full_if_eq <= 1;
end
diff --git a/rtl/top/test_fifo.sv b/rtl/top/test_fifo.sv
new file mode 100644
index 0000000..2641c61
--- /dev/null
+++ b/rtl/top/test_fifo.sv
@@ -0,0 +1,20 @@
+module test_fifo
+(
+ input logic clk,
+ rst_n,
+
+ input logic[7:0] in,
+ input logic in_valid,
+ output logic in_ready,
+
+ input logic out_ready,
+ output logic out_valid,
+ output logic[7:0] out
+);
+
+ gfx_fifo #(.WIDTH($bits(in)), .DEPTH(8)) dut
+ (
+ .*
+ );
+
+endmodule