gem5  [DEVELOP-FOR-23.0]
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
mem_sink.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018-2020 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 
39 #ifndef __MEM_QOS_MEM_SINK_HH__
40 #define __MEM_QOS_MEM_SINK_HH__
41 
42 #include <cstdint>
43 #include <deque>
44 #include <vector>
45 
46 #include "base/compiler.hh"
47 #include "base/types.hh"
48 #include "mem/abstract_mem.hh"
49 #include "mem/qos/mem_ctrl.hh"
50 #include "mem/qport.hh"
51 #include "params/QoSMemSinkCtrl.hh"
52 #include "sim/eventq.hh"
53 
54 namespace gem5
55 {
56 
57 struct QoSMemSinkInterfaceParams;
58 
59 namespace memory
60 {
61 
62 namespace qos
63 {
64 
65 class MemSinkInterface;
66 
74 class MemSinkCtrl : public MemCtrl
75 {
76  protected:
82 
83  private:
85  {
86  private:
89 
92 
93  public:
100  MemoryPort(const std::string&, MemSinkCtrl&);
101 
102  protected:
110 
116  void recvFunctional(PacketPtr pkt);
117 
124  bool recvTimingReq(PacketPtr pkt);
125 
131 
132  };
133 
134  public:
140  MemSinkCtrl(const QoSMemSinkCtrlParams &);
141 
142  virtual ~MemSinkCtrl();
143 
148  DrainState drain() override;
149 
157  Port &getPort(const std::string &if_name, PortID=InvalidPortID) override;
158 
162  void init() override;
163 
164  protected:
167 
170 
172  const uint64_t memoryPacketSize;
173 
175  const uint64_t readBufferSize;
176 
178  const uint64_t writeBufferSize;
179 
182 
187 
190 
193 
196 
198  {
200 
203 
206  };
207 
212 
217 
222  void processNextReqEvent();
223 
226 
233  inline bool readQueueFull(const uint64_t packets) const;
234 
241  inline bool writeQueueFull(const uint64_t packets) const;
242 
250 
256  void recvFunctional(PacketPtr pkt);
257 
264  bool recvTimingReq(PacketPtr pkt);
265 
267 };
268 
270 {
271  public:
273  void setMemCtrl(MemSinkCtrl* _ctrl) { ctrl = _ctrl; };
274 
276  MemSinkCtrl* ctrl;
277 
278  MemSinkInterface(const QoSMemSinkInterfaceParams &_p);
279 };
280 
281 } // namespace qos
282 } // namespace memory
283 } // namespace gem5
284 
285 #endif // __MEM_QOS_MEM_SINK_HH__
gem5::statistics::Scalar
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:1929
gem5::PortID
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:245
gem5::memory::qos::MemSinkCtrl::MemSinkCtrl
MemSinkCtrl(const QoSMemSinkCtrlParams &)
QoS Memory Sink Constructor.
Definition: mem_sink.cc:56
gem5::memory::qos::MemSinkCtrl::MemSinkCtrlStats::numReadRetries
statistics::Scalar numReadRetries
Count the number of read retries.
Definition: mem_sink.hh:202
gem5::memory::qos::MemSinkInterface::setMemCtrl
void setMemCtrl(MemSinkCtrl *_ctrl)
Setting a pointer to the interface.
Definition: mem_sink.hh:273
gem5::RespPacketQueue
Definition: packet_queue.hh:300
gem5::memory::qos::MemSinkCtrl::getPort
Port & getPort(const std::string &if_name, PortID=InvalidPortID) override
Getter method to access this memory's response port.
Definition: mem_sink.cc:123
memory
Definition: mem.h:38
gem5::memory::qos::MemSinkCtrl::MemoryPort
Definition: mem_sink.hh:84
abstract_mem.hh
gem5::memory::qos::MemSinkCtrl::stats
MemSinkCtrlStats stats
Definition: mem_sink.hh:266
gem5::memory::qos::MemSinkCtrl::port
MemoryPort port
Memory response port.
Definition: mem_sink.hh:181
gem5::memory::qos::MemSinkCtrl::interface
MemSinkInterface *const interface
Create pointer to interface of actual media.
Definition: mem_sink.hh:186
gem5::memory::qos::MemSinkInterface
Definition: mem_sink.hh:269
gem5::memory::qos::MemSinkCtrl::writeQueue
std::vector< PacketQueue > writeQueue
QoS-aware (per priority) incoming read requests packets queue.
Definition: mem_sink.hh:216
gem5::memory::qos::MemSinkCtrl::MemSinkCtrlStats::numWriteRetries
statistics::Scalar numWriteRetries
Count the number of write retries.
Definition: mem_sink.hh:205
gem5::memory::qos::MemSinkCtrl::MemoryPort::recvAtomic
Tick recvAtomic(PacketPtr pkt)
Receive a Packet in Atomic mode.
Definition: mem_sink.cc:368
gem5::memory::qos::MemSinkCtrl::readQueue
std::vector< PacketQueue > readQueue
QoS-aware (per priority) incoming read requests packets queue.
Definition: mem_sink.hh:211
gem5::memory::qos::MemSinkCtrl::MemoryPort::queue
RespPacketQueue queue
Outgoing packet responses queue.
Definition: mem_sink.hh:91
std::vector
STL vector class.
Definition: stl.hh:37
gem5::InvalidPortID
const PortID InvalidPortID
Definition: types.hh:246
gem5::memory::qos::MemSinkCtrl::readBufferSize
const uint64_t readBufferSize
Read request packets queue buffer size in #packets.
Definition: mem_sink.hh:175
gem5::memory::qos::MemSinkCtrl::retryWrReq
bool retryWrReq
Write request pending.
Definition: mem_sink.hh:192
gem5::memory::qos::MemSinkCtrl::init
void init() override
Initializes this object.
Definition: mem_sink.cc:78
gem5::memory::qos::MemSinkCtrl::requestLatency
const Tick requestLatency
Memory between requests latency (ticks)
Definition: mem_sink.hh:166
gem5::memory::qos::MemSinkCtrl::responseLatency
const Tick responseLatency
Memory response latency (ticks)
Definition: mem_sink.hh:169
gem5::memory::qos::MemSinkCtrl::MemoryPort::recvFunctional
void recvFunctional(PacketPtr pkt)
Receive a Packet in Functional mode.
Definition: mem_sink.cc:374
gem5::DrainState
DrainState
Object drain/handover states.
Definition: drain.hh:74
gem5::memory::qos::MemSinkCtrl::writeBufferSize
const uint64_t writeBufferSize
Write request packets queue buffer size in #packets.
Definition: mem_sink.hh:178
gem5::memory::qos::MemSinkCtrl::MemSinkCtrlStats
Definition: mem_sink.hh:197
gem5::memory::qos::MemSinkCtrl::memoryPacketSize
const uint64_t memoryPacketSize
Memory packet size in bytes.
Definition: mem_sink.hh:172
gem5::QueuedResponsePort
A queued port is a port that has an infinite queue for outgoing packets and thus decouples the module...
Definition: qport.hh:61
gem5::Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:294
gem5::memory::AbstractMemory
An abstract memory represents a contiguous block of physical memory, with an associated address range...
Definition: abstract_mem.hh:110
gem5::Tick
uint64_t Tick
Tick count type.
Definition: types.hh:58
gem5::memory::qos::MemSinkCtrl::~MemSinkCtrl
virtual ~MemSinkCtrl()
Definition: mem_sink.cc:74
compiler.hh
gem5::memory::qos::MemSinkCtrl
QoS Memory Sink.
Definition: mem_sink.hh:74
gem5::memory::qos::MemSinkCtrl::drain
DrainState drain() override
Checks and return the Drain state of this SimObject.
Definition: mem_sink.cc:332
gem5::memory::qos::MemSinkInterface::MemSinkInterface
MemSinkInterface(const QoSMemSinkInterfaceParams &_p)
Definition: mem_sink.cc:394
gem5::memory::qos::MemSinkCtrl::nextRequest
Tick nextRequest
Next request service time.
Definition: mem_sink.hh:195
gem5::memory::qos::MemSinkCtrl::MemoryPort::mem
MemSinkCtrl & mem
reference to parent memory object
Definition: mem_sink.hh:88
mem_ctrl.hh
gem5::Port
Ports are used to interface objects to each other.
Definition: port.hh:61
types.hh
qport.hh
gem5::memory::qos::MemSinkCtrl::recvTimingReq
bool recvTimingReq(PacketPtr pkt)
Receive a Packet in Timing mode.
Definition: mem_sink.cc:133
std::deque
STL deque class.
Definition: stl.hh:44
gem5::memory::qos::MemSinkCtrl::recvAtomic
Tick recvAtomic(PacketPtr pkt)
Receive a Packet in Atomic mode.
Definition: mem_sink.cc:102
gem5::memory::qos::MemSinkCtrl::writeQueueFull
bool writeQueueFull(const uint64_t packets) const
Check if the write queue has room for more entries.
Definition: mem_sink.cc:96
gem5::memory::qos::MemSinkCtrl::nextReqEvent
MemberEventWrapper<&MemSinkCtrl::processNextReqEvent > nextReqEvent
Event wrapper to schedule next request handler function.
Definition: mem_sink.hh:225
gem5::memory::qos::MemSinkCtrl::MemoryPort::recvTimingReq
bool recvTimingReq(PacketPtr pkt)
Receive a Packet in Timing mode.
Definition: mem_sink.cc:389
gem5::statistics::Group
Statistics container.
Definition: group.hh:92
gem5::memory::qos::MemSinkCtrl::MemSinkCtrlStats::MemSinkCtrlStats
MemSinkCtrlStats(statistics::Group *parent)
Definition: mem_sink.cc:344
gem5::memory::qos::MemSinkCtrl::recvFunctional
void recvFunctional(PacketPtr pkt)
Receive a Packet in Functional mode.
Definition: mem_sink.cc:113
gem5::memory::qos::MemCtrl
The qos::MemCtrl is a base class for Memory objects which support QoS - it provides access to a set o...
Definition: mem_ctrl.hh:79
gem5::memory::qos::MemSinkCtrl::MemoryPort::getAddrRanges
AddrRangeList getAddrRanges() const
Gets the configured address ranges for this port.
Definition: mem_sink.cc:360
std::list< AddrRange >
gem5::memory::qos::MemSinkCtrl::readQueueFull
bool readQueueFull(const uint64_t packets) const
Check if the read queue has room for more entries.
Definition: mem_sink.cc:90
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: gpu_translation_state.hh:37
gem5::memory::qos::MemSinkCtrl::retryRdReq
bool retryRdReq
Read request pending.
Definition: mem_sink.hh:189
gem5::memory::qos::MemSinkCtrl::processNextReqEvent
void processNextReqEvent()
Processes the next Request event according to configured request latency.
Definition: mem_sink.cc:212
gem5::MemberEventWrapper<&MemSinkCtrl::processNextReqEvent >
gem5::memory::qos::MemSinkInterface::ctrl
MemSinkCtrl * ctrl
Pointer to the controller.
Definition: mem_sink.hh:273
gem5::memory::qos::MemSinkCtrl::MemoryPort::MemoryPort
MemoryPort(const std::string &, MemSinkCtrl &)
Constructor.
Definition: mem_sink.cc:353
eventq.hh

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