gem5  v21.1.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
base_cpu.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012, 2015 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 #ifndef __ARCH_ARM_KVM_BASE_CPU_HH__
39 #define __ARCH_ARM_KVM_BASE_CPU_HH__
40 
41 #include <vector>
42 
43 #include "cpu/kvm/base.hh"
44 #include "dev/arm/base_gic.hh"
45 
46 struct kvm_reg_list;
47 struct kvm_vcpu_init;
48 
49 namespace gem5
50 {
51 
52 struct BaseArmKvmCPUParams;
53 
54 class BaseArmKvmCPU : public BaseKvmCPU
55 {
56  public:
57  BaseArmKvmCPU(const BaseArmKvmCPUParams &params);
58  virtual ~BaseArmKvmCPU();
59 
60  void startup() override;
61 
62  protected:
63  Tick kvmRun(Tick ticks) override;
64 
66  void ioctlRun() override;
67 
72 
79 
89 
90  protected:
92 
103  const RegIndexVector &getRegList() const;
104 
115  void kvmArmVCpuInit(const kvm_vcpu_init &init);
116 
117  private:
118  std::unique_ptr<kvm_reg_list> tryGetRegList(uint64_t nelem) const;
119 
127  bool getRegList(kvm_reg_list &regs) const;
128 
133 };
134 
135 } // namespace gem5
136 
137 #endif // __ARCH_ARM_KVM_BASE_CPU_HH__
gem5::BaseArmKvmCPU::kvmArmVCpuInit
void kvmArmVCpuInit(const kvm_vcpu_init &init)
Tell the kernel to initialize this CPU.
Definition: base_cpu.cc:219
gem5::BaseArmKvmCPU::BaseArmKvmCPU
BaseArmKvmCPU(const BaseArmKvmCPUParams &params)
Definition: base_cpu.cc:82
gem5::BaseArmKvmCPU::kvmRun
Tick kvmRun(Tick ticks) override
Request KVM to run the guest for a given number of ticks.
Definition: base_cpu.cc:117
base_gic.hh
gem5::BaseArmKvmCPU::irqAsserted
bool irqAsserted
Cached state of the IRQ line.
Definition: base_cpu.hh:69
std::vector< uint64_t >
gem5::BaseArmKvmCPU::RegIndexVector
std::vector< uint64_t > RegIndexVector
Definition: base_cpu.hh:91
gem5::BaseArmKvmCPU::tryGetRegList
std::unique_ptr< kvm_reg_list > tryGetRegList(uint64_t nelem) const
gem5::SimObject::params
const Params & params() const
Definition: sim_object.hh:176
gem5::BaseKvmCPU
Base class for KVM based CPU models.
Definition: base.hh:87
gem5::BaseArmKvmCPU
Definition: base_cpu.hh:54
gem5::BaseArmKvmCPU::fiqAsserted
bool fiqAsserted
Cached state of the FIQ line.
Definition: base_cpu.hh:71
gem5::Tick
uint64_t Tick
Tick count type.
Definition: types.hh:58
gem5::BaseArmKvmCPU::_regIndexList
RegIndexVector _regIndexList
Cached copy of the list of registers supported by KVM.
Definition: base_cpu.hh:132
gem5::BaseArmKvmCPU::prevDeviceIRQLevel
uint64_t prevDeviceIRQLevel
KVM records whether each in-kernel device IRQ is asserted or disasserted in the kvmRunState->s....
Definition: base_cpu.hh:88
base.hh
gem5::BaseArmKvmCPU::virtTimerPin
ArmInterruptPin * virtTimerPin
If the user-space GIC and the kernel-space timer are used simultaneously, set up this interrupt pin t...
Definition: base_cpu.hh:78
gem5::BaseArmKvmCPU::~BaseArmKvmCPU
virtual ~BaseArmKvmCPU()
Definition: base_cpu.cc:89
gem5::BaseArmKvmCPU::getRegList
const RegIndexVector & getRegList() const
Get a list of registers supported by getOneReg() and setOneReg().
Definition: base_cpu.cc:191
gem5::ArmInterruptPin
Generic representation of an Arm interrupt pin.
Definition: base_gic.hh:200
gem5::BaseKvmCPU::init
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: base.cc:109
gem5::BaseArmKvmCPU::startup
void startup() override
startup() is the final initialization call before simulation.
Definition: base_cpu.cc:94
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: decoder.cc:40
gem5::BaseArmKvmCPU::ioctlRun
void ioctlRun() override
Override for synchronizing state in kvm_run.
Definition: base_cpu.cc:171

Generated on Wed Jul 28 2021 12:10:21 for gem5 by doxygen 1.8.17