Go to the documentation of this file.
56 #include "debug/Arm.hh"
57 #include "debug/LLSC.hh"
58 #include "debug/MiscRegs.hh"
62 #include "params/ArmISA.hh"
84 _decoderFlavor(
p.decoderFlavor), pmu(
p.pmu), impdefAsNop(
p.impdef_nop),
162 mvfr0.advSimdRegisters = 2;
163 mvfr0.singlePrecision = 2;
164 mvfr0.doublePrecision = 2;
165 mvfr0.vfpExceptionTrapping = 0;
167 mvfr0.squareRoot = 1;
168 mvfr0.shortVectors = 1;
169 mvfr0.roundingModes = 1;
173 mvfr1.flushToZero = 1;
174 mvfr1.defaultNaN = 1;
175 mvfr1.advSimdLoadStore = 1;
176 mvfr1.advSimdInteger = 1;
177 mvfr1.advSimdSinglePrecision = 1;
178 mvfr1.advSimdHalfPrecision = 1;
179 mvfr1.vfpHalfPrecision = 1;
240 sctlr.te = (bool) sctlr_rst.te;
241 sctlr.nmfi = (
bool) sctlr_rst.nmfi;
242 sctlr.v = (bool) sctlr_rst.v;
300 panic(
"Invalid highest implemented exception level");
316 }
else if (
release->
has(ArmExtension::VIRTUALIZATION)) {
364 release->
has(ArmExtension::CRYPTO) ? 0x1112 : 0x0);
368 release->
has(ArmExtension::FEAT_RDM) ? 0x1 : 0x0);
372 release->
has(ArmExtension::FEAT_FCMA) ? 0x1 : 0x0);
377 release->
has(ArmExtension::FEAT_JSCVT) ? 0x1 : 0x0);
387 (
p.id_aa64dfr0_el1 & 0xfffffffffffff0ffULL) |
388 (
p.pmu ? 0x0000000000000100ULL : 0);
398 (
p.pmu ? 0x03000000ULL : 0);
406 }
else if (
release->
has(ArmExtension::VIRTUALIZATION)) {
417 release->
has(ArmExtension::SECURITY) ? 0x2 : 0x0);
421 release->
has(ArmExtension::VIRTUALIZATION) ? 0x2 : 0x0);
425 release->
has(ArmExtension::FEAT_SVE) ? 0x1 : 0x0);
429 release->
has(ArmExtension::FEAT_SEL2) ? 0x1 : 0x0);
444 release->
has(ArmExtension::CRYPTO) ? 0x1112 : 0x0);
448 release->
has(ArmExtension::FEAT_LSE) ? 0x2 : 0x0);
452 release->
has(ArmExtension::FEAT_RDM) ? 0x1 : 0x0);
458 release->
has(ArmExtension::FEAT_PAuth) ? 0x1 : 0x0);
462 release->
has(ArmExtension::FEAT_JSCVT) ? 0x1 : 0x0);
466 release->
has(ArmExtension::FEAT_FCMA) ? 0x1 : 0x0);
470 release->
has(ArmExtension::FEAT_PAuth) ? 0x1 : 0x0);
476 release->
has(ArmExtension::FEAT_VMID16) ? 0x2 : 0x0);
480 release->
has(ArmExtension::FEAT_VHE) ? 0x1 : 0x0);
484 release->
has(ArmExtension::FEAT_HPDS) ? 0x1 : 0x0);
488 release->
has(ArmExtension::FEAT_PAN) ? 0x1 : 0x0);
494 release->
has(ArmExtension::FEAT_UAO) ? 0x1 : 0x0);
498 release->
has(ArmExtension::FEAT_LVA) ? 0x1 : 0x0);
555 for (
int i = 0;
i < NUM_INTREGS;
i++)
591 int lower = map.first, upper = map.second;
597 DPRINTF(MiscRegs,
"Reading MiscReg %s with set res0 bits: %#x\n",
601 DPRINTF(MiscRegs,
"Reading MiscReg %s with clear res1 bits: %#x\n",
617 cpsr.j =
pc.jazelle() ? 1 : 0;
618 cpsr.t =
pc.thumb() ? 1 : 0;
625 warn(
"Unimplemented system register %s read.\n",
628 panic(
"Unimplemented system register %s read.\n",
637 if (!
release->
has(ArmExtension::VIRTUALIZATION))
642 const uint32_t ones = (uint32_t)(-1);
646 cpacrMask.cp10 = ones;
647 cpacrMask.cp11 = ones;
648 cpacrMask.asedis = ones;
657 if (!nsacr.cp10) cpacrMask.cp10 = 0;
658 if (!nsacr.cp11) cpacrMask.cp11 = 0;
663 DPRINTF(MiscRegs,
"Reading misc reg %s: %#x\n",
693 warn_once(
"The clidr register always reports 0 caches.\n");
694 warn_once(
"clidr LoUIS field of 0b001 to match current "
695 "ARM implementations.\n");
698 warn_once(
"The ccsidr register isn't implemented and "
699 "always reads as 0.\n");
706 unsigned lineSizeWords =
708 unsigned log2LineSizeWords = 0;
710 while (lineSizeWords >>= 1) {
716 ctr.iCacheLineSize = log2LineSizeWords;
718 ctr.l1IndexPolicy = 0x3;
720 ctr.dCacheLineSize = log2LineSizeWords;
722 ctr.erg = log2LineSizeWords;
724 ctr.cwg = log2LineSizeWords;
731 warn(
"Not doing anything for miscreg ACTLR\n");
741 panic(
"shouldn't be reading this register seperately\n");
748 const uint32_t ones = (uint32_t)(-1);
750 fpscrMask.ioc = ones;
751 fpscrMask.dzc = ones;
752 fpscrMask.ofc = ones;
753 fpscrMask.ufc = ones;
754 fpscrMask.ixc = ones;
755 fpscrMask.idc = ones;
765 const uint32_t ones = (uint32_t)(-1);
767 fpscrMask.len = ones;
768 fpscrMask.fz16 = ones;
769 fpscrMask.stride = ones;
770 fpscrMask.rMode = ones;
773 fpscrMask.ahp = ones;
860 bool secure_lookup =
release->
has(ArmExtension::SECURITY) &&
862 if (!secure_lookup) {
864 val |= (
mask ^ 0x7FFF) & 0xBFFF;
886 (have_timer ? 0x00010000 : 0x0);
889 return 0x0000000000000002 |
892 0x0000000000000200 : 0) |
894 0x0000000000002000 : 0) |
896 0x0000000100000000 : 0) |
898 0x0000001000000000 : 0) |
927 int lower = map.first, upper = map.second;
933 DPRINTF(MiscRegs,
"Writing MiscReg %s (%d %d:%d) : %#x\n",
937 DPRINTF(MiscRegs,
"Writing MiscReg %s (%d %d) : %#x\n",
955 int old_mode = old_cpsr.mode;
957 if (cpsr.pan != old_cpsr.pan || cpsr.il != old_cpsr.il) {
961 DPRINTF(
Arm,
"Updating CPSR from %#x to %#x f:%d i:%d a:%d mode:%#x\n",
962 miscRegs[misc_reg], cpsr, cpsr.f, cpsr.i, cpsr.a, cpsr.mode);
964 pc.nextThumb(cpsr.t);
965 pc.nextJazelle(cpsr.j);
966 pc.illegalExec(cpsr.il == 1);
983 if (old_mode != cpsr.mode) {
1002 warn(
"Unimplemented system register %s write with %#x.\n",
1005 panic(
"Unimplemented system register %s write with %#x.\n",
1015 const uint32_t ones = (uint32_t)(-1);
1016 CPACR cpacrMask = 0;
1019 cpacrMask.cp10 = ones;
1020 cpacrMask.cp11 = ones;
1021 cpacrMask.asedis = ones;
1030 if (!nsacr.cp10) cpacrMask.cp10 = 0;
1031 if (!nsacr.cp11) cpacrMask.cp11 = 0;
1036 newVal &= cpacrMask;
1037 newVal |= old_val & ~cpacrMask;
1038 DPRINTF(MiscRegs,
"Writing misc reg %s: %#x\n",
1044 const uint32_t ones = (uint32_t)(-1);
1045 CPACR cpacrMask = 0;
1046 cpacrMask.tta = ones;
1047 cpacrMask.fpen = ones;
1049 cpacrMask.zen = ones;
1051 newVal &= cpacrMask;
1052 DPRINTF(MiscRegs,
"Writing misc reg %s: %#x\n",
1059 const uint32_t ones = (uint32_t)(-1);
1061 cptrMask.tcpac = ones;
1062 cptrMask.tta = ones;
1063 cptrMask.tfp = ones;
1066 cptrMask.zen = hcr.e2h ? ones : 0;
1068 cptrMask.fpen = hcr.e2h ? ones : 0;
1071 cptrMask.res1_13_12_el2 = ones;
1072 cptrMask.res1_7_0_el2 = ones;
1074 cptrMask.res1_8_el2 = ones;
1076 cptrMask.res1_9_el2 = ones;
1078 DPRINTF(MiscRegs,
"Writing misc reg %s: %#x\n",
1084 const uint32_t ones = (uint32_t)(-1);
1086 cptrMask.tcpac = ones;
1087 cptrMask.tta = ones;
1088 cptrMask.tfp = ones;
1093 DPRINTF(MiscRegs,
"Writing misc reg %s: %#x\n",
1098 warn_once(
"The csselr register isn't implemented.\n");
1102 warn(
"Calling DC ZVA! Not Implemeted! Expect WEIRD results\n");
1107 const uint32_t ones = (uint32_t)(-1);
1108 FPSCR fpscrMask = 0;
1109 fpscrMask.ioc = ones;
1110 fpscrMask.dzc = ones;
1111 fpscrMask.ofc = ones;
1112 fpscrMask.ufc = ones;
1113 fpscrMask.ixc = ones;
1114 fpscrMask.idc = ones;
1115 fpscrMask.ioe = ones;
1116 fpscrMask.dze = ones;
1117 fpscrMask.ofe = ones;
1118 fpscrMask.ufe = ones;
1119 fpscrMask.ixe = ones;
1120 fpscrMask.ide = ones;
1121 fpscrMask.len = ones;
1122 fpscrMask.fz16 = ones;
1123 fpscrMask.stride = ones;
1124 fpscrMask.rMode = ones;
1125 fpscrMask.fz = ones;
1126 fpscrMask.dn = ones;
1127 fpscrMask.ahp = ones;
1128 fpscrMask.qc = ones;
1133 newVal = (newVal & (uint32_t)fpscrMask) |
1135 ~(uint32_t)fpscrMask);
1141 const uint32_t ones = (uint32_t)(-1);
1142 FPSCR fpscrMask = 0;
1143 fpscrMask.ioc = ones;
1144 fpscrMask.dzc = ones;
1145 fpscrMask.ofc = ones;
1146 fpscrMask.ufc = ones;
1147 fpscrMask.ixc = ones;
1148 fpscrMask.idc = ones;
1149 fpscrMask.qc = ones;
1154 newVal = (newVal & (uint32_t)fpscrMask) |
1156 ~(uint32_t)fpscrMask);
1162 const uint32_t ones = (uint32_t)(-1);
1163 FPSCR fpscrMask = 0;
1164 fpscrMask.len = ones;
1165 fpscrMask.fz16 = ones;
1166 fpscrMask.stride = ones;
1167 fpscrMask.rMode = ones;
1168 fpscrMask.fz = ones;
1169 fpscrMask.dn = ones;
1170 fpscrMask.ahp = ones;
1171 newVal = (newVal & (uint32_t)fpscrMask) |
1173 ~(uint32_t)fpscrMask);
1202 const uint32_t fpexcMask = 0x60000000;
1203 newVal = (newVal & fpexcMask) |
1208 if (!
release->
has(ArmExtension::VIRTUALIZATION))
1215 if (!
release->
has(ArmExtension::VIRTUALIZATION))
1229 const uint32_t temp = (
val == 0xC5ACCE55)? 0x1 : 0x0;
1231 r.oslk =
bits(temp,0);
1350 r.udccdis =
v.udccdis;
1351 r.mdbgen =
v.mdbgen;
1472 const uint32_t ifsrMask =
1474 newVal = newVal & ~ifsrMask;
1480 const uint32_t dfsrMask =
mask(31, 14) |
mask(8, 8);
1481 newVal = newVal & ~dfsrMask;
1491 DPRINTF(MiscRegs,
"Writing AMAIR: %#x\n", newVal);
1499 DPRINTF(MiscRegs,
"Writing SCTLR: %#x\n", newVal);
1511 SCTLR new_sctlr = newVal;
1512 new_sctlr.nmfi = ((bool)sctlr.nmfi) &&
1559 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
1570 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
1581 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
1592 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
1607 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
1610 mbits(newVal, 31, 12),
1623 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
1626 mbits(newVal, 31, 12),
1638 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
1652 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
1670 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
1672 mbits(newVal, 31,12));
1684 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
1686 mbits(newVal, 31,12));
1701 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
1703 mbits(newVal, 31,12));
1715 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
1717 mbits(newVal, 31,12));
1732 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
1735 static_cast<Addr>(
bits(newVal, 35, 0)) << 12);
1748 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
1751 static_cast<Addr>(
bits(newVal, 35, 0)) << 12);
1762 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
1765 mbits(newVal, 31, 12),
1777 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
1780 mbits(newVal, 31, 12),
1792 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
1806 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
1874 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
1885 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
1896 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
1907 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
1917 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
1930 if (hcr.tge && hcr.e2h) {
1935 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
1936 TLBIVMALL tlbiOp(target_el, secure,
false);
1945 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
1958 if (hcr.tge && hcr.e2h) {
1963 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
1964 TLBIVMALL tlbiOp(target_el, secure,
false);
1978 static_cast<Addr>(
bits(newVal, 43, 0)) << 12);
1989 static_cast<Addr>(
bits(newVal, 43, 0)) << 12);
2002 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
2007 bits(newVal, 55, 48);
2010 static_cast<Addr>(
bits(newVal, 43, 0)) << 12,
2015 static_cast<Addr>(
bits(newVal, 43, 0)) << 12);
2028 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
2033 bits(newVal, 55, 48);
2036 static_cast<Addr>(
bits(newVal, 43, 0)) << 12,
2041 static_cast<Addr>(
bits(newVal, 43, 0)) << 12);
2053 bits(newVal, 55, 48);
2058 if (hcr.tge && hcr.e2h) {
2063 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
2064 TLBIMVA tlbiOp(target_el, secure,
2065 static_cast<Addr>(
bits(newVal, 43, 0)) << 12,
2078 bits(newVal, 55, 48);
2083 if (hcr.tge && hcr.e2h) {
2088 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
2089 TLBIMVA tlbiOp(target_el, secure,
2090 static_cast<Addr>(
bits(newVal, 43, 0)) << 12,
2102 bits(newVal, 55, 48);
2107 if (hcr.tge && hcr.e2h) {
2112 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
2123 bits(newVal, 55, 48);
2128 if (hcr.tge && hcr.e2h) {
2133 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
2150 if (hcr.tge && hcr.e2h) {
2155 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
2157 static_cast<Addr>(
bits(newVal, 43, 0)) << 12);
2172 if (hcr.tge && hcr.e2h) {
2177 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
2179 static_cast<Addr>(
bits(newVal, 43, 0)) << 12);
2192 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
2194 static_cast<Addr>(
bits(newVal, 35, 0)) << 12);
2207 bool secure =
release->
has(ArmExtension::SECURITY) && !scr.ns;
2209 static_cast<Addr>(
bits(newVal, 35, 0)) << 12);
2215 warn(
"Not doing anything for write of miscreg ACTLR\n");
2230 newVal &= ~((uint32_t) hstrMask);
2237 secure_lookup =
release->
has(ArmExtension::SECURITY) &&
2239 if (!secure_lookup) {
2243 newVal = (newVal & ~
mask) | (oldValue &
mask);
2269 panic(
"Security Extensions required for ATS12NSOPR");
2274 panic(
"Security Extensions required for ATS12NSOPW");
2279 panic(
"Security Extensions required for ATS12NSOUR");
2285 panic(
"Security Extensions required for ATS12NSOUW");
2298 const uint32_t ones = (uint32_t)(-1);
2299 TTBCR ttbcrMask = 0;
2300 TTBCR ttbcrNew = newVal;
2305 ttbcrMask.pd0 = ones;
2306 ttbcrMask.pd1 = ones;
2308 ttbcrMask.epd0 = ones;
2309 ttbcrMask.irgn0 = ones;
2310 ttbcrMask.orgn0 = ones;
2311 ttbcrMask.sh0 = ones;
2312 ttbcrMask.ps = ones;
2313 ttbcrMask.a1 = ones;
2314 ttbcrMask.epd1 = ones;
2315 ttbcrMask.irgn1 = ones;
2316 ttbcrMask.orgn1 = ones;
2317 ttbcrMask.sh1 = ones;
2319 ttbcrMask.eae = ones;
2321 if (
release->
has(ArmExtension::LPAE) && ttbcrNew.eae) {
2322 newVal = newVal & ttbcrMask;
2324 newVal = (newVal & ttbcrMask) | (ttbcr & (~ttbcrMask));
2338 uint64_t ttbrMask =
mask(63,56) |
mask(47,40);
2339 newVal = (newVal & (~ttbrMask));
2388 cpsr.daif = (uint8_t) ((CPSR) newVal).
daif;
2405 cpsr.sp = (uint8_t) ((CPSR) newVal).
sp;
2413 cpsr.el = (uint8_t) ((CPSR) newVal).
el;
2424 cpsr.pan = (uint8_t) ((CPSR) newVal).
pan;
2435 cpsr.uao = (uint8_t) ((CPSR) newVal).
uao;
2481 warn(
"miscreg L2CTLR (%s) written with %#x. ignored...\n",
2512 return *
timer.get();
2516 if (!generic_timer) {
2517 panic(
"Trying to get a generic timer from a system that hasn't "
2518 "been configured to use a generic timer.\n");
2524 return *
timer.get();
2574 "A ThreadContext is needed to determine the SVE vector length "
2575 "in full-system mode");
2592 static_cast<unsigned>(
2598 }
else if (
release->
has(ArmExtension::SECURITY)) {
2601 static_cast<unsigned>(
2607 return (
len + 1) * 128;
2613 DPRINTF(Checkpoint,
"Serializing Arm Misc Registers\n");
2620 DPRINTF(Checkpoint,
"Unserializing Arm Misc Registers\n");
2636 warn_once(
"Doing AT (address translation) in functional mode! Fix Me!\n");
2638 auto req = std::make_shared<Request>(
2643 req,
tc,
mode, tran_type);
2647 Addr paddr = req->getPaddr();
2649 uint64_t attr1 =
attr >> 56;
2650 if (!attr1 || attr1 ==0x44) {
2652 attr &= ~ uint64_t(0x80);
2654 par = (paddr &
mask(47, 12)) |
attr;
2656 "MISCREG: Translated addr %#x: PAR_EL1: %#xx\n",
2665 par.fst = fsr.status;
2666 par.ptw = (arm_fault->
iss() >> 7) & 0x1;
2667 par.s = arm_fault->
isStage2() ? 1 : 0;
2670 "MISCREG: Translated addr %#x fault fsr %#x: PAR: %#x\n",
2687 warn_once(
"Doing AT (address translation) in functional mode! Fix Me!\n");
2689 auto req = std::make_shared<Request>(
2694 req,
tc,
mode, tran_type);
2698 Addr paddr = req->getPaddr();
2702 uint8_t max_paddr_bit = 0;
2712 par = (paddr &
mask(max_paddr_bit, 12)) |
2716 "MISCREG: Translated addr 0x%08x: PAR: 0x%08x\n",
2725 par.lpae = fsr.lpae;
2726 par.ptw = (arm_fault->
iss() >> 7) & 0x1;
2727 par.s = arm_fault->
isStage2() ? 1 : 0;
2731 par.fst = fsr.status;
2734 par.fs4_0 = fsr.fsLow | (fsr.fsHigh << 5);
2738 "MISCREG: Translated addr 0x%08x fault fsr %#x: PAR: 0x%08x\n",
2760 Addr cacheBlockMask)
2765 DPRINTF(LLSC,
"%s: handling snoop for address: %#x locked: %d\n",
2773 Addr snoop_addr = pkt->
getAddr() & cacheBlockMask;
2775 DPRINTF(LLSC,
"%s: handling snoop for address: %#x locked addr: %#x\n",
2776 tc->
getCpuPtr()->name(), snoop_addr, locked_addr);
2777 if (locked_addr == snoop_addr) {
2778 DPRINTF(LLSC,
"%s: address match, clearing lock and signaling sev\n",
2804 DPRINTF(LLSC,
"%s: Placing address %#x in monitor\n",
2813 DPRINTF(LLSC,
"%s: Placing address %#x in monitor\n",
2820 DPRINTF(LLSC,
"%s: handling snoop lock hit address: %#x\n",
2829 DPRINTF(LLSC,
"%s: handling snoop lock hit address: %#x\n",
2839 Addr cacheBlockMask)
2844 DPRINTF(LLSC,
"Handling locked write for address %#x in monitor.\n",
2850 if (!lock_flag || (req->getPaddr() & cacheBlockMask) != lock_addr) {
2853 req->setExtraData(0);
2855 DPRINTF(LLSC,
"clearing lock flag in handle locked write\n",
2861 int stCondFailures = xc->readStCondFailures();
2863 xc->setStCondFailures(stCondFailures);
2864 if (stCondFailures % 100000 == 0) {
2865 warn(
"context %d: %d consecutive "
2866 "store conditional failures\n",
2884 Addr cacheBlockMask)
2896 DPRINTF(LLSC,
"Clearing lock and signaling sev\n");
2910 DPRINTF(LLSC,
"Clearing lock and signaling sev\n");
virtual void setIntReg(RegIndex reg_idx, RegVal val)=0
constexpr unsigned NumVecElemPerVecReg
virtual void setISA(ISA *isa)
Instruction TLB Invalidate All.
uint8_t physAddrRange() const
Returns the supported physical address range in bits.
void addressTranslation64(MMU::ArmTranslationType tran_type, BaseMMU::Mode mode, Request::Flags flags, RegVal val)
void setenableTDETGE(HCR hcr, HDCR mdcr)
Addr instAddr() const
Returns the memory address of the instruction this PC points to.
void init(ThreadContext *tc)
DummyISADevice dummyDevice
Dummy device for to handle non-existing ISA devices.
virtual RegVal readMiscReg(RegIndex misc_reg)=0
constexpr decltype(nullptr) NoFault
virtual System * getSystemPtr()=0
ExceptionLevel currEL() const
Returns the current Exception Level (EL) of the ISA object.
Implementaton of AArch64 TLBI ALLE(1,2,3)(IS) instructions.
virtual RegVal readMiscReg(int misc_reg)=0
Read a system register belonging to this device.
virtual void setMiscReg(int misc_reg, RegVal val)=0
Sets a miscellaneous register, handling any architectural side effects due to writing that register.
@ MISCREG_TLBI_VAAE1IS_Xt
unsigned getCurSveVecLenInBits() const
bool highestELIs64() const
Returns true if the register width of the highest implemented exception level is 64 bits (ARMv8)
TLB Invalidate by ASID match.
std::unique_ptr< BaseISADevice > gicv3CpuInterface
Gicv3CPUInterface * getCPUInterface(int cpu_id) const
RegVal readMiscRegNoEffect(int misc_reg) const
@ MISCREG_TLBI_IPAS2E1IS_Xt
chain priv(bool v=true) const
void takeOverFrom(ThreadContext *new_tc, ThreadContext *old_tc) override
void handleLockedSnoop(PacketPtr pkt, Addr cacheBlockMask) override
void initID32(const ArmISAParams &p)
static bool lockedWriteHandler(ThreadContext *tc, XC *xc, const RequestPtr &req, Addr cacheBlockMask)
void updateRegMap(CPSR cpsr)
const ArmRelease * release
This could be either a FS or a SE release.
virtual BaseMMU * getMMUPtr()=0
virtual const PCStateBase & pcState() const =0
std::unique_ptr< BaseISADevice > timer
uint8_t encodePhysAddrRange64(int pa_size)
Returns the encoding corresponding to the specified n.
@ MISCREG_TLBI_IPAS2LE1IS_Xt
@ MISCREG_TLBI_VMALLS12E1IS
void updateOSLock(RegVal val)
bool haveLargeAsid64() const
Returns true if ASID is 16 bits in AArch64 (ARMv8)
@ MISCREG_TLBI_VALE2IS_Xt
@ MISCREG_TLBI_VALE1IS_Xt
@ MISCREG_ID_AA64AFR1_EL1
const char *const miscRegName[]
virtual ContextID contextId() const =0
void copyRegsFrom(ThreadContext *src) override
@ MISCREG_ID_AA64MMFR0_EL1
static ExceptionLevel opModeToEL(OperatingMode mode)
bool ELIsInHost(ThreadContext *tc, ExceptionLevel el)
Returns true if the current exception level el is executing a Host OS or an application of a Host OS ...
static const uint32_t CpsrMaskQ
void serialize(CheckpointOut &cp) const override
Serialize an object.
virtual RegVal readIntRegFlat(RegIndex idx) const =0
Flat register interfaces.
#define SERIALIZE_MAPPING(member, names, size)
constexpr T mbits(T val, unsigned first, unsigned last)
Mask off the given bits in place like bits() but without shifting.
virtual RegVal readMiscReg(int misc_reg)=0
Reads a miscellaneous register, handling any architectural side effects due to reading that register.
static const uint32_t FpscrQcMask
unsigned sveVL
SVE vector length in quadwords.
const typedef MiscRegLUTEntryInitializer & chain
@ MISCREG_ID_AA64DFR1_EL1
Data TLB Invalidate by ASID match.
@ MISCREG_TLBI_VALE3IS_Xt
Instruction TLB Invalidate by ASID match.
static const uint32_t FpscrExcMask
@ MISCREG_TLBI_VMALLS12E1
void updateDBGBCR(int index, DBGBCR val)
@ funcRequestorId
This requestor id is used for functional requests that don't come from a particular device.
BaseGic * getGIC() const
Get a pointer to the system's GIC.
Instruction TLB Invalidate by VA.
virtual RegVal readCCReg(RegIndex reg_idx) const =0
std::bitset< NUM_MISCREG_INFOS > miscRegInfo[NUM_MISCREGS]
unsigned int cacheLineSize() const
Get the cache line size of the system.
void setMiscRegNoEffect(int misc_reg, RegVal val)
void initID64(const ArmISAParams &p)
TLB Invalidate All, Non-Secure.
void handleLockedRead(const RequestPtr &req) override
virtual uint32_t iss() const =0
bool has(ArmExtension ext) const
void setMDBGen(RegVal val)
virtual void setHtmCheckpointPtr(BaseHTMCheckpointPtr cpt)=0
virtual void setVecElemFlat(RegIndex idx, const ElemIndex &elem_idx, RegVal val)=0
ArmISA::ExceptionLevel highestEL() const
Returns the highest implemented exception level.
void handleLockedSnoopHit() override
@ MISCREG_ID_AA64PFR1_EL1
void setMDSCRvals(RegVal val)
ThreadContext is the external interface to all thread state for anything outside of the CPU.
@ MISCREG_ID_AA64MMFR2_EL1
void clear64(const ArmISAParams &p)
std::shared_ptr< FaultBase > Fault
const Params & params() const
virtual RegVal readVecElemFlat(RegIndex idx, const ElemIndex &elem_idx) const =0
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
virtual InstDecoder * getDecoderPtr()=0
void globalClearExclusive() override
TLB Invalidate by VA, All ASID.
@ MISCREG_ID_AA64AFR0_EL1
std::pair< int, int > getMiscIndices(int misc_reg) const
void unserialize(CheckpointIn &cp) override
Unserialize an object.
bool ELIs32(ThreadContext *tc, ExceptionLevel el)
void update(ThreadContext *tc)
virtual void setIntRegFlat(RegIndex idx, RegVal val)=0
std::shared_ptr< Request > RequestPtr
chain mon(bool v=true) const
void addressTranslation(MMU::ArmTranslationType tran_type, BaseMMU::Mode mode, Request::Flags flags, RegVal val)
@ MISCREG_PMXEVTYPER_PMCCFILTR
virtual ThreadContext * tcBase() const =0
Returns a pointer to the ThreadContext.
@ MISCREG_ICC_IGRPEN1_EL3
bool EL2Enabled(ThreadContext *tc)
@ MISCREG_TLBI_ASIDE1IS_Xt
constexpr T insertBits(T val, unsigned first, unsigned last, B bit_val)
Returns val with bits first to last set to the LSBs of bit_val.
bool handleLockedWrite(const RequestPtr &req, Addr cacheBlockMask) override
constexpr T bits(T val, unsigned first, unsigned last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it.
gem5::ArmISA::MiscRegClassOps miscRegClassOps
BaseISADevice & getGICv3CPUInterface()
RegVal readMiscReg(int misc_reg)
virtual RegVal readMiscRegNoEffect(RegIndex misc_reg) const =0
void startup() override
startup() is the final initialization call before simulation.
@ MISCREG_ID_AA64DFR0_EL1
BaseISADevice & getGenericTimer()
@ MISCREG_ID_AA64MMFR1_EL1
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
virtual RegVal readIntReg(RegIndex reg_idx) const =0
bool isSecure(ThreadContext *tc)
void initializeMiscRegMetadata()
TLB Invalidate by Intermediate Physical Address.
@ MISCREG_ID_AA64ISAR1_EL1
@ MISCREG_ID_AA64ZFR0_EL1
virtual FSR getFsr(ThreadContext *tc) const
@ MISCREG_TLBI_IPAS2LE1_Xt
@ MISCREG_TLBI_VAALE1IS_Xt
void setupThreadContext()
static std::vector< struct MiscRegLUTEntry > lookUpMiscReg
Metadata table accessible via the value of the register.
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
virtual void pcStateNoRecord(const PCStateBase &val)=0
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
virtual void setThreadContext(ThreadContext *tc)
chain highest(ArmSystem *const sys) const
unsigned sveVL() const
Returns the SVE vector length at reset, in quadwords.
virtual void startup()
startup() is the final initialization call before simulation.
TranslationGenPtr translateFunctional(Addr start, Addr size, ThreadContext *tc, Mode mode, Request::Flags flags) override
Returns a translation generator for a region of virtual addresses, instead of directly translating a ...
void broadcast(ThreadContext *tc)
Broadcast the TLB Invalidate operation to all TLBs in the Arm system.
RegVal miscRegs[NUM_MISCREGS]
static void lockedSnoopHandler(ThreadContext *tc, XC *xc, PacketPtr pkt, Addr cacheBlockMask)
void sendEvent(ThreadContext *tc)
Send an event (SEV) to a specific PE if there isn't already a pending event.
virtual void setMiscReg(RegIndex misc_reg, RegVal val)=0
Implementaton of AArch64 TLBI VMALLE1(IS)/VMALLS112E1(IS) instructions.
Addr resetAddr() const
Returns the reset address if the highest implemented exception level is 64 bits (ARMv8)
The ExecContext is an abstract base class the provides the interface used by the ISA to manipulate th...
const ArmRelease * releaseFS() const
GenericTimer * getGenericTimer() const
Get a pointer to the system's generic timer model.
virtual void setCCReg(RegIndex reg_idx, RegVal val)=0
void setMiscReg(int misc_reg, RegVal val)
virtual void setMiscReg(int misc_reg, RegVal val)=0
Write to a system register belonging to this device.
std::ostream CheckpointOut
virtual BaseCPU * getCpuPtr()=0
virtual int threadId() const =0
int redirectRegVHE(int misc_reg)
Returns the enconcing equivalent when VHE is implemented and HCR_EL2.E2H is enabled and executing at ...
Data TLB Invalidate by VA.
virtual void setVecRegFlat(RegIndex idx, const TheISA::VecRegContainer &val)=0
void updateDBGWCR(int index, DBGWCR val)
chain hyp(bool v=true) const
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
@ MISCREG_ID_AA64PFR0_EL1
void setDebugMask(bool mask)
virtual bool isStage2() const
#define UNSERIALIZE_MAPPING(member, names, size)
virtual const TheISA::VecRegContainer & readVecRegFlat(RegIndex idx) const =0
@ MISCREG_TLBI_IPAS2E1_Xt
virtual CheckerCPU * getCheckerCpuPtr()=0
void preUnflattenMiscReg()
void clear32(const ArmISAParams &p, const SCTLR &sctlr_rst)
@ MISCREG_ID_AA64ISAR0_EL1
RegVal readMPIDR(ArmSystem *arm_sys, ThreadContext *tc)
This helper function is either returing the value of MPIDR_EL1 (by calling getMPIDR),...
std::string regName(const RegId &id) const override
bool inSecureState() const
Return true if the PE is in Secure state.
int unflattenMiscReg(int reg)
bool isInvalidate() const
Register ID: describe an architectural register with its class and index.
#define panic(...)
This implements a cprintf based panic() function.
Base class for devices that use the MiscReg interfaces.
virtual void setMiscRegNoEffect(RegIndex misc_reg, RegVal val)=0
Generated on Tue Dec 21 2021 11:34:18 for gem5 by doxygen 1.8.17