From 2d3c392de957db2252f935a4f2eb3f9a76943966 Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Sun, 19 Nov 2023 20:23:17 -0600 Subject: rtl/gfx: implement SP batch input stream --- rtl/gfx/gfx_sp.sv | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'rtl/gfx/gfx_sp.sv') diff --git a/rtl/gfx/gfx_sp.sv b/rtl/gfx/gfx_sp.sv index b0e36aa..9a638c3 100644 --- a/rtl/gfx/gfx_sp.sv +++ b/rtl/gfx/gfx_sp.sv @@ -5,6 +5,12 @@ module gfx_sp input logic clk, rst_n, + input logic batch_waitrequest, + batch_readdatavalid, + input vram_word batch_readdata, + output vram_addr batch_address, + output logic batch_read, + input logic fetch_waitrequest, fetch_readdatavalid, input vram_word fetch_readdata, @@ -28,6 +34,15 @@ module gfx_sp .* ); + gfx_sp_batch batch + ( + .out_data(), + .out_mask(), + .out_ready(1), + .out_valid(), + .* + ); + logic batch_end; endmodule -- cgit v1.2.3