system.cc revision 1847
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 * Modifications for the FreeBSD kernel.
32 * Based on kern/linux/linux_system.cc.
33 *
34 */
35
36#include "base/loader/symtab.hh"
37#include "cpu/exec_context.hh"
38#include "kern/freebsd/freebsd_system.hh"
39#include "mem/functional/memory_control.hh"
40#include "mem/functional/physical.hh"
41#include "sim/builder.hh"
42#include "targetarch/vtophys.hh"
43
44#define TIMER_FREQUENCY 1193180
45
46using namespace std;
47
48FreebsdSystem::FreebsdSystem(Params *p)
49    : System(p)
50{
51    Addr addr = 0;
52
53    /**
54     * Any time DELAY is called just skip the function.
55     */
56    skipDelayEvent = new SkipFuncEvent(&pcEventQueue, "DELAY");
57    if (kernelSymtab->findAddress("DELAY", addr))
58        skipDelayEvent->schedule(addr+sizeof(MachInst));
59
60    skipCalibrateClocks = new FreebsdSkipCalibrateClocksEvent(&pcEventQueue, "calibrate_clocks");
61    if (kernelSymtab->findAddress("calibrate_clocks", addr))
62        skipCalibrateClocks->schedule(addr + sizeof(MachInst) * 2);
63}
64
65
66FreebsdSystem::~FreebsdSystem()
67{
68    delete skipDelayEvent;
69    delete skipCalibrateClocks;
70}
71
72
73void
74FreebsdSystem::doCalibrateClocks(ExecContext *xc)
75{
76    Addr ppc_vaddr = 0;
77    Addr timer_vaddr = 0;
78    Addr ppc_paddr = 0;
79    Addr timer_paddr = 0;
80
81    ppc_vaddr = (Addr)xc->regs.intRegFile[ArgumentReg1];
82    timer_vaddr = (Addr)xc->regs.intRegFile[ArgumentReg2];
83
84    ppc_paddr = vtophys(physmem, ppc_vaddr);
85    timer_paddr = vtophys(physmem, timer_vaddr);
86
87    uint8_t *ppc = physmem->dma_addr(ppc_paddr, sizeof(uint32_t));
88    uint8_t *timer = physmem->dma_addr(timer_paddr, sizeof(uint32_t));
89
90    *(uint32_t *)ppc = htog((uint32_t)Clock::Frequency);
91    *(uint32_t *)timer = htog((uint32_t)TIMER_FREQUENCY);
92}
93
94
95BEGIN_DECLARE_SIM_OBJECT_PARAMS(FreebsdSystem)
96
97    Param<Tick> boot_cpu_frequency;
98    SimObjectParam<MemoryController *> memctrl;
99    SimObjectParam<PhysicalMemory *> physmem;
100
101    Param<string> kernel;
102    Param<string> console;
103    Param<string> pal;
104
105    Param<string> boot_osflags;
106    Param<string> readfile;
107    Param<unsigned int> init_param;
108
109    Param<uint64_t> system_type;
110    Param<uint64_t> system_rev;
111
112    Param<bool> bin;
113    VectorParam<string> binned_fns;
114    Param<bool> bin_int;
115
116END_DECLARE_SIM_OBJECT_PARAMS(FreebsdSystem)
117
118BEGIN_INIT_SIM_OBJECT_PARAMS(FreebsdSystem)
119
120    INIT_PARAM(boot_cpu_frequency, "Frequency of the boot CPU"),
121    INIT_PARAM(memctrl, "memory controller"),
122    INIT_PARAM(physmem, "phsyical memory"),
123    INIT_PARAM(kernel, "file that contains the kernel code"),
124    INIT_PARAM(console, "file that contains the console code"),
125    INIT_PARAM(pal, "file that contains palcode"),
126    INIT_PARAM_DFLT(boot_osflags, "flags to pass to the kernel during boot",
127                    "a"),
128    INIT_PARAM_DFLT(readfile, "file to read startup script from", ""),
129    INIT_PARAM_DFLT(init_param, "numerical value to pass into simulator", 0),
130    INIT_PARAM_DFLT(system_type, "Type of system we are emulating", 34),
131    INIT_PARAM_DFLT(system_rev, "Revision of system we are emulating", 1<<10),
132    INIT_PARAM_DFLT(bin, "is this system to be binned", false),
133    INIT_PARAM(binned_fns, "functions to be broken down and binned"),
134    INIT_PARAM_DFLT(bin_int, "is interrupt code binned seperately?", true)
135
136END_INIT_SIM_OBJECT_PARAMS(FreebsdSystem)
137
138CREATE_SIM_OBJECT(FreebsdSystem)
139{
140    System::Params *p = new System::Params;
141    p->name = getInstanceName();
142    p->boot_cpu_frequency = boot_cpu_frequency;
143    p->memctrl = memctrl;
144    p->physmem = physmem;
145    p->kernel_path = kernel;
146    p->console_path = console;
147    p->palcode = pal;
148    p->boot_osflags = boot_osflags;
149    p->init_param = init_param;
150    p->readfile = readfile;
151    p->system_type = system_type;
152    p->system_rev = system_rev;
153    p->bin = bin;
154    p->binned_fns = binned_fns;
155    p->bin_int = bin_int;
156    return new FreebsdSystem(p);
157}
158
159REGISTER_SIM_OBJECT("FreebsdSystem", FreebsdSystem)
160
161