Jump to content

adding delay between regmodel transactions


Recommended Posts

This certainly works. But somehow it seems non-uvm-ish to me.

Since I am new to UVM, I am trying to learn the recommended UVM way first, before becoming creative. :)

Is above a typical way to automatically randomize delay between register_model transactions?

Thanks.

Phil

Link to comment
Share on other sites

Hi Phil,

I think you'd better add the random delay on the iUVC's Driver. (iUVC = Interface UVC) between transaction..

As we know, reg item from UVM REG will be translated to bus item by UVM REG Layering, and iUVC's Driver will drive the bus.

UVM REG model is just designed to facilitate productive verification of SW programmable HW.

I don't think it's better to implement random on the UVM REG model.

Link to comment
Share on other sites

hi,

some other/more options:

1. add a random_delay to your low level transaction and have the driver make the gap before/after a transaction. (your reg model doesnt see the gap)

2. create an extension container holding a random_delay field. pass the container during read/write/update/etc in the extension arg. translate in the adapter to a low level gap (either as part of the low level transaction (see#1) or cause a GAP-transaction on the low level sequencer/driver, or invoke a custom gap() member in the driver....)

3. have the adapter inserting random gaps before/after transactions

4. have a parallel sequence running the low level driver just doing gap-transactions. this will randomly mix the gap (transactions) with all other traffic.

5. throttle the low level driver by only getting a real transaction after a certain gap (basically have the low level driver doing+injecting the gaps)

6. i guess there are more options

the path depends what you need in terms of controllability, reuse and simplicity.

regards

/uwe

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