-
Notifications
You must be signed in to change notification settings - Fork 170
[HW] cva6: Increase AXI data width #91
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
Open
niwis
wants to merge
7
commits into
main
Choose a base branch
from
update/ariane-wide-axi
base: main
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.
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
481e25a
ara_soc: Widen Ariane's AXI interconnect
niwis 221f536
ara_system: Update Ariane's parameter list
niwis d862334
cva6: Bump parametrised AXI data width
niwis 44debde
[cva6] Update cache size patch
suehtamacv 33e0353
[ci] :memo: Add the benchmark results as an artifact
suehtamacv dce059e
fixme! Remove SELRANGE warnings from the verilated Ara
suehtamacv 1f01177
cva6: Update reference and drop FPU update
niwis 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 hidden or 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 hidden or 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
Submodule cva6
updated
25 files
| +2 −2 | include/ariane_pkg.sv | |
| +29 −5 | src/ariane.sv | |
| +18 −14 | src/axi_adapter.sv | |
| +26 −13 | src/axi_shim.sv | |
| +3 −7 | src/cache_subsystem/cache_ctrl.sv | |
| +27 −12 | src/cache_subsystem/cva6_icache_axi_wrapper.sv | |
| +26 −13 | src/cache_subsystem/miss_handler.sv | |
| +34 −14 | src/cache_subsystem/std_cache_subsystem.sv | |
| +19 −9 | src/cache_subsystem/std_nbdcache.sv | |
| +1 −1 | src/cache_subsystem/std_no_dcache.sv | |
| +58 −26 | src/cache_subsystem/wt_axi_adapter.sv | |
| +18 −4 | src/cache_subsystem/wt_cache_subsystem.sv | |
| +2 −0 | src/cache_subsystem/wt_dcache.sv | |
| +9 −1 | src/cache_subsystem/wt_dcache_mem.sv | |
| +1 −1 | src/csr_regfile.sv | |
| +6 −6 | tb/common/tb_dcache_pkg.sv | |
| +30 −1 | tb/tb_wb_dcache/hdl/tb.sv | |
| +1 −0 | tb/tb_wb_dcache/tb.list | |
| +7 −0 | tb/tb_wt_axi_dcache/.gitignore | |
| +45 −0 | tb/tb_wt_axi_dcache/Makefile | |
| +920 −0 | tb/tb_wt_axi_dcache/hdl/tb.sv | |
| +232 −0 | tb/tb_wt_axi_dcache/hdl/tb_amoport.sv | |
| +42 −0 | tb/tb_wt_axi_dcache/tb.list | |
| +349 −0 | tb/tb_wt_axi_dcache/wave.do | |
| +2 −1 | tb/tb_wt_dcache/tb.list |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| diff --git a/include/ariane_pkg.sv b/include/ariane_pkg.sv | ||
| index 78ab0bf..5a70ccd 100644 | ||
| index adc497e..f90c12e 100644 | ||
| --- a/include/ariane_pkg.sv | ||
| +++ b/include/ariane_pkg.sv | ||
| @@ -457,14 +457,14 @@ package ariane_pkg; | ||
|
|
@@ -11,7 +11,7 @@ index 78ab0bf..5a70ccd 100644 | |
| localparam int unsigned ICACHE_SET_ASSOC = 4; // Must be between 4 to 64 | ||
| localparam int unsigned ICACHE_INDEX_WIDTH = $clog2(CONFIG_L1I_SIZE / ICACHE_SET_ASSOC); // in bit, contains also offset width | ||
| localparam int unsigned ICACHE_TAG_WIDTH = riscv::PLEN-ICACHE_INDEX_WIDTH; // in bit | ||
| localparam int unsigned ICACHE_LINE_WIDTH = 256; // in bit | ||
| localparam int unsigned ICACHE_LINE_WIDTH = 512; // in bit | ||
|
Contributor
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. Do we need wider I$ lines as well? |
||
| // D$ | ||
| - localparam int unsigned CONFIG_L1D_SIZE = 32*1024; | ||
| - localparam int unsigned DCACHE_SET_ASSOC = 8; // Must be between 4 to 64 | ||
|
Contributor
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. Okay, this should be true by default, now |
||
|
|
||
This file contains hidden or 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 hidden or 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
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.
Uh oh!
There was an error while loading. Please reload this page.