gem5  [DEVELOP-FOR-23.0]
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
evs.hh
Go to the documentation of this file.
1 /*
2  * Copyright 2019 Google, Inc.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met: redistributions of source code must retain the above copyright
7  * notice, this list of conditions and the following disclaimer;
8  * redistributions in binary form must reproduce the above copyright
9  * notice, this list of conditions and the following disclaimer in the
10  * documentation and/or other materials provided with the distribution;
11  * neither the name of the copyright holders nor the names of its
12  * contributors may be used to endorse or promote products derived from
13  * this software without specific prior written permission.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
18  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
19  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
21  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27 
28 #ifndef __ARCH_ARM_FASTMODEL_CORTEXA76_EVS_HH__
29 #define __ARCH_ARM_FASTMODEL_CORTEXA76_EVS_HH__
30 
31 #include <memory>
32 
38 #include "mem/port_proxy.hh"
39 #include "params/FastModelScxEvsCortexA76x1.hh"
40 #include "params/FastModelScxEvsCortexA76x2.hh"
41 #include "params/FastModelScxEvsCortexA76x3.hh"
42 #include "params/FastModelScxEvsCortexA76x4.hh"
43 #include "scx_evs_CortexA76x1.h"
44 #include "scx_evs_CortexA76x2.h"
45 #include "scx_evs_CortexA76x3.h"
46 #include "scx_evs_CortexA76x4.h"
47 #include "sim/signal.hh"
51 
52 namespace gem5
53 {
54 
55 namespace fastmodel
56 {
57 
58 class CortexA76Cluster;
59 
60 template <class Types>
62 {
63  private:
64  static const int CoreCount = Types::CoreCount;
65  using Base = typename Types::Base;
66  using Params = typename Types::Params;
67 
69 
72 
74  64, svp_gicv3_comms::gicv3_comms_fw_if,
75  svp_gicv3_comms::gicv3_comms_bw_if, 1,
77 
78  template <typename T>
79  using SignalInitiator = amba_pv::signal_master_port<T>;
80 
83 
96 
98 
100 
102 
104 
105  const Params &params;
106 
107  public:
108  ScxEvsCortexA76(const Params &p) : ScxEvsCortexA76(p.name.c_str(), p) {}
109  ScxEvsCortexA76(const sc_core::sc_module_name &mod_name, const Params &p);
110 
111  void before_end_of_elaboration() override;
112  Port &gem5_getPort(const std::string &if_name, int idx) override;
113 
114  void
116  {
117  Base::end_of_elaboration();
118  Base::start_of_simulation();
119  }
120  void start_of_simulation() override {}
121 
122  void setClkPeriod(Tick clk_period) override;
123 
124  void setSysCounterFrq(uint64_t sys_counter_frq) override;
125 
126  void setCluster(SimObject *cluster) override;
127 
128  void setResetAddr(int core, Addr addr, bool secure) override;
129 };
130 
132 {
133  using Base = scx_evs_CortexA76x1;
134  using Params = FastModelScxEvsCortexA76x1Params;
135  static const int CoreCount = 1;
136 };
138 extern template class ScxEvsCortexA76<ScxEvsCortexA76x1Types>;
139 
141 {
142  using Base = scx_evs_CortexA76x2;
143  using Params = FastModelScxEvsCortexA76x2Params;
144  static const int CoreCount = 2;
145 };
147 extern template class ScxEvsCortexA76<ScxEvsCortexA76x2Types>;
148 
150 {
151  using Base = scx_evs_CortexA76x3;
152  using Params = FastModelScxEvsCortexA76x3Params;
153  static const int CoreCount = 3;
154 };
156 extern template class ScxEvsCortexA76<ScxEvsCortexA76x3Types>;
157 
159 {
160  using Base = scx_evs_CortexA76x4;
161  using Params = FastModelScxEvsCortexA76x4Params;
162  static const int CoreCount = 4;
163 };
165 extern template class ScxEvsCortexA76<ScxEvsCortexA76x4Types>;
166 
167 } // namespace fastmodel
168 } // namespace gem5
169 
170 #endif // __ARCH_ARM_FASTMODEL_CORTEXA76_EVS_HH__
gem5::fastmodel::ScxEvsCortexA76::end_of_elaboration
void end_of_elaboration() override
Definition: evs.hh:115
gem5::fastmodel::ScxEvsCortexA76x4Types::Base
scx_evs_CortexA76x4 Base
Definition: evs.hh:160
sc_core::SC_ONE_OR_MORE_BOUND
@ SC_ONE_OR_MORE_BOUND
Definition: sc_port.hh:69
gem5::fastmodel::ScxEvsCortexA76x2Types
Definition: evs.hh:140
gem5::fastmodel::ScxEvsCortexA76x3Types
Definition: evs.hh:149
gem5::fastmodel::ScxEvsCortexA76::rvbaraddr
std::vector< std::unique_ptr< SignalInitiator< uint64_t > > > rvbaraddr
Definition: evs.hh:93
gem5::fastmodel::ScxEvsCortexA76::cntpsirq
std::vector< std::unique_ptr< SignalReceiver > > cntpsirq
Definition: evs.hh:86
gem5::fastmodel::ScxEvsCortexA76::params
const Params & params
Definition: evs.hh:105
gem5::fastmodel::ScxEvsCortexA76::gem5CpuCluster
CortexA76Cluster * gem5CpuCluster
Definition: evs.hh:103
gem5::fastmodel::ScxEvsCortexA76::periphClockRateControl
ClockRateControlInitiatorSocket periphClockRateControl
Definition: evs.hh:71
gem5::fastmodel::ScxEvsCortexA76::setResetAddr
void setResetAddr(int core, Addr addr, bool secure) override
Definition: evs.cc:67
gem5::Iris::BaseCpuEvs
Definition: cpu.hh:47
gem5::fastmodel::ScxEvsCortexA76::pmuirq
std::vector< std::unique_ptr< SignalReceiver > > pmuirq
Definition: evs.hh:90
gem5::fastmodel::ScxEvsCortexA76::cnthpirq
std::vector< std::unique_ptr< SignalReceiver > > cnthpirq
Definition: evs.hh:84
gem5::fastmodel::ScxEvsCortexA76::start_of_simulation
void start_of_simulation() override
Definition: evs.hh:120
gem5::fastmodel::ScxEvsCortexA76::SC_HAS_PROCESS
SC_HAS_PROCESS(ScxEvsCortexA76)
std::vector
STL vector class.
Definition: stl.hh:37
signal_sender.hh
gem5::fastmodel::ScxEvsCortexA76x2Types::Base
scx_evs_CortexA76x2 Base
Definition: evs.hh:142
cpu.hh
gem5::fastmodel::ScxEvsCortexA76::commirq
std::vector< std::unique_ptr< SignalReceiver > > commirq
Definition: evs.hh:88
gem5::ClockRateControlInitiatorSocket
Definition: exported_clock_rate_control.hh:63
sc_event.hh
gem5::auxv::Base
@ Base
Definition: aux_vector.hh:74
gem5::fastmodel::SignalSender
Definition: signal_sender.hh:44
gem5::fastmodel::ScxEvsCortexA76::top_reset
SignalSender top_reset
Definition: evs.hh:97
gem5::fastmodel::ScxEvsCortexA76::setCluster
void setCluster(SimObject *cluster) override
Definition: evs.cc:59
gem5::VegaISA::p
Bitfield< 54 > p
Definition: pagetable.hh:70
gem5::fastmodel::ScxEvsCortexA76::cntpnsirq
std::vector< std::unique_ptr< SignalReceiver > > cntpnsirq
Definition: evs.hh:92
gem5::fastmodel::ScxEvsCortexA76::before_end_of_elaboration
void before_end_of_elaboration() override
Definition: evs.cc:137
gem5::Tick
uint64_t Tick
Tick count type.
Definition: types.hh:58
gem5::fastmodel::ScxEvsCortexA76
Definition: evs.hh:61
port_proxy.hh
gem5::fastmodel::ScxEvsCortexA76::CoreCount
static const int CoreCount
Definition: evs.hh:64
gem5::fastmodel::ScxEvsCortexA76::cntvirq
std::vector< std::unique_ptr< SignalReceiver > > cntvirq
Definition: evs.hh:87
gem5::fastmodel::ScxEvsCortexA76x3Types::Base
scx_evs_CortexA76x3 Base
Definition: evs.hh:151
sc_core::sc_module_name
Definition: sc_module_name.hh:41
gem5::fastmodel::ScxEvsCortexA76x4Types
Definition: evs.hh:158
gem5::SimObject
Abstract superclass for simulation objects.
Definition: sim_object.hh:146
gem5::fastmodel::ScxEvsCortexA76::poweron_reset
std::vector< std::unique_ptr< SignalSender > > poweron_reset
Definition: evs.hh:95
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147
gem5::fastmodel::ScxEvsCortexA76x1Types
Definition: evs.hh:131
gem5::fastmodel::ScxEvsCortexA76x1Types::Base
scx_evs_CortexA76x1 Base
Definition: evs.hh:133
name
const std::string & name()
Definition: trace.cc:48
gem5::fastmodel::ScxEvsCortexA76::ScxEvsCortexA76
ScxEvsCortexA76(const Params &p)
Definition: evs.hh:108
sc_module.hh
gem5::fastmodel::ScxEvsCortexA76::setSysCounterFrq
void setSysCounterFrq(uint64_t sys_counter_frq) override
Definition: evs.cc:52
amba_ports.hh
gem5::fastmodel::ScxEvsCortexA76x3Types::Params
FastModelScxEvsCortexA76x3Params Params
Definition: evs.hh:152
gem5::SignalSinkPort< bool >
gem5::fastmodel::ScxEvsCortexA76::redist
std::vector< std::unique_ptr< TlmGicTarget > > redist
Definition: evs.hh:82
gem5::fastmodel::ScxEvsCortexA76::setClkPeriod
void setClkPeriod(Tick clk_period) override
Definition: evs.cc:45
gem5::Port
Ports are used to interface objects to each other.
Definition: port.hh:61
sc_gem5::TlmInitiatorBaseWrapper
Definition: tlm_port_wrapper.hh:40
gem5::fastmodel::ScxEvsCortexA76::model_reset
SignalSinkPort< bool > model_reset
Definition: evs.hh:101
gem5::fastmodel::ScxEvsCortexA76::Base
typename Types::Base Base
Definition: evs.hh:65
gem5::fastmodel::ScxEvsCortexA76::vcpumntirq
std::vector< std::unique_ptr< SignalReceiver > > vcpumntirq
Definition: evs.hh:91
gem5::fastmodel::ScxEvsCortexA76x1Types::Params
FastModelScxEvsCortexA76x1Params Params
Definition: evs.hh:134
gem5::fastmodel::ScxEvsCortexA76::dbg_reset
SignalSender dbg_reset
Definition: evs.hh:99
signal.hh
gem5::fastmodel::ScxEvsCortexA76::clockRateControl
ClockRateControlInitiatorSocket clockRateControl
Definition: evs.hh:70
gem5::fastmodel::ScxEvsCortexA76x2Types::Params
FastModelScxEvsCortexA76x2Params Params
Definition: evs.hh:143
exported_clock_rate_control.hh
gem5::fastmodel::CortexA76Cluster
Definition: cortex_a76.hh:82
gem5::fastmodel::ScxEvsCortexA76x4Types::Params
FastModelScxEvsCortexA76x4Params Params
Definition: evs.hh:161
tlm_port_wrapper.hh
gem5::fastmodel::ScxEvsCortexA76::SignalInitiator
amba_pv::signal_master_port< T > SignalInitiator
Definition: evs.hh:79
signal_receiver.hh
gem5::fastmodel::ScxEvsCortexA76x1Types::CoreCount
static const int CoreCount
Definition: evs.hh:135
sc_gem5::TlmTargetBaseWrapper
Definition: tlm_port_wrapper.hh:44
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: gpu_translation_state.hh:37
gem5::fastmodel::ScxEvsCortexA76::Params
typename Types::Params Params
Definition: evs.hh:66
gem5::fastmodel::ScxEvsCortexA76::gem5_getPort
Port & gem5_getPort(const std::string &if_name, int idx) override
Definition: evs.cc:167
gem5::fastmodel::ScxEvsCortexA76::amba
AmbaInitiator amba
Definition: evs.hh:81
gem5::fastmodel::ScxEvsCortexA76::cnthvirq
std::vector< std::unique_ptr< SignalReceiver > > cnthvirq
Definition: evs.hh:85
gem5::fastmodel::ScxEvsCortexA76::core_reset
std::vector< std::unique_ptr< SignalSender > > core_reset
Definition: evs.hh:94
gem5::fastmodel::ScxEvsCortexA76::ctidbgirq
std::vector< std::unique_ptr< SignalReceiver > > ctidbgirq
Definition: evs.hh:89
gem5::X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:84

Generated on Sun Jul 30 2023 01:56:47 for gem5 by doxygen 1.8.17