Menu

Tree [r23] /
 History

HTTPS access


File Date Author Commit
 trunk 2009-05-08 psuggate [r23] Should be almost everything now.
 LICENSE 2009-05-03 psuggate [r2] Just building RTL skeleton.
 README.txt 2009-05-04 psuggate [r7] Should be almost everything now.

Read Me

	The OpenVGA Open Graphics Adapter
	Copyright 2009 Patrick Suggate



1.0 What is OpenVGA?

OpenVGA is an open-source hardware graphics adapter project. The project has a PCB design, the Verilog describing the logic within the FPGA (including processors, a memory controller, a PCI to Wishbone bridge, and a fast data-cache), a simple Linux kernel module, and some miscellaneous tools. The tools include a TTA assembler, the RISC16 assembler, a CRT simulator, and some scripts for data conversion tasks.

Currently OpenVGA will display data written to it, via the PCI bus, on an attached VGA monitor. Some more work is needed to allow it to function as a PC's primary display adapter. This is mostly firmware plus a tweak to the PCI bridge so that it will request to be a VGA device on system startup.

Also included in this package are components developed by others:
 - A VGA BIOS release, with the current version available from http://www.nongnu.org/vgabios/
 - TTA assembler, written in the Mercury programming language, developed by Roy Ward.



2.0 Verilog Source Simulation and Synthesis Instructions

2.1 Software Requirements:

 - Icarus Verilog for simulation.
 - GtkWave for displaying created waveforms.
 - Xilinx synthesis toolchain, currently expected to be installed to `/opt/Xilinx'
   The following line within rtl/makefile needs to modified if the location is different:
	export XILINX=/opt/Xilinx
 - A working Mercury compiler install if the TTA assembler needs to be (re)built, a working binary is contained within the `bin' folder though.
 - A working Python setup is needed to run the Python scripts within the `tools' folder. wxPython is needed to run a couple of these scripts too.

2.2 Building

 - Synthesising:
	make

 - To simulate:
	make	icarus

 - Assembling:
	make	assemble