gem5  v22.1.0.0
sys_bridge.cc
Go to the documentation of this file.
1 /*
2  * Copyright 2021 Google, Inc.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met: redistributions of source code must retain the above copyright
7  * notice, this list of conditions and the following disclaimer;
8  * redistributions in binary form must reproduce the above copyright
9  * notice, this list of conditions and the following disclaimer in the
10  * documentation and/or other materials provided with the distribution;
11  * neither the name of the copyright holders nor the names of its
12  * contributors may be used to endorse or promote products derived from
13  * this software without specific prior written permission.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
18  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
19  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
21  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27 
28 #include "mem/sys_bridge.hh"
29 
30 #include "sim/system.hh"
31 
32 namespace gem5
33 {
34 
35 SysBridge::PacketData
37 {
38  RequestPtr old_req = pkt->req;
39  RequestPtr new_req = std::make_shared<Request>(
40  old_req->getPaddr(), old_req->getSize(), old_req->getFlags(), id);
41  pkt->req = new_req;
42  return {old_req};
43 }
44 
45 SysBridge::SysBridge(const SysBridgeParams &p) : SimObject(p),
46  sourcePort(p.name + ".source_port", this, &targetPort,
47  p.target->getRequestorId(this)),
48  targetPort(p.name + ".target_port", this, &sourcePort,
49  p.source->getRequestorId(this))
50 {}
51 
52 Port &
53 SysBridge::getPort(const std::string &if_name, PortID idx)
54 {
55  if (if_name == "source_port")
56  return sourcePort;
57  else if (if_name == "target_port")
58  return targetPort;
59  else
60  return SimObject::getPort(if_name, idx);
61 }
62 
63 } // namespace gem5
virtual std::string name() const
Definition: named.hh:47
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:294
RequestPtr req
A pointer to the original request.
Definition: packet.hh:376
Ports are used to interface objects to each other.
Definition: port.hh:62
Abstract superclass for simulation objects.
Definition: sim_object.hh:148
PacketData replaceReqID(PacketPtr pkt)
Definition: sys_bridge.cc:36
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
Definition: sys_bridge.cc:53
SysBridgeTargetPort targetPort
Definition: sys_bridge.hh:342
SysBridge(const SysBridgeParams &p)
Definition: sys_bridge.cc:45
SysBridgeSourcePort sourcePort
Definition: sys_bridge.hh:341
virtual Port & getPort(const std::string &if_name, PortID idx=InvalidPortID)
Get a port with a given name and index.
Definition: sim_object.cc:126
Bitfield< 54 > p
Definition: pagetable.hh:70
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
std::shared_ptr< Request > RequestPtr
Definition: request.hh:92
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:245

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