Skip to content

Commit 998e190

Browse files
wkkunakgugala
authored andcommitted
rdl: base: Set PRESENT_STATE 'reset' to 0
At the current implementation stage I3C is always in the standby mode. Signed-off-by: Wiktoria Kuna <[email protected]>
1 parent 7fb52c7 commit 998e190

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/csr/I3CCSR_uvm.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ package I3CCSR_uvm;
310310

311311
virtual function void build();
312312
this.AC_CURRENT_OWN = new("AC_CURRENT_OWN");
313-
this.AC_CURRENT_OWN.configure(this, 1, 2, "RO", 1, 'h1, 1, 1, 0);
313+
this.AC_CURRENT_OWN.configure(this, 1, 2, "RO", 1, 'h0, 1, 1, 0);
314314
if (has_coverage(UVM_CVR_REG_BITS)) begin
315315
foreach(AC_CURRENT_OWN_bit_cg[bt]) AC_CURRENT_OWN_bit_cg[bt] = new();
316316
end

src/rdl/base_registers.rdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ regfile BaseRegs #(
375375
1 - bus owner";
376376
sw = r;
377377
hw = w;
378-
reset = 1'b1;
378+
reset = 1'b0;
379379
} AC_CURRENT_OWN[2:2];
380380
} PRESENT_STATE @ 0x14;
381381
reg {

src/rdl/docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ Don't override. Generated from: I3CCSR
300300

301301
|Bits| Identifier |Access|Reset| Name |
302302
|----|--------------|------|-----|--------------|
303-
| 2 |AC_CURRENT_OWN| r | 0x1 |AC_CURRENT_OWN|
303+
| 2 |AC_CURRENT_OWN| r | 0x0 |AC_CURRENT_OWN|
304304

305305
#### AC_CURRENT_OWN field
306306

verification/cocotb/common/reg_map.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@
350350
"AC_CURRENT_OWN": {
351351
"low": 2,
352352
"mask": 4,
353-
"reset": 1,
353+
"reset": 0,
354354
"sw": "r",
355355
"hw": "w",
356356
"woclr": 0,

0 commit comments

Comments
 (0)