X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=configs%2Fcommon%2FCaches.py;h=0be8001d782a9735e6e6b60b009e20cc6878bc10;hb=78a72d69727273d7ccc844bc05d080341bf9d7fa;hp=3adc7e5c9b91b3d2e64e6c637ba5fa9fd5df1a75;hpb=119f5f8e94e673b1495dccce03b54773dc18afea;p=gem5.git diff --git a/configs/common/Caches.py b/configs/common/Caches.py index 3adc7e5c9..0be8001d7 100644 --- a/configs/common/Caches.py +++ b/configs/common/Caches.py @@ -33,7 +33,8 @@ class L1Cache(BaseCache): block_size = 64 latency = '1ns' mshrs = 10 - tgts_per_mshr = 5 + tgts_per_mshr = 20 + is_top_level = True class L2Cache(BaseCache): assoc = 8 @@ -49,6 +50,7 @@ class PageTableWalkerCache(BaseCache): mshrs = 10 size = '1kB' tgts_per_mshr = 12 + is_top_level = True class IOCache(BaseCache): assoc = 8 @@ -58,3 +60,4 @@ class IOCache(BaseCache): size = '1kB' tgts_per_mshr = 12 forward_snoops = False + is_top_level = True