File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -314,12 +314,12 @@ module hci
314
314
hwif_in.I3C_EC .StdbyCtrlMode.STBY_CR_DEVICE_ADDR .DYNAMIC_ADDR_VALID .we = (set_dasa_valid_i | rstdaa_i) && ~ (set_dasa_virtual_device_i);
315
315
hwif_in.I3C_EC .StdbyCtrlMode.STBY_CR_DEVICE_ADDR .DYNAMIC_ADDR_VALID .next = (rstdaa_i && ~ (set_dasa_virtual_device_i)) ? '0 : set_dasa_valid_i;
316
316
hwif_in.I3C_EC .StdbyCtrlMode.STBY_CR_DEVICE_ADDR .DYNAMIC_ADDR .we = (set_dasa_valid_i | rstdaa_i) && ~ (set_dasa_virtual_device_i);
317
- hwif_in.I3C_EC .StdbyCtrlMode.STBY_CR_DEVICE_ADDR .DYNAMIC_ADDR .next = (rstdaa_i && ~ (set_dasa_virtual_device_i)) ? 1'b0 : set_dasa_i;
317
+ hwif_in.I3C_EC .StdbyCtrlMode.STBY_CR_DEVICE_ADDR .DYNAMIC_ADDR .next = (rstdaa_i && ~ (set_dasa_virtual_device_i)) ? '0 : set_dasa_i;
318
318
// Virtual device address
319
319
hwif_in.I3C_EC .StdbyCtrlMode.STBY_CR_VIRT_DEVICE_ADDR .VIRT_DYNAMIC_ADDR_VALID .we = (set_dasa_valid_i | rstdaa_i) && (set_dasa_virtual_device_i);
320
320
hwif_in.I3C_EC .StdbyCtrlMode.STBY_CR_VIRT_DEVICE_ADDR .VIRT_DYNAMIC_ADDR_VALID .next = rstdaa_i && set_dasa_virtual_device_i ? '0 : set_dasa_valid_i;
321
321
hwif_in.I3C_EC .StdbyCtrlMode.STBY_CR_VIRT_DEVICE_ADDR .VIRT_DYNAMIC_ADDR .we = (set_dasa_valid_i | rstdaa_i) && (set_dasa_virtual_device_i);
322
- hwif_in.I3C_EC .StdbyCtrlMode.STBY_CR_VIRT_DEVICE_ADDR .VIRT_DYNAMIC_ADDR .next = rstdaa_i && set_dasa_virtual_device_i ? 1'b0 : set_dasa_i;
322
+ hwif_in.I3C_EC .StdbyCtrlMode.STBY_CR_VIRT_DEVICE_ADDR .VIRT_DYNAMIC_ADDR .next = rstdaa_i && set_dasa_virtual_device_i ? '0 : set_dasa_i;
323
323
end else if (set_newda_i | set_newda_virtual_device_i) begin
324
324
hwif_in.I3C_EC .StdbyCtrlMode.STBY_CR_DEVICE_ADDR .DYNAMIC_ADDR_VALID .we = set_newda_i && ~ (set_newda_virtual_device_i);
325
325
hwif_in.I3C_EC .StdbyCtrlMode.STBY_CR_DEVICE_ADDR .DYNAMIC_ADDR_VALID .next = 1'b1 ;
You can’t perform that action at this time.
0 commit comments