gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
tlm_port_wrapper.hh
Go to the documentation of this file.
1 /*
2  * Copyright 2018 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 #ifndef __SYSTEMC_TLM_PORT_WRAPPER_HH__
29 #define __SYSTEMC_TLM_PORT_WRAPPER_HH__
30 
31 #include "base/logging.hh"
32 #include "sim/port.hh"
34 
35 namespace sc_gem5
36 {
37 
38 template <unsigned int BUSWIDTH, typename FW_IF, typename BW_IF, int N,
41 
42 template <unsigned int BUSWIDTH, typename FW_IF, typename BW_IF, int N,
45 
46 template <unsigned int BUSWIDTH, typename FW_IF, typename BW_IF, int N,
48 class TlmInitiatorBaseWrapper : public ::Port
49 {
50  public:
55 
57 
59  InitiatorSocket &i, const std::string &_name, PortID _id) :
60  Port(_name, _id), _initiator(i)
61  {}
62 
63  void
64  bind(::Port &peer) override
65  {
66  auto *target = dynamic_cast<TargetWrapper *>(&peer);
67  fatal_if(!target, "Attempt to bind TLM initiator socket %s to "
68  "incompatible port %s.", name(), peer.name());
69 
70  initiator().bind(target->target());
71  Port::bind(peer);
72  }
73 
74  void
75  unbind() override
76  {
77  panic("TLM sockets can't be unbound.");
78  }
79 
80  private:
82 };
83 
84 template <unsigned int BUSWIDTH, typename FW_IF, typename BW_IF, int N,
86 class TlmTargetBaseWrapper : public ::Port
87 {
88  public:
91 
92  TargetSocket &target() { return _target; }
93 
94  TlmTargetBaseWrapper(TargetSocket &t, const std::string &_name,
95  PortID _id) :
96  Port(_name, _id), _target(t)
97  {}
98 
99  void
100  bind(::Port &peer) override
101  {
102  // Ignore attempts to bind a target socket. The initiator will
103  // handle it.
104  Port::bind(peer);
105  }
106 
107  void
108  unbind() override
109  {
110  panic("TLM sockets can't be unbound.");
111  }
112 
113  private:
115 };
116 
117 template <unsigned int BUSWIDTH=32,
118  typename TYPES=tlm::tlm_base_protocol_types, int N=1,
120 using TlmInitiatorWrapper =
123 
124 template <unsigned int BUSWIDTH=32,
125  typename TYPES=tlm::tlm_base_protocol_types, int N=1,
127 using TlmTargetWrapper =
130 
131 } // namespace sc_gem5
132 
133 #endif //__SYSTEMC_TLM_PORT_WRAPPER_HH__
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:163
Bitfield< 7 > i
tlm::tlm_base_target_socket< BUSWIDTH, FW_IF, BW_IF, N, POL > TargetSocket
void unbind() override
Dettach from a peer port.
TlmTargetBaseWrapper(TargetSocket &t, const std::string &_name, PortID _id)
tlm::tlm_base_initiator_socket< BUSWIDTH, FW_IF, BW_IF, N, POL > InitiatorSocket
InitiatorSocket::base_target_socket_type TargetSocket
virtual void bind(base_target_socket_type &s)
void bind(::Port &peer) override
void bind(::Port &peer) override
#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
TlmTargetBaseWrapper< BUSWIDTH, FW_IF, BW_IF, N, POL > TargetWrapper
Port Object Declaration.
sc_port_policy
Definition: sc_port.hh:67
TlmInitiatorBaseWrapper(InitiatorSocket &i, const std::string &_name, PortID _id)
const std::string name() const
Return port name (for DPRINTF).
Definition: port.hh:102
void bind(::sc_core::sc_interface *interface)
Definition: port.hh:138
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:235
Bitfield< 5 > t
void unbind() override
Dettach from a peer port.

Generated on Thu May 28 2020 16:21:38 for gem5 by doxygen 1.8.13