2019-01-03 21:18:09 +01:00
|
|
|
import os.path
|
|
|
|
import logging
|
|
|
|
from cppyy import gbl as cpp
|
|
|
|
import pysysc
|
2019-01-04 15:50:18 +01:00
|
|
|
from pysysc.structural import Connection, Module, Signal, Simulation
|
|
|
|
|
2019-01-03 21:18:09 +01:00
|
|
|
###############################################################################
|
|
|
|
# setup and load
|
|
|
|
###############################################################################
|
2019-01-04 15:50:18 +01:00
|
|
|
logging.basicConfig(level=logging.INFO)
|
|
|
|
build_type='Debug'
|
|
|
|
###############################################################################
|
2019-01-03 21:18:09 +01:00
|
|
|
myDir = os.path.dirname( os.path.realpath(__file__))
|
2019-01-04 15:50:18 +01:00
|
|
|
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")
|
|
|
|
pysysc.add_include_path(os.path.join(myDir, 'sc-components/incl'))
|
2019-01-04 15:50:18 +01:00
|
|
|
pysysc.add_library('scc.h', os.path.join(myDir, 'build/%s/lib/libsc-components.so'%build_type))
|
|
|
|
###############################################################################
|
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))
|
2019-01-03 21:18:09 +01:00
|
|
|
###############################################################################
|
|
|
|
# configure
|
|
|
|
###############################################################################
|
2019-01-04 15:50:18 +01:00
|
|
|
Simulation.setup(logging.root.level)
|
2019-01-03 21:18:09 +01:00
|
|
|
###############################################################################
|
|
|
|
# instantiate
|
|
|
|
###############################################################################
|
|
|
|
clk_gen = Module(cpp.ClkGen).create("clk_gen")
|
|
|
|
rst_gen = Module(cpp.ResetGen).create("rst_gen")
|
|
|
|
initiator = Module(cpp.Initiator).create("initiator")
|
|
|
|
memories = [Module(cpp.Memory).create(name) for name in ["mem0", "mem1", "mem2", "mem3"]]
|
|
|
|
router = Module(cpp.Router[4]).create("router")
|
|
|
|
###############################################################################
|
|
|
|
# connect it
|
|
|
|
###############################################################################
|
|
|
|
clk = Signal("clk").src(clk_gen.clk_o).sink(initiator.clk_i).sink(router.clk_i)
|
|
|
|
[clk.sink(m.clk_i) for m in memories]
|
|
|
|
rst = Signal("rst").src(rst_gen.reset_o).sink(initiator.reset_i).sink(router.reset_i)
|
|
|
|
[rst.sink(m.reset_i) for m in memories]
|
|
|
|
Connection().src(initiator.socket).sink(router.target_socket)
|
2019-01-04 15:50:18 +01:00
|
|
|
[Connection().src(router.initiator_socket.at(idx)).sink(m.socket) for idx,m in enumerate(memories)]
|
2019-01-03 21:18:09 +01:00
|
|
|
###############################################################################
|
|
|
|
# run if it is standalone
|
|
|
|
###############################################################################
|
|
|
|
if __name__ == "__main__":
|
2019-01-06 15:26:13 +01:00
|
|
|
Simulation.configure(enable_vcd=True)
|
2019-01-04 15:50:18 +01:00
|
|
|
Simulation.run()
|
2019-01-03 21:18:09 +01:00
|
|
|
logging.debug("Done")
|