Jump to content

wait statement in Sequence


Recommended Posts

In my case (no uvm_reg),I have to pull a status register from DUT and do the next action base on the respond.

My sequence body task:

virtual task body();

do begin

wait(wait_time); // initial is 1us, defined in new function.

`uvm_do_with(req, {access_kind == READ; len == 1; addr == (cfpga_status_reg/2); })

get_response(rsp);

wait_time = wait_time * 2;

end while ((rsp.dio[0] & 'h00ff) < 'h00FF);

endtask : body

From my simulation, the rsp.dio[0] =0x009f, and it keep pulling the DUT register without wait for WAIT_TIME. And then the simulation stopped after several pullings (no time in my environment).

I don't know why it doesn't wait. And anyone have better solution for this case?

Thanks.

Link to comment
Share on other sites

Because that is not the right syntax to wait for a delay. The wait statement in Verilog waits for the expression to become true, or in your case, non-zero which is always is.

The correct syntax is #(wait_time). Because of timescale issues in Verilog, you should write this as #(wait_time * 1us), where wait_time is the delay in µs.

Also, it is not a good practice to put delays in sequences. Delays are physical properties of an interface and should be handled in the driver.

Link to comment
Share on other sites

If you want to do what you want to do (wait some amount of time based on your read response), then you can define a task in a configuration object that would call a task in the interface to wait a specified amount of time or cycles (assuming that the configuration object would also have the virtual interface handle). Your sequence can then get the configuration object handle via the sequencer, and call the wait task in the configuration object, which will in turn call the wait task in the interface at the physical level. This approach is actually well covered in Mentor's Verification Academy UVM Cookbook.

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...