system.cc revision 8852:c744483edfcf
1/*
2 * Copyright (c) 2002-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 *          Nathan Binkert
30 */
31
32#include <sys/signal.h>
33
34#include "arch/alpha/ev5.hh"
35#include "arch/alpha/system.hh"
36#include "arch/vtophys.hh"
37#include "base/loader/object_file.hh"
38#include "base/loader/symtab.hh"
39#include "base/trace.hh"
40#include "debug/Loader.hh"
41#include "mem/fs_translating_port_proxy.hh"
42#include "params/AlphaSystem.hh"
43#include "sim/byteswap.hh"
44
45using namespace AlphaISA;
46
47AlphaSystem::AlphaSystem(Params *p)
48    : System(p), intrFreq(0)
49{
50    consoleSymtab = new SymbolTable;
51    palSymtab = new SymbolTable;
52
53
54    /**
55     * Load the pal, and console code into memory
56     */
57    // Load Console Code
58    console = createObjectFile(params()->console);
59    if (console == NULL)
60        fatal("Could not load console file %s", params()->console);
61
62    // Load pal file
63    pal = createObjectFile(params()->pal);
64    if (pal == NULL)
65        fatal("Could not load PALcode file %s", params()->pal);
66}
67
68AlphaSystem::~AlphaSystem()
69{
70    delete consoleSymtab;
71    delete console;
72    delete pal;
73#ifdef DEBUG
74    delete consolePanicEvent;
75#endif
76}
77
78void
79AlphaSystem::initState()
80{
81    // Moved from the constructor to here since it relies on the
82    // address map being resolved in the interconnect
83
84    // Call the initialisation of the super class
85    System::initState();
86
87    // Load program sections into memory
88    pal->loadSections(physProxy, loadAddrMask);
89    console->loadSections(physProxy, loadAddrMask);
90
91    // load symbols
92    if (!console->loadGlobalSymbols(consoleSymtab))
93        panic("could not load console symbols\n");
94
95    if (!pal->loadGlobalSymbols(palSymtab))
96        panic("could not load pal symbols\n");
97
98    if (!pal->loadLocalSymbols(palSymtab))
99        panic("could not load pal symbols\n");
100
101    if (!console->loadGlobalSymbols(debugSymbolTable))
102        panic("could not load console symbols\n");
103
104    if (!pal->loadGlobalSymbols(debugSymbolTable))
105        panic("could not load pal symbols\n");
106
107    if (!pal->loadLocalSymbols(debugSymbolTable))
108        panic("could not load pal symbols\n");
109
110     Addr addr = 0;
111#ifndef NDEBUG
112    consolePanicEvent = addConsoleFuncEvent<BreakPCEvent>("panic");
113#endif
114
115    /**
116     * Copy the osflags (kernel arguments) into the consoles
117     * memory. (Presently Linux does not use the console service
118     * routine to get these command line arguments, but Tru64 and
119     * others do.)
120     */
121    if (consoleSymtab->findAddress("env_booted_osflags", addr)) {
122        virtProxy.writeBlob(addr, (uint8_t*)params()->boot_osflags.c_str(),
123                            strlen(params()->boot_osflags.c_str()));
124    }
125
126    /**
127     * Set the hardware reset parameter block system type and revision
128     * information to Tsunami.
129     */
130    if (consoleSymtab->findAddress("m5_rpb", addr)) {
131        uint64_t data;
132        data = htog(params()->system_type);
133        virtProxy.write(addr+0x50, data);
134        data = htog(params()->system_rev);
135        virtProxy.write(addr+0x58, data);
136    } else
137        panic("could not find hwrpb\n");
138}
139
140/**
141 * This function fixes up addresses that are used to match PCs for
142 * hooking simulator events on to target function executions.
143 *
144 * Alpha binaries may have multiple global offset table (GOT)
145 * sections.  A function that uses the GOT starts with a
146 * two-instruction prolog which sets the global pointer (gp == r29) to
147 * the appropriate GOT section.  The proper gp value is calculated
148 * based on the function address, which must be passed by the caller
149 * in the procedure value register (pv aka t12 == r27).  This sequence
150 * looks like the following:
151 *
152 *                      opcode Ra Rb offset
153 *      ldah gp,X(pv)     09   29 27   X
154 *      lda  gp,Y(gp)     08   29 29   Y
155 *
156 * for some constant offsets X and Y.  The catch is that the linker
157 * (or maybe even the compiler, I'm not sure) may recognize that the
158 * caller and callee are using the same GOT section, making this
159 * prolog redundant, and modify the call target to skip these
160 * instructions.  If we check for execution of the first instruction
161 * of a function (the one the symbol points to) to detect when to skip
162 * it, we'll miss all these modified calls.  It might work to
163 * unconditionally check for the third instruction, but not all
164 * functions have this prolog, and there's some chance that those
165 * first two instructions could have undesired consequences.  So we do
166 * the Right Thing and pattern-match the first two instructions of the
167 * function to decide where to patch.
168 *
169 * Eventually this code should be moved into an ISA-specific file.
170 */
171Addr
172AlphaSystem::fixFuncEventAddr(Addr addr)
173{
174    // mask for just the opcode, Ra, and Rb fields (not the offset)
175    const uint32_t inst_mask = 0xffff0000;
176    // ldah gp,X(pv): opcode 9, Ra = 29, Rb = 27
177    const uint32_t gp_ldah_pattern = (9 << 26) | (29 << 21) | (27 << 16);
178    // lda  gp,Y(gp): opcode 8, Ra = 29, rb = 29
179    const uint32_t gp_lda_pattern  = (8 << 26) | (29 << 21) | (29 << 16);
180
181    uint32_t i1 = virtProxy.read<uint32_t>(addr);
182    uint32_t i2 = virtProxy.read<uint32_t>(addr + sizeof(MachInst));
183
184    if ((i1 & inst_mask) == gp_ldah_pattern &&
185        (i2 & inst_mask) == gp_lda_pattern) {
186        Addr new_addr = addr + 2 * sizeof(MachInst);
187        DPRINTF(Loader, "fixFuncEventAddr: %p -> %p", addr, new_addr);
188        return new_addr;
189    } else {
190        return addr;
191    }
192}
193
194void
195AlphaSystem::setAlphaAccess(Addr access)
196{
197    Addr addr = 0;
198    if (consoleSymtab->findAddress("m5AlphaAccess", addr)) {
199        virtProxy.write(addr, htog(Phys2K0Seg(access)));
200    } else {
201        panic("could not find m5AlphaAccess\n");
202    }
203}
204
205void
206AlphaSystem::serialize(std::ostream &os)
207{
208    System::serialize(os);
209    consoleSymtab->serialize("console_symtab", os);
210    palSymtab->serialize("pal_symtab", os);
211}
212
213void
214AlphaSystem::unserialize(Checkpoint *cp, const std::string &section)
215{
216    System::unserialize(cp,section);
217    consoleSymtab->unserialize("console_symtab", cp, section);
218    palSymtab->unserialize("pal_symtab", cp, section);
219}
220
221AlphaSystem *
222AlphaSystemParams::create()
223{
224    return new AlphaSystem(this);
225}
226