Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/olofk/fusesoc
Package manager and build abstraction tool for FPGA/ASIC development
https://github.com/olofk/fusesoc
eda fpga package-manager python reuse verilog vhdl
Last synced: 2 days ago
JSON representation
Package manager and build abstraction tool for FPGA/ASIC development
- Host: GitHub
- URL: https://github.com/olofk/fusesoc
- Owner: olofk
- License: bsd-2-clause
- Created: 2014-02-18T21:27:06.000Z (almost 11 years ago)
- Default Branch: main
- Last Pushed: 2024-11-07T07:21:43.000Z (about 1 month ago)
- Last Synced: 2024-11-17T13:50:08.144Z (26 days ago)
- Topics: eda, fpga, package-manager, python, reuse, verilog, vhdl
- Language: Python
- Homepage:
- Size: 2.37 MB
- Stars: 1,204
- Watchers: 65
- Forks: 246
- Open Issues: 150
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS
- License: LICENSE
Awesome Lists containing this project
- ARM-Guide - FuseSoC - winning package manager and a set of build tools for HDL (Hardware Description Language) code and FPGA/ASIC development. (FPGA Tools)
- awesome-hdl - fusesoc - Package manager and a set of build tools for HDL. (Other Design Automation tools)
- awesome-opensource-hardware - fusesoc
- awesome-open-hardware-verification - FuseSoc
- amx-guide - FuseSoC - winning package manager and a set of build tools for HDL (Hardware Description Language) code and FPGA/ASIC development. (FPGA Tools)
- amx-guide - FuseSoC - winning package manager and a set of build tools for HDL (Hardware Description Language) code and FPGA/ASIC development. (FPGA Tools)
README
# FuseSoC
[![CI status](https://github.com/olofk/fusesoc/workflows/CI/badge.svg)](https://github.com/olofk/fusesoc/actions?query=workflow%3ACI)
[![image](https://img.shields.io/pypi/dm/fusesoc.svg?label=PyPI%20downloads)](https://pypi.org/project/fusesoc/)## Introduction
FuseSoC is an award-winning package manager and a set of build tools for
HDL (Hardware Description Language) code.Its main purpose is to increase reuse of IP (Intellectual Property)
cores and be an aid for creating, building and simulating SoC solutions.FuseSoC makes it easier to
- reuse existing cores
- create compile-time or run-time configurations
- run regression tests against multiple simulators
- port designs to new targets
- let other projects use your code
- set up continuous integrationTo learn more about FuseSoC head over to the
[User Guide](https://fusesoc.readthedocs.io/en/stable/user).## Getting started
### Installing the latest release
FuseSoC works on Linux, Windows, and macOS. It is written in Python and can be
installed like any other Python package through "pip". Please refer to the
full list of system requirements and installation instructions in the
[Installation section in the User Guide](https://fusesoc.readthedocs.io/en/stable/user/installation.html).### Quick start
To check if FuseSoC is working, and to get an initial feeling for how FuseSoC
works, you can try to simulate a simple hardware design from our core libray.First, create and enter an empty workspace
mkdir workspace
cd workspaceInstall the FuseSoc base library into the workspace
fusesoc library add fusesoc-cores https://github.com/fusesoc/fusesoc-cores
Get a list of cores found in the workspace
fusesoc core list
If you have any of the supported simulators installed, you can try to
run a simulation on one of the cores as well. For example,
`fusesoc run --target=sim i2c` will run a regression test on the core
i2c with Icarus Verilog. If you want to try another simulator instead,
add e.g. `--tool=modelsim` or `--tool=xcelium` between `run` and `i2c`.`fusesoc --help` will give you more information on commands and switches.
Did it work? Great! FuseSoC can be used to create FPGA images, perform
linting, manage your IP libraries or do formal verification as well.
Check out the [online documentation](https://fusesoc.readthedocs.io/en/stable/)
documentation to learn more about creating your own core files and using
existing ones. If it didn't work, please get in touch (see below).## Next steps
A good way to get your first hands-on experience with FuseSoC is to
contribute to the [LED to Believe](https://github.com/fusesoc/blinky)
project. This project aims to used FuseSoC to blink a LED on every
available FPGA development board in existence. There are already around
40 different boards supported. If your board is already supported,
great, then you can run your first FuseSoC-based design. If it's not
supported, great, you now have the chance to add it to the list of
supported boards. Either way, head over to [LED to
Believe](https://github.com/fusesoc/blinky) to learn more and see how to
go from a blinking LED to running a RISC-V core on an FPGA.## Need help?
FuseSoC comes with extensive
[online documentation](https://fusesoc.readthedocs.io/en/stable/index.html).For quick communication with the active developers, feel free to join us at the
[FuseSoC chat](https://gitter.im/librecores/fusesoc).If you have found an issue, or want to know more about currently known problems,
check out the
[issue tracker on GitHub](https://github.com/olofk/fusesoc/issues).If you are looking for professional paid support, we are happy to
provide feature additions, bug fixes, user training, setting up core
libraries, migrating existing designs to FuseSoC and other things.
Please contact for more information.## Contributing to FuseSoC
FuseSoC is developed by an active and friendly community, and you're welcome to
join! You can read more about setting up a development environment in our
[Developer's Guide](https://fusesoc.readthedocs.io/en/latest/dev/index.html).You can file bug reports and propose changes in the [olofk/fusesoc repository on GitHub](https://github.com/olofk/fusesoc).
## Further reading
* A Scalable Approach to IP Management with FuseSoC [paper](https://osda.gitlab.io/19/kindgren.pdf) and [slides](https://osda.gitlab.io/19/kindgren-slides.pdf) from OSDA 2019
* Antmicro blog post on [how to use FuseSoC as a linter](https://antmicro.com/blog/2020/04/systemverilog-linter-and-formatter-in-fusesoc/)
* [FuseSoC-related posts on the Tales from Beyond the Register Map blog](https://blog.award-winning.me/search/label/FuseSoC)
* [Presentation from RISC-V Week 2022](https://www.award-winning.me/fusesoc-rvweek22)
* [Presentation from Latch-Up Portland 2019](https://www.youtube.com/watch?v=7eWRAOK9mns)
* [Presentation from WOSH 2019](https://www.youtube.com/watch?v=HOFYplIBSWM)
* [Presentation from ORConf 2017](https://www.youtube.com/watch?v=iPpT9k_H67k)
* [Presentation from ORConf 2016](https://www.youtube.com/watch?v=pKlJWe_HKPM)## License
FuseSoC is licensed under the permissive 2-clause BSD license, freely allowing
use, modification, and distribution of FuseSoC for all kinds of projects.
Please refer to the [LICENSE](LICENSE) file for details.