| /* |
| * Copyright (c) 2015 Ruslan Bukin <br@bsdpad.com> |
| * All rights reserved. |
| * |
| * This software was developed by the University of Cambridge Computer |
| * Laboratory as part of the CTSRD Project, with support from the UK Higher |
| * Education Innovation Fund (HEIF). |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions are |
| * met: redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer; |
| * redistributions in binary form must reproduce the above copyright |
| * notice, this list of conditions and the following disclaimer in the |
| * documentation and/or other materials provided with the distribution; |
| * neither the name of the copyright holders nor the names of its |
| * contributors may be used to endorse or promote products derived from |
| * this software without specific prior written permission. |
| * |
| * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #include "arch/arm/freebsd/fs_workload.hh" |
| |
| #include "arch/arm/isa_traits.hh" |
| #include "arch/arm/utility.hh" |
| #include "arch/generic/freebsd/threadinfo.hh" |
| #include "base/loader/dtb_file.hh" |
| #include "base/loader/object_file.hh" |
| #include "base/loader/symtab.hh" |
| #include "cpu/base.hh" |
| #include "cpu/pc_event.hh" |
| #include "cpu/thread_context.hh" |
| #include "debug/Loader.hh" |
| #include "kern/freebsd/events.hh" |
| #include "mem/physical.hh" |
| #include "sim/stat_control.hh" |
| |
| using namespace FreeBSD; |
| |
| namespace ArmISA |
| { |
| |
| FsFreebsd::FsFreebsd(Params *p) : ArmISA::FsWorkload(p), |
| enableContextSwitchStatsDump(p->enable_context_switch_stats_dump) |
| { |
| if (p->panic_on_panic) { |
| kernelPanic = addKernelFuncEventOrPanic<PanicPCEvent>( |
| "panic", "Kernel panic in simulated kernel"); |
| } else { |
| #ifndef NDEBUG |
| kernelPanic = addKernelFuncEventOrPanic<BreakPCEvent>("panic"); |
| #endif |
| } |
| |
| if (p->panic_on_oops) { |
| kernelOops = addKernelFuncEventOrPanic<PanicPCEvent>( |
| "oops_exit", "Kernel oops in guest"); |
| } |
| |
| skipUDelay = addKernelFuncEvent<SkipUDelay<ArmISA::SkipFunc>>( |
| "DELAY", "DELAY", 1000, 0); |
| } |
| |
| void |
| FsFreebsd::initState() |
| { |
| ArmISA::FsWorkload::initState(); |
| |
| // Load symbols at physical address, we might not want |
| // to do this permanently, for but early bootup work |
| // it is helpful. |
| if (params()->early_kernel_symbols) { |
| kernelObj->loadGlobalSymbols(kernelSymtab, 0, 0, _loadAddrMask); |
| kernelObj->loadGlobalSymbols( |
| Loader::debugSymbolTable, 0, 0, _loadAddrMask); |
| } |
| |
| // Check if the kernel image has a symbol that tells us it supports |
| // device trees. |
| Addr addr; |
| fatal_if(!kernelSymtab->findAddress("fdt_get_range", addr), |
| "Kernel must have fdt support."); |
| fatal_if(params()->dtb_filename == "", "dtb file is not specified."); |
| |
| // Kernel supports flattened device tree and dtb file specified. |
| // Using Device Tree Blob to describe system configuration. |
| inform("Loading DTB file: %s at address %#x\n", params()->dtb_filename, |
| params()->atags_addr + _loadAddrOffset); |
| |
| auto *dtb_file = new ::Loader::DtbFile(params()->dtb_filename); |
| |
| warn_if(!dtb_file->addBootCmdLine(commandLine.c_str(), commandLine.size()), |
| "Couldn't append bootargs to DTB file: %s", |
| params()->dtb_filename); |
| |
| Addr ra = dtb_file->findReleaseAddr(); |
| if (ra) |
| bootReleaseAddr = ra & ~ULL(0x7F); |
| |
| dtb_file->buildImage(). |
| offset(params()->atags_addr + _loadAddrOffset). |
| write(system->physProxy); |
| delete dtb_file; |
| |
| // Kernel boot requirements to set up r0, r1 and r2 in ARMv7 |
| for (auto tc: system->threadContexts) { |
| tc->setIntReg(0, 0); |
| tc->setIntReg(1, params()->machine_type); |
| tc->setIntReg(2, params()->atags_addr + _loadAddrOffset); |
| } |
| } |
| |
| FsFreebsd::~FsFreebsd() |
| { |
| delete skipUDelay; |
| } |
| |
| } // namespace ArmISA |
| |
| ArmISA::FsFreebsd * |
| ArmFsFreebsdParams::create() |
| { |
| return new ArmISA::FsFreebsd(this); |
| } |