Caches.py (9815:3b3b94536547) Caches.py (10820:e2a283400c43)
1# Copyright (c) 2012 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 65 unchanged lines hidden (view full) ---

74
75class PageTableWalkerCache(BaseCache):
76 assoc = 2
77 hit_latency = 2
78 response_latency = 2
79 mshrs = 10
80 size = '1kB'
81 tgts_per_mshr = 12
1# Copyright (c) 2012 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 65 unchanged lines hidden (view full) ---

74
75class PageTableWalkerCache(BaseCache):
76 assoc = 2
77 hit_latency = 2
78 response_latency = 2
79 mshrs = 10
80 size = '1kB'
81 tgts_per_mshr = 12
82 forward_snoops = False
82 is_top_level = True
83 is_top_level = True