gem5 v23.0.0.1
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) 2016 RISC-V Foundation
3 * Copyright (c) 2016 The University of Virginia
4 * Copyright (c) 2020 Barkhausen Institut
5 * Copyright (c) 2022 Google LLC
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
10 * met: redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer;
12 * redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution;
15 * neither the name of the copyright holders nor the names of its
16 * contributors may be used to endorse or promote products derived from
17 * this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */
31
32#include "arch/riscv/isa.hh"
33
34#include <ctime>
35#include <set>
36#include <sstream>
37
38#include "arch/riscv/faults.hh"
40#include "arch/riscv/mmu.hh"
42#include "arch/riscv/pmp.hh"
46#include "base/bitfield.hh"
47#include "base/compiler.hh"
48#include "base/logging.hh"
49#include "base/trace.hh"
50#include "cpu/base.hh"
51#include "debug/Checkpoint.hh"
52#include "debug/LLSC.hh"
53#include "debug/MatRegs.hh"
54#include "debug/RiscvMisc.hh"
55#include "mem/packet.hh"
56#include "mem/request.hh"
57#include "params/RiscvISA.hh"
58#include "sim/pseudo_inst.hh"
59
60namespace gem5
61{
62
63namespace RiscvISA
64{
65
66[[maybe_unused]] const std::array<const char *, NUM_MISCREGS> MiscRegNames = {{
67 [MISCREG_PRV] = "PRV",
68 [MISCREG_ISA] = "ISA",
69 [MISCREG_VENDORID] = "VENDORID",
70 [MISCREG_ARCHID] = "ARCHID",
71 [MISCREG_IMPID] = "IMPID",
72 [MISCREG_HARTID] = "HARTID",
73 [MISCREG_STATUS] = "STATUS",
74 [MISCREG_IP] = "IP",
75 [MISCREG_IE] = "IE",
76 [MISCREG_CYCLE] = "CYCLE",
77 [MISCREG_TIME] = "TIME",
78 [MISCREG_INSTRET] = "INSTRET",
79 [MISCREG_HPMCOUNTER03] = "HPMCOUNTER03",
80 [MISCREG_HPMCOUNTER04] = "HPMCOUNTER04",
81 [MISCREG_HPMCOUNTER05] = "HPMCOUNTER05",
82 [MISCREG_HPMCOUNTER06] = "HPMCOUNTER06",
83 [MISCREG_HPMCOUNTER07] = "HPMCOUNTER07",
84 [MISCREG_HPMCOUNTER08] = "HPMCOUNTER08",
85 [MISCREG_HPMCOUNTER09] = "HPMCOUNTER09",
86 [MISCREG_HPMCOUNTER10] = "HPMCOUNTER10",
87 [MISCREG_HPMCOUNTER11] = "HPMCOUNTER11",
88 [MISCREG_HPMCOUNTER12] = "HPMCOUNTER12",
89 [MISCREG_HPMCOUNTER13] = "HPMCOUNTER13",
90 [MISCREG_HPMCOUNTER14] = "HPMCOUNTER14",
91 [MISCREG_HPMCOUNTER15] = "HPMCOUNTER15",
92 [MISCREG_HPMCOUNTER16] = "HPMCOUNTER16",
93 [MISCREG_HPMCOUNTER17] = "HPMCOUNTER17",
94 [MISCREG_HPMCOUNTER18] = "HPMCOUNTER18",
95 [MISCREG_HPMCOUNTER19] = "HPMCOUNTER19",
96 [MISCREG_HPMCOUNTER20] = "HPMCOUNTER20",
97 [MISCREG_HPMCOUNTER21] = "HPMCOUNTER21",
98 [MISCREG_HPMCOUNTER22] = "HPMCOUNTER22",
99 [MISCREG_HPMCOUNTER23] = "HPMCOUNTER23",
100 [MISCREG_HPMCOUNTER24] = "HPMCOUNTER24",
101 [MISCREG_HPMCOUNTER25] = "HPMCOUNTER25",
102 [MISCREG_HPMCOUNTER26] = "HPMCOUNTER26",
103 [MISCREG_HPMCOUNTER27] = "HPMCOUNTER27",
104 [MISCREG_HPMCOUNTER28] = "HPMCOUNTER28",
105 [MISCREG_HPMCOUNTER29] = "HPMCOUNTER29",
106 [MISCREG_HPMCOUNTER30] = "HPMCOUNTER30",
107 [MISCREG_HPMCOUNTER31] = "HPMCOUNTER31",
108 [MISCREG_HPMEVENT03] = "HPMEVENT03",
109 [MISCREG_HPMEVENT04] = "HPMEVENT04",
110 [MISCREG_HPMEVENT05] = "HPMEVENT05",
111 [MISCREG_HPMEVENT06] = "HPMEVENT06",
112 [MISCREG_HPMEVENT07] = "HPMEVENT07",
113 [MISCREG_HPMEVENT08] = "HPMEVENT08",
114 [MISCREG_HPMEVENT09] = "HPMEVENT09",
115 [MISCREG_HPMEVENT10] = "HPMEVENT10",
116 [MISCREG_HPMEVENT11] = "HPMEVENT11",
117 [MISCREG_HPMEVENT12] = "HPMEVENT12",
118 [MISCREG_HPMEVENT13] = "HPMEVENT13",
119 [MISCREG_HPMEVENT14] = "HPMEVENT14",
120 [MISCREG_HPMEVENT15] = "HPMEVENT15",
121 [MISCREG_HPMEVENT16] = "HPMEVENT16",
122 [MISCREG_HPMEVENT17] = "HPMEVENT17",
123 [MISCREG_HPMEVENT18] = "HPMEVENT18",
124 [MISCREG_HPMEVENT19] = "HPMEVENT19",
125 [MISCREG_HPMEVENT20] = "HPMEVENT20",
126 [MISCREG_HPMEVENT21] = "HPMEVENT21",
127 [MISCREG_HPMEVENT22] = "HPMEVENT22",
128 [MISCREG_HPMEVENT23] = "HPMEVENT23",
129 [MISCREG_HPMEVENT24] = "HPMEVENT24",
130 [MISCREG_HPMEVENT25] = "HPMEVENT25",
131 [MISCREG_HPMEVENT26] = "HPMEVENT26",
132 [MISCREG_HPMEVENT27] = "HPMEVENT27",
133 [MISCREG_HPMEVENT28] = "HPMEVENT28",
134 [MISCREG_HPMEVENT29] = "HPMEVENT29",
135 [MISCREG_HPMEVENT30] = "HPMEVENT30",
136 [MISCREG_HPMEVENT31] = "HPMEVENT31",
137 [MISCREG_TSELECT] = "TSELECT",
138 [MISCREG_TDATA1] = "TDATA1",
139 [MISCREG_TDATA2] = "TDATA2",
140 [MISCREG_TDATA3] = "TDATA3",
141 [MISCREG_DCSR] = "DCSR",
142 [MISCREG_DPC] = "DPC",
143 [MISCREG_DSCRATCH] = "DSCRATCH",
144
145 [MISCREG_MEDELEG] = "MEDELEG",
146 [MISCREG_MIDELEG] = "MIDELEG",
147 [MISCREG_MTVEC] = "MTVEC",
148 [MISCREG_MCOUNTEREN] = "MCOUNTEREN",
149 [MISCREG_MSCRATCH] = "MSCRATCH",
150 [MISCREG_MEPC] = "MEPC",
151 [MISCREG_MCAUSE] = "MCAUSE",
152 [MISCREG_MTVAL] = "MTVAL",
153 [MISCREG_PMPCFG0] = "PMPCFG0",
154 [MISCREG_PMPCFG1] = "PMPCFG1", // pmpcfg1 is rv32 only
155 [MISCREG_PMPCFG2] = "PMPCFG2",
156 [MISCREG_PMPCFG3] = "PMPCFG3", // pmpcfg3 is rv32 only
157 [MISCREG_PMPADDR00] = "PMPADDR00",
158 [MISCREG_PMPADDR01] = "PMPADDR01",
159 [MISCREG_PMPADDR02] = "PMPADDR02",
160 [MISCREG_PMPADDR03] = "PMPADDR03",
161 [MISCREG_PMPADDR04] = "PMPADDR04",
162 [MISCREG_PMPADDR05] = "PMPADDR05",
163 [MISCREG_PMPADDR06] = "PMPADDR06",
164 [MISCREG_PMPADDR07] = "PMPADDR07",
165 [MISCREG_PMPADDR08] = "PMPADDR08",
166 [MISCREG_PMPADDR09] = "PMPADDR09",
167 [MISCREG_PMPADDR10] = "PMPADDR10",
168 [MISCREG_PMPADDR11] = "PMPADDR11",
169 [MISCREG_PMPADDR12] = "PMPADDR12",
170 [MISCREG_PMPADDR13] = "PMPADDR13",
171 [MISCREG_PMPADDR14] = "PMPADDR14",
172 [MISCREG_PMPADDR15] = "PMPADDR15",
173
174 [MISCREG_SEDELEG] = "SEDELEG",
175 [MISCREG_SIDELEG] = "SIDELEG",
176 [MISCREG_STVEC] = "STVEC",
177 [MISCREG_SCOUNTEREN] = "SCOUNTEREN",
178 [MISCREG_SSCRATCH] = "SSCRATCH",
179 [MISCREG_SEPC] = "SEPC",
180 [MISCREG_SCAUSE] = "SCAUSE",
181 [MISCREG_STVAL] = "STVAL",
182 [MISCREG_SATP] = "SATP",
183
184 [MISCREG_UTVEC] = "UTVEC",
185 [MISCREG_USCRATCH] = "USCRATCH",
186 [MISCREG_UEPC] = "UEPC",
187 [MISCREG_UCAUSE] = "UCAUSE",
188 [MISCREG_UTVAL] = "UTVAL",
189 [MISCREG_FFLAGS] = "FFLAGS",
190 [MISCREG_FRM] = "FRM",
191
192 [MISCREG_NMIVEC] = "NMIVEC",
193 [MISCREG_NMIE] = "NMIE",
194 [MISCREG_NMIP] = "NMIP",
195
196 // following are rv32 only registers
197 [MISCREG_MSTATUSH] = "MSTATUSH",
198
199 [MISCREG_CYCLEH] = "CYCLEH",
200 [MISCREG_TIMEH] = "TIMEH",
201 [MISCREG_INSTRETH] = "INSTRETH",
202 [MISCREG_HPMCOUNTER03H] = "HPMCOUNTER03H",
203 [MISCREG_HPMCOUNTER04H] = "HPMCOUNTER04H",
204 [MISCREG_HPMCOUNTER05H] = "HPMCOUNTER05H",
205 [MISCREG_HPMCOUNTER06H] = "HPMCOUNTER06H",
206 [MISCREG_HPMCOUNTER07H] = "HPMCOUNTER07H",
207 [MISCREG_HPMCOUNTER08H] = "HPMCOUNTER08H",
208 [MISCREG_HPMCOUNTER09H] = "HPMCOUNTER09H",
209 [MISCREG_HPMCOUNTER10H] = "HPMCOUNTER10H",
210 [MISCREG_HPMCOUNTER11H] = "HPMCOUNTER11H",
211 [MISCREG_HPMCOUNTER12H] = "HPMCOUNTER12H",
212 [MISCREG_HPMCOUNTER13H] = "HPMCOUNTER13H",
213 [MISCREG_HPMCOUNTER14H] = "HPMCOUNTER14H",
214 [MISCREG_HPMCOUNTER15H] = "HPMCOUNTER15H",
215 [MISCREG_HPMCOUNTER16H] = "HPMCOUNTER16H",
216 [MISCREG_HPMCOUNTER17H] = "HPMCOUNTER17H",
217 [MISCREG_HPMCOUNTER18H] = "HPMCOUNTER18H",
218 [MISCREG_HPMCOUNTER19H] = "HPMCOUNTER19H",
219 [MISCREG_HPMCOUNTER20H] = "HPMCOUNTER20H",
220 [MISCREG_HPMCOUNTER21H] = "HPMCOUNTER21H",
221 [MISCREG_HPMCOUNTER22H] = "HPMCOUNTER22H",
222 [MISCREG_HPMCOUNTER23H] = "HPMCOUNTER23H",
223 [MISCREG_HPMCOUNTER24H] = "HPMCOUNTER24H",
224 [MISCREG_HPMCOUNTER25H] = "HPMCOUNTER25H",
225 [MISCREG_HPMCOUNTER26H] = "HPMCOUNTER26H",
226 [MISCREG_HPMCOUNTER27H] = "HPMCOUNTER27H",
227 [MISCREG_HPMCOUNTER28H] = "HPMCOUNTER28H",
228 [MISCREG_HPMCOUNTER29H] = "HPMCOUNTER29H",
229 [MISCREG_HPMCOUNTER30H] = "HPMCOUNTER30H",
230 [MISCREG_HPMCOUNTER31H] = "HPMCOUNTER31H",
231}};
232
233namespace
234{
235
236/* Not applicable to RISCV */
240 debug::IntRegs);
242RegClass ccRegClass(CCRegClass, CCRegClassName, 0, debug::IntRegs);
243
244} // anonymous namespace
245
247 BaseISA(p), rv_type(p.riscv_type), checkAlignment(p.check_alignment)
248{
249 _regClasses.push_back(&intRegClass);
250 _regClasses.push_back(&floatRegClass);
251 _regClasses.push_back(&vecRegClass);
252 _regClasses.push_back(&vecElemClass);
253 _regClasses.push_back(&vecPredRegClass);
254 _regClasses.push_back(&matRegClass);
255 _regClasses.push_back(&ccRegClass);
256 _regClasses.push_back(&miscRegClass);
257
259 clear();
260}
261
262bool ISA::inUserMode() const
263{
264 return miscRegFile[MISCREG_PRV] == PRV_U;
265}
266
267void
269{
270 // First loop through the integer registers.
271 for (auto &id: intRegClass)
272 tc->setReg(id, src->getReg(id));
273
274 // Second loop through the float registers.
275 for (auto &id: floatRegClass)
276 tc->setReg(id, src->getReg(id));
277
278 // Lastly copy PC/NPC
279 tc->pcState(src->pcState());
280}
281
283{
284 std::fill(miscRegFile.begin(), miscRegFile.end(), 0);
285
290
291 MISA misa = 0;
292 STATUS status = 0;
293
294 // default config arch isa string is rv64(32)imafdc
295 misa.rvi = misa.rvm = misa.rva = misa.rvf = misa.rvd = misa.rvc = 1;
296 // default privlege modes if MSU
297 misa.rvs = misa.rvu = 1;
298
299 // mark FS is initial
300 status.fs = INITIAL;
301
302 // rv_type dependent init.
303 switch (rv_type) {
304 case RV32:
305 misa.rv32_mxl = 1;
306 break;
307 case RV64:
308 misa.rv64_mxl = 2;
309 status.uxl = status.sxl = 2;
310 break;
311 default:
312 panic("%s: Unknown rv_type: %d", name(), (int)rv_type);
313 }
314
315 miscRegFile[MISCREG_ISA] = misa;
319 // don't set it to zero; software may try to determine the supported
320 // triggers, starting at zero. simply set a different value here.
322 // NMI is always enabled.
324}
325
326bool
327ISA::hpmCounterEnabled(int misc_reg) const
328{
329 int hpmcounter = 0;
330 if (misc_reg >= MISCREG_CYCLEH) {
331 hpmcounter = misc_reg - MISCREG_CYCLEH;
332 } else {
333 hpmcounter = misc_reg - MISCREG_CYCLE;
334 }
335
336 if (hpmcounter < 0 || hpmcounter > 31)
337 panic("Illegal HPM counter %d\n", hpmcounter);
338 int counteren;
340 case PRV_M:
341 return true;
342 case PRV_S:
343 counteren = MISCREG_MCOUNTEREN;
344 break;
345 case PRV_U:
346 counteren = MISCREG_SCOUNTEREN;
347 break;
348 default:
349 panic("Unknown privilege level %d\n", miscRegFile[MISCREG_PRV]);
350 return false;
351 }
352 return (miscRegFile[counteren] & (1ULL << (hpmcounter))) > 0;
353}
354
355RegVal
357{
358 // Illegal CSR
359 panic_if(idx > NUM_MISCREGS, "Illegal CSR index %#x\n", idx);
360 DPRINTF(RiscvMisc, "Reading MiscReg %s (%d): %#x.\n",
361 MiscRegNames[idx], idx, miscRegFile[idx]);
362 return miscRegFile[idx];
363}
364
365RegVal
367{
368 switch (idx) {
369 case MISCREG_HARTID:
370 return tc->contextId();
371 case MISCREG_CYCLE:
373 DPRINTF(RiscvMisc, "Cycle counter at: %llu.\n",
374 tc->getCpuPtr()->curCycle());
375 return static_cast<RegVal>(tc->getCpuPtr()->curCycle());
376 } else {
377 warn("Cycle counter disabled.\n");
378 return 0;
379 }
380 case MISCREG_CYCLEH:
382 DPRINTF(RiscvMisc, "Cycle counter at: %llu.\n",
383 tc->getCpuPtr()->curCycle());
384 return bits<RegVal>(tc->getCpuPtr()->curCycle(), 63, 32);
385 } else {
386 warn("Cycle counter disabled.\n");
387 return 0;
388 }
389 case MISCREG_TIME:
391 DPRINTF(RiscvMisc, "Wall-clock counter at: %llu.\n",
392 std::time(nullptr));
394 } else {
395 warn("Wall clock disabled.\n");
396 return 0;
397 }
398 case MISCREG_TIMEH:
400 DPRINTF(RiscvMisc, "Wall-clock counter at: %llu.\n",
401 std::time(nullptr));
403 } else {
404 warn("Wall clock disabled.\n");
405 return 0;
406 }
407 case MISCREG_INSTRET:
409 DPRINTF(RiscvMisc, "Instruction counter at: %llu.\n",
410 tc->getCpuPtr()->totalInsts());
411 return static_cast<RegVal>(tc->getCpuPtr()->totalInsts());
412 } else {
413 warn("Instruction counter disabled.\n");
414 return 0;
415 }
416 case MISCREG_INSTRETH:
418 DPRINTF(RiscvMisc, "Instruction counter at: %llu.\n",
419 tc->getCpuPtr()->totalInsts());
420 return bits<RegVal>(tc->getCpuPtr()->totalInsts(), 63, 32);
421 } else {
422 warn("Instruction counter disabled.\n");
423 return 0;
424 }
425 case MISCREG_IP:
426 {
427 auto ic = dynamic_cast<RiscvISA::Interrupts *>(
429 return ic->readIP();
430 }
431 case MISCREG_IE:
432 {
433 auto ic = dynamic_cast<RiscvISA::Interrupts *>(
435 return ic->readIE();
436 }
437 case MISCREG_SEPC:
438 case MISCREG_MEPC:
439 {
440 MISA misa = readMiscRegNoEffect(MISCREG_ISA);
441 auto val = readMiscRegNoEffect(idx);
442 // if compressed instructions are disabled, epc[1] is set to 0
443 if (misa.rvc == 0)
444 return mbits(val, 63, 2);
445 // epc[0] is always 0
446 else
447 return mbits(val, 63, 1);
448 }
449 case MISCREG_STATUS:
450 {
451 // Updating the SD bit.
452 // . Per RISC-V ISA Manual, vol II, section 3.1.6.6, page 26,
453 // the SD bit is a read-only bit indicating whether any of
454 // FS, VS, and XS fields being in the respective dirty state.
455 // . Per section 3.1.6, page 20, the SD bit is the most
456 // significant bit of the MSTATUS CSR for both RV32 and RV64.
457 // . Per section 3.1.6.6, page 29, the explicit formula for
458 // updating the SD is,
459 // SD = ((FS==DIRTY) | (XS==DIRTY) | (VS==DIRTY))
460 // . Ideally, we want to update the SD after every relevant
461 // instruction, however, lazily updating the Status register
462 // upon its read produces the same effect as well.
463 STATUS status = readMiscRegNoEffect(idx);
464 uint64_t sd_bit = \
465 (status.xs == 3) || (status.fs == 3) || (status.vs == 3);
466 // For RV32, the SD bit is at index 31
467 // For RV64, the SD bit is at index 63.
468 switch (rv_type) {
469 case RV32:
470 status.rv32_sd = sd_bit;
471 break;
472 case RV64:
473 status.rv64_sd = sd_bit;
474 break;
475 default:
476 panic("%s: Unknown rv_type: %d", name(), (int)rv_type);
477 }
479
480 return readMiscRegNoEffect(idx);
481 }
482 default:
483 // Try reading HPM counters
484 // As a placeholder, all HPM counters are just cycle counters
485 if (idx >= MISCREG_HPMCOUNTER03 &&
486 idx <= MISCREG_HPMCOUNTER31) {
487 if (hpmCounterEnabled(idx)) {
488 DPRINTF(RiscvMisc, "HPM counter %d: %llu.\n",
489 idx - MISCREG_CYCLE, tc->getCpuPtr()->curCycle());
490 return tc->getCpuPtr()->curCycle();
491 } else {
492 warn("HPM counter %d disabled.\n", idx - MISCREG_CYCLE);
493 return 0;
494 }
495 } else if (idx >= MISCREG_HPMCOUNTER03H &&
496 idx <= MISCREG_HPMCOUNTER31H) {
497 if (hpmCounterEnabled(idx)) {
498 DPRINTF(RiscvMisc, "HPM counter %d: %llu.\n",
499 idx - MISCREG_CYCLE, tc->getCpuPtr()->curCycle());
500 return bits<RegVal>(tc->getCpuPtr()->curCycle(), 63, 32);
501 } else {
502 warn("HPM counter %d disabled.\n", idx - MISCREG_CYCLE);
503 return 0;
504 }
505 }
506 return readMiscRegNoEffect(idx);
507 }
508}
509
510void
512{
513 // Illegal CSR
514 panic_if(idx > NUM_MISCREGS, "Illegal CSR index %#x\n", idx);
515 DPRINTF(RiscvMisc, "Setting MiscReg %s (%d) to %#x.\n",
516 MiscRegNames[idx], idx, val);
517 miscRegFile[idx] = val;
518}
519
520void
522{
523 if (idx >= MISCREG_CYCLE && idx <= MISCREG_HPMCOUNTER31) {
524 // Ignore writes to HPM counters for now
525 warn("Ignoring write to miscreg %s.\n", MiscRegNames[idx]);
526 } else {
527 switch (idx) {
528
529 // From section 3.7.1 of RISCV priv. specs
530 // V1.12, the odd-numbered configuration
531 // registers are illegal for RV64 and
532 // each 64 bit CFG register hold configurations
533 // for 8 PMP entries.
534
535 case MISCREG_PMPCFG0:
536 case MISCREG_PMPCFG1:
537 case MISCREG_PMPCFG2:
538 case MISCREG_PMPCFG3:
539 {
540 // PMP registers should only be modified in M mode
542
543 int regSize = 0;
544 switch (rv_type) {
545 case RV32:
546 regSize = 4;
547 break;
548 case RV64:
549 regSize = 8;
550 break;
551 default:
552 panic("%s: Unknown rv_type: %d", name(), (int)rv_type);
553 }
554
555 // Specs do not seem to mention what should be
556 // configured first, cfg or address regs!
557 // qemu seems to update the tables when
558 // pmp addr regs are written (with the assumption
559 // that cfg regs are already written)
560 RegVal res = 0;
561 RegVal old_val = readMiscRegNoEffect(idx);
562
563 for (int i=0; i < regSize; i++) {
564
565 uint8_t cfg_val = (val >> (8*i)) & 0xff;
566 auto mmu = dynamic_cast<RiscvISA::MMU *>
567 (tc->getMMUPtr());
568
569 // Form pmp_index using the index i and
570 // PMPCFG register number
571 uint32_t pmp_index = i+(4*(idx-MISCREG_PMPCFG0));
572 bool result = mmu->getPMP()->pmpUpdateCfg(pmp_index,cfg_val);
573 if (result) {
574 res |= ((RegVal)cfg_val << (8*i));
575 } else {
576 res |= (old_val & (0xFF << (8*i)));
577 }
578 }
579
580 setMiscRegNoEffect(idx, res);
581 }
582 break;
584 {
585 // PMP registers should only be modified in M mode
587
588 auto mmu = dynamic_cast<RiscvISA::MMU *>
589 (tc->getMMUPtr());
590 uint32_t pmp_index = idx-MISCREG_PMPADDR00;
591 if (mmu->getPMP()->pmpUpdateAddr(pmp_index, val)) {
593 }
594 }
595 break;
596
597 case MISCREG_IP:
598 {
599 auto ic = dynamic_cast<RiscvISA::Interrupts *>(
601 ic->setIP(val);
602 }
603 break;
604 case MISCREG_IE:
605 {
606 auto ic = dynamic_cast<RiscvISA::Interrupts *>(
608 ic->setIE(val);
609 }
610 break;
611 case MISCREG_SATP:
612 {
613 // we only support bare and Sv39 mode; setting a different mode
614 // shall have no effect (see 4.1.12 in priv ISA manual)
615 SATP cur_val = readMiscRegNoEffect(idx);
616 SATP new_val = val;
617 if (new_val.mode != AddrXlateMode::BARE &&
618 new_val.mode != AddrXlateMode::SV39)
619 new_val.mode = cur_val.mode;
620 setMiscRegNoEffect(idx, new_val);
621 }
622 break;
623 case MISCREG_TSELECT:
624 {
625 // we don't support debugging, so always set a different value
626 // than written
627 setMiscRegNoEffect(idx, val + 1);
628 }
629 break;
630 case MISCREG_ISA:
631 {
632 MISA cur_misa = (MISA)readMiscRegNoEffect(MISCREG_ISA);
633 MISA new_misa = (MISA)val;
634 // only allow to disable compressed instructions
635 // if the following instruction is 4-byte aligned
636 if (new_misa.rvc == 0 &&
637 bits(tc->pcState().as<RiscvISA::PCState>().npc(),
638 2, 0) != 0) {
639 new_misa.rvc = new_misa.rvc | cur_misa.rvc;
640 }
641 setMiscRegNoEffect(idx, new_misa);
642 }
643 break;
644 case MISCREG_STATUS:
645 {
646 if (rv_type != RV32) {
647 // SXL and UXL are hard-wired to 64 bit
648 auto cur = readMiscRegNoEffect(idx);
651 }
653 }
654 break;
655 default:
657 }
658 }
659}
660
661void
663{
664 DPRINTF(Checkpoint, "Serializing Riscv Misc Registers\n");
666}
667
668void
670{
671 DPRINTF(Checkpoint, "Unserializing Riscv Misc Registers\n");
673}
674
675void
677{
678 Addr& load_reservation_addr = load_reservation_addrs[tc->contextId()];
679
680 if (load_reservation_addr == INVALID_RESERVATION_ADDR)
681 return;
682 Addr snoop_addr = pkt->getAddr() & cacheBlockMask;
683 DPRINTF(LLSC, "Locked snoop on address %x.\n", snoop_addr);
684 if ((load_reservation_addr & cacheBlockMask) == snoop_addr)
685 load_reservation_addr = INVALID_RESERVATION_ADDR;
686}
687
688
689void
691{
692 Addr& load_reservation_addr = load_reservation_addrs[tc->contextId()];
693
694 load_reservation_addr = req->getPaddr();
695 DPRINTF(LLSC, "[cid:%d]: Reserved address %x.\n",
696 req->contextId(), req->getPaddr());
697}
698
699bool
700ISA::handleLockedWrite(const RequestPtr &req, Addr cacheBlockMask)
701{
702 Addr& load_reservation_addr = load_reservation_addrs[tc->contextId()];
703 bool lr_addr_empty = (load_reservation_addr == INVALID_RESERVATION_ADDR);
704
705 // Normally RISC-V uses zero to indicate success and nonzero to indicate
706 // failure (right now only 1 is reserved), but in gem5 zero indicates
707 // failure and one indicates success, so here we conform to that (it should
708 // be switched in the instruction's implementation)
709
710 DPRINTF(LLSC, "[cid:%d]: load_reservation_addrs empty? %s.\n",
711 req->contextId(),
712 lr_addr_empty ? "yes" : "no");
713 if (!lr_addr_empty) {
714 DPRINTF(LLSC, "[cid:%d]: addr = %x.\n", req->contextId(),
715 req->getPaddr() & cacheBlockMask);
716 DPRINTF(LLSC, "[cid:%d]: last locked addr = %x.\n", req->contextId(),
717 load_reservation_addr & cacheBlockMask);
718 }
719 if (lr_addr_empty ||
720 (load_reservation_addr & cacheBlockMask)
721 != ((req->getPaddr() & cacheBlockMask))) {
722 req->setExtraData(0);
723 int stCondFailures = tc->readStCondFailures();
724 tc->setStCondFailures(++stCondFailures);
725 if (stCondFailures % WARN_FAILURE == 0) {
726 warn("%i: context %d: %d consecutive SC failures.\n",
727 curTick(), tc->contextId(), stCondFailures);
728 }
729
730 // Must clear any reservations
731 load_reservation_addr = INVALID_RESERVATION_ADDR;
732
733 return false;
734 }
735 if (req->isUncacheable()) {
736 req->setExtraData(2);
737 }
738
739 // Must clear any reservations
740 load_reservation_addr = INVALID_RESERVATION_ADDR;
741
742 DPRINTF(LLSC, "[cid:%d]: SC success! Current locked addr = %x.\n",
743 req->contextId(), load_reservation_addr & cacheBlockMask);
744 return true;
745}
746
747void
749{
750 tc->getCpuPtr()->wakeup(tc->threadId());
751 Addr& load_reservation_addr = load_reservation_addrs[tc->contextId()];
752 load_reservation_addr = INVALID_RESERVATION_ADDR;
753}
754
755void
757{
758 Reset().invoke(tc);
759}
760
761} // namespace RiscvISA
762} // namespace gem5
763
764std::ostream &
765operator<<(std::ostream &os, gem5::RiscvISA::PrivilegeMode pm)
766{
767 switch (pm) {
769 return os << "PRV_U";
771 return os << "PRV_S";
773 return os << "PRV_M";
774 }
775 return os << "PRV_<invalid>";
776}
#define DPRINTF(x,...)
Definition trace.hh:210
BaseInterrupts * getInterruptController(ThreadID tid)
Definition base.hh:228
virtual Counter totalInsts() const =0
virtual void wakeup(ThreadID tid)=0
ThreadContext * tc
Definition isa.hh:66
RegClasses _regClasses
Definition isa.hh:68
Cycles curCycle() const
Determine the current cycle, corresponding to a tick aligned to a clock edge.
virtual std::string name() const
Definition named.hh:47
Target & as()
Definition pcstate.hh:72
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition packet.hh:295
Addr getAddr() const
Definition packet.hh:807
void setMiscReg(RegIndex idx, RegVal val) override
Definition isa.cc:521
void handleLockedSnoop(PacketPtr pkt, Addr cacheBlockMask) override
Definition isa.cc:676
RiscvType rv_type
Definition isa.hh:73
RegVal readMiscReg(RegIndex idx) override
Definition isa.cc:366
void globalClearExclusive() override
Definition isa.cc:748
const int WARN_FAILURE
Definition isa.hh:80
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition isa.cc:662
void resetThread() override
Definition isa.cc:756
void setMiscRegNoEffect(RegIndex idx, RegVal val) override
Definition isa.cc:511
RegVal readMiscRegNoEffect(RegIndex idx) const override
Definition isa.cc:356
bool hpmCounterEnabled(int counter) const
Definition isa.cc:327
void copyRegsFrom(ThreadContext *src) override
Definition isa.cc:268
bool handleLockedWrite(const RequestPtr &req, Addr cacheBlockMask) override
Definition isa.cc:700
void clear() override
Definition isa.cc:282
std::vector< RegVal > miscRegFile
Definition isa.hh:74
bool inUserMode() const override
Definition isa.cc:262
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition isa.cc:669
const Addr INVALID_RESERVATION_ADDR
Definition isa.hh:81
std::unordered_map< int, Addr > load_reservation_addrs
Definition isa.hh:82
RiscvISAParams Params
Definition isa.hh:85
ISA(const Params &p)
Definition isa.cc:246
void handleLockedRead(const RequestPtr &req) override
Definition isa.cc:690
void invoke(ThreadContext *tc, const StaticInstPtr &inst=nullStaticInstPtr) override
Definition faults.cc:173
ThreadContext is the external interface to all thread state for anything outside of the CPU.
virtual RegVal getReg(const RegId &reg) const
virtual BaseCPU * getCpuPtr()=0
virtual void setReg(const RegId &reg, RegVal val)
virtual void setStCondFailures(unsigned sc_failures)=0
virtual unsigned readStCondFailures() const =0
virtual const PCStateBase & pcState() const =0
virtual int threadId() const =0
virtual BaseMMU * getMMUPtr()=0
virtual ContextID contextId() const =0
constexpr T bits(T val, unsigned first, unsigned last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it.
Definition bitfield.hh:76
constexpr T mbits(T val, unsigned first, unsigned last)
Mask off the given bits in place like bits() but without shifting.
Definition bitfield.hh:103
#define panic(...)
This implements a cprintf based panic() function.
Definition logging.hh:188
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition logging.hh:214
#define UNSERIALIZE_CONTAINER(member)
Definition serialize.hh:634
#define SERIALIZE_CONTAINER(member)
Definition serialize.hh:626
#define warn(...)
Definition logging.hh:256
constexpr RegClass matRegClass
Definition mat.hh:92
constexpr RegClass vecElemClass
Definition vec.hh:105
Bitfield< 5, 0 > status
constexpr RegClass intRegClass
Definition int.hh:173
constexpr RegClass vecPredRegClass
Definition vec.hh:109
constexpr RegClass ccRegClass
Definition cc.hh:87
constexpr RegClass miscRegClass
Definition misc.hh:2810
constexpr RegClass vecRegClass
Definition vec.hh:101
Bitfield< 0 > p
constexpr enums::RiscvType RV32
Definition pcstate.hh:54
Bitfield< 2 > i
const RegVal STATUS_SXL_MASK
Definition misc.hh:845
const RegVal STATUS_UXL_MASK
Definition misc.hh:846
const std::array< const char *, NUM_MISCREGS > MiscRegNames
Definition isa.cc:66
constexpr enums::RiscvType RV64
Definition pcstate.hh:55
@ MISCREG_PMPADDR11
Definition misc.hh:170
@ MISCREG_HPMCOUNTER16H
Definition misc.hh:223
@ MISCREG_HPMCOUNTER09
Definition misc.hh:87
@ MISCREG_HPMEVENT31
Definition misc.hh:138
@ MISCREG_IMPID
Definition misc.hh:73
@ MISCREG_HPMEVENT07
Definition misc.hh:114
@ MISCREG_HPMCOUNTER16
Definition misc.hh:94
@ MISCREG_HPMCOUNTER13H
Definition misc.hh:220
@ MISCREG_HPMCOUNTER19
Definition misc.hh:97
@ MISCREG_PMPADDR12
Definition misc.hh:171
@ MISCREG_HPMCOUNTER07
Definition misc.hh:85
@ MISCREG_HPMEVENT29
Definition misc.hh:136
@ MISCREG_HPMCOUNTER26
Definition misc.hh:104
@ MISCREG_PMPADDR05
Definition misc.hh:164
@ MISCREG_HPMCOUNTER13
Definition misc.hh:91
@ MISCREG_PMPADDR10
Definition misc.hh:169
@ MISCREG_SIDELEG
Definition misc.hh:177
@ MISCREG_PMPADDR14
Definition misc.hh:173
@ MISCREG_PMPCFG3
Definition misc.hh:158
@ MISCREG_HPMCOUNTER22H
Definition misc.hh:229
@ MISCREG_PMPADDR09
Definition misc.hh:168
@ MISCREG_HPMEVENT06
Definition misc.hh:113
@ MISCREG_TSELECT
Definition misc.hh:139
@ MISCREG_MSCRATCH
Definition misc.hh:151
@ MISCREG_HPMCOUNTER04H
Definition misc.hh:211
@ MISCREG_HPMEVENT21
Definition misc.hh:128
@ MISCREG_HPMCOUNTER12H
Definition misc.hh:219
@ MISCREG_STATUS
Definition misc.hh:75
@ MISCREG_HPMEVENT12
Definition misc.hh:119
@ MISCREG_HPMCOUNTER25
Definition misc.hh:103
@ MISCREG_PMPADDR04
Definition misc.hh:163
@ MISCREG_INSTRETH
Definition misc.hh:209
@ MISCREG_MCOUNTEREN
Definition misc.hh:150
@ MISCREG_PMPADDR00
Definition misc.hh:159
@ MISCREG_HPMCOUNTER22
Definition misc.hh:100
@ MISCREG_HPMEVENT17
Definition misc.hh:124
@ MISCREG_HPMEVENT20
Definition misc.hh:127
@ MISCREG_HPMCOUNTER03H
Definition misc.hh:210
@ MISCREG_HPMCOUNTER15H
Definition misc.hh:222
@ MISCREG_MEDELEG
Definition misc.hh:147
@ MISCREG_USCRATCH
Definition misc.hh:187
@ MISCREG_HPMEVENT25
Definition misc.hh:132
@ MISCREG_HPMCOUNTER31H
Definition misc.hh:238
@ MISCREG_HPMCOUNTER11
Definition misc.hh:89
@ MISCREG_HPMCOUNTER17H
Definition misc.hh:224
@ MISCREG_HPMEVENT03
Definition misc.hh:110
@ MISCREG_PMPCFG1
Definition misc.hh:156
@ MISCREG_HPMEVENT13
Definition misc.hh:120
@ MISCREG_PMPADDR13
Definition misc.hh:172
@ MISCREG_HPMCOUNTER12
Definition misc.hh:90
@ MISCREG_HPMCOUNTER29H
Definition misc.hh:236
@ MISCREG_HPMEVENT04
Definition misc.hh:111
@ MISCREG_HPMEVENT08
Definition misc.hh:115
@ MISCREG_HPMEVENT19
Definition misc.hh:126
@ MISCREG_DSCRATCH
Definition misc.hh:145
@ MISCREG_HPMEVENT30
Definition misc.hh:137
@ MISCREG_SEDELEG
Definition misc.hh:176
@ MISCREG_PMPADDR06
Definition misc.hh:165
@ MISCREG_HPMCOUNTER21
Definition misc.hh:99
@ MISCREG_HPMCOUNTER21H
Definition misc.hh:228
@ MISCREG_PMPADDR03
Definition misc.hh:162
@ MISCREG_SCOUNTEREN
Definition misc.hh:179
@ MISCREG_HPMCOUNTER18H
Definition misc.hh:225
@ MISCREG_HPMCOUNTER06
Definition misc.hh:84
@ MISCREG_HPMCOUNTER20H
Definition misc.hh:227
@ MISCREG_HPMCOUNTER28
Definition misc.hh:106
@ MISCREG_PMPADDR02
Definition misc.hh:161
@ MISCREG_MIDELEG
Definition misc.hh:148
@ MISCREG_HPMCOUNTER30
Definition misc.hh:108
@ MISCREG_HPMCOUNTER14
Definition misc.hh:92
@ MISCREG_MSTATUSH
Definition misc.hh:205
@ MISCREG_HPMEVENT10
Definition misc.hh:117
@ MISCREG_HPMEVENT26
Definition misc.hh:133
@ MISCREG_HPMEVENT18
Definition misc.hh:125
@ MISCREG_HPMEVENT23
Definition misc.hh:130
@ MISCREG_INSTRET
Definition misc.hh:80
@ MISCREG_HARTID
Definition misc.hh:74
@ MISCREG_HPMCOUNTER05H
Definition misc.hh:212
@ MISCREG_HPMCOUNTER20
Definition misc.hh:98
@ MISCREG_HPMEVENT09
Definition misc.hh:116
@ MISCREG_HPMCOUNTER04
Definition misc.hh:82
@ MISCREG_HPMCOUNTER25H
Definition misc.hh:232
@ MISCREG_HPMCOUNTER27H
Definition misc.hh:234
@ MISCREG_HPMCOUNTER06H
Definition misc.hh:213
@ MISCREG_PMPADDR07
Definition misc.hh:166
@ MISCREG_HPMCOUNTER08H
Definition misc.hh:215
@ MISCREG_HPMEVENT16
Definition misc.hh:123
@ MISCREG_HPMCOUNTER18
Definition misc.hh:96
@ MISCREG_SSCRATCH
Definition misc.hh:180
@ MISCREG_HPMCOUNTER19H
Definition misc.hh:226
@ MISCREG_HPMEVENT14
Definition misc.hh:121
@ MISCREG_HPMCOUNTER10H
Definition misc.hh:217
@ MISCREG_HPMCOUNTER05
Definition misc.hh:83
@ MISCREG_HPMCOUNTER30H
Definition misc.hh:237
@ MISCREG_HPMCOUNTER17
Definition misc.hh:95
@ MISCREG_HPMCOUNTER09H
Definition misc.hh:216
@ MISCREG_HPMCOUNTER27
Definition misc.hh:105
@ MISCREG_HPMCOUNTER24
Definition misc.hh:102
@ MISCREG_HPMCOUNTER28H
Definition misc.hh:235
@ MISCREG_HPMCOUNTER14H
Definition misc.hh:221
@ MISCREG_HPMCOUNTER23
Definition misc.hh:101
@ MISCREG_CYCLE
Definition misc.hh:78
@ MISCREG_HPMCOUNTER07H
Definition misc.hh:214
@ MISCREG_HPMCOUNTER15
Definition misc.hh:93
@ MISCREG_HPMEVENT24
Definition misc.hh:131
@ MISCREG_HPMCOUNTER10
Definition misc.hh:88
@ MISCREG_HPMCOUNTER29
Definition misc.hh:107
@ MISCREG_VENDORID
Definition misc.hh:71
@ MISCREG_PMPADDR01
Definition misc.hh:160
@ MISCREG_HPMEVENT27
Definition misc.hh:134
@ MISCREG_HPMEVENT15
Definition misc.hh:122
@ MISCREG_HPMEVENT05
Definition misc.hh:112
@ MISCREG_ARCHID
Definition misc.hh:72
@ MISCREG_HPMCOUNTER24H
Definition misc.hh:231
@ MISCREG_HPMEVENT11
Definition misc.hh:118
@ MISCREG_HPMCOUNTER31
Definition misc.hh:109
@ MISCREG_HPMCOUNTER23H
Definition misc.hh:230
@ MISCREG_HPMCOUNTER11H
Definition misc.hh:218
@ MISCREG_PMPADDR08
Definition misc.hh:167
@ MISCREG_HPMCOUNTER03
Definition misc.hh:81
@ MISCREG_PMPADDR15
Definition misc.hh:174
@ MISCREG_HPMEVENT28
Definition misc.hh:135
@ MISCREG_HPMEVENT22
Definition misc.hh:129
@ MISCREG_PMPCFG0
Definition misc.hh:155
@ MISCREG_HPMCOUNTER08
Definition misc.hh:86
@ MISCREG_HPMCOUNTER26H
Definition misc.hh:233
@ MISCREG_PMPCFG2
Definition misc.hh:157
Bitfield< 63 > val
Definition misc.hh:776
constexpr RegClass floatRegClass
Definition float.hh:143
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
std::shared_ptr< Request > RequestPtr
Definition request.hh:94
constexpr char CCRegClassName[]
Definition reg_class.hh:80
uint16_t RegIndex
Definition types.hh:176
constexpr char VecPredRegClassName[]
Definition reg_class.hh:78
Tick curTick()
The universal simulation clock.
Definition cur_tick.hh:46
std::ostream CheckpointOut
Definition serialize.hh:66
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition types.hh:147
constexpr char VecRegClassName[]
Definition reg_class.hh:76
uint64_t RegVal
Definition types.hh:173
constexpr char MatRegClassName[]
Definition reg_class.hh:79
@ VecPredRegClass
Definition reg_class.hh:66
@ MatRegClass
Matrix Register.
Definition reg_class.hh:67
@ CCRegClass
Condition-code register.
Definition reg_class.hh:68
@ VecRegClass
Vector Register.
Definition reg_class.hh:63
@ VecElemClass
Vector Register Native Elem lane.
Definition reg_class.hh:65
constexpr char VecElemClassName[]
Definition reg_class.hh:77
Declaration of the Packet class.
PMP header file.
Declaration of a request, the overall memory request consisting of the parts of the request that are ...

Generated on Mon Jul 10 2023 15:31:58 for gem5 by doxygen 1.9.7