-
Notifications
You must be signed in to change notification settings - Fork 705
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
[RVV] CVA6 re-parametrization and MMU interface #2652
Draft
mp-17
wants to merge
13
commits into
openhwgroup:master
Choose a base branch
from
mp-17:mp/pulp-v2
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
e8f721b
acc_dispatcher, load_store_unit: add mmu interface for accelerator
mp-17 0817830
load_store_unit: add MMU accelerator port
mp-17 9cfd276
ara: fix parametrization
mp-17 8cf71b1
tracer: parametrize interface on NrCommitPorts
mp-17 be4f21f
cva6: :bug: guard xif signals within CvxifEn
mp-17 c992be3
acc_dispatcher: add accelerator_req interface definitions
mp-17 3752dce
acc_dispatcher: fix signal names
mp-17 8ca94e1
icache: guard user-icache-line assignments with FETCH_USER_EN
mp-17 bf13267
cv64a6_imafdcv_sv39_config_pkg: use safe value of unused feature to a…
mp-17 cd91e72
acc_dispatcher: cut combinatorial path from CVA6 to Ara
mp-17 477c1c2
cv64a6_imafdcv_sv39: 2 commit ports by default
mp-17 ab64842
core: re-parametrize the RVV interfaces
mp-17 d960b71
treewide: verible pass
mp-17 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
@@ -136,8 +136,8 @@ module wt_dcache_wbuffer | |||||||||
|
||||||||||
// openpiton requires the data to be replicated in case of smaller sizes than dwords | ||||||||||
function automatic logic [CVA6Cfg.XLEN-1:0] repData64( | ||||||||||
input logic [CVA6Cfg.XLEN-1:0] data, input logic [CVA6Cfg.XLEN_ALIGN_BYTES-1:0] offset, | ||||||||||
input logic [1:0] size); | ||||||||||
input logic [CVA6Cfg.XLEN-1:0] data, | ||||||||||
input logic [CVA6Cfg.XLEN_ALIGN_BYTES-1:0] offset, input logic [1:0] size); | ||||||||||
Comment on lines
+139
to
+140
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [verible-verilog-format] reported by reviewdog 🐶
Suggested change
|
||||||||||
logic [CVA6Cfg.XLEN-1:0] out; | ||||||||||
unique case (size) | ||||||||||
2'b00: for (int k = 0; k < 8; k++) out[k*8+:8] = data[offset*8+:8]; // byte | ||||||||||
|
@@ -149,8 +149,8 @@ module wt_dcache_wbuffer | |||||||||
endfunction : repData64 | ||||||||||
|
||||||||||
function automatic logic [CVA6Cfg.XLEN-1:0] repData32( | ||||||||||
input logic [CVA6Cfg.XLEN-1:0] data, input logic [CVA6Cfg.XLEN_ALIGN_BYTES-1:0] offset, | ||||||||||
input logic [1:0] size); | ||||||||||
input logic [CVA6Cfg.XLEN-1:0] data, | ||||||||||
input logic [CVA6Cfg.XLEN_ALIGN_BYTES-1:0] offset, input logic [1:0] size); | ||||||||||
Comment on lines
+152
to
+153
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [verible-verilog-format] reported by reviewdog 🐶
Suggested change
|
||||||||||
logic [CVA6Cfg.XLEN-1:0] out; | ||||||||||
unique case (size) | ||||||||||
2'b00: for (int k = 0; k < 4; k++) out[k*8+:8] = data[offset*8+:8]; // byte | ||||||||||
|
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 🐶