system.cc revision 5268
15222Sksewell@umich.edu/*
25268Sksewell@umich.edu * Copyright (c) 2002-2005 The Regents of The University of Michigan
35254Sksewell@umich.edu * Copyright (c) 2007 MIPS Technologies, Inc.
45254Sksewell@umich.edu * All rights reserved.
55222Sksewell@umich.edu *
65254Sksewell@umich.edu * Redistribution and use in source and binary forms, with or without
75254Sksewell@umich.edu * modification, are permitted provided that the following conditions are
85254Sksewell@umich.edu * met: redistributions of source code must retain the above copyright
95254Sksewell@umich.edu * notice, this list of conditions and the following disclaimer;
105254Sksewell@umich.edu * redistributions in binary form must reproduce the above copyright
115254Sksewell@umich.edu * notice, this list of conditions and the following disclaimer in the
125254Sksewell@umich.edu * documentation and/or other materials provided with the distribution;
135254Sksewell@umich.edu * neither the name of the copyright holders nor the names of its
145254Sksewell@umich.edu * contributors may be used to endorse or promote products derived from
155254Sksewell@umich.edu * this software without specific prior written permission.
165222Sksewell@umich.edu *
175254Sksewell@umich.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
185254Sksewell@umich.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
195254Sksewell@umich.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
205254Sksewell@umich.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
215254Sksewell@umich.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
225254Sksewell@umich.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
235254Sksewell@umich.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
245254Sksewell@umich.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
255254Sksewell@umich.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
265254Sksewell@umich.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
275254Sksewell@umich.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
285222Sksewell@umich.edu *
295254Sksewell@umich.edu * Authors: Ali Saidi
305254Sksewell@umich.edu *          Nathan Binkert
315222Sksewell@umich.edu *          Jaidev Patwardhan
325222Sksewell@umich.edu */
335222Sksewell@umich.edu
345222Sksewell@umich.edu#include "arch/mips/system.hh"
355222Sksewell@umich.edu#include "arch/vtophys.hh"
365222Sksewell@umich.edu#include "base/remote_gdb.hh"
375222Sksewell@umich.edu#include "base/loader/object_file.hh"
385222Sksewell@umich.edu#include "base/loader/hex_file.hh"
395222Sksewell@umich.edu#include "base/loader/symtab.hh"
405222Sksewell@umich.edu#include "base/trace.hh"
415222Sksewell@umich.edu#include "mem/physical.hh"
425222Sksewell@umich.edu#include "params/MipsSystem.hh"
435222Sksewell@umich.edu#include "sim/byteswap.hh"
445222Sksewell@umich.edu
455222Sksewell@umich.edu
465222Sksewell@umich.eduusing namespace LittleEndianGuest;
475222Sksewell@umich.edu
485222Sksewell@umich.eduMipsSystem::MipsSystem(Params *p)
495222Sksewell@umich.edu    : System(p)
505222Sksewell@umich.edu{
515222Sksewell@umich.edu
525222Sksewell@umich.edu#if FULL_SYSTEM
535222Sksewell@umich.edu    if (p->bare_iron == true) {
545222Sksewell@umich.edu        hexFile = new HexFile(params()->hex_file_name);
555222Sksewell@umich.edu        if(!hexFile->loadSections(&functionalPort,MipsISA::LoadAddrMask))
565222Sksewell@umich.edu            panic("Could not load hex file\n");
575222Sksewell@umich.edu    }
585222Sksewell@umich.edu
595222Sksewell@umich.edu    Addr addr = 0;
605222Sksewell@umich.edu    /* Comment out old Alpha Based Code
615222Sksewell@umich.edu
625222Sksewell@umich.edu     Don't need the console before we start looking at booting linux */
635222Sksewell@umich.edu
645222Sksewell@umich.edu
655222Sksewell@umich.edu    consoleSymtab = new SymbolTable;
665222Sksewell@umich.edu
675222Sksewell@umich.edu
685222Sksewell@umich.edu    /**
695222Sksewell@umich.edu     * Load the console code into memory
705222Sksewell@umich.edu     */
715222Sksewell@umich.edu    //    Load Console Code
725222Sksewell@umich.edu    console = createObjectFile(params()->console);
735222Sksewell@umich.edu
745222Sksewell@umich.edu    warn("console code is located at: %s\n", params()->console);
755222Sksewell@umich.edu
765222Sksewell@umich.edu    if (console == NULL)
775222Sksewell@umich.edu        fatal("Could not load console file %s", params()->console);
785222Sksewell@umich.edu    //Load program sections into memory
795222Sksewell@umich.edu     console->loadSections(&functionalPort, MipsISA::LoadAddrMask);
805222Sksewell@umich.edu
815222Sksewell@umich.edu    //load symbols
825222Sksewell@umich.edu    if (!console->loadGlobalSymbols(consoleSymtab))
835222Sksewell@umich.edu        panic("could not load console symbols\n");
845222Sksewell@umich.edu
855222Sksewell@umich.edu    if (!console->loadGlobalSymbols(debugSymbolTable))
865222Sksewell@umich.edu        panic("could not load console symbols\n");
875222Sksewell@umich.edu
885222Sksewell@umich.edu
895222Sksewell@umich.edu#ifndef NDEBUG
905222Sksewell@umich.edu    consolePanicEvent = addConsoleFuncEvent<BreakPCEvent>("panic");
915222Sksewell@umich.edu#endif
925222Sksewell@umich.edu
935222Sksewell@umich.edu    /**
945222Sksewell@umich.edu     * Copy the osflags (kernel arguments) into the consoles
955222Sksewell@umich.edu     * memory. (Presently Linux does not use the console service
965222Sksewell@umich.edu     * routine to get these command line arguments, but Tru64 and
975222Sksewell@umich.edu     * others do.)
985222Sksewell@umich.edu     */
995222Sksewell@umich.edu    if (consoleSymtab->findAddress("env_booted_osflags", addr)) {
1005222Sksewell@umich.edu        warn("writing addr starting from %#x", addr);
1015222Sksewell@umich.edu        cout << "-" << endl;
1025222Sksewell@umich.edu        virtPort.writeBlob(addr, (uint8_t*)params()->boot_osflags.c_str(),
1035222Sksewell@umich.edu                strlen(params()->boot_osflags.c_str()));
1045222Sksewell@umich.edu    }
1055222Sksewell@umich.edu
1065222Sksewell@umich.edu    /**
1075222Sksewell@umich.edu     * Set the hardware reset parameter block system type and revision
1085222Sksewell@umich.edu     * information to Tsunami.
1095222Sksewell@umich.edu     */
1105222Sksewell@umich.edu    if (consoleSymtab->findAddress("m5_rpb", addr)) {
1115222Sksewell@umich.edu        uint64_t data;
1125222Sksewell@umich.edu        data = htog(params()->system_type);
1135222Sksewell@umich.edu        virtPort.write(addr+0x50, data);
1145222Sksewell@umich.edu        data = htog(params()->system_rev);
1155222Sksewell@umich.edu        virtPort.write(addr+0x58, data);
1165222Sksewell@umich.edu    } else
1175222Sksewell@umich.edu        panic("could not find hwrpb\n");
1185222Sksewell@umich.edu#endif
1195222Sksewell@umich.edu}
1205222Sksewell@umich.edu
1215222Sksewell@umich.eduMipsSystem::~MipsSystem()
1225222Sksewell@umich.edu{
1235222Sksewell@umich.edu}
1245222Sksewell@umich.edu#if FULL_SYSTEM
1255222Sksewell@umich.edu/**
1265222Sksewell@umich.edu * This function fixes up addresses that are used to match PCs for
1275222Sksewell@umich.edu * hooking simulator events on to target function executions.
1285222Sksewell@umich.edu *
1295222Sksewell@umich.edu * Mips binaries may have multiple global offset table (GOT)
1305222Sksewell@umich.edu * sections.  A function that uses the GOT starts with a
1315222Sksewell@umich.edu * two-instruction prolog which sets the global pointer (gp == r29) to
1325222Sksewell@umich.edu * the appropriate GOT section.  The proper gp value is calculated
1335222Sksewell@umich.edu * based on the function address, which must be passed by the caller
1345222Sksewell@umich.edu * in the procedure value register (pv aka t12 == r27).  This sequence
1355222Sksewell@umich.edu * looks like the following:
1365222Sksewell@umich.edu *
1375222Sksewell@umich.edu *			opcode Ra Rb offset
1385222Sksewell@umich.edu *	ldah gp,X(pv)     09   29 27   X
1395222Sksewell@umich.edu *	lda  gp,Y(gp)     08   29 29   Y
1405222Sksewell@umich.edu *
1415222Sksewell@umich.edu * for some constant offsets X and Y.  The catch is that the linker
1425222Sksewell@umich.edu * (or maybe even the compiler, I'm not sure) may recognize that the
1435222Sksewell@umich.edu * caller and callee are using the same GOT section, making this
1445222Sksewell@umich.edu * prolog redundant, and modify the call target to skip these
1455222Sksewell@umich.edu * instructions.  If we check for execution of the first instruction
1465222Sksewell@umich.edu * of a function (the one the symbol points to) to detect when to skip
1475222Sksewell@umich.edu * it, we'll miss all these modified calls.  It might work to
1485222Sksewell@umich.edu * unconditionally check for the third instruction, but not all
1495222Sksewell@umich.edu * functions have this prolog, and there's some chance that those
1505222Sksewell@umich.edu * first two instructions could have undesired consequences.  So we do
1515222Sksewell@umich.edu * the Right Thing and pattern-match the first two instructions of the
1525222Sksewell@umich.edu * function to decide where to patch.
1535222Sksewell@umich.edu *
1545222Sksewell@umich.edu * Eventually this code should be moved into an ISA-specific file.
1555222Sksewell@umich.edu */
1565222Sksewell@umich.edu
1575222Sksewell@umich.eduAddr
1585222Sksewell@umich.eduMipsSystem::fixFuncEventAddr(Addr addr)
1595222Sksewell@umich.edu{
1605222Sksewell@umich.edu  /*
1615222Sksewell@umich.edu    // mask for just the opcode, Ra, and Rb fields (not the offset)
1625222Sksewell@umich.edu    const uint32_t inst_mask = 0xffff0000;
1635222Sksewell@umich.edu    // ldah gp,X(pv): opcode 9, Ra = 29, Rb = 27
1645222Sksewell@umich.edu    const uint32_t gp_ldah_pattern = (9 << 26) | (29 << 21) | (27 << 16);
1655222Sksewell@umich.edu    // lda  gp,Y(gp): opcode 8, Ra = 29, rb = 29
1665222Sksewell@umich.edu    const uint32_t gp_lda_pattern  = (8 << 26) | (29 << 21) | (29 << 16);
1675222Sksewell@umich.edu
1685222Sksewell@umich.edu    uint32_t i1 = virtPort.read<uint32_t>(addr);
1695222Sksewell@umich.edu    uint32_t i2 = virtPort.read<uint32_t>(addr + sizeof(MipsISA::MachInst));
1705222Sksewell@umich.edu
1715222Sksewell@umich.edu    if ((i1 & inst_mask) == gp_ldah_pattern &&
1725222Sksewell@umich.edu        (i2 & inst_mask) == gp_lda_pattern) {
1735222Sksewell@umich.edu        Addr new_addr = addr + 2* sizeof(MipsISA::MachInst);
1745222Sksewell@umich.edu        DPRINTF(Loader, "fixFuncEventAddr: %p -> %p", addr, new_addr);
1755222Sksewell@umich.edu        return new_addr;
1765222Sksewell@umich.edu    } else {
1775222Sksewell@umich.edu        return addr;
1785222Sksewell@umich.edu        }*/
1795222Sksewell@umich.edu  return addr;
1805222Sksewell@umich.edu}
1815222Sksewell@umich.edu
1825222Sksewell@umich.edu
1835222Sksewell@umich.eduvoid
1845222Sksewell@umich.eduMipsSystem::setMipsAccess(Addr access)
1855222Sksewell@umich.edu{
1865222Sksewell@umich.edu    Addr addr = 0;
1875222Sksewell@umich.edu    if (consoleSymtab->findAddress("m5MipsAccess", addr)) {
1885222Sksewell@umich.edu      //        virtPort.write(addr, htog(EV5::Phys2K0Seg(access)));
1895222Sksewell@umich.edu    } else
1905222Sksewell@umich.edu    panic("could not find m5MipsAccess\n");
1915222Sksewell@umich.edu    }
1925222Sksewell@umich.edu
1935222Sksewell@umich.edu#endif
1945222Sksewell@umich.edu
1955222Sksewell@umich.edubool
1965222Sksewell@umich.eduMipsSystem::breakpoint()
1975222Sksewell@umich.edu{
1985222Sksewell@umich.edu  return 0;
1995222Sksewell@umich.edu  //    return remoteGDB[0]->trap(MIPS_KENTRY_INT);
2005222Sksewell@umich.edu}
2015222Sksewell@umich.edu
2025222Sksewell@umich.eduvoid
2035222Sksewell@umich.eduMipsSystem::serialize(std::ostream &os)
2045222Sksewell@umich.edu{
2055222Sksewell@umich.edu    System::serialize(os);
2065222Sksewell@umich.edu    //    consoleSymtab->serialize("console_symtab", os);
2075222Sksewell@umich.edu}
2085222Sksewell@umich.edu
2095222Sksewell@umich.edu
2105222Sksewell@umich.eduvoid
2115222Sksewell@umich.eduMipsSystem::unserialize(Checkpoint *cp, const std::string &section)
2125222Sksewell@umich.edu{
2135222Sksewell@umich.edu    System::unserialize(cp,section);
2145222Sksewell@umich.edu    //    consoleSymtab->unserialize("console_symtab", cp, section);
2155222Sksewell@umich.edu}
2165222Sksewell@umich.edu
2175222Sksewell@umich.eduMipsSystem *
2185222Sksewell@umich.eduMipsSystemParams::create()
2195222Sksewell@umich.edu{
2205222Sksewell@umich.edu    return new MipsSystem(this);
2215222Sksewell@umich.edu}
2225222Sksewell@umich.edu
223