diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2010-06-02 12:58:10 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2010-06-02 12:58:10 -0500 |
commit | 683421e0c6435e90a25c98431e31438d774442d5 (patch) | |
tree | a36d6c54ffc132ea122a45b892456bb4164a107e /src/arch/arm | |
parent | 6fb5189c47546fe97fb66550f5484f4d96c4397b (diff) | |
download | gem5-683421e0c6435e90a25c98431e31438d774442d5.tar.xz |
ARM: Warn about not implementing MPU translation, not panic about MMU.
We'll start out with a stbu version of PMSA and switch over to VMSA for the
full implementation.
Diffstat (limited to 'src/arch/arm')
-rw-r--r-- | src/arch/arm/tlb.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/arch/arm/tlb.cc b/src/arch/arm/tlb.cc index 94f4019d6..8e1baf126 100644 --- a/src/arch/arm/tlb.cc +++ b/src/arch/arm/tlb.cc @@ -317,7 +317,8 @@ TLB::translateAtomic(RequestPtr req, ThreadContext *tc, Mode mode) req->setPaddr(vaddr); return NoFault; } - panic("MMU translation not implemented\n"); + warn_once("MPU translation not implemented\n"); + req->setPaddr(vaddr); return NoFault; |