diff -r 3bb0c0ed610a -r c1da49ccac86 src/arch/arm/faults.hh --- a/src/arch/arm/faults.hh Mon Dec 06 15:49:33 2010 -0800 +++ b/src/arch/arm/faults.hh Mon Dec 06 15:51:26 2010 -0800 @@ -92,7 +92,8 @@ // to allow the translation function to inform // the memory access function not to proceed // for a Prefetch that misses in the TLB. - PrefetchTLBMiss + PrefetchTLBMiss = 0x1f, + PrefetchUncacheable = 0x20 }; struct FaultVals diff -r 3bb0c0ed610a -r c1da49ccac86 src/arch/arm/tlb.cc --- a/src/arch/arm/tlb.cc Mon Dec 06 15:49:33 2010 -0800 +++ b/src/arch/arm/tlb.cc Mon Dec 06 15:51:26 2010 -0800 @@ -556,9 +556,15 @@ outerAttrs: %d\n", te->shareable, te->innerAttrs, te->outerAttrs); setAttr(te->attributes); - if (te->nonCacheable) + if (te->nonCacheable) { req->setFlags(Request::UNCACHEABLE); + // Prevent prefetching from I/O devices. + if (req->isPrefetch()) { + return new PrefetchAbort(vaddr, ArmFault::PrefetchUncacheable); + } + } + switch ( (dacr >> (te->domain * 2)) & 0x3) { case 0: domainFaults++; diff -r 3bb0c0ed610a -r c1da49ccac86 src/cpu/o3/iew_impl.hh --- a/src/cpu/o3/iew_impl.hh Mon Dec 06 15:49:33 2010 -0800 +++ b/src/cpu/o3/iew_impl.hh Mon Dec 06 15:51:26 2010 -0800 @@ -1222,8 +1222,7 @@ // Execute instruction. // Note that if the instruction faults, it will be handled // at the commit stage. - if (inst->isMemRef() && - (!inst->isDataPrefetch() && !inst->isInstPrefetch())) { + if (inst->isMemRef()) { DPRINTF(IEW, "Execute: Calculating address for memory " "reference.\n"); @@ -1232,6 +1231,9 @@ // Loads will mark themselves as executed, and their writeback // event adds the instruction to the queue to commit fault = ldstQueue.executeLoad(inst); + if (inst->isDataPrefetch() || inst->isInstPrefetch()) { + fault = NoFault; + } } else if (inst->isStore()) { fault = ldstQueue.executeStore(inst);