Home

Awesome

Magia

Asta e magia ea a căntat.

What is Magia?

Magia generates Synthesizable SystemVerilog in pythonic syntax.

The goal of Magia is

What is not Magia?

Position.drawio.svg

Project Roadmap

Please refer to the Magia Roadmap.

Installation

pip install magia-hdl

# Install with full dependencies if advanced features are required

pip install magia-hdl[full]

Examples

Magia generates Synthesizable SystemVerilog code with the following command:

Refer the Syntax Documentation for more details.

from magia import Elaborator, Module, Input, Output


# Define a module
class TopLevel(Module):
    def __init__(self, width, **kwargs):
        super().__init__(**kwargs)
        # Define IO ports
        self.io += [
            Input("clk", 1),
            Input("a", width),
            Input("b", width),
            Output("dout", width),
        ]

        # Implement the logic
        clk = self.io.clk
        self.io.dout <<= (self.io.a + self.io.b).reg(clk)


# Specialize the module
top = TopLevel(width=16, name="TopModule")

# Elaborate SystemVerilog code
result = Elaborator.to_string(top)

# Obtain SystemVerilog code of the top module
sv_code_of_top = Elaborator.to_dict(top)["TopModule"]

# Write SystemVerilog code to a directory
Elaborator.to_files("/tmp/output_dir", top)

Simulation with cocotb

Although Magia does not support simulation, we can use cocotb to simulate the generated code.

Make sure you have installed cocotb and simulator required (e.g. verilator).

import cocotb
from cocotb.runner import get_runner
from magia import Elaborator, Module
from pathlib import Path

TOP_LEVEL_NAME = "TopLevel"
OUTPUT_FILE = "TopLevel.sv"


# Define a module
class TopLevel(Module):
    ...


# Define your test
@cocotb.test()
async def test_smoke(dut):
    ...


if __name__ == "__main__":
    # Elaborate SystemVerilog code to a file
    Elaborator.to_file(OUTPUT_FILE, TopLevel(width=16, name=TOP_LEVEL_NAME))

    runner = get_runner("verilator")
    runner.build(
        verilog_sources=[OUTPUT_FILE],
        hdl_toplevel=TOP_LEVEL_NAME,
        always=True,
    )
    runner.test(
        hdl_toplevel=TOP_LEVEL_NAME,
        testcase="test_smoke",

        # Let cocotb locates this file
        test_dir=Path(__file__).parent.absolute(),
        test_module=Path(__file__).stem,
    )

Documentation

Related Projects

Contributing

The project is still a personal project, in a very early stage. Feel free to open an issue for any bug / feature wishlist.

We also have a Contribution Guideline and Code of Conduct. Please take a look before you contribute.

In case you are interested in this project, contact me via: https://github.com/khwong-c

Reference

There are many attempts to generate HDL code in Python. Similar projects are listed below: