ossc/README.md

120 lines
5.2 KiB
Markdown
Raw Normal View History

2016-02-22 23:03:50 +00:00
Open Source Scan Converter
==============
2017-05-04 13:29:00 +00:00
Open Source Scan Converter is a low-latency video digitizer and scan conversion board designed mainly for connecting retro video game consoles and home computers into modern displays. Please check the [wikipage](http://junkerhq.net/xrgb/index.php?title=OSSC) for more detailed description and latest features.
2017-04-02 22:28:19 +00:00
Requirements for building and debugging firmware
---------------------------------------------------
* Hardware
* OSSC board
* USB Blaster compatible JTAG debugger, e.g. Terasic Blaster (for FW installation and debugging)
* micro SD/SDHC card (for FW update via SD card)
* Software
* [Altera Quartus II + Cyclone IV support](http://dl.altera.com/?edition=lite) (v 16.1 or higher - free Lite Edition suffices)
2018-10-07 21:37:42 +00:00
* [RISC-V GNU Compiler Toolchain](https://github.com/riscv/riscv-gnu-toolchain)
2017-04-02 22:28:19 +00:00
* GCC (or another C compiler) for host architecture (for building a SD card image)
* Make
* [iconv](https://en.wikipedia.org/wiki/Iconv) (for building with JP lang menu)
Architecture
------------------------------
2018-10-07 21:37:42 +00:00
* [Reference board schematics](https://github.com/marqs85/ossc_pcb/raw/v1.6/ossc_board.pdf)
2017-04-02 22:28:19 +00:00
* [Reference PCB project](https://github.com/marqs85/ossc_pcb)
2018-10-07 21:37:42 +00:00
SW toolchain build procedure
2017-04-02 22:28:19 +00:00
--------------------------
2018-10-07 21:37:42 +00:00
1. Download, configure, build and install RISC-V toolchain with Newlib + multilib support:
2017-04-02 22:28:19 +00:00
~~~~
2018-10-07 21:37:42 +00:00
git clone --recursive https://github.com/riscv/riscv-gnu-toolchain
cd riscv-gnu-toolchain
./configure --prefix=/opt/riscv --enable-multilib
make
make install
2017-04-02 22:28:19 +00:00
~~~~
2018-10-07 21:37:42 +00:00
2. Compile custom binary to IHEX converter:
2017-04-02 22:28:19 +00:00
~~~~
2018-10-07 21:37:42 +00:00
gcc tools/bin2hex.c -o tools/bin2hex
2017-04-02 22:28:19 +00:00
~~~~
2017-10-25 21:56:07 +00:00
2018-10-07 21:37:42 +00:00
Building software image
--------------------------
1. Enter software root directory:
2017-04-02 22:28:19 +00:00
~~~~
cd software/sys_controller
~~~~
2018-10-07 21:37:42 +00:00
2. Build SW for target configuration:
2017-04-02 22:28:19 +00:00
~~~~
2017-10-25 21:56:07 +00:00
make [OPTIONS] [TARGET]
2017-04-02 22:28:19 +00:00
~~~~
2017-10-25 21:56:07 +00:00
OPTIONS may include following definitions:
* OSDLANG=JP (Japanese language menu)
* ENABLE_AUDIO=y (Includes audio setup code for v1.6 PCB / DIY audio add-on board)
TARGET is typically one of the following:
2018-10-07 21:37:42 +00:00
* all (Default target. Compiles an ELF for direct downloading to CPU during testing)
2017-10-25 21:56:07 +00:00
* generate_hex (Generates a memory initialization file required for bitstream)
* clean (cleans ELF and intermediate files. Should be invoked every time OPTIONS are changed between compilations, expect with generate_hex where it is done automatically)
2018-10-07 21:37:42 +00:00
3. Optionally test updated SW by directly downloading ELF to CPU via JTAG
2017-04-02 22:28:19 +00:00
~~~~
2018-10-07 21:37:42 +00:00
make rv-reprogram
2017-04-02 22:28:19 +00:00
~~~~
2018-10-07 21:37:42 +00:00
Building RTL (bitstream)
2017-04-02 22:28:19 +00:00
--------------------------
2018-10-07 21:37:42 +00:00
1. Initialize pulpino submodules (once after cloning ossc project)
~~~~
git submodule update --init --recursive ip/pulpino_qsys
~~~~
2. Load the project (ossc.qpf) in Quartus
3. Generate the FPGA bitstream (Processing -> Start Compilation). NOTE: make sure software hex image (software/sys_controller/mem_init/sys_onchip_memory2_0.hex) is up to date before generating bitstream.
4. Ensure that there are no severe timing violations by looking into Timing Analyzer report
2017-04-02 22:28:19 +00:00
If only software image is updated, bitstream can be quickly rebuilt by running "Processing->Update Memory Initialization File" and "Processing->Start->Start Assembler" in Quartus.
2017-10-25 21:56:07 +00:00
Installing firmware via JTAG
2017-04-02 22:28:19 +00:00
--------------------------
The bitstream can be either directly programmed into FPGA (volatile method, suitable for quick testing), or into serial flash chip where it is automatically loaded every time FPGA is subsequently powered on (nonvolatile method, suitable for long-term use).
To program FPGA, open Programmer in Quartus, select your USB Blaster device, add configuration file (output_files/ossc.sof) and press Start
To program flash, FPGA configuration file must be first converted into JTAG indirect Configuration file (.jic). Open conversion tool ("File->Convert Programming Files") in Quartus, click "Open Conversion Setup Data", select "ossc.cof" and press Generate. Then open Programmer, add generated file (output_files/ossc.jic) and press Start after which flash is programmed. Installed/updated firmware is activated after power-cycling the board.
2017-10-25 21:56:07 +00:00
Generating SD card image
--------------------------
Bitstream file (Altera propiertary format) must be wrapped with custom header structure (including checksums) so that it can be processed reliably on the CPU. This can be done with included helper application which generates a disk image which can written to a SD card and subsequently loaded on OSSC:
1. Compile tools/create_fw_img.c
~~~~
cd tools && gcc create_fw_img.c -o create_fw_img
~~~~
2. Generate the firmware image:
~~~~
./create_fw_img <rbf> <version> [version_suffix]
~~~~
where
* \<rbf\> is RBF format bitstream file (typically ../output_files/ossc.rbf)
* \<version\> is version string (e.g. 0.78)
* \[version_suffix\] is optional max. 8 character suffix name (e.g. "mytest")
2017-04-02 22:28:19 +00:00
Debugging
--------------------------
1. Rebuild the software in debug mode:
~~~~
2017-10-25 21:56:07 +00:00
make clean && make APP_CFLAGS_DEBUG_LEVEL="-DDEBUG"
2017-04-02 22:28:19 +00:00
~~~~
2017-10-25 21:56:07 +00:00
NOTE: Fw update functionality via SD card is disabled in debug builds due to code space limitations. If audio support is enabled on debug build, other functionality needs to be disabled as well.
2018-10-07 21:37:42 +00:00
2. Program CPU via JTAG and open terminal for UART
2017-04-02 22:28:19 +00:00
~~~~
2018-10-07 21:37:42 +00:00
make rv-reprogram && nios2-terminal
2017-04-02 22:28:19 +00:00
~~~~
Remember to close nios2-terminal after debug session, otherwise any JTAG transactions will hang/fail.