README revision 10993
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.
3211832SChristian.Menard@tu-dresden.de
3311832SChristian.Menard@tu-dresden.de> cd ../..
3411832SChristian.Menard@tu-dresden.de> scons build/ARM/gem5.opt
3511832SChristian.Menard@tu-dresden.de> scons --with-cxx-config --without-python build/ARM/libgem5_opt.so
3611832SChristian.Menard@tu-dresden.de> cd util/systemc_tlm
3711832SChristian.Menard@tu-dresden.de
3811832SChristian.Menard@tu-dresden.deSet a proper LD_LIBRARY_PATH e.g. for bash:
3911832SChristian.Menard@tu-dresden.de> export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/path/to/gem5/build/ARM/"
4011832SChristian.Menard@tu-dresden.de
4111832SChristian.Menard@tu-dresden.deThen edit the Makefile to set the paths for SystemC and run make
4211832SChristian.Menard@tu-dresden.de
4311832SChristian.Menard@tu-dresden.de> make
4411832SChristian.Menard@tu-dresden.de
4511832SChristian.Menard@tu-dresden.deMake a config file for the C++-configured gem5 using normal gem5
4611832SChristian.Menard@tu-dresden.de
4711832SChristian.Menard@tu-dresden.de> ../../build/ARM/gem5.opt ./tlm.py
4811832SChristian.Menard@tu-dresden.de
4911832SChristian.Menard@tu-dresden.deThe message "fatal: Can't find port handler type 'tlm'" is okay.
5011832SChristian.Menard@tu-dresden.deThe configuration will be stored in the m5out/ directory
5111832SChristian.Menard@tu-dresden.de
5211832SChristian.Menard@tu-dresden.deThe binary 'gem5.opt.sc', that has been created in the make step,
5311832SChristian.Menard@tu-dresden.decan now be used to load in the generated config file from the previous
5411832SChristian.Menard@tu-dresden.denormal gem5 run.
5511832SChristian.Menard@tu-dresden.de
5611832SChristian.Menard@tu-dresden.deTry:
5711832SChristian.Menard@tu-dresden.de
5811832SChristian.Menard@tu-dresden.de> ./gem5.opt.sc m5out/config.ini -e 1000000
5911832SChristian.Menard@tu-dresden.de
6011832SChristian.Menard@tu-dresden.deIt should run a simulation for 1us.
6111832SChristian.Menard@tu-dresden.de
6211832SChristian.Menard@tu-dresden.deTo see more information what happens inside the TLM module use the -D flag:
6311832SChristian.Menard@tu-dresden.de
6411832SChristian.Menard@tu-dresden.de> ./gem5.opt.sc m5out/config.ini -e 1000000 -D
6511832SChristian.Menard@tu-dresden.de
6611832SChristian.Menard@tu-dresden.deTo see more information about the port coupling use:
6711832SChristian.Menard@tu-dresden.de
6811832SChristian.Menard@tu-dresden.de> ./gem5.opt.sc m5out/config.ini -e 1000000 -d ExternalPort
6911832SChristian.Menard@tu-dresden.de
7011832SChristian.Menard@tu-dresden.deII. Full System Setup
7111832SChristian.Menard@tu-dresden.de=====================
7211832SChristian.Menard@tu-dresden.de
7311832SChristian.Menard@tu-dresden.deBuild gem5 as discribed in Section I. Then, make a config file for the
7411832SChristian.Menard@tu-dresden.deC++-configured gem5 using normal gem5
7510993Sjungma@eit.uni-kl.de
7610993Sjungma@eit.uni-kl.de> ../../build/ARM/gem5.opt ../../configs/example/fs.py --tlm-memory=memory \
7710993Sjungma@eit.uni-kl.de  --cpu-type=timing --num-cpu=1 --mem-type=SimpleMemory --mem-size=512MB   \
7810993Sjungma@eit.uni-kl.de  --mem-channels=1  --caches --l2cache --machine-type=VExpress_EMM         \
7910993Sjungma@eit.uni-kl.de  --dtb-filename=vexpress.aarch32.ll_20131205.0-gem5.1cpu.dtb              \
8010993Sjungma@eit.uni-kl.de  --kernel=vmlinux.aarch32.ll_20131205.0-gem5                              \
8110993Sjungma@eit.uni-kl.de  --disk-image=linux-aarch32-ael.img
8210993Sjungma@eit.uni-kl.de
8310993Sjungma@eit.uni-kl.deThe message "fatal: Can't find port handler type 'tlm'" is okay.
8411832SChristian.Menard@tu-dresden.deThe configuration will be stored in the m5out/ directory
8511832SChristian.Menard@tu-dresden.de
8610993Sjungma@eit.uni-kl.deThe binary 'gem5.opt.sc' can now be used to load in the generated config
8710993Sjungma@eit.uni-kl.defile from the previous normal gem5 run.
8810993Sjungma@eit.uni-kl.de
8910993Sjungma@eit.uni-kl.deTry:
9010993Sjungma@eit.uni-kl.de
9110993Sjungma@eit.uni-kl.de> ./gem5.opt.sc m5out/config.ini -o 2147483648
9210993Sjungma@eit.uni-kl.de
9311832SChristian.Menard@tu-dresden.deThe parameter -o specifies the begining of the memory region (0x80000000).
9411832SChristian.Menard@tu-dresden.deThe system should boot now.
9511099Sabdul.mutaal@gmail.com
9610993Sjungma@eit.uni-kl.deFor conveniance a run_gem5.sh file holds all those commands
9711791Sjungma@eit.uni-kl.de