diff options
author | Wendy Elsasser <wendy.elsasser@arm.com> | 2017-02-15 09:28:44 -0600 |
---|---|---|
committer | Wendy Elsasser <wendy.elsasser@arm.com> | 2017-02-15 09:28:44 -0600 |
commit | ddc6931573fa0858df4a42223afa95a60dcf8ea3 (patch) | |
tree | 3d2aaf65ed577c41d10a38baa9ea56727aaa0ac1 /src/cpu/simple | |
parent | 4b8b9c0585205f82cc8bba268dc54cd2e2af8f75 (diff) | |
download | gem5-ddc6931573fa0858df4a42223afa95a60dcf8ea3.tar.xz |
mem: fix assertion in respondEvent
Assertion in the respondEvent erroneously fired.
The assertion verifies that the controller has not moved to a low-power
state prior to receiving read data from the memory.
The original assertion triggered if the state was not:
PWR_IDLE or PWR_ACT.
In the case that failed, a periodic refresh event occurred around the
read. The REF is stalled until the final read burst is issued
and the subsequent PRE closes the bank. While the PRE will temporarily
move the state to PWR_IDLE, state will immediately transition to PWR_REF
due to the pending refresh operation. This state does not match the
assertion, which is subsequently triggered.
Fixed the assertion by explicitly checking that the state is not a low
power state
!PWR_SREF && !PWR_PRE_PDN && !PWR_ACT_PDN
Change-Id: I82921a733bbeac2bcb5a487c2f981448d41ed50b
Reviewed-by: Radhika Jagtap <radhika.jagtap@arm.com>
Diffstat (limited to 'src/cpu/simple')
0 files changed, 0 insertions, 0 deletions