gem5  v20.0.0.2
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
gem5_to_tlm.hh
Go to the documentation of this file.
1 /*
2  * Copyright 2019 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  * Copyright (c) 2015, University of Kaiserslautern
28  * Copyright (c) 2016, Dresden University of Technology (TU Dresden)
29  * All rights reserved.
30  *
31  * Redistribution and use in source and binary forms, with or without
32  * modification, are permitted provided that the following conditions are
33  * met:
34  *
35  * 1. Redistributions of source code must retain the above copyright notice,
36  * this list of conditions and the following disclaimer.
37  *
38  * 2. Redistributions in binary form must reproduce the above copyright
39  * notice, this list of conditions and the following disclaimer in the
40  * documentation and/or other materials provided with the distribution.
41  *
42  * 3. Neither the name of the copyright holder nor the names of its
43  * contributors may be used to endorse or promote products derived from
44  * this software without specific prior written permission.
45  *
46  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
47  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
48  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
49  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER
50  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
51  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
52  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
53  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
54  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
55  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
56  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
57  */
58 
59 #ifndef __SYSTEMC_TLM_BRIDGE_GEM5_TO_TLM_HH__
60 #define __SYSTEMC_TLM_BRIDGE_GEM5_TO_TLM_HH__
61 
62 #include <string>
63 
64 #include "mem/port.hh"
65 #include "params/Gem5ToTlmBridgeBase.hh"
66 #include "sim/system.hh"
72 
73 namespace sc_gem5
74 {
75 
77 
79 {
80  protected:
82 };
83 
84 template <unsigned int BITWIDTH>
86 {
87  private:
88  class BridgeSlavePort : public SlavePort
89  {
90  protected:
92 
94  getAddrRanges() const override
95  {
96  return bridge.getAddrRanges();
97  }
98  Tick
99  recvAtomic(PacketPtr pkt) override
100  {
101  return bridge.recvAtomic(pkt);
102  }
103  Tick
104  recvAtomicBackdoor(PacketPtr pkt, MemBackdoorPtr &backdoor) override
105  {
106  return bridge.recvAtomicBackdoor(pkt, backdoor);
107  }
108  void
109  recvFunctional(PacketPtr pkt) override
110  {
111  return bridge.recvFunctional(pkt);
112  }
113  bool
114  recvTimingReq(PacketPtr pkt) override
115  {
116  return bridge.recvTimingReq(pkt);
117  }
118  bool
119  tryTiming(PacketPtr pkt) override
120  {
121  return bridge.tryTiming(pkt);
122  }
123  bool
125  {
126  return bridge.recvTimingSnoopResp(pkt);
127  }
128  void recvRespRetry() override { bridge.recvRespRetry(); }
129 
130  public:
131  BridgeSlavePort(const std::string &name_,
132  Gem5ToTlmBridge<BITWIDTH> &bridge_) :
133  SlavePort(name_, nullptr), bridge(bridge_)
134  {}
135  };
136 
141 
143 
149 
155 
161 
163 
164  protected:
165  void pec(tlm::tlm_generic_payload &trans, const tlm::tlm_phase &phase);
166 
167  MemBackdoorPtr getBackdoor(tlm::tlm_generic_payload &trans);
169 
170  // The gem5 port interface.
171  Tick recvAtomic(PacketPtr packet);
172  Tick recvAtomicBackdoor(PacketPtr pkt, MemBackdoorPtr &backdoor);
173  void recvFunctional(PacketPtr packet);
174  bool recvTimingReq(PacketPtr packet);
175  bool tryTiming(PacketPtr packet);
176  bool recvTimingSnoopResp(PacketPtr packet);
177  void recvRespRetry();
178  void recvFunctionalSnoop(PacketPtr packet);
179  AddrRangeList getAddrRanges() const { return addrRanges; }
180 
181  // The TLM initiator interface.
182  tlm::tlm_sync_enum nb_transport_bw(tlm::tlm_generic_payload &trans,
183  tlm::tlm_phase &phase,
185  void invalidate_direct_mem_ptr(
186  sc_dt::uint64 start_range, sc_dt::uint64 end_range);
187 
188  public:
189  ::Port &gem5_getPort(const std::string &if_name, int idx=-1) override;
190 
191  typedef Gem5ToTlmBridgeBaseParams Params;
192  Gem5ToTlmBridge(Params *p, const sc_core::sc_module_name &mn);
193 
196  {
197  return socket;
198  }
199 
200  void before_end_of_elaboration() override;
201 };
202 
203 } // namespace sc_gem5
204 
205 #endif // __SYSTEMC_TLM_BRIDGE_GEM5_TO_TLM_HH__
Tick recvAtomicBackdoor(PacketPtr pkt, MemBackdoorPtr &backdoor)
Definition: gem5_to_tlm.cc:231
tlm_utils::simple_initiator_socket< Gem5ToTlmBridge< BITWIDTH >, BITWIDTH > socket
Definition: gem5_to_tlm.hh:139
Gem5ToTlmBridgeBaseParams Params
Definition: gem5_to_tlm.hh:191
bool recvTimingReq(PacketPtr packet)
Definition: gem5_to_tlm.cc:274
tlm::tlm_generic_payload * packet2payload(PacketPtr packet)
Convert a gem5 packet to a TLM payload by copying all the relevant information to new tlm payload...
Definition: gem5_to_tlm.cc:81
void recvFunctional(PacketPtr packet)
Definition: gem5_to_tlm.cc:398
BridgeSlavePort(const std::string &name_, Gem5ToTlmBridge< BITWIDTH > &bridge_)
Definition: gem5_to_tlm.hh:131
Definition: system.hh:72
tlm_utils::simple_initiator_socket< Gem5ToTlmBridge< BITWIDTH >, BITWIDTH > & getSocket()
Definition: gem5_to_tlm.hh:195
A SlavePort is a specialisation of a port.
Definition: port.hh:254
bool needToSendRequestRetry
Did another gem5 request arrive while currently blocked? This variable is needed when a retry should ...
Definition: gem5_to_tlm.hh:154
Tick recvAtomicBackdoor(PacketPtr pkt, MemBackdoorPtr &backdoor) override
Default implementations.
Definition: gem5_to_tlm.hh:104
bool tryTiming(PacketPtr packet)
Definition: gem5_to_tlm.cc:367
tlm::tlm_generic_payload * blockingRequest
A transaction after BEGIN_REQ has been sent but before END_REQ, which is blocking the request channel...
Definition: gem5_to_tlm.hh:148
bool recvTimingSnoopResp(PacketPtr packet)
Definition: gem5_to_tlm.cc:357
bool recvTimingReq(PacketPtr pkt) override
Receive a timing request from the peer.
Definition: gem5_to_tlm.hh:114
AddrRangeList getAddrRanges() const
Definition: gem5_to_tlm.hh:179
uint64_t Tick
Tick count type.
Definition: types.hh:61
bool recvTimingSnoopResp(PacketPtr pkt) override
Receive a timing snoop response from the peer.
Definition: gem5_to_tlm.hh:124
AddrRangeList addrRanges
Definition: gem5_to_tlm.hh:162
The AddrRangeMap uses an STL map to implement an interval tree for address decoding.
Port Object Declaration.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
void recvRespRetry() override
Called by the peer if sendTimingResp was called on this protocol (causing recvTimingResp to be called...
Definition: gem5_to_tlm.hh:128
uint64_t uint64
Definition: sc_nbdefs.hh:172
Gem5ToTlmBridge< BITWIDTH > & bridge
Definition: gem5_to_tlm.hh:91
AddrRangeMap< MemBackdoorPtr > backdoorMap
Definition: gem5_to_tlm.hh:168
virtual ::Port & gem5_getPort(const std::string &if_name, int idx=-1)
Definition: sc_module.cc:117
void recvFunctional(PacketPtr pkt) override
Receive a functional request packet from the peer.
Definition: gem5_to_tlm.hh:109
bool tryTiming(PacketPtr pkt) override
Availability request from the peer.
Definition: gem5_to_tlm.hh:119
sc_gem5::TlmInitiatorWrapper< BITWIDTH > wrapper
Definition: gem5_to_tlm.hh:140
tlm_sync_enum
Definition: fw_bw_ifs.hh:31
Bitfield< 5 > t
Bitfield< 0 > p
tlm::tlm_generic_payload * blockingResponse
A response which has been asked to retry by gem5 and so is blocking the response channel.
Definition: gem5_to_tlm.hh:160
Tick recvAtomic(PacketPtr packet)
Definition: gem5_to_tlm.cc:206
AddrRangeList getAddrRanges() const override
Get a list of the non-overlapping address ranges the owner is responsible for.
Definition: gem5_to_tlm.hh:94
Tick recvAtomic(PacketPtr pkt) override
Receive an atomic request packet from the peer.
Definition: gem5_to_tlm.hh:99
virtual void before_end_of_elaboration()
Definition: sc_module.hh:248

Generated on Mon Jun 8 2020 15:45:16 for gem5 by doxygen 1.8.13