Jump to content

Submodule synchronization


Giuli0

Recommended Posts

So, I am still working on this memory code, and I am still having troubles...

The memory module has some submodules: a decoder, and a sc_vector containing mem_cell modules. The mem_cell has two input ports: datain, and address_enable. Address_enable is connected to the output port of the decoder, while datain is directly connected to the datain port of the memory upper level module.

According to my design, mem_cell is sensitive to both address_enable and datain. My problem is that this signals have different path lengths: address_enable, receiving its value from the decoder, needs an extra delta-cycle to get updated, compared to the datain signal, which comes directly from the memory port. So, when testing, I get unexpected results. I think there must be a simple and effective way to synchronize everything. Would it be correct to put some "delay modules" along the fastest paths, in order to synchronize? Are there any other soulutions? I think I shouldn't modify the submodules, which are neat and already succesfully tested. 

 

Link to comment
Share on other sites

Hi.

 

Many people use clocks for synchronisation.

 

Delay modules are very wrong in almost every case. 

Delta cycles represent signal runtime in actual hardware. In gerneral, signal runtime is not fully deterministic in real hardware. Hence, if the functionallity of your design depends on signal runtime, it may work in the model, but it will most likely not work in rael hardware.

 

Greetings

Ralph

Link to comment
Share on other sites

Hi Ralph,

thanks for your reply. Actually, I fixed the problem using a delay module. I agree with what you said, but in my case, I am integrating a pre existing project with no clock, and i preferred to keep everything as close as possible to the initial interface. Now it works.

Link to comment
Share on other sites

You should better think about your overall design, your submodules or the expected behavior of the memory module. 

Relying on delta cycle count or the evaluation order of processes in the same delta cycle is very bad modeling style. It leads to very fragile models. When you change the routing in one module, it can lead to erroneous behavior in another module. Changes to the routing or adding additional channels/signals should not change the actual behavior of your design.

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