gem5  v20.0.0.3
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 class TokenManager;
41 class TokenSlavePort;
42 
44 {
45  private:
46  /* Manager to track tokens between this token port pair. */
48 
49  public:
50  TokenMasterPort(const std::string& name, SimObject* owner,
51  PortID id = InvalidPortID) :
52  MasterPort(name, owner, id), tokenManager(nullptr)
53  { }
54 
59  void bind(Port &peer) override;
60 
64  void unbind() override {}
65 
70  void recvTokens(int num_tokens);
71 
75  bool haveTokens(int num_tokens);
76 
81  void acquireTokens(int num_tokens);
82 
87  void setTokenManager(TokenManager *_tokenManager);
88 };
89 
90 class TokenSlavePort : public SlavePort
91 {
92  private:
94 
96 
97  void recvRespRetry() override;
98 
99  public:
100  TokenSlavePort(const std::string& name, ClockedObject *owner,
101  PortID id = InvalidPortID) :
102  SlavePort(name, owner, id), tokenMasterPort(nullptr)
103  { }
105 
111  void bind(Port &peer) override;
112 
116  void unbind() override;
117 
121  void sendTokens(int num_tokens);
122 
123  bool sendTimingResp(PacketPtr pkt);
124 
125  /* There is no storage here so the packet will not be found. */
126  bool trySatisfyFunctional(PacketPtr) { return false; }
127 };
128 
130 {
131  protected:
132  /* Maximum tokens possible */
134 
135  /* Number of currently available tokens */
137 
138  public:
139  TokenManager(int init_tokens);
141 
145  int getMaxTokenCount() const;
146 
150  void recvTokens(int num_tokens);
151 
155  bool haveTokens(int num_tokens);
156 
160  void acquireTokens(int num_tokens);
161 };
162 
163 #endif
A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
Definition: port.hh:71
Ports are used to interface objects to each other.
Definition: port.hh:56
const PortID InvalidPortID
Definition: types.hh:236
TokenManager * tokenManager
Definition: token_port.hh:47
void bind(Port &peer) override
Bind this master port to slave port.
Definition: token_port.cc:43
A SlavePort is a specialisation of a port.
Definition: port.hh:254
void setTokenManager(TokenManager *_tokenManager)
Specify a token manger, which will handle tracking of tokens for a TokenMasterPort/SlaveMasterPort pa...
Definition: token_port.cc:73
TokenMasterPort * tokenMasterPort
Definition: token_port.hh:93
TokenMasterPort(const std::string &name, SimObject *owner, PortID id=InvalidPortID)
Definition: token_port.hh:50
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
ClockedObject declaration and implementation.
SimObject & owner
Definition: port.hh:80
void unbind() override
Unbind port.
Definition: token_port.hh:64
Port Object Declaration.
void recvTokens(int num_tokens)
Receive tokens returned by the slave port.
Definition: token_port.cc:49
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
STL deque class.
Definition: stl.hh:44
std::deque< PacketPtr > respQueue
Definition: token_port.hh:95
const PortID id
A numeric identifier to distinguish ports in a vector, and set to InvalidPortID in case this port is ...
Definition: port.hh:70
bool trySatisfyFunctional(PacketPtr)
Definition: token_port.hh:126
const std::string name() const
Return port name (for DPRINTF).
Definition: port.hh:102
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:235
TokenSlavePort(const std::string &name, ClockedObject *owner, PortID id=InvalidPortID)
Definition: token_port.hh:100
void acquireTokens(int num_tokens)
Acquire tokens by decrementing the number of available tokens across the port.
Definition: token_port.cc:65
Abstract superclass for simulation objects.
Definition: sim_object.hh:93
bool haveTokens(int num_tokens)
Query if there are at least num_tokens tokens available to acquire.
Definition: token_port.cc:57
int availableTokens
Definition: token_port.hh:136

Generated on Fri Jul 3 2020 15:53:04 for gem5 by doxygen 1.8.13