From 441093ff8e38a23d3c9808990aed418d502b98da Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Fri, 23 Apr 2021 20:54:56 +0100 Subject: [PATCH] update README --- README.md | 76 ++++++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 70 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index b6c7b59a..28705179 100644 --- a/README.md +++ b/README.md @@ -1,24 +1,88 @@ # OpenPOWER ISA resources -OpenPOWER ISA resources, including a python-based simulator. -Includes machine-readable versions of the OpenPOWER v3.0B -specification, from which the python-based simulator is -compiled (python-ply) into python. Additional languages -(c, c++) are planned. +OpenPOWER ISA resources, including a python-based simulator plus thousands +of OpenPOWER ISA unit tests. Includes machine-readable versions of the +OpenPOWER v3.0B specification, from which the python-based simulator +is compiled (python-ply) into python. Additional languages (c, c++) +are planned. Also planned: co-simulation of power-gem5, microwatt, +and other HDL and emulators. Part of the Libre-SOC Project (http://libre-soc.org) Sponsored by http://nlnet.nl # Installation +Prerequisites: qemu, powerpc64-linux-gnu-gcc and associated binutils and +gdb, pygdbmi, nmigen and nmutil are needed. Make life easy: use debian, +and the following scripts: + +* https://git.libre-soc.org/?p=dev-env-setup.git;a=blob;f=ppc64-gdb-gcc +* https://git.libre-soc.org/?p=dev-env-setup.git;a=blob;f=install-hdl-apt-reqs +* https://git.libre-soc.org/?p=dev-env-setup.git;a=blob;f=pia-install + +Once those are sorted, installation and setup is as follows: + ``` - python setup.py develop + python3 setup.py develop make svanalysis make pywriter ``` +# Usage + +Usage depends on what your goal is. The python-based simulator is in no +way intended to win any speed contests: it's designed for "readability". +Additionally, running qemu via pygdmi and extracting its register file +is equally horribly slow. To demonstrate, run the following: + + python3 openpower/simulator/test_sim.py + +This will do the following: + +* compile each of the (tiny) programs in the test +* extract the raw binary +* fire up the python-based simulator (ineptly named ISACaller) +* fire up qemu using the machine interface pygdbmi +* single-step through both ISACaller and qemu, extracting full regfiles + and memory +* compare them both and throw exceptions on detected discrepancies + +This should be pretty obvious as to why this is done: it's checking +one simulator against another (and has found bugs in qemu as a result). + +What if you could then also run the same unit tests against *your own +hardware*, or against say Microwatt, or Libre-SOC, or against your +own emulator? + +Given that this is a work-in-progress, so far the only external HDL +that uses these unit tests is Libre-SOC's very simple TestIssuer: +https://git.libre-soc.org/?p=soc.git;a=blob;f=src/soc/simple/test/test_issuer.py + +The ISACaller itself of course needed to bootstrap up by having unit +tests that explicitly and clearly checked against expected values. Example: + + python openpower/decoder/isa/test_caller.py + +These tests pre-prepare the register files, then check afterwards that +the result of operation is as expected. In this way, at least basic +functionality of ISACaller can be confirmed in a stand-alone fashion +(useful if you do not wish to install qemu etc. etc. etc.) + +# Contributions + +Contributions are welcomed as this is a collaborative Libre Project. +Libre-SOC is covered by the following dead-simple Charter: + + https://libre-soc.org/charter/ + +Contributions even to the Charter, in the form of appropriate Dilbert +cartoons especially appreciated: + + https://libre-soc.org/charter/discussion/ + # Copyrights All programs are written by Libre-SOC team members are LGPLv3+. However the specification and the CSV files came from their respective Copyright holders (IBM, OpenPOWER Foundation, Microwatt) + -- 2.30.2