gem5  [DEVELOP-FOR-23.0]
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
thread_bridge.cc
Go to the documentation of this file.
1 /*
2  * Copyright 2022 Google, LLC
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/thread_bridge.hh"
29 
30 #include "base/trace.hh"
31 #include "sim/eventq.hh"
32 
33 namespace gem5
34 {
35 
36 ThreadBridge::ThreadBridge(const ThreadBridgeParams &p)
37  : SimObject(p), in_port_("in_port", *this), out_port_("out_port", *this)
38 {
39 }
40 
42  ThreadBridge &device)
43  : ResponsePort(name), device_(device)
44 {
45 }
46 
49 {
50  return device_.out_port_.getAddrRanges();
51 }
52 
53 // TimingResponseProtocol
54 bool
56 {
57  panic("ThreadBridge only supports atomic/functional access.");
58 }
59 void
61 {
62  panic("ThreadBridge only supports atomic/functional access.");
63 }
64 
65 // AtomicResponseProtocol
66 Tick
68 {
69  EventQueue::ScopedMigration migrate(device_.eventQueue());
70  return device_.out_port_.sendAtomic(pkt);
71 }
72 
73 // FunctionalResponseProtocol
74 void
76 {
77  EventQueue::ScopedMigration migrate(device_.eventQueue());
78  device_.out_port_.sendFunctional(pkt);
79 }
80 
82  ThreadBridge &device)
83  : RequestPort(name), device_(device)
84 {
85 }
86 
87 void
89 {
90  device_.in_port_.sendRangeChange();
91 }
92 
93 // TimingRequestProtocol
94 bool
96 {
97  panic("ThreadBridge only supports atomic/functional access.");
98 }
99 void
101 {
102  panic("ThreadBridge only supports atomic/functional access.");
103 }
104 
105 Port &
106 ThreadBridge::getPort(const std::string &if_name, PortID idx)
107 {
108  if (if_name == "in_port")
109  return in_port_;
110  if (if_name == "out_port")
111  return out_port_;
112  return SimObject::getPort(if_name, idx);
113 }
114 
115 } // namespace gem5
gem5::PortID
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:245
gem5::SimObject::getPort
virtual Port & getPort(const std::string &if_name, PortID idx=InvalidPortID)
Get a port with a given name and index.
Definition: sim_object.cc:123
gem5::ThreadBridge::IncomingPort::recvTimingReq
bool recvTimingReq(PacketPtr pkt) override
Receive a timing request from the peer.
Definition: thread_bridge.cc:55
gem5::ThreadBridge::IncomingPort::IncomingPort
IncomingPort(const std::string &name, ThreadBridge &device)
Definition: thread_bridge.cc:41
gem5::ThreadBridge::getPort
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
Definition: thread_bridge.cc:106
gem5::ThreadBridge::IncomingPort::getAddrRanges
AddrRangeList getAddrRanges() const override
Get a list of the non-overlapping address ranges the owner is responsible for.
Definition: thread_bridge.cc:48
gem5::ThreadBridge::in_port_
IncomingPort in_port_
Definition: thread_bridge.hh:81
gem5::RequestPort
A RequestPort is a specialisation of a Port, which implements the default protocol for the three diff...
Definition: port.hh:118
gem5::Named::name
virtual std::string name() const
Definition: named.hh:47
gem5::VegaISA::p
Bitfield< 54 > p
Definition: pagetable.hh:70
gem5::ThreadBridge
Definition: thread_bridge.hh:38
gem5::ThreadBridge::IncomingPort::recvFunctional
void recvFunctional(PacketPtr pkt) override
Receive a functional request packet from the peer.
Definition: thread_bridge.cc:75
gem5::Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:294
gem5::Tick
uint64_t Tick
Tick count type.
Definition: types.hh:58
gem5::ThreadBridge::OutgoingPort::OutgoingPort
OutgoingPort(const std::string &name, ThreadBridge &device)
Definition: thread_bridge.cc:81
gem5::ThreadBridge::IncomingPort::recvAtomic
Tick recvAtomic(PacketPtr pkt) override
Receive an atomic request packet from the peer.
Definition: thread_bridge.cc:67
gem5::EventQueue::ScopedMigration
Definition: eventq.hh:665
thread_bridge.hh
gem5::SimObject
Abstract superclass for simulation objects.
Definition: sim_object.hh:146
name
const std::string & name()
Definition: trace.cc:48
gem5::ThreadBridge::IncomingPort::recvRespRetry
void recvRespRetry() override
Called by the peer if sendTimingResp was called on this protocol (causing recvTimingResp to be called...
Definition: thread_bridge.cc:60
gem5::ResponsePort
A ResponsePort is a specialization of a port.
Definition: port.hh:331
gem5::ThreadBridge::out_port_
OutgoingPort out_port_
Definition: thread_bridge.hh:82
gem5::Port
Ports are used to interface objects to each other.
Definition: port.hh:61
gem5::ThreadBridge::ThreadBridge
ThreadBridge(const ThreadBridgeParams &p)
Definition: thread_bridge.cc:36
trace.hh
gem5::ThreadBridge::OutgoingPort::recvRangeChange
void recvRangeChange() override
Called to receive an address range change from the peer response port.
Definition: thread_bridge.cc:88
std::list< AddrRange >
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: gpu_translation_state.hh:37
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:188
gem5::ThreadBridge::OutgoingPort::recvTimingResp
bool recvTimingResp(PacketPtr pkt) override
Receive a timing response from the peer.
Definition: thread_bridge.cc:95
gem5::ThreadBridge::OutgoingPort::recvReqRetry
void recvReqRetry() override
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
Definition: thread_bridge.cc:100
eventq.hh

Generated on Sun Jul 30 2023 01:56:59 for gem5 by doxygen 1.8.17