projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6fb5189
)
ARM: Warn about not implementing MPU translation, not panic about MMU.
author
Gabe Black
<gblack@eecs.umich.edu>
Wed, 2 Jun 2010 17:58:10 +0000
(12:58 -0500)
committer
Gabe 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
patch
|
blob
|
history
diff --git
a/src/arch/arm/tlb.cc
b/src/arch/arm/tlb.cc
index 94f4019d63a6078624c3c9549ad12a3e13abe8a2..8e1baf1261525cccc6b3b5af6a80c21d68550776 100644
(file)
--- 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;