gem5  v20.1.0.0
port.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 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 
45 #include "mem/port.hh"
46 
47 #include "base/trace.hh"
48 #include "sim/sim_object.hh"
49 
50 namespace
51 {
52 
53 class DefaultRequestPort : public RequestPort
54 {
55  protected:
56  [[noreturn]] void
57  blowUp() const
58  {
59  throw UnboundPortException();
60  }
61 
62  public:
63  DefaultRequestPort() : RequestPort("default_request_port", nullptr) {}
64 
65  // Atomic protocol.
66  Tick recvAtomicSnoop(PacketPtr) override { blowUp(); }
67 
68  // Timing protocol.
69  bool recvTimingResp(PacketPtr) override { blowUp(); }
70  void recvTimingSnoopReq(PacketPtr) override { blowUp(); }
71  void recvReqRetry() override { blowUp(); }
72  void recvRetrySnoopResp() override { blowUp(); }
73 
74  // Functional protocol.
75  void recvFunctionalSnoop(PacketPtr) override { blowUp(); }
76 };
77 
78 class DefaultResponsePort : public ResponsePort
79 {
80  protected:
81  [[noreturn]] void
82  blowUp() const
83  {
84  throw UnboundPortException();
85  }
86 
87  public:
88  DefaultResponsePort() : ResponsePort("default_response_port", nullptr) {}
89 
90  // Atomic protocol.
91  Tick recvAtomic(PacketPtr) override { blowUp(); }
92 
93  // Timing protocol.
94  bool recvTimingReq(PacketPtr) override { blowUp(); }
95  bool tryTiming(PacketPtr) override { blowUp(); }
96  bool recvTimingSnoopResp(PacketPtr) override { blowUp(); }
97  void recvRespRetry() override { blowUp(); }
98 
99  // Functional protocol.
100  void recvFunctional(PacketPtr) override { blowUp(); }
101 
102  // General.
103  AddrRangeList getAddrRanges() const override { return AddrRangeList(); }
104 };
105 
106 DefaultRequestPort defaultRequestPort;
107 DefaultResponsePort defaultResponsePort;
108 
109 } // anonymous namespace
110 
114 RequestPort::RequestPort(const std::string& name, SimObject* _owner,
115  PortID _id) : Port(name, _id), _responsePort(&defaultResponsePort),
116  owner(*_owner)
117 {
118 }
119 
121 {
122 }
123 
124 void
126 {
127  auto *response_port = dynamic_cast<ResponsePort *>(&peer);
128  fatal_if(!response_port, "Can't bind port %s to non-response port %s.",
129  name(), peer.name());
130  // request port keeps track of the response port
131  _responsePort = response_port;
132  Port::bind(peer);
133  // response port also keeps track of request port
135 }
136 
137 void
139 {
140  panic_if(!isConnected(), "Can't unbind request port %s which is "
141  "not bound.", name());
143  _responsePort = &defaultResponsePort;
144  Port::unbind();
145 }
146 
149 {
150  return _responsePort->getAddrRanges();
151 }
152 
153 void
155 {
156  auto req = std::make_shared<Request>(
157  a, 1, 0, Request::funcRequestorId);
158 
159  Packet pkt(req, MemCmd::PrintReq);
160  Packet::PrintReqState prs(std::cerr);
161  pkt.senderState = &prs;
162 
163  sendFunctional(&pkt);
164 }
165 
169 ResponsePort::ResponsePort(const std::string& name, SimObject* _owner,
170  PortID id) : Port(name, id), _requestPort(&defaultRequestPort),
171  defaultBackdoorWarned(false), owner(*_owner)
172 {
173 }
174 
176 {
177 }
178 
179 void
181 {
182  _requestPort = &defaultRequestPort;
183  Port::unbind();
184 }
185 
186 void
188 {
189  _requestPort = &request_port;
190  Port::bind(request_port);
191 }
192 
193 Tick
195 {
196  if (!defaultBackdoorWarned) {
197  warn("Port %s doesn't support requesting a back door.", name());
198  defaultBackdoorWarned = true;
199  }
200  return recvAtomic(pkt);
201 }
ResponsePort
A ResponsePort is a specialization of a port.
Definition: port.hh:265
warn
#define warn(...)
Definition: logging.hh:239
MemBackdoor
Definition: backdoor.hh:38
AtomicResponseProtocol::recvAtomic
virtual Tick recvAtomic(PacketPtr pkt)=0
Receive an atomic request packet from the peer.
RequestPort::~RequestPort
virtual ~RequestPort()
Definition: port.cc:120
TimingResponseProtocol::recvRespRetry
virtual void recvRespRetry()=0
Called by the peer if sendTimingResp was called on this protocol (causing recvTimingResp to be called...
RequestPort::recvAtomicSnoop
Tick recvAtomicSnoop(PacketPtr pkt) override
Default implementations.
Definition: port.hh:223
Port::unbind
virtual void unbind()
Dettach from a peer port.
Definition: port.hh:121
FunctionalResponseProtocol::recvFunctional
virtual void recvFunctional(PacketPtr pkt)=0
Receive a functional request packet from the peer.
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:63
PortID
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:237
RequestPort::getAddrRanges
AddrRangeList getAddrRanges() const
Get the address ranges of the connected responder port.
Definition: port.cc:148
ResponsePort::responderUnbind
void responderUnbind()
Called by the request port to unbind.
Definition: port.cc:180
ResponsePort::ResponsePort
ResponsePort(const std::string &name, SimObject *_owner, PortID id=InvalidPortID)
Response port.
Definition: port.cc:169
RequestPort::sendFunctional
void sendFunctional(PacketPtr pkt) const
Send a functional request packet, where the data is instantly updated everywhere in the memory system...
Definition: port.hh:482
RequestPort::bind
void bind(Port &peer) override
Bind this request port to a response port.
Definition: port.cc:125
RequestPort::_responsePort
ResponsePort * _responsePort
Definition: port.hh:80
ResponsePort::tryTiming
bool tryTiming(PacketPtr pkt) override
Availability request from the peer.
Definition: port.hh:440
ResponsePort::responderBind
void responderBind(RequestPort &request_port)
Called by the request port to bind.
Definition: port.cc:187
RequestPort::recvRetrySnoopResp
void recvRetrySnoopResp() override
Called by the peer if sendTimingSnoopResp was called on this protocol (causing recvTimingSnoopResp to...
Definition: port.hh:242
TimingRequestProtocol::recvReqRetry
virtual void recvReqRetry()=0
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
ResponsePort::defaultBackdoorWarned
bool defaultBackdoorWarned
Definition: port.hh:273
ArmISA::a
Bitfield< 8 > a
Definition: miscregs_types.hh:62
AddrRangeList
std::list< AddrRange > AddrRangeList
Convenience typedef for a collection of address ranges.
Definition: addr_range.hh:618
sim_object.hh
Port
Ports are used to interface objects to each other.
Definition: port.hh:56
RequestPort::RequestPort
RequestPort(const std::string &name, SimObject *_owner, PortID id=InvalidPortID)
Request port.
Definition: port.cc:114
port.hh
TimingRequestProtocol::recvTimingResp
virtual bool recvTimingResp(PacketPtr pkt)=0
Receive a timing response from the peer.
RequestPort
A RequestPort is a specialisation of a Port, which implements the default protocol for the three diff...
Definition: port.hh:74
Packet::PrintReqState
Object used to maintain state of a PrintReq.
Definition: packet.hh:442
TimingResponseProtocol::recvTimingReq
virtual bool recvTimingReq(PacketPtr pkt)=0
Receive a timing request from the peer.
ResponsePort::recvTimingSnoopResp
bool recvTimingSnoopResp(PacketPtr pkt) override
Receive a timing snoop response from the peer.
Definition: port.hh:446
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
Port::name
const std::string name() const
Return port name (for DPRINTF).
Definition: port.hh:106
name
const std::string & name()
Definition: trace.cc:50
ResponsePort::~ResponsePort
virtual ~ResponsePort()
Definition: port.cc:175
Request::funcRequestorId
@ funcRequestorId
This requestor id is used for functional requests that don't come from a particular device.
Definition: request.hh:248
ResponsePort::getAddrRanges
virtual AddrRangeList getAddrRanges() const =0
Get a list of the non-overlapping address ranges the owner is responsible for.
panic_if
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:197
RequestPort::unbind
void unbind() override
Unbind this request port and the associated response port.
Definition: port.cc:138
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:257
RequestPort::printAddr
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:154
Port::isConnected
bool isConnected() const
Is this port currently connected to a peer?
Definition: port.hh:128
ResponsePort::recvAtomicBackdoor
Tick recvAtomicBackdoor(PacketPtr pkt, MemBackdoorPtr &backdoor) override
Default implementations.
Definition: port.cc:194
trace.hh
Packet::senderState
SenderState * senderState
This packet's sender state.
Definition: packet.hh:508
std::list< AddrRange >
fatal_if
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Definition: logging.hh:219
RequestPort::recvTimingSnoopReq
void recvTimingSnoopReq(PacketPtr pkt) override
Receive a timing snoop request from the peer.
Definition: port.hh:236
Port::bind
virtual void bind(Port &peer)
Attach to a peer port.
Definition: port.hh:113
RequestPort::recvFunctionalSnoop
void recvFunctionalSnoop(PacketPtr pkt) override
Receive a functional snoop request packet from the peer.
Definition: port.hh:230
ResponsePort::_requestPort
RequestPort * _requestPort
Definition: port.hh:271
ArmISA::id
Bitfield< 33 > id
Definition: miscregs_types.hh:247
MemCmd::PrintReq
@ PrintReq
Definition: packet.hh:131
SimObject
Abstract superclass for simulation objects.
Definition: sim_object.hh:92

Generated on Wed Sep 30 2020 14:02:13 for gem5 by doxygen 1.8.17