Skip to main content

Compile SystemRDL into a SystemVerilog control/status register (CSR) block

Project description

Documentation Status build Coverage Status PyPI - Python Version

PeakRDL-etana

A SystemVerilog register block generator with flattened signal interface

PeakRDL-etana is a powerful register block generator that creates SystemVerilog modules from SystemRDL register descriptions. It features a flattened signal architecture that provides individual signal ports for each hardware interface signal, making integration straightforward in various design flows.

Signal Interface Architecture

PeakRDL-etana uses a flattened signal interface approach instead of SystemVerilog structs:

// Generated interface with individual signals
input wire [7:0] hwif_in_my_reg_my_field,
output logic [7:0] hwif_out_my_reg_my_field,
input wire hwif_in_my_reg_my_field_enable,
output logic hwif_out_my_reg_my_field_ready,

// Direct signal usage - no struct dereferencing needed
assign my_signal = hwif_in_my_reg_my_field;
assign hwif_out_my_reg_my_field_ready = processing_complete;

This approach eliminates the need for complex struct hierarchies and provides:

  • Direct signal access - No struct dereferencing required
  • Tool compatibility - Works with all synthesis and simulation tools
  • Clear naming - Hierarchical signal names maintain organization
  • Easy integration - Simple wire connections in parent modules

Features

  • Flattened signal interface - Individual ports for clean integration
  • Full SystemRDL 2.0 support - Complete standard compliance
  • Multiple CPU interfaces - AMBA APB, AHB, AXI4-Lite, Avalon, and more
  • Integration templates - Auto-generated example modules for easy integration
  • Signal documentation - Comprehensive reports mapping RDL to signals
  • Configurable pipelining - Optimization options for high-speed designs
  • Enhanced safety checks - Width validation and assertion guards
  • Optimized field logic - Improved reset handling and interrupt management
  • Flexible addressing - Support for various memory maps and alignments

Installation

From Source

# Clone the repository
git clone https://github.com/daxzio/PeakRDL-etana.git
cd PeakRDL-etana

# Install in development mode
pip install -e .

From PyPI (when available)

pip install peakrdl-etana

Quick Start

# Generate a register block from SystemRDL
peakrdl etana my_registers.rdl -o output_dir/

# Specify CPU interface type
peakrdl etana my_registers.rdl --cpuif axi4-lite -o output_dir/

# Flatten nested address map components
peakrdl etana my_registers.rdl --flatten-nested-blocks -o output_dir/

# Generate integration template and signal reports
peakrdl etana my_registers.rdl --generate-template --hwif-report -o output_dir/

# Complete workflow with all features
peakrdl etana my_registers.rdl \
    --cpuif apb4-flat \
    --in-str i --out-str o \
    --default-reset arst_n \
    --flatten-nested-blocks \
    --generate-template \
    --hwif-report \
    -o output_dir/

Usage Example

Given a simple SystemRDL file:

addrmap my_block {
    reg status_reg {
        field {
            hw = w;
            sw = r;
        } ready[0:0];

        field {
            hw = w;
            sw = r;
        } error[1:1];
    } status @ 0x0;

    reg control_reg {
        field {
            hw = r;
            sw = rw;
        } enable[0:0];
    } control @ 0x4;
};

PeakRDL-etana generates a SystemVerilog module with flattened signals:

module my_block (
    // Clock and reset
    input wire clk,
    input wire rst,

    // CPU interface (APB example)
    input wire psel,
    input wire penable,
    input wire pwrite,
    input wire [31:0] paddr,
    input wire [31:0] pwdata,
    output logic pready,
    output logic [31:0] prdata,
    output logic pslverr,

    // Hardware interface - flattened signals
    input wire hwif_in_status_ready,
    input wire hwif_in_status_error,
    output logic hwif_out_control_enable
);

Command Line Options

CPU Interface

  • --cpuif <interface> - Select CPU interface (apb3, apb4, ahb-flat, axi4-lite, avalon-mm, etc.)

Hardware Interface Customization

  • --in-str <prefix> - Customize input signal prefix (default: hwif_in)
  • --out-str <prefix> - Customize output signal prefix (default: hwif_out)

Reset Configuration

  • --default-reset <style> - Set default reset style (rst, rst_n, arst, arst_n)

