From 23b9792681d4cd794b0ad74138160a37b8bdac8f Mon Sep 17 00:00:00 2001 From: Andreas Hansson Date: Tue, 5 May 2015 03:22:30 -0400 Subject: arm: Remove unnecessary boot uncachability With the recent patches addressing how we deal with uncacheable accesses there is no longer need for the work arounds put in place to enforce certain sections of memory to be uncacheable during boot. --- src/arch/arm/freebsd/system.cc | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'src/arch/arm/freebsd/system.cc') diff --git a/src/arch/arm/freebsd/system.cc b/src/arch/arm/freebsd/system.cc index 95e712e7a..d6f3e4e9a 100644 --- a/src/arch/arm/freebsd/system.cc +++ b/src/arch/arm/freebsd/system.cc @@ -53,8 +53,7 @@ using namespace FreeBSD; FreebsdArmSystem::FreebsdArmSystem(Params *p) : GenericArmSystem(p), dumpStatsPCEventF(nullptr), enableContextSwitchStatsDump(p->enable_context_switch_stats_dump), - taskFile(nullptr), kernelPanicEvent(nullptr), kernelOopsEvent(nullptr), - bootReleaseAddr(p->boot_release_addr) + taskFile(nullptr), kernelPanicEvent(nullptr), kernelOopsEvent(nullptr) { if (p->panic_on_panic) { kernelPanicEvent = addKernelFuncEventOrPanic( @@ -74,13 +73,6 @@ FreebsdArmSystem::FreebsdArmSystem(Params *p) "DELAY", "DELAY", 1000, 0); } -bool -FreebsdArmSystem::adderBootUncacheable(Addr a) -{ - - return false; -} - void FreebsdArmSystem::initState() { -- cgit v1.2.3