40 #include "debug/TokenPort.hh" 81 fatal_if(!tokenMasterPort,
"Tried sendTokens to non-token master!\n");
84 tokenMasterPort->recvTokens(num_tokens);
94 auto *master_port =
dynamic_cast<MasterPort*
>(&peer);
95 if (!token_master_port && !master_port) {
96 fatal(
"Attempt to bind port %s to unsupported slave port %s.",
98 }
else if (token_master_port) {
100 tokenMasterPort = token_master_port;
103 tokenMasterPort->bind(*
this);
104 }
else if (master_port) {
105 tokenMasterPort =
nullptr;
113 tokenMasterPort =
nullptr;
121 "Attempted to retry a response when no retry was queued!\n");
127 respQueue.pop_front();
137 respQueue.push_back(pkt);
145 availableTokens = init_tokens;
146 maxTokens = init_tokens;
158 availableTokens += num_tokens;
160 DPRINTF(TokenPort,
"Received %d tokens, have %d\n",
161 num_tokens, availableTokens);
163 panic_if(availableTokens > maxTokens,
164 "More tokens available than the maximum after recvTokens!\n");
170 return (availableTokens >= num_tokens);
177 "Attempted to acquire more tokens than are available!\n");
179 availableTokens -= num_tokens;
181 DPRINTF(TokenPort,
"Acquired %d tokens, have %d\n",
182 num_tokens, availableTokens);
A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
Ports are used to interface objects to each other.
int getMaxTokenCount() const
Return the maximum possible tokens.
#define fatal(...)
This implements a cprintf based fatal() function.
void slaveUnbind()
Called by the master port to unbind.
TokenManager * tokenManager
TokenManager(int init_tokens)
void bind(Port &peer) override
Bind this master port to slave port.
void recvRespRetry() override
Called by the peer if sendTimingResp was called on this protocol (causing recvTimingResp to be called...
void recvTokens(int num_tokens)
Increment the number of available tokens by num_tokens.
void setTokenManager(TokenManager *_tokenManager)
Specify a token manger, which will handle tracking of tokens for a TokenMasterPort/SlaveMasterPort pa...
bool sendTimingResp(PacketPtr pkt)
Attempt to send a timing response to the master port by calling its corresponding receive function...
void bind(Port &peer) override
Bind this slave port to a master port.
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
void bind(Port &peer) override
Bind this master port to a slave port.
void recvTokens(int num_tokens)
Receive tokens returned by the slave port.
void acquireTokens(int num_tokens)
Decrement the number of available tokens by num_tokens.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
void sendTokens(int num_tokens)
Return num_tokens tokens back to the master port.
bool haveTokens(int num_tokens)
Query is num_tokens tokens are available.
const std::string name() const
Return port name (for DPRINTF).
bool sendTimingResp(PacketPtr pkt)
void acquireTokens(int num_tokens)
Acquire tokens by decrementing the number of available tokens across the port.
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
void unbind() override
Unbind this slave port and associated master port.
bool haveTokens(int num_tokens)
Query if there are at least num_tokens tokens available to acquire.