Skip to content

Commit 297e988

Browse files
committed
hw: Fix unconnected ports in FPGA wrapper
1 parent 04d7bc5 commit 297e988

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

hw/pulp/control_pulp_fpga.sv

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1984,6 +1984,11 @@ module control_pulp_fpga import pms_top_pkg::*; #(
19841984
.to_ext_req_o (from_pl_req),
19851985
.to_ext_resp_i (from_pl_resp),
19861986

1987+
.d2d_clk_i ( '0 ),
1988+
.d2d_data_i ( '0 ),
1989+
.d2d_clk_o ( ),
1990+
.d2d_data_o ( ),
1991+
19871992
.apb_clk_ctrl_bus ( s_apb_clk_ctrl_bus ),
19881993
.clk_mux_sel_o ( s_clk_mux_sel ),
19891994
.apb_pad_cfg_bus ( s_apb_pad_cfg_bus ),

hw/pulp/pms_top_fpga_behav.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ module pms_top_fpga_behav (
249249

250250
// USE_D2D default is 0. If set to 1, update the other dependent parameters
251251
// accordingly
252-
localparam int unsigned USE_D2D = 1;
252+
localparam int unsigned USE_D2D = 0;
253253

254254
control_pulp_fpga #(
255255
.CORE_TYPE(0),

0 commit comments

Comments
 (0)