Skip to content

Commit ce04de5

Browse files
Drop redundant field names in example SystemRDL
1 parent 86e7706 commit ce04de5

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

rtl/hwpe_ctrl_regif_example.rdl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ addrmap hwpe_ctrl_regif_example {
3636
hw = r;
3737
sw = w;
3838
swacc = true;
39-
} commit_trigger[1:0] = 0;
39+
} value[1:0] = 0;
4040
};
4141
// Mandatory ACQUIRE register. Not to be updated inside HWPEs.
4242
reg acquire {
@@ -46,7 +46,7 @@ addrmap hwpe_ctrl_regif_example {
4646
hw = w;
4747
sw = r;
4848
swacc = true;
49-
} acquire[31:0] = 0;
49+
} value[31:0] = 0;
5050
};
5151
// Mandatory RESERVED register. Not to be updated inside HWPEs.
5252
reg reserved {
@@ -55,7 +55,7 @@ addrmap hwpe_ctrl_regif_example {
5555
desc = "Reserved.";
5656
hw = r;
5757
sw = r;
58-
} reserved[31:0] = 0;
58+
} value[31:0] = 0;
5959
};
6060
// Mandatory STATUS register. Not to be updated inside HWPEs.
6161
reg status {
@@ -64,7 +64,7 @@ addrmap hwpe_ctrl_regif_example {
6464
desc = "Status of currently running job.";
6565
hw = w;
6666
sw = r;
67-
} status0[31:0] = 0;
67+
} value[31:0] = 0;
6868
};
6969
// Mandatory RUNNING_JOB register. Not to be updated inside HWPEs.
7070
reg running_job {
@@ -79,7 +79,7 @@ addrmap hwpe_ctrl_regif_example {
7979
desc = "Returns ID of currently running job if any job is running; otherwise, of the last job that has been run.";
8080
hw = w;
8181
sw = r;
82-
} running_job[7:0] = 0;
82+
} value[7:0] = 0;
8383
};
8484
// Mandatory SOFT_CLEAR register. Not to be updated inside HWPEs.
8585
reg soft_clear {
@@ -95,7 +95,7 @@ addrmap hwpe_ctrl_regif_example {
9595
hw = r;
9696
sw = w;
9797
swacc = true;
98-
} soft_clear[1:0] = 0;
98+
} value[1:0] = 0;
9999
};
100100

101101
// "mandatory" set of HWPE registers (CONTROL regs). Not to be updated inside HWPEs.

0 commit comments

Comments
 (0)