arm: ignore writes to the reset_ctl register

Change-Id: I953521572e6ace475b656369c9f07ddfa50d731a
Signed-off-by: Gedare Bloom <gedare@rtems.org>
Reviewed-on: https://gem5-review.googlesource.com/3263
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
This commit is contained in:
Gedare Bloom
2017-02-23 15:52:22 -05:00
parent f24059005f
commit b49b8cef7b

View File

@@ -146,6 +146,10 @@ RealViewCtrl::write(PacketPtr pkt)
case Lock:
sysLock.lockVal = pkt->get<uint16_t>();
break;
case ResetCtl:
// Ignore writes to reset control
warn_once("Ignoring write to reset control\n");
break;
case Flags:
flags = pkt->get<uint32_t>();
break;