-
Notifications
You must be signed in to change notification settings - Fork 1
/
interconnect2.h
executable file
·101 lines (85 loc) · 3.96 KB
/
interconnect2.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*
*
* Author: Tatiana Djaba Nya (Lead author)
* Author: Stephan C. Stilkerich
*
* Reference Architecture Model (EPiCS FP7 FET program, No. 257906)
* - Peter R. Lewis, University of Birmingham
* - Xin Yao, University of Birmingham
*
* Copyright (c) 2013, EADS Deutschland GmbH, EADS Innovation Works
*
*==============================================================================
*
*This file is part of ProprioSimEnv.
*
* ProprioSimEnv is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ProprioSimEnv is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ProprioSimEnv. If not, see <http://www.gnu.org/licenses/>.
*/
//==============================================================================
/// @file interconnect2.h
//
/// @brief This is the interconnect component between the monitor and the two following
/// components: the LModel and the SEE. abbr.: IC2
//
/// @details
/// It forwards the method calls between monitor and see, between monitor and lmodel. <br>
//
//==============================================================================
#ifndef __INTERCONNECT2_H__
#define __INTERCONNECT2_H__
#include <systemc.h>
#include <tlm.h>
#include <tlm_utils\simple_initiator_socket.h>
#include <tlm_utils\simple_target_socket.h>
#include "constants.h"
class interconnect2 : public sc_module,
virtual public tlm::tlm_fw_transport_if<>,
virtual public tlm::tlm_bw_transport_if<>
{
public:
// Constructor =================================================================
interconnect2 ( sc_module_name name ///< sc module name
);
// Method Declarations =========================================================
//interface methods backward path
void invalidate_direct_mem_ptr ( sc_dt::uint64 start_range, ///< start address of the memory range
sc_dt::uint64 end_range ///< end address of the memory range
);
/// Required and unused interface method
tlm::tlm_sync_enum nb_transport_bw ( tlm::tlm_generic_payload& tObj, ///< ref to transaction object
tlm::tlm_phase& phase, ///< ref to transaction phase
sc_core::sc_time& delay ///< ref to time delay
);
//interface methods forward path
void b_transport ( tlm::tlm_generic_payload& tObj, ///< ref to transaction object
sc_core::sc_time& delay ///< ref to time delay
);
bool get_direct_mem_ptr ( tlm::tlm_generic_payload& tObj, ///< ref to transaction object
tlm::tlm_dmi& dmi_data ///< ref to dmi descriptor
);
/// Required and unused interface method
tlm::tlm_sync_enum nb_transport_fw ( tlm::tlm_generic_payload& tObj, ///< ref to transaction object
tlm::tlm_phase& phase, ///< ref to transaction phase
sc_core::sc_time& delay ///< ref to time delay
);
/// Required and unused interface method
unsigned int transport_dbg ( tlm::tlm_generic_payload& tObj ///< ref to transaction object
);
// Variable and Object Declarations ============================================
tlm::tlm_target_socket<buswidth2> ic2_tsocket ; ///< standard target socket for communication with the monitor
sc_core::sc_vector< tlm::tlm_initiator_socket<buswidth2> > ic2_isocket_array; ///< vector of standard initiator sockets for communication with the LM and see
private:
const unsigned int ic2_target_nr;
};
#endif /*__INTERCONNECT1_H__*/