This directory contains the library needed to use gem5 TimingSimpleCPU model in an SST-driven simulation.
When compiled, the gem5 library for SST libgem5.so
will be generated, containing the libgem5_*.so
as well as the gem5 Component and the SST Responder SubComponent.
On/Off-chip devs TimingSimpleCPU ^ ^ ^ | | | v v v ==================================== [gem5::NonCoherentXBar] ^ [OutgoingRequestBridge] gem5_system_port | [OutgoingRequestBridge] ^ | | | [SSTResponder] v v [SSTResponder] gem5 Component {SSTResponderSubComponent, SSTResponderSubComponent} ^ ^ | | v v ================================== [SST Bus] ^ | v SST cache <----> SST memory
gem5 Component has the following responsibilities,
SSTResponderSubComponent has the responsibity of receiving requests from gem5, translating requests to an SST Request and sending it to SSTResponder. Upon receiving a response from the memory interface, SSTResponderSubComponent will translate the response to a gem5 Packet and send it to the its OutgoingRequestBridge.
SSTResponder is owned by SSTResponderSubComponent. The responder will receive the request from the SubComponent and send it to the SST memory hierarchy.
See INSTALL.md
.
Downloading the built bootloader containing a Linux Kernel and a workload,
wget http://dist.gem5.org/dist/v22-0/misc/riscv/bbl-busybox-boot-exit
Running the simulation
sst --add-lib-path=./ sst/example.py
The example SST system configuration will instantiate the gem5 system as specified in the gem5 system configuration located at gem5/configs/example/sst/riscv_fs.py
. This configuration will download the bbl-busybox-boot-exit
resource, which contains an m5 binary, and m5 exit
will be called upon the booting process reaching the early userspace. More information about building a bootloader containing a Linux Kernel and a customized workload is available at [https://gem5.googlesource.com/public/gem5-resources/+/refs/heads/stable/src/riscv-boot-exit-nodisk/].
Download the prebuilt bootloader and Linux Kernel with embedded initramfs and extract them under the $M5_PATH directory (make sure M5_PATH points to a valid directory):
wget http://dist.gem5.org/dist/v22-0/arm/aarch-sst-20211207.tar.bz2 tar -xf aarch-sst-20211207.tar.bz2 # copying bootloaders cp binaries/boot* $M5_PATH/binaries/ # copying Linux Kernel cp binaries/vmlinux_exit.arm64 $M5_PATH/binaries/
vmlinux_exit.arm64
contains an m5 binary, and m5 exit
will be called upon the booting process reaching the early userspace.
Run the simulation:
sst sst/arm_example.py