Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for custom attributes on Signals #1898

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

pftbest
Copy link
Contributor

@pftbest pftbest commented Mar 4, 2024

Recently I needed to add some attributes to IO ports to make my module work nicely in Vivado block design. Something like this:

    (* X_INTERFACE_INFO = "xilinx.com:interface:aximm:1.0 AXI_LITE ARADDR" *)
    input  wire   [31:0] axi_lite_araddr,
    (* X_INTERFACE_INFO = "xilinx.com:interface:aximm:1.0 AXI_LITE ARREADY" *)
    output wire          axi_lite_arready,
...
    (* X_INTERFACE_INFO = "xilinx.com:signal:clock:1.0 sys_clock CLK", X_INTERFACE_PARAMETER = "ASSOCIATED_BUSIF AXI_LITE, ASSOCIATED_RESET sys_reset" *)
    input  wire          sys_clock,
    (* X_INTERFACE_INFO = "xilinx.com:signal:reset:1.0 sys_reset RST", X_INTERFACE_PARAMETER = "POLARITY ACTIVE_HIGH" *)
    input  wire          sys_reset

If there is more than one clock in the module and some AXI interfaces need to use a different clock, Vivado can't detect which clock is associated to which interface and throws errors in the block design.

I couldn't find a way to generate this automatically in the current Litex version, so here is a custom wrapper for attr_translate.

It accepts any attribute in the form "name = my value" and will output it like this (* name = "my value" *) in verilog.

To annotate the axi interface like in example above, you can just do this:

    self.axi_lite = axi.AXILiteInterface(data_width=32, address_width=32)
    platform.add_extension(self.axi_lite.get_ios("axi_lite"))
    axi_lite_pads = platform.request("axi_lite")

    for name in vars(axi_lite_pads):
        pad = getattr(axi_lite_pads, name)
        if type(pad) is Signal:
            pad.attr.add(f"X_INTERFACE_INFO = xilinx.com:interface:aximm:1.0 AXI_LITE {name.upper()}")

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant