system.cc revision 3549:91fdf097156a
1/*
2 * Copyright (c) 2004-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Ali Saidi
29 *          Lisa Hsu
30 *          Nathan Binkert
31 *          Steve Reinhardt
32 */
33
34/**
35 * @file
36 * This code loads the linux kernel, console, pal and patches certain
37 * functions.  The symbol tables are loaded so that traces can show
38 * the executing function and we can skip functions. Various delay
39 * loops are skipped and their final values manually computed to speed
40 * up boot time.
41 */
42
43#include "arch/arguments.hh"
44#include "arch/vtophys.hh"
45#include "arch/alpha/linux/system.hh"
46#include "arch/alpha/linux/threadinfo.hh"
47#include "arch/alpha/system.hh"
48#include "base/loader/symtab.hh"
49#include "cpu/thread_context.hh"
50#include "cpu/base.hh"
51#include "dev/platform.hh"
52#include "kern/alpha/idle_event.hh"
53#include "kern/linux/printk.hh"
54#include "kern/linux/events.hh"
55#include "mem/physical.hh"
56#include "mem/port.hh"
57#include "sim/builder.hh"
58#include "sim/byteswap.hh"
59
60using namespace std;
61using namespace AlphaISA;
62using namespace Linux;
63
64LinuxAlphaSystem::LinuxAlphaSystem(Params *p)
65    : AlphaSystem(p)
66{
67    Addr addr = 0;
68
69    /**
70     * The symbol swapper_pg_dir marks the beginning of the kernel and
71     * the location of bootloader passed arguments
72     */
73    if (!kernelSymtab->findAddress("swapper_pg_dir", KernelStart)) {
74        panic("Could not determine start location of kernel");
75    }
76
77    /**
78     * Since we aren't using a bootloader, we have to copy the
79     * kernel arguments directly into the kernel's memory.
80     */
81    virtPort.writeBlob(CommandLine(), (uint8_t*)params()->boot_osflags.c_str(),
82                params()->boot_osflags.length()+1);
83
84    /**
85     * find the address of the est_cycle_freq variable and insert it
86     * so we don't through the lengthly process of trying to
87     * calculated it by using the PIT, RTC, etc.
88     */
89    if (kernelSymtab->findAddress("est_cycle_freq", addr))
90        virtPort.write(addr, (uint64_t)(Clock::Frequency /
91                    p->boot_cpu_frequency));
92
93
94    /**
95     * EV5 only supports 127 ASNs so we are going to tell the kernel that the
96     * paritiuclar EV6 we have only supports 127 asns.
97     * @todo At some point we should change ev5.hh and the palcode to support
98     * 255 ASNs.
99     */
100    if (kernelSymtab->findAddress("dp264_mv", addr))
101        virtPort.write(addr + 0x18, LittleEndianGuest::htog((uint32_t)127));
102    else
103        panic("could not find dp264_mv\n");
104
105#ifndef NDEBUG
106    kernelPanicEvent = addKernelFuncEvent<BreakPCEvent>("panic");
107    if (!kernelPanicEvent)
108        panic("could not find kernel symbol \'panic\'");
109
110#if 0
111    kernelDieEvent = addKernelFuncEvent<BreakPCEvent>("die_if_kernel");
112    if (!kernelDieEvent)
113        panic("could not find kernel symbol \'die_if_kernel\'");
114#endif
115
116#endif
117
118    /**
119     * Any time ide_delay_50ms, calibarte_delay or
120     * determine_cpu_caches is called just skip the
121     * function. Currently determine_cpu_caches only is used put
122     * information in proc, however if that changes in the future we
123     * will have to fill in the cache size variables appropriately.
124     */
125
126    skipIdeDelay50msEvent =
127        addKernelFuncEvent<SkipFuncEvent>("ide_delay_50ms");
128    skipDelayLoopEvent =
129        addKernelFuncEvent<SkipDelayLoopEvent>("calibrate_delay");
130    skipCacheProbeEvent =
131        addKernelFuncEvent<SkipFuncEvent>("determine_cpu_caches");
132    debugPrintkEvent = addKernelFuncEvent<DebugPrintkEvent>("dprintk");
133    idleStartEvent = addKernelFuncEvent<IdleStartEvent>("cpu_idle");
134
135    if (kernelSymtab->findAddress("alpha_switch_to", addr) && DTRACE(Thread)) {
136        printThreadEvent = new PrintThreadInfo(&pcEventQueue, "threadinfo",
137                                               addr + sizeof(MachInst) * 6);
138    } else {
139        printThreadEvent = NULL;
140    }
141}
142
143LinuxAlphaSystem::~LinuxAlphaSystem()
144{
145#ifndef NDEBUG
146    delete kernelPanicEvent;
147#endif
148    delete skipIdeDelay50msEvent;
149    delete skipDelayLoopEvent;
150    delete skipCacheProbeEvent;
151    delete debugPrintkEvent;
152    delete idleStartEvent;
153    delete printThreadEvent;
154}
155
156
157void
158LinuxAlphaSystem::setDelayLoop(ThreadContext *tc)
159{
160    Addr addr = 0;
161    if (kernelSymtab->findAddress("loops_per_jiffy", addr)) {
162        Tick cpuFreq = tc->getCpuPtr()->frequency();
163        Tick intrFreq = platform->intrFrequency();
164        VirtualPort *vp;
165
166        vp = tc->getVirtPort();
167        vp->writeHtoG(addr, (uint32_t)((cpuFreq / intrFreq) * 0.9988));
168        tc->delVirtPort(vp);
169    }
170}
171
172
173void
174LinuxAlphaSystem::SkipDelayLoopEvent::process(ThreadContext *tc)
175{
176    SkipFuncEvent::process(tc);
177    // calculate and set loops_per_jiffy
178    ((LinuxAlphaSystem *)tc->getSystemPtr())->setDelayLoop(tc);
179}
180
181void
182LinuxAlphaSystem::PrintThreadInfo::process(ThreadContext *tc)
183{
184    Linux::ThreadInfo ti(tc);
185
186    DPRINTF(Thread, "Currently Executing Thread %s, pid %d, started at: %d\n",
187            ti.curTaskName(), ti.curTaskPID(), ti.curTaskStart());
188}
189
190
191BEGIN_DECLARE_SIM_OBJECT_PARAMS(LinuxAlphaSystem)
192
193    Param<Tick> boot_cpu_frequency;
194    SimObjectParam<PhysicalMemory *> physmem;
195    SimpleEnumParam<System::MemoryMode> mem_mode;
196
197    Param<string> kernel;
198    Param<string> console;
199    Param<string> pal;
200
201    Param<string> boot_osflags;
202    Param<string> readfile;
203    Param<string> symbolfile;
204    Param<unsigned int> init_param;
205
206    Param<uint64_t> system_type;
207    Param<uint64_t> system_rev;
208
209END_DECLARE_SIM_OBJECT_PARAMS(LinuxAlphaSystem)
210
211BEGIN_INIT_SIM_OBJECT_PARAMS(LinuxAlphaSystem)
212
213    INIT_PARAM(boot_cpu_frequency, "Frequency of the boot CPU"),
214    INIT_PARAM(physmem, "phsyical memory"),
215    INIT_ENUM_PARAM(mem_mode, "Memory Mode, (1=atomic, 2=timing)",
216            System::MemoryModeStrings),
217    INIT_PARAM(kernel, "file that contains the kernel code"),
218    INIT_PARAM(console, "file that contains the console code"),
219    INIT_PARAM(pal, "file that contains palcode"),
220    INIT_PARAM_DFLT(boot_osflags, "flags to pass to the kernel during boot",
221                    "a"),
222    INIT_PARAM_DFLT(readfile, "file to read startup script from", ""),
223    INIT_PARAM_DFLT(symbolfile, "file to read symbols from", ""),
224    INIT_PARAM_DFLT(init_param, "numerical value to pass into simulator", 0),
225    INIT_PARAM_DFLT(system_type, "Type of system we are emulating", 34),
226    INIT_PARAM_DFLT(system_rev, "Revision of system we are emulating", 1<<10)
227
228END_INIT_SIM_OBJECT_PARAMS(LinuxAlphaSystem)
229
230CREATE_SIM_OBJECT(LinuxAlphaSystem)
231{
232    AlphaSystem::Params *p = new AlphaSystem::Params;
233    p->name = getInstanceName();
234    p->boot_cpu_frequency = boot_cpu_frequency;
235    p->physmem = physmem;
236    p->mem_mode = mem_mode;
237    p->kernel_path = kernel;
238    p->console_path = console;
239    p->palcode = pal;
240    p->boot_osflags = boot_osflags;
241    p->init_param = init_param;
242    p->readfile = readfile;
243    p->symbolfile = symbolfile;
244    p->system_type = system_type;
245    p->system_rev = system_rev;
246    return new LinuxAlphaSystem(p);
247}
248
249REGISTER_SIM_OBJECT("LinuxAlphaSystem", LinuxAlphaSystem)
250
251