gem5  v20.1.0.0
exported_clock_rate_control.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 
28 #ifndef __ARCH_ARM_FASTMODEL_PROTOCOL_EXPORTED_CLOCK_RATE_CONTROL_HH__
29 #define __ARCH_ARM_FASTMODEL_PROTOCOL_EXPORTED_CLOCK_RATE_CONTROL_HH__
30 
31 #include <string>
32 #include <systemc>
33 #include <tlm>
34 
35 // This protocol is an exportable version of the clock rate protocol native to
36 // fast models. It's identical to the original, except it has some extra info
37 // which lets it be exported into systemc.
38 
40 
42 {
43  public:
44  virtual ~ClockRateControlFwIf() {}
45  virtual void set_mul_div(uint64_t mul, uint64_t div) = 0;
46 };
47 
49 {
50  public:
51  virtual ~ClockRateControlBwIf() {}
52 };
53 
55 {
56  public:
57  ClockRateControlSlaveBase(const std::string &name) {}
58 };
59 
61  public tlm::tlm_base_initiator_socket<64, ClockRateControlFwIf,
62  ClockRateControlBwIf>
63 {
64  private:
66 
67  public:
70 
71  using Base::bind;
72  using Base::operator();
73 
75  {
76  get_base_export().bind(dummyBwIf);
77  }
79  {
80  get_base_export().bind(dummyBwIf);
81  }
82 
83  const char *
84  kind() const override
85  {
86  return "ClockRateControlInitiatorSocket";
87  }
88 
89  std::type_index
90  get_protocol_types() const override
91  {
92  return typeid(ClockRateControlDummyProtocolType);
93  }
94 };
95 
97  public tlm::tlm_base_target_socket<64, ClockRateControlFwIf,
98  ClockRateControlBwIf>
99 {
100  public:
103 
104  using Base::bind;
105  using Base::operator();
106 
107  using Base::Base;
108 
109  const char *
110  kind() const override
111  {
112  return "ClockRateControlInitiatorSocket";
113  }
114 
115  std::type_index
116  get_protocol_types() const override
117  {
118  return typeid(ClockRateControlDummyProtocolType);
119  }
120 };
121 
122 #endif // __ARCH_ARM_FASTMODEL_PROTOCOL_EXPORTED_CLOCK_RATE_CONTROL_HH__
ClockRateControlInitiatorSocket::dummyBwIf
ClockRateControlBwIf dummyBwIf
Definition: exported_clock_rate_control.hh:65
ClockRateControlFwIf::set_mul_div
virtual void set_mul_div(uint64_t mul, uint64_t div)=0
ClockRateControlTargetSocket
Definition: exported_clock_rate_control.hh:96
sc_core::sc_interface
Definition: sc_interface.hh:37
tlm::tlm_base_target_socket
Definition: initiator_socket.hh:69
ClockRateControlTargetSocket::Base
tlm::tlm_base_target_socket< 64, ClockRateControlFwIf, ClockRateControlBwIf > Base
Definition: exported_clock_rate_control.hh:102
ClockRateControlSlaveBase::ClockRateControlSlaveBase
ClockRateControlSlaveBase(const std::string &name)
Definition: exported_clock_rate_control.hh:57
ClockRateControlTargetSocket::get_protocol_types
std::type_index get_protocol_types() const override
Definition: exported_clock_rate_control.hh:116
ClockRateControlInitiatorSocket::ClockRateControlInitiatorSocket
ClockRateControlInitiatorSocket()
Definition: exported_clock_rate_control.hh:74
tlm::tlm_base_initiator_socket< 64, ClockRateControlFwIf, ClockRateControlBwIf >::get_base_export
virtual sc_core::sc_export< ClockRateControlBwIf > & get_base_export()
Definition: initiator_socket.hh:184
ClockRateControlTargetSocket::kind
const char * kind() const override
Definition: exported_clock_rate_control.hh:110
ClockRateControlDummyProtocolType
Definition: exported_clock_rate_control.hh:39
ClockRateControlBwIf::~ClockRateControlBwIf
virtual ~ClockRateControlBwIf()
Definition: exported_clock_rate_control.hh:51
ClockRateControlInitiatorSocket::get_protocol_types
std::type_index get_protocol_types() const override
Definition: exported_clock_rate_control.hh:90
name
const std::string & name()
Definition: trace.cc:50
ClockRateControlFwIf::~ClockRateControlFwIf
virtual ~ClockRateControlFwIf()
Definition: exported_clock_rate_control.hh:44
ClockRateControlInitiatorSocket
Definition: exported_clock_rate_control.hh:60
ClockRateControlInitiatorSocket::kind
const char * kind() const override
Definition: exported_clock_rate_control.hh:84
ClockRateControlInitiatorSocket::ClockRateControlInitiatorSocket
ClockRateControlInitiatorSocket(const char *name)
Definition: exported_clock_rate_control.hh:78
tlm::tlm_base_initiator_socket< 64, ClockRateControlFwIf, ClockRateControlBwIf >::bind
virtual void bind(base_target_socket_type &s)
Definition: initiator_socket.hh:121
ClockRateControlBwIf
Definition: exported_clock_rate_control.hh:48
sc_core::sc_object::name
const char * name() const
Definition: sc_object.cc:44
ClockRateControlInitiatorSocket::Base
tlm::tlm_base_initiator_socket< 64, ClockRateControlFwIf, ClockRateControlBwIf > Base
Definition: exported_clock_rate_control.hh:69
ClockRateControlSlaveBase
Definition: exported_clock_rate_control.hh:54
ClockRateControlFwIf
Definition: exported_clock_rate_control.hh:41
tlm::tlm_base_target_socket< 64, ClockRateControlFwIf, ClockRateControlBwIf >::bind
virtual void bind(base_initiator_socket_type &s)
Definition: target_socket.hh:112
tlm::tlm_base_initiator_socket
Definition: initiator_socket.hh:78

Generated on Wed Sep 30 2020 14:01:59 for gem5 by doxygen 1.8.17