Merge branch 'master' into cacao
[yari.git] / README
blobef0443b460c997110302fff3a56d9d093c11391e
1               YARI -- Yet Another RISC Implementation
3 Last update: 2008-01-25
5 INTRODUCTION
7 YARI is an high performance soft core RISC implementation, binary
8 compatible with a subset of MIPS R3000.
10 This README will be out of date at the time you read this, but the
11 implementation currently comprises:
13 - A reference simulator which closely matches the RTL implementation
14   (in fact they co-simulate).
16 - A few regression and tests programs
17 - An RTL (Verilog) implementation
19   Core features:
20   + an eight stage pipeline.
21   + a 4-way associative write-through instruction cache (default 8 KiB)
22   + a 4-way associative write-through data cache (default 16 KiB)
23   + a store buffer
24   + all of the integer user-level instructions supported
26   Peripherals (depending on the target)
27   + SRAM interface (32-bit and 16-bit)
28   + Serial in/out
30   Simulation
31   + Enough support to fully simulate the RTL with Icarus Verilog.
32   + Co-simulation against the reference simulator supported
34   Synthesis
35   + Multiple target platforms supported (currently only Altera based)
36   + Runs (last it ran) happily at 50+ MHz.
38 - A boot loader pre-loaded into the I$ - will load programs over the
39   serial port.
41 - Assorted tools to turn the elf binaries into ROM and RAM images.
45 GETTING STARTED
47 There are a few prerequisites for full YARI enjoyment:
49 - For building any test programs: Cross compilation tool much be built
50   (mips-elf-gcc, etc).  The script xtools/BUILD is what I used to
51   build them
53 - For simulation: Icarus Verilog.  Great stuff.  Get the most recent
54   version from http://www.icarus.com/eda/verilog
56 - For synthesis: currently I've only tested with Quartus 7.2sp1.  Get it
57   for free from http://www.altera.com (alas, only works with Windows,
58   whereas everything else here expects Linux).
60 With the Icarus Verilog installed you should be able to simply run
62   make rtlsim
64 and see the trace of instructions as the Verilog implementation makes
65 it through a small self-checking regression test.
67 For more interesting workloads, try
69   make -C testcases VERB= PROG=buzzard isasim
71 or try co-simulation
73   make -C testcases VERB= PROG=fib cosim
76 Tommy