gem5  v20.0.0.3
OutputUnit.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2020 Inria
3  * Copyright (c) 2016 Georgia Institute of Technology
4  * Copyright (c) 2008 Princeton University
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions are
9  * met: redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer;
11  * redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in the
13  * documentation and/or other materials provided with the distribution;
14  * neither the name of the copyright holders nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30 
31 
33 
34 #include "debug/RubyNetwork.hh"
39 
40 OutputUnit::OutputUnit(int id, PortDirection direction, Router *router)
41  : Consumer(router), m_router(router), m_id(id), m_direction(direction),
42  m_vc_per_vnet(m_router->get_vc_per_vnet())
43 {
44  const int m_num_vcs = m_router->get_num_vcs();
45  outVcState.reserve(m_num_vcs);
46  for (int i = 0; i < m_num_vcs; i++) {
47  outVcState.emplace_back(i, m_router->get_net_ptr());
48  }
49 }
50 
51 void
53 {
54  DPRINTF(RubyNetwork, "Router %d OutputUnit %d decrementing credit for "
55  "outvc %d at time: %lld\n",
56  m_router->get_id(), m_id, out_vc, m_router->curCycle());
57 
58  outVcState[out_vc].decrement_credit();
59 }
60 
61 void
63 {
64  DPRINTF(RubyNetwork, "Router %d OutputUnit %d incrementing credit for "
65  "outvc %d at time: %lld\n",
66  m_router->get_id(), m_id, out_vc, m_router->curCycle());
67 
68  outVcState[out_vc].increment_credit();
69 }
70 
71 // Check if the output VC (i.e., input VC at next router)
72 // has free credits (i..e, buffer slots).
73 // This is tracked by OutVcState
74 bool
76 {
77  assert(outVcState[out_vc].isInState(ACTIVE_, m_router->curCycle()));
78  return outVcState[out_vc].has_credit();
79 }
80 
81 
82 // Check if the output port (i.e., input port at next router) has free VCs.
83 bool
85 {
86  int vc_base = vnet*m_vc_per_vnet;
87  for (int vc = vc_base; vc < vc_base + m_vc_per_vnet; vc++) {
88  if (is_vc_idle(vc, m_router->curCycle()))
89  return true;
90  }
91 
92  return false;
93 }
94 
95 // Assign a free output VC to the winner of Switch Allocation
96 int
98 {
99  int vc_base = vnet*m_vc_per_vnet;
100  for (int vc = vc_base; vc < vc_base + m_vc_per_vnet; vc++) {
101  if (is_vc_idle(vc, m_router->curCycle())) {
102  outVcState[vc].setState(ACTIVE_, m_router->curCycle());
103  return vc;
104  }
105  }
106 
107  return -1;
108 }
109 
110 /*
111  * The wakeup function of the OutputUnit reads the credit signal from the
112  * downstream router for the output VC (i.e., input VC at downstream router).
113  * It increments the credit count in the appropriate output VC state.
114  * If the credit carries is_free_signal as true,
115  * the output VC is marked IDLE.
116  */
117 
118 void
120 {
122  Credit *t_credit = (Credit*) m_credit_link->consumeLink();
123  increment_credit(t_credit->get_vc());
124 
125  if (t_credit->is_free_signal())
126  set_vc_state(IDLE_, t_credit->get_vc(), m_router->curCycle());
127 
128  delete t_credit;
129  }
130 }
131 
132 flitBuffer*
134 {
135  return &outBuffer;
136 }
137 
138 void
140 {
141  m_out_link = link;
142 }
143 
144 void
146 {
147  m_credit_link = credit_link;
148 }
149 
150 void
152 {
153  outBuffer.insert(t_flit);
155 }
156 
157 uint32_t
159 {
160  return outBuffer.functionalWrite(pkt);
161 }
#define DPRINTF(x,...)
Definition: trace.hh:225
void wakeup()
Definition: OutputUnit.cc:119
void set_out_link(NetworkLink *link)
Definition: OutputUnit.cc:139
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:81
int get_vc()
Definition: flit.hh:55
int m_vc_per_vnet
Definition: OutputUnit.hh:97
Bitfield< 7 > i
void decrement_credit(int out_vc)
Definition: OutputUnit.cc:52
CreditLink * m_credit_link
Definition: OutputUnit.hh:99
flitBuffer * getOutQueue()
Definition: OutputUnit.cc:133
flitBuffer outBuffer
Definition: OutputUnit.hh:102
void scheduleEventAbsolute(Tick timeAbs)
Definition: Consumer.cc:40
int get_id()
Definition: Router.hh:80
Definition: flit.hh:41
bool has_credit(int out_vc)
Definition: OutputUnit.cc:75
NetworkLink * m_out_link
Definition: OutputUnit.hh:98
std::vector< OutVcState > outVcState
Definition: OutputUnit.hh:104
std::string PortDirection
Definition: Topology.hh:55
GarnetNetwork * get_net_ptr()
Definition: Router.hh:87
Cycles curCycle() const
Determine the current cycle, corresponding to a tick aligned to a clock edge.
Definition: Credit.hh:45
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
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...
void set_credit_link(CreditLink *credit_link)
Definition: OutputUnit.cc:145
bool has_free_vc(int vnet)
Definition: OutputUnit.cc:84
Definition: Router.hh:56
int get_num_vcs()
Definition: Router.hh:75
int M5_CLASS_VAR_USED m_id
Definition: OutputUnit.hh:95
bool is_free_signal()
Definition: Credit.hh:51
void increment_credit(int out_vc)
Definition: OutputUnit.cc:62
Router * m_router
Definition: OutputUnit.hh:94
OutputUnit(int id, PortDirection direction, Router *router)
Definition: OutputUnit.cc:40
bool is_vc_idle(int vc, Cycles curTime)
Definition: OutputUnit.hh:84
uint32_t functionalWrite(Packet *pkt)
Definition: OutputUnit.cc:158
void set_vc_state(VC_state_type state, int vc, Cycles curTime)
Definition: OutputUnit.hh:78
void insert(flit *flt)
Definition: flitBuffer.hh:70
int select_free_vc(int vnet)
Definition: OutputUnit.cc:97
void insert_flit(flit *t_flit)
Definition: OutputUnit.cc:151
uint32_t functionalWrite(Packet *pkt)
Definition: flitBuffer.cc:79

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