blob: e6ff21cf495cdf05e5bfee3ea826dc5740ae2495 [file] [log] [blame]
// Copyright lowRISC contributors.
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
// SPDX-License-Identifier: Apache-2.0
class hmac_env extends cip_base_env #(.CFG_T (hmac_env_cfg),
.COV_T (hmac_env_cov),
.VIRTUAL_SEQUENCER_T (hmac_virtual_sequencer),
.SCOREBOARD_T (hmac_scoreboard));
`uvm_component_utils(hmac_env)
`uvm_component_new
function void build_phase(uvm_phase phase);
super.build_phase(phase);
endfunction
virtual function void end_of_elaboration_phase(uvm_phase phase);
dv_base_mem mem;
super.end_of_elaboration_phase(phase);
// hmac mem supports partial write, set it after ral model is locked
`downcast(mem, get_mem_by_addr(cfg.ral, cfg.ral.get_addr_from_offset(HMAC_MSG_FIFO_BASE)))
mem.set_mem_partial_write_support(1);
endfunction
endclass