summaryrefslogtreecommitdiff
path: root/rtl
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2024-05-06 20:43:24 -0600
committerAlejandro Soto <alejandro@34project.org>2024-05-06 20:43:24 -0600
commitf13369fb883d0a231b8dd01856dc18f7ee22d5c9 (patch)
tree1dfacaf4e80a532e52586fa7e63563f20d832228 /rtl
parent492241990c66a8cc7e1ed464ab6e8a58df151054 (diff)
platform/wavelet3d: add platform interconnect
Diffstat (limited to '')
-rw-r--r--rtl/gfx/gfx_top.sv10
-rw-r--r--rtl/if_common/if_rst_sync.sv (renamed from rtl/gfx/gfx_rst_sync.sv)2
2 files changed, 2 insertions, 10 deletions
diff --git a/rtl/gfx/gfx_top.sv b/rtl/gfx/gfx_top.sv
index 215c953..5f58edd 100644
--- a/rtl/gfx/gfx_top.sv
+++ b/rtl/gfx/gfx_top.sv
@@ -3,25 +3,17 @@ import gfx::*;
(
input logic clk,
rst_n,
+ srst_n,
if_axil.s host_ctrl
);
- logic srst_n;
-
if_axib insn_mem();
if_axil bootrom_axi(), debug_axi(), host_ctrl_axi(), sched_axi(), shader_0_axi();
logic irq_host_ctrl;
irq_lines irq;
- gfx_rst_sync rst_sync
- (
- .clk,
- .rst_n,
- .srst_n
- );
-
gfx_sched sched
(
.clk,
diff --git a/rtl/gfx/gfx_rst_sync.sv b/rtl/if_common/if_rst_sync.sv
index 2a8ea3b..69f1b78 100644
--- a/rtl/gfx/gfx_rst_sync.sv
+++ b/rtl/if_common/if_rst_sync.sv
@@ -1,5 +1,5 @@
//FIXME: peligro
-module gfx_rst_sync
+module if_rst_sync
(
input logic clk,
rst_n,