system.cc revision 5566
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" 368229Snate@binkert.org#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 466378Sgblack@eecs.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 536378Sgblack@eecs.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"); 576378Sgblack@eecs.umich.edu } 585222Sksewell@umich.edu 595222Sksewell@umich.edu Addr addr = 0; 605222Sksewell@umich.edu /* Comment out old Alpha Based Code 615222Sksewell@umich.edu 626378Sgblack@eecs.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 676378Sgblack@eecs.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 89#ifndef NDEBUG 90 consolePanicEvent = addConsoleFuncEvent<BreakPCEvent>("panic"); 91#endif 92 93 /** 94 * Copy the osflags (kernel arguments) into the consoles 95 * memory. (Presently Linux does not use the console service 96 * routine to get these command line arguments, but Tru64 and 97 * others do.) 98 */ 99 if (consoleSymtab->findAddress("env_booted_osflags", addr)) { 100 warn("writing addr starting from %#x", addr); 101 cout << "-" << endl; 102 virtPort.writeBlob(addr, (uint8_t*)params()->boot_osflags.c_str(), 103 strlen(params()->boot_osflags.c_str())); 104 } 105 106 /** 107 * Set the hardware reset parameter block system type and revision 108 * information to Tsunami. 109 */ 110 if (consoleSymtab->findAddress("m5_rpb", addr)) { 111 uint64_t data; 112 data = htog(params()->system_type); 113 virtPort.write(addr+0x50, data); 114 data = htog(params()->system_rev); 115 virtPort.write(addr+0x58, data); 116 } else 117 panic("could not find hwrpb\n"); 118#endif 119} 120 121MipsSystem::~MipsSystem() 122{ 123} 124#if FULL_SYSTEM 125/** 126 * This function fixes up addresses that are used to match PCs for 127 * hooking simulator events on to target function executions. 128 * 129 * Mips binaries may have multiple global offset table (GOT) 130 * sections. A function that uses the GOT starts with a 131 * two-instruction prolog which sets the global pointer (gp == r29) to 132 * the appropriate GOT section. The proper gp value is calculated 133 * based on the function address, which must be passed by the caller 134 * in the procedure value register (pv aka t12 == r27). This sequence 135 * looks like the following: 136 * 137 * opcode Ra Rb offset 138 * ldah gp,X(pv) 09 29 27 X 139 * lda gp,Y(gp) 08 29 29 Y 140 * 141 * for some constant offsets X and Y. The catch is that the linker 142 * (or maybe even the compiler, I'm not sure) may recognize that the 143 * caller and callee are using the same GOT section, making this 144 * prolog redundant, and modify the call target to skip these 145 * instructions. If we check for execution of the first instruction 146 * of a function (the one the symbol points to) to detect when to skip 147 * it, we'll miss all these modified calls. It might work to 148 * unconditionally check for the third instruction, but not all 149 * functions have this prolog, and there's some chance that those 150 * first two instructions could have undesired consequences. So we do 151 * the Right Thing and pattern-match the first two instructions of the 152 * function to decide where to patch. 153 * 154 * Eventually this code should be moved into an ISA-specific file. 155 */ 156 157Addr 158MipsSystem::fixFuncEventAddr(Addr addr) 159{ 160 /* 161 // mask for just the opcode, Ra, and Rb fields (not the offset) 162 const uint32_t inst_mask = 0xffff0000; 163 // ldah gp,X(pv): opcode 9, Ra = 29, Rb = 27 164 const uint32_t gp_ldah_pattern = (9 << 26) | (29 << 21) | (27 << 16); 165 // lda gp,Y(gp): opcode 8, Ra = 29, rb = 29 166 const uint32_t gp_lda_pattern = (8 << 26) | (29 << 21) | (29 << 16); 167 168 uint32_t i1 = virtPort.read<uint32_t>(addr); 169 uint32_t i2 = virtPort.read<uint32_t>(addr + sizeof(MipsISA::MachInst)); 170 171 if ((i1 & inst_mask) == gp_ldah_pattern && 172 (i2 & inst_mask) == gp_lda_pattern) { 173 Addr new_addr = addr + 2* sizeof(MipsISA::MachInst); 174 DPRINTF(Loader, "fixFuncEventAddr: %p -> %p", addr, new_addr); 175 return new_addr; 176 } else { 177 return addr; 178 }*/ 179 return addr; 180} 181 182 183void 184MipsSystem::setMipsAccess(Addr access) 185{ 186 Addr addr = 0; 187 if (consoleSymtab->findAddress("m5MipsAccess", addr)) { 188 // virtPort.write(addr, htog(AlphaISA::Phys2K0Seg(access))); 189 } else 190 panic("could not find m5MipsAccess\n"); 191 } 192 193#endif 194 195bool 196MipsSystem::breakpoint() 197{ 198 return 0; 199 // return remoteGDB[0]->trap(MIPS_KENTRY_INT); 200} 201 202void 203MipsSystem::serialize(std::ostream &os) 204{ 205 System::serialize(os); 206 // consoleSymtab->serialize("console_symtab", os); 207} 208 209 210void 211MipsSystem::unserialize(Checkpoint *cp, const std::string §ion) 212{ 213 System::unserialize(cp,section); 214 // consoleSymtab->unserialize("console_symtab", cp, section); 215} 216 217MipsSystem * 218MipsSystemParams::create() 219{ 220 return new MipsSystem(this); 221} 222 223