README revision 11791
111832SChristian.Menard@tu-dresden.deThis directory contains a demo of a coupling between gem5 and SystemC-TLM.
211832SChristian.Menard@tu-dresden.deIt is based on the gem5-systemc implementation in utils/systemc.
311832SChristian.Menard@tu-dresden.deFirst a simple example with gem5's traffic generator is shown, later an full
411832SChristian.Menard@tu-dresden.desystem example.
511832SChristian.Menard@tu-dresden.de
610993Sjungma@eit.uni-kl.deFiles:
710993Sjungma@eit.uni-kl.de
811832SChristian.Menard@tu-dresden.de    main.cc                -- demonstration top level
911832SChristian.Menard@tu-dresden.de    sc_port.{cc,hh}        -- transactor that translates beween gem5 and tlm
1011832SChristian.Menard@tu-dresden.de    sc_mm.{cc,hh}          -- implementation of a tlm memory manager
1111832SChristian.Menard@tu-dresden.de    sc_ext.{cc,hh}         -- a TLM extension that carries the gem5 packet
1211832SChristian.Menard@tu-dresden.de    sc_target.{cc,hh}      -- an example TLM LT/AT memory module
1311832SChristian.Menard@tu-dresden.de    tlm.py                 -- simple gem5 configuration
1411832SChristian.Menard@tu-dresden.de    tgen.cfg               -- configuration file for the traceplayer
1511832SChristian.Menard@tu-dresden.de
1611832SChristian.Menard@tu-dresden.deOther Files will be used from utils/systemc example:
1711832SChristian.Menard@tu-dresden.de
1811832SChristian.Menard@tu-dresden.de    sc_logger.{cc,hh},
1911832SChristian.Menard@tu-dresden.de    sc_module.{cc,hh},
2011832SChristian.Menard@tu-dresden.de    sc_gem5_control.{cc,hh},
2111832SChristian.Menard@tu-dresden.de    stats.{cc,hh}
2211832SChristian.Menard@tu-dresden.de
2311832SChristian.Menard@tu-dresden.de
2411832SChristian.Menard@tu-dresden.deI. Traffic Generator Setup
2511832SChristian.Menard@tu-dresden.de==========================
2611832SChristian.Menard@tu-dresden.de
2711832SChristian.Menard@tu-dresden.deTo build:
2811832SChristian.Menard@tu-dresden.de
2911832SChristian.Menard@tu-dresden.deFirst build a normal gem5 (cxx-config not needed, Python needed).
3011832SChristian.Menard@tu-dresden.deSecond build gem5 as a library with cxx-config support and (optionally)
3111832SChristian.Menard@tu-dresden.dewithout python.
3211971Szulian@eit.uni-kl.de
3311832SChristian.Menard@tu-dresden.de> cd ../..
3411832SChristian.Menard@tu-dresden.de> scons build/ARM/gem5.opt
3511971Szulian@eit.uni-kl.de> scons --with-cxx-config --without-python build/ARM/libgem5_opt.so
3611971Szulian@eit.uni-kl.de> cd util/tlm
3711832SChristian.Menard@tu-dresden.de
3811832SChristian.Menard@tu-dresden.deNote: For MAC / OSX this command should be used:
3911832SChristian.Menard@tu-dresden.de> scons --with-cxx-config --without-python build/ARM/libgem5_opt.dylib
4011832SChristian.Menard@tu-dresden.de
4111832SChristian.Menard@tu-dresden.deSet a proper LD_LIBRARY_PATH e.g. for bash:
4211832SChristian.Menard@tu-dresden.de> export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/path/to/gem5/build/ARM/"
4311832SChristian.Menard@tu-dresden.de
4411832SChristian.Menard@tu-dresden.deor for MAC / OSX:
4511832SChristian.Menard@tu-dresden.de> export DYLD_LIBRARY_PATH="$DYLD_LIBRARY_PATH:/path/to/gem5/build/ARM/"
4611832SChristian.Menard@tu-dresden.de
4711832SChristian.Menard@tu-dresden.deThen edit the Makefile to set the paths for SystemC:
4811832SChristian.Menard@tu-dresden.de
4911832SChristian.Menard@tu-dresden.de    Linux:
5011832SChristian.Menard@tu-dresden.de    SYSTEMC_INC = /opt/systemc/include
5111832SChristian.Menard@tu-dresden.de    SYSTEMC_LIB = /opt/systemc/lib-linux64
5212047Schristian.menard@tu-dresden.de
5312047Schristian.menard@tu-dresden.de    MAC / OSX:
5412047Schristian.menard@tu-dresden.de    SYSTEMC_INC = /opt/systemc/include
5512047Schristian.menard@tu-dresden.de    SYSTEMC_LIB = /opt/systemc/lib-macosx64
5612047Schristian.menard@tu-dresden.de
5712047Schristian.menard@tu-dresden.deThen run make:
5812047Schristian.menard@tu-dresden.de
5912047Schristian.menard@tu-dresden.de> make
6011832SChristian.Menard@tu-dresden.de
6112047Schristian.menard@tu-dresden.deMake a config file for the C++-configured gem5 using normal gem5
6212047Schristian.menard@tu-dresden.de
6311832SChristian.Menard@tu-dresden.de> ../../build/ARM/gem5.opt ./tlm.py
6412047Schristian.menard@tu-dresden.de
6512047Schristian.menard@tu-dresden.deThe message "fatal: Can't find port handler type 'tlm'" is okay.
6611832SChristian.Menard@tu-dresden.deThe configuration will be stored in the m5out/ directory
6712047Schristian.menard@tu-dresden.de
6812047Schristian.menard@tu-dresden.deThe binary 'gem5.opt.sc', that has been created in the make step,
6911832SChristian.Menard@tu-dresden.decan now be used to load in the generated config file from the previous
7012047Schristian.menard@tu-dresden.denormal gem5 run.
7112047Schristian.menard@tu-dresden.de
7212047Schristian.menard@tu-dresden.deTry:
7312047Schristian.menard@tu-dresden.de
7412047Schristian.menard@tu-dresden.de> ./gem5.opt.sc m5out/config.ini -e 1000000
7512047Schristian.menard@tu-dresden.de
7612047Schristian.menard@tu-dresden.deIt should run a simulation for 1us.
7712047Schristian.menard@tu-dresden.de
7810993Sjungma@eit.uni-kl.deTo see more information what happens inside the TLM module use the -D flag:
7910993Sjungma@eit.uni-kl.de
8010993Sjungma@eit.uni-kl.de> ./gem5.opt.sc m5out/config.ini -e 1000000 -D
8110993Sjungma@eit.uni-kl.de
8210993Sjungma@eit.uni-kl.deTo see more information about the port coupling use:
8310993Sjungma@eit.uni-kl.de
8410993Sjungma@eit.uni-kl.de> ./gem5.opt.sc m5out/config.ini -e 1000000 -d ExternalPort
8510993Sjungma@eit.uni-kl.de
8610993Sjungma@eit.uni-kl.deII. Full System Setup
8711832SChristian.Menard@tu-dresden.de=====================
8811832SChristian.Menard@tu-dresden.de
8910993Sjungma@eit.uni-kl.deBuild gem5 as discribed in Section I. Then, make a config file for the
9010993Sjungma@eit.uni-kl.deC++-configured gem5 using normal gem5
9110993Sjungma@eit.uni-kl.de
9210993Sjungma@eit.uni-kl.de> ../../build/ARM/gem5.opt ../../configs/example/fs.py --tlm-memory=memory \
9310993Sjungma@eit.uni-kl.de  --cpu-type=timing --num-cpu=1 --mem-type=SimpleMemory --mem-size=512MB   \
9410993Sjungma@eit.uni-kl.de  --mem-channels=1  --caches --l2cache --machine-type=VExpress_EMM         \
9510993Sjungma@eit.uni-kl.de  --dtb-filename=vexpress.aarch32.ll_20131205.0-gem5.1cpu.dtb              \
9611832SChristian.Menard@tu-dresden.de  --kernel=vmlinux.aarch32.ll_20131205.0-gem5                              \
9711832SChristian.Menard@tu-dresden.de  --disk-image=linux-aarch32-ael.img
9811099Sabdul.mutaal@gmail.com
9910993Sjungma@eit.uni-kl.deThe message "fatal: Can't find port handler type 'tlm'" is okay.
10011791Sjungma@eit.uni-kl.deThe configuration will be stored in the m5out/ directory
10111832SChristian.Menard@tu-dresden.de
10211832SChristian.Menard@tu-dresden.deThe binary 'gem5.opt.sc' can now be used to load in the generated config
10311791Sjungma@eit.uni-kl.defile from the previous normal gem5 run.
10412047Schristian.menard@tu-dresden.de
10510993Sjungma@eit.uni-kl.deTry:
10611832SChristian.Menard@tu-dresden.de
10711791Sjungma@eit.uni-kl.de> ./gem5.opt.sc m5out/config.ini -o 2147483648
10810993Sjungma@eit.uni-kl.de
10911832SChristian.Menard@tu-dresden.deThe parameter -o specifies the begining of the memory region (0x80000000).
11011832SChristian.Menard@tu-dresden.deThe system should boot now.
11110993Sjungma@eit.uni-kl.de
11211832SChristian.Menard@tu-dresden.deFor conveniance a run_gem5.sh file holds all those commands
11311832SChristian.Menard@tu-dresden.de
11411832SChristian.Menard@tu-dresden.de
11510993Sjungma@eit.uni-kl.deIII. Elastic Trace Setup
11612047Schristian.menard@tu-dresden.de========================
11711832SChristian.Menard@tu-dresden.de
11811832SChristian.Menard@tu-dresden.deElastic traces can also be replayed into the SystemC world.
11910993Sjungma@eit.uni-kl.deFor more information on elastic traces please refer to:
12010993Sjungma@eit.uni-kl.de
12112047Schristian.menard@tu-dresden.de - http://www.gem5.org/TraceCPU
12212047Schristian.menard@tu-dresden.de
12312047Schristian.menard@tu-dresden.de - Exploring System Performance using Elastic Traces:
12410993Sjungma@eit.uni-kl.de   Fast, Accurate and Portable
12510993Sjungma@eit.uni-kl.de   R. Jagtap, S. Diestelhorst, A. Hansson, M. Jung, N. Wehn.
12610993Sjungma@eit.uni-kl.de   IEEE International Conference on Embedded Computer Systems Architectures
12712047Schristian.menard@tu-dresden.de   Modeling and Simulation (SAMOS), July, 2016, Samos Island, Greece.
12810993Sjungma@eit.uni-kl.de
12910993Sjungma@eit.uni-kl.deSimilar to I. the simulation can be set up with this command:
13010993Sjungma@eit.uni-kl.de
13111832SChristian.Menard@tu-dresden.de> ../../build/ARM/gem5.opt ./tlm_elastic.py
13210993Sjungma@eit.uni-kl.de
13312047Schristian.menard@tu-dresden.deThen:
13410993Sjungma@eit.uni-kl.de
13511832SChristian.Menard@tu-dresden.de> ./gem5.opt.sc m5out/config.ini
13611832SChristian.Menard@tu-dresden.de