| // 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), |
| .VIRTUAL_SEQUENCER_T (hmac_virtual_sequencer), |
| .SCOREBOARD_T (hmac_scoreboard)); |
| `uvm_component_utils(hmac_env) |
| function void build_phase(uvm_phase phase); |
| super.build_phase(phase); |
| virtual function void end_of_elaboration_phase(uvm_phase phase); |
| 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); |