UVM Register Abstraction Layer (RAL) - source code reading
Field Access Policies

whether a register field can be read or written depends on both the field’s configured access policy and the register’s rights in the map being used to access the field
http://www.verilab.com/files/litterick_register_final.pdf
https://www.verilab.com/files/litterick_register_slides_sm.pdf
uvm_reg::write
If a back-door access path is used, the effect of writing the register through a physical access is mimicked. For example, read-only bits in the registers will not be written.
The mirrored value will be updated using the
uvm_reg::predict()
method.
1 | extern virtual task write(output uvm_status_e status, |
1 | task uvm_reg::write(output uvm_status_e status, |
uvm_reg::read
If a back-door access path is used, the effect of reading the register through a physical access is mimicked. For example, clear-on-read bits in the registers will be set to zero.
The mirrored value will be updated using the
uvm_reg::predict()
method.
1 | extern virtual task read(output uvm_status_e status, |
readback value can be different from m_mirrored , m_desired or value
uvm_reg::poke
Deposit the value in the DUT register corresponding to this abstraction class instance, as-is, using a back-door access.
Uses the HDL path for the design abstraction specified by kind.
The mirrored value will be updated using the
uvm_reg::predict()
method.
1 | extern virtual task poke(output uvm_status_e status, |
uvm_reg::peek
- Sample the value in the DUT register corresponding to this abstraction class instance using a back-door access. The register value is sampled, not modified.
- Uses the HDL path for the design abstraction specified by
kind
. - The mirrored value will be updated using the
uvm_reg::predict()
method.
1 | extern virtual task peek(output uvm_status_e status, |
uvm_reg::mirror
Read the register and optionally compared the readback value with the current mirrored value if
check
isUVM_CHECK
.The mirrored value will be updated using the
uvm_reg::predict()
method based on the readback value.The mirroring can be performed using the physical interfaces (frontdoor) or
uvm_reg::peek()
(backdoor).If the register contains write-only fields, their content is mirrored and optionally checked only if a
UVM_BACKDOOR
access path is used to read the register.
1 | extern virtual task mirror(output uvm_status_e status, |
uvm_reg::update
- Write this register if the DUT register is out-of-date with the
desired/mirrored value in the abstraction class, as determined by the
uvm_reg::needs_update()
method. - The update can be performed using the using the physical interfaces
(frontdoor) or
uvm_reg::poke()
(backdoor) access.
1 | extern virtual task update(output uvm_status_e status, |
1 | task uvm_reg::update(output uvm_status_e status, |
uvm_reg::predict
- Update the mirrored and desired value for this register.
- Predict the mirror (and desired) value of the fields in the register
based on the specified observed
value
on a specified addressmap
, or based on a calculated value. - See
uvm_reg_field::predict()
for more details.
1 | extern virtual function bit predict (uvm_reg_data_t value, |
uvm_reg::do_predict
1 | function void uvm_reg::do_predict(uvm_reg_item rw, |
uvm_reg_field::do_predict
1 | function void uvm_reg_field::do_predict(uvm_reg_item rw, |
uvm_reg_field::XpredictX
1 | function uvm_reg_data_t uvm_reg_field::XpredictX (uvm_reg_data_t cur_val, |
uvm_reg::reset , uvm_reg_field::reset
Resetting a register model sets the mirror to the reset value specified in the model
uvm_reg::reset
1 | function void uvm_reg::reset(string kind = "HARD"); |
uvm_reg_field::reset
1 | function void uvm_reg_field::reset(string kind = "HARD"); |
uvm_reg_field::randomize
uvm_reg_field::pre_randomize()
Update the only publicly known property value
with the
current desired value so it can be used as a state
variable should the rand_mode
of the field be turned
off.
value
ism_desired
ifrand_mode
is off.
1 | function void uvm_reg_field::pre_randomize(); |
uvm_reg_field::post_randomize
1 | function void uvm_reg_field::post_randomize(); |
misc
1 | typedef bit unsigned [`UVM_REG_DATA_WIDTH-1:0] uvm_reg_data_t ; |
1 | // Enum: uvm_predict_e |