From: Luke Kenneth Casson Leighton Date: Mon, 14 Sep 2020 15:59:21 +0000 (+0100) Subject: increase TLB_NUM_WAYS to 4 X-Git-Tag: semi_working_ecp5~44 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5bf0d18a12c2351274e205d27d0971c0cb331cb1;p=soc.git increase TLB_NUM_WAYS to 4 --- diff --git a/src/soc/experiment/dcache.py b/src/soc/experiment/dcache.py index 488203ff..7a0ddff6 100644 --- a/src/soc/experiment/dcache.py +++ b/src/soc/experiment/dcache.py @@ -45,7 +45,7 @@ LINE_SIZE = 64 # Line size in bytes NUM_LINES = 16 # Number of lines in a set NUM_WAYS = 4 # Number of ways TLB_SET_SIZE = 64 # L1 DTLB entries per set -TLB_NUM_WAYS = 2 # L1 DTLB number of sets +TLB_NUM_WAYS = 4 # L1 DTLB number of sets TLB_LG_PGSZ = 12 # L1 DTLB log_2(page_size) LOG_LENGTH = 0 # Non-zero to enable log data collection