arch-riscv: Fix reset function and style
authorAlec Roelke <ar4jc@virginia.edu>
Mon, 19 Feb 2018 03:28:44 +0000 (22:28 -0500)
committerAlec Roelke <alec.roelke@gmail.com>
Wed, 16 Jan 2019 00:20:34 +0000 (00:20 +0000)
In addition to fixing some style issues with resetting, this patch fixes
what happens on reset. The RISC-V privileged ISA reference manual says
that,
on reset:
 1. Privilege mode is set to M
 2. mstatus.mie <- 0; mstatus.mprv <- 0
 3. PC <- reset vector
 4. mcause <- reset cause (0 if there is no distinguishing causes)
 5. Everything else is undefined
Because of 5, everything else will be left alone

Change-Id: I81bdf7a88b08874e3c3d5fc6c7f3ca2d796496b8
Reviewed-on: https://gem5-review.googlesource.com/c/14376
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Maintainer: Jason Lowe-Power <jason@lowepower.com>

src/arch/riscv/faults.cc
src/arch/riscv/faults.hh

index b5f3d078bfed27222c0e5ae0ec2504b380889a44..a151334c49fadfa7c081a03e3629a68b0893a2db 100644 (file)
@@ -131,6 +131,13 @@ void Reset::invoke(ThreadContext *tc, const StaticInstPtr &inst)
         tc->clearArchRegs();
     }
 
+    tc->setMiscReg(MISCREG_PRV, PRV_M);
+    STATUS status = tc->readMiscReg(MISCREG_STATUS);
+    status.mie = 0;
+    status.mprv = 0;
+    tc->setMiscReg(MISCREG_STATUS, status);
+    tc->setMiscReg(MISCREG_MCAUSE, 0);
+
     // Advance the PC to the implementation-defined reset vector
     PCState pc = static_cast<RiscvSystem *>(tc->getSystemPtr())->resetVect();
     tc->pcState(pc);
index d9cb44c3d639b8de5370715ab0d01f3740390a3e..2176f889bd70557e670e4c58a8469da60c4205f1 100644 (file)
@@ -95,24 +95,15 @@ class RiscvFault : public FaultBase
 
 class Reset : public FaultBase
 {
+  private:
+    const FaultName _name;
 
-    public:
-        Reset()
-            : _name("reset")
-        {}
-
-        FaultName
-        name() const override
-        {
-            return _name;
-        }
-
-        void
-        invoke(ThreadContext *tc, const StaticInstPtr &inst =
-            StaticInst::nullStaticInstPtr) override;
+  public:
+    Reset() : _name("reset") {}
+    FaultName name() const override { return _name; }
 
-    private:
-        const FaultName _name;
+    void invoke(ThreadContext *tc, const StaticInstPtr &inst =
+        StaticInst::nullStaticInstPtr) override;
 };
 
 class InstFault : public RiscvFault