The register abstraction layer (RAL) of UVM provides several methods to access registers. This post will explain how the register-access methods work. In Register Abstraction, we introduced the overview of RAL and explained how to define registers. In this post, we will cover how to access the registers.
Properties of uvm_reg_field
Before diving into the register-access methods, let’s look at how a register value is stored. As seen in Register Abstraction, uvm_reg_field is the lowest register-abstraction layer which represents the bits of a register. The uvm_reg_field uses several properties to store a variety of register-field values:
m_reset["HARD"]stores a hard reset value. Note that them_resetis an associative array with a kind of reset as the key.m_mirroredstores the value of what we think in our design under test (DUT).m_desiredstores the value of what we want to set to the DUT.valuestores the value to be sampled in a functional coverage, or the value to be constrained when the field is randomized.
Note that among these properties, only the value property is public. The other properties are local, thus we cannot access them directly from the out side of the class. We will show you how to access these local properties using register-access methods later.
Properties of uvm_reg_field
configure()
The first thing we do after creating a uvm_reg_field is configuring it. In Register Abstraction, we configured the flavor field as follows. Note that in Register Abstraction, we defined the flavor field as "WO" (write-only), but we defined it as "RW" (read/write) here to make the field more generic.
1 2 3 4 5 6 7 8 9 10 | flavor = uvm_reg_field::type_id::create( "flavor" );
flavor.configure( .parent ( this ),
.size ( 3 ),
.lsb_pos ( 0 ),
.access ( "RW" ),
.volatile ( 0 ),
.reset ( 0 ), .has_reset ( 1 ), .is_rand ( 1 ),
.individually_accessible( 0 ) ); |
If the has_reset argument is 1, the value of reset argument is taken as the "HARD" reset value. If the has_reset value is 0, the value of reset is ignored. The value of reset should match the reset state of the DUT. If you want to modify the reset value after the configuration, you can use set_reset() method.
flavor.set_reset( .value( 0 ), .kind( "HARD" ) ); // kind == "HARD" by default |
How the configure() and set_reset() methods work
reset()
The reset() method resets the properties of a register field, if the m_reset[kind] exists. The default kind is "HARD". If the m_reset[kind] does not exist, the reset() method does nothing. Note that the reset() method does not reset a register in the DUT. It only resets the properties of a register-field object.
flavor.reset( .kind( "HARD" ) ); // kind == "HARD" by default |
How the reset() method works
set()
The set() method sets the desired value of a register field. The set() method does not set the value to a register in the DUT. It only sets the value to the m_desired and the value properties of a register-field object. To actually set the value to the register in the DUT, use write() or update() method. These methods will be explained later.
flavor.set( .value( 1 ) ); |
How the set() method works
get()
The get() method gets the desired value of a register field. The get() method does not get the value from a register in the DUT. It only gets the value of the m_desired property. To actually get the value from the DUT, use read() or mirror() methods. These methods will be explained later. Similarly to the get() method, there are two more getters to access the local properties. The get_reset() retrieves the value of the m_reset[kind] property, while the get_mirrored_value() method retrieves the value of the m_mirrored property.
uvm_reg_data_t desired_value = flavor.get(); uvm_reg_data_t reset_value = flavor.get_reset( .kind( "HARD" ) ); // kind == "HARD" by default uvm_reg_data_t mirrored_value = flavor.get_mirrored_value(); |
How the get(), get_reset(), and get_mirrored_value() methods work
randomize()
The randomize() method is a SystemVerilog method. It randomizes the value property of a register-field object. After the randomization, the post_randomize() method copies the value of the value property to the m_desired property. Note that the pre_randomize() method copies the value of the m_desired to the value property if the rand_mode of the value property is OFF.
assert( flavor.randomize() ); |
How the randomize() method works
write()
The write() method actually writes a value to the DUT.
uvm_status_e status; flavor.write( .status( status ), .value( 1 ) ); |
The write() method involves multiple steps.
- A
uvm_reg_itemobject corresponding to the write operation is created. - The
uvm_reg_adapterconverts the write operation to a corresponding bus transaction. - The
uvm_driverexecutes the bus transaction to the DUT. - The
uvm_monitorcaptures the bus transaction. - The
uvm_reg_predictorasks theuvm_reg_adapterto convert the bus transaction to a corresponding register operation. - The register operation is converted to a
uvm_reg_item. - The
uvm_reg_itemis used to update thevalue,m_mirrored, andm_desiredproperties.
Note that if the individually_accessible argument was 0 when the register field was configured, the entire register containing the field is written, because the field is not individually accessible. In this case, the m_mirrored values are used as the write values for the other fields.
How the write() method works
read()
The read() method actually reads a register value from the DUT.
uvm_status_e status; uvm_reg_data_t value; flavor.read( .status( status ), .value( value ) ); |
Similarly to the write() method, the read() method involves multiple steps.
- A
uvm_reg_itemobject corresponding to the read operation is created. - The
uvm_reg_adapterconverts the read operation to a corresponding bus transaction. - The
uvm_driverexecutes the bus transaction to the DUT. - The
uvm_reg_apapterconverts the bus transaction with read data to a register operation. - The
read()method returns the read value to the caller. - In the mean time, the
uvm_monitorcaptures the bus transaction. - The
uvm_reg_predictorasks theuvm_reg_adapterto convert the bus transaction to a corresponding register operation. - The register operation is converted to a
uvm_reg_item. - The
uvm_reg_itemis used to update thevalue,m_mirrored, andm_desiredproperties.
Note that if the individually_accessible argument was 0 when the register field was configured, the entire register containing the field is read. In this case, the m_mirrored values are updated for the other fields as well.
How the read() method works
update()
The update() method actually writes a register value to the DUT. The update() method belongs to the uvm_reg class. The uvm_reg_field class does not have the update() method.
uvm_status_e status; jb_recipe_reg.update( .status( status ) ); |
The differences between the write() method and the update() method are:
- The
write()method takes a value as its argument, while theupdate()method uses the value of them_desiredproperty as the value to write. - The
update()method writes the value only if them_mirroredand them_desiredare not equal.
Before the update() is executed
The update() method internally calls the write( .value( m_desired ) ). Because of this, the value of the m_mirrored will be updated as well, after the update.
After the update() is executed
mirror()
The mirror() method actually reads a register from the DUT.
uvm_status_e status; flavor.mirror( .status( status ), .check( UVM_CHECK ) ); |
The differences between the read() method and the mirror() method are:
- The
read()method returns the register value to the caller, while themirror()method does not return the register value. Themirror()method only updates the value of them_mirroredproperty. - The
mirror()method compares the read value against them_desiredif the value of thecheckargument isUVM_CHECK. Note that the UVM Class Library document states that it compares the read value against the mirrored value, but if you look at the line 2,944 ofuvm_reg.svhof uvm-1.1c code base, it actually compares against the desired value, not against the mirrored value.April 11, 2014: uvm-1.1d code base has corrected this issue. The
mirror()compares the read value against the mirrored value now. Please see the line 2,951 ofuvm_reg.svhif you are curious about this fix.)Another caveat about the check is that if you set the
volatileargument to be1when you configured the register field, the register field won’t be checked even though you set thecheckargument to beUVM_CHECK. This is because we cannot predict the value of the register field deterministically as it might have been changed (volatile) in the DUT.
The mirror() method internally calls do_read() method. This is the same method the read() method internally calls. Because of this, the mirror() method will update the value and the m_desired properties, in addition to the m_mirrored property.
How the mirror() method works
predict()
The predict() method updates the mirrored value.
flavor.predict( .value( 1 ) ); |
The predict() method also updates the value and the m_desired properties.
How the predict() method works
Summary
The table below summarizes how each method updates the properties of the register-field object.
| Method | m_reset | value | m_desired | m_mirrored | DUT |
|---|---|---|---|---|---|
configure | set the value of val | ||||
set_reset(val) | set the value of val | ||||
reset() | copy the value of m_reset | copy the value of m_reset | copy the value of m_reset | ||
set(val) | set the value of val | set the value of val | |||
get_reset() | return the value of m_reset | ||||
get() | return the value of m_desired | ||||
get_mirrored_value() | return the value of m_mirrored | ||||
randomize() | randomize | copy the value of value | |||
write(.value(val)) | set the value of val | set the value of val | set the value of val | write the value of val | |
read(.value(val)) | set the read value | set the read value | set the read value | read the register | |
update() | set the value of m_desired | set the value of m_desired | set the value of m_desired | write the value of m_desired | |
mirror() | set the read value | set the read value | set the read value | read the register | |
predict | set the value of val | set the value of val | set the value of val |
In this post, we only covered so-called front-door access. We will cover back-door access in a separate post. I hope this tutorial helped you to understand the register access methods.
本文详细解释了UVMRegisterAbstractionLayer(RAL)中的uvm_reg_field的各种属性和访问方法,包括configure(),reset(),set(),get(),randomize(),write(),read(),update(),mirror(),predict()等,以及它们在实际操作中的作用和用法。












799

被折叠的 条评论
为什么被折叠?



