gem5  v21.1.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
token_port.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016-2020 Advanced Micro Devices, Inc.
3  * All rights reserved.
4  *
5  * For use for simulation and test purposes only
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions are met:
9  *
10  * 1. Redistributions of source code must retain the above copyright notice,
11  * this list of conditions and the following disclaimer.
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright notice,
14  * this list of conditions and the following disclaimer in the documentation
15  * and/or other materials provided with the distribution.
16  *
17  * 3. Neither the name of the copyright holder nor the names of its
18  * contributors may be used to endorse or promote products derived from this
19  * software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
25  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31  * POSSIBILITY OF SUCH DAMAGE.
32  */
33 
34 #ifndef __MEM_TOKEN_PORT_HH__
35 #define __MEM_TOKEN_PORT_HH__
36 
37 #include "mem/port.hh"
38 #include "sim/clocked_object.hh"
39 
40 namespace gem5
41 {
42 
43 class TokenManager;
44 class TokenResponsePort;
45 
47 {
48  private:
49  /* Manager to track tokens between this token port pair. */
51 
52  public:
53  TokenRequestPort(const std::string& name, SimObject* owner,
54  PortID id = InvalidPortID) :
55  RequestPort(name, owner, id), tokenManager(nullptr)
56  { }
57 
62  void bind(Port &peer) override;
63 
67  void unbind() override {}
68 
73  void recvTokens(int num_tokens);
74 
78  bool haveTokens(int num_tokens);
79 
84  void acquireTokens(int num_tokens);
85 
90  void setTokenManager(TokenManager *_tokenManager);
91 };
92 
94 {
95  private:
97 
99 
100  void recvRespRetry() override;
101 
102  public:
104  PortID id = InvalidPortID) :
106  { }
108 
114  void bind(Port &peer) override;
115 
119  void unbind() override;
120 
124  void sendTokens(int num_tokens);
125 
126  bool sendTimingResp(PacketPtr pkt);
127 
128  /* There is no storage here so the packet will not be found. */
129  bool trySatisfyFunctional(PacketPtr) { return false; }
130 };
131 
133 {
134  protected:
135  /* Maximum tokens possible */
137 
138  /* Number of currently available tokens */
140 
141  public:
142  TokenManager(int init_tokens);
144 
148  int getMaxTokenCount() const;
149 
153  void recvTokens(int num_tokens);
154 
158  bool haveTokens(int num_tokens);
159 
163  void acquireTokens(int num_tokens);
164 };
165 
166 } // namespace gem5
167 
168 #endif
gem5::PortID
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:252
gem5::TokenResponsePort::TokenResponsePort
TokenResponsePort(const std::string &name, ClockedObject *owner, PortID id=InvalidPortID)
Definition: token_port.hh:103
gem5::TokenRequestPort::tokenManager
TokenManager * tokenManager
Definition: token_port.hh:50
gem5::Port::name
const std::string name() const
Return port name (for DPRINTF).
Definition: port.hh:111
gem5::TokenManager::haveTokens
bool haveTokens(int num_tokens)
Query is num_tokens tokens are available.
Definition: token_port.cc:169
gem5::TokenManager::~TokenManager
~TokenManager()
Definition: token_port.hh:143
gem5::TokenManager
Definition: token_port.hh:132
gem5::Port::id
const PortID id
A numeric identifier to distinguish ports in a vector, and set to InvalidPortID in case this port is ...
Definition: port.hh:79
gem5::TokenManager::availableTokens
int availableTokens
Definition: token_port.hh:139
gem5::TokenRequestPort::recvTokens
void recvTokens(int num_tokens)
Receive tokens returned by the response port.
Definition: token_port.cc:50
gem5::TokenRequestPort::bind
void bind(Port &peer) override
Bind this request port to response port.
Definition: token_port.cc:44
gem5::InvalidPortID
const PortID InvalidPortID
Definition: types.hh:253
gem5::TokenManager::maxTokens
int maxTokens
Definition: token_port.hh:136
gem5::TokenResponsePort::unbind
void unbind() override
Unbind this response port and associated request port.
Definition: token_port.cc:111
gem5::TokenRequestPort::setTokenManager
void setTokenManager(TokenManager *_tokenManager)
Specify a token manger, which will handle tracking of tokens for a TokenRequestPort/ResponseRequestPo...
Definition: token_port.cc:74
gem5::RequestPort
A RequestPort is a specialisation of a Port, which implements the default protocol for the three diff...
Definition: port.hh:77
gem5::TokenRequestPort::haveTokens
bool haveTokens(int num_tokens)
Query if there are at least num_tokens tokens available to acquire.
Definition: token_port.cc:58
gem5::TokenResponsePort::respQueue
std::deque< PacketPtr > respQueue
Definition: token_port.hh:98
gem5::TokenManager::TokenManager
TokenManager(int init_tokens)
Definition: token_port.cc:144
gem5::Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:283
gem5::TokenResponsePort::recvRespRetry
void recvRespRetry() override
Called by the peer if sendTimingResp was called on this protocol (causing recvTimingResp to be called...
Definition: token_port.cc:118
port.hh
gem5::TokenRequestPort::acquireTokens
void acquireTokens(int num_tokens)
Acquire tokens by decrementing the number of available tokens across the port.
Definition: token_port.cc:66
gem5::TokenResponsePort::trySatisfyFunctional
bool trySatisfyFunctional(PacketPtr)
Definition: token_port.hh:129
gem5::SimObject
Abstract superclass for simulation objects.
Definition: sim_object.hh:146
gem5::ClockedObject
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
Definition: clocked_object.hh:234
gem5::TokenResponsePort::~TokenResponsePort
~TokenResponsePort()
Definition: token_port.hh:107
gem5::ResponsePort
A ResponsePort is a specialization of a port.
Definition: port.hh:268
gem5::ResponsePort::owner
SimObject & owner
Definition: port.hh:279
gem5::Port
Ports are used to interface objects to each other.
Definition: port.hh:61
gem5::TokenResponsePort::sendTokens
void sendTokens(int num_tokens)
Return num_tokens tokens back to the request port.
Definition: token_port.cc:80
clocked_object.hh
std::deque
STL deque class.
Definition: stl.hh:44
gem5::TokenResponsePort::bind
void bind(Port &peer) override
Bind this response port to a request port.
Definition: token_port.cc:89
gem5::TokenManager::recvTokens
void recvTokens(int num_tokens)
Increment the number of available tokens by num_tokens.
Definition: token_port.cc:157
gem5::TokenManager::getMaxTokenCount
int getMaxTokenCount() const
Return the maximum possible tokens.
Definition: token_port.cc:151
gem5::TokenResponsePort::sendTimingResp
bool sendTimingResp(PacketPtr pkt)
Definition: token_port.cc:133
gem5::RequestPort::owner
SimObject & owner
Definition: port.hh:86
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: decoder.cc:40
gem5::TokenResponsePort
Definition: token_port.hh:93
gem5::TokenResponsePort::tokenRequestPort
TokenRequestPort * tokenRequestPort
Definition: token_port.hh:96
gem5::TokenManager::acquireTokens
void acquireTokens(int num_tokens)
Decrement the number of available tokens by num_tokens.
Definition: token_port.cc:175
gem5::TokenRequestPort::TokenRequestPort
TokenRequestPort(const std::string &name, SimObject *owner, PortID id=InvalidPortID)
Definition: token_port.hh:53
gem5::TokenRequestPort
Definition: token_port.hh:46
gem5::TokenRequestPort::unbind
void unbind() override
Unbind port.
Definition: token_port.hh:67

Generated on Wed Jul 28 2021 12:10:29 for gem5 by doxygen 1.8.17