All Projects → olofk → Fusesoc

olofk / Fusesoc

Licence: bsd-2-clause
Package manager and build abstraction tool for FPGA/ASIC development

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Fusesoc

Kactus2dev
Kactus2 is a graphical EDA tool based on the IP-XACT standard.
Stars: ✭ 82 (-86.49%)
Mutual labels:  fpga, eda
Open Register Design Tool
Tool to generate register RTL, models, and docs using SystemRDL or JSpec input
Stars: ✭ 126 (-79.24%)
Mutual labels:  fpga, eda
Rggen
Code generation tool for configuration and status registers
Stars: ✭ 54 (-91.1%)
Mutual labels:  fpga, eda
xeda
Cross EDA Abstraction and Automation
Stars: ✭ 25 (-95.88%)
Mutual labels:  fpga, eda
ice-chips-verilog
IceChips is a library of all common discrete logic devices in Verilog
Stars: ✭ 78 (-87.15%)
Mutual labels:  fpga, eda
Edalize
An abstraction library for interfacing EDA tools
Stars: ✭ 270 (-55.52%)
Mutual labels:  fpga, eda
Systemrdl Compiler
SystemRDL 2.0 language compiler front-end
Stars: ✭ 95 (-84.35%)
Mutual labels:  fpga, eda
spydrnet
A flexible framework for analyzing and transforming FPGA netlists. Official repository.
Stars: ✭ 49 (-91.93%)
Mutual labels:  fpga, eda
PeakRDL-ipxact
Import and export IP-XACT XML register models
Stars: ✭ 21 (-96.54%)
Mutual labels:  fpga, eda
PeakRDL-uvm
Generate UVM register model from compiled SystemRDL input
Stars: ✭ 25 (-95.88%)
Mutual labels:  fpga, eda
Vtr Verilog To Routing
Verilog to Routing -- Open Source CAD Flow for FPGA Research
Stars: ✭ 466 (-23.23%)
Mutual labels:  fpga, eda
Beak
A command line interface for your Swift scripts
Stars: ✭ 537 (-11.53%)
Mutual labels:  package-manager
Macports Base
The MacPorts command-line client
Stars: ✭ 502 (-17.3%)
Mutual labels:  package-manager
Embedded Neural Network
collection of works aiming at reducing model sizes or the ASIC/FPGA accelerator for machine learning
Stars: ✭ 495 (-18.45%)
Mutual labels:  fpga
Prjxray
Documenting the Xilinx 7-series bit-stream format.
Stars: ✭ 491 (-19.11%)
Mutual labels:  fpga
Platformio Core
PlatformIO is a professional collaborative platform for embedded development 👽 A place where Developers and Teams have true Freedom! No more vendor lock-in!
Stars: ✭ 5,539 (+812.52%)
Mutual labels:  fpga
Conan
Conan - The open-source C/C++ package manager
Stars: ✭ 5,498 (+805.77%)
Mutual labels:  package-manager
Ostree
Operating system and container binary deployment and upgrades
Stars: ✭ 484 (-20.26%)
Mutual labels:  package-manager
Tornadovm
TornadoVM: A practical and efficient heterogeneous programming framework for managed languages
Stars: ✭ 479 (-21.09%)
Mutual labels:  fpga
Fdroidclient
Android client application.
Stars: ✭ 477 (-21.42%)
Mutual labels:  package-manager

FuseSoC

CI status image LibreCores

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 integration

To learn more about FuseSoC head over to the User Guide.

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.

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 workspace

Install 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 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 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 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.

For quick communication with the active developers, feel free to join us at the FuseSoC chat.

If you have found an issue, or want to know more about currently known problems, check out the issue tracker on GitHub.

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 [email protected] 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.

You can file bug reports and propose changes in the olofk/fusesoc repository on GitHub.

Further reading

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 file for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].