gem5 v24.0.0.0
Loading...
Searching...
No Matches
evs.hh
Go to the documentation of this file.
1/*
2 * Copyright 2020 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_CORTEXR52_EVS_HH__
29#define __ARCH_ARM_FASTMODEL_CORTEXR52_EVS_HH__
30
31#include <memory>
32
39#include "dev/intpin.hh"
40#include "mem/port_proxy.hh"
41#include "params/FastModelScxEvsCortexR52x1.hh"
42#include "params/FastModelScxEvsCortexR52x2.hh"
43#include "params/FastModelScxEvsCortexR52x3.hh"
44#include "params/FastModelScxEvsCortexR52x4.hh"
45#include "scx_evs_CortexR52x1.h"
46#include "scx_evs_CortexR52x2.h"
47#include "scx_evs_CortexR52x3.h"
48#include "scx_evs_CortexR52x4.h"
49#include "sim/signal.hh"
53
54namespace gem5
55{
56
57namespace fastmodel
58{
59
60class CortexR52Cluster;
61
62template <class Types>
63class ScxEvsCortexR52 : public Types::Base, public Iris::BaseCpuEvs
64{
65 private:
66 static const int CoreCount = Types::CoreCount;
67 static const int PpiCount = 9;
68 static const int SpiCount = 960;
69 using Base = typename Types::Base;
70 using Params = typename Types::Params;
72
74
77
78 // A structure to collect per-core connections, and also plumb up PPIs.
79 struct CorePins
80 {
82 template <typename T>
83 using SignalInitiator = amba_pv::signal_master_port<T>;
84
85 std::string name;
87 int cpu;
88
89 CorePins(Evs *_evs, int _cpu);
90
91 void
93 {
94 evs->signalInterrupt->ppi(cpu, num, true);
95 }
96
97 void
99 {
100 evs->signalInterrupt->ppi(cpu, num, false);
101 }
102
104
108
113
115 };
116
118
120
122
124
126
128
130
132
134
135 public:
137 ScxEvsCortexR52(const sc_core::sc_module_name &mod_name, const Params &p);
138
139 void
141 {
142 this->signalInterrupt->spi(num, true);
143 }
144
145 void
147 {
148 this->signalInterrupt->spi(num, false);
149 }
150
151 Port &gem5_getPort(const std::string &if_name, int idx) override;
152
153 void
155 {
156 Base::end_of_elaboration();
157 Base::start_of_simulation();
158 }
159 void start_of_simulation() override {}
160
161 void setClkPeriod(Tick clk_period) override;
162
163 void setSysCounterFrq(uint64_t sys_counter_frq) override;
164
165 void setCluster(SimObject *cluster) override;
166
167 void setResetAddr(int core, Addr addr, bool secure) override;
168};
169
171{
172 using Base = scx_evs_CortexR52x1;
173 using Params = FastModelScxEvsCortexR52x1Params;
174 static const int CoreCount = 1;
175};
177extern template class ScxEvsCortexR52<ScxEvsCortexR52x1Types>;
178
180{
181 using Base = scx_evs_CortexR52x2;
182 using Params = FastModelScxEvsCortexR52x2Params;
183 static const int CoreCount = 2;
184};
186extern template class ScxEvsCortexR52<ScxEvsCortexR52x2Types>;
187
189{
190 using Base = scx_evs_CortexR52x3;
191 using Params = FastModelScxEvsCortexR52x3Params;
192 static const int CoreCount = 3;
193};
195extern template class ScxEvsCortexR52<ScxEvsCortexR52x3Types>;
196
198{
199 using Base = scx_evs_CortexR52x4;
200 using Params = FastModelScxEvsCortexR52x4Params;
201 static const int CoreCount = 4;
202};
204extern template class ScxEvsCortexR52<ScxEvsCortexR52x4Types>;
205
206} // namespace fastmodel
207} // namespace gem5
208
209#endif // __ARCH_ARM_FASTMODEL_CORTEXR52_EVS_HH__
Ports are used to interface objects to each other.
Definition port.hh:62
Abstract superclass for simulation objects.
void raiseInterruptPin(int num)
Definition evs.hh:140
static const int SpiCount
Definition evs.hh:68
void setSysCounterFrq(uint64_t sys_counter_frq) override
Definition evs.cc:51
static const int PpiCount
Definition evs.hh:67
SignalSinkPort< bool > model_reset
Definition evs.hh:129
std::vector< std::unique_ptr< ClstrInt > > spis
Definition evs.hh:121
void lowerInterruptPin(int num)
Definition evs.hh:146
CortexR52Cluster * gem5CpuCluster
Definition evs.hh:131
typename Types::Base Base
Definition evs.hh:69
void end_of_elaboration() override
Definition evs.hh:154
Port & gem5_getPort(const std::string &if_name, int idx) override
Definition evs.cc:133
void setCluster(SimObject *cluster) override
Definition evs.cc:58
void setClkPeriod(Tick clk_period) override
Definition evs.cc:44
std::vector< std::unique_ptr< CorePins > > corePins
Definition evs.hh:117
SignalInterruptInitiatorSocket signalInterrupt
Definition evs.hh:76
typename Types::Params Params
Definition evs.hh:70
void setResetAddr(int core, Addr addr, bool secure) override
Definition evs.cc:66
static const int CoreCount
Definition evs.hh:66
ScxEvsCortexR52(const Params &p)
Definition evs.hh:136
void start_of_simulation() override
Definition evs.hh:159
ClockRateControlInitiatorSocket clockRateControl
Definition evs.hh:75
STL vector class.
Definition stl.hh:37
Bitfield< 0 > p
Bitfield< 3 > addr
Definition types.hh:84
Copyright (c) 2024 - Pranith Kumar Copyright (c) 2020 Inria All rights reserved.
Definition binary32.hh:36
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition types.hh:147
uint64_t Tick
Tick count type.
Definition types.hh:58
PortProxy Object Declaration.
amba_pv::signal_master_port< T > SignalInitiator
Definition evs.hh:83
std::vector< std::unique_ptr< CoreInt > > ppis
Definition evs.hh:103
SignalInitiator< uint64_t > cfgvectable
Definition evs.hh:114
FastModelScxEvsCortexR52x1Params Params
Definition evs.hh:173
FastModelScxEvsCortexR52x2Params Params
Definition evs.hh:182
FastModelScxEvsCortexR52x3Params Params
Definition evs.hh:191
FastModelScxEvsCortexR52x4Params Params
Definition evs.hh:200
const std::string & name()
Definition trace.cc:48

Generated on Tue Jun 18 2024 16:23:55 for gem5 by doxygen 1.11.0