• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Functional Verification
  3. [AHB eVC]How to send transfers with no IDLE cycles

Stats

  • Locked Locked
  • Replies 1
  • Subscribers 65
  • Views 1176
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

[AHB eVC]How to send transfers with no IDLE cycles

J1EM1N
J1EM1N over 8 years ago

Hi, 

I want to send multiple SINGLE bursts with no intervals in between. like 2-2-2-2-2-2-2-2...

However, when I use the following source code, I got a couple of IDLE cycles like 2-2-0-2-2-2-0-2-0-2..., and I don't understand why. Can anybody help me?

(I am using non_blocking_write api, so there will be no 1 cycle loss between bursts.)

struct ahb_trans{

trans_type : vr_ahb_burst_kind;
trans_dir : vr_ahb_direction;
trans_size : vr_ahb_transfer_size;
trans_addr : vr_ahb_address;
trans_data : vr_ahb_data;

};

extend vr_ahb_master_seq_kind : [ MY_SEQ ];

extend MY_SEQ vr_ahb_master_seq {

!ahb_trans;

for i from 0 to 10 {

gen ahb_trans;

non_blocking_write( ahb_trans.trans_addr,
                                     {ahb_trans.trans_data},
                                      ahb_trans.trans_type,
                                      ahb_trans.trans_size);

};

};

* MY_SEQ will be used in MAIN sequence.

Appreciate any help.

  • Cancel
Parents
  • J1EM1N
    J1EM1N over 8 years ago
    I found the problem by setting the log verbosity to full.
    For some reason, some locked bursts are sent among all the bursts and an IDLE cycle was forced after each locked burst.
    Although I still don't understand why these unexpected locked bursts are inserted, I solve the problem by explicitly specify the burst.lock == FALSE;
    Hope this can help someone who encountered the same problem.
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • J1EM1N
    J1EM1N over 8 years ago
    I found the problem by setting the log verbosity to full.
    For some reason, some locked bursts are sent among all the bursts and an IDLE cycle was forced after each locked burst.
    Although I still don't understand why these unexpected locked bursts are inserted, I solve the problem by explicitly specify the burst.lock == FALSE;
    Hope this can help someone who encountered the same problem.
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Children
No Data

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information