Skip to content

A collection of HDL cores written in MyHDL.

License

LGPL-3.0, GPL-3.0 licenses found

Licenses found

LGPL-3.0
COPYING.LESSER
GPL-3.0
COPYING
Notifications You must be signed in to change notification settings

nkavaldj/minnesota

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NOTE the following is a work-in-progress (WIP) and has not reached a minor release point. If you happen to come across this public repository feel free to try it out and contribute. This repository will be unstable until the first minor release 0.1.

Documentation Status Build Status Join the chat at https://gitter.im/cfelton/minnesota

minnesota (mn)

The minnesota python package is a collection of HDL cores written in MyHDL. The myhdl package can be retrieved from http://www.myhdl.org

Some of the examples have an additional dependency, the gizflo package. The gizflo package is used to manage different development boards and simplify the FPGA tool flow. See the FPGA compile templates in the examples directory for various boards.

IMPORTANT NOTE this repository is under development and is using features from a development version of MyHDL (0.9dev). If you wish to try out this package get the development myhdl (you will need to clone it and install the source). The first mn release will not occur until myhdl 0.9 is released (probably much later).

This code/package is licensed user the LGPL license. This allows anyone to use the package in their projects with no limitations but if the code in the mn package is modified those modifications need to be made available to the public (not the code the cores are used in or with). Questions and other license options email me.

The following are the definition of some terms used in this README :

  • cores : the building blocks of a system. Also, know as IP (intellectual property).

  • system : the digital design being implement, synonymous with system-on-a-chip, not using the term system-on-a-chip (SoC) because SoC it is typically reserved for systems that contains a CPU. In this document and the example the system can be a SoC or other complex digital design.

  • register : collection of bits that retain state.

  • register file : collection of same-sized registers, a register file is organized into read-write entities and read-only entities. A register-file is a programming/configuration interface to a core.

  • CSR: control and status registers also known as config and status.
    This term is commonly used for the memory-mapped interface to the cores.

getting started

To get started with the latest version (repo version) checkout out the code and run setup in develop mode.

Dependencies:

  • myhdl
  • py.test
  • gizflo (optional)

Install the latest myhdl.

  # get the required python packages, myhdl, gizflo,
  # and the latest minnesota package.
  >> git clone https://github.com/jandecaluwe/myhdl
  >> sudo python setup.py install
  >> cd ..

or

  >> pip install git+https://github.com/jandecaluwe/myhdl

See www.myhdl.org for information on myhdl, the mn package requires a 0.9 feature -interfaces-. After 0.9 is release the official myhdl releases should be used. Refer to the myhdl mailing-list for more information.

Install the FPGA build package (optional only needed to build the example bitstreams).

  # FPGA build and misc HDL tools
  >> git clone https://github.com/cfelton/gizflo
  >> cd gizflo
  >> sudo python setup.py install 
  >> cd ..

After the dependencies have been installed clone this repository to get started.

  >> git clone https://github.com/cfelton/minnesota
  >> cd minnesota
  # requires setuptools
  >> python setup.py develop

The tests can be run from the test directory.

  # attempt to run the tests
  >> cd test
  >> py.test

If the gizflo package was installed and the FPGA vendor tools are installed attempt to build one of the example projects.

  # try to compile one of the examples 
  # (requires FPGA tools installed and gizflo)
  >> cd ../examples/boards/nexys/fpgalink
  >> python test_fpgalink.py
  >> python compile_fpgalink.py

test

The test directory contains test for the different cores in the package.

Run the tests in the test directory:

>> cd test
>> py.test

Run the tests in the examples directory:

>> cd examples
>> py.test

examples

In the examples directory are projects that demonstrate how to build systems using the cores and various tools and target a particular FPGA development board. As mentioned above the examples have an additional dependency, gizflo to create the actual bitstreams.

About

A collection of HDL cores written in MyHDL.

Resources

License

LGPL-3.0, GPL-3.0 licenses found

Licenses found

LGPL-3.0
COPYING.LESSER
GPL-3.0
COPYING

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 86.4%
  • Verilog 10.4%
  • VHDL 3.1%
  • Shell 0.1%