system.hh revision 10494
12139SN/A/*
22139SN/A * Copyright (c) 2010, 2012-2013 ARM Limited
32139SN/A * All rights reserved
42139SN/A *
52139SN/A * The license below extends only to copyright in the software and shall
62139SN/A * not be construed as granting a license to any other intellectual
72139SN/A * property including but not limited to intellectual property relating
82139SN/A * to a hardware implementation of the functionality of the software
92139SN/A * licensed hereunder.  You may use the software subject to the license
102139SN/A * terms below provided that you ensure that this notice is replicated
112139SN/A * unmodified and in its entirety in all distributions of the software,
122139SN/A * modified or unmodified, in source code or in binary form.
132139SN/A *
142139SN/A * Copyright (c) 2002-2005 The Regents of The University of Michigan
152139SN/A * All rights reserved.
162139SN/A *
172139SN/A * Redistribution and use in source and binary forms, with or without
182139SN/A * modification, are permitted provided that the following conditions are
192139SN/A * met: redistributions of source code must retain the above copyright
202139SN/A * notice, this list of conditions and the following disclaimer;
212139SN/A * redistributions in binary form must reproduce the above copyright
222139SN/A * notice, this list of conditions and the following disclaimer in the
232139SN/A * documentation and/or other materials provided with the distribution;
242139SN/A * neither the name of the copyright holders nor the names of its
252139SN/A * contributors may be used to endorse or promote products derived from
262139SN/A * this software without specific prior written permission.
272139SN/A *
282665Ssaidi@eecs.umich.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
292665Ssaidi@eecs.umich.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
302139SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
314202Sbinkertn@umich.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
322139SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
334202Sbinkertn@umich.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
342152SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
352152SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
362139SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
372139SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
382139SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
392139SN/A *
402139SN/A * Authors: Ali Saidi
412152SN/A */
422152SN/A
432139SN/A#ifndef __ARCH_ARM_SYSTEM_HH__
442139SN/A#define __ARCH_ARM_SYSTEM_HH__
452139SN/A
464781Snate@binkert.org#include <string>
474781Snate@binkert.org#include <vector>
487799Sgblack@eecs.umich.edu
494781Snate@binkert.org#include "dev/arm/generic_timer.hh"
504781Snate@binkert.org#include "kern/linux/events.hh"
513170Sstever@eecs.umich.edu#include "params/ArmSystem.hh"
525664Sgblack@eecs.umich.edu#include "sim/sim_object.hh"
533806Ssaidi@eecs.umich.edu#include "sim/system.hh"
546179Sksewell@umich.edu
554781Snate@binkert.orgclass ThreadContext;
564781Snate@binkert.org
576329Sgblack@eecs.umich.educlass ArmSystem : public System
584781Snate@binkert.org{
594781Snate@binkert.org  protected:
604781Snate@binkert.org    /**
614781Snate@binkert.org     * PC based event to skip the dprink() call and emulate its
624781Snate@binkert.org     * functionality
634781Snate@binkert.org     */
642139SN/A    Linux::DebugPrintkEvent *debugPrintkEvent;
652139SN/A
663546Sgblack@eecs.umich.edu    /**
674202Sbinkertn@umich.edu     * Pointer to the bootloader object
682152SN/A     */
692152SN/A    ObjectFile *bootldr;
702152SN/A
712152SN/A    /**
722152SN/A     * True if this system implements the Security Extensions
732152SN/A     */
742152SN/A    const bool _haveSecurity;
752152SN/A
762152SN/A    /**
772152SN/A     * True if this system implements the Large Physical Address Extension
782152SN/A     */
792152SN/A    const bool _haveLPAE;
802504SN/A
812504SN/A    /**
822504SN/A     * True if this system implements the virtualization Extensions
832504SN/A     */
842152SN/A    const bool _haveVirtualization;
852504SN/A
862152SN/A    /**
872152SN/A     * True if this system implements the Generic Timer extension
882152SN/A     */
892152SN/A    const bool _haveGenericTimer;
902152SN/A
912152SN/A    /**
926993Snate@binkert.org     * Pointer to the Generic Timer wrapper.
936993Snate@binkert.org     */
946993Snate@binkert.org    GenericTimer *_genericTimer;
956993Snate@binkert.org
966993Snate@binkert.org    /**
976993Snate@binkert.org     * True if the register width of the highest implemented exception level is
986993Snate@binkert.org     * 64 bits (ARMv8)
996993Snate@binkert.org     */
1006993Snate@binkert.org    bool _highestELIs64;
1016993Snate@binkert.org
1026993Snate@binkert.org    /**
1036993Snate@binkert.org     * Reset address if the highest implemented exception level is 64 bits
1046993Snate@binkert.org     * (ARMv8)
1056993Snate@binkert.org     */
1066993Snate@binkert.org    const Addr _resetAddr64;
1076993Snate@binkert.org
1086993Snate@binkert.org    /**
1096998Snate@binkert.org     * Supported physical address range in bits if the highest implemented
1106998Snate@binkert.org     * exception level is 64 bits (ARMv8)
1116998Snate@binkert.org     */
1127756SAli.Saidi@ARM.com    const uint8_t _physAddrRange64;
1136993Snate@binkert.org
1146993Snate@binkert.org    /**
1156993Snate@binkert.org     * True if ASID is 16 bits in AArch64 (ARMv8)
1166993Snate@binkert.org     */
1176993Snate@binkert.org    const bool _haveLargeAsid64;
1186993Snate@binkert.org
1196993Snate@binkert.org  public:
1206993Snate@binkert.org    typedef ArmSystemParams Params;
1217816Ssteve.reinhardt@amd.com    const Params *
1222152SN/A    params() const
1232766Sktlim@umich.edu    {
1242766Sktlim@umich.edu        return dynamic_cast<const Params *>(_params);
1256993Snate@binkert.org    }
1262152SN/A
1272152SN/A    ArmSystem(Params *p);
1285944Sgblack@eecs.umich.edu    ~ArmSystem();
1295944Sgblack@eecs.umich.edu
1305944Sgblack@eecs.umich.edu    /**
1315944Sgblack@eecs.umich.edu     * Initialise the system
1325944Sgblack@eecs.umich.edu     */
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