ARM: Warn about not implementing MPU translation, not panic about MMU.
authorGabe Black <gblack@eecs.umich.edu>
Wed, 2 Jun 2010 17:58:10 +0000 (12:58 -0500)
committerGabe Black <gblack@eecs.umich.edu>
Wed, 2 Jun 2010 17:58:10 +0000 (12:58 -0500)
We'll start out with a stbu version of PMSA and switch over to VMSA for the
full implementation.

src/arch/arm/tlb.cc

index 94f4019d63a6078624c3c9549ad12a3e13abe8a2..8e1baf1261525cccc6b3b5af6a80c21d68550776 100644 (file)
@@ -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;