system.hh revision 9153
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
322158SN/A#ifndef __ARCH_ALPHA_SYSTEM_HH__
332158SN/A#define __ARCH_ALPHA_SYSTEM_HH__
342158SN/A
352158SN/A#include <string>
362158SN/A#include <vector>
372158SN/A
382158SN/A#include "base/loader/symtab.hh"
392158SN/A#include "cpu/pc_event.hh"
402158SN/A#include "kern/system_events.hh"
414762Snate@binkert.org#include "params/AlphaSystem.hh"
422158SN/A#include "sim/sim_object.hh"
434762Snate@binkert.org#include "sim/system.hh"
442158SN/A
452158SN/Aclass AlphaSystem : public System
462158SN/A{
472158SN/A  public:
484762Snate@binkert.org    typedef AlphaSystemParams Params;
492158SN/A    AlphaSystem(Params *p);
502158SN/A    ~AlphaSystem();
512158SN/A
522158SN/A  public:
538706Sandreas.hansson@arm.com
548706Sandreas.hansson@arm.com    /**
558706Sandreas.hansson@arm.com     * Initialise the state of the system.
568706Sandreas.hansson@arm.com     */
578706Sandreas.hansson@arm.com    virtual void initState();
588706Sandreas.hansson@arm.com
595569Snate@binkert.org    /**
605569Snate@binkert.org     * Serialization stuff
615569Snate@binkert.org     */
622158SN/A    virtual void serialize(std::ostream &os);
632158SN/A    virtual void unserialize(Checkpoint *cp, const std::string &section);
642158SN/A
659153Snilay@cs.wisc.edu    /** Override startup() to provide a path to call setupFuncEvents()
668885SAli.Saidi@ARM.com     */
679153Snilay@cs.wisc.edu    virtual void startup();
688885SAli.Saidi@ARM.com
692158SN/A    /**
702158SN/A     * Set the m5AlphaAccess pointer in the console
712158SN/A     */
722158SN/A    void setAlphaAccess(Addr access);
732158SN/A
742158SN/A    /** console symbol table */
752158SN/A    SymbolTable *consoleSymtab;
762158SN/A
772158SN/A    /** pal symbol table */
782158SN/A    SymbolTable *palSymtab;
792158SN/A
802158SN/A    /** Object pointer for the console code */
812158SN/A    ObjectFile *console;
822158SN/A
832158SN/A    /** Object pointer for the PAL code */
842158SN/A    ObjectFile *pal;
852158SN/A
862158SN/A#ifndef NDEBUG
872158SN/A    /** Event to halt the simulator if the console calls panic() */
882158SN/A    BreakPCEvent *consolePanicEvent;
892158SN/A#endif
905569Snate@binkert.org
912158SN/A  protected:
928741Sgblack@eecs.umich.edu    Tick intrFreq;
938741Sgblack@eecs.umich.edu
942158SN/A    const Params *params() const { return (const Params *)_params; }
952158SN/A
968885SAli.Saidi@ARM.com
978885SAli.Saidi@ARM.com    /** Setup all the function events. Must be done after init() for Alpha since
988885SAli.Saidi@ARM.com     * fixFuncEvent() requires a function port
998885SAli.Saidi@ARM.com     */
1008885SAli.Saidi@ARM.com    virtual void setupFuncEvents();
1018885SAli.Saidi@ARM.com
1022158SN/A    /** Add a function-based event to PALcode. */
1032158SN/A    template <class T>
1045569Snate@binkert.org    T *
1055569Snate@binkert.org    addPalFuncEvent(const char *lbl)
1062158SN/A    {
1072158SN/A        return addFuncEvent<T>(palSymtab, lbl);
1082158SN/A    }
1092158SN/A
1102158SN/A    /** Add a function-based event to the console code. */
1112158SN/A    template <class T>
1125569Snate@binkert.org    T *
1135569Snate@binkert.org    addConsoleFuncEvent(const char *lbl)
1142158SN/A    {
1152158SN/A        return addFuncEvent<T>(consoleSymtab, lbl);
1162158SN/A    }
1172158SN/A
1182158SN/A    virtual Addr fixFuncEventAddr(Addr addr);
1198741Sgblack@eecs.umich.edu
1208741Sgblack@eecs.umich.edu  public:
1218741Sgblack@eecs.umich.edu    void setIntrFreq(Tick freq) { intrFreq = freq; }
1222158SN/A};
1232158SN/A
1245569Snate@binkert.org#endif // __ARCH_ALPHA_SYSTEM_HH__
1252158SN/A
126