system.hh revision 10494
12567SN/A/*
27650SAli.Saidi@ARM.com * Copyright (c) 2010, 2012-2013 ARM Limited
37650SAli.Saidi@ARM.com * All rights reserved
47650SAli.Saidi@ARM.com *
57650SAli.Saidi@ARM.com * The license below extends only to copyright in the software and shall
67650SAli.Saidi@ARM.com * not be construed as granting a license to any other intellectual
77650SAli.Saidi@ARM.com * property including but not limited to intellectual property relating
87650SAli.Saidi@ARM.com * to a hardware implementation of the functionality of the software
97650SAli.Saidi@ARM.com * licensed hereunder.  You may use the software subject to the license
107650SAli.Saidi@ARM.com * terms below provided that you ensure that this notice is replicated
117650SAli.Saidi@ARM.com * unmodified and in its entirety in all distributions of the software,
127650SAli.Saidi@ARM.com * modified or unmodified, in source code or in binary form.
137650SAli.Saidi@ARM.com *
142567SN/A * Copyright (c) 2002-2005 The Regents of The University of Michigan
152567SN/A * All rights reserved.
162567SN/A *
172567SN/A * Redistribution and use in source and binary forms, with or without
182567SN/A * modification, are permitted provided that the following conditions are
192567SN/A * met: redistributions of source code must retain the above copyright
202567SN/A * notice, this list of conditions and the following disclaimer;
212567SN/A * redistributions in binary form must reproduce the above copyright
222567SN/A * notice, this list of conditions and the following disclaimer in the
232567SN/A * documentation and/or other materials provided with the distribution;
242567SN/A * neither the name of the copyright holders nor the names of its
252567SN/A * contributors may be used to endorse or promote products derived from
262567SN/A * this software without specific prior written permission.
272567SN/A *
282567SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
292567SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
302567SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
312567SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
322567SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
332567SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
342567SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
352567SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
362567SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
372567SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
382567SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
392665SN/A *
402665SN/A * Authors: Ali Saidi
412567SN/A */
422567SN/A
436757SAli.Saidi@ARM.com#ifndef __ARCH_ARM_SYSTEM_HH__
446757SAli.Saidi@ARM.com#define __ARCH_ARM_SYSTEM_HH__
452567SN/A
462567SN/A#include <string>
472567SN/A#include <vector>
482567SN/A
498229Snate@binkert.org#include "dev/arm/generic_timer.hh"
506757SAli.Saidi@ARM.com#include "kern/linux/events.hh"
512567SN/A#include "params/ArmSystem.hh"
522567SN/A#include "sim/sim_object.hh"
532567SN/A#include "sim/system.hh"
546757SAli.Saidi@ARM.com
552567SN/Aclass ThreadContext;
568285SPrakash.Ramrakhyani@arm.com
577650SAli.Saidi@ARM.comclass ArmSystem : public System
587650SAli.Saidi@ARM.com{
597650SAli.Saidi@ARM.com  protected:
607650SAli.Saidi@ARM.com    /**
617650SAli.Saidi@ARM.com     * PC based event to skip the dprink() call and emulate its
627650SAli.Saidi@ARM.com     * functionality
638286SAli.Saidi@ARM.com     */
648286SAli.Saidi@ARM.com    Linux::DebugPrintkEvent *debugPrintkEvent;
658286SAli.Saidi@ARM.com
668286SAli.Saidi@ARM.com    /**
678286SAli.Saidi@ARM.com     * Pointer to the bootloader object
682567SN/A     */
696757SAli.Saidi@ARM.com    ObjectFile *bootldr;
708286SAli.Saidi@ARM.com
718286SAli.Saidi@ARM.com    /**
728286SAli.Saidi@ARM.com     * True if this system implements the Security Extensions
738286SAli.Saidi@ARM.com     */
748286SAli.Saidi@ARM.com    const bool _haveSecurity;
758286SAli.Saidi@ARM.com
766757SAli.Saidi@ARM.com    /**
776757SAli.Saidi@ARM.com     * True if this system implements the Large Physical Address Extension
788286SAli.Saidi@ARM.com     */
798706Sandreas.hansson@arm.com    const bool _haveLPAE;
808706Sandreas.hansson@arm.com
818706Sandreas.hansson@arm.com    /**
828706Sandreas.hansson@arm.com     * True if this system implements the virtualization Extensions
838286SAli.Saidi@ARM.com     */
848527SAli.Saidi@ARM.com    const bool _haveVirtualization;
858527SAli.Saidi@ARM.com
868527SAli.Saidi@ARM.com    /**
878527SAli.Saidi@ARM.com     * True if this system implements the Generic Timer extension
888527SAli.Saidi@ARM.com     */
898527SAli.Saidi@ARM.com    const bool _haveGenericTimer;
908527SAli.Saidi@ARM.com
918527SAli.Saidi@ARM.com    /**
928527SAli.Saidi@ARM.com     * Pointer to the Generic Timer wrapper.
933553SN/A     */
943553SN/A    GenericTimer *_genericTimer;
957693SAli.Saidi@ARM.com
967693SAli.Saidi@ARM.com    /**
977693SAli.Saidi@ARM.com     * True if the register width of the highest implemented exception level is
987720Sgblack@eecs.umich.edu     * 64 bits (ARMv8)
993553SN/A     */
1003553SN/A    bool _highestELIs64;
1012567SN/A
1022567SN/A    /**
1032567SN/A     * Reset address if the highest implemented exception level is 64 bits
1042567SN/A     * (ARMv8)
105     */
106    const Addr _resetAddr64;
107
108    /**
109     * Supported physical address range in bits if the highest implemented
110     * exception level is 64 bits (ARMv8)
111     */
112    const uint8_t _physAddrRange64;
113
114    /**
115     * True if ASID is 16 bits in AArch64 (ARMv8)
116     */
117    const bool _haveLargeAsid64;
118
119  public:
120    typedef ArmSystemParams Params;
121    const Params *
122    params() const
123    {
124        return dynamic_cast<const Params *>(_params);
125    }
126
127    ArmSystem(Params *p);
128    ~ArmSystem();
129
130    /**
131     * Initialise the system
132     */
133    virtual void initState();
134
135    /** Check if an address should be uncacheable until all caches are enabled.
136     * This exits because coherence on some addresses at boot is maintained via
137     * sw coherence until the caches are enbaled. Since we don't support sw
138     * coherence operations in gem5, this is a method that allows a system
139     * type to designate certain addresses that should remain uncachebale
140     * for a while.
141     */
142    virtual bool adderBootUncacheable(Addr a) { return false; }
143
144    virtual Addr fixFuncEventAddr(Addr addr)
145    {
146        // Remove the low bit that thumb symbols have set
147        // but that aren't actually odd aligned
148        if (addr & 0x1)
149            return addr & ~1;
150        return addr;
151    }
152
153    /** true if this a multiprocessor system */
154    bool multiProc;
155
156    /** Returns true if this system implements the Security Extensions */
157    bool haveSecurity() const { return _haveSecurity; }
158
159    /** Returns true if this system implements the Large Physical Address
160     * Extension */
161    bool haveLPAE() const { return _haveLPAE; }
162
163    /** Returns true if this system implements the virtualization
164      * Extensions
165      */
166    bool haveVirtualization() const { return _haveVirtualization; }
167
168    /** Returns true if this system implements the Generic Timer extension. */
169    bool haveGenericTimer() const { return _haveGenericTimer; }
170
171    /** Sets the pointer to the Generic Timer. */
172    void setGenericTimer(GenericTimer *generic_timer)
173    {
174        _genericTimer = generic_timer;
175    }
176
177    /** Returns a pointer to the system counter. */
178    GenericTimer::SystemCounter *getSystemCounter() const;
179
180    /** Returns a pointer to the appropriate architected timer. */
181    GenericTimer::ArchTimer *getArchTimer(int cpu_id) const;
182
183    /** Returns true if the register width of the highest implemented exception
184     * level is 64 bits (ARMv8) */
185    bool highestELIs64() const { return _highestELIs64; }
186
187    /** Returns the highest implemented exception level */
188    ExceptionLevel highestEL() const
189    {
190        if (_haveSecurity)
191            return EL3;
192        // @todo: uncomment this to enable Virtualization
193        // if (_haveVirtualization)
194        //     return EL2;
195        return EL1;
196    }
197
198    /** Returns the reset address if the highest implemented exception level is
199     * 64 bits (ARMv8) */
200    Addr resetAddr64() const { return _resetAddr64; }
201
202    /** Returns true if ASID is 16 bits in AArch64 (ARMv8) */
203    bool haveLargeAsid64() const { return _haveLargeAsid64; }
204
205    /** Returns the supported physical address range in bits if the highest
206     * implemented exception level is 64 bits (ARMv8) */
207    uint8_t physAddrRange64() const { return _physAddrRange64; }
208
209    /** Returns the supported physical address range in bits */
210    uint8_t physAddrRange() const
211    {
212        if (_highestELIs64)
213            return _physAddrRange64;
214        if (_haveLPAE)
215            return 40;
216        return 32;
217    }
218
219    /** Returns the physical address mask */
220    Addr physAddrMask() const
221    {
222        return mask(physAddrRange());
223    }
224
225    /** Returns true if the system of a specific thread context implements the
226     * Security Extensions
227     */
228    static bool haveSecurity(ThreadContext *tc);
229
230    /** Returns true if the system of a specific thread context implements the
231     * virtualization Extensions
232     */
233    static bool haveVirtualization(ThreadContext *tc);
234
235    /** Returns true if the system of a specific thread context implements the
236     * Large Physical Address Extension
237     */
238    static bool haveLPAE(ThreadContext *tc);
239
240    /** Returns true if the register width of the highest implemented exception
241     * level for the system of a specific thread context is 64 bits (ARMv8)
242     */
243    static bool highestELIs64(ThreadContext *tc);
244
245    /** Returns the highest implemented exception level for the system of a
246     * specific thread context
247     */
248    static ExceptionLevel highestEL(ThreadContext *tc);
249
250    /** Returns the reset address if the highest implemented exception level for
251     * the system of a specific thread context is 64 bits (ARMv8)
252     */
253    static Addr resetAddr64(ThreadContext *tc);
254
255    /** Returns the supported physical address range in bits for the system of a
256     * specific thread context
257     */
258    static uint8_t physAddrRange(ThreadContext *tc);
259
260    /** Returns the physical address mask for the system of a specific thread
261     * context
262     */
263    static Addr physAddrMask(ThreadContext *tc);
264
265    /** Returns true if ASID is 16 bits for the system of a specific thread
266     * context while in AArch64 (ARMv8) */
267    static bool haveLargeAsid64(ThreadContext *tc);
268
269};
270
271#endif
272
273