Skip to content

Commit

Permalink
[test] Do not trigger aliasing
Browse files Browse the repository at this point in the history
  • Loading branch information
ricted98 committed Jan 20, 2025
1 parent 7d9a999 commit 9ecd49a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cheshire.mk
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ VLOG_ARGS ?= -suppress 2583 -suppress 13314 -timescale 1ns/1ps
VLOGAN_ARGS ?= -kdb -nc -assert svaext +v2k -timescale=1ns/1ps

# Common Bender flags for Cheshire RTL
CHS_BENDER_RTL_FLAGS ?= -t rtl -t cva6 -t cv64a6_imafdchsclic_sv39_hpdcache
CHS_BENDER_RTL_FLAGS ?= -t rtl -t cva6 -t cv64a6_imafdc_sv39_hpdcache

# Define used paths (prefixed to avoid name conflicts)
CHS_ROOT ?= $(shell $(BENDER) path cheshire)
Expand Down
4 changes: 2 additions & 2 deletions hw/cheshire_pkg.sv
Original file line number Diff line number Diff line change
Expand Up @@ -510,8 +510,8 @@ package cheshire_pkg;
ret.RVSCLIC = cfg.Clic;
ret.CLICNumInterruptSrc = NumCoreIrqs + NumIntIntrs + cfg.NumExtClicIntrs;
// Cache configs
ret.DcacheByteSize = 64 * 1024;
ret.DcacheSetAssoc = 2;
ret.DcacheByteSize = 32 * 1024;
ret.DcacheSetAssoc = 8;
ret.DcacheLineWidth = 128;
// TODO: Should some things be removed from the main config?
// TODO: Should other things be added to the main config?
Expand Down

0 comments on commit 9ecd49a

Please sign in to comment.