From 00bb8b7fe0044055c097e4bb6dbb7b45ec9dc3f5 Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Sun, 19 May 2024 20:04:27 -0600 Subject: rtl/gfx, platform/wavelet3d: implement vram interconnects --- platform/wavelet3d/w3d_top.sv | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'platform/wavelet3d/w3d_top.sv') diff --git a/platform/wavelet3d/w3d_top.sv b/platform/wavelet3d/w3d_top.sv index b80446a..b4d903e 100644 --- a/platform/wavelet3d/w3d_top.sv +++ b/platform/wavelet3d/w3d_top.sv @@ -64,7 +64,7 @@ module w3d_top ); if_tap host_jtag(); - if_axib dram(), host_dbus(), host_ibus(); + if_axib dram(), host_dbus(), host_ibus(), gfx_vram(); if_axil mmio(), gfx_ctrl(); assign dram_awid = dram.s.awid; @@ -137,6 +137,7 @@ module w3d_top .clk, .rst_n, .srst_n, + .vram(gfx_vram.m), .host_ctrl(gfx_ctrl.s) ); @@ -155,6 +156,7 @@ module w3d_top .srst_n, .dram(dram.m), .gfx_ctrl(gfx_ctrl.m), + .gfx_vram(gfx_vram.s), .host_dbus(host_dbus.s), .host_ibus(host_ibus.s), .external_io(mmio.m) -- cgit v1.2.3