scc  2024.06
SystemC components library
recorder_modules.h
1 /*
2  * Copyright 2020 Arteris IP
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #pragma once
18 
19 #include <chi/scv/chi_recorder.h>
20 
21 namespace chi {
22 namespace scv {
33 template <unsigned int BUSWIDTH, typename TYPES, typename BASE>
34 class chitlm_recorder_module : public sc_core::sc_module, public BASE {
35 public:
37  typename BASE::template target_socket_type<BUSWIDTH> tsckt{"tsckt"};
39  typename BASE::template initiator_socket_type<BUSWIDTH> isckt{"isckt"};
40 
49  chitlm_recorder_module(sc_core::sc_module_name name, bool recording_enabled = true,
50  SCVNS scv_tr_db* tr_db = SCVNS scv_tr_db::get_default_db())
51  : sc_module(name)
52  , BASE(sc_core::sc_object::name(), recording_enabled, tr_db) {
53  // bind the sockets to the module
54  tsckt.bind(*this);
55  isckt.bind(*this);
56  add_attribute(BASE::enableBlTracing);
57  add_attribute(BASE::enableNbTracing);
58  add_attribute(BASE::enableTimedTracing);
59  }
60 
61  virtual ~chitlm_recorder_module() {}
62 
63  tlm::tlm_fw_transport_if<TYPES>* get_fw_if() override { return isckt.get_base_port().operator->(); }
64 
65  tlm::tlm_bw_transport_if<TYPES>* get_bw_if() override { return tsckt.get_base_port().operator->(); }
66 
67 private:
68  void start_of_simulation() override { BASE::initialize_streams(); }
69 };
70 
71 template <unsigned int BUSWIDTH = 32>
72 using chi_trx_recorder_module =
73  chitlm_recorder_module<BUSWIDTH, chi::chi_protocol_types, chi_trx_recorder<chi::chi_protocol_types>>;
74 
75 } // namespace scv
76 } // namespace chi
The TLM2 transaction recorder.
BASE::template target_socket_type< BUSWIDTH > tsckt
The target socket of the recorder to be bound to the initiator.
BASE::template initiator_socket_type< BUSWIDTH > isckt
The initiator to be bound to the target socket.
chitlm_recorder_module(sc_core::sc_module_name name, bool recording_enabled=true, SCVNS scv_tr_db *tr_db=SCVNS scv_tr_db::get_default_db())
The constructor of the component.
TLM2.0 components modeling CHI.
Definition: chi_tlm.cpp:21