system.cc revision 7914
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/loader/object_file.hh" 375222Sksewell@umich.edu#include "base/loader/hex_file.hh" 385222Sksewell@umich.edu#include "base/loader/symtab.hh" 395222Sksewell@umich.edu#include "base/trace.hh" 405222Sksewell@umich.edu#include "mem/physical.hh" 415222Sksewell@umich.edu#include "params/MipsSystem.hh" 425222Sksewell@umich.edu#include "sim/byteswap.hh" 435222Sksewell@umich.edu 445222Sksewell@umich.edu 455222Sksewell@umich.eduusing namespace LittleEndianGuest; 466378Sgblack@eecs.umich.edu 475222Sksewell@umich.eduMipsSystem::MipsSystem(Params *p) : System(p) 485222Sksewell@umich.edu{ 495222Sksewell@umich.edu 505222Sksewell@umich.edu#if FULL_SYSTEM 515222Sksewell@umich.edu if (p->bare_iron == true) { 525222Sksewell@umich.edu hexFile = new HexFile(params()->hex_file_name); 536378Sgblack@eecs.umich.edu if (!hexFile->loadSections(functionalPort)) 545222Sksewell@umich.edu panic("Could not load hex file\n"); 555222Sksewell@umich.edu } 565222Sksewell@umich.edu 576378Sgblack@eecs.umich.edu Addr addr = 0; 585222Sksewell@umich.edu 595222Sksewell@umich.edu consoleSymtab = new SymbolTable; 605222Sksewell@umich.edu 615222Sksewell@umich.edu 626378Sgblack@eecs.umich.edu /** 635222Sksewell@umich.edu * Load the console code into memory 645222Sksewell@umich.edu */ 655222Sksewell@umich.edu // Load Console Code 665222Sksewell@umich.edu console = createObjectFile(params()->console); 676378Sgblack@eecs.umich.edu 685222Sksewell@umich.edu warn("console code is located at: %s\n", params()->console); 695222Sksewell@umich.edu 705222Sksewell@umich.edu if (console == NULL) 715222Sksewell@umich.edu fatal("Could not load console file %s", params()->console); 725222Sksewell@umich.edu //Load program sections into memory 735222Sksewell@umich.edu console->loadSections(functionalPort, loadAddrMask); 745222Sksewell@umich.edu 755222Sksewell@umich.edu //load symbols 765222Sksewell@umich.edu if (!console->loadGlobalSymbols(consoleSymtab)) 775222Sksewell@umich.edu panic("could not load console symbols\n"); 785222Sksewell@umich.edu 795222Sksewell@umich.edu if (!console->loadGlobalSymbols(debugSymbolTable)) 805222Sksewell@umich.edu panic("could not load console symbols\n"); 815222Sksewell@umich.edu 825222Sksewell@umich.edu 835222Sksewell@umich.edu#ifndef NDEBUG 845222Sksewell@umich.edu consolePanicEvent = addConsoleFuncEvent<BreakPCEvent>("panic"); 855222Sksewell@umich.edu#endif 865222Sksewell@umich.edu 875222Sksewell@umich.edu /** 885222Sksewell@umich.edu * Copy the osflags (kernel arguments) into the consoles 89 * memory. (Presently Linux does not use the console service 90 * routine to get these command line arguments, but Tru64 and 91 * others do.) 92 */ 93 if (consoleSymtab->findAddress("env_booted_osflags", addr)) { 94 warn("writing addr starting from %#x", addr); 95 virtPort->writeBlob(addr, (uint8_t*)params()->boot_osflags.c_str(), 96 strlen(params()->boot_osflags.c_str())); 97 } 98 99 /** 100 * Set the hardware reset parameter block system type and revision 101 * information to Tsunami. 102 */ 103 if (consoleSymtab->findAddress("m5_rpb", addr)) { 104 uint64_t data; 105 data = htog(params()->system_type); 106 virtPort->write(addr + 0x50, data); 107 data = htog(params()->system_rev); 108 virtPort->write(addr + 0x58, data); 109 } else { 110 panic("could not find hwrpb\n"); 111 } 112#endif 113} 114 115MipsSystem::~MipsSystem() 116{ 117} 118 119#if FULL_SYSTEM 120Addr 121MipsSystem::fixFuncEventAddr(Addr addr) 122{ 123 return addr; 124} 125 126void 127MipsSystem::setMipsAccess(Addr access) 128{} 129 130#endif 131 132bool 133MipsSystem::breakpoint() 134{ 135 return 0; 136} 137 138void 139MipsSystem::serialize(std::ostream &os) 140{ 141 System::serialize(os); 142} 143 144 145void 146MipsSystem::unserialize(Checkpoint *cp, const std::string §ion) 147{ 148 System::unserialize(cp,section); 149} 150 151MipsSystem * 152MipsSystemParams::create() 153{ 154 return new MipsSystem(this); 155} 156 157