gem5  v22.1.0.0
smmu_v3_proc.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013, 2018-2019 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 #include "dev/arm/smmu_v3_proc.hh"
39 
40 #include <cassert>
41 #include <functional>
42 
43 #include "dev/arm/smmu_v3.hh"
44 #include "sim/system.hh"
45 
46 namespace gem5
47 {
48 
49 SMMUProcess::SMMUProcess(const std::string &name, SMMUv3 &_smmu) :
50  coroutine(NULL),
51  myName(name),
52  smmu(_smmu)
53 {}
54 
56 {
57  delete coroutine;
58 }
59 
60 void
62 {
63  smmu.runProcess(this, NULL);
64 }
65 
66 void
68 {
69  delete coroutine;
70  coroutine = new Coroutine(
71  std::bind(&SMMUProcess::main, this, std::placeholders::_1));
72 }
73 
74 void
75 SMMUProcess::doRead(Yield &yield, Addr addr, void *ptr, size_t size)
76 {
78  doDelay(yield, Cycles(1)); // request - assume 1 cycle
80 
81  SMMUAction a;
82  a.type = ACTION_SEND_REQ;
83 
84  RequestPtr req = std::make_shared<Request>(
85  addr, size, 0, smmu.requestorId);
86 
87  req->taskId(context_switch_task_id::DMA);
88 
89  a.pkt = new Packet(req, MemCmd::ReadReq);
90  a.pkt->dataStatic(ptr);
91 
92  a.delay = 0;
93 
94  PacketPtr pkt = yield(a).get();
95 
96  assert(pkt);
97  // >= because we may get the whole cache line
98  assert(pkt->getSize() >= size);
99 
100  delete pkt;
101 }
102 
103 void
104 SMMUProcess::doWrite(Yield &yield, Addr addr, const void *ptr, size_t size)
105 {
106  unsigned nbeats = (size + (smmu.requestPortWidth-1))
108 
110  doDelay(yield, Cycles(nbeats));
112 
113 
114  SMMUAction a;
115  a.type = ACTION_SEND_REQ;
116 
117  RequestPtr req = std::make_shared<Request>(
118  addr, size, 0, smmu.requestorId);
119 
120  req->taskId(context_switch_task_id::DMA);
121 
122  a.pkt = new Packet(req, MemCmd::WriteReq);
123  a.pkt->dataStatic(ptr);
124 
125  PacketPtr pkt = yield(a).get();
126 
127  delete pkt;
128 }
129 
130 void
132 {
133  if (smmu.system.isTimingMode())
134  scheduleWakeup(smmu.clockEdge(cycles));
135 
136  SMMUAction a;
137  a.type = ACTION_DELAY;
138  a.delay = cycles * smmu.clockPeriod();
139  yield(a);
140 }
141 
142 void
144 {
145  SMMUAction a;
146  a.type = ACTION_SLEEP;
147  yield(a);
148 }
149 
150 void
152 {
153  while (sem.count == 0) {
154  sem.queue.push(this);
155  doSleep(yield);
156  }
157 
158  sem.count--;
159  return;
160 }
161 
162 void
164 {
165  sem.count++;
166  if (!sem.queue.empty()) {
167  SMMUProcess *next_proc = sem.queue.front();
168  sem.queue.pop();
169 
170  // Schedule event in the current tick instead of
171  // calling the function directly to avoid overflowing
172  // the stack in this coroutine.
173  next_proc->scheduleWakeup(curTick());
174  }
175 }
176 
177 void
179 {
180  sig.waiting.push_back(this);
181  doSleep(yield);
182 }
183 
184 void
186 {
187  if (!sig.waiting.empty()) {
188  for (auto it : sig.waiting) {
189  // Schedule event in the current tick instead of
190  // calling the function directly to avoid overflowing
191  // the stack in this coroutine.
192  it->scheduleWakeup(curTick());
193  }
194 
195  sig.waiting.clear();
196  }
197 }
198 
199 void
201 {
202  auto *ep = new EventWrapper<
203  SMMUProcess, &SMMUProcess::wakeup> (this, true);
204 
205  smmu.schedule(ep, when);
206 }
207 
210 {
211  assert(coroutine != NULL);
212  assert(*coroutine);
213  return (*coroutine)(pkt).get();
214 }
215 
216 } // namespace gem5
Tick clockEdge(Cycles cycles=Cycles(0)) const
Determine the tick when a cycle begins, by default the current one, but the argument also enables the...
Tick clockPeriod() const
CallerType: A reference to an object of this class will be passed to the coroutine task.
Definition: coroutine.hh:86
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:79
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:294
unsigned getSize() const
Definition: packet.hh:815
gem5::Coroutine< PacketPtr, SMMUAction > Coroutine
SMMUAction run(PacketPtr pkt)
virtual void main(Yield &yield)=0
void doSleep(Yield &yield)
Coroutine * coroutine
void doWrite(Yield &yield, Addr addr, const void *ptr, size_t size)
void doDelay(Yield &yield, Cycles cycles)
void doSemaphoreUp(SMMUSemaphore &sem)
SMMUProcess(const std::string &name, SMMUv3 &_smmu)
Definition: smmu_v3_proc.cc:49
void scheduleWakeup(Tick when)
virtual ~SMMUProcess()
Definition: smmu_v3_proc.cc:55
void doBroadcastSignal(SMMUSignal &sig)
void doSemaphoreDown(Yield &yield, SMMUSemaphore &sem)
void doWaitForSignal(Yield &yield, SMMUSignal &sig)
void doRead(Yield &yield, Addr addr, void *ptr, size_t size)
Definition: smmu_v3_proc.cc:75
const System & system
Definition: smmu_v3.hh:93
const unsigned requestPortWidth
Definition: smmu_v3.hh:116
SMMUSemaphore requestPortSem
Definition: smmu_v3.hh:124
SMMUAction runProcess(SMMUProcess *proc, PacketPtr pkt)
Definition: smmu_v3.cc:225
const RequestorID requestorId
Definition: smmu_v3.hh:94
bool isTimingMode() const
Is the system in timing mode?
Definition: system.hh:273
std::enable_if_t<!std::is_same_v< T, void >, T > get()
get() is the way we can extrapolate arguments from the coroutine caller.
Definition: coroutine.hh:142
void schedule(Event &event, Tick when)
Definition: eventq.hh:1019
Bitfield< 8 > a
Definition: misc_types.hh:66
Bitfield< 1 > ep
Bitfield< 3 > addr
Definition: types.hh:84
ProbePointArg< PacketInfo > Packet
Packet probe point.
Definition: mem.hh:109
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
std::shared_ptr< Request > RequestPtr
Definition: request.hh:92
Tick curTick()
The universal simulation clock.
Definition: cur_tick.hh:46
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
@ ACTION_DELAY
Definition: smmu_v3_proc.hh:65
@ ACTION_SLEEP
Definition: smmu_v3_proc.hh:66
@ ACTION_SEND_REQ
Definition: smmu_v3_proc.hh:61
This is an implementation of the SMMUv3 architecture.
std::queue< SMMUProcess * > queue
Definition: smmu_v3_proc.hh:89
std::list< SMMUProcess * > waiting
Definition: smmu_v3_proc.hh:94
const std::string & name()
Definition: trace.cc:49

Generated on Wed Dec 21 2022 10:22:33 for gem5 by doxygen 1.9.1