19 #include <chi/scv/chi_recorder.h>
33 template <
unsigned int BUSWIDTH,
typename TYPES,
typename BASE>
37 typename BASE::template target_socket_type<BUSWIDTH>
tsckt{
"tsckt"};
39 typename BASE::template initiator_socket_type<BUSWIDTH>
isckt{
"isckt"};
50 SCVNS scv_tr_db* tr_db = SCVNS scv_tr_db::get_default_db())
52 , BASE(sc_core::sc_object::name(), recording_enabled, tr_db) {
56 add_attribute(BASE::enableBlTracing);
57 add_attribute(BASE::enableNbTracing);
58 add_attribute(BASE::enableTimedTracing);
63 tlm::tlm_fw_transport_if<TYPES>* get_fw_if()
override {
return isckt.get_base_port().operator->(); }
65 tlm::tlm_bw_transport_if<TYPES>* get_bw_if()
override {
return tsckt.get_base_port().operator->(); }
68 void start_of_simulation()
override { BASE::initialize_streams(); }
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>>;
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.