File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -270,6 +270,10 @@ module controller_standby_i3c
270
270
// Drive all unused inputs here
271
271
always_comb begin
272
272
ctrl_scl_o = '1 ;
273
+ get_acccr = '0 ;
274
+ get_mxds = '0 ;
275
+ is_hotjoin_done = '0 ;
276
+ bus_timeout = '0 ;
273
277
end
274
278
275
279
typedef enum logic [1 : 0 ] {
Original file line number Diff line number Diff line change @@ -526,6 +526,7 @@ module hci
526
526
hwif_in.I3C_EC .StdbyCtrlMode.STBY_CR_CONTROL .HANDOFF_DEEP_SLEEP .hwclr = '0 ;
527
527
hwif_in.I3C_EC .StdbyCtrlMode.__rsvd_1.__rsvd.next = '0 ;
528
528
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 ;
529
530
530
531
hwif_in.I3C_EC .StdbyCtrlMode.STBY_CR_DEVICE_ADDR .STATIC_ADDR_VALID .we = '0 ;
531
532
hwif_in.I3C_EC .StdbyCtrlMode.STBY_CR_DEVICE_ADDR .STATIC_ADDR .we = '0 ;
Original file line number Diff line number Diff line change @@ -156,6 +156,7 @@ module i3c
156
156
157
157
input logic [ AxiDataWidth- 1 : 0 ] wdata_i,
158
158
input logic [AxiDataWidth/ 8 - 1 : 0 ] wstrb_i,
159
+ input logic [ AxiUserWidth- 1 : 0 ] wuser_i,
159
160
input logic wlast_i,
160
161
input logic wvalid_i,
161
162
output logic wready_o,
@@ -421,6 +422,7 @@ module i3c
421
422
422
423
.wdata_i (wdata_i),
423
424
.wstrb_i (wstrb_i),
425
+ .wuser_i (wuser_i),
424
426
.wlast_i (wlast_i),
425
427
.wvalid_i (wvalid_i),
426
428
.wready_o (wready_o),
You can’t perform that action at this time.
0 commit comments