gem5 v24.0.0.0
Loading...
Searching...
No Matches
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
39
40#include <cassert>
41#include <functional>
42
43#include "dev/arm/smmu_v3.hh"
44#include "sim/system.hh"
45
46namespace gem5
47{
48
49SMMUProcess::SMMUProcess(const std::string &name, SMMUv3 &_smmu) :
50 coroutine(NULL),
51 myName(name),
52 smmu(_smmu)
53{}
54
59
60void
62{
63 smmu.runProcess(this, NULL);
64}
65
66void
68{
69 delete coroutine;
70 coroutine = new Coroutine(
71 std::bind(&SMMUProcess::main, this, std::placeholders::_1));
72}
73
74void
75SMMUProcess::doRead(Yield &yield, Addr addr, void *ptr, size_t size)
76{
78 doDelay(yield, Cycles(1)); // request - assume 1 cycle
80
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
103void
104SMMUProcess::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
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
130void
132{
135
138 a.delay = cycles * smmu.clockPeriod();
139 yield(a);
140}
141
142void
144{
147 yield(a);
148}
149
150void
152{
153 while (sem.count == 0) {
154 sem.queue.push(this);
155 doSleep(yield);
156 }
157
158 sem.count--;
159 return;
160}
161
162void
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
177void
179{
180 sig.waiting.push_back(this);
181 doSleep(yield);
182}
183
184void
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
199void
201{
202 auto *ep = new MemberEventWrapper<&SMMUProcess::wakeup> (*this, true);
203
204 smmu.schedule(ep, when);
205}
206
209{
210 assert(coroutine != NULL);
211 assert(*coroutine);
212 return (*coroutine)(pkt).get();
213}
214
215} // 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:85
Cycles is a wrapper class for representing cycle counts, i.e.
Definition types.hh:79
Wrap a member function inside MemberEventWrapper to use it as an event callback.
Definition eventq.hh:1092
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition packet.hh:295
unsigned getSize() const
Definition packet.hh:817
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)
void scheduleWakeup(Tick when)
virtual ~SMMUProcess()
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)
const System & system
Definition smmu_v3.hh:95
const unsigned requestPortWidth
Definition smmu_v3.hh:120
SMMUSemaphore requestPortSem
Definition smmu_v3.hh:128
SMMUAction runProcess(SMMUProcess *proc, PacketPtr pkt)
Definition smmu_v3.cc:226
const RequestorID requestorId
Definition smmu_v3.hh:96
bool isTimingMode() const
Is the system in timing mode?
Definition system.hh:270
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:141
void schedule(Event &event, Tick when)
Definition eventq.hh:1012
Bitfield< 8 > a
Definition misc_types.hh:66
Bitfield< 1 > ep
Bitfield< 3 > addr
Definition types.hh:84
Copyright (c) 2024 - Pranith Kumar Copyright (c) 2020 Inria All rights reserved.
Definition binary32.hh:36
std::shared_ptr< Request > RequestPtr
Definition request.hh:94
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
@ ACTION_SLEEP
@ ACTION_SEND_REQ
This is an implementation of the SMMUv3 architecture.
SMMUActionType type
std::queue< SMMUProcess * > queue
std::list< SMMUProcess * > waiting
const std::string & name()
Definition trace.cc:48

Generated on Tue Jun 18 2024 16:24:03 for gem5 by doxygen 1.11.0