2018-11-30 11:08:08 +01:00
|
|
|
import os.path
|
2019-01-03 21:18:09 +01:00
|
|
|
import logging
|
2018-11-30 11:08:08 +01:00
|
|
|
from cppyy import gbl as cpp
|
2019-01-03 21:18:09 +01:00
|
|
|
import pysysc
|
2018-11-30 11:08:08 +01:00
|
|
|
###############################################################################
|
|
|
|
# setup and load
|
|
|
|
###############################################################################
|
2019-01-04 15:50:18 +01:00
|
|
|
build_type='Debug'
|
|
|
|
logging.basicConfig(level=logging.DEBUG)
|
|
|
|
###############################################################################
|
2018-11-30 11:08:08 +01:00
|
|
|
myDir = os.path.dirname( os.path.realpath(__file__))
|
2019-01-04 15:50:18 +01:00
|
|
|
res=pysysc.read_config_from_conan(os.path.join(myDir, 'conanfile.txt'), build_type)
|
2019-01-03 21:18:09 +01:00
|
|
|
pysysc.load_systemc()
|
2019-01-04 15:50:18 +01:00
|
|
|
###############################################################################
|
2019-01-03 21:18:09 +01:00
|
|
|
logging.debug("Loading SC-Components lib")
|
2021-03-14 09:29:38 +01:00
|
|
|
pysysc.add_include_path(os.path.join(myDir, 'scc/incl'))
|
2020-10-08 17:45:57 +02:00
|
|
|
pysysc.add_library('scc.h', os.path.join(myDir, 'build/%s/lib/libscc.so'%build_type))
|
2019-01-04 15:50:18 +01:00
|
|
|
###############################################################################
|
2019-01-03 21:18:09 +01:00
|
|
|
logging.debug("Loading Components lib")
|
|
|
|
pysysc.add_include_path(os.path.join(myDir, 'components'))
|
2019-01-04 15:50:18 +01:00
|
|
|
pysysc.add_library('components.h', os.path.join(myDir, 'build/%s/lib/libcomponents.so'%build_type))
|
2018-11-30 11:08:08 +01:00
|
|
|
###############################################################################
|
|
|
|
# configure
|
|
|
|
###############################################################################
|
2020-10-08 17:45:57 +02:00
|
|
|
cpp.scc.init_logging(cpp.scc.log.INFO, 24, False);
|
2018-11-30 11:08:08 +01:00
|
|
|
cpp.sc_core.sc_report_handler.set_actions(cpp.sc_core.SC_ID_MORE_THAN_ONE_SIGNAL_DRIVER_, cpp.sc_core.SC_DO_NOTHING);
|
|
|
|
###############################################################################
|
|
|
|
# instantiate
|
|
|
|
###############################################################################
|
2019-01-03 21:18:09 +01:00
|
|
|
clkgen = cpp.ClkGen(cpp.sc_core.sc_module_name("clk_gen"))
|
|
|
|
rstgen = cpp.ResetGen(cpp.sc_core.sc_module_name("rst_gen"))
|
2018-11-30 11:08:08 +01:00
|
|
|
initiator = cpp.Initiator(cpp.sc_core.sc_module_name("initiator"))
|
|
|
|
memories = [cpp.Memory(cpp.sc_core.sc_module_name(name)) for name in ["mem0", "mem1", "mem2", "mem3"]]
|
|
|
|
router = cpp.Router[4](cpp.sc_core.sc_module_name("router"))
|
|
|
|
###############################################################################
|
2019-01-03 21:18:09 +01:00
|
|
|
# signals
|
2019-01-06 15:26:13 +01:00
|
|
|
###############################################################################
|
2019-01-03 21:18:09 +01:00
|
|
|
sig_clk = cpp.sc_core.sc_signal[cpp.sc_core.sc_time]("clk")
|
|
|
|
sig_rst = cpp.sc_core.sc_signal[cpp.sc_dt.sc_logic]("rst")
|
|
|
|
###############################################################################
|
2018-11-30 11:08:08 +01:00
|
|
|
# connect it
|
|
|
|
###############################################################################
|
2019-01-03 21:18:09 +01:00
|
|
|
clkgen.clk_o(sig_clk)
|
|
|
|
rstgen.reset_o(sig_rst)
|
2018-11-30 11:08:08 +01:00
|
|
|
initiator.socket.bind(router.target_socket)
|
2019-01-03 21:18:09 +01:00
|
|
|
initiator.clk_i(sig_clk)
|
|
|
|
initiator.reset_i(sig_rst)
|
|
|
|
router.clk_i(sig_clk)
|
|
|
|
router.reset_i(sig_rst)
|
2018-11-30 11:08:08 +01:00
|
|
|
for idx,m in enumerate(memories):
|
|
|
|
router.initiator_socket.at(idx).bind(m.socket)
|
2019-01-03 21:18:09 +01:00
|
|
|
m.clk_i(sig_clk)
|
|
|
|
m.reset_i(sig_rst)
|
2018-11-30 11:08:08 +01:00
|
|
|
###############################################################################
|
|
|
|
# run if it is standalone
|
|
|
|
###############################################################################
|
|
|
|
if __name__ == "__main__":
|
2019-01-06 15:26:13 +01:00
|
|
|
if os.path.isfile('router_example.json'):
|
|
|
|
cfg = cpp.scc.configurer(cpp.std.string('router_example.json'));
|
2020-10-08 17:45:57 +02:00
|
|
|
tracer = cpp.scc.tracer('vcd_trace', 1, True)
|
2018-11-30 11:08:08 +01:00
|
|
|
cpp.sc_core.sc_start()
|
2019-01-03 21:18:09 +01:00
|
|
|
logging.debug("Done")
|