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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

systemverilog-plugin: add parameter type propagation through hierarchy #469

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

Conversation

joennlae
Copy link

Hello :-) First of all really cool project 馃挴

We are working on parsing a fully-fledged SoC through yosys and further.

This feature is something we need, but there will be more that we will be adding over the upcoming weeks.

All our IPs and RTL are open-source here: https://github.com/pulp-platform/iguana.

We are currently working on baby_iguana. And work our way up from there. A pickle file can be found here:

https://gist.github.com/joennlae/35baf335b0124caf75869ab3e5edce33

The feature still needs to be fully completed. For example, when propagating types, the input with a custom type is an array.

Here:
https://gist.github.com/joennlae/35baf335b0124caf75869ab3e5edce33#file-baby_iguana-pickle-sv-L166

    // .... this is passed two hierarchies above in module dm_csrs
    .dtype            ( logic [$bits(dmi_resp_o)-1:0] ), // logic [33:0]
    // .... in fifo_v3
    // actual memory
    dtype [FifoDepth - 1:0] mem_n, mem_q;

And the replacement in yosys via the uhdm bridge is:

  (* src = "/home/janniss/Documents/iguana/build/baby_iguana_top.pickle.sv:166.36-166.41" *)
  reg [33:0] mem_q;

Even though it should be

  (* src = "/home/janniss/Documents/iguana/build/baby_iguana_top.pickle.sv:166.36-166.41" *)
  reg [67:0] mem_q;

The range information is overwritten.

But we will be working on it. I just wanted to open the feedback cycle very early, and I look forward to a fruitful cooperation :-)

Signed-off-by: Jannis Sch枚nleber <joennlae@gmail.com>
@joennlae
Copy link
Author

I ran the clang-format :-).

@wsipak
Copy link
Collaborator

wsipak commented Mar 21, 2023

Thank you for the PR. Your contribution is very much appreciated.

You might want to know that we have an on-going work towards type parameters support: #454. The linked PR targets slightly different cases, though, so it's not redundant.

Ideally we would like to unify the code parts that serve the same purpose for all type parameters, for example the concept of renaming modules with the names and values of parameters, and then merge parts that are supposed to handle specific variations of type parameters syntax, like the one you鈥檙e presenting here (.dtype ( logic [$bits(dmi_resp_o)-1:0] )).

It would be very helpful to have a minimal code snippet for the type parameter, without the need to reference the whole baby_iguana file.
Usually we create one-file tests to demonstrate a specific syntax. You can find a bunch of examples here: https://github.com/chipsalliance/UHDM-integration-tests/tree/master/tests
And if you're interested in the type parameter syntaxes we were targeting in the first place, you can see this:
https://github.com/chipsalliance/UHDM-integration-tests/pull/707/files

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

2 participants