system.hh (9050:ed4378739b6e) | system.hh (10037:5cac77888310) |
---|---|
1/* | 1/* |
2 * Copyright (c) 2010 ARM Limited | 2 * Copyright (c) 2010, 2012-2013 ARM Limited |
3 * All rights reserved 4 * 5 * The license below extends only to copyright in the software and shall 6 * not be construed as granting a license to any other intellectual 7 * property including but not limited to intellectual property relating 8 * to a hardware implementation of the functionality of the software 9 * licensed hereunder. You may use the software subject to the license 10 * terms below provided that you ensure that this notice is replicated --- 30 unchanged lines hidden (view full) --- 41 */ 42 43#ifndef __ARCH_ARM_SYSTEM_HH__ 44#define __ARCH_ARM_SYSTEM_HH__ 45 46#include <string> 47#include <vector> 48 | 3 * All rights reserved 4 * 5 * The license below extends only to copyright in the software and shall 6 * not be construed as granting a license to any other intellectual 7 * property including but not limited to intellectual property relating 8 * to a hardware implementation of the functionality of the software 9 * licensed hereunder. You may use the software subject to the license 10 * terms below provided that you ensure that this notice is replicated --- 30 unchanged lines hidden (view full) --- 41 */ 42 43#ifndef __ARCH_ARM_SYSTEM_HH__ 44#define __ARCH_ARM_SYSTEM_HH__ 45 46#include <string> 47#include <vector> 48 |
49#include "dev/arm/generic_timer.hh" |
|
49#include "kern/linux/events.hh" 50#include "params/ArmSystem.hh" 51#include "sim/sim_object.hh" 52#include "sim/system.hh" 53 | 50#include "kern/linux/events.hh" 51#include "params/ArmSystem.hh" 52#include "sim/sim_object.hh" 53#include "sim/system.hh" 54 |
55class ThreadContext; 56 |
|
54class ArmSystem : public System 55{ 56 protected: 57 /** 58 * PC based event to skip the dprink() call and emulate its 59 * functionality 60 */ 61 Linux::DebugPrintkEvent *debugPrintkEvent; 62 63 /** 64 * Pointer to the bootloader object 65 */ 66 ObjectFile *bootldr; 67 | 57class ArmSystem : public System 58{ 59 protected: 60 /** 61 * PC based event to skip the dprink() call and emulate its 62 * functionality 63 */ 64 Linux::DebugPrintkEvent *debugPrintkEvent; 65 66 /** 67 * Pointer to the bootloader object 68 */ 69 ObjectFile *bootldr; 70 |
71 /** 72 * True if this system implements the Security Extensions 73 */ 74 const bool _haveSecurity; 75 76 /** 77 * True if this system implements the Large Physical Address Extension 78 */ 79 const bool _haveLPAE; 80 81 /** 82 * True if this system implements the virtualization Extensions 83 */ 84 const bool _haveVirtualization; 85 86 /** 87 * True if this system implements the Generic Timer extension 88 */ 89 const bool _haveGenericTimer; 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 |
|
68 public: 69 typedef ArmSystemParams Params; 70 const Params * 71 params() const 72 { 73 return dynamic_cast<const Params *>(_params); 74 } 75 --- 20 unchanged lines hidden (view full) --- 96 // but that aren't actually odd aligned 97 if (addr & 0x1) 98 return addr & ~1; 99 return addr; 100 } 101 102 /** true if this a multiprocessor system */ 103 bool multiProc; | 119 public: 120 typedef ArmSystemParams Params; 121 const Params * 122 params() const 123 { 124 return dynamic_cast<const Params *>(_params); 125 } 126 --- 20 unchanged lines hidden (view full) --- 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 |
|
104}; 105 106#endif 107 | 269}; 270 271#endif 272 |