Pipeline Optimization

  • --rt-read-response - Enable additional retiming stage
  • --rt-external <targets> - Retime outputs to external components

Address Map Configuration

  • --flatten-nested-blocks - Flatten nested regfile and addrmap components into parent address space instead of treating them as external interfaces. Memory blocks remain external per SystemRDL specification. Useful for simpler integration and better tool compatibility.

Output and Documentation

  • --generate-template - Generate an integration template module ({module}_example.sv) showing how to instantiate the register block with proper signal declarations. The template includes APB interface at top-level and hardware interface signals declared internally with w_ prefix.
  • --hwif-report - Generate hardware interface signal reports mapping RDL fields to flattened signal names. Produces both markdown (.rpt) and CSV (.csv) formats with signal names, widths, RDL paths, addresses, and access types.

Other Options

  • -o, --output <dir> - Specify output directory
  • --rename <name> - Override top-level module name
  • --allow-wide-field-subwords - Allow non-atomic writes to wide registers

Documentation

Detailed documentation is available in the docs/ directory, including:

  • Interface specifications
  • Signal naming conventions
  • Integration guidelines
  • Advanced configuration options

Testing

PeakRDL-etana includes comprehensive test frameworks:

Test Framework

  • tests/ - Modern Python-based testing framework using cocotb

Quick Start (cocotb)

# Activate virtual environment
source venv.2.0.0/bin/activate
cd tests-cocotb/test_simple

# Test with regblock reference (recommended)
make clean regblock sim SIM=verilator REGBLOCK=1

# Test with etana
make clean etana sim SIM=verilator REGBLOCK=0

# Simple run (etana by default)
make

Contributing

Contributions are welcome! Please see CONTRIBUTING.md for development guidelines and coding standards.

License

This project is licensed under the LGPL-3.0 license. See the LICENSE file for details.


Project Origins

PeakRDL-etana is derived from PeakRDL-regblock v0.22.0 (December 2024), with applicable fixes from v1.1.0. The key innovation is the replacement of SystemVerilog struct-based interfaces with individual flattened signals.

Why the flattened interface approach?

  • Broader tool support - Some synthesis and simulation tools have limitations with complex structs
  • Simplified integration - Direct signal connections without struct knowledge
  • Legacy compatibility - Easier integration with existing designs expecting individual signals
  • Debugging clarity - Individual signals are easier to trace and debug

For detailed information about upstream synchronization and applied modifications, see UPSTREAM_SYNC_STATUS.md.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

peakrdl_etana-0.0.8.tar.gz (6.4 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

peakrdl_etana-0.0.8-py3-none-any.whl (98.4 kB view details)

Uploaded Python 3

File details

Details for the file peakrdl_etana-0.0.8.tar.gz.

File metadata

  • Download URL: peakrdl_etana-0.0.8.tar.gz
  • Upload date:
  • Size: 6.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for peakrdl_etana-0.0.8.tar.gz
Algorithm Hash digest
SHA256 a472bd4644bad1964d9811c8cc5f8bedea946644dc32e8332575cf037e8cea1b
MD5 9f0bf7380b6fcd47563e8d628b76f43e
BLAKE2b-256 9dce0a5bcbed82d7410c806c5cad16031214ae054b1805d3950a27a3110fbe84

See more details on using hashes here.

Provenance

The following attestation bundles were made for peakrdl_etana-0.0.8.tar.gz:

Publisher: test_etana_icarus.yml on daxzio/PeakRDL-etana

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file peakrdl_etana-0.0.8-py3-none-any.whl.

File metadata

  • Download URL: peakrdl_etana-0.0.8-py3-none-any.whl
  • Upload date:
  • Size: 98.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for peakrdl_etana-0.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 f6fb52edab22e6e15f2376b113d7b6f488a599f92609250e82bcefddc1443c9a
MD5 9d61460a6828a7934849d7ffb58565c0
BLAKE2b-256 8c25a61f1db6c29e4f54069ce48ef9f94d03ff5159bb7af5e7e7cceff5e0fdaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for peakrdl_etana-0.0.8-py3-none-any.whl:

Publisher: test_etana_icarus.yml on daxzio/PeakRDL-etana

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page