gem5  v20.0.0.3
RubyPort.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012-2013,2019 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) 2009-2013 Advanced Micro Devices, Inc.
15  * Copyright (c) 2011 Mark D. Hill and David A. Wood
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 
42 #ifndef __MEM_RUBY_SYSTEM_RUBYPORT_HH__
43 #define __MEM_RUBY_SYSTEM_RUBYPORT_HH__
44 
45 #include <cassert>
46 #include <string>
47 
50 #include "mem/ruby/protocol/RequestStatus.hh"
52 #include "mem/tport.hh"
53 #include "params/RubyPort.hh"
54 #include "sim/clocked_object.hh"
55 
56 class AbstractController;
57 
58 class RubyPort : public ClockedObject
59 {
60  public:
62  {
63  private:
66 
67  public:
68  MemMasterPort(const std::string &_name, RubyPort *_port);
69 
70  protected:
71  bool recvTimingResp(PacketPtr pkt);
72  void recvRangeChange() {}
73  };
74 
76  {
77  private:
81 
82  public:
83  MemSlavePort(const std::string &_name, RubyPort *_port,
84  bool _access_backing_store,
85  PortID id, bool _no_retry_on_stall);
86  void hitCallback(PacketPtr pkt);
87  void evictionCallback(Addr address);
88 
89  protected:
90  bool recvTimingReq(PacketPtr pkt);
91 
92  Tick recvAtomic(PacketPtr pkt);
93 
94  void recvFunctional(PacketPtr pkt);
95 
97  { AddrRangeList ranges; return ranges; }
98 
99  void addToRetryList();
100 
101  private:
102  bool isPhysMemAddress(Addr addr) const;
103  };
104 
106  {
107  private:
110 
111  public:
112  PioMasterPort(const std::string &_name, RubyPort *_port);
113 
114  protected:
115  bool recvTimingResp(PacketPtr pkt);
116  void recvRangeChange();
117  };
118 
120  {
121  private:
123 
124  public:
125  PioSlavePort(const std::string &_name, RubyPort *_port);
126 
127  protected:
128  bool recvTimingReq(PacketPtr pkt);
129 
130  Tick recvAtomic(PacketPtr pkt);
131 
133  { panic("recvFunctional should never be called on pio slave port!"); }
134 
136  };
137 
139  {
141  SenderState(MemSlavePort * _port) : port(_port)
142  {}
143  };
144 
145  typedef RubyPortParams Params;
146  RubyPort(const Params *p);
147  virtual ~RubyPort() {}
148 
149  void init() override;
150 
151  Port &getPort(const std::string &if_name,
152  PortID idx=InvalidPortID) override;
153 
154  virtual RequestStatus makeRequest(PacketPtr pkt) = 0;
155  virtual int outstandingCount() const = 0;
156  virtual bool isDeadlockEventScheduled() const = 0;
157  virtual void descheduleDeadlockEvent() = 0;
158 
159  //
160  // Called by the controller to give the sequencer a pointer.
161  // A pointer to the controller is needed for atomic support.
162  //
163  void setController(AbstractController* _cntrl) { m_controller = _cntrl; }
164  uint32_t getId() { return m_version; }
165  DrainState drain() override;
166 
167  bool isCPUSequencer() { return m_isCPUSequencer; }
168 
169  virtual int functionalWrite(Packet *func_pkt);
170 
171  protected:
172  void trySendRetries();
173  void ruby_hit_callback(PacketPtr pkt);
174  void testDrainComplete();
175  void ruby_eviction_callback(Addr address);
176 
185  bool recvTimingResp(PacketPtr pkt, PortID master_port_id);
186 
188  uint32_t m_version;
193 
195 
196  private:
198  {
199  return (std::find(retryList.begin(), retryList.end(), port) !=
200  retryList.end());
201  }
203  {
204  if (onRetryList(port)) return;
205  retryList.push_back(port);
206  }
207 
212  unsigned int gotAddrRanges;
213 
217 
218  //
219  // Based on similar code in the M5 bus. Stores pointers to those ports
220  // that should be called when the Sequencer becomes available after a stall.
221  //
223 
225 };
226 
227 #endif // __MEM_RUBY_SYSTEM_RUBYPORT_HH__
std::vector< MemSlavePort * > slave_ports
Definition: RubyPort.hh:194
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:163
Ports are used to interface objects to each other.
Definition: port.hh:56
void recvRangeChange()
Called to receive an address range change from the peer slave port.
Definition: RubyPort.hh:72
void setController(AbstractController *_cntrl)
Definition: RubyPort.hh:163
const PortID InvalidPortID
Definition: types.hh:236
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: RubyPort.cc:84
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
Definition: RubyPort.cc:91
AbstractController * m_controller
Definition: RubyPort.hh:189
std::vector< MemSlavePort * > retryList
Definition: RubyPort.hh:222
bool recvTimingResp(PacketPtr pkt)
Receive a timing response from the peer.
Definition: RubyPort.cc:168
The QueuedMasterPort combines two queues, a request queue and a snoop response queue, that both share the same port.
Definition: qport.hh:106
ip6_addr_t addr
Definition: inet.hh:330
void trySendRetries()
Definition: RubyPort.cc:449
virtual int outstandingCount() const =0
SnoopRespPacketQueue snoopRespQueue
Definition: RubyPort.hh:65
Definition: system.hh:72
SenderState(MemSlavePort *_port)
Definition: RubyPort.hh:141
A queued port is a port that has an infinite queue for outgoing packets and thus decouples the module...
Definition: qport.hh:58
ReqPacketQueue reqQueue
Definition: RubyPort.hh:64
RubySystem * m_ruby_system
Definition: RubyPort.hh:187
RubyPortParams Params
Definition: RubyPort.hh:145
DrainState
Object drain/handover states.
Definition: drain.hh:71
STL vector class.
Definition: stl.hh:37
virtual RequestStatus makeRequest(PacketPtr pkt)=0
bool isCPUSequencer()
Definition: RubyPort.hh:167
Declaration of SimpleTimingPort.
bool onRetryList(MemSlavePort *port)
Definition: RubyPort.hh:197
void ruby_eviction_callback(Addr address)
Definition: RubyPort.cc:598
void addToRetryList(MemSlavePort *port)
Definition: RubyPort.hh:202
PioSlavePort pioSlavePort
Definition: RubyPort.hh:209
MemMasterPort(const std::string &_name, RubyPort *_port)
Definition: RubyPort.cc:138
ReqPacketQueue reqQueue
Definition: RubyPort.hh:108
uint32_t getId()
Definition: RubyPort.hh:164
uint64_t Tick
Tick count type.
Definition: types.hh:61
System * system
Definition: RubyPort.hh:192
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
unsigned int gotAddrRanges
Definition: RubyPort.hh:212
uint32_t m_version
Definition: RubyPort.hh:188
RespPacketQueue queue
Definition: RubyPort.hh:122
ClockedObject declaration and implementation.
virtual bool isDeadlockEventScheduled() const =0
bool m_usingRubyTester
Definition: RubyPort.hh:191
virtual void descheduleDeadlockEvent()=0
void ruby_hit_callback(PacketPtr pkt)
Definition: RubyPort.cc:426
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
SnoopRespPacketQueue snoopRespQueue
Definition: RubyPort.hh:109
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
A virtual base opaque structure used to hold state associated with the packet (e.g., an MSHR), specific to a SimObject that sees the packet.
Definition: packet.hh:397
AddrRangeList getAddrRanges() const
Get a list of the non-overlapping address ranges the owner is responsible for.
Definition: RubyPort.hh:96
PioMasterPort pioMasterPort
Definition: RubyPort.hh:208
MessageBuffer * m_mandatory_q_ptr
Definition: RubyPort.hh:190
bool m_isCPUSequencer
Definition: RubyPort.hh:224
void testDrainComplete()
Definition: RubyPort.cc:475
AddrRangeList getAddrRanges() const
Get the address ranges of the connected slave port.
Definition: port.cc:89
RubyPort(const Params *p)
Definition: RubyPort.cc:54
void recvFunctional(PacketPtr pkt)
Receive a functional request packet from the peer.
Definition: RubyPort.hh:132
virtual ~RubyPort()
Definition: RubyPort.hh:147
MemMasterPort memMasterPort
Definition: RubyPort.hh:210
std::vector< PioMasterPort * > master_ports
Definition: RubyPort.hh:216
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:235
virtual int functionalWrite(Packet *func_pkt)
Definition: RubyPort.cc:632
MemSlavePort memSlavePort
Definition: RubyPort.hh:211
RespPacketQueue queue
Definition: RubyPort.hh:78
Bitfield< 0 > p
std::vector< MemSlavePort * >::iterator CpuPortIter
Vector of M5 Ports attached to this Ruby port.
Definition: RubyPort.hh:215
DrainState drain() override
Notify an object that it needs to drain its state.
Definition: RubyPort.cc:489
MemSlavePort * port
Definition: RubyPort.hh:140

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