From 683421e0c6435e90a25c98431e31438d774442d5 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Wed, 2 Jun 2010 12:58:10 -0500 Subject: 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. --- src/arch/arm/tlb.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- cgit v1.2.3