Skip to content

Commit 0c72904

Browse files
wkkunakgugala
authored andcommitted
Followup 0981cdb: Update I3CCSR
Signed-off-by: Wiktoria Kuna <[email protected]>
1 parent 48040f6 commit 0c72904

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/csr/I3CCSR.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5946,7 +5946,7 @@ module I3CCSR (
59465946
end
59475947
always_ff @(posedge clk or negedge hwif_in.rst_ni) begin
59485948
if(~hwif_in.rst_ni) begin
5949-
field_storage.I3C_EC.SecFwRecoveryIf.INDIRECT_FIFO_STATUS_3.FIFO_SIZE.value <= 32'h0;
5949+
field_storage.I3C_EC.SecFwRecoveryIf.INDIRECT_FIFO_STATUS_3.FIFO_SIZE.value <= 32'h40;
59505950
end else begin
59515951
if(field_combo.I3C_EC.SecFwRecoveryIf.INDIRECT_FIFO_STATUS_3.FIFO_SIZE.load_next) begin
59525952
field_storage.I3C_EC.SecFwRecoveryIf.INDIRECT_FIFO_STATUS_3.FIFO_SIZE.value <= field_combo.I3C_EC.SecFwRecoveryIf.INDIRECT_FIFO_STATUS_3.FIFO_SIZE.next;

src/csr/I3CCSR_uvm.sv

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

25852585
virtual function void build();
25862586
this.FIFO_SIZE = new("FIFO_SIZE");
2587-
this.FIFO_SIZE.configure(this, 32, 0, "RO", 1, 'h0, 1, 1, 0);
2587+
this.FIFO_SIZE.configure(this, 32, 0, "RO", 1, 'h40, 1, 1, 0);
25882588
if (has_coverage(UVM_CVR_REG_BITS)) begin
25892589
foreach(FIFO_SIZE_bit_cg[bt]) FIFO_SIZE_bit_cg[bt] = new();
25902590
end

src/rdl/docs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1892,11 +1892,11 @@ Component Memory Space (CMS):</p>
18921892

18931893
|Bits|Identifier|Access|Reset| Name |
18941894
|----|----------|------|-----|------------------|
1895-
|31:0| FIFO_SIZE| r | 0x0 |Indirect FIFO size|
1895+
|31:0| FIFO_SIZE| r | 0x40|Indirect FIFO size|
18961896

18971897
#### FIFO_SIZE field
18981898

1899-
<p>Size of memory window specified in 4B units</p>
1899+
<p>Size of memory window specified in 4B units. Current implementation supports only a constant size of 64.</p>
19001900

19011901
### INDIRECT_FIFO_STATUS_4 register
19021902

verification/cocotb/common/reg_map.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1995,7 +1995,7 @@
19951995
"FIFO_SIZE": {
19961996
"low": 0,
19971997
"mask": 4294967295,
1998-
"reset": 0,
1998+
"reset": 64,
19991999
"sw": "r",
20002000
"hw": "rw",
20012001
"woclr": 0,

0 commit comments

Comments
 (0)