2004-01-12 04:00:35 +01:00
|
|
|
/*
|
2005-06-05 11:16:00 +02:00
|
|
|
* Copyright (c) 2004-2005 The Regents of The University of Michigan
|
2004-01-12 04:00:35 +01:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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.
|
2006-06-01 01:26:56 +02:00
|
|
|
*
|
|
|
|
* Authors: Ali Saidi
|
|
|
|
* Lisa Hsu
|
|
|
|
* Nathan Binkert
|
|
|
|
* Steve Reinhardt
|
2004-01-12 04:00:35 +01:00
|
|
|
*/
|
|
|
|
|
2004-05-30 23:45:46 +02:00
|
|
|
/**
|
|
|
|
* @file
|
2004-07-31 06:55:05 +02:00
|
|
|
* This code loads the linux kernel, console, pal and patches certain
|
|
|
|
* functions. The symbol tables are loaded so that traces can show
|
|
|
|
* the executing function and we can skip functions. Various delay
|
|
|
|
* loops are skipped and their final values manually computed to speed
|
|
|
|
* up boot time.
|
2004-05-30 23:45:46 +02:00
|
|
|
*/
|
|
|
|
|
2006-03-05 02:45:01 +01:00
|
|
|
#include "arch/alpha/linux/system.hh"
|
|
|
|
#include "arch/alpha/linux/threadinfo.hh"
|
2011-04-15 19:44:06 +02:00
|
|
|
#include "arch/alpha/idle_event.hh"
|
2006-03-03 20:24:15 +01:00
|
|
|
#include "arch/alpha/system.hh"
|
2011-04-15 19:44:06 +02:00
|
|
|
#include "arch/vtophys.hh"
|
2004-11-16 02:30:51 +01:00
|
|
|
#include "base/loader/symtab.hh"
|
2005-06-05 02:50:10 +02:00
|
|
|
#include "cpu/base.hh"
|
2011-04-15 19:44:06 +02:00
|
|
|
#include "cpu/thread_context.hh"
|
2011-04-15 19:44:32 +02:00
|
|
|
#include "debug/Thread.hh"
|
2006-03-05 02:45:01 +01:00
|
|
|
#include "kern/linux/events.hh"
|
2011-04-15 19:44:06 +02:00
|
|
|
#include "kern/linux/printk.hh"
|
2006-04-06 06:51:46 +02:00
|
|
|
#include "mem/physical.hh"
|
|
|
|
#include "mem/port.hh"
|
2007-08-01 22:59:14 +02:00
|
|
|
#include "sim/arguments.hh"
|
2006-02-03 06:16:44 +01:00
|
|
|
#include "sim/byteswap.hh"
|
2004-01-12 04:00:35 +01:00
|
|
|
|
|
|
|
using namespace std;
|
2006-03-05 02:45:01 +01:00
|
|
|
using namespace AlphaISA;
|
|
|
|
using namespace Linux;
|
2004-01-12 04:00:35 +01:00
|
|
|
|
2006-03-05 02:45:01 +01:00
|
|
|
LinuxAlphaSystem::LinuxAlphaSystem(Params *p)
|
2006-03-03 20:24:15 +01:00
|
|
|
: AlphaSystem(p)
|
2004-01-12 04:00:35 +01:00
|
|
|
{
|
2012-01-17 19:55:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
LinuxAlphaSystem::initState()
|
|
|
|
{
|
|
|
|
// Moved from the constructor to here since it relies on the
|
|
|
|
// address map being resolved in the interconnect
|
|
|
|
|
|
|
|
// Call the initialisation of the super class
|
|
|
|
AlphaSystem::initState();
|
|
|
|
|
2004-01-12 04:00:35 +01:00
|
|
|
Addr addr = 0;
|
2005-08-23 17:47:12 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The symbol swapper_pg_dir marks the beginning of the kernel and
|
|
|
|
* the location of bootloader passed arguments
|
|
|
|
*/
|
|
|
|
if (!kernelSymtab->findAddress("swapper_pg_dir", KernelStart)) {
|
|
|
|
panic("Could not determine start location of kernel");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Since we aren't using a bootloader, we have to copy the
|
|
|
|
* kernel arguments directly into the kernel's memory.
|
|
|
|
*/
|
2012-02-24 17:45:30 +01:00
|
|
|
virtProxy.writeBlob(CommandLine(),
|
|
|
|
(uint8_t*)params()->boot_osflags.c_str(),
|
|
|
|
params()->boot_osflags.length()+1);
|
2004-02-22 02:31:08 +01:00
|
|
|
|
2004-05-30 23:45:46 +02:00
|
|
|
/**
|
2004-08-20 17:35:31 +02:00
|
|
|
* find the address of the est_cycle_freq variable and insert it
|
|
|
|
* so we don't through the lengthly process of trying to
|
|
|
|
* calculated it by using the PIT, RTC, etc.
|
2004-05-30 23:45:46 +02:00
|
|
|
*/
|
2006-04-06 06:51:46 +02:00
|
|
|
if (kernelSymtab->findAddress("est_cycle_freq", addr))
|
2012-02-24 17:45:30 +01:00
|
|
|
virtProxy.write(addr, (uint64_t)(SimClock::Frequency /
|
|
|
|
params()->boot_cpu_frequency));
|
2004-01-12 04:00:35 +01:00
|
|
|
|
2004-02-22 02:31:08 +01:00
|
|
|
|
2004-06-30 22:06:47 +02:00
|
|
|
/**
|
|
|
|
* EV5 only supports 127 ASNs so we are going to tell the kernel that the
|
|
|
|
* paritiuclar EV6 we have only supports 127 asns.
|
|
|
|
* @todo At some point we should change ev5.hh and the palcode to support
|
|
|
|
* 255 ASNs.
|
|
|
|
*/
|
2006-04-06 06:51:46 +02:00
|
|
|
if (kernelSymtab->findAddress("dp264_mv", addr))
|
2012-02-24 17:45:30 +01:00
|
|
|
virtProxy.write(addr + 0x18, LittleEndianGuest::htog((uint32_t)127));
|
2006-04-06 06:51:46 +02:00
|
|
|
else
|
2004-08-20 17:35:31 +02:00
|
|
|
panic("could not find dp264_mv\n");
|
2004-06-30 22:06:47 +02:00
|
|
|
|
2005-02-09 16:27:00 +01:00
|
|
|
#ifndef NDEBUG
|
2005-09-24 20:20:29 +02:00
|
|
|
kernelPanicEvent = addKernelFuncEvent<BreakPCEvent>("panic");
|
|
|
|
if (!kernelPanicEvent)
|
2004-01-12 04:00:35 +01:00
|
|
|
panic("could not find kernel symbol \'panic\'");
|
2005-09-24 20:20:29 +02:00
|
|
|
|
2005-04-28 23:24:04 +02:00
|
|
|
#if 0
|
2005-09-24 20:20:29 +02:00
|
|
|
kernelDieEvent = addKernelFuncEvent<BreakPCEvent>("die_if_kernel");
|
|
|
|
if (!kernelDieEvent)
|
2005-02-09 16:27:00 +01:00
|
|
|
panic("could not find kernel symbol \'die_if_kernel\'");
|
2005-04-28 23:24:04 +02:00
|
|
|
#endif
|
2005-02-09 16:27:00 +01:00
|
|
|
|
2004-05-12 04:42:45 +02:00
|
|
|
#endif
|
2004-01-12 04:00:35 +01:00
|
|
|
|
2004-05-30 23:45:46 +02:00
|
|
|
/**
|
2005-09-30 19:34:43 +02:00
|
|
|
* Any time ide_delay_50ms, calibarte_delay or
|
2004-08-20 17:35:31 +02:00
|
|
|
* determine_cpu_caches is called just skip the
|
|
|
|
* function. Currently determine_cpu_caches only is used put
|
|
|
|
* information in proc, however if that changes in the future we
|
|
|
|
* will have to fill in the cache size variables appropriately.
|
2004-05-30 23:45:46 +02:00
|
|
|
*/
|
2004-09-03 20:12:59 +02:00
|
|
|
|
2005-09-24 20:20:29 +02:00
|
|
|
skipIdeDelay50msEvent =
|
|
|
|
addKernelFuncEvent<SkipFuncEvent>("ide_delay_50ms");
|
|
|
|
skipDelayLoopEvent =
|
|
|
|
addKernelFuncEvent<SkipDelayLoopEvent>("calibrate_delay");
|
|
|
|
skipCacheProbeEvent =
|
|
|
|
addKernelFuncEvent<SkipFuncEvent>("determine_cpu_caches");
|
|
|
|
debugPrintkEvent = addKernelFuncEvent<DebugPrintkEvent>("dprintk");
|
|
|
|
idleStartEvent = addKernelFuncEvent<IdleStartEvent>("cpu_idle");
|
|
|
|
|
2007-07-14 21:22:04 +02:00
|
|
|
// Disable for now as it runs into panic() calls in VPTr methods
|
|
|
|
// (see sim/vptr.hh). Once those bugs are fixed, we can
|
|
|
|
// re-enable, but we should find a better way to turn it on than
|
|
|
|
// using DTRACE(Thread), since looking at a trace flag at tick 0
|
|
|
|
// leads to non-intuitive behavior with --trace-start.
|
|
|
|
if (false && kernelSymtab->findAddress("alpha_switch_to", addr)) {
|
2005-09-24 20:20:29 +02:00
|
|
|
printThreadEvent = new PrintThreadInfo(&pcEventQueue, "threadinfo",
|
|
|
|
addr + sizeof(MachInst) * 6);
|
|
|
|
} else {
|
|
|
|
printThreadEvent = NULL;
|
|
|
|
}
|
2004-01-12 04:00:35 +01:00
|
|
|
}
|
|
|
|
|
2006-03-05 02:45:01 +01:00
|
|
|
LinuxAlphaSystem::~LinuxAlphaSystem()
|
2004-01-12 04:00:35 +01:00
|
|
|
{
|
2005-02-09 16:27:00 +01:00
|
|
|
#ifndef NDEBUG
|
2004-01-12 04:00:35 +01:00
|
|
|
delete kernelPanicEvent;
|
2004-08-20 17:35:31 +02:00
|
|
|
#endif
|
2004-05-18 19:53:11 +02:00
|
|
|
delete skipIdeDelay50msEvent;
|
|
|
|
delete skipDelayLoopEvent;
|
|
|
|
delete skipCacheProbeEvent;
|
2004-08-20 17:35:31 +02:00
|
|
|
delete debugPrintkEvent;
|
|
|
|
delete idleStartEvent;
|
2004-09-03 20:12:59 +02:00
|
|
|
delete printThreadEvent;
|
2004-01-12 04:00:35 +01:00
|
|
|
}
|
|
|
|
|
2004-02-06 00:23:16 +01:00
|
|
|
void
|
2006-06-06 23:32:21 +02:00
|
|
|
LinuxAlphaSystem::setDelayLoop(ThreadContext *tc)
|
2004-02-06 00:23:16 +01:00
|
|
|
{
|
|
|
|
Addr addr = 0;
|
|
|
|
if (kernelSymtab->findAddress("loops_per_jiffy", addr)) {
|
2006-06-06 23:32:21 +02:00
|
|
|
Tick cpuFreq = tc->getCpuPtr()->frequency();
|
2011-09-30 09:29:07 +02:00
|
|
|
assert(intrFreq);
|
2012-02-24 17:45:30 +01:00
|
|
|
FSTranslatingPortProxy &vp = tc->getVirtProxy();
|
|
|
|
vp.writeHtoG(addr, (uint32_t)((cpuFreq / intrFreq) * 0.9988));
|
2004-02-06 00:23:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-24 20:20:29 +02:00
|
|
|
void
|
2006-06-06 23:32:21 +02:00
|
|
|
LinuxAlphaSystem::SkipDelayLoopEvent::process(ThreadContext *tc)
|
2005-09-24 20:20:29 +02:00
|
|
|
{
|
2006-06-06 23:32:21 +02:00
|
|
|
SkipFuncEvent::process(tc);
|
2005-09-24 20:20:29 +02:00
|
|
|
// calculate and set loops_per_jiffy
|
2006-06-06 23:32:21 +02:00
|
|
|
((LinuxAlphaSystem *)tc->getSystemPtr())->setDelayLoop(tc);
|
2005-09-24 20:20:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-06-06 23:32:21 +02:00
|
|
|
LinuxAlphaSystem::PrintThreadInfo::process(ThreadContext *tc)
|
2005-09-24 20:20:29 +02:00
|
|
|
{
|
2006-06-06 23:32:21 +02:00
|
|
|
Linux::ThreadInfo ti(tc);
|
2005-09-24 20:20:29 +02:00
|
|
|
|
|
|
|
DPRINTF(Thread, "Currently Executing Thread %s, pid %d, started at: %d\n",
|
|
|
|
ti.curTaskName(), ti.curTaskPID(), ti.curTaskStart());
|
|
|
|
}
|
|
|
|
|
2007-07-24 06:51:38 +02:00
|
|
|
LinuxAlphaSystem *
|
|
|
|
LinuxAlphaSystemParams::create()
|
2004-01-12 04:00:35 +01:00
|
|
|
{
|
2007-07-24 06:51:38 +02:00
|
|
|
return new LinuxAlphaSystem(this);
|
2004-01-12 04:00:35 +01:00
|
|
|
}
|