system.cc revision 2358
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
29/**
30 * @file
31 * This code loads the linux kernel, console, pal and patches certain
32 * functions.  The symbol tables are loaded so that traces can show
33 * the executing function and we can skip functions. Various delay
34 * loops are skipped and their final values manually computed to speed
35 * up boot time.
36 */
37
38#include "arch/arguments.hh"
39#include "arch/vtophys.hh"
40#include "arch/alpha/linux/system.hh"
41#include "arch/alpha/linux/threadinfo.hh"
42#include "arch/alpha/system.hh"
43#include "base/loader/symtab.hh"
44#include "cpu/exec_context.hh"
45#include "cpu/base.hh"
46#include "dev/platform.hh"
47#include "kern/linux/printk.hh"
48#include "kern/linux/events.hh"
49#include "mem/functional/memory_control.hh"
50#include "mem/functional/physical.hh"
51#include "sim/builder.hh"
52#include "sim/byteswap.hh"
53
54using namespace std;
55using namespace AlphaISA;
56using namespace Linux;
57
58LinuxAlphaSystem::LinuxAlphaSystem(Params *p)
59    : AlphaSystem(p)
60{
61    Addr addr = 0;
62    Addr paddr = 0;
63
64    /**
65     * The symbol swapper_pg_dir marks the beginning of the kernel and
66     * the location of bootloader passed arguments
67     */
68    if (!kernelSymtab->findAddress("swapper_pg_dir", KernelStart)) {
69        panic("Could not determine start location of kernel");
70    }
71
72    /**
73     * Since we aren't using a bootloader, we have to copy the
74     * kernel arguments directly into the kernel's memory.
75     */
76    paddr = vtophys(physmem, CommandLine());
77    char *commandline = (char *)physmem->dma_addr(paddr, sizeof(uint64_t));
78    if (commandline)
79        strncpy(commandline, params()->boot_osflags.c_str(), CommandLineSize);
80
81    /**
82     * find the address of the est_cycle_freq variable and insert it
83     * so we don't through the lengthly process of trying to
84     * calculated it by using the PIT, RTC, etc.
85     */
86    if (kernelSymtab->findAddress("est_cycle_freq", addr)) {
87        paddr = vtophys(physmem, addr);
88        uint8_t *est_cycle_frequency =
89            physmem->dma_addr(paddr, sizeof(uint64_t));
90
91        if (est_cycle_frequency)
92            *(uint64_t *)est_cycle_frequency =
93                Clock::Frequency / p->boot_cpu_frequency;
94    }
95
96
97    /**
98     * EV5 only supports 127 ASNs so we are going to tell the kernel that the
99     * paritiuclar EV6 we have only supports 127 asns.
100     * @todo At some point we should change ev5.hh and the palcode to support
101     * 255 ASNs.
102     */
103    if (kernelSymtab->findAddress("dp264_mv", addr)) {
104        paddr = vtophys(physmem, addr);
105        char *dp264_mv = (char *)physmem->dma_addr(paddr, sizeof(uint64_t));
106
107        if (dp264_mv) {
108            *(uint32_t*)(dp264_mv+0x18) = LittleEndianGuest::htog((uint32_t)127);
109        } else
110            panic("could not translate dp264_mv addr\n");
111
112    } else
113        panic("could not find dp264_mv\n");
114
115#ifndef NDEBUG
116    kernelPanicEvent = addKernelFuncEvent<BreakPCEvent>("panic");
117    if (!kernelPanicEvent)
118        panic("could not find kernel symbol \'panic\'");
119
120#if 0
121    kernelDieEvent = addKernelFuncEvent<BreakPCEvent>("die_if_kernel");
122    if (!kernelDieEvent)
123        panic("could not find kernel symbol \'die_if_kernel\'");
124#endif
125
126#endif
127
128    /**
129     * Any time ide_delay_50ms, calibarte_delay or
130     * determine_cpu_caches is called just skip the
131     * function. Currently determine_cpu_caches only is used put
132     * information in proc, however if that changes in the future we
133     * will have to fill in the cache size variables appropriately.
134     */
135
136    skipIdeDelay50msEvent =
137        addKernelFuncEvent<SkipFuncEvent>("ide_delay_50ms");
138    skipDelayLoopEvent =
139        addKernelFuncEvent<SkipDelayLoopEvent>("calibrate_delay");
140    skipCacheProbeEvent =
141        addKernelFuncEvent<SkipFuncEvent>("determine_cpu_caches");
142    debugPrintkEvent = addKernelFuncEvent<DebugPrintkEvent>("dprintk");
143    idleStartEvent = addKernelFuncEvent<IdleStartEvent>("cpu_idle");
144
145    if (kernelSymtab->findAddress("alpha_switch_to", addr) && DTRACE(Thread)) {
146        printThreadEvent = new PrintThreadInfo(&pcEventQueue, "threadinfo",
147                                               addr + sizeof(MachInst) * 6);
148    } else {
149        printThreadEvent = NULL;
150    }
151
152    if (params()->bin_int) {
153        intStartEvent = addPalFuncEvent<InterruptStartEvent>("sys_int_21");
154        if (!intStartEvent)
155            panic("could not find symbol: sys_int_21\n");
156
157        intEndEvent = addPalFuncEvent<InterruptEndEvent>("rti_to_kern");
158        if (!intEndEvent)
159            panic("could not find symbol: rti_to_kern\n");
160
161        intEndEvent2 = addPalFuncEvent<InterruptEndEvent>("rti_to_user");
162        if (!intEndEvent2)
163            panic("could not find symbol: rti_to_user\n");
164
165        intEndEvent3 = addKernelFuncEvent<InterruptEndEvent>("do_softirq");
166        if (!intEndEvent3)
167            panic("could not find symbol: do_softirq\n");
168    }
169}
170
171LinuxAlphaSystem::~LinuxAlphaSystem()
172{
173#ifndef NDEBUG
174    delete kernelPanicEvent;
175#endif
176    delete skipIdeDelay50msEvent;
177    delete skipDelayLoopEvent;
178    delete skipCacheProbeEvent;
179    delete debugPrintkEvent;
180    delete idleStartEvent;
181    delete printThreadEvent;
182    delete intStartEvent;
183    delete intEndEvent;
184    delete intEndEvent2;
185}
186
187
188void
189LinuxAlphaSystem::setDelayLoop(ExecContext *xc)
190{
191    Addr addr = 0;
192    if (kernelSymtab->findAddress("loops_per_jiffy", addr)) {
193        Addr paddr = vtophys(physmem, addr);
194
195        uint8_t *loops_per_jiffy =
196            physmem->dma_addr(paddr, sizeof(uint32_t));
197
198        Tick cpuFreq = xc->getCpuPtr()->frequency();
199        Tick intrFreq = platform->intrFrequency();
200        *(uint32_t *)loops_per_jiffy =
201            (uint32_t)((cpuFreq / intrFreq) * 0.9988);
202    }
203}
204
205
206void
207LinuxAlphaSystem::SkipDelayLoopEvent::process(ExecContext *xc)
208{
209    SkipFuncEvent::process(xc);
210    // calculate and set loops_per_jiffy
211    ((LinuxAlphaSystem *)xc->getSystemPtr())->setDelayLoop(xc);
212}
213
214void
215LinuxAlphaSystem::PrintThreadInfo::process(ExecContext *xc)
216{
217    Linux::ThreadInfo ti(xc);
218
219    DPRINTF(Thread, "Currently Executing Thread %s, pid %d, started at: %d\n",
220            ti.curTaskName(), ti.curTaskPID(), ti.curTaskStart());
221}
222
223
224BEGIN_DECLARE_SIM_OBJECT_PARAMS(LinuxAlphaSystem)
225
226    Param<Tick> boot_cpu_frequency;
227    SimObjectParam<MemoryController *> memctrl;
228    SimObjectParam<PhysicalMemory *> physmem;
229
230    Param<string> kernel;
231    Param<string> console;
232    Param<string> pal;
233
234    Param<string> boot_osflags;
235    Param<string> readfile;
236    Param<string> symbolfile;
237    Param<unsigned int> init_param;
238
239    Param<uint64_t> system_type;
240    Param<uint64_t> system_rev;
241
242    Param<bool> bin;
243    VectorParam<string> binned_fns;
244    Param<bool> bin_int;
245
246END_DECLARE_SIM_OBJECT_PARAMS(LinuxAlphaSystem)
247
248BEGIN_INIT_SIM_OBJECT_PARAMS(LinuxAlphaSystem)
249
250    INIT_PARAM(boot_cpu_frequency, "Frequency of the boot CPU"),
251    INIT_PARAM(memctrl, "memory controller"),
252    INIT_PARAM(physmem, "phsyical memory"),
253    INIT_PARAM(kernel, "file that contains the kernel code"),
254    INIT_PARAM(console, "file that contains the console code"),
255    INIT_PARAM(pal, "file that contains palcode"),
256    INIT_PARAM_DFLT(boot_osflags, "flags to pass to the kernel during boot",
257                    "a"),
258    INIT_PARAM_DFLT(readfile, "file to read startup script from", ""),
259    INIT_PARAM_DFLT(symbolfile, "file to read symbols from", ""),
260    INIT_PARAM_DFLT(init_param, "numerical value to pass into simulator", 0),
261    INIT_PARAM_DFLT(system_type, "Type of system we are emulating", 34),
262    INIT_PARAM_DFLT(system_rev, "Revision of system we are emulating", 1<<10),
263    INIT_PARAM_DFLT(bin, "is this system to be binned", false),
264    INIT_PARAM(binned_fns, "functions to be broken down and binned"),
265    INIT_PARAM_DFLT(bin_int, "is interrupt code binned seperately?", true)
266
267END_INIT_SIM_OBJECT_PARAMS(LinuxAlphaSystem)
268
269CREATE_SIM_OBJECT(LinuxAlphaSystem)
270{
271    AlphaSystem::Params *p = new AlphaSystem::Params;
272    p->name = getInstanceName();
273    p->boot_cpu_frequency = boot_cpu_frequency;
274    p->memctrl = memctrl;
275    p->physmem = physmem;
276    p->kernel_path = kernel;
277    p->console_path = console;
278    p->palcode = pal;
279    p->boot_osflags = boot_osflags;
280    p->init_param = init_param;
281    p->readfile = readfile;
282    p->symbolfile = symbolfile;
283    p->system_type = system_type;
284    p->system_rev = system_rev;
285    p->bin = bin;
286    p->binned_fns = binned_fns;
287    p->bin_int = bin_int;
288    return new LinuxAlphaSystem(p);
289}
290
291REGISTER_SIM_OBJECT("LinuxAlphaSystem", LinuxAlphaSystem)
292
293