diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2015-05-05 03:22:30 -0400 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2015-05-05 03:22:30 -0400 |
commit | 23b9792681d4cd794b0ad74138160a37b8bdac8f (patch) | |
tree | dd849032f615ec6a5ff43a6a2e93393d8f6fd5f7 /src/arch/arm/freebsd/system.cc | |
parent | 36f29496a019af4483430f17c4a6028b8dcfb2cf (diff) | |
download | gem5-23b9792681d4cd794b0ad74138160a37b8bdac8f.tar.xz |
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.
Diffstat (limited to 'src/arch/arm/freebsd/system.cc')
-rw-r--r-- | src/arch/arm/freebsd/system.cc | 10 |
1 files changed, 1 insertions, 9 deletions
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<PanicPCEvent>( @@ -74,13 +73,6 @@ FreebsdArmSystem::FreebsdArmSystem(Params *p) "DELAY", "DELAY", 1000, 0); } -bool -FreebsdArmSystem::adderBootUncacheable(Addr a) -{ - - return false; -} - void FreebsdArmSystem::initState() { |