system.cc revision 8775
110448Snilay@cs.wisc.edu/*
210448Snilay@cs.wisc.edu * Copyright (c) 2004-2006 The Regents of The University of Michigan
310448Snilay@cs.wisc.edu * All rights reserved.
410448Snilay@cs.wisc.edu *
510448Snilay@cs.wisc.edu * Redistribution and use in source and binary forms, with or without
610448Snilay@cs.wisc.edu * modification, are permitted provided that the following conditions are
710448Snilay@cs.wisc.edu * met: redistributions of source code must retain the above copyright
810448Snilay@cs.wisc.edu * notice, this list of conditions and the following disclaimer;
910448Snilay@cs.wisc.edu * redistributions in binary form must reproduce the above copyright
1010448Snilay@cs.wisc.edu * notice, this list of conditions and the following disclaimer in the
1110448Snilay@cs.wisc.edu * documentation and/or other materials provided with the distribution;
1210448Snilay@cs.wisc.edu * neither the name of the copyright holders nor the names of its
1310448Snilay@cs.wisc.edu * contributors may be used to endorse or promote products derived from
1410448Snilay@cs.wisc.edu * this software without specific prior written permission.
1510448Snilay@cs.wisc.edu *
1610448Snilay@cs.wisc.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1710448Snilay@cs.wisc.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1810448Snilay@cs.wisc.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1910448Snilay@cs.wisc.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2010448Snilay@cs.wisc.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2110448Snilay@cs.wisc.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2210447Snilay@cs.wisc.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2310447Snilay@cs.wisc.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2410447Snilay@cs.wisc.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2510447Snilay@cs.wisc.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2610447Snilay@cs.wisc.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2710447Snilay@cs.wisc.edu *
2810447Snilay@cs.wisc.edu * Authors: Ali Saidi
2910447Snilay@cs.wisc.edu *          Lisa Hsu
3010447Snilay@cs.wisc.edu *          Nathan Binkert
3110447Snilay@cs.wisc.edu */
3210447Snilay@cs.wisc.edu
3310447Snilay@cs.wisc.edu/**
3410447Snilay@cs.wisc.edu * @file
3510447Snilay@cs.wisc.edu * This code loads the linux kernel, console, pal and patches certain
3610447Snilay@cs.wisc.edu * functions.  The symbol tables are loaded so that traces can show
3710447Snilay@cs.wisc.edu * the executing function and we can skip functions. Various delay
3810447Snilay@cs.wisc.edu * loops are skipped and their final values manually computed to speed
3910447Snilay@cs.wisc.edu * up boot time.
4010447Snilay@cs.wisc.edu */
4110447Snilay@cs.wisc.edu
42#include "arch/mips/linux/system.hh"
43#include "arch/mips/linux/threadinfo.hh"
44#include "arch/mips/idle_event.hh"
45#include "arch/mips/system.hh"
46#include "arch/vtophys.hh"
47#include "base/loader/symtab.hh"
48#include "cpu/base.hh"
49#include "cpu/thread_context.hh"
50#include "debug/Thread.hh"
51#include "dev/platform.hh"
52#include "kern/linux/events.hh"
53#include "kern/linux/printk.hh"
54#include "mem/physical.hh"
55#include "mem/port.hh"
56#include "sim/arguments.hh"
57#include "sim/byteswap.hh"
58
59using namespace std;
60using namespace MipsISA;
61using namespace Linux;
62
63LinuxMipsSystem::LinuxMipsSystem(Params *p)
64    : MipsSystem(p)
65{
66    Addr addr = 0;
67
68    /**
69     * The symbol swapper_pg_dir marks the beginning of the kernel and
70     * the location of bootloader passed arguments
71     */
72    if (!kernelSymtab->findAddress("swapper_pg_dir", KernelStart)) {
73        panic("Could not determine start location of kernel");
74    }
75
76    /**
77     * Since we aren't using a bootloader, we have to copy the
78     * kernel arguments directly into the kernel's memory.
79     */
80    virtPort->writeBlob(CommandLine(), (uint8_t*)params()->boot_osflags.c_str(),
81                params()->boot_osflags.length()+1);
82
83    /**
84     * find the address of the est_cycle_freq variable and insert it
85     * so we don't through the lengthly process of trying to
86     * calculated it by using the PIT, RTC, etc.
87     */
88    if (kernelSymtab->findAddress("est_cycle_freq", addr))
89        virtPort->write(addr, (uint64_t)(SimClock::Frequency /
90                    p->boot_cpu_frequency));
91
92    /**
93     * EV5 only supports 127 ASNs so we are going to tell the kernel that the
94     * paritiuclar EV6 we have only supports 127 asns.
95     * @todo At some point we should change ev5.hh and the palcode to support
96     * 255 ASNs.
97     */
98    if (kernelSymtab->findAddress("dp264_mv", addr))
99        virtPort->write(addr + 0x18, LittleEndianGuest::htog((uint32_t)127));
100    else
101        panic("could not find dp264_mv\n");
102
103#ifndef NDEBUG
104    kernelPanicEvent = addKernelFuncEvent<BreakPCEvent>("panic");
105    if (!kernelPanicEvent)
106        panic("could not find kernel symbol \'panic\'");
107
108#endif
109
110    /**
111     * Any time ide_delay_50ms, calibarte_delay or
112     * determine_cpu_caches is called just skip the
113     * function. Currently determine_cpu_caches only is used put
114     * information in proc, however if that changes in the future we
115     * will have to fill in the cache size variables appropriately.
116     */
117
118    skipIdeDelay50msEvent =
119        addKernelFuncEvent<SkipFuncEvent>("ide_delay_50ms");
120    skipDelayLoopEvent =
121        addKernelFuncEvent<SkipDelayLoopEvent>("calibrate_delay");
122    skipCacheProbeEvent =
123        addKernelFuncEvent<SkipFuncEvent>("determine_cpu_caches");
124    debugPrintkEvent = addKernelFuncEvent<DebugPrintkEvent>("dprintk");
125    idleStartEvent = addKernelFuncEvent<IdleStartEvent>("cpu_idle");
126
127    // Disable for now as it runs into panic() calls in VPTr methods
128    // (see sim/vptr.hh).  Once those bugs are fixed, we can
129    // re-enable, but we should find a better way to turn it on than
130    // using DTRACE(Thread), since looking at a trace flag at tick 0
131    // leads to non-intuitive behavior with --trace-start.
132    if (false && kernelSymtab->findAddress("mips_switch_to", addr)) {
133        printThreadEvent = new PrintThreadInfo(&pcEventQueue, "threadinfo",
134                                               addr + sizeof(MachInst) * 6);
135    } else {
136        printThreadEvent = NULL;
137    }
138}
139
140LinuxMipsSystem::~LinuxMipsSystem()
141{
142#ifndef NDEBUG
143    delete kernelPanicEvent;
144#endif
145    delete skipIdeDelay50msEvent;
146    delete skipDelayLoopEvent;
147    delete skipCacheProbeEvent;
148    delete debugPrintkEvent;
149    delete idleStartEvent;
150    delete printThreadEvent;
151}
152
153
154void
155LinuxMipsSystem::setDelayLoop(ThreadContext *tc)
156{
157    panic("setDelayLoop not implemented.\n");
158}
159
160
161void
162LinuxMipsSystem::SkipDelayLoopEvent::process(ThreadContext *tc)
163{
164    SkipFuncEvent::process(tc);
165    // calculate and set loops_per_jiffy
166    ((LinuxMipsSystem *)tc->getSystemPtr())->setDelayLoop(tc);
167}
168
169void
170LinuxMipsSystem::PrintThreadInfo::process(ThreadContext *tc)
171{
172    Linux::ThreadInfo ti(tc);
173
174    DPRINTF(Thread, "Currently Executing Thread %s, pid %d, started at: %d\n",
175            ti.curTaskName(), ti.curTaskPID(), ti.curTaskStart());
176}
177
178LinuxMipsSystem *
179LinuxMipsSystemParams::create()
180{
181    return new LinuxMipsSystem(this);
182}
183