gem5  v20.0.0.3
port.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011-2012,2015,2017 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) 2002-2005 The Regents of The University of Michigan
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
46 #ifndef __MEM_PORT_HH__
47 #define __MEM_PORT_HH__
48 
49 #include "base/addr_range.hh"
50 #include "mem/packet.hh"
51 #include "mem/protocol/atomic.hh"
53 #include "mem/protocol/timing.hh"
54 #include "sim/port.hh"
55 
56 class SimObject;
57 
59 class SlavePort;
60 
71 class MasterPort : public Port, public AtomicRequestProtocol,
73 {
74  friend class SlavePort;
75 
76  private:
78 
79  protected:
81 
82  public:
83  MasterPort(const std::string& name, SimObject* _owner,
85  virtual ~MasterPort();
86 
91  void bind(Port &peer) override;
92 
96  void unbind() override;
97 
107  virtual bool isSnooping() const { return false; }
108 
113 
118  void printAddr(Addr a);
119 
120  public:
121  /* The atomic protocol. */
122 
133 
145 
146  public:
147  /* The functional protocol. */
148 
156  void sendFunctional(PacketPtr pkt) const;
157 
158  public:
159  /* The timing protocol. */
160 
172  bool sendTimingReq(PacketPtr pkt);
173 
185  bool tryTiming(PacketPtr pkt) const;
186 
196  bool sendTimingSnoopResp(PacketPtr pkt);
197 
204  virtual void sendRetryResp();
205 
206  protected:
214  virtual void recvRangeChange() { }
215 
219  Tick
221  {
222  panic("%s was not expecting an atomic snoop request\n", name());
223  return 0;
224  }
225 
226  void
228  {
229  panic("%s was not expecting a functional snoop request\n", name());
230  }
231 
232  void
234  {
235  panic("%s was not expecting a timing snoop request.\n", name());
236  }
237 
238  void
240  {
241  panic("%s was not expecting a snoop retry.\n", name());
242  }
243 };
244 
254 class SlavePort : public Port, public AtomicResponseProtocol,
256 {
257  friend class MasterPort;
258 
259  private:
262 
263  protected:
265 
266  public:
267  SlavePort(const std::string& name, SimObject* _owner,
268  PortID id=InvalidPortID);
269  virtual ~SlavePort();
270 
276  bool isSnooping() const { return _masterPort->isSnooping(); }
277 
281  void
283  {
284  fatal_if(!_masterPort,
285  "%s cannot sendRangeChange() without master port.", name());
286  _masterPort->recvRangeChange();
287  }
288 
296  virtual AddrRangeList getAddrRanges() const = 0;
297 
301  void unbind() override {}
302  void bind(Port &peer) override {}
303 
304  public:
305  /* The atomic protocol. */
306 
316  Tick
318  {
319  return AtomicResponseProtocol::sendSnoop(_masterPort, pkt);
320  }
321 
322  public:
323  /* The functional protocol. */
324 
332  void
334  {
335  FunctionalResponseProtocol::sendSnoop(_masterPort, pkt);
336  }
337 
338  public:
339  /* The timing protocol. */
340 
352  bool
354  {
355  return TimingResponseProtocol::sendResp(_masterPort, pkt);
356  }
357 
365  void
367  {
368  TimingResponseProtocol::sendSnoopReq(_masterPort, pkt);
369  }
370 
375  void
377  {
379  }
380 
385  void
387  {
389  }
390 
391  protected:
396  void slaveUnbind();
397 
402  void slaveBind(MasterPort& master_port);
403 
407  Tick recvAtomicBackdoor(PacketPtr pkt, MemBackdoorPtr &backdoor) override;
408 
409  bool
410  tryTiming(PacketPtr pkt) override
411  {
412  panic("%s was not expecting a %s\n", name(), __func__);
413  }
414 
415  bool
417  {
418  panic("%s was not expecting a timing snoop response\n", name());
419  }
420 };
421 
422 inline Tick
424 {
426 }
427 
428 inline Tick
430 {
431  return AtomicRequestProtocol::sendBackdoor(_slavePort, pkt, backdoor);
432 }
433 
434 inline void
436 {
438 }
439 
440 inline bool
442 {
444 }
445 
446 inline bool
448 {
450 }
451 
452 inline bool
454 {
456 }
457 
458 inline void
460 {
462 }
463 
464 #endif //__MEM_PORT_HH__
A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
Definition: port.hh:71
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:163
virtual bool isSnooping() const
Determine if this master port is snooping or not.
Definition: port.hh:107
Ports are used to interface objects to each other.
Definition: port.hh:56
SimObject & owner
Definition: port.hh:264
bool sendSnoopResp(TimingResponseProtocol *peer, PacketPtr pkt)
Attempt to send a timing snoop response packet to it's peer by calling its corresponding receive func...
Definition: timing.cc:61
void sendRangeChange() const
Called by the owner to send a range change.
Definition: port.hh:282
virtual void recvRangeChange()
Called to receive an address range change from the peer slave port.
Definition: port.hh:214
Tick recvAtomicSnoop(PacketPtr pkt) override
Default implementations.
Definition: port.hh:220
const PortID InvalidPortID
Definition: types.hh:236
void recvFunctionalSnoop(PacketPtr pkt) override
Receive a functional snoop request packet from the peer.
Definition: port.hh:227
void sendRetryReq(TimingRequestProtocol *peer)
Send a retry to the peer that previously attempted a sendTimingReq to this protocol and failed...
Definition: timing.cc:92
bool defaultBackdoorWarned
Definition: port.hh:261
bool sendTimingSnoopResp(PacketPtr pkt)
Attempt to send a timing snoop response packet to the slave port by calling its corresponding receive...
Definition: port.hh:453
Bitfield< 8 > a
bool tryTiming(PacketPtr pkt) const
Check if the slave can handle a timing request.
Definition: port.hh:447
Tick sendAtomicSnoop(PacketPtr pkt)
Send an atomic snoop request packet, where the data is moved and the state is updated in zero time...
Definition: port.hh:317
void recvRetrySnoopResp() override
Called by the peer if sendTimingSnoopResp was called on this protocol (causing recvTimingSnoopResp to...
Definition: port.hh:239
Tick sendAtomicBackdoor(PacketPtr pkt, MemBackdoorPtr &backdoor)
Send an atomic request packet like above, but also request a backdoor to the data being accessed...
Definition: port.hh:429
void sendRetryResp(TimingResponseProtocol *peer)
Send a retry to the peer that previously attempted a sendTimingResp to this protocol and failed...
Definition: timing.cc:69
bool sendTimingReq(PacketPtr pkt)
Attempt to send a timing request to the slave port by calling its corresponding receive function...
Definition: port.hh:441
A SlavePort is a specialisation of a port.
Definition: port.hh:254
virtual void sendRetryResp()
Send a retry to the slave port that previously attempted a sendTimingResp to this master port and fai...
Definition: port.hh:459
MasterPort * _masterPort
Definition: port.hh:260
MasterPort(const std::string &name, SimObject *_owner, PortID id=InvalidPortID)
Master port.
Definition: port.cc:53
void sendSnoopReq(TimingRequestProtocol *peer, PacketPtr pkt)
Attempt to send a timing snoop request packet to the peer by calling its corresponding receive functi...
Definition: timing.cc:84
void sendRetrySnoopResp()
Send a retry to the master port that previously attempted a sendTimingSnoopResp to this slave port an...
Definition: port.hh:386
void unbind() override
We let the master port do the work, so these don&#39;t do anything.
Definition: port.hh:301
void sendFunctionalSnoop(PacketPtr pkt) const
Send a functional snoop request packet, where the data is instantly updated everywhere in the memory ...
Definition: port.hh:333
SlavePort * _slavePort
Definition: port.hh:77
bool sendTimingResp(PacketPtr pkt)
Attempt to send a timing response to the master port by calling its corresponding receive function...
Definition: port.hh:353
void sendSnoop(FunctionalRequestProtocol *peer, PacketPtr pkt) const
Send a functional snoop request packet, where the data is instantly updated everywhere in the memory ...
Definition: functional.cc:56
bool sendReq(TimingResponseProtocol *peer, PacketPtr pkt)
Attempt to send a timing request to the peer by calling its corresponding receive function...
Definition: timing.cc:46
void sendRetrySnoopResp(TimingRequestProtocol *peer)
Send a retry to the peer that previously attempted a sendTimingSnoopResp to this peer and failed...
Definition: timing.cc:98
Tick sendSnoop(AtomicRequestProtocol *peer, PacketPtr pkt)
Send an atomic snoop request packet, where the data is moved and the state is updated in zero time...
Definition: atomic.cc:65
uint64_t Tick
Tick count type.
Definition: types.hh:61
bool sendResp(TimingRequestProtocol *peer, PacketPtr pkt)
Attempt to send a timing response to the peer by calling its corresponding receive function...
Definition: timing.cc:77
SimObject & owner
Definition: port.hh:80
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Definition: logging.hh:199
void bind(Port &peer) override
Bind this master port to a slave port.
Definition: port.cc:63
bool isSnooping() const
Find out if the peer master port is snooping or not.
Definition: port.hh:276
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
void printAddr(Addr a)
Inject a PrintReq for the given address to print the state of that address throughout the memory syst...
Definition: port.cc:95
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
void recvTimingSnoopReq(PacketPtr pkt) override
Receive a timing snoop request from the peer.
Definition: port.hh:233
bool tryTiming(PacketPtr pkt) override
Availability request from the peer.
Definition: port.hh:410
Port Object Declaration.
virtual ~MasterPort()
Definition: port.cc:58
bool trySend(TimingResponseProtocol *peer, PacketPtr pkt) const
Check if the peer can handle a timing request.
Definition: timing.cc:53
void bind(Port &peer) override
Attach to a peer port.
Definition: port.hh:302
AddrRangeList getAddrRanges() const
Get the address ranges of the connected slave port.
Definition: port.cc:89
Declaration of the Packet class.
void sendRetryReq()
Send a retry to the master port that previously attempted a sendTimingReq to this slave port and fail...
Definition: port.hh:376
const std::string name() const
Return port name (for DPRINTF).
Definition: port.hh:102
void send(FunctionalResponseProtocol *peer, PacketPtr pkt) const
Send a functional request packet, where the data is instantly updated everywhere in the memory system...
Definition: functional.cc:46
void sendTimingSnoopReq(PacketPtr pkt)
Attempt to send a timing snoop request packet to the master port by calling its corresponding receive...
Definition: port.hh:366
Tick send(AtomicResponseProtocol *peer, PacketPtr pkt)
Send an atomic request packet, where the data is moved and the state is updated in zero time...
Definition: atomic.cc:48
void sendFunctional(PacketPtr pkt) const
Send a functional request packet, where the data is instantly updated everywhere in the memory system...
Definition: port.hh:435
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:235
void unbind() override
Unbind this master port and the associated slave port.
Definition: port.cc:78
bool recvTimingSnoopResp(PacketPtr pkt) override
Receive a timing snoop response from the peer.
Definition: port.hh:416
Tick sendAtomic(PacketPtr pkt)
Send an atomic request packet, where the data is moved and the state is updated in zero time...
Definition: port.hh:423
friend class SlavePort
Definition: port.hh:74
Abstract superclass for simulation objects.
Definition: sim_object.hh:93
Tick sendBackdoor(AtomicResponseProtocol *peer, PacketPtr pkt, MemBackdoorPtr &backdoor)
Send an atomic request packet like above, but also request a backdoor to the data being accessed...
Definition: atomic.cc:55

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