gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
isa.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2020 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
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
38 #include "arch/arm/isa.hh"
39 
40 #include "arch/arm/faults.hh"
41 #include "arch/arm/interrupts.hh"
42 #include "arch/arm/pmu.hh"
43 #include "arch/arm/system.hh"
44 #include "arch/arm/tlb.hh"
45 #include "arch/arm/tlbi_op.hh"
46 #include "cpu/base.hh"
47 #include "cpu/checker/cpu.hh"
48 #include "debug/Arm.hh"
49 #include "debug/MiscRegs.hh"
50 #include "dev/arm/generic_timer.hh"
51 #include "dev/arm/gic_v3.hh"
53 #include "params/ArmISA.hh"
54 #include "sim/faults.hh"
55 #include "sim/stat_control.hh"
56 #include "sim/system.hh"
57 
58 namespace ArmISA
59 {
60 
61 ISA::ISA(Params *p) : BaseISA(p), system(NULL),
62  _decoderFlavor(p->decoderFlavor), _vecRegRenameMode(Enums::Full),
63  pmu(p->pmu), impdefAsNop(p->impdef_nop),
64  afterStartup(false)
65 {
67 
68  // Hook up a dummy device if we haven't been configured with a
69  // real PMU. By using a dummy device, we don't need to check that
70  // the PMU exist every time we try to access a PMU register.
71  if (!pmu)
72  pmu = &dummyDevice;
73 
74  // Give all ISA devices a pointer to this ISA
75  pmu->setISA(this);
76 
77  system = dynamic_cast<ArmSystem *>(p->system);
78 
79  // Cache system-level properties
80  if (FullSystem && system) {
88  haveSVE = system->haveSVE();
89  havePAN = system->havePAN();
90  sveVL = system->sveVL();
91  haveLSE = system->haveLSE();
92  } else {
93  highestELIs64 = true; // ArmSystem::highestELIs64 does the same
95  haveCrypto = true;
96  haveLargeAsid64 = false;
97  physAddrRange = 32; // dummy value
98  haveSVE = true;
99  havePAN = false;
100  sveVL = p->sve_vl_se;
101  haveLSE = true;
102  }
103 
104  // Initial rename mode depends on highestEL
105  const_cast<Enums::VecRegRenameMode&>(_vecRegRenameMode) =
106  highestELIs64 ? Enums::Full : Enums::Elem;
107 
110 
111  clear();
112 }
113 
115 
116 const ArmISAParams *
117 ISA::params() const
118 {
119  return dynamic_cast<const Params *>(_params);
120 }
121 
122 void
124 {
125  clear();
126  // Invalidate cached copies of miscregs in the TLBs
129 }
130 
131 void
133 {
134  const Params *p(params());
135 
136  SCTLR sctlr_rst = miscRegs[MISCREG_SCTLR_RST];
137  memset(miscRegs, 0, sizeof(miscRegs));
138 
139  initID32(p);
140 
141  // We always initialize AArch64 ID registers even
142  // if we are in AArch32. This is done since if we
143  // are in SE mode we don't know if our ArmProcess is
144  // AArch32 or AArch64
145  initID64(p);
146 
147  // Start with an event in the mailbox
149 
150  // Separate Instruction and Data TLBs
151  miscRegs[MISCREG_TLBTR] = 1;
152 
153  MVFR0 mvfr0 = 0;
154  mvfr0.advSimdRegisters = 2;
155  mvfr0.singlePrecision = 2;
156  mvfr0.doublePrecision = 2;
157  mvfr0.vfpExceptionTrapping = 0;
158  mvfr0.divide = 1;
159  mvfr0.squareRoot = 1;
160  mvfr0.shortVectors = 1;
161  mvfr0.roundingModes = 1;
162  miscRegs[MISCREG_MVFR0] = mvfr0;
163 
164  MVFR1 mvfr1 = 0;
165  mvfr1.flushToZero = 1;
166  mvfr1.defaultNaN = 1;
167  mvfr1.advSimdLoadStore = 1;
168  mvfr1.advSimdInteger = 1;
169  mvfr1.advSimdSinglePrecision = 1;
170  mvfr1.advSimdHalfPrecision = 1;
171  mvfr1.vfpHalfPrecision = 1;
172  miscRegs[MISCREG_MVFR1] = mvfr1;
173 
174  // Reset values of PRRR and NMRR are implementation dependent
175 
176  // @todo: PRRR and NMRR in secure state?
178  (1 << 19) | // 19
179  (0 << 18) | // 18
180  (0 << 17) | // 17
181  (1 << 16) | // 16
182  (2 << 14) | // 15:14
183  (0 << 12) | // 13:12
184  (2 << 10) | // 11:10
185  (2 << 8) | // 9:8
186  (2 << 6) | // 7:6
187  (2 << 4) | // 5:4
188  (1 << 2) | // 3:2
189  0; // 1:0
190 
192  (1 << 30) | // 31:30
193  (0 << 26) | // 27:26
194  (0 << 24) | // 25:24
195  (3 << 22) | // 23:22
196  (2 << 20) | // 21:20
197  (0 << 18) | // 19:18
198  (0 << 16) | // 17:16
199  (1 << 14) | // 15:14
200  (0 << 12) | // 13:12
201  (2 << 10) | // 11:10
202  (0 << 8) | // 9:8
203  (3 << 6) | // 7:6
204  (2 << 4) | // 5:4
205  (0 << 2) | // 3:2
206  0; // 1:0
207 
208  if (FullSystem && system->highestELIs64()) {
209  // Initialize AArch64 state
210  clear64(p);
211  return;
212  }
213 
214  // Initialize AArch32 state...
215  clear32(p, sctlr_rst);
216 }
217 
218 void
219 ISA::clear32(const ArmISAParams *p, const SCTLR &sctlr_rst)
220 {
221  CPSR cpsr = 0;
222  cpsr.mode = MODE_USER;
223 
224  if (FullSystem) {
226  }
227 
228  miscRegs[MISCREG_CPSR] = cpsr;
229  updateRegMap(cpsr);
230 
231  SCTLR sctlr = 0;
232  sctlr.te = (bool) sctlr_rst.te;
233  sctlr.nmfi = (bool) sctlr_rst.nmfi;
234  sctlr.v = (bool) sctlr_rst.v;
235  sctlr.u = 1;
236  sctlr.xp = 1;
237  sctlr.rao2 = 1;
238  sctlr.rao3 = 1;
239  sctlr.rao4 = 0xf; // SCTLR[6:3]
240  sctlr.uci = 1;
241  sctlr.dze = 1;
242  miscRegs[MISCREG_SCTLR_NS] = sctlr;
243  miscRegs[MISCREG_SCTLR_RST] = sctlr_rst;
244  miscRegs[MISCREG_HCPTR] = 0;
245 
246  miscRegs[MISCREG_CPACR] = 0;
247 
248  miscRegs[MISCREG_FPSID] = p->fpsid;
249 
250  if (haveLPAE) {
251  TTBCR ttbcr = miscRegs[MISCREG_TTBCR_NS];
252  ttbcr.eae = 0;
253  miscRegs[MISCREG_TTBCR_NS] = ttbcr;
254  // Enforce consistency with system-level settings
256  }
257 
258  if (haveSecurity) {
259  miscRegs[MISCREG_SCTLR_S] = sctlr;
260  miscRegs[MISCREG_SCR] = 0;
262  } else {
263  // we're always non-secure
264  miscRegs[MISCREG_SCR] = 1;
265  }
266 
267  //XXX We need to initialize the rest of the state.
268 }
269 
270 void
271 ISA::clear64(const ArmISAParams *p)
272 {
273  CPSR cpsr = 0;
274  Addr rvbar = system->resetAddr();
275  switch (system->highestEL()) {
276  // Set initial EL to highest implemented EL using associated stack
277  // pointer (SP_ELx); set RVBAR_ELx to implementation defined reset
278  // value
279  case EL3:
280  cpsr.mode = MODE_EL3H;
281  miscRegs[MISCREG_RVBAR_EL3] = rvbar;
282  break;
283  case EL2:
284  cpsr.mode = MODE_EL2H;
285  miscRegs[MISCREG_RVBAR_EL2] = rvbar;
286  break;
287  case EL1:
288  cpsr.mode = MODE_EL1H;
289  miscRegs[MISCREG_RVBAR_EL1] = rvbar;
290  break;
291  default:
292  panic("Invalid highest implemented exception level");
293  break;
294  }
295 
296  // Initialize rest of CPSR
297  cpsr.daif = 0xf; // Mask all interrupts
298  cpsr.ss = 0;
299  cpsr.il = 0;
300  miscRegs[MISCREG_CPSR] = cpsr;
301  updateRegMap(cpsr);
302 
303  // Initialize other control registers
304  miscRegs[MISCREG_MPIDR_EL1] = 0x80000000;
305  if (haveSecurity) {
306  miscRegs[MISCREG_SCTLR_EL3] = 0x30c50830;
307  miscRegs[MISCREG_SCR_EL3] = 0x00000030; // RES1 fields
308  } else if (haveVirtualization) {
309  // also MISCREG_SCTLR_EL2 (by mapping)
310  miscRegs[MISCREG_HSCTLR] = 0x30c50830;
311  } else {
312  // also MISCREG_SCTLR_EL1 (by mapping)
313  miscRegs[MISCREG_SCTLR_NS] = 0x30d00800 | 0x00050030; // RES1 | init
314  // Always non-secure
316  }
317 }
318 
319 void
320 ISA::initID32(const ArmISAParams *p)
321 {
322  // Initialize configurable default values
323 
324  uint32_t midr;
325  if (p->midr != 0x0)
326  midr = p->midr;
327  else if (highestELIs64)
328  // Cortex-A57 TRM r0p0 MIDR
329  midr = 0x410fd070;
330  else
331  // Cortex-A15 TRM r0p0 MIDR
332  midr = 0x410fc0f0;
333 
334  miscRegs[MISCREG_MIDR] = midr;
335  miscRegs[MISCREG_MIDR_EL1] = midr;
336  miscRegs[MISCREG_VPIDR] = midr;
337 
338  miscRegs[MISCREG_ID_ISAR0] = p->id_isar0;
339  miscRegs[MISCREG_ID_ISAR1] = p->id_isar1;
340  miscRegs[MISCREG_ID_ISAR2] = p->id_isar2;
341  miscRegs[MISCREG_ID_ISAR3] = p->id_isar3;
342  miscRegs[MISCREG_ID_ISAR4] = p->id_isar4;
343  miscRegs[MISCREG_ID_ISAR5] = p->id_isar5;
344 
345  miscRegs[MISCREG_ID_MMFR0] = p->id_mmfr0;
346  miscRegs[MISCREG_ID_MMFR1] = p->id_mmfr1;
347  miscRegs[MISCREG_ID_MMFR2] = p->id_mmfr2;
348  miscRegs[MISCREG_ID_MMFR3] = p->id_mmfr3;
349 
351  miscRegs[MISCREG_ID_ISAR5], 19, 4,
352  haveCrypto ? 0x1112 : 0x0);
353 }
354 
355 void
356 ISA::initID64(const ArmISAParams *p)
357 {
358  // Initialize configurable id registers
359  miscRegs[MISCREG_ID_AA64AFR0_EL1] = p->id_aa64afr0_el1;
360  miscRegs[MISCREG_ID_AA64AFR1_EL1] = p->id_aa64afr1_el1;
362  (p->id_aa64dfr0_el1 & 0xfffffffffffff0ffULL) |
363  (p->pmu ? 0x0000000000000100ULL : 0); // Enable PMUv3
364 
365  miscRegs[MISCREG_ID_AA64DFR1_EL1] = p->id_aa64dfr1_el1;
366  miscRegs[MISCREG_ID_AA64ISAR0_EL1] = p->id_aa64isar0_el1;
367  miscRegs[MISCREG_ID_AA64ISAR1_EL1] = p->id_aa64isar1_el1;
368  miscRegs[MISCREG_ID_AA64MMFR0_EL1] = p->id_aa64mmfr0_el1;
369  miscRegs[MISCREG_ID_AA64MMFR1_EL1] = p->id_aa64mmfr1_el1;
370  miscRegs[MISCREG_ID_AA64MMFR2_EL1] = p->id_aa64mmfr2_el1;
371 
373  (p->pmu ? 0x03000000ULL : 0); // Enable PMUv3
374 
376 
377  // SVE
378  miscRegs[MISCREG_ID_AA64ZFR0_EL1] = 0; // SVEver 0
379  if (haveSecurity) {
381  } else if (haveVirtualization) {
383  } else {
385  }
386 
387  // Enforce consistency with system-level settings...
388 
389  // EL3
392  haveSecurity ? 0x2 : 0x0);
393  // EL2
395  miscRegs[MISCREG_ID_AA64PFR0_EL1], 11, 8,
396  haveVirtualization ? 0x2 : 0x0);
397  // SVE
399  miscRegs[MISCREG_ID_AA64PFR0_EL1], 35, 32,
400  haveSVE ? 0x1 : 0x0);
401  // Large ASID support
404  haveLargeAsid64 ? 0x2 : 0x0);
405  // Physical address size
407  miscRegs[MISCREG_ID_AA64MMFR0_EL1], 3, 0,
409  // Crypto
412  haveCrypto ? 0x1112 : 0x0);
413  // LSE
415  miscRegs[MISCREG_ID_AA64ISAR0_EL1], 23, 20,
416  haveLSE ? 0x2 : 0x0);
417  // PAN
420  havePAN ? 0x1 : 0x0);
421 }
422 
423 void
425 {
426  pmu->setThreadContext(tc);
427 
428  if (system) {
429  Gicv3 *gicv3 = dynamic_cast<Gicv3 *>(system->getGIC());
430  if (gicv3) {
431  gicv3CpuInterface.reset(gicv3->getCPUInterface(tc->contextId()));
432  gicv3CpuInterface->setISA(this);
433  gicv3CpuInterface->setThreadContext(tc);
434  }
435  }
436 
437  afterStartup = true;
438 }
439 
440 void
442 {
443  pmu->setThreadContext(new_tc);
444 
445  if (system && gicv3CpuInterface) {
446  gicv3CpuInterface->setISA(this);
447  gicv3CpuInterface->setThreadContext(new_tc);
448  }
449 }
450 
451 RegVal
452 ISA::readMiscRegNoEffect(int misc_reg) const
453 {
454  assert(misc_reg < NumMiscRegs);
455 
456  const auto &reg = lookUpMiscReg[misc_reg]; // bit masks
457  const auto &map = getMiscIndices(misc_reg);
458  int lower = map.first, upper = map.second;
459  // NB!: apply architectural masks according to desired register,
460  // despite possibly getting value from different (mapped) register.
461  auto val = !upper ? miscRegs[lower] : ((miscRegs[lower] & mask(32))
462  |(miscRegs[upper] << 32));
463  if (val & reg.res0()) {
464  DPRINTF(MiscRegs, "Reading MiscReg %s with set res0 bits: %#x\n",
465  miscRegName[misc_reg], val & reg.res0());
466  }
467  if ((val & reg.res1()) != reg.res1()) {
468  DPRINTF(MiscRegs, "Reading MiscReg %s with clear res1 bits: %#x\n",
469  miscRegName[misc_reg], (val & reg.res1()) ^ reg.res1());
470  }
471  return (val & ~reg.raz()) | reg.rao(); // enforce raz/rao
472 }
473 
474 
475 RegVal
476 ISA::readMiscReg(int misc_reg, ThreadContext *tc)
477 {
478  CPSR cpsr = 0;
479  PCState pc = 0;
480  SCR scr = 0;
481 
482  if (misc_reg == MISCREG_CPSR) {
483  cpsr = miscRegs[misc_reg];
484  pc = tc->pcState();
485  cpsr.j = pc.jazelle() ? 1 : 0;
486  cpsr.t = pc.thumb() ? 1 : 0;
487  return cpsr;
488  }
489 
490 #ifndef NDEBUG
491  if (!miscRegInfo[misc_reg][MISCREG_IMPLEMENTED]) {
492  if (miscRegInfo[misc_reg][MISCREG_WARN_NOT_FAIL])
493  warn("Unimplemented system register %s read.\n",
494  miscRegName[misc_reg]);
495  else
496  panic("Unimplemented system register %s read.\n",
497  miscRegName[misc_reg]);
498  }
499 #endif
500 
501  switch (unflattenMiscReg(misc_reg)) {
502  case MISCREG_HCR:
503  case MISCREG_HCR2:
504  if (!haveVirtualization)
505  return 0;
506  break;
507  case MISCREG_CPACR:
508  {
509  const uint32_t ones = (uint32_t)(-1);
510  CPACR cpacrMask = 0;
511  // Only cp10, cp11, and ase are implemented, nothing else should
512  // be readable? (straight copy from the write code)
513  cpacrMask.cp10 = ones;
514  cpacrMask.cp11 = ones;
515  cpacrMask.asedis = ones;
516 
517  // Security Extensions may limit the readability of CPACR
518  if (haveSecurity) {
521  if (scr.ns && (cpsr.mode != MODE_MON) && ELIs32(tc, EL3)) {
522  NSACR nsacr = readMiscRegNoEffect(MISCREG_NSACR);
523  // NB: Skipping the full loop, here
524  if (!nsacr.cp10) cpacrMask.cp10 = 0;
525  if (!nsacr.cp11) cpacrMask.cp11 = 0;
526  }
527  }
529  val &= cpacrMask;
530  DPRINTF(MiscRegs, "Reading misc reg %s: %#x\n",
531  miscRegName[misc_reg], val);
532  return val;
533  }
534  case MISCREG_MPIDR:
535  case MISCREG_MPIDR_EL1:
536  return readMPIDR(system, tc);
537  case MISCREG_VMPIDR:
538  case MISCREG_VMPIDR_EL2:
539  // top bit defined as RES1
540  return readMiscRegNoEffect(misc_reg) | 0x80000000;
541  case MISCREG_ID_AFR0: // not implemented, so alias MIDR
542  case MISCREG_REVIDR: // not implemented, so alias MIDR
543  case MISCREG_MIDR:
546  if ((cpsr.mode == MODE_HYP) || inSecureState(scr, cpsr)) {
547  return readMiscRegNoEffect(misc_reg);
548  } else {
550  }
551  break;
552  case MISCREG_JOSCR: // Jazelle trivial implementation, RAZ/WI
553  case MISCREG_JMCR: // Jazelle trivial implementation, RAZ/WI
554  case MISCREG_JIDR: // Jazelle trivial implementation, RAZ/WI
555  case MISCREG_AIDR: // AUX ID set to 0
556  case MISCREG_TCMTR: // No TCM's
557  return 0;
558 
559  case MISCREG_CLIDR:
560  warn_once("The clidr register always reports 0 caches.\n");
561  warn_once("clidr LoUIS field of 0b001 to match current "
562  "ARM implementations.\n");
563  return 0x00200000;
564  case MISCREG_CCSIDR:
565  warn_once("The ccsidr register isn't implemented and "
566  "always reads as 0.\n");
567  break;
568  case MISCREG_CTR: // AArch32, ARMv7, top bit set
569  case MISCREG_CTR_EL0: // AArch64
570  {
571  //all caches have the same line size in gem5
572  //4 byte words in ARM
573  unsigned lineSizeWords =
574  tc->getSystemPtr()->cacheLineSize() / 4;
575  unsigned log2LineSizeWords = 0;
576 
577  while (lineSizeWords >>= 1) {
578  ++log2LineSizeWords;
579  }
580 
581  CTR ctr = 0;
582  //log2 of minimun i-cache line size (words)
583  ctr.iCacheLineSize = log2LineSizeWords;
584  //b11 - gem5 uses pipt
585  ctr.l1IndexPolicy = 0x3;
586  //log2 of minimum d-cache line size (words)
587  ctr.dCacheLineSize = log2LineSizeWords;
588  //log2 of max reservation size (words)
589  ctr.erg = log2LineSizeWords;
590  //log2 of max writeback size (words)
591  ctr.cwg = log2LineSizeWords;
592  //b100 - gem5 format is ARMv7
593  ctr.format = 0x4;
594 
595  return ctr;
596  }
597  case MISCREG_ACTLR:
598  warn("Not doing anything for miscreg ACTLR\n");
599  break;
600 
605  return pmu->readMiscReg(misc_reg);
606 
607  case MISCREG_CPSR_Q:
608  panic("shouldn't be reading this register seperately\n");
609  case MISCREG_FPSCR_QC:
611  case MISCREG_FPSCR_EXC:
613  case MISCREG_FPSR:
614  {
615  const uint32_t ones = (uint32_t)(-1);
616  FPSCR fpscrMask = 0;
617  fpscrMask.ioc = ones;
618  fpscrMask.dzc = ones;
619  fpscrMask.ofc = ones;
620  fpscrMask.ufc = ones;
621  fpscrMask.ixc = ones;
622  fpscrMask.idc = ones;
623  fpscrMask.qc = ones;
624  fpscrMask.v = ones;
625  fpscrMask.c = ones;
626  fpscrMask.z = ones;
627  fpscrMask.n = ones;
628  return readMiscRegNoEffect(MISCREG_FPSCR) & (uint32_t)fpscrMask;
629  }
630  case MISCREG_FPCR:
631  {
632  const uint32_t ones = (uint32_t)(-1);
633  FPSCR fpscrMask = 0;
634  fpscrMask.len = ones;
635  fpscrMask.fz16 = ones;
636  fpscrMask.stride = ones;
637  fpscrMask.rMode = ones;
638  fpscrMask.fz = ones;
639  fpscrMask.dn = ones;
640  fpscrMask.ahp = ones;
641  return readMiscRegNoEffect(MISCREG_FPSCR) & (uint32_t)fpscrMask;
642  }
643  case MISCREG_NZCV:
644  {
645  CPSR cpsr = 0;
646  cpsr.nz = tc->readCCReg(CCREG_NZ);
647  cpsr.c = tc->readCCReg(CCREG_C);
648  cpsr.v = tc->readCCReg(CCREG_V);
649  return cpsr;
650  }
651  case MISCREG_DAIF:
652  {
653  CPSR cpsr = 0;
654  cpsr.daif = (uint8_t) ((CPSR) miscRegs[MISCREG_CPSR]).daif;
655  return cpsr;
656  }
657  case MISCREG_SP_EL0:
658  {
659  return tc->readIntReg(INTREG_SP0);
660  }
661  case MISCREG_SP_EL1:
662  {
663  return tc->readIntReg(INTREG_SP1);
664  }
665  case MISCREG_SP_EL2:
666  {
667  return tc->readIntReg(INTREG_SP2);
668  }
669  case MISCREG_SPSEL:
670  {
671  return miscRegs[MISCREG_CPSR] & 0x1;
672  }
673  case MISCREG_CURRENTEL:
674  {
675  return miscRegs[MISCREG_CPSR] & 0xc;
676  }
677  case MISCREG_PAN:
678  {
679  return miscRegs[MISCREG_CPSR] & 0x400000;
680  }
681  case MISCREG_L2CTLR:
682  {
683  // mostly unimplemented, just set NumCPUs field from sim and return
684  L2CTLR l2ctlr = 0;
685  // b00:1CPU to b11:4CPUs
686  l2ctlr.numCPUs = tc->getSystemPtr()->numContexts() - 1;
687  return l2ctlr;
688  }
689  case MISCREG_DBGDIDR:
690  /* For now just implement the version number.
691  * ARMv7, v7.1 Debug architecture (0b0101 --> 0x5)
692  */
693  return 0x5 << 16;
694  case MISCREG_DBGDSCRint:
695  return 0;
696  case MISCREG_ISR:
697  {
698  auto ic = dynamic_cast<ArmISA::Interrupts *>(
700  return ic->getISR(
704  }
705  case MISCREG_ISR_EL1:
706  {
707  auto ic = dynamic_cast<ArmISA::Interrupts *>(
709  return ic->getISR(
713  }
714  case MISCREG_DCZID_EL0:
715  return 0x04; // DC ZVA clear 64-byte chunks
716  case MISCREG_HCPTR:
717  {
718  RegVal val = readMiscRegNoEffect(misc_reg);
719  // The trap bit associated with CP14 is defined as RAZ
720  val &= ~(1 << 14);
721  // If a CP bit in NSACR is 0 then the corresponding bit in
722  // HCPTR is RAO/WI
723  bool secure_lookup = haveSecurity &&
726  if (!secure_lookup) {
728  val |= (mask ^ 0x7FFF) & 0xBFFF;
729  }
730  // Set the bits for unimplemented coprocessors to RAO/WI
731  val |= 0x33FF;
732  return (val);
733  }
734  case MISCREG_HDFAR: // alias for secure DFAR
736  case MISCREG_HIFAR: // alias for secure IFAR
738 
739  case MISCREG_ID_PFR0:
740  // !ThumbEE | !Jazelle | Thumb | ARM
741  return 0x00000031;
742  case MISCREG_ID_PFR1:
743  { // Timer | Virti | !M Profile | TrustZone | ARMv4
744  bool haveTimer = (system->getGenericTimer() != NULL);
745  return 0x00000001
746  | (haveSecurity ? 0x00000010 : 0x0)
747  | (haveVirtualization ? 0x00001000 : 0x0)
748  | (haveTimer ? 0x00010000 : 0x0);
749  }
751  return 0x0000000000000002 | // AArch{64,32} supported at EL0
752  0x0000000000000020 | // EL1
753  (haveVirtualization ? 0x0000000000000200 : 0) | // EL2
754  (haveSecurity ? 0x0000000000002000 : 0) | // EL3
755  (haveSVE ? 0x0000000100000000 : 0) | // SVE
756  (gicv3CpuInterface ? 0x0000000001000000 : 0);
758  return 0; // bits [63:0] RES0 (reserved for future use)
759 
760  // Generic Timer registers
763  return getGenericTimer(tc).readMiscReg(misc_reg);
764 
768  return getGICv3CPUInterface(tc).readMiscReg(misc_reg);
769 
770  default:
771  break;
772 
773  }
774  return readMiscRegNoEffect(misc_reg);
775 }
776 
777 void
779 {
780  assert(misc_reg < NumMiscRegs);
781 
782  const auto &reg = lookUpMiscReg[misc_reg]; // bit masks
783  const auto &map = getMiscIndices(misc_reg);
784  int lower = map.first, upper = map.second;
785 
786  auto v = (val & ~reg.wi()) | reg.rao();
787  if (upper > 0) {
788  miscRegs[lower] = bits(v, 31, 0);
789  miscRegs[upper] = bits(v, 63, 32);
790  DPRINTF(MiscRegs, "Writing to misc reg %d (%d:%d) : %#x\n",
791  misc_reg, lower, upper, v);
792  } else {
793  miscRegs[lower] = v;
794  DPRINTF(MiscRegs, "Writing to misc reg %d (%d) : %#x\n",
795  misc_reg, lower, v);
796  }
797 }
798 
799 void
801 {
802 
803  RegVal newVal = val;
804  bool secure_lookup;
805  SCR scr;
806 
807  if (misc_reg == MISCREG_CPSR) {
808  updateRegMap(val);
809 
810 
811  CPSR old_cpsr = miscRegs[MISCREG_CPSR];
812  int old_mode = old_cpsr.mode;
813  CPSR cpsr = val;
814  if (old_mode != cpsr.mode || cpsr.il != old_cpsr.il) {
817  }
818 
819  if (cpsr.pan != old_cpsr.pan) {
821  }
822 
823  DPRINTF(Arm, "Updating CPSR from %#x to %#x f:%d i:%d a:%d mode:%#x\n",
824  miscRegs[misc_reg], cpsr, cpsr.f, cpsr.i, cpsr.a, cpsr.mode);
825  PCState pc = tc->pcState();
826  pc.nextThumb(cpsr.t);
827  pc.nextJazelle(cpsr.j);
828  pc.illegalExec(cpsr.il == 1);
829 
830  tc->getDecoderPtr()->setSveLen((getCurSveVecLenInBits(tc) >> 7) - 1);
831 
832  // Follow slightly different semantics if a CheckerCPU object
833  // is connected
834  CheckerCPU *checker = tc->getCheckerCpuPtr();
835  if (checker) {
836  tc->pcStateNoRecord(pc);
837  } else {
838  tc->pcState(pc);
839  }
840  } else {
841 #ifndef NDEBUG
842  if (!miscRegInfo[misc_reg][MISCREG_IMPLEMENTED]) {
843  if (miscRegInfo[misc_reg][MISCREG_WARN_NOT_FAIL])
844  warn("Unimplemented system register %s write with %#x.\n",
845  miscRegName[misc_reg], val);
846  else
847  panic("Unimplemented system register %s write with %#x.\n",
848  miscRegName[misc_reg], val);
849  }
850 #endif
851  switch (unflattenMiscReg(misc_reg)) {
852  case MISCREG_CPACR:
853  {
854 
855  const uint32_t ones = (uint32_t)(-1);
856  CPACR cpacrMask = 0;
857  // Only cp10, cp11, and ase are implemented, nothing else should
858  // be writable
859  cpacrMask.cp10 = ones;
860  cpacrMask.cp11 = ones;
861  cpacrMask.asedis = ones;
862 
863  // Security Extensions may limit the writability of CPACR
864  if (haveSecurity) {
866  CPSR cpsr = readMiscRegNoEffect(MISCREG_CPSR);
867  if (scr.ns && (cpsr.mode != MODE_MON) && ELIs32(tc, EL3)) {
868  NSACR nsacr = readMiscRegNoEffect(MISCREG_NSACR);
869  // NB: Skipping the full loop, here
870  if (!nsacr.cp10) cpacrMask.cp10 = 0;
871  if (!nsacr.cp11) cpacrMask.cp11 = 0;
872  }
873  }
874 
876  newVal &= cpacrMask;
877  newVal |= old_val & ~cpacrMask;
878  DPRINTF(MiscRegs, "Writing misc reg %s: %#x\n",
879  miscRegName[misc_reg], newVal);
880  }
881  break;
882  case MISCREG_CPACR_EL1:
883  {
884  const uint32_t ones = (uint32_t)(-1);
885  CPACR cpacrMask = 0;
886  cpacrMask.tta = ones;
887  cpacrMask.fpen = ones;
888  if (haveSVE) {
889  cpacrMask.zen = ones;
890  }
891  newVal &= cpacrMask;
892  DPRINTF(MiscRegs, "Writing misc reg %s: %#x\n",
893  miscRegName[misc_reg], newVal);
894  }
895  break;
896  case MISCREG_CPTR_EL2:
897  {
898  const uint32_t ones = (uint32_t)(-1);
899  CPTR cptrMask = 0;
900  cptrMask.tcpac = ones;
901  cptrMask.tta = ones;
902  cptrMask.tfp = ones;
903  if (haveSVE) {
904  cptrMask.tz = ones;
905  }
906  newVal &= cptrMask;
907  cptrMask = 0;
908  cptrMask.res1_13_12_el2 = ones;
909  cptrMask.res1_7_0_el2 = ones;
910  if (!haveSVE) {
911  cptrMask.res1_8_el2 = ones;
912  }
913  cptrMask.res1_9_el2 = ones;
914  newVal |= cptrMask;
915  DPRINTF(MiscRegs, "Writing misc reg %s: %#x\n",
916  miscRegName[misc_reg], newVal);
917  }
918  break;
919  case MISCREG_CPTR_EL3:
920  {
921  const uint32_t ones = (uint32_t)(-1);
922  CPTR cptrMask = 0;
923  cptrMask.tcpac = ones;
924  cptrMask.tta = ones;
925  cptrMask.tfp = ones;
926  if (haveSVE) {
927  cptrMask.ez = ones;
928  }
929  newVal &= cptrMask;
930  DPRINTF(MiscRegs, "Writing misc reg %s: %#x\n",
931  miscRegName[misc_reg], newVal);
932  }
933  break;
934  case MISCREG_CSSELR:
935  warn_once("The csselr register isn't implemented.\n");
936  return;
937 
938  case MISCREG_DC_ZVA_Xt:
939  warn("Calling DC ZVA! Not Implemeted! Expect WEIRD results\n");
940  return;
941 
942  case MISCREG_FPSCR:
943  {
944  const uint32_t ones = (uint32_t)(-1);
945  FPSCR fpscrMask = 0;
946  fpscrMask.ioc = ones;
947  fpscrMask.dzc = ones;
948  fpscrMask.ofc = ones;
949  fpscrMask.ufc = ones;
950  fpscrMask.ixc = ones;
951  fpscrMask.idc = ones;
952  fpscrMask.ioe = ones;
953  fpscrMask.dze = ones;
954  fpscrMask.ofe = ones;
955  fpscrMask.ufe = ones;
956  fpscrMask.ixe = ones;
957  fpscrMask.ide = ones;
958  fpscrMask.len = ones;
959  fpscrMask.fz16 = ones;
960  fpscrMask.stride = ones;
961  fpscrMask.rMode = ones;
962  fpscrMask.fz = ones;
963  fpscrMask.dn = ones;
964  fpscrMask.ahp = ones;
965  fpscrMask.qc = ones;
966  fpscrMask.v = ones;
967  fpscrMask.c = ones;
968  fpscrMask.z = ones;
969  fpscrMask.n = ones;
970  newVal = (newVal & (uint32_t)fpscrMask) |
972  ~(uint32_t)fpscrMask);
973  tc->getDecoderPtr()->setContext(newVal);
974  }
975  break;
976  case MISCREG_FPSR:
977  {
978  const uint32_t ones = (uint32_t)(-1);
979  FPSCR fpscrMask = 0;
980  fpscrMask.ioc = ones;
981  fpscrMask.dzc = ones;
982  fpscrMask.ofc = ones;
983  fpscrMask.ufc = ones;
984  fpscrMask.ixc = ones;
985  fpscrMask.idc = ones;
986  fpscrMask.qc = ones;
987  fpscrMask.v = ones;
988  fpscrMask.c = ones;
989  fpscrMask.z = ones;
990  fpscrMask.n = ones;
991  newVal = (newVal & (uint32_t)fpscrMask) |
993  ~(uint32_t)fpscrMask);
994  misc_reg = MISCREG_FPSCR;
995  }
996  break;
997  case MISCREG_FPCR:
998  {
999  const uint32_t ones = (uint32_t)(-1);
1000  FPSCR fpscrMask = 0;
1001  fpscrMask.len = ones;
1002  fpscrMask.fz16 = ones;
1003  fpscrMask.stride = ones;
1004  fpscrMask.rMode = ones;
1005  fpscrMask.fz = ones;
1006  fpscrMask.dn = ones;
1007  fpscrMask.ahp = ones;
1008  newVal = (newVal & (uint32_t)fpscrMask) |
1010  ~(uint32_t)fpscrMask);
1011  misc_reg = MISCREG_FPSCR;
1012  }
1013  break;
1014  case MISCREG_CPSR_Q:
1015  {
1016  assert(!(newVal & ~CpsrMaskQ));
1017  newVal = readMiscRegNoEffect(MISCREG_CPSR) | newVal;
1018  misc_reg = MISCREG_CPSR;
1019  }
1020  break;
1021  case MISCREG_FPSCR_QC:
1022  {
1024  (newVal & FpscrQcMask);
1025  misc_reg = MISCREG_FPSCR;
1026  }
1027  break;
1028  case MISCREG_FPSCR_EXC:
1029  {
1031  (newVal & FpscrExcMask);
1032  misc_reg = MISCREG_FPSCR;
1033  }
1034  break;
1035  case MISCREG_FPEXC:
1036  {
1037  // vfpv3 architecture, section B.6.1 of DDI04068
1038  // bit 29 - valid only if fpexc[31] is 0
1039  const uint32_t fpexcMask = 0x60000000;
1040  newVal = (newVal & fpexcMask) |
1041  (readMiscRegNoEffect(MISCREG_FPEXC) & ~fpexcMask);
1042  }
1043  break;
1044  case MISCREG_HCR:
1045  case MISCREG_HCR2:
1046  if (!haveVirtualization)
1047  return;
1048  break;
1049  case MISCREG_IFSR:
1050  {
1051  // ARM ARM (ARM DDI 0406C.b) B4.1.96
1052  const uint32_t ifsrMask =
1053  mask(31, 13) | mask(11, 11) | mask(8, 6);
1054  newVal = newVal & ~ifsrMask;
1055  }
1056  break;
1057  case MISCREG_DFSR:
1058  {
1059  // ARM ARM (ARM DDI 0406C.b) B4.1.52
1060  const uint32_t dfsrMask = mask(31, 14) | mask(8, 8);
1061  newVal = newVal & ~dfsrMask;
1062  }
1063  break;
1064  case MISCREG_AMAIR0:
1065  case MISCREG_AMAIR1:
1066  {
1067  // ARM ARM (ARM DDI 0406C.b) B4.1.5
1068  // Valid only with LPAE
1069  if (!haveLPAE)
1070  return;
1071  DPRINTF(MiscRegs, "Writing AMAIR: %#x\n", newVal);
1072  }
1073  break;
1074  case MISCREG_SCR:
1077  break;
1078  case MISCREG_SCTLR:
1079  {
1080  DPRINTF(MiscRegs, "Writing SCTLR: %#x\n", newVal);
1082 
1083  MiscRegIndex sctlr_idx;
1084  if (haveSecurity && !highestELIs64 && !scr.ns) {
1085  sctlr_idx = MISCREG_SCTLR_S;
1086  } else {
1087  sctlr_idx = MISCREG_SCTLR_NS;
1088  }
1089 
1090  SCTLR sctlr = miscRegs[sctlr_idx];
1091  SCTLR new_sctlr = newVal;
1092  new_sctlr.nmfi = ((bool)sctlr.nmfi) && !haveVirtualization;
1093  miscRegs[sctlr_idx] = (RegVal)new_sctlr;
1096  }
1097  case MISCREG_MIDR:
1098  case MISCREG_ID_PFR0:
1099  case MISCREG_ID_PFR1:
1100  case MISCREG_ID_DFR0:
1101  case MISCREG_ID_MMFR0:
1102  case MISCREG_ID_MMFR1:
1103  case MISCREG_ID_MMFR2:
1104  case MISCREG_ID_MMFR3:
1105  case MISCREG_ID_ISAR0:
1106  case MISCREG_ID_ISAR1:
1107  case MISCREG_ID_ISAR2:
1108  case MISCREG_ID_ISAR3:
1109  case MISCREG_ID_ISAR4:
1110  case MISCREG_ID_ISAR5:
1111 
1112  case MISCREG_MPIDR:
1113  case MISCREG_FPSID:
1114  case MISCREG_TLBTR:
1115  case MISCREG_MVFR0:
1116  case MISCREG_MVFR1:
1117 
1129  // ID registers are constants.
1130  return;
1131 
1132  // TLB Invalidate All
1133  case MISCREG_TLBIALL: // TLBI all entries, EL0&1,
1134  {
1135  assert32(tc);
1136  scr = readMiscReg(MISCREG_SCR, tc);
1137 
1138  TLBIALL tlbiOp(EL1, haveSecurity && !scr.ns);
1139  tlbiOp(tc);
1140  return;
1141  }
1142  // TLB Invalidate All, Inner Shareable
1143  case MISCREG_TLBIALLIS:
1144  {
1145  assert32(tc);
1146  scr = readMiscReg(MISCREG_SCR, tc);
1147 
1148  TLBIALL tlbiOp(EL1, haveSecurity && !scr.ns);
1149  tlbiOp.broadcast(tc);
1150  return;
1151  }
1152  // Instruction TLB Invalidate All
1153  case MISCREG_ITLBIALL:
1154  {
1155  assert32(tc);
1156  scr = readMiscReg(MISCREG_SCR, tc);
1157 
1158  ITLBIALL tlbiOp(EL1, haveSecurity && !scr.ns);
1159  tlbiOp(tc);
1160  return;
1161  }
1162  // Data TLB Invalidate All
1163  case MISCREG_DTLBIALL:
1164  {
1165  assert32(tc);
1166  scr = readMiscReg(MISCREG_SCR, tc);
1167 
1168  DTLBIALL tlbiOp(EL1, haveSecurity && !scr.ns);
1169  tlbiOp(tc);
1170  return;
1171  }
1172  // TLB Invalidate by VA
1173  // mcr tlbimval(is) is invalidating all matching entries
1174  // regardless of the level of lookup, since in gem5 we cache
1175  // in the tlb the last level of lookup only.
1176  case MISCREG_TLBIMVA:
1177  case MISCREG_TLBIMVAL:
1178  {
1179  assert32(tc);
1180  scr = readMiscReg(MISCREG_SCR, tc);
1181 
1182  TLBIMVA tlbiOp(EL1,
1183  haveSecurity && !scr.ns,
1184  mbits(newVal, 31, 12),
1185  bits(newVal, 7,0));
1186 
1187  tlbiOp(tc);
1188  return;
1189  }
1190  // TLB Invalidate by VA, Inner Shareable
1191  case MISCREG_TLBIMVAIS:
1192  case MISCREG_TLBIMVALIS:
1193  {
1194  assert32(tc);
1195  scr = readMiscReg(MISCREG_SCR, tc);
1196 
1197  TLBIMVA tlbiOp(EL1,
1198  haveSecurity && !scr.ns,
1199  mbits(newVal, 31, 12),
1200  bits(newVal, 7,0));
1201 
1202  tlbiOp.broadcast(tc);
1203  return;
1204  }
1205  // TLB Invalidate by ASID match
1206  case MISCREG_TLBIASID:
1207  {
1208  assert32(tc);
1209  scr = readMiscReg(MISCREG_SCR, tc);
1210 
1211  TLBIASID tlbiOp(EL1,
1212  haveSecurity && !scr.ns,
1213  bits(newVal, 7,0));
1214 
1215  tlbiOp(tc);
1216  return;
1217  }
1218  // TLB Invalidate by ASID match, Inner Shareable
1219  case MISCREG_TLBIASIDIS:
1220  {
1221  assert32(tc);
1222  scr = readMiscReg(MISCREG_SCR, tc);
1223 
1224  TLBIASID tlbiOp(EL1,
1225  haveSecurity && !scr.ns,
1226  bits(newVal, 7,0));
1227 
1228  tlbiOp.broadcast(tc);
1229  return;
1230  }
1231  // mcr tlbimvaal(is) is invalidating all matching entries
1232  // regardless of the level of lookup, since in gem5 we cache
1233  // in the tlb the last level of lookup only.
1234  // TLB Invalidate by VA, All ASID
1235  case MISCREG_TLBIMVAA:
1236  case MISCREG_TLBIMVAAL:
1237  {
1238  assert32(tc);
1239  scr = readMiscReg(MISCREG_SCR, tc);
1240 
1241  TLBIMVAA tlbiOp(EL1, haveSecurity && !scr.ns,
1242  mbits(newVal, 31,12));
1243 
1244  tlbiOp(tc);
1245  return;
1246  }
1247  // TLB Invalidate by VA, All ASID, Inner Shareable
1248  case MISCREG_TLBIMVAAIS:
1249  case MISCREG_TLBIMVAALIS:
1250  {
1251  assert32(tc);
1252  scr = readMiscReg(MISCREG_SCR, tc);
1253 
1254  TLBIMVAA tlbiOp(EL1, haveSecurity && !scr.ns,
1255  mbits(newVal, 31,12));
1256 
1257  tlbiOp.broadcast(tc);
1258  return;
1259  }
1260  // mcr tlbimvalh(is) is invalidating all matching entries
1261  // regardless of the level of lookup, since in gem5 we cache
1262  // in the tlb the last level of lookup only.
1263  // TLB Invalidate by VA, Hyp mode
1264  case MISCREG_TLBIMVAH:
1265  case MISCREG_TLBIMVALH:
1266  {
1267  assert32(tc);
1268  scr = readMiscReg(MISCREG_SCR, tc);
1269 
1270  TLBIMVAA tlbiOp(EL2, haveSecurity && !scr.ns,
1271  mbits(newVal, 31,12));
1272 
1273  tlbiOp(tc);
1274  return;
1275  }
1276  // TLB Invalidate by VA, Hyp mode, Inner Shareable
1277  case MISCREG_TLBIMVAHIS:
1278  case MISCREG_TLBIMVALHIS:
1279  {
1280  assert32(tc);
1281  scr = readMiscReg(MISCREG_SCR, tc);
1282 
1283  TLBIMVAA tlbiOp(EL2, haveSecurity && !scr.ns,
1284  mbits(newVal, 31,12));
1285 
1286  tlbiOp.broadcast(tc);
1287  return;
1288  }
1289  // mcr tlbiipas2l(is) is invalidating all matching entries
1290  // regardless of the level of lookup, since in gem5 we cache
1291  // in the tlb the last level of lookup only.
1292  // TLB Invalidate by Intermediate Physical Address, Stage 2
1293  case MISCREG_TLBIIPAS2:
1294  case MISCREG_TLBIIPAS2L:
1295  {
1296  assert32(tc);
1297  scr = readMiscReg(MISCREG_SCR, tc);
1298 
1299  TLBIIPA tlbiOp(EL1,
1300  haveSecurity && !scr.ns,
1301  static_cast<Addr>(bits(newVal, 35, 0)) << 12);
1302 
1303  tlbiOp(tc);
1304  return;
1305  }
1306  // TLB Invalidate by Intermediate Physical Address, Stage 2,
1307  // Inner Shareable
1308  case MISCREG_TLBIIPAS2IS:
1309  case MISCREG_TLBIIPAS2LIS:
1310  {
1311  assert32(tc);
1312  scr = readMiscReg(MISCREG_SCR, tc);
1313 
1314  TLBIIPA tlbiOp(EL1,
1315  haveSecurity && !scr.ns,
1316  static_cast<Addr>(bits(newVal, 35, 0)) << 12);
1317 
1318  tlbiOp.broadcast(tc);
1319  return;
1320  }
1321  // Instruction TLB Invalidate by VA
1322  case MISCREG_ITLBIMVA:
1323  {
1324  assert32(tc);
1325  scr = readMiscReg(MISCREG_SCR, tc);
1326 
1327  ITLBIMVA tlbiOp(EL1,
1328  haveSecurity && !scr.ns,
1329  mbits(newVal, 31, 12),
1330  bits(newVal, 7,0));
1331 
1332  tlbiOp(tc);
1333  return;
1334  }
1335  // Data TLB Invalidate by VA
1336  case MISCREG_DTLBIMVA:
1337  {
1338  assert32(tc);
1339  scr = readMiscReg(MISCREG_SCR, tc);
1340 
1341  DTLBIMVA tlbiOp(EL1,
1342  haveSecurity && !scr.ns,
1343  mbits(newVal, 31, 12),
1344  bits(newVal, 7,0));
1345 
1346  tlbiOp(tc);
1347  return;
1348  }
1349  // Instruction TLB Invalidate by ASID match
1350  case MISCREG_ITLBIASID:
1351  {
1352  assert32(tc);
1353  scr = readMiscReg(MISCREG_SCR, tc);
1354 
1355  ITLBIASID tlbiOp(EL1,
1356  haveSecurity && !scr.ns,
1357  bits(newVal, 7,0));
1358 
1359  tlbiOp(tc);
1360  return;
1361  }
1362  // Data TLB Invalidate by ASID match
1363  case MISCREG_DTLBIASID:
1364  {
1365  assert32(tc);
1366  scr = readMiscReg(MISCREG_SCR, tc);
1367 
1368  DTLBIASID tlbiOp(EL1,
1369  haveSecurity && !scr.ns,
1370  bits(newVal, 7,0));
1371 
1372  tlbiOp(tc);
1373  return;
1374  }
1375  // TLB Invalidate All, Non-Secure Non-Hyp
1376  case MISCREG_TLBIALLNSNH:
1377  {
1378  assert32(tc);
1379 
1380  TLBIALLN tlbiOp(EL1);
1381  tlbiOp(tc);
1382  return;
1383  }
1384  // TLB Invalidate All, Non-Secure Non-Hyp, Inner Shareable
1385  case MISCREG_TLBIALLNSNHIS:
1386  {
1387  assert32(tc);
1388 
1389  TLBIALLN tlbiOp(EL1);
1390  tlbiOp.broadcast(tc);
1391  return;
1392  }
1393  // TLB Invalidate All, Hyp mode
1394  case MISCREG_TLBIALLH:
1395  {
1396  assert32(tc);
1397 
1398  TLBIALLN tlbiOp(EL2);
1399  tlbiOp(tc);
1400  return;
1401  }
1402  // TLB Invalidate All, Hyp mode, Inner Shareable
1403  case MISCREG_TLBIALLHIS:
1404  {
1405  assert32(tc);
1406 
1407  TLBIALLN tlbiOp(EL2);
1408  tlbiOp.broadcast(tc);
1409  return;
1410  }
1411  // AArch64 TLB Invalidate All, EL3
1412  case MISCREG_TLBI_ALLE3:
1413  {
1414  assert64(tc);
1415 
1416  TLBIALL tlbiOp(EL3, true);
1417  tlbiOp(tc);
1418  return;
1419  }
1420  // AArch64 TLB Invalidate All, EL3, Inner Shareable
1421  case MISCREG_TLBI_ALLE3IS:
1422  {
1423  assert64(tc);
1424 
1425  TLBIALL tlbiOp(EL3, true);
1426  tlbiOp.broadcast(tc);
1427  return;
1428  }
1429  // AArch64 TLB Invalidate All, EL2, Inner Shareable
1430  case MISCREG_TLBI_ALLE2:
1431  case MISCREG_TLBI_ALLE2IS:
1432  {
1433  assert64(tc);
1434  scr = readMiscReg(MISCREG_SCR, tc);
1435 
1436  TLBIALL tlbiOp(EL2, haveSecurity && !scr.ns);
1437  tlbiOp(tc);
1438  return;
1439  }
1440  // AArch64 TLB Invalidate All, EL1
1441  case MISCREG_TLBI_ALLE1:
1442  case MISCREG_TLBI_VMALLE1:
1444  // @todo: handle VMID and stage 2 to enable Virtualization
1445  {
1446  assert64(tc);
1447  scr = readMiscReg(MISCREG_SCR, tc);
1448 
1449  TLBIALL tlbiOp(EL1, haveSecurity && !scr.ns);
1450  tlbiOp(tc);
1451  return;
1452  }
1453  // AArch64 TLB Invalidate All, EL1, Inner Shareable
1454  case MISCREG_TLBI_ALLE1IS:
1457  // @todo: handle VMID and stage 2 to enable Virtualization
1458  {
1459  assert64(tc);
1460  scr = readMiscReg(MISCREG_SCR, tc);
1461 
1462  TLBIALL tlbiOp(EL1, haveSecurity && !scr.ns);
1463  tlbiOp.broadcast(tc);
1464  return;
1465  }
1466  // VAEx(IS) and VALEx(IS) are the same because TLBs
1467  // only store entries
1468  // from the last level of translation table walks
1469  // @todo: handle VMID to enable Virtualization
1470  // AArch64 TLB Invalidate by VA, EL3
1471  case MISCREG_TLBI_VAE3_Xt:
1472  case MISCREG_TLBI_VALE3_Xt:
1473  {
1474  assert64(tc);
1475 
1476  TLBIMVA tlbiOp(EL3, true,
1477  static_cast<Addr>(bits(newVal, 43, 0)) << 12,
1478  0xbeef);
1479  tlbiOp(tc);
1480  return;
1481  }
1482  // AArch64 TLB Invalidate by VA, EL3, Inner Shareable
1485  {
1486  assert64(tc);
1487 
1488  TLBIMVA tlbiOp(EL3, true,
1489  static_cast<Addr>(bits(newVal, 43, 0)) << 12,
1490  0xbeef);
1491 
1492  tlbiOp.broadcast(tc);
1493  return;
1494  }
1495  // AArch64 TLB Invalidate by VA, EL2
1496  case MISCREG_TLBI_VAE2_Xt:
1497  case MISCREG_TLBI_VALE2_Xt:
1498  {
1499  assert64(tc);
1500  scr = readMiscReg(MISCREG_SCR, tc);
1501 
1502  TLBIMVA tlbiOp(EL2, haveSecurity && !scr.ns,
1503  static_cast<Addr>(bits(newVal, 43, 0)) << 12,
1504  0xbeef);
1505  tlbiOp(tc);
1506  return;
1507  }
1508  // AArch64 TLB Invalidate by VA, EL2, Inner Shareable
1511  {
1512  assert64(tc);
1513  scr = readMiscReg(MISCREG_SCR, tc);
1514 
1515  TLBIMVA tlbiOp(EL2, haveSecurity && !scr.ns,
1516  static_cast<Addr>(bits(newVal, 43, 0)) << 12,
1517  0xbeef);
1518 
1519  tlbiOp.broadcast(tc);
1520  return;
1521  }
1522  // AArch64 TLB Invalidate by VA, EL1
1523  case MISCREG_TLBI_VAE1_Xt:
1524  case MISCREG_TLBI_VALE1_Xt:
1525  {
1526  assert64(tc);
1527  scr = readMiscReg(MISCREG_SCR, tc);
1528  auto asid = haveLargeAsid64 ? bits(newVal, 63, 48) :
1529  bits(newVal, 55, 48);
1530 
1531  TLBIMVA tlbiOp(EL1, haveSecurity && !scr.ns,
1532  static_cast<Addr>(bits(newVal, 43, 0)) << 12,
1533  asid);
1534 
1535  tlbiOp(tc);
1536  return;
1537  }
1538  // AArch64 TLB Invalidate by VA, EL1, Inner Shareable
1541  {
1542  assert64(tc);
1543  scr = readMiscReg(MISCREG_SCR, tc);
1544  auto asid = haveLargeAsid64 ? bits(newVal, 63, 48) :
1545  bits(newVal, 55, 48);
1546 
1547  TLBIMVA tlbiOp(EL1, haveSecurity && !scr.ns,
1548  static_cast<Addr>(bits(newVal, 43, 0)) << 12,
1549  asid);
1550 
1551  tlbiOp.broadcast(tc);
1552  return;
1553  }
1554  // AArch64 TLB Invalidate by ASID, EL1
1555  // @todo: handle VMID to enable Virtualization
1557  {
1558  assert64(tc);
1559  scr = readMiscReg(MISCREG_SCR, tc);
1560  auto asid = haveLargeAsid64 ? bits(newVal, 63, 48) :
1561  bits(newVal, 55, 48);
1562 
1563  TLBIASID tlbiOp(EL1, haveSecurity && !scr.ns, asid);
1564  tlbiOp(tc);
1565  return;
1566  }
1567  // AArch64 TLB Invalidate by ASID, EL1, Inner Shareable
1569  {
1570  assert64(tc);
1571  scr = readMiscReg(MISCREG_SCR, tc);
1572  auto asid = haveLargeAsid64 ? bits(newVal, 63, 48) :
1573  bits(newVal, 55, 48);
1574 
1575  TLBIASID tlbiOp(EL1, haveSecurity && !scr.ns, asid);
1576  tlbiOp.broadcast(tc);
1577  return;
1578  }
1579  // VAAE1(IS) and VAALE1(IS) are the same because TLBs only store
1580  // entries from the last level of translation table walks
1581  // AArch64 TLB Invalidate by VA, All ASID, EL1
1582  case MISCREG_TLBI_VAAE1_Xt:
1584  {
1585  assert64(tc);
1586  scr = readMiscReg(MISCREG_SCR, tc);
1587 
1588  TLBIMVAA tlbiOp(EL1, haveSecurity && !scr.ns,
1589  static_cast<Addr>(bits(newVal, 43, 0)) << 12);
1590 
1591  tlbiOp(tc);
1592  return;
1593  }
1594  // AArch64 TLB Invalidate by VA, All ASID, EL1, Inner Shareable
1597  {
1598  assert64(tc);
1599  scr = readMiscReg(MISCREG_SCR, tc);
1600 
1601  TLBIMVAA tlbiOp(EL1, haveSecurity && !scr.ns,
1602  static_cast<Addr>(bits(newVal, 43, 0)) << 12);
1603 
1604  tlbiOp.broadcast(tc);
1605  return;
1606  }
1607  // AArch64 TLB Invalidate by Intermediate Physical Address,
1608  // Stage 2, EL1
1611  {
1612  assert64(tc);
1613  scr = readMiscReg(MISCREG_SCR, tc);
1614 
1615  TLBIIPA tlbiOp(EL1, haveSecurity && !scr.ns,
1616  static_cast<Addr>(bits(newVal, 35, 0)) << 12);
1617 
1618  tlbiOp(tc);
1619  return;
1620  }
1621  // AArch64 TLB Invalidate by Intermediate Physical Address,
1622  // Stage 2, EL1, Inner Shareable
1625  {
1626  assert64(tc);
1627  scr = readMiscReg(MISCREG_SCR, tc);
1628 
1629  TLBIIPA tlbiOp(EL1, haveSecurity && !scr.ns,
1630  static_cast<Addr>(bits(newVal, 35, 0)) << 12);
1631 
1632  tlbiOp.broadcast(tc);
1633  return;
1634  }
1635  case MISCREG_ACTLR:
1636  warn("Not doing anything for write of miscreg ACTLR\n");
1637  break;
1638 
1642  case MISCREG_PMCR ... MISCREG_PMOVSSET:
1643  pmu->setMiscReg(misc_reg, newVal);
1644  break;
1645 
1646 
1647  case MISCREG_HSTR: // TJDBX, now redifined to be RES0
1648  {
1649  HSTR hstrMask = 0;
1650  hstrMask.tjdbx = 1;
1651  newVal &= ~((uint32_t) hstrMask);
1652  break;
1653  }
1654  case MISCREG_HCPTR:
1655  {
1656  // If a CP bit in NSACR is 0 then the corresponding bit in
1657  // HCPTR is RAO/WI. Same applies to NSASEDIS
1658  secure_lookup = haveSecurity &&
1661  if (!secure_lookup) {
1663  RegVal mask =
1664  (readMiscRegNoEffect(MISCREG_NSACR) ^ 0x7FFF) & 0xBFFF;
1665  newVal = (newVal & ~mask) | (oldValue & mask);
1666  }
1667  break;
1668  }
1669  case MISCREG_HDFAR: // alias for secure DFAR
1670  misc_reg = MISCREG_DFAR_S;
1671  break;
1672  case MISCREG_HIFAR: // alias for secure IFAR
1673  misc_reg = MISCREG_IFAR_S;
1674  break;
1675  case MISCREG_ATS1CPR:
1676  case MISCREG_ATS1CPW:
1677  case MISCREG_ATS1CUR:
1678  case MISCREG_ATS1CUW:
1679  case MISCREG_ATS12NSOPR:
1680  case MISCREG_ATS12NSOPW:
1681  case MISCREG_ATS12NSOUR:
1682  case MISCREG_ATS12NSOUW:
1683  case MISCREG_ATS1HR:
1684  case MISCREG_ATS1HW:
1685  {
1686  Request::Flags flags = 0;
1689  Fault fault;
1690  switch(misc_reg) {
1691  case MISCREG_ATS1CPR:
1692  tranType = TLB::S1CTran;
1693  mode = BaseTLB::Read;
1694  break;
1695  case MISCREG_ATS1CPW:
1696  tranType = TLB::S1CTran;
1697  mode = BaseTLB::Write;
1698  break;
1699  case MISCREG_ATS1CUR:
1700  flags = TLB::UserMode;
1701  tranType = TLB::S1CTran;
1702  mode = BaseTLB::Read;
1703  break;
1704  case MISCREG_ATS1CUW:
1705  flags = TLB::UserMode;
1706  tranType = TLB::S1CTran;
1707  mode = BaseTLB::Write;
1708  break;
1709  case MISCREG_ATS12NSOPR:
1710  if (!haveSecurity)
1711  panic("Security Extensions required for ATS12NSOPR");
1712  tranType = TLB::S1S2NsTran;
1713  mode = BaseTLB::Read;
1714  break;
1715  case MISCREG_ATS12NSOPW:
1716  if (!haveSecurity)
1717  panic("Security Extensions required for ATS12NSOPW");
1718  tranType = TLB::S1S2NsTran;
1719  mode = BaseTLB::Write;
1720  break;
1721  case MISCREG_ATS12NSOUR:
1722  if (!haveSecurity)
1723  panic("Security Extensions required for ATS12NSOUR");
1724  flags = TLB::UserMode;
1725  tranType = TLB::S1S2NsTran;
1726  mode = BaseTLB::Read;
1727  break;
1728  case MISCREG_ATS12NSOUW:
1729  if (!haveSecurity)
1730  panic("Security Extensions required for ATS12NSOUW");
1731  flags = TLB::UserMode;
1732  tranType = TLB::S1S2NsTran;
1733  mode = BaseTLB::Write;
1734  break;
1735  case MISCREG_ATS1HR: // only really useful from secure mode.
1736  tranType = TLB::HypMode;
1737  mode = BaseTLB::Read;
1738  break;
1739  case MISCREG_ATS1HW:
1740  tranType = TLB::HypMode;
1741  mode = BaseTLB::Write;
1742  break;
1743  }
1744  // If we're in timing mode then doing the translation in
1745  // functional mode then we're slightly distorting performance
1746  // results obtained from simulations. The translation should be
1747  // done in the same mode the core is running in. NOTE: This
1748  // can't be an atomic translation because that causes problems
1749  // with unexpected atomic snoop requests.
1750  warn("Translating via %s in functional mode! Fix Me!\n",
1751  miscRegName[misc_reg]);
1752 
1753  auto req = std::make_shared<Request>(
1754  val, 0, flags, Request::funcMasterId,
1755  tc->pcState().pc(), tc->contextId());
1756 
1757  fault = getDTBPtr(tc)->translateFunctional(
1758  req, tc, mode, tranType);
1759 
1760  TTBCR ttbcr = readMiscRegNoEffect(MISCREG_TTBCR);
1761  HCR hcr = readMiscRegNoEffect(MISCREG_HCR);
1762 
1763  RegVal newVal;
1764  if (fault == NoFault) {
1765  Addr paddr = req->getPaddr();
1766  if (haveLPAE && (ttbcr.eae || tranType & TLB::HypMode ||
1767  ((tranType & TLB::S1S2NsTran) && hcr.vm) )) {
1768  newVal = (paddr & mask(39, 12)) |
1769  (getDTBPtr(tc)->getAttr());
1770  } else {
1771  newVal = (paddr & 0xfffff000) |
1772  (getDTBPtr(tc)->getAttr());
1773  }
1774  DPRINTF(MiscRegs,
1775  "MISCREG: Translated addr 0x%08x: PAR: 0x%08x\n",
1776  val, newVal);
1777  } else {
1778  ArmFault *armFault = static_cast<ArmFault *>(fault.get());
1779  armFault->update(tc);
1780  // Set fault bit and FSR
1781  FSR fsr = armFault->getFsr(tc);
1782 
1783  newVal = ((fsr >> 9) & 1) << 11;
1784  if (newVal) {
1785  // LPAE - rearange fault status
1786  newVal |= ((fsr >> 0) & 0x3f) << 1;
1787  } else {
1788  // VMSA - rearange fault status
1789  newVal |= ((fsr >> 0) & 0xf) << 1;
1790  newVal |= ((fsr >> 10) & 0x1) << 5;
1791  newVal |= ((fsr >> 12) & 0x1) << 6;
1792  }
1793  newVal |= 0x1; // F bit
1794  newVal |= ((armFault->iss() >> 7) & 0x1) << 8;
1795  newVal |= armFault->isStage2() ? 0x200 : 0;
1796  DPRINTF(MiscRegs,
1797  "MISCREG: Translated addr 0x%08x fault fsr %#x: PAR: 0x%08x\n",
1798  val, fsr, newVal);
1799  }
1801  return;
1802  }
1803  case MISCREG_TTBCR:
1804  {
1805  TTBCR ttbcr = readMiscRegNoEffect(MISCREG_TTBCR);
1806  const uint32_t ones = (uint32_t)(-1);
1807  TTBCR ttbcrMask = 0;
1808  TTBCR ttbcrNew = newVal;
1809 
1810  // ARM DDI 0406C.b, ARMv7-32
1811  ttbcrMask.n = ones; // T0SZ
1812  if (haveSecurity) {
1813  ttbcrMask.pd0 = ones;
1814  ttbcrMask.pd1 = ones;
1815  }
1816  ttbcrMask.epd0 = ones;
1817  ttbcrMask.irgn0 = ones;
1818  ttbcrMask.orgn0 = ones;
1819  ttbcrMask.sh0 = ones;
1820  ttbcrMask.ps = ones; // T1SZ
1821  ttbcrMask.a1 = ones;
1822  ttbcrMask.epd1 = ones;
1823  ttbcrMask.irgn1 = ones;
1824  ttbcrMask.orgn1 = ones;
1825  ttbcrMask.sh1 = ones;
1826  if (haveLPAE)
1827  ttbcrMask.eae = ones;
1828 
1829  if (haveLPAE && ttbcrNew.eae) {
1830  newVal = newVal & ttbcrMask;
1831  } else {
1832  newVal = (newVal & ttbcrMask) | (ttbcr & (~ttbcrMask));
1833  }
1834  // Invalidate TLB MiscReg
1837  break;
1838  }
1839  case MISCREG_TTBR0:
1840  case MISCREG_TTBR1:
1841  {
1842  TTBCR ttbcr = readMiscRegNoEffect(MISCREG_TTBCR);
1843  if (haveLPAE) {
1844  if (ttbcr.eae) {
1845  // ARMv7 bit 63-56, 47-40 reserved, UNK/SBZP
1846  // ARMv8 AArch32 bit 63-56 only
1847  uint64_t ttbrMask = mask(63,56) | mask(47,40);
1848  newVal = (newVal & (~ttbrMask));
1849  }
1850  }
1851  // Invalidate TLB MiscReg
1854  break;
1855  }
1856  case MISCREG_SCTLR_EL1:
1857  case MISCREG_CONTEXTIDR:
1858  case MISCREG_PRRR:
1859  case MISCREG_NMRR:
1860  case MISCREG_MAIR0:
1861  case MISCREG_MAIR1:
1862  case MISCREG_DACR:
1863  case MISCREG_VTTBR:
1864  case MISCREG_SCR_EL3:
1865  case MISCREG_HCR_EL2:
1866  case MISCREG_TCR_EL1:
1867  case MISCREG_TCR_EL2:
1868  case MISCREG_TCR_EL3:
1869  case MISCREG_SCTLR_EL2:
1870  case MISCREG_SCTLR_EL3:
1871  case MISCREG_HSCTLR:
1872  case MISCREG_TTBR0_EL1:
1873  case MISCREG_TTBR1_EL1:
1874  case MISCREG_TTBR0_EL2:
1875  case MISCREG_TTBR1_EL2:
1876  case MISCREG_TTBR0_EL3:
1879  break;
1880  case MISCREG_NZCV:
1881  {
1882  CPSR cpsr = val;
1883 
1884  tc->setCCReg(CCREG_NZ, cpsr.nz);
1885  tc->setCCReg(CCREG_C, cpsr.c);
1886  tc->setCCReg(CCREG_V, cpsr.v);
1887  }
1888  break;
1889  case MISCREG_DAIF:
1890  {
1891  CPSR cpsr = miscRegs[MISCREG_CPSR];
1892  cpsr.daif = (uint8_t) ((CPSR) newVal).daif;
1893  newVal = cpsr;
1894  misc_reg = MISCREG_CPSR;
1895  }
1896  break;
1897  case MISCREG_SP_EL0:
1898  tc->setIntReg(INTREG_SP0, newVal);
1899  break;
1900  case MISCREG_SP_EL1:
1901  tc->setIntReg(INTREG_SP1, newVal);
1902  break;
1903  case MISCREG_SP_EL2:
1904  tc->setIntReg(INTREG_SP2, newVal);
1905  break;
1906  case MISCREG_SPSEL:
1907  {
1908  CPSR cpsr = miscRegs[MISCREG_CPSR];
1909  cpsr.sp = (uint8_t) ((CPSR) newVal).sp;
1910  newVal = cpsr;
1911  misc_reg = MISCREG_CPSR;
1912  }
1913  break;
1914  case MISCREG_CURRENTEL:
1915  {
1916  CPSR cpsr = miscRegs[MISCREG_CPSR];
1917  cpsr.el = (uint8_t) ((CPSR) newVal).el;
1918  newVal = cpsr;
1919  misc_reg = MISCREG_CPSR;
1920  }
1921  break;
1922  case MISCREG_PAN:
1923  {
1924  // PAN is affecting data accesses
1926 
1927  CPSR cpsr = miscRegs[MISCREG_CPSR];
1928  cpsr.pan = (uint8_t) ((CPSR) newVal).pan;
1929  newVal = cpsr;
1930  misc_reg = MISCREG_CPSR;
1931  }
1932  break;
1933  case MISCREG_AT_S1E1R_Xt:
1934  case MISCREG_AT_S1E1W_Xt:
1935  case MISCREG_AT_S1E0R_Xt:
1936  case MISCREG_AT_S1E0W_Xt:
1937  case MISCREG_AT_S1E2R_Xt:
1938  case MISCREG_AT_S1E2W_Xt:
1939  case MISCREG_AT_S12E1R_Xt:
1940  case MISCREG_AT_S12E1W_Xt:
1941  case MISCREG_AT_S12E0R_Xt:
1942  case MISCREG_AT_S12E0W_Xt:
1943  case MISCREG_AT_S1E3R_Xt:
1944  case MISCREG_AT_S1E3W_Xt:
1945  {
1946  RequestPtr req = std::make_shared<Request>();
1947  Request::Flags flags = 0;
1950  Fault fault;
1951  switch(misc_reg) {
1952  case MISCREG_AT_S1E1R_Xt:
1953  tranType = TLB::S1E1Tran;
1954  mode = BaseTLB::Read;
1955  break;
1956  case MISCREG_AT_S1E1W_Xt:
1957  tranType = TLB::S1E1Tran;
1958  mode = BaseTLB::Write;
1959  break;
1960  case MISCREG_AT_S1E0R_Xt:
1961  flags = TLB::UserMode;
1962  tranType = TLB::S1E0Tran;
1963  mode = BaseTLB::Read;
1964  break;
1965  case MISCREG_AT_S1E0W_Xt:
1966  flags = TLB::UserMode;
1967  tranType = TLB::S1E0Tran;
1968  mode = BaseTLB::Write;
1969  break;
1970  case MISCREG_AT_S1E2R_Xt:
1971  tranType = TLB::S1E2Tran;
1972  mode = BaseTLB::Read;
1973  break;
1974  case MISCREG_AT_S1E2W_Xt:
1975  tranType = TLB::S1E2Tran;
1976  mode = BaseTLB::Write;
1977  break;
1978  case MISCREG_AT_S12E0R_Xt:
1979  flags = TLB::UserMode;
1980  tranType = TLB::S12E0Tran;
1981  mode = BaseTLB::Read;
1982  break;
1983  case MISCREG_AT_S12E0W_Xt:
1984  flags = TLB::UserMode;
1985  tranType = TLB::S12E0Tran;
1986  mode = BaseTLB::Write;
1987  break;
1988  case MISCREG_AT_S12E1R_Xt:
1989  tranType = TLB::S12E1Tran;
1990  mode = BaseTLB::Read;
1991  break;
1992  case MISCREG_AT_S12E1W_Xt:
1993  tranType = TLB::S12E1Tran;
1994  mode = BaseTLB::Write;
1995  break;
1996  case MISCREG_AT_S1E3R_Xt:
1997  tranType = TLB::S1E3Tran;
1998  mode = BaseTLB::Read;
1999  break;
2000  case MISCREG_AT_S1E3W_Xt:
2001  tranType = TLB::S1E3Tran;
2002  mode = BaseTLB::Write;
2003  break;
2004  }
2005  // If we're in timing mode then doing the translation in
2006  // functional mode then we're slightly distorting performance
2007  // results obtained from simulations. The translation should be
2008  // done in the same mode the core is running in. NOTE: This
2009  // can't be an atomic translation because that causes problems
2010  // with unexpected atomic snoop requests.
2011  warn("Translating via %s in functional mode! Fix Me!\n",
2012  miscRegName[misc_reg]);
2013 
2014  req->setVirt(val, 0, flags, Request::funcMasterId,
2015  tc->pcState().pc());
2016  req->setContext(tc->contextId());
2017  fault = getDTBPtr(tc)->translateFunctional(req, tc, mode,
2018  tranType);
2019 
2020  RegVal newVal;
2021  if (fault == NoFault) {
2022  Addr paddr = req->getPaddr();
2023  uint64_t attr = getDTBPtr(tc)->getAttr();
2024  uint64_t attr1 = attr >> 56;
2025  if (!attr1 || attr1 ==0x44) {
2026  attr |= 0x100;
2027  attr &= ~ uint64_t(0x80);
2028  }
2029  newVal = (paddr & mask(47, 12)) | attr;
2030  DPRINTF(MiscRegs,
2031  "MISCREG: Translated addr %#x: PAR_EL1: %#xx\n",
2032  val, newVal);
2033  } else {
2034  ArmFault *armFault = static_cast<ArmFault *>(fault.get());
2035  armFault->update(tc);
2036  // Set fault bit and FSR
2037  FSR fsr = armFault->getFsr(tc);
2038 
2039  CPSR cpsr = tc->readMiscReg(MISCREG_CPSR);
2040  if (cpsr.width) { // AArch32
2041  newVal = ((fsr >> 9) & 1) << 11;
2042  // rearrange fault status
2043  newVal |= ((fsr >> 0) & 0x3f) << 1;
2044  newVal |= 0x1; // F bit
2045  newVal |= ((armFault->iss() >> 7) & 0x1) << 8;
2046  newVal |= armFault->isStage2() ? 0x200 : 0;
2047  } else { // AArch64
2048  newVal = 1; // F bit
2049  newVal |= fsr << 1; // FST
2050  // TODO: DDI 0487A.f D7-2083, AbortFault's s1ptw bit.
2051  newVal |= armFault->isStage2() ? 1 << 8 : 0; // PTW
2052  newVal |= armFault->isStage2() ? 1 << 9 : 0; // S
2053  newVal |= 1 << 11; // RES1
2054  }
2055  DPRINTF(MiscRegs,
2056  "MISCREG: Translated addr %#x fault fsr %#x: PAR: %#x\n",
2057  val, fsr, newVal);
2058  }
2060  return;
2061  }
2062  case MISCREG_SPSR_EL3:
2063  case MISCREG_SPSR_EL2:
2064  case MISCREG_SPSR_EL1:
2065  {
2066  RegVal spsr_mask = havePAN ?
2067  ~(0x5 << 21) : ~(0x7 << 21);
2068 
2069  newVal = val & spsr_mask;
2070  break;
2071  }
2072  case MISCREG_L2CTLR:
2073  warn("miscreg L2CTLR (%s) written with %#x. ignored...\n",
2074  miscRegName[misc_reg], uint32_t(val));
2075  break;
2076 
2077  // Generic Timer registers
2080  getGenericTimer(tc).setMiscReg(misc_reg, newVal);
2081  break;
2085  getGICv3CPUInterface(tc).setMiscReg(misc_reg, newVal);
2086  return;
2087  case MISCREG_ZCR_EL3:
2088  case MISCREG_ZCR_EL2:
2089  case MISCREG_ZCR_EL1:
2090  tc->getDecoderPtr()->setSveLen(
2091  (getCurSveVecLenInBits(tc) >> 7) - 1);
2092  break;
2093  }
2094  }
2095  setMiscRegNoEffect(misc_reg, newVal);
2096 }
2097 
2098 BaseISADevice &
2100 {
2101  // We only need to create an ISA interface the first time we try
2102  // to access the timer.
2103  if (timer)
2104  return *timer.get();
2105 
2106  assert(system);
2107  GenericTimer *generic_timer(system->getGenericTimer());
2108  if (!generic_timer) {
2109  panic("Trying to get a generic timer from a system that hasn't "
2110  "been configured to use a generic timer.\n");
2111  }
2112 
2113  timer.reset(new GenericTimerISA(*generic_timer, tc->contextId()));
2114  timer->setThreadContext(tc);
2115 
2116  return *timer.get();
2117 }
2118 
2119 BaseISADevice &
2121 {
2122  panic_if(!gicv3CpuInterface, "GICV3 cpu interface is not registered!");
2123  return *gicv3CpuInterface.get();
2124 }
2125 
2126 unsigned
2128 {
2129  if (!FullSystem) {
2130  return sveVL * 128;
2131  }
2132 
2133  panic_if(!tc,
2134  "A ThreadContext is needed to determine the SVE vector length "
2135  "in full-system mode");
2136 
2137  CPSR cpsr = miscRegs[MISCREG_CPSR];
2138  ExceptionLevel el = (ExceptionLevel) (uint8_t) cpsr.el;
2139 
2140  unsigned len = 0;
2141 
2142  if (el == EL1 || (el == EL0 && !ELIsInHost(tc, el))) {
2143  len = static_cast<ZCR>(miscRegs[MISCREG_ZCR_EL1]).len;
2144  }
2145 
2146  if (el == EL2 || (el == EL0 && ELIsInHost(tc, el))) {
2147  len = static_cast<ZCR>(miscRegs[MISCREG_ZCR_EL2]).len;
2148  } else if (haveVirtualization && !inSecureState(tc) &&
2149  (el == EL0 || el == EL1)) {
2150  len = std::min(
2151  len,
2152  static_cast<unsigned>(
2153  static_cast<ZCR>(miscRegs[MISCREG_ZCR_EL2]).len));
2154  }
2155 
2156  if (el == EL3) {
2157  len = static_cast<ZCR>(miscRegs[MISCREG_ZCR_EL3]).len;
2158  } else if (haveSecurity) {
2159  len = std::min(
2160  len,
2161  static_cast<unsigned>(
2162  static_cast<ZCR>(miscRegs[MISCREG_ZCR_EL3]).len));
2163  }
2164 
2165  len = std::min(len, sveVL - 1);
2166 
2167  return (len + 1) * 128;
2168 }
2169 
2170 void
2172 {
2173  auto vv = vc.as<uint64_t>();
2174  for (int i = 2; i < eCount; ++i) {
2175  vv[i] = 0;
2176  }
2177 }
2178 
2181 {
2182  switch (FullSystem ? sys->highestEL() : EL1) {
2183  case EL0:
2184  case EL1: priv(); break;
2185  case EL2: hyp(); break;
2186  case EL3: mon(); break;
2187  }
2188  return *this;
2189 }
2190 
2191 } // namespace ArmISA
2192 
2193 ArmISA::ISA *
2194 ArmISAParams::create()
2195 {
2196  return new ArmISA::ISA(this);
2197 }
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:163
#define DPRINTF(x,...)
Definition: trace.hh:225
bool haveLPAE
Definition: isa.hh:90
virtual System * getSystemPtr()=0
MiscRegIndex
Definition: miscregs.hh:56
unsigned sveVL
SVE vector length in quadwords.
Definition: isa.hh:100
bitset< NUM_MISCREG_INFOS > miscRegInfo[NUM_MISCREGS]
Definition: miscregs.cc:2946
BaseISADevice & getGenericTimer(ThreadContext *tc)
Definition: isa.cc:2099
Bitfield< 5, 3 > reg
Definition: types.hh:87
Bitfield< 28 > v
decltype(nullptr) constexpr NoFault
Definition: types.hh:243
Definition: gic_v3.hh:52
virtual void setISA(ISA *isa)
Definition: isa_device.cc:51
virtual TheISA::Decoder * getDecoderPtr()=0
The file contains the definition of a set of TLB Invalidate Instructions.
ArmSystem * system
Definition: isa.hh:69
CheckerCPU class.
Definition: cpu.hh:85
Instruction TLB Invalidate All.
Definition: tlbi_op.hh:95
Bitfield< 7 > i
This module implements the global system counter and the local per-CPU architected timers as specifie...
bool haveSecurity() const
Returns true if this system implements the Security Extensions.
Definition: system.hh:150
void clear32(const ArmISAParams *p, const SCTLR &sctlr_rst)
Definition: isa.cc:219
Vector Register Abstraction This generic class is the model in a particularization of MVC...
Definition: vec_reg.hh:156
virtual TheISA::PCState pcState() const =0
virtual RegVal readIntReg(RegIndex reg_idx) const =0
virtual RegVal readMiscReg(int misc_reg)=0
Read a system register belonging to this device.
RegVal readMiscRegNoEffect(int misc_reg) const
Definition: isa.cc:452
std::shared_ptr< Request > RequestPtr
Definition: request.hh:81
TLB * getDTBPtr(T *tc)
Definition: tlb.hh:473
bool havePAN() const
Returns true if Priviledge Access Never is implemented.
Definition: system.hh:224
Instruction TLB Invalidate by VA.
Definition: tlbi_op.hh:209
Bitfield< 0 > sp
bool highestELIs64() const
Returns true if the register width of the highest implemented exception level is 64 bits (ARMv8) ...
Definition: system.hh:193
Base class for devices that use the MiscReg interfaces.
Definition: isa_device.hh:58
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
Definition: root.cc:132
uint64_t getAttr() const
Definition: tlb.hh:343
bool haveSecurity
Definition: isa.hh:89
uint64_t RegVal
Definition: types.hh:166
void preUnflattenMiscReg()
Definition: miscregs.cc:1127
virtual BaseCPU * getCpuPtr()=0
Definition: ccregs.hh:41
uint8_t physAddrRange
Definition: isa.hh:94
static std::vector< struct MiscRegLUTEntry > lookUpMiscReg
Metadata table accessible via the value of the register.
Definition: isa.hh:133
virtual FSR getFsr(ThreadContext *tc) const
Definition: faults.hh:236
const char *const miscRegName[]
Definition: miscregs.hh:1033
Bitfield< 4, 0 > mode
virtual RegVal readCCReg(RegIndex reg_idx) const =0
void clear64(const ArmISAParams *p)
Definition: isa.cc:271
const int NumMiscRegs
Definition: registers.hh:85
RegVal readMPIDR(ArmSystem *arm_sys, ThreadContext *tc)
This helper function is either returing the value of MPIDR_EL1 (by calling getMPIDR), or it is issuing a read to VMPIDR_EL2 (as it happens in virtualized systems)
Definition: utility.cc:204
TLB Invalidate by VA, All ASID.
Definition: tlbi_op.hh:178
ThreadContext is the external interface to all thread state for anything outside of the CPU...
unsigned getCurSveVecLenInBits(ThreadContext *tc) const
Definition: isa.cc:2127
virtual void setThreadContext(ThreadContext *tc)
Definition: isa_device.hh:65
This master id is used for functional requests that don&#39;t come from a particular device.
Definition: request.hh:208
STL vector class.
Definition: stl.hh:37
bool havePAN
Definition: isa.hh:97
TLB Invalidate by VA.
Definition: tlbi_op.hh:193
Bitfield< 63 > val
Definition: misc.hh:769
ExceptionLevel
Definition: types.hh:583
bool haveSVE() const
Returns true if SVE is implemented (ARMv8)
Definition: system.hh:215
void setMiscRegNoEffect(int misc_reg, RegVal val)
Definition: isa.cc:778
ISA(Params *p)
Definition: isa.cc:61
Data TLB Invalidate by ASID match.
Definition: tlbi_op.hh:151
Instruction TLB Invalidate by ASID match.
Definition: tlbi_op.hh:135
uint8_t encodePhysAddrRange64(int pa_size)
Returns the encoding corresponding to the specified n.
Definition: utility.cc:1304
virtual void startup()
startup() is the final initialization call before simulation.
Definition: sim_object.cc:96
Bitfield< 3, 2 > el
Bitfield< 4 > pc
int unflattenMiscReg(int reg)
Definition: miscregs.cc:1143
void initializeMiscRegMetadata()
Definition: miscregs.cc:2949
const Enums::VecRegRenameMode _vecRegRenameMode
Definition: isa.hh:73
virtual void pcStateNoRecord(const TheISA::PCState &val)=0
RegVal miscRegs[NumMiscRegs]
Definition: isa.hh:408
void initID64(const ArmISAParams *p)
Definition: isa.cc:356
unsigned sveVL() const
Returns the SVE vector length at reset, in quadwords.
Definition: system.hh:218
BaseGic * getGIC() const
Get a pointer to the system&#39;s GIC.
Definition: system.hh:186
chain highest(ArmSystem *const sys) const
Definition: isa.cc:2180
bool haveVirtualization
Definition: isa.hh:91
Bitfield< 18, 16 > len
std::pair< int, int > getMiscIndices(int misc_reg) const
Definition: isa.hh:700
bool ELIs32(ThreadContext *tc, ExceptionLevel el)
Definition: utility.cc:342
BaseISADevice & getGICv3CPUInterface(ThreadContext *tc)
Definition: isa.cc:2120
unsigned numContexts() const
Definition: system.hh:198
static const uint32_t CpsrMaskQ
Definition: miscregs.hh:1923
T insertBits(T val, int first, int last, B bit_val)
Returns val with bits first to last set to the LSBs of bit_val.
Definition: bitfield.hh:131
virtual void setMiscReg(int misc_reg, RegVal val)=0
Write to a system register belonging to this device.
bool haveCrypto
Definition: isa.hh:92
std::unique_ptr< BaseISADevice > timer
Definition: isa.hh:82
std::unique_ptr< BaseISADevice > gicv3CpuInterface
Definition: isa.hh:85
bool highestELIs64
Definition: isa.hh:88
bool translateFunctional(ThreadContext *tc, Addr vaddr, Addr &paddr)
Do a functional lookup on the TLB (for debugging) and don&#39;t modify any internal state.
Definition: tlb.cc:115
virtual void setCCReg(RegIndex reg_idx, RegVal val)=0
virtual void setIntReg(RegIndex reg_idx, RegVal val)=0
bool haveVirtualization() const
Returns true if this system implements the virtualization Extensions.
Definition: system.hh:159
ArmTranslationType
Definition: tlb.hh:118
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
#define ULL(N)
uint64_t constant
Definition: types.hh:48
Gicv3CPUInterface * getCPUInterface(int cpu_id) const
Definition: gic_v3.hh:136
VecRegT< VecElem, NumElems, true > as() const
View interposers.
Definition: vec_reg.hh:386
#define warn_once(...)
Definition: logging.hh:212
bool haveCrypto() const
Returns true if this system implements the Crypto Extension.
Definition: system.hh:164
Data TLB Invalidate All.
Definition: tlbi_op.hh:108
bool haveLSE
Definition: isa.hh:96
Bitfield< 15 > system
Definition: misc.hh:997
void initID32(const ArmISAParams *p)
Definition: isa.cc:320
Mode
Definition: tlb.hh:57
virtual bool isStage2() const
Definition: faults.hh:235
TLB Invalidate by ASID match.
Definition: tlbi_op.hh:121
void assert32(ThreadContext *tc)
Definition: isa.hh:454
const Params * params() const
Definition: isa.cc:117
virtual uint32_t iss() const =0
DummyISADevice dummyDevice
Dummy device for to handle non-existing ISA devices.
Definition: isa.hh:76
TLB Invalidate All, Non-Secure.
Definition: tlbi_op.hh:167
virtual CheckerCPU * getCheckerCpuPtr()=0
void clear()
Definition: isa.cc:132
bool haveLargeAsid64
Definition: isa.hh:93
Bitfield< 9, 6 > daif
uint8_t physAddrRange() const
Returns the supported physical address range in bits.
Definition: system.hh:232
ExceptionLevel highestEL() const
Returns the highest implemented exception level.
Definition: system.hh:197
bool afterStartup
Definition: isa.hh:108
virtual int threadId() const =0
const SimObjectParams * _params
Cached copy of the object parameters.
Definition: sim_object.hh:111
TLB Invalidate All.
Definition: tlbi_op.hh:84
void setMiscReg(int misc_reg, RegVal val, ThreadContext *tc)
Definition: isa.cc:800
Bitfield< 22 > pan
void broadcast(ThreadContext *tc)
Broadcast the TLB Invalidate operation to all TLBs in the Arm system.
Definition: tlbi_op.hh:69
bool haveSVE
Definition: isa.hh:95
virtual ContextID contextId() const =0
BaseInterrupts * getInterruptController(ThreadID tid)
Definition: base.hh:222
Bitfield< 2 > priv
Definition: miscregs.hh:126
bool haveLSE() const
Returns true if LSE is implemented (ARMv8.1)
Definition: system.hh:221
GenericTimer * getGenericTimer() const
Get a pointer to the system&#39;s generic timer model.
Definition: system.hh:183
BaseISADevice * pmu
Definition: isa.hh:79
void assert64(ThreadContext *tc)
Definition: isa.hh:459
Bitfield< 3, 0 > mask
Definition: types.hh:62
Definition: isa.hh:47
static const uint32_t FpscrExcMask
Definition: miscregs.hh:1944
void update(ThreadContext *tc)
Definition: faults.cc:419
#define warn(...)
Definition: logging.hh:208
ArmISAParams Params
Definition: isa.hh:770
void invalidateMiscReg()
Definition: tlb.hh:442
RegVal readMiscReg(int misc_reg, ThreadContext *tc)
Definition: isa.cc:476
bool inSecureState(ThreadContext *tc)
Definition: utility.cc:174
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 ...
Definition: utility.cc:351
T mbits(T val, int first, int last)
Mask off the given bits in place like bits() but without shifting.
Definition: bitfield.hh:95
T bits(T val, int first, int last)
Extract the bitfield from position &#39;first&#39; to &#39;last&#39; (inclusive) from &#39;val&#39; and right justify it...
Definition: bitfield.hh:71
bool haveLargeAsid64() const
Returns true if ASID is 16 bits in AArch64 (ARMv8)
Definition: system.hh:212
GenericISA::DelaySlotPCState< MachInst > PCState
Definition: types.hh:41
Bitfield< 0 > p
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:181
Addr resetAddr() const
Returns the reset address if the highest implemented exception level is 64 bits (ARMv8) ...
Definition: system.hh:208
virtual RegVal readMiscReg(RegIndex misc_reg)=0
std::shared_ptr< FaultBase > Fault
Definition: types.hh:238
void updateRegMap(CPSR cpsr)
Definition: isa.hh:412
TLB Invalidate by Intermediate Physical Address.
Definition: tlbi_op.hh:245
Data TLB Invalidate by VA.
Definition: tlbi_op.hh:227
static void zeroSveVecRegUpperPart(VecRegContainer &vc, unsigned eCount)
Definition: isa.cc:2171
bool ic(TxDesc *d)
static const uint32_t FpscrQcMask
Definition: miscregs.hh:1940
TLB * getITBPtr(T *tc)
Definition: tlb.hh:464
bool haveLPAE() const
Returns true if this system implements the Large Physical Address Extension.
Definition: system.hh:154
void takeOverFrom(ThreadContext *new_tc, ThreadContext *old_tc) override
Definition: isa.cc:441
unsigned int cacheLineSize() const
Get the cache line size of the system.
Definition: system.hh:180

Generated on Thu May 28 2020 16:11:02 for gem5 by doxygen 1.8.13