Skip to main content

Compile SystemRDL into a Verilog 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

Array Signal Format

PeakRDL-etana generates array signals using unpacked array format (dimensions after the signal name):

// Unpacked array format (etana output)
output logic [31:0] hwif_out_data [7:0];  // Array of 8 32-bit values
input wire [7:0] hwif_in_ack [31:0];      // Array of 32 8-bit values

This format is used instead of packed arrays ([7:0][31:0]) due to limitations in Icarus Verilog's handling of packed multi-dimensional arrays. The unpacked format ensures compatibility with all simulation tools including Icarus Verilog, while maintaining the same functionality.

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, OBI, Passthrough, and more
  • Integration templates - Auto-generated example modules for easy integration
  • Signal documentation - Comprehensive reports mapping RDL to signals
  • Comprehensive testing - Cocotb-based test suite with CPU interface error validation
  • Error response handling - Full support for bus error signaling (SLVERR, PSLVERR, HRESP)
  • External components - Validated support for external registers and memories
  • 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-flat -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/

# Enable CPU interface error responses
peakrdl etana my_registers.rdl --cpuif apb4-flat --err-if-bad-addr --err-if-bad-rw -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 \
    --err-if-bad-addr \
    --err-if-bad-rw \
    -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
    • ✅ CPU interface error response validation (NEW)
    • ✅ External register and memory support
    • ✅ Multiple CPU interfaces (APB4, AXI4-Lite, AHB, Passthrough)
    • ✅ All SystemRDL field types and properties

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.7.0.tar.gz (679.4 kB 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.7.0-py3-none-any.whl (101.8 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for peakrdl_etana-0.7.0.tar.gz
Algorithm Hash digest
SHA256 b2fe0b1d946477969f2e969348bd13c70ccbeba2ba48e0f4e4de7024c076625c
MD5 9fd3d6abe41a5e260ba2b5845a785512
BLAKE2b-256 74e8278304717dbbc3b10b4f5ad932052aecd1cf916b1ba2f56fbe8d8d45ee0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for peakrdl_etana-0.7.0.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.7.0-py3-none-any.whl.

File metadata

  • Download URL: peakrdl_etana-0.7.0-py3-none-any.whl
  • Upload date:
  • Size: 101.8 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.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9dc61cb411872ecc46c8816513c0d129fdfd99e8d826c56b8a4911e08f970147
MD5 663e11d445f4509eae7f3216e3c52ca3
BLAKE2b-256 ff2d07ed7dd28b751610bba7e06c2fd0b27b904049b1eb2026d9be210521a534

See more details on using hashes here.

Provenance

The following attestation bundles were made for peakrdl_etana-0.7.0-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