Skip to content

Commit b7aa9ea

Browse files
robertszczepanskitmichalak
authored andcommitted
Assign undriven singals
Internal-tag: [#74406]
1 parent 72ce706 commit b7aa9ea

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

src/ctrl/controller_standby_i3c.sv

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,10 @@ module controller_standby_i3c
270270
// Drive all unused inputs here
271271
always_comb begin
272272
ctrl_scl_o = '1;
273+
get_acccr = '0;
274+
get_mxds = '0;
275+
is_hotjoin_done = '0;
276+
bus_timeout = '0;
273277
end
274278

275279
typedef enum logic [1:0] {

src/hci/hci.sv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -526,6 +526,7 @@ module hci
526526
hwif_in.I3C_EC.StdbyCtrlMode.STBY_CR_CONTROL.HANDOFF_DEEP_SLEEP.hwclr = '0;
527527
hwif_in.I3C_EC.StdbyCtrlMode.__rsvd_1.__rsvd.next = '0;
528528
hwif_in.I3C_EC.StdbyCtrlMode.STBY_CR_DEVICE_ADDR.STATIC_ADDR_VALID.next = '0;
529+
hwif_in.I3C_EC.StdbyCtrlMode.STBY_CR_DEVICE_ADDR.STATIC_ADDR.next = '0;
529530

530531
hwif_in.I3C_EC.StdbyCtrlMode.STBY_CR_DEVICE_ADDR.STATIC_ADDR_VALID.we = '0;
531532
hwif_in.I3C_EC.StdbyCtrlMode.STBY_CR_DEVICE_ADDR.STATIC_ADDR.we = '0;

src/i3c.sv

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ module i3c
156156

157157
input logic [ AxiDataWidth-1:0] wdata_i,
158158
input logic [AxiDataWidth/8-1:0] wstrb_i,
159+
input logic [ AxiUserWidth-1:0] wuser_i,
159160
input logic wlast_i,
160161
input logic wvalid_i,
161162
output logic wready_o,
@@ -421,6 +422,7 @@ module i3c
421422

422423
.wdata_i (wdata_i),
423424
.wstrb_i (wstrb_i),
425+
.wuser_i (wuser_i),
424426
.wlast_i (wlast_i),
425427
.wvalid_i(wvalid_i),
426428
.wready_o(wready_o),

0 commit comments

Comments
 (0)