Skip to content

Commit 12871f6

Browse files
rroohhhjfng
authored andcommitted
rpc: add support for wiring.Component.
Do not infer the ports from the publicly accessible wires, but instead delegate finding the ports to the `rtlil.convert` function.
1 parent dd36508 commit 12871f6

File tree

3 files changed

+26
-14
lines changed

3 files changed

+26
-14
lines changed

.github/workflows/main.yaml

+7-6
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ jobs:
6262
strategy:
6363
fail-fast: false
6464
matrix:
65-
project:
66-
- amaranth-lang/amaranth-boards
67-
- amaranth-lang/amaranth-stdio
68-
- amaranth-lang/amaranth-soc
69-
name: 'smoke (${{ matrix.project }})'
65+
project: # test the last commit before dropping py3.8
66+
- { name: amaranth-lang/amaranth-boards, ref: 19b97324ecf9111c5d16377af79f82aad761c476 }
67+
- { name: amaranth-lang/amaranth-stdio, ref: 2da45b8e75421879d1096495a4fb438de705f567 }
68+
- { name: amaranth-lang/amaranth-soc, ref: 746709e1e992bccf6e2362450243cafd00d72a14 }
69+
name: 'smoke (${{ matrix.project.name }})'
7070
steps:
7171
- name: Check out Amaranth source code
7272
uses: actions/checkout@v4
@@ -76,7 +76,8 @@ jobs:
7676
- name: Check out source code
7777
uses: actions/checkout@v4
7878
with:
79-
repository: ${{ matrix.project }}
79+
repository: ${{ matrix.project.name }}
80+
ref: ${{ matrix.project.ref }}
8081
path: project
8182
fetch-depth: 0
8283
- name: Set up PDM

amaranth/rpc.py

+10-6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
import argparse
44
import importlib
55

6+
from amaranth.lib.wiring import Signature
7+
68
from .hdl import Signal, Record, Elaboratable
79
from .back import rtlil
810

@@ -68,12 +70,14 @@ def _serve_yosys(modules):
6870

6971
try:
7072
elaboratable = modules[module_name](*args, **kwargs)
71-
ports = []
72-
# By convention, any public attribute that is a Signal or a Record is
73-
# considered a port.
74-
for port_name, port in vars(elaboratable).items():
75-
if not port_name.startswith("_") and isinstance(port, (Signal, Record)):
76-
ports += port._lhs_signals()
73+
ports = None
74+
if not (hasattr(elaboratable, "signature") and isinstance(elaboratable.signature, Signature)):
75+
ports = []
76+
# By convention, any public attribute that is a Signal or a Record is
77+
# considered a port.
78+
for port_name, port in vars(elaboratable).items():
79+
if not port_name.startswith("_") and isinstance(port, (Signal, Record)):
80+
ports += port._lhs_signals()
7781
rtlil_text = rtlil.convert(elaboratable, name=module_name, ports=ports)
7882
response = {"frontend": "ilang", "source": rtlil_text}
7983
except Exception as error:

docs/changes.rst

+9-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Documentation for past releases
99

1010
Documentation for past releases of the Amaranth language and toolchain is available online:
1111

12+
* `Amaranth 0.5.3 <https://amaranth-lang.org/docs/amaranth/v0.5.3/>`_
1213
* `Amaranth 0.5.2 <https://amaranth-lang.org/docs/amaranth/v0.5.2/>`_
1314
* `Amaranth 0.5.1 <https://amaranth-lang.org/docs/amaranth/v0.5.1/>`_
1415
* `Amaranth 0.5.0 <https://amaranth-lang.org/docs/amaranth/v0.5.0/>`_
@@ -21,8 +22,8 @@ Documentation for past releases of the Amaranth language and toolchain is availa
2122
* `Amaranth 0.3 <https://amaranth-lang.org/docs/amaranth/v0.3/>`_
2223

2324

24-
Version 0.5.3 (unreleased)
25-
==========================
25+
Version 0.5.3
26+
=============
2627

2728

2829
Language changes
@@ -31,6 +32,12 @@ Language changes
3132
* Added: individual bits of the same signal can now be assigned from different modules or domains.
3233

3334

35+
Toolchain changes
36+
-----------------
37+
38+
* Added: the Amaranth RPC server can now elaborate :class:`amaranth.lib.wiring.Component` objects on demand.
39+
40+
3441
Version 0.5.2
3542
=============
3643

0 commit comments

Comments
 (0)