system.cc revision 5222
15222Sksewell@umich.edu/*
25222Sksewell@umich.edu * Copyright N) 2007 MIPS Technologies, Inc.  All Rights Reserved
35222Sksewell@umich.edu *
45222Sksewell@umich.edu * This software is part of the M5 simulator.
55222Sksewell@umich.edu *
65222Sksewell@umich.edu * THIS IS A LEGAL AGREEMENT.  BY DOWNLOADING, USING, COPYING, CREATING
75222Sksewell@umich.edu * DERIVATIVE WORKS, AND/OR DISTRIBUTING THIS SOFTWARE YOU ARE AGREEING
85222Sksewell@umich.edu * TO THESE TERMS AND CONDITIONS.
95222Sksewell@umich.edu *
105222Sksewell@umich.edu * Permission is granted to use, copy, create derivative works and
115222Sksewell@umich.edu * distribute this software and such derivative works for any purpose,
125222Sksewell@umich.edu * so long as (1) the copyright notice above, this grant of permission,
135222Sksewell@umich.edu * and the disclaimer below appear in all copies and derivative works
145222Sksewell@umich.edu * made, (2) the copyright notice above is augmented as appropriate to
155222Sksewell@umich.edu * reflect the addition of any new copyrightable work in a derivative
165222Sksewell@umich.edu * work (e.g., Copyright N) <Publication Year> Copyright Owner), and (3)
175222Sksewell@umich.edu * the name of MIPS Technologies, Inc. ($(B!H(BMIPS$(B!I(B) is not used in any
185222Sksewell@umich.edu * advertising or publicity pertaining to the use or distribution of
195222Sksewell@umich.edu * this software without specific, written prior authorization.
205222Sksewell@umich.edu *
215222Sksewell@umich.edu * THIS SOFTWARE IS PROVIDED $(B!H(BAS IS.$(B!I(B  MIPS MAKES NO WARRANTIES AND
225222Sksewell@umich.edu * DISCLAIMS ALL WARRANTIES, WHETHER EXPRESS, STATUTORY, IMPLIED OR
235222Sksewell@umich.edu * OTHERWISE, INCLUDING BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
245222Sksewell@umich.edu * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND
255222Sksewell@umich.edu * NON-INFRINGEMENT OF THIRD PARTY RIGHTS, REGARDING THIS SOFTWARE.
265222Sksewell@umich.edu * IN NO EVENT SHALL MIPS BE LIABLE FOR ANY DAMAGES, INCLUDING DIRECT,
275222Sksewell@umich.edu * INDIRECT, INCIDENTAL, CONSEQUENTIAL, SPECIAL, OR PUNITIVE DAMAGES OF
285222Sksewell@umich.edu * ANY KIND OR NATURE, ARISING OUT OF OR IN CONNECTION WITH THIS AGREEMENT,
295222Sksewell@umich.edu * THIS SOFTWARE AND/OR THE USE OF THIS SOFTWARE, WHETHER SUCH LIABILITY
305222Sksewell@umich.edu * IS ASSERTED ON THE BASIS OF CONTRACT, TORT (INCLUDING NEGLIGENCE OR
315222Sksewell@umich.edu * STRICT LIABILITY), OR OTHERWISE, EVEN IF MIPS HAS BEEN WARNED OF THE
325222Sksewell@umich.edu * POSSIBILITY OF ANY SUCH LOSS OR DAMAGE IN ADVANCE.
335222Sksewell@umich.edu *
345222Sksewell@umich.edu *
355222Sksewell@umich.edu * Authors: Ali G. Saidi
365222Sksewell@umich.edu *          Nathan L. Binkert
375222Sksewell@umich.edu *          Jaidev Patwardhan
385222Sksewell@umich.edu */
395222Sksewell@umich.edu
405222Sksewell@umich.edu#include "arch/mips/system.hh"
415222Sksewell@umich.edu#include "arch/vtophys.hh"
425222Sksewell@umich.edu#include "base/remote_gdb.hh"
435222Sksewell@umich.edu#include "base/loader/object_file.hh"
445222Sksewell@umich.edu#include "base/loader/hex_file.hh"
455222Sksewell@umich.edu#include "base/loader/symtab.hh"
465222Sksewell@umich.edu#include "base/trace.hh"
475222Sksewell@umich.edu#include "mem/physical.hh"
485222Sksewell@umich.edu#include "params/MipsSystem.hh"
495222Sksewell@umich.edu#include "sim/byteswap.hh"
505222Sksewell@umich.edu
515222Sksewell@umich.edu
525222Sksewell@umich.eduusing namespace LittleEndianGuest;
535222Sksewell@umich.edu
545222Sksewell@umich.eduMipsSystem::MipsSystem(Params *p)
555222Sksewell@umich.edu    : System(p)
565222Sksewell@umich.edu{
575222Sksewell@umich.edu
585222Sksewell@umich.edu#if FULL_SYSTEM
595222Sksewell@umich.edu    if (p->bare_iron == true) {
605222Sksewell@umich.edu        hexFile = new HexFile(params()->hex_file_name);
615222Sksewell@umich.edu        if(!hexFile->loadSections(&functionalPort,MipsISA::LoadAddrMask))
625222Sksewell@umich.edu            panic("Could not load hex file\n");
635222Sksewell@umich.edu    }
645222Sksewell@umich.edu
655222Sksewell@umich.edu    Addr addr = 0;
665222Sksewell@umich.edu    /* Comment out old Alpha Based Code
675222Sksewell@umich.edu
685222Sksewell@umich.edu     Don't need the console before we start looking at booting linux */
695222Sksewell@umich.edu
705222Sksewell@umich.edu
715222Sksewell@umich.edu    consoleSymtab = new SymbolTable;
725222Sksewell@umich.edu
735222Sksewell@umich.edu
745222Sksewell@umich.edu    /**
755222Sksewell@umich.edu     * Load the console code into memory
765222Sksewell@umich.edu     */
775222Sksewell@umich.edu    //    Load Console Code
785222Sksewell@umich.edu    console = createObjectFile(params()->console);
795222Sksewell@umich.edu
805222Sksewell@umich.edu    warn("console code is located at: %s\n", params()->console);
815222Sksewell@umich.edu
825222Sksewell@umich.edu    if (console == NULL)
835222Sksewell@umich.edu        fatal("Could not load console file %s", params()->console);
845222Sksewell@umich.edu    //Load program sections into memory
855222Sksewell@umich.edu     console->loadSections(&functionalPort, MipsISA::LoadAddrMask);
865222Sksewell@umich.edu
875222Sksewell@umich.edu    //load symbols
885222Sksewell@umich.edu    if (!console->loadGlobalSymbols(consoleSymtab))
895222Sksewell@umich.edu        panic("could not load console symbols\n");
905222Sksewell@umich.edu
915222Sksewell@umich.edu    if (!console->loadGlobalSymbols(debugSymbolTable))
925222Sksewell@umich.edu        panic("could not load console symbols\n");
935222Sksewell@umich.edu
945222Sksewell@umich.edu
955222Sksewell@umich.edu#ifndef NDEBUG
965222Sksewell@umich.edu    consolePanicEvent = addConsoleFuncEvent<BreakPCEvent>("panic");
975222Sksewell@umich.edu#endif
985222Sksewell@umich.edu
995222Sksewell@umich.edu    /**
1005222Sksewell@umich.edu     * Copy the osflags (kernel arguments) into the consoles
1015222Sksewell@umich.edu     * memory. (Presently Linux does not use the console service
1025222Sksewell@umich.edu     * routine to get these command line arguments, but Tru64 and
1035222Sksewell@umich.edu     * others do.)
1045222Sksewell@umich.edu     */
1055222Sksewell@umich.edu    if (consoleSymtab->findAddress("env_booted_osflags", addr)) {
1065222Sksewell@umich.edu        warn("writing addr starting from %#x", addr);
1075222Sksewell@umich.edu        cout << "-" << endl;
1085222Sksewell@umich.edu        virtPort.writeBlob(addr, (uint8_t*)params()->boot_osflags.c_str(),
1095222Sksewell@umich.edu                strlen(params()->boot_osflags.c_str()));
1105222Sksewell@umich.edu    }
1115222Sksewell@umich.edu
1125222Sksewell@umich.edu    /**
1135222Sksewell@umich.edu     * Set the hardware reset parameter block system type and revision
1145222Sksewell@umich.edu     * information to Tsunami.
1155222Sksewell@umich.edu     */
1165222Sksewell@umich.edu    if (consoleSymtab->findAddress("m5_rpb", addr)) {
1175222Sksewell@umich.edu        uint64_t data;
1185222Sksewell@umich.edu        data = htog(params()->system_type);
1195222Sksewell@umich.edu        virtPort.write(addr+0x50, data);
1205222Sksewell@umich.edu        data = htog(params()->system_rev);
1215222Sksewell@umich.edu        virtPort.write(addr+0x58, data);
1225222Sksewell@umich.edu    } else
1235222Sksewell@umich.edu        panic("could not find hwrpb\n");
1245222Sksewell@umich.edu#endif
1255222Sksewell@umich.edu}
1265222Sksewell@umich.edu
1275222Sksewell@umich.eduMipsSystem::~MipsSystem()
1285222Sksewell@umich.edu{
1295222Sksewell@umich.edu}
1305222Sksewell@umich.edu#if FULL_SYSTEM
1315222Sksewell@umich.edu/**
1325222Sksewell@umich.edu * This function fixes up addresses that are used to match PCs for
1335222Sksewell@umich.edu * hooking simulator events on to target function executions.
1345222Sksewell@umich.edu *
1355222Sksewell@umich.edu * Mips binaries may have multiple global offset table (GOT)
1365222Sksewell@umich.edu * sections.  A function that uses the GOT starts with a
1375222Sksewell@umich.edu * two-instruction prolog which sets the global pointer (gp == r29) to
1385222Sksewell@umich.edu * the appropriate GOT section.  The proper gp value is calculated
1395222Sksewell@umich.edu * based on the function address, which must be passed by the caller
1405222Sksewell@umich.edu * in the procedure value register (pv aka t12 == r27).  This sequence
1415222Sksewell@umich.edu * looks like the following:
1425222Sksewell@umich.edu *
1435222Sksewell@umich.edu *			opcode Ra Rb offset
1445222Sksewell@umich.edu *	ldah gp,X(pv)     09   29 27   X
1455222Sksewell@umich.edu *	lda  gp,Y(gp)     08   29 29   Y
1465222Sksewell@umich.edu *
1475222Sksewell@umich.edu * for some constant offsets X and Y.  The catch is that the linker
1485222Sksewell@umich.edu * (or maybe even the compiler, I'm not sure) may recognize that the
1495222Sksewell@umich.edu * caller and callee are using the same GOT section, making this
1505222Sksewell@umich.edu * prolog redundant, and modify the call target to skip these
1515222Sksewell@umich.edu * instructions.  If we check for execution of the first instruction
1525222Sksewell@umich.edu * of a function (the one the symbol points to) to detect when to skip
1535222Sksewell@umich.edu * it, we'll miss all these modified calls.  It might work to
1545222Sksewell@umich.edu * unconditionally check for the third instruction, but not all
1555222Sksewell@umich.edu * functions have this prolog, and there's some chance that those
1565222Sksewell@umich.edu * first two instructions could have undesired consequences.  So we do
1575222Sksewell@umich.edu * the Right Thing and pattern-match the first two instructions of the
1585222Sksewell@umich.edu * function to decide where to patch.
1595222Sksewell@umich.edu *
1605222Sksewell@umich.edu * Eventually this code should be moved into an ISA-specific file.
1615222Sksewell@umich.edu */
1625222Sksewell@umich.edu
1635222Sksewell@umich.eduAddr
1645222Sksewell@umich.eduMipsSystem::fixFuncEventAddr(Addr addr)
1655222Sksewell@umich.edu{
1665222Sksewell@umich.edu  /*
1675222Sksewell@umich.edu    // mask for just the opcode, Ra, and Rb fields (not the offset)
1685222Sksewell@umich.edu    const uint32_t inst_mask = 0xffff0000;
1695222Sksewell@umich.edu    // ldah gp,X(pv): opcode 9, Ra = 29, Rb = 27
1705222Sksewell@umich.edu    const uint32_t gp_ldah_pattern = (9 << 26) | (29 << 21) | (27 << 16);
1715222Sksewell@umich.edu    // lda  gp,Y(gp): opcode 8, Ra = 29, rb = 29
1725222Sksewell@umich.edu    const uint32_t gp_lda_pattern  = (8 << 26) | (29 << 21) | (29 << 16);
1735222Sksewell@umich.edu
1745222Sksewell@umich.edu    uint32_t i1 = virtPort.read<uint32_t>(addr);
1755222Sksewell@umich.edu    uint32_t i2 = virtPort.read<uint32_t>(addr + sizeof(MipsISA::MachInst));
1765222Sksewell@umich.edu
1775222Sksewell@umich.edu    if ((i1 & inst_mask) == gp_ldah_pattern &&
1785222Sksewell@umich.edu        (i2 & inst_mask) == gp_lda_pattern) {
1795222Sksewell@umich.edu        Addr new_addr = addr + 2* sizeof(MipsISA::MachInst);
1805222Sksewell@umich.edu        DPRINTF(Loader, "fixFuncEventAddr: %p -> %p", addr, new_addr);
1815222Sksewell@umich.edu        return new_addr;
1825222Sksewell@umich.edu    } else {
1835222Sksewell@umich.edu        return addr;
1845222Sksewell@umich.edu        }*/
1855222Sksewell@umich.edu  return addr;
1865222Sksewell@umich.edu}
1875222Sksewell@umich.edu
1885222Sksewell@umich.edu
1895222Sksewell@umich.eduvoid
1905222Sksewell@umich.eduMipsSystem::setMipsAccess(Addr access)
1915222Sksewell@umich.edu{
1925222Sksewell@umich.edu    Addr addr = 0;
1935222Sksewell@umich.edu    if (consoleSymtab->findAddress("m5MipsAccess", addr)) {
1945222Sksewell@umich.edu      //        virtPort.write(addr, htog(EV5::Phys2K0Seg(access)));
1955222Sksewell@umich.edu    } else
1965222Sksewell@umich.edu    panic("could not find m5MipsAccess\n");
1975222Sksewell@umich.edu    }
1985222Sksewell@umich.edu
1995222Sksewell@umich.edu#endif
2005222Sksewell@umich.edu
2015222Sksewell@umich.edubool
2025222Sksewell@umich.eduMipsSystem::breakpoint()
2035222Sksewell@umich.edu{
2045222Sksewell@umich.edu  return 0;
2055222Sksewell@umich.edu  //    return remoteGDB[0]->trap(MIPS_KENTRY_INT);
2065222Sksewell@umich.edu}
2075222Sksewell@umich.edu
2085222Sksewell@umich.eduvoid
2095222Sksewell@umich.eduMipsSystem::serialize(std::ostream &os)
2105222Sksewell@umich.edu{
2115222Sksewell@umich.edu    System::serialize(os);
2125222Sksewell@umich.edu    //    consoleSymtab->serialize("console_symtab", os);
2135222Sksewell@umich.edu}
2145222Sksewell@umich.edu
2155222Sksewell@umich.edu
2165222Sksewell@umich.eduvoid
2175222Sksewell@umich.eduMipsSystem::unserialize(Checkpoint *cp, const std::string &section)
2185222Sksewell@umich.edu{
2195222Sksewell@umich.edu    System::unserialize(cp,section);
2205222Sksewell@umich.edu    //    consoleSymtab->unserialize("console_symtab", cp, section);
2215222Sksewell@umich.edu}
2225222Sksewell@umich.edu
2235222Sksewell@umich.eduMipsSystem *
2245222Sksewell@umich.eduMipsSystemParams::create()
2255222Sksewell@umich.edu{
2265222Sksewell@umich.edu    return new MipsSystem(this);
2275222Sksewell@umich.edu}
2285222Sksewell@umich.edu
229