-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Collective PR to combine tests increasing coverage #238
Conversation
d63c76d
to
8faf6d0
Compare
Links to coverage and verification reports for this PR (#238) are available at https://chipsalliance.github.io/Cores-VeeR-EL2/ |
1 similar comment
Links to coverage and verification reports for this PR (#238) are available at https://chipsalliance.github.io/Cores-VeeR-EL2/ |
endmodule // ahb_to_axi4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[verible-verilog-format] reported by reviewdog 🐶
endmodule // ahb_to_axi4 | |
endmodule // ahb_to_axi4 |
Links to coverage and verification reports for this PR (#238) are available at https://chipsalliance.github.io/Cores-VeeR-EL2/ |
2 similar comments
Links to coverage and verification reports for this PR (#238) are available at https://chipsalliance.github.io/Cores-VeeR-EL2/ |
Links to coverage and verification reports for this PR (#238) are available at https://chipsalliance.github.io/Cores-VeeR-EL2/ |
@@ -418,6 +490,8 @@ import el2_pkg::*; | |||
|
|||
// zero out the signals not presented at the wrapper instantiation level |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[verible-verilog-format] reported by reviewdog 🐶
// zero out the signals not presented at the wrapper instantiation level | |
// zero out the signals not presented at the wrapper instantiation level |
Links to coverage and verification reports for this PR (#238) are available at https://chipsalliance.github.io/Cores-VeeR-EL2/ |
|
||
/*verilator coverage_on*/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove trailing spaces. [Style: trailing-spaces] [no-trailing-spaces]
/*verilator coverage_on*/ | |
/*verilator coverage_on*/ |
Links to coverage and verification reports for this PR (#238) are available at https://chipsalliance.github.io/Cores-VeeR-EL2/ |
5 similar comments
Links to coverage and verification reports for this PR (#238) are available at https://chipsalliance.github.io/Cores-VeeR-EL2/ |
Links to coverage and verification reports for this PR (#238) are available at https://chipsalliance.github.io/Cores-VeeR-EL2/ |
Links to coverage and verification reports for this PR (#238) are available at https://chipsalliance.github.io/Cores-VeeR-EL2/ |
Links to coverage and verification reports for this PR (#238) are available at https://chipsalliance.github.io/Cores-VeeR-EL2/ |
Links to coverage and verification reports for this PR (#238) are available at https://chipsalliance.github.io/Cores-VeeR-EL2/ |
37380d2
to
07c55eb
Compare
07c55eb
to
4be86d0
Compare
Links to coverage and verification reports for this PR (#238) are available at https://chipsalliance.github.io/Cores-VeeR-EL2/ |
input logic scan_mode, // Scan mode | ||
/* verilator coverage_on */ | ||
|
||
`ifdef RV_SMEPMP | ||
input el2_mseccfg_pkt_t mseccfg, // mseccfg CSR content, RLB, MMWP and MML bits |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[verible-verilog-format] reported by reviewdog 🐶
input el2_mseccfg_pkt_t mseccfg, // mseccfg CSR content, RLB, MMWP and MML bits | |
input el2_mseccfg_pkt_t mseccfg, // mseccfg CSR content, RLB, MMWP and MML bits |
2'b11: result = | ||
(pmp_req_type == EXEC) | | ||
((pmp_req_type == READ) & ~priv_mode); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[verible-verilog-format] reported by reviewdog 🐶
2'b11: result = | |
(pmp_req_type == EXEC) | | |
((pmp_req_type == READ) & ~priv_mode); | |
2'b11: result = (pmp_req_type == EXEC) | ((pmp_req_type == READ) & ~priv_mode); |
Links to coverage and verification reports for this PR (#238) are available at https://chipsalliance.github.io/Cores-VeeR-EL2/ |
end | ||
/*verilator coverage_on*/ | ||
endcase | ||
end | ||
rvdffs #(($bits(err_stop_state_t))) err_stop_state_ff (.clk(active_clk), .din(err_stop_nxtstate), .dout({err_stop_state}), .en(err_stop_state_en), .*); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[verible-verilog-format] reported by reviewdog 🐶
end | |
/*verilator coverage_on*/ | |
endcase | |
end | |
rvdffs #(($bits(err_stop_state_t))) err_stop_state_ff (.clk(active_clk), .din(err_stop_nxtstate), .dout({err_stop_state}), .en(err_stop_state_en), .*); | |
end | |
/*verilator coverage_on*/ | |
endcase | |
end | |
rvdffs #(($bits( | |
err_stop_state_t | |
))) err_stop_state_ff ( | |
.clk (active_clk), | |
.din (err_stop_nxtstate), | |
.dout({err_stop_state}), | |
.en (err_stop_state_en), | |
.* | |
); |
Links to coverage and verification reports for this PR (#238) are available at https://chipsalliance.github.io/Cores-VeeR-EL2/ |
6107ef2
to
c564971
Compare
Links to coverage and verification reports for this PR (#238) are available at https://chipsalliance.github.io/Cores-VeeR-EL2/ |
Signed-off-by: Wojciech Sipak <[email protected]>
Signed-off-by: Karol Gugala <[email protected]>
Signed-off-by: Krzysztof Obłonczek <[email protected]> Co-authored-by: Karol Gugala <[email protected]>
c564971
to
ddf4406
Compare
ddf4406
to
0a85856
Compare
This way matrix size is below 256 Also limit exceptions tests to AXI and M mode Signed-off-by: Karol Gugala <[email protected]> Co-authored-by: Wojciech Sipak <[email protected]>
Signed-off-by: Wojciech Sipak <[email protected]> Co-authored-by: Karol Gugala <[email protected]> Co-authored-by: Tomasz Michalak <[email protected]> Co-authored-by: Robert Szczepanski <[email protected]>
Signed-off-by: Karol Gugala <[email protected]>
Signed-off-by: Wojciech Sipak <[email protected]>
Signed-off-by: Tomasz Michalak <[email protected]>
Signed-off-by: Robert Szczepanski <[email protected]>
0a85856
to
b7d2856
Compare
This PR combines changes from: