Giter VIP home page Giter VIP logo

gitter-badger / neorv32 Goto Github PK

View Code? Open in Web Editor NEW

This project forked from stnolting/neorv32

0.0 0.0 0.0 179.64 MB

:desktop_computer: A size-optimized, customizable full-scale 32-bit RISC-V soft-core CPU and microcontroller-like SoC written in platform-independent VHDL.

Home Page: https://stnolting.github.io/neorv32

License: BSD 3-Clause "New" or "Revised" License

VHDL 58.08% C 34.95% Makefile 4.21% Assembly 1.00% Shell 0.24% Tcl 0.87% Verilog 0.42% Python 0.20% Dockerfile 0.04%

neorv32's Introduction

GitHub Pages Documentation
riscv-arch-test Processor Implementation Windows

NEORV32

The NEORV32 RISC-V Processor

license release DOI

datasheet (pdf) datasheet (html) userguide (pdf) userguide (html) doxygen

  1. Overview
    1. Key Features
  2. Processor/SoC Features
    1. FPGA Implementation Results
  3. CPU Features
    1. Available ISA Extensions
    2. FPGA Implementation Results
    3. Performance
  4. Software Framework & Tooling
  5. Getting Started ๐Ÿš€

1. Overview

neorv32 Overview

The NEORV32 Processor is a customizable microcontroller-like system on chip (SoC) that is based on the RISC-V NEORV32 CPU. The project is intended as auxiliary processor in larger SoC designs or as ready-to-go stand-alone custom / customizable microcontroller.

Special focus is paid on execution safety to provide defined and predictable behavior at any time. Therefore, the CPU ensures that all memory access are acknowledged and no invalid/malformed instructions are executed. Whenever an unexpected situation occurs, the application code is informed via hardware exceptions.

โ„น๏ธ Want to know more? Check out the project's rationale.

๐Ÿ“š For detailed information take a look at the NEORV32 documentation (online at GitHub-pages). The doxygen-based documentation of the software framework is also available online at GitHub-pages.

๐Ÿท๏ธ The project's change log is available in CHANGELOG.md. To see the changes between official releases visit the project's release page.

๐Ÿ“ฆ The setups folder provides exemplary setups targeting various FPGA boards and toolchains to get you started. Several example programs (including a FreeRTOS port) to be run on your setup can be found in sw/example.

๐Ÿช Upstream Zephyr RTOS support.

๐Ÿ—’๏ธ Check out the project boards for a list of current ideas, TODOs, features being planned and work-in-progress.

๐Ÿ’ก Feel free to open a new issue or start a new discussion if you have questions, comments, ideas or if something is not working as expected. Check out how to contribute in CONTRIBUTE.md.

๐Ÿš€ Check out the quick links below or directly jump to the User Guide to get started setting up your NEORV32 setup!

Project Key Features

  • all-in-one: CPU plus Processor/SoC plus Software Framework & Tooling
  • completely described in behavioral, platform-independent VHDL - no primitives, macros, etc.
  • fully synchronous design, no latches, no gated clocks
  • be as small as possible while being as RISC-V-compliant as possible โ€“ but with a reasonable size-performance trade-off: the processor (CPU including privileged architecture) fits into a Lattice iCE40 UltraPlus 5k low-power FPGA running at 24 MHz
  • from zero to printf("hello world!"); - completely open source and documented
  • easy to use even for FPGA/RISC-V starters โ€“ intended to work out of the box

[back to top]

2. NEORV32 Processor Features

The NEORV32 Processor (top entity: rtl/core/neorv32_top.vhd) provides a full-featured SoC build around the NEORV32 CPU. It is highly configurable via generics to allow a flexible customization according to your needs. Note that all modules listed below are optional. In-depth detailed information regarding the processor/SoC can be found in the ๐Ÿ“š online documentation - "NEORV32 Processors (SoC)".

Memory

  • processor-internal data and instruction memories (DMEM / IMEM) & cache (iCACHE)
  • bootloader (BOOTLDROM) with serial user interface
    • supports boot via UART or from external SPI flash

Timers

  • machine system timer (MTIME), RISC-V spec. compatible
  • watchdog timer (WDT)

IO

SoC Connectivity and Integration

  • 32-bit external bus interface, Wishbone b4 compatible (WISHBONE)
    • wrapper for AXI4-Lite master interface
    • wrapper for Avalon-MM master interface
  • 32-bit stream link interface with up to 8 independent RX and TX links (SLINK)
    • AXI4-Stream compatible
  • external interrupt controller with up to 32 channels (XIRQ)
  • custom functions subsystem (CFS) for tightly-coupled custom co-processor extensions

Advanced

โ„น๏ธ It is recommended to use the processor setup even if you want to use the CPU in stand-alone mode. Just disable all optional processor-internal modules via the according generics and you will get a "CPU wrapper" that provides a minimal CPU environment and an external memory interface (like AXI4). This minimal setup allows to further use the default bootloader and software framework. From this base you can start building your own processor system.

[back to top]

FPGA Implementation Results - Processor

The hardware resources used by a specific processor setup is defined by the implemented CPU extensions (see below), the configuration of the peripheral modules and some "glue logic". Section "FPGA Implementation Results - Processor Modules" of the online datasheet shows the resource utilization of each optional processor module to allow an estimation of the actual setup's hardware requirements.

โ„น๏ธ The setups folder provides exemplary FPGA setups targeting various FPGA boards and toolchains. These setups also provide resource utilization reports for different SoC configurations

[back to top]

3. NEORV32 CPU Features

๐Ÿ“š In-depth detailed information regarding the CPU can be found in the online documentation - "NEORV32 Central Processing Unit".

The CPU (top entity: rtl/core/neorv32_cpu.vhd) implements the RISC-V 32-bit rv32 ISA with optional extensions (see below). It is compatible to subsets of the Unprivileged ISA Specification (Version 2.2) and the Privileged Architecture Specification (Version 1.12-draft). Compatibility is checked by passing the official RISC-V architecture tests (see sim/README).

The core is a little-endian Von-Neumann machine implemented as multi-cycle architecture. However, the CPU's front end (instruction fetch) and back end (instruction execution) can work independently to increase performance. Currently, three privilege levels (machine and optional user and debug_mode) are supported. The CPU implements all three standard RISC-V machine interrupts (MTI, MEI, MSI) plus 16 fast interrupt requests as custom extensions. It also supports all standard RISC-V exceptions (instruction/load/store misaligned address & bus access fault, illegal instruction, breakpoint, environment calls).

Available ISA Extensions

Currently, the following optional RISC-V-compatible ISA extensions are implemented (linked to the according documentation section). Note that the X extension is always enabled.

RV32 [I/ E] [A] [B] [C] [M] [U] [X] [Zfinx] [Zicsr] [Zicntr] [Zihpm] [Zifencei] [Zmmul] [PMP] [DEBUG]

โš ๏ธ The B, Zfinx and Zmmul RISC-V extensions are frozen but not officially ratified yet. Hence, there is no upstream gcc support. To circumvent this, the NEORV32 software framework provides intrinsic libraries for these extensions.

[back to top]

FPGA Implementation Results - CPU

Implementation results for exemplary CPU configuration generated for an Intel Cyclone IV EP4CE22F17C6N FPGA using Intel Quartus Prime Lite 20.1 ("balanced implementation"). The timing information is derived from the Timing Analyzer / Slow 1200mV 0C Model. No constraints were used at all.

Results generated for hardware version 1.5.7.10.

CPU Configuration LEs FFs Memory bits DSPs (9-bit) f_max
rv32i 806 359 1024 0 125 MHz
rv32i_Zicsr_Zicntr 1729 813 1024 0 124 MHz
rv32imac_Zicsr_Zicntr 2511 1074 1024 0 124 MHz

โ„น๏ธ An incremental list of CPU extension's hardware utilization can found in online documentation - "FPGA Implementation Results - CPU".

โ„น๏ธ The CPU provides options to further reduce the footprint (for example by constraining the CPU-internal counters). See the online data sheet for more information.

[back to top]

Performance

The NEORV32 CPU is based on a two-stages pipelined architecture. Since both stage use a multi-cycle processing scheme, each instruction requires several clock cycles to execute (2 cycles for ALU operations, up to 40 cycles for divisions). The average CPI (cycles per instruction) depends on the instruction mix of a specific applications and also on the available CPU extensions.

The following table shows the performance results (relative CoreMark score and average cycles per instruction) for exemplary CPU configuration running 2000 iterations of the CoreMark CPU benchmark. The source files are available in sw/example/coremark.

โ„น๏ธ A simple port of the Dhrystone benchmark is also available: sw/example/dhrystone

**CoreMark Setup**
Hardware:       32kB IMEM, 8kB DMEM, no caches, 100MHz clock
CoreMark:       2000 iterations, MEM_METHOD is MEM_STACK
Compiler:       RISCV32-GCC 10.1.0 (rv32i toolchain)
Compiler flags: default, see makefile; optimization -O3

Results generated for hardware version 1.5.7.10.

CPU Configuration CoreMark Score CoreMarks/MHz Average CPI
small (rv32i_Zicsr) 33.89 0.3389 4.04
medium (rv32imc_Zicsr) 62.50 0.6250 5.34
performance (rv32imc_Zicsr + perf. options) 95.23 0.9523 3.54

โ„น๏ธ More information regarding the CPU performance can be found in the online documentation - "CPU Performance".

[back to top]

4. Software Framework and Tooling

๐Ÿ“š In-depth detailed information regarding the software framework can be found in the online documentation - "Software Framework".

  • core libraries for high-level usage of the provided functions and peripherals
  • application compilation based on GNU makefiles
  • gcc-based toolchain (pre-compiled toolchains available)
  • bootloader with UART interface console
  • runtime environment for handling traps
  • several example programs to get started including CoreMark, FreeRTOS and Conway's Game of Life
  • doxygen-based documentation, available on ๐Ÿ“š GitHub pages
  • supports implementation using open source tooling (GHDL, Yosys and nextpnr; in the future Verilog-to-Routing); both, software and hardware can be developed and debugged with open source tooling
  • continuous integration :octocat: is available for:
    • allowing users to see the expected execution/output of the tools
    • ensuring specification compliance
    • catching regressions
    • providing ready-to-use and up-to-date bitstreams and documentation

[back to top]

5. Getting Started

This overview provides some quick links to the most important sections of the online Data Sheet and the online User Guide.

๐Ÿ”Œ Hardware Overview

๐Ÿ’พ Software Overview

๐Ÿš€ User Guides (see full User Guide)

ยฉ๏ธ Legal

  • Overview - license, disclaimer, proprietary notice, ...
  • Citing - citing information (DOI)
  • Impressum - imprint (๐Ÿ‡ฉ๐Ÿ‡ช)

[back to top]

Acknowledgements

A big shoutout to all contributors, who helped improving this project! โค๏ธ

RISC-V - Instruction Sets Want To Be Free!

Continous integration provided by :octocat: GitHub Actions and powered by GHDL.


Made with โ˜• in Hanover, Germany ๐Ÿ‡ช๐Ÿ‡บ

neorv32's People

Contributors

awenzel83 avatar gottschalkm avatar henrikbrixandersen avatar jeremyherbert avatar larsasplund avatar pcotret avatar rafaelcorsi avatar stnolting avatar tmeissner avatar torerams avatar umarcor avatar zipotron avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.