gem5  v22.1.0.0
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 
48 #ifndef __MEM_SERIAL_LINK_HH__
49 #define __MEM_SERIAL_LINK_HH__
50 
51 #include <deque>
52 
53 #include "base/types.hh"
54 #include "mem/port.hh"
55 #include "params/SerialLink.hh"
56 #include "sim/clocked_object.hh"
57 
58 namespace gem5
59 {
60 
68 class SerialLink : public ClockedObject
69 {
70  protected:
71 
77  {
78 
79  public:
80 
81  const Tick tick;
82  const PacketPtr pkt;
83 
84  DeferredPacket(PacketPtr _pkt, Tick _tick) : tick(_tick), pkt(_pkt)
85  { }
86  };
87 
88  // Forward declaration to allow the CPU-side port to have a pointer
89  class SerialLinkRequestPort;
90 
98  {
99 
100  private:
101 
104 
109 
111  const Cycles delay;
112 
115 
123 
125  unsigned int outstandingResponses;
126 
128  bool retryReq;
129 
131  unsigned int respQueueLimit;
132 
138  bool respQueueFull() const;
139 
145  void trySendTiming();
146 
149 
150  public:
151 
163  SerialLinkResponsePort(const std::string& _name, SerialLink&
164  _serial_link, SerialLinkRequestPort& _mem_side_port,
165  Cycles _delay, int _resp_limit, const
166  std::vector<AddrRange>& _ranges);
167 
175  void schedTimingResp(PacketPtr pkt, Tick when);
176 
182  void retryStalledReq();
183 
184  protected:
185 
188  bool recvTimingReq(PacketPtr pkt);
189 
192  void recvRespRetry();
193 
197 
200  void recvFunctional(PacketPtr pkt);
201 
205  };
206 
207 
214  {
215 
216  private:
217 
220 
226 
228  const Cycles delay;
229 
237 
239  const unsigned int reqQueueLimit;
240 
246  void trySendTiming();
247 
250 
251  public:
252 
263  SerialLinkRequestPort(const std::string& _name, SerialLink&
264  _serial_link, SerialLinkResponsePort& _cpu_side_port,
265  Cycles _delay, int _req_limit);
266 
272  bool reqQueueFull() const;
273 
281  void schedTimingReq(PacketPtr pkt, Tick when);
282 
292 
293  protected:
294 
297  bool recvTimingResp(PacketPtr pkt);
298 
301  void recvReqRetry();
302  };
303 
306 
309 
311  unsigned num_lanes;
312 
314  uint64_t link_speed;
315 
316  public:
317 
318  Port &getPort(const std::string &if_name,
319  PortID idx=InvalidPortID);
320 
321  virtual void init();
322 
323  typedef SerialLinkParams Params;
324 
325  SerialLink(const SerialLinkParams &p);
326 };
327 
328 } // namespace gem5
329 
330 #endif //__MEM_SERIAL_LINK_HH__
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,...
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:79
const std::string _name
Definition: named.hh:41
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:294
Ports are used to interface objects to each other.
Definition: port.hh:62
A RequestPort is a specialisation of a Port, which implements the default protocol for the three diff...
Definition: port.hh:79
A ResponsePort is a specialization of a port.
Definition: port.hh:270
STL deque class.
Definition: stl.hh:44
STL vector class.
Definition: stl.hh:37
ClockedObject declaration and implementation.
Port Object Declaration.
Bitfield< 54 > p
Definition: pagetable.hh:70
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
const PortID InvalidPortID
Definition: types.hh:246
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:245
uint64_t Tick
Tick count type.
Definition: types.hh:58

Generated on Wed Dec 21 2022 10:22:39 for gem5 by doxygen 1.9.1