mem: Allow read-only caches and check compliance
authorAndreas Hansson <andreas.hansson@arm.com>
Fri, 3 Jul 2015 14:14:39 +0000 (10:14 -0400)
committerAndreas Hansson <andreas.hansson@arm.com>
Fri, 3 Jul 2015 14:14:39 +0000 (10:14 -0400)
commit893533a1264bb369b47f74493adf30ce22829f34
tree07c750519f5ac1b972be47a0ca6f68ee517d9f07
parenta262908acc0a641700a03fcea89c48133f0467cd
mem: Allow read-only caches and check compliance

This patch adds a parameter to the BaseCache to enable a read-only
cache, for example for the instruction cache, or table-walker cache
(not for x86). A number of checks are put in place in the code to
ensure a read-only cache does not end up with dirty data.

A follow-on patch adds suitable read requests to allow a read-only
cache to explicitly ask for clean data.
configs/common/CacheConfig.py
configs/common/Caches.py
configs/common/O3_ARM_v7a.py
src/mem/cache/BaseCache.py
src/mem/cache/base.cc
src/mem/cache/base.hh
src/mem/cache/cache_impl.hh
tests/configs/base_config.py
tests/configs/x86_generic.py