gem5  v19.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
serial_link.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011-2013 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  * Copyright (c) 2006 The Regents of The University of Michigan
15  * Copyright (c) 2015 The University of Bologna
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms, with or without
19  * modification, are permitted provided that the following conditions are
20  * met: redistributions of source code must retain the above copyright
21  * notice, this list of conditions and the following disclaimer;
22  * redistributions in binary form must reproduce the above copyright
23  * notice, this list of conditions and the following disclaimer in the
24  * documentation and/or other materials provided with the distribution;
25  * neither the name of the copyright holders nor the names of its
26  * contributors may be used to endorse or promote products derived from
27  * this software without specific prior written permission.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40  *
41  * Authors: Ali Saidi
42  * Steve Reinhardt
43  * Andreas Hansson
44  * Erfan Azarkhish
45  */
46 
53 #ifndef __MEM_SERIAL_LINK_HH__
54 #define __MEM_SERIAL_LINK_HH__
55 
56 #include <deque>
57 
58 #include "base/types.hh"
59 #include "mem/port.hh"
60 #include "params/SerialLink.hh"
61 #include "sim/clocked_object.hh"
62 
70 class SerialLink : public ClockedObject
71 {
72  protected:
73 
79  {
80 
81  public:
82 
83  const Tick tick;
84  const PacketPtr pkt;
85 
86  DeferredPacket(PacketPtr _pkt, Tick _tick) : tick(_tick), pkt(_pkt)
87  { }
88  };
89 
90  // Forward declaration to allow the slave port to have a pointer
92 
100  {
101 
102  private:
103 
106 
111 
113  const Cycles delay;
114 
117 
125 
127  unsigned int outstandingResponses;
128 
130  bool retryReq;
131 
133  unsigned int respQueueLimit;
134 
140  bool respQueueFull() const;
141 
147  void trySendTiming();
148 
151 
152  public:
153 
165  SerialLinkSlavePort(const std::string& _name, SerialLink&
166  _serial_link, SerialLinkMasterPort& _masterPort,
167  Cycles _delay, int _resp_limit, const
168  std::vector<AddrRange>& _ranges);
169 
177  void schedTimingResp(PacketPtr pkt, Tick when);
178 
184  void retryStalledReq();
185 
186  protected:
187 
190  bool recvTimingReq(PacketPtr pkt);
191 
194  void recvRespRetry();
195 
198  Tick recvAtomic(PacketPtr pkt);
199 
202  void recvFunctional(PacketPtr pkt);
203 
206  AddrRangeList getAddrRanges() const;
207  };
208 
209 
216  {
217 
218  private:
219 
222 
227 
229  const Cycles delay;
230 
238 
240  const unsigned int reqQueueLimit;
241 
247  void trySendTiming();
248 
251 
252  public:
253 
264  SerialLinkMasterPort(const std::string& _name, SerialLink&
265  _serial_link, SerialLinkSlavePort& _slavePort, Cycles
266  _delay, int _req_limit);
267 
273  bool reqQueueFull() const;
274 
282  void schedTimingReq(PacketPtr pkt, Tick when);
283 
292  bool trySatisfyFunctional(PacketPtr pkt);
293 
294  protected:
295 
298  bool recvTimingResp(PacketPtr pkt);
299 
302  void recvReqRetry();
303  };
304 
307 
310 
312  unsigned num_lanes;
313 
315  uint64_t link_speed;
316 
317  public:
318 
319  Port &getPort(const std::string &if_name,
320  PortID idx=InvalidPortID);
321 
322  virtual void init();
323 
324  typedef SerialLinkParams Params;
325 
326  SerialLink(SerialLinkParams *p);
327 };
328 
329 #endif //__MEM_SERIAL_LINK_HH__
A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
Definition: port.hh:75
Ports are used to interface objects to each other.
Definition: port.hh:60
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:83
const PortID InvalidPortID
Definition: types.hh:238
A SlavePort is a specialisation of a port.
Definition: port.hh:258
uint64_t Tick
Tick count type.
Definition: types.hh:63
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
ClockedObject declaration and implementation.
Port Object Declaration.
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:255
STL deque class.
Definition: stl.hh:47
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:237
Bitfield< 0 > p

Generated on Fri Feb 28 2020 16:27:02 for gem5 by doxygen 1.8.13