Jump to content

Atomic register access


Recommended Posts

Has there been any thought towards adding atomic accesses to the register layer? When trying to model and validate real firmware algorithms, I need to be able to block all but the desired thread from being able to execute registers accesses through RAL.

Some flexibility is needed here. You should be able to lock a physical interface, meaning a thread could lock one interface for itself, but other threads could still use other interfaces. Or a thread should be able to lock a block, blocking other threads from accessing any register in the block regardless of the physical interfaces.

After doing some experimentation with SV's fine-grained process control I believe the mechanism could be added to RAL without modifying any of the existing API, only some additions would be required. From the user's stand point, uvm_reg_block and uvm_reg_map would both gain lock() and unlock() tasks.

Calling lock() would block all other threads from accessing that block or map. unlock() would like-wise release the current thread's lock. Multiple calls to lock() by different threads would be resolved in the implementation by a mutex.

This also could be implemented without fine-grained process control, by adding an additional key parameter to all of the methods that cause a physical interface access. The default would be 0, so existing code doesn't need to change. Calling lock() would now need to return an integer key, which you would need to use anytime you are doing an atomic operation.

After a quick examination of the classes, I do not see any way to layer this capability on top of the existing class library. I'd probably need the RAL classes to extend a `define macro, to enable me inserting this functionality at the right place.

Anyone else interested in atomic RAL operations?

-Ryan

Link to comment
Share on other sites

  • 2 weeks later...

No, there must be only one instance of the register map as there is a semaphore in each register to ensure their access is atomic. All threads must go through the same map -- which will then go to the same sequencer. By grabbing that sequencer, a thread can lock the others out to ensure atomic operations.

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