IMPORTANT NOTICE: Please be advised that the Verification Academy Forums will be offline for scheduled maintenance on Sunday, April 6th at 2:00 US/Pacific.
I have an interface that has modports for UVM driver component and also for DUT.
The UVM driver modport has signals that are all output except for one signal that is input (driven by the DUT).
As expected, the DUT has all input signals except one signal that is output from the DUT.
Now, I am planning to use the DUT modport interface in the monitor also.
The monitor needs all output signals driven by the UVM driver. It does not need the one signal that is output of DUT.
In this scenario, the monitor is going to have a modport with one output signal. Will this create multiple driver condition.
I went through the LRM but could not find any description as to how drivers for virtual interfaces are created and how multiple drivers are resolved.
I find that modports provide no real benefits, yet add unnecessary complexity, especially when used in a UVM environment. Because of this, I see no reason to use them.
You will typically only get warnings/errors when you multiply drive a signal by assign statements or connecting multiple registers. Port connections won’t generally create issues since the input/output notation are merely suggestions.
I thought modports are very convenient and a way to specialize a given interface.
Any digital HW block has signal of 3 types (input, output, input_output).
Without modport, this basic direction of any signal cannot be specified.
This is my understanding. Let me know what issues you see.
In reply to verif_learner:
Modports are useful when designing synthesizable hardware blocks. For verification, they are of limited use and add confusion and complexity.
I am opening this thread.
When modports are used in agents, one can make the mistake of driving input ports etc.
So, I am wondering as to why this is not an advantage in using modports
In reply to cgales:
I am opening this thread.
When modports are used in agents, one can make the mistake of driving input ports etc.
So, I am wondering as to why this is not an advantage in using modports
modports adding nothing else as checking of the data direction. But this is one thing you’ll see this immediately when you are driving an output indicated by an error.
I have never used modports in all my projects.
In reply to verif_learner:
modports adding nothing else as checking of the data direction. But this is one thing you’ll see this immediately when you are driving an output indicated by an error.
I have never used modports in all my projects.
Thanks. Can you give a sample code for an interface that has signals and clocking blocks and no modports?
I can use it as a reference. I have always used signals from interface using the modports. So, I would like to see one without it.