README revision 12207
110993Sjungma@eit.uni-kl.deThis directory contains a demo of a coupling between gem5 and SystemC-TLM.  It
210993Sjungma@eit.uni-kl.deis based on the gem5-systemc implementation in utils/systemc. This Readme gives
310993Sjungma@eit.uni-kl.dean overall overview (I), describes the source files in this directory (II),
410993Sjungma@eit.uni-kl.deexplains the build steps (III), shows how to run example simulations (IV-VI)
510993Sjungma@eit.uni-kl.deand lists known issues (VII).
610993Sjungma@eit.uni-kl.de
710993Sjungma@eit.uni-kl.de
810993Sjungma@eit.uni-kl.deI. Overview
910993Sjungma@eit.uni-kl.de===========
1010993Sjungma@eit.uni-kl.de
1110993Sjungma@eit.uni-kl.deThe sources in this directory provide three SystemC modules that manage the
1210993Sjungma@eit.uni-kl.deSystemC/gem5 co-simulation: Gem5SimControl, Gem5MasterTransactor, and
1310993Sjungma@eit.uni-kl.deGem5SlaveTransactor. They also implement gem5's ExternalMaster::Port interface
1410993Sjungma@eit.uni-kl.de(SCMasterPort) and ExternalSlave::Port interface (SCSlavePort).
1510993Sjungma@eit.uni-kl.de
1610993Sjungma@eit.uni-kl.de**SCMasterPort** and **Gem5MasterTransactor** together form a TLM-to-gem5
1710993Sjungma@eit.uni-kl.debridge. SCMasterPort implements gem5's ExternalMaster::Port interface and forms
1810993Sjungma@eit.uni-kl.dethe gem5 end of the bridge. Gem5MasterTransactor is a SystemC module that
1910993Sjungma@eit.uni-kl.deprovides a target socket and represents the TLM side of the bridge. All TLM
2010993Sjungma@eit.uni-kl.derequests send to this target socket, are translated to gem5 requests and
2110993Sjungma@eit.uni-kl.deforwarded to the gem5 world through the SCMasterPort. Then the gem5 world
2210993Sjungma@eit.uni-kl.dehandles the request and eventually issues a response. When the response arrives
2310993Sjungma@eit.uni-kl.deat the SCMasterPort it gets translated back into a TLM response and forwarded
2410993Sjungma@eit.uni-kl.deto the TLM world through target socket of the Gem5MasterTransactor.
2510993Sjungma@eit.uni-kl.deSCMasterPort and Gem5MasterTransactor are bound to each other by configuring
2610993Sjungma@eit.uni-kl.dethem for the same port name.
2710993Sjungma@eit.uni-kl.de
2810993Sjungma@eit.uni-kl.de**SCSlavePort** and **Gem5SlaveTransactor** together form a gem5-to-TLM bridge.
2910993Sjungma@eit.uni-kl.deGem5SlaveTransactor is a SystemC module that provides a initiator socket and
3010993Sjungma@eit.uni-kl.derepresents the TLM end of the bridge. SCSlavePort implements gem5's
3110993Sjungma@eit.uni-kl.deExternalSlave::Port interface and forms the gem5 side of the bridge. All gem5
3210993Sjungma@eit.uni-kl.derequests sent to the SCSlavePort, are translated to TLM requests and forwarded
3310993Sjungma@eit.uni-kl.deto the TLM world through the initiator socket of the Gem5SlaveTransactor. Then
3410993Sjungma@eit.uni-kl.dethe TLM world handles the request and eventually issues a response. When the
3510993Sjungma@eit.uni-kl.deresponse arrives at the Gem5SlaveTransactor it gets translated back into a
3611099Sabdul.mutaal@gmail.comgem5 response and forwarded to the gem5 world through the SCSlavePort. SCSLavePort
3710993Sjungma@eit.uni-kl.deand Gem5SlaveTransactor are bound to each other by configuring them for the
3811791Sjungma@eit.uni-kl.desame port name.
3911791Sjungma@eit.uni-kl.de
4011791Sjungma@eit.uni-kl.de**Gem5SimControl** is the central SystemC module that represents the complete
4110993Sjungma@eit.uni-kl.degem5 world. It is responsible for instantiating all gem5 objects according to a
4210993Sjungma@eit.uni-kl.degiven configuration file, for configuring the simulation and for maintaining
4310993Sjungma@eit.uni-kl.dethe gem5 event queue. It also keeps track of all SCMasterPort and SCSlavePort
4411791Sjungma@eit.uni-kl.deand responsible for connecting all Gem5MasterTransactor and Gem5SlaveTransactor
4511791Sjungma@eit.uni-kl.demodules to their gem5 counterparts. This module must be instantiated exactly
4611791Sjungma@eit.uni-kl.deonce in order to run a gem5 simulation from within an SystemC environment.
4711791Sjungma@eit.uni-kl.de
4811791Sjungma@eit.uni-kl.de
4911791Sjungma@eit.uni-kl.deII. Files
5011791Sjungma@eit.uni-kl.de=========
5111791Sjungma@eit.uni-kl.de
5211791Sjungma@eit.uni-kl.de    src/sc_slave_port.{cc,hh}     -- Implements SCSlavePort
5311791Sjungma@eit.uni-kl.de    src/sc_master_port.{cc,hh}    -- Implements SCMasterPort
5411791Sjungma@eit.uni-kl.de    src/sc_mm.{cc,hh}             -- Implementation of a TLM memory manager
5511791Sjungma@eit.uni-kl.de    src/sc_ext.{cc,hh}            -- TLM extension that carries a gem5 packet
5611791Sjungma@eit.uni-kl.de    src/sc_peq.{cc,hh}            -- TLM PEQ for scheduling gem5 events
5711791Sjungma@eit.uni-kl.de    src/sim_control.{cc,hh}       -- Implements Gem5SimControl
5810993Sjungma@eit.uni-kl.de    src/slave_transactor.{cc,hh}  -- Implements Gem5SlaveTransactor
5910993Sjungma@eit.uni-kl.de    src/master_transactor.{cc,hh} -- Implements Gem5MasterTransactor
6010993Sjungma@eit.uni-kl.de
6110993Sjungma@eit.uni-kl.de    examples/common/cli_parser.{cc,hh}     -- Simple cli argument parser
6210993Sjungma@eit.uni-kl.de    examples/common/report_hanlder.{cc,hh} -- Custom SystemC report handler
6310993Sjungma@eit.uni-kl.de
6410993Sjungma@eit.uni-kl.de    examples/slave_port/main.cc           -- demonstration of the slave port
6510993Sjungma@eit.uni-kl.de    examples/slave_port/sc_target.{cc,hh} -- an example TLM LT/AT memory module
6610993Sjungma@eit.uni-kl.de
6710993Sjungma@eit.uni-kl.de    examples/master_port/main.cc          -- demonstration of the master port
6810993Sjungma@eit.uni-kl.de    examples/master_port/traffic_generator.{cc/hh}
6910993Sjungma@eit.uni-kl.de                                         -- an example traffic generator module
7010993Sjungma@eit.uni-kl.de
7110993Sjungma@eit.uni-kl.de    conf/tlm_slave.py           -- simple gem5 configuration connecting to a
7210993Sjungma@eit.uni-kl.de                                   SytemC/TLM slave module
7310993Sjungma@eit.uni-kl.de    conf/tlm_elastic_slave.py   -- gem5 configuration with an elastic trace
7410993Sjungma@eit.uni-kl.de                                   replayer
7510993Sjungma@eit.uni-kl.de    conf/tlm_master.py          -- simple gem5 configuration connecting to a
7610993Sjungma@eit.uni-kl.de                                   SytemC/TLM master module
7710993Sjungma@eit.uni-kl.de    conf/tgen.cfg               -- trace generator configuration
7810993Sjungma@eit.uni-kl.de
7910993Sjungma@eit.uni-kl.deOther Files will be used from utils/systemc example:
8010993Sjungma@eit.uni-kl.de
8110993Sjungma@eit.uni-kl.de    sc_logger.{cc,hh},
8210993Sjungma@eit.uni-kl.de    sc_module.{cc,hh},
8310993Sjungma@eit.uni-kl.de    sc_gem5_control.{cc,hh},
8410993Sjungma@eit.uni-kl.de    stats.{cc,hh}
8510993Sjungma@eit.uni-kl.de
8610993Sjungma@eit.uni-kl.de
8710993Sjungma@eit.uni-kl.deIII. Build
8810993Sjungma@eit.uni-kl.de==========
8910993Sjungma@eit.uni-kl.de
9010993Sjungma@eit.uni-kl.deFirst build a normal gem5 (cxx-config not needed, Python needed).
9110993Sjungma@eit.uni-kl.deSecond build gem5 as a library with cxx-config support and (optionally)
9210993Sjungma@eit.uni-kl.dewithout python.
9310993Sjungma@eit.uni-kl.de
9410993Sjungma@eit.uni-kl.de> cd ../..
9510993Sjungma@eit.uni-kl.de> scons build/ARM/gem5.opt
9610993Sjungma@eit.uni-kl.de> scons --with-cxx-config --without-python --without-tcmalloc \
9710993Sjungma@eit.uni-kl.de>       build/ARM/libgem5_opt.so
9810993Sjungma@eit.uni-kl.de> cd util/tlm
9910993Sjungma@eit.uni-kl.de
10010993Sjungma@eit.uni-kl.deNote: For MAC / OSX this command should be used:
10110993Sjungma@eit.uni-kl.de> scons --with-cxx-config --without-python --without-tcmalloc \
10210993Sjungma@eit.uni-kl.de>       build/ARM/libgem5_opt.dylib
10310993Sjungma@eit.uni-kl.de
10410993Sjungma@eit.uni-kl.deTo build all sources of the SystemC binding and the examples simply run scons:
10510993Sjungma@eit.uni-kl.de
10610993Sjungma@eit.uni-kl.de> scons
10710993Sjungma@eit.uni-kl.de
10810993Sjungma@eit.uni-kl.de
10910993Sjungma@eit.uni-kl.deIV. Simple Examples
11010993Sjungma@eit.uni-kl.de===================
11110993Sjungma@eit.uni-kl.de
11210993Sjungma@eit.uni-kl.deIn order to run our example simulation, we first need to create a config.ini
11311554Sjungma@eit.uni-kl.dethat represents the gem5 configuration. We do so by starting gem5 with the
11411554Sjungma@eit.uni-kl.dedesired python configuration script.
11511554Sjungma@eit.uni-kl.de
11611554Sjungma@eit.uni-kl.de> ../../build/ARM/gem5.opt conf/tlm_{master,slave}.py
11711554Sjungma@eit.uni-kl.de
11811554Sjungma@eit.uni-kl.deThe message "fatal: Can't find port handler type 'tlm_{master,slave}'" is okay.
11911554Sjungma@eit.uni-kl.deThe configuration will be stored in the m5out/ directory
12011554Sjungma@eit.uni-kl.de
12111554Sjungma@eit.uni-kl.deThe build step creates a binary 'gem5.sc' for each example in the
12211554Sjungma@eit.uni-kl.debuild/examples/{master|slave}_port directories. It can now be used to load in
12311554Sjungma@eit.uni-kl.dethe generated configuration file from the previous normal gem5 run.
12411554Sjungma@eit.uni-kl.de
12511554Sjungma@eit.uni-kl.deTry:
12611554Sjungma@eit.uni-kl.de
12711554Sjungma@eit.uni-kl.de> build/examples/{master,slave}_port/gem5.sc m5out/config.ini -e 1000000
12811554Sjungma@eit.uni-kl.de
12911554Sjungma@eit.uni-kl.deIt should run a simulation for 1us.
13011554Sjungma@eit.uni-kl.de
13111554Sjungma@eit.uni-kl.deTo see more information what happens inside the TLM modules use the -v flag:
13211554Sjungma@eit.uni-kl.de
13311554Sjungma@eit.uni-kl.de> build/{master,slave}_port/gem5.sc m5out/config.ini -e 1000000 -v
13411554Sjungma@eit.uni-kl.de
13511554Sjungma@eit.uni-kl.de
136V. Full System Setup
137=====================
138
139Apart from the simple examples, there is a full system example that uses
140the gem5-to-TLM bridge.
141
142Build gem5 as described in Section III. Then, make a config file for the
143C++-configured gem5 using normal gem5
144
145> ../../build/ARM/gem5.opt ../../configs/example/fs.py               \
146  --tlm-memory=transactor --cpu-type=TimingSimpleCPU --num-cpu=1     \
147  --mem-type=SimpleMemory --mem-size=512MB --mem-channels=1 --caches \
148  --l2cache --machine-type=VExpress_EMM                              \
149  --dtb-filename=vexpress.aarch32.ll_20131205.0-gem5.1cpu.dtb        \
150  --kernel=vmlinux.aarch32.ll_20131205.0-gem5                        \
151  --disk-image=linux-aarch32-ael.img
152
153The message "fatal: Can't find port handler type 'tlm_slave'" is okay.
154The configuration will be stored in the m5out/ directory
155
156The binary 'build/examples/slave_port/gem5.sc' can now be used to load in the
157generated config file from the previous normal gem5 run.
158
159Try:
160
161> build/examples/slave_port/gem5.sc m5out/config.ini -o 2147483648
162
163The parameter -o specifies the begining of the memory region (0x80000000).
164The system should boot now.
165
166For convenience a run_gem5_fs.sh file holds all those commands
167
168
169VI. Elastic Trace Setup
170========================
171
172Elastic traces can also be replayed into the SystemC world.
173For more information on elastic traces please refer to:
174
175 - http://www.gem5.org/TraceCPU
176
177 - Exploring System Performance using Elastic Traces:
178   Fast, Accurate and Portable
179   R. Jagtap, S. Diestelhorst, A. Hansson, M. Jung, N. Wehn.
180   IEEE International Conference on Embedded Computer Systems Architectures
181   Modeling and Simulation (SAMOS), July, 2016, Samos Island, Greece.
182
183Similar to IV. the simulation can be set up with this command:
184
185> ../../build/ARM/gem5.opt ./conf/tlm_elastic_slave.py
186
187or
188
189> ../../build/ARM/gem5.opt ./conf/tlm_elastic_slave_with_l2.py
190
191Then:
192
193> build/examples/slave_port/gem5.sc m5out/config.ini
194
195
196VII. Knwon issues
197=================
198
199* For some toolchains, compiling libgem5 with tcmalloc leads to errors
200  ('tcmalloc Attempt to free invalid pointer xxx') when linking libgem5 into a
201  SystemC application.
202* When SystemC is build with pthread support enabled, the binding of gem5 to
203  SystemC breaks. When gem5 is linked to a SystemC application, gem5's usage
204  of thread local storage results in a segfault.
205