Jump to content

Integrating uvm vip in verilog environment


Recommended Posts

Hi,

I have created a verilog wrapper over UVM VIP. I want to integrate it in DUT's environment which is in verilog. I have created a model of verilog top testbench for my VIP testing, but in place of verilog DUT I am using a verilog wrapper containing my VIP with some components disabled. So, in the verilog top tesbench, I have instantiated two verilog wrappers -

- one having UVM VIP with master and monitor enabled (to be used as VIP)

- and the other also having UVM VIP but only slave enabled (to be used as DUT)

Now, how to use the tests of VIP and synchronize UVM phases for the components inside both wrappers or how can I make a common UVM or verilog test so that phases of all components get synchronized.

Thanks

Edited by Mahak
Link to comment
Share on other sites

Better way would be to use different environment classes and instantiate the environment top extended from uvm_top based on the test that you want to run.

1) uvm_vip_env (back to back UVM vips) connected and use them in the uvm_test classes

2) uvm_dut_env (UVM vip instantiated to be connected with DUT) and then use that with the uvm_test classes.

You are actually defeating the purpose of UVM plug-n-play by creating verilog over uvm vips and then instantiating them conventionally.

Thanks,

Mehul

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...