system.hh revision 11911
12817Sksewell@umich.edu/*
22817Sksewell@umich.edu * Copyright (c) 2010, 2012-2013, 2015-2016 ARM Limited
32817Sksewell@umich.edu * All rights reserved
42817Sksewell@umich.edu *
52817Sksewell@umich.edu * The license below extends only to copyright in the software and shall
62817Sksewell@umich.edu * not be construed as granting a license to any other intellectual
72817Sksewell@umich.edu * property including but not limited to intellectual property relating
82817Sksewell@umich.edu * to a hardware implementation of the functionality of the software
92817Sksewell@umich.edu * licensed hereunder.  You may use the software subject to the license
102817Sksewell@umich.edu * terms below provided that you ensure that this notice is replicated
112817Sksewell@umich.edu * unmodified and in its entirety in all distributions of the software,
122817Sksewell@umich.edu * modified or unmodified, in source code or in binary form.
132817Sksewell@umich.edu *
142817Sksewell@umich.edu * Copyright (c) 2002-2005 The Regents of The University of Michigan
152817Sksewell@umich.edu * All rights reserved.
162817Sksewell@umich.edu *
172817Sksewell@umich.edu * Redistribution and use in source and binary forms, with or without
182817Sksewell@umich.edu * modification, are permitted provided that the following conditions are
192817Sksewell@umich.edu * met: redistributions of source code must retain the above copyright
202817Sksewell@umich.edu * notice, this list of conditions and the following disclaimer;
212817Sksewell@umich.edu * redistributions in binary form must reproduce the above copyright
222817Sksewell@umich.edu * notice, this list of conditions and the following disclaimer in the
232817Sksewell@umich.edu * documentation and/or other materials provided with the distribution;
242817Sksewell@umich.edu * neither the name of the copyright holders nor the names of its
252817Sksewell@umich.edu * contributors may be used to endorse or promote products derived from
262817Sksewell@umich.edu * this software without specific prior written permission.
272817Sksewell@umich.edu *
282817Sksewell@umich.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
294202Sbinkertn@umich.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
302817Sksewell@umich.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
312817Sksewell@umich.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
322817Sksewell@umich.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
334202Sbinkertn@umich.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
342817Sksewell@umich.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
354202Sbinkertn@umich.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
364202Sbinkertn@umich.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
374202Sbinkertn@umich.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
384202Sbinkertn@umich.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
394202Sbinkertn@umich.edu *
404202Sbinkertn@umich.edu * Authors: Ali Saidi
414202Sbinkertn@umich.edu */
424202Sbinkertn@umich.edu
434202Sbinkertn@umich.edu#ifndef __ARCH_ARM_SYSTEM_HH__
444202Sbinkertn@umich.edu#define __ARCH_ARM_SYSTEM_HH__
454202Sbinkertn@umich.edu
464202Sbinkertn@umich.edu#include <memory>
474202Sbinkertn@umich.edu#include <string>
484202Sbinkertn@umich.edu#include <vector>
494202Sbinkertn@umich.edu
504202Sbinkertn@umich.edu#include "kern/linux/events.hh"
514202Sbinkertn@umich.edu#include "params/ArmSystem.hh"
524202Sbinkertn@umich.edu#include "params/GenericArmSystem.hh"
534202Sbinkertn@umich.edu#include "sim/sim_object.hh"
542817Sksewell@umich.edu#include "sim/system.hh"
554202Sbinkertn@umich.edu
564202Sbinkertn@umich.educlass GenericTimer;
574202Sbinkertn@umich.educlass ThreadContext;
584202Sbinkertn@umich.edu
594202Sbinkertn@umich.educlass ArmSystem : public System
604202Sbinkertn@umich.edu{
614202Sbinkertn@umich.edu  protected:
624202Sbinkertn@umich.edu    /**
634202Sbinkertn@umich.edu     * PC based event to skip the dprink() call and emulate its
644202Sbinkertn@umich.edu     * functionality
654202Sbinkertn@umich.edu     */
664202Sbinkertn@umich.edu    Linux::DebugPrintkEvent *debugPrintkEvent;
674202Sbinkertn@umich.edu
684202Sbinkertn@umich.edu    /** Bootloaders */
694202Sbinkertn@umich.edu    std::vector<std::unique_ptr<ObjectFile>> bootLoaders;
704202Sbinkertn@umich.edu
714202Sbinkertn@umich.edu    /**
722817Sksewell@umich.edu     * Pointer to the bootloader object
734202Sbinkertn@umich.edu     */
744202Sbinkertn@umich.edu    ObjectFile *bootldr;
752817Sksewell@umich.edu
764202Sbinkertn@umich.edu    /**
774202Sbinkertn@umich.edu     * True if this system implements the Security Extensions
784202Sbinkertn@umich.edu     */
794202Sbinkertn@umich.edu    const bool _haveSecurity;
804202Sbinkertn@umich.edu
812817Sksewell@umich.edu    /**
82     * True if this system implements the Large Physical Address Extension
83     */
84    const bool _haveLPAE;
85
86    /**
87     * True if this system implements the virtualization Extensions
88     */
89    const bool _haveVirtualization;
90
91    /**
92     * Pointer to the Generic Timer wrapper.
93     */
94    GenericTimer *_genericTimer;
95
96    /**
97     * True if the register width of the highest implemented exception level is
98     * 64 bits (ARMv8)
99     */
100    bool _highestELIs64;
101
102    /**
103     * Reset address if the highest implemented exception level is 64 bits
104     * (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  protected:
120    /**
121     * Get a boot loader that matches the kernel.
122     *
123     * @param obj Kernel binary
124     * @return Pointer to boot loader ObjectFile or nullptr if there
125     *         is no matching boot loader.
126     */
127    ObjectFile *getBootLoader(ObjectFile *const obj);
128
129  public:
130    typedef ArmSystemParams Params;
131    const Params *
132    params() const
133    {
134        return dynamic_cast<const Params *>(_params);
135    }
136
137    ArmSystem(Params *p);
138    ~ArmSystem();
139
140    /**
141     * Initialise the system
142     */
143    virtual void initState();
144
145    virtual Addr fixFuncEventAddr(Addr addr)
146    {
147        // Remove the low bit that thumb symbols have set
148        // but that aren't actually odd aligned
149        if (addr & 0x1)
150            return addr & ~1;
151        return addr;
152    }
153
154    /** true if this a multiprocessor system */
155    bool multiProc;
156
157    /** Returns true if this system implements the Security Extensions */
158    bool haveSecurity() const { return _haveSecurity; }
159
160    /** Returns true if this system implements the Large Physical Address
161     * Extension */
162    bool haveLPAE() const { return _haveLPAE; }
163
164    /** Returns true if this system implements the virtualization
165      * Extensions
166      */
167    bool haveVirtualization() const { return _haveVirtualization; }
168
169    /** Sets the pointer to the Generic Timer. */
170    void setGenericTimer(GenericTimer *generic_timer)
171    {
172        _genericTimer = generic_timer;
173    }
174
175    /** Get a pointer to the system's generic timer model */
176    GenericTimer *getGenericTimer() const { return _genericTimer; }
177
178    /** Returns true if the register width of the highest implemented exception
179     * level is 64 bits (ARMv8) */
180    bool highestELIs64() const { return _highestELIs64; }
181
182    /** Returns the highest implemented exception level */
183    ExceptionLevel highestEL() const
184    {
185        if (_haveSecurity)
186            return EL3;
187        if (_haveVirtualization)
188            return EL2;
189        return EL1;
190    }
191
192    /** Returns the reset address if the highest implemented exception level is
193     * 64 bits (ARMv8) */
194    Addr resetAddr64() const { return _resetAddr64; }
195
196    /** Returns true if ASID is 16 bits in AArch64 (ARMv8) */
197    bool haveLargeAsid64() const { return _haveLargeAsid64; }
198
199    /** Returns the supported physical address range in bits if the highest
200     * implemented exception level is 64 bits (ARMv8) */
201    uint8_t physAddrRange64() const { return _physAddrRange64; }
202
203    /** Returns the supported physical address range in bits */
204    uint8_t physAddrRange() const
205    {
206        if (_highestELIs64)
207            return _physAddrRange64;
208        if (_haveLPAE)
209            return 40;
210        return 32;
211    }
212
213    /** Returns the physical address mask */
214    Addr physAddrMask() const
215    {
216        return mask(physAddrRange());
217    }
218
219    /** Returns true if the system of a specific thread context implements the
220     * Security Extensions
221     */
222    static bool haveSecurity(ThreadContext *tc);
223
224    /** Returns true if the system of a specific thread context implements the
225     * virtualization Extensions
226     */
227    static bool haveVirtualization(ThreadContext *tc);
228
229    /** Returns true if the system of a specific thread context implements the
230     * Large Physical Address Extension
231     */
232    static bool haveLPAE(ThreadContext *tc);
233
234    /** Returns true if the register width of the highest implemented exception
235     * level for the system of a specific thread context is 64 bits (ARMv8)
236     */
237    static bool highestELIs64(ThreadContext *tc);
238
239    /** Returns the highest implemented exception level for the system of a
240     * specific thread context
241     */
242    static ExceptionLevel highestEL(ThreadContext *tc);
243
244    /** Returns the reset address if the highest implemented exception level for
245     * the system of a specific thread context is 64 bits (ARMv8)
246     */
247    static Addr resetAddr64(ThreadContext *tc);
248
249    /** Returns the supported physical address range in bits for the system of a
250     * specific thread context
251     */
252    static uint8_t physAddrRange(ThreadContext *tc);
253
254    /** Returns the physical address mask for the system of a specific thread
255     * context
256     */
257    static Addr physAddrMask(ThreadContext *tc);
258
259    /** Returns true if ASID is 16 bits for the system of a specific thread
260     * context while in AArch64 (ARMv8) */
261    static bool haveLargeAsid64(ThreadContext *tc);
262};
263
264class GenericArmSystem : public ArmSystem
265{
266  public:
267    typedef GenericArmSystemParams Params;
268    const Params *
269    params() const
270    {
271        return dynamic_cast<const Params *>(_params);
272    }
273
274    GenericArmSystem(Params *p) : ArmSystem(p) {};
275    virtual ~GenericArmSystem() {};
276
277    /**
278     * Initialise the system
279     */
280    virtual void initState();
281};
282
283#endif
284