system.cc revision 8885
12158SN/A/*
22158SN/A * Copyright (c) 2002-2005 The Regents of The University of Michigan
32158SN/A * All rights reserved.
42158SN/A *
52158SN/A * Redistribution and use in source and binary forms, with or without
62158SN/A * modification, are permitted provided that the following conditions are
72158SN/A * met: redistributions of source code must retain the above copyright
82158SN/A * notice, this list of conditions and the following disclaimer;
92158SN/A * redistributions in binary form must reproduce the above copyright
102158SN/A * notice, this list of conditions and the following disclaimer in the
112158SN/A * documentation and/or other materials provided with the distribution;
122158SN/A * neither the name of the copyright holders nor the names of its
132158SN/A * contributors may be used to endorse or promote products derived from
142158SN/A * this software without specific prior written permission.
152158SN/A *
162158SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
172158SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
182158SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
192158SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
202158SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
212158SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
222158SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
232158SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
242158SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
252158SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
262158SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272665Ssaidi@eecs.umich.edu *
282665Ssaidi@eecs.umich.edu * Authors: Ali Saidi
292760Sbinkertn@umich.edu *          Nathan Binkert
302158SN/A */
312158SN/A
323567Sgblack@eecs.umich.edu#include <sys/signal.h>
333567Sgblack@eecs.umich.edu
342432SN/A#include "arch/alpha/ev5.hh"
352158SN/A#include "arch/alpha/system.hh"
362215SN/A#include "arch/vtophys.hh"
372158SN/A#include "base/loader/object_file.hh"
382158SN/A#include "base/loader/symtab.hh"
392158SN/A#include "base/trace.hh"
408232Snate@binkert.org#include "debug/Loader.hh"
418706Sandreas.hansson@arm.com#include "mem/fs_translating_port_proxy.hh"
424762Snate@binkert.org#include "params/AlphaSystem.hh"
432158SN/A#include "sim/byteswap.hh"
442158SN/A
455568Snate@binkert.orgusing namespace AlphaISA;
462158SN/A
472158SN/AAlphaSystem::AlphaSystem(Params *p)
488741Sgblack@eecs.umich.edu    : System(p), intrFreq(0)
492158SN/A{
502158SN/A    consoleSymtab = new SymbolTable;
512158SN/A    palSymtab = new SymbolTable;
522158SN/A
532158SN/A
542158SN/A    /**
552158SN/A     * Load the pal, and console code into memory
562158SN/A     */
572158SN/A    // Load Console Code
584762Snate@binkert.org    console = createObjectFile(params()->console);
592158SN/A    if (console == NULL)
604762Snate@binkert.org        fatal("Could not load console file %s", params()->console);
612158SN/A
622158SN/A    // Load pal file
634762Snate@binkert.org    pal = createObjectFile(params()->pal);
642158SN/A    if (pal == NULL)
654762Snate@binkert.org        fatal("Could not load PALcode file %s", params()->pal);
662158SN/A
672158SN/A    // load symbols
682158SN/A    if (!console->loadGlobalSymbols(consoleSymtab))
692158SN/A        panic("could not load console symbols\n");
702158SN/A
712158SN/A    if (!pal->loadGlobalSymbols(palSymtab))
722158SN/A        panic("could not load pal symbols\n");
732158SN/A
742158SN/A    if (!pal->loadLocalSymbols(palSymtab))
752158SN/A        panic("could not load pal symbols\n");
762158SN/A
772158SN/A    if (!console->loadGlobalSymbols(debugSymbolTable))
782158SN/A        panic("could not load console symbols\n");
792158SN/A
802158SN/A    if (!pal->loadGlobalSymbols(debugSymbolTable))
812158SN/A        panic("could not load pal symbols\n");
822158SN/A
832158SN/A    if (!pal->loadLocalSymbols(debugSymbolTable))
842158SN/A        panic("could not load pal symbols\n");
852158SN/A
868885SAli.Saidi@ARM.com
878885SAli.Saidi@ARM.com}
888885SAli.Saidi@ARM.com
898885SAli.Saidi@ARM.comAlphaSystem::~AlphaSystem()
908885SAli.Saidi@ARM.com{
918885SAli.Saidi@ARM.com    delete consoleSymtab;
928885SAli.Saidi@ARM.com    delete console;
938885SAli.Saidi@ARM.com    delete pal;
948885SAli.Saidi@ARM.com#ifdef DEBUG
958885SAli.Saidi@ARM.com    delete consolePanicEvent;
968885SAli.Saidi@ARM.com#endif
978885SAli.Saidi@ARM.com}
988885SAli.Saidi@ARM.com
998885SAli.Saidi@ARM.comvoid
1008885SAli.Saidi@ARM.comAlphaSystem::initState()
1018885SAli.Saidi@ARM.com{
1022158SN/A     Addr addr = 0;
1038885SAli.Saidi@ARM.com
1048885SAli.Saidi@ARM.com    // Moved from the constructor to here since it relies on the
1058885SAli.Saidi@ARM.com    // address map being resolved in the interconnect
1068885SAli.Saidi@ARM.com
1078885SAli.Saidi@ARM.com    // Call the initialisation of the super class
1088885SAli.Saidi@ARM.com    System::initState();
1098885SAli.Saidi@ARM.com
1108885SAli.Saidi@ARM.com    // Load program sections into memory
1118885SAli.Saidi@ARM.com    pal->loadSections(physProxy, loadAddrMask);
1128885SAli.Saidi@ARM.com    console->loadSections(physProxy, loadAddrMask);
1132158SN/A
1142158SN/A    /**
1152158SN/A     * Copy the osflags (kernel arguments) into the consoles
1162158SN/A     * memory. (Presently Linux does not use the console service
1172158SN/A     * routine to get these command line arguments, but Tru64 and
1182158SN/A     * others do.)
1192158SN/A     */
1202158SN/A    if (consoleSymtab->findAddress("env_booted_osflags", addr)) {
1218852Sandreas.hansson@arm.com        virtProxy.writeBlob(addr, (uint8_t*)params()->boot_osflags.c_str(),
1228852Sandreas.hansson@arm.com                            strlen(params()->boot_osflags.c_str()));
1232158SN/A    }
1242158SN/A
1252158SN/A    /**
1262158SN/A     * Set the hardware reset parameter block system type and revision
1272158SN/A     * information to Tsunami.
1282158SN/A     */
1292158SN/A    if (consoleSymtab->findAddress("m5_rpb", addr)) {
1302521SN/A        uint64_t data;
1312521SN/A        data = htog(params()->system_type);
1328852Sandreas.hansson@arm.com        virtProxy.write(addr+0x50, data);
1332521SN/A        data = htog(params()->system_rev);
1348852Sandreas.hansson@arm.com        virtProxy.write(addr+0x58, data);
1352158SN/A    } else
1362158SN/A        panic("could not find hwrpb\n");
1378885SAli.Saidi@ARM.com
1388885SAli.Saidi@ARM.com    // Setup all the function events now that we have a system and a symbol
1398885SAli.Saidi@ARM.com    // table
1408885SAli.Saidi@ARM.com    setupFuncEvents();
1418885SAli.Saidi@ARM.com}
1428885SAli.Saidi@ARM.com
1438885SAli.Saidi@ARM.comvoid
1448885SAli.Saidi@ARM.comAlphaSystem::loadState(Checkpoint *cp)
1458885SAli.Saidi@ARM.com{
1468885SAli.Saidi@ARM.com    System::loadState(cp);
1478885SAli.Saidi@ARM.com
1488885SAli.Saidi@ARM.com    // Setup all the function events now that we have a system and a symbol
1498885SAli.Saidi@ARM.com    // table
1508885SAli.Saidi@ARM.com    setupFuncEvents();
1518885SAli.Saidi@ARM.com
1528885SAli.Saidi@ARM.com}
1538885SAli.Saidi@ARM.com
1548885SAli.Saidi@ARM.comvoid
1558885SAli.Saidi@ARM.comAlphaSystem::setupFuncEvents()
1568885SAli.Saidi@ARM.com{
1578885SAli.Saidi@ARM.com#ifndef NDEBUG
1588885SAli.Saidi@ARM.com    consolePanicEvent = addConsoleFuncEvent<BreakPCEvent>("panic");
1598885SAli.Saidi@ARM.com#endif
1602158SN/A}
1612158SN/A
1622158SN/A/**
1632158SN/A * This function fixes up addresses that are used to match PCs for
1642158SN/A * hooking simulator events on to target function executions.
1652158SN/A *
1662158SN/A * Alpha binaries may have multiple global offset table (GOT)
1672158SN/A * sections.  A function that uses the GOT starts with a
1682158SN/A * two-instruction prolog which sets the global pointer (gp == r29) to
1692158SN/A * the appropriate GOT section.  The proper gp value is calculated
1702158SN/A * based on the function address, which must be passed by the caller
1712158SN/A * in the procedure value register (pv aka t12 == r27).  This sequence
1722158SN/A * looks like the following:
1732158SN/A *
1745543Ssaidi@eecs.umich.edu *                      opcode Ra Rb offset
1755543Ssaidi@eecs.umich.edu *      ldah gp,X(pv)     09   29 27   X
1765543Ssaidi@eecs.umich.edu *      lda  gp,Y(gp)     08   29 29   Y
1772158SN/A *
1782158SN/A * for some constant offsets X and Y.  The catch is that the linker
1792158SN/A * (or maybe even the compiler, I'm not sure) may recognize that the
1802158SN/A * caller and callee are using the same GOT section, making this
1812158SN/A * prolog redundant, and modify the call target to skip these
1822158SN/A * instructions.  If we check for execution of the first instruction
1832158SN/A * of a function (the one the symbol points to) to detect when to skip
1842158SN/A * it, we'll miss all these modified calls.  It might work to
1852158SN/A * unconditionally check for the third instruction, but not all
1862158SN/A * functions have this prolog, and there's some chance that those
1872158SN/A * first two instructions could have undesired consequences.  So we do
1882158SN/A * the Right Thing and pattern-match the first two instructions of the
1892158SN/A * function to decide where to patch.
1902158SN/A *
1912158SN/A * Eventually this code should be moved into an ISA-specific file.
1922158SN/A */
1932158SN/AAddr
1942158SN/AAlphaSystem::fixFuncEventAddr(Addr addr)
1952158SN/A{
1962158SN/A    // mask for just the opcode, Ra, and Rb fields (not the offset)
1972158SN/A    const uint32_t inst_mask = 0xffff0000;
1982158SN/A    // ldah gp,X(pv): opcode 9, Ra = 29, Rb = 27
1992158SN/A    const uint32_t gp_ldah_pattern = (9 << 26) | (29 << 21) | (27 << 16);
2002158SN/A    // lda  gp,Y(gp): opcode 8, Ra = 29, rb = 29
2012158SN/A    const uint32_t gp_lda_pattern  = (8 << 26) | (29 << 21) | (29 << 16);
2022158SN/A
2038852Sandreas.hansson@arm.com    uint32_t i1 = virtProxy.read<uint32_t>(addr);
2048852Sandreas.hansson@arm.com    uint32_t i2 = virtProxy.read<uint32_t>(addr + sizeof(MachInst));
2052158SN/A
2062158SN/A    if ((i1 & inst_mask) == gp_ldah_pattern &&
2072158SN/A        (i2 & inst_mask) == gp_lda_pattern) {
2085569Snate@binkert.org        Addr new_addr = addr + 2 * sizeof(MachInst);
2092158SN/A        DPRINTF(Loader, "fixFuncEventAddr: %p -> %p", addr, new_addr);
2102158SN/A        return new_addr;
2112158SN/A    } else {
2122158SN/A        return addr;
2132158SN/A    }
2142158SN/A}
2152158SN/A
2162158SN/Avoid
2172158SN/AAlphaSystem::setAlphaAccess(Addr access)
2182158SN/A{
2192158SN/A    Addr addr = 0;
2202158SN/A    if (consoleSymtab->findAddress("m5AlphaAccess", addr)) {
2218852Sandreas.hansson@arm.com        virtProxy.write(addr, htog(Phys2K0Seg(access)));
2225569Snate@binkert.org    } else {
2232158SN/A        panic("could not find m5AlphaAccess\n");
2245569Snate@binkert.org    }
2252158SN/A}
2262158SN/A
2272158SN/Avoid
2282158SN/AAlphaSystem::serialize(std::ostream &os)
2292158SN/A{
2302158SN/A    System::serialize(os);
2312158SN/A    consoleSymtab->serialize("console_symtab", os);
2322158SN/A    palSymtab->serialize("pal_symtab", os);
2332158SN/A}
2342158SN/A
2352158SN/Avoid
2362158SN/AAlphaSystem::unserialize(Checkpoint *cp, const std::string &section)
2372158SN/A{
2382158SN/A    System::unserialize(cp,section);
2392158SN/A    consoleSymtab->unserialize("console_symtab", cp, section);
2402158SN/A    palSymtab->unserialize("pal_symtab", cp, section);
2412158SN/A}
2422158SN/A
2434762Snate@binkert.orgAlphaSystem *
2444762Snate@binkert.orgAlphaSystemParams::create()
2452158SN/A{
2464762Snate@binkert.org    return new AlphaSystem(this);
2472158SN/A}
248