| // Copyright lowRISC contributors. |
| // Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| // SPDX-License-Identifier: Apache-2.0 |
| |
| class edn_env extends cip_base_env #( |
| .CFG_T (edn_env_cfg), |
| .COV_T (edn_env_cov), |
| .VIRTUAL_SEQUENCER_T(edn_virtual_sequencer), |
| .SCOREBOARD_T (edn_scoreboard) |
| ); |
| `uvm_component_utils(edn_env) |
| |
| push_pull_agent#(.HostDataWidth(entropy_src_env_pkg::FIPS_CSRNG_BUS_WIDTH)) |
| m_csrng_genbits_agent; |
| push_pull_agent#(.HostDataWidth(edn_env_pkg::FIPS_ENDPOINT_BUS_WIDTH)) |
| m_endpoint_agent [NUM_ENDPOINTS-1:0]; |
| |
| `uvm_component_new |
| |
| function void build_phase(uvm_phase phase); |
| super.build_phase(phase); |
| // create components |
| m_csrng_genbits_agent = push_pull_agent#(.HostDataWidth(entropy_src_env_pkg:: |
| FIPS_CSRNG_BUS_WIDTH))::type_id::create("m_csrng_genbits_agent", this); |
| uvm_config_db#(push_pull_agent_cfg#(.HostDataWidth(entropy_src_env_pkg::FIPS_CSRNG_BUS_WIDTH))):: |
| set(this, "m_csrng_genbits_agent*", "cfg", cfg.m_csrng_genbits_agent_cfg); |
| cfg.m_csrng_genbits_agent_cfg.agent_type = push_pull_agent_pkg::PushAgent; |
| cfg.m_csrng_genbits_agent_cfg.if_mode = dv_utils_pkg::Host; |
| |
| for (int i = 0; i < NUM_ENDPOINTS; i++) begin |
| string endpoint_agent_name = $sformatf("m_endpoint_agent[%0d]", i); |
| m_endpoint_agent[i] = push_pull_agent#(.HostDataWidth(edn_env_pkg::FIPS_ENDPOINT_BUS_WIDTH)):: |
| type_id::create(endpoint_agent_name, this); |
| uvm_config_db#(push_pull_agent_cfg#(.HostDataWidth(edn_env_pkg::FIPS_ENDPOINT_BUS_WIDTH))):: |
| set(this, $sformatf("%0s*", endpoint_agent_name), |
| "cfg", cfg.m_endpoint_agent_cfg[i]); |
| cfg.m_endpoint_agent_cfg[NUM_ENDPOINTS-1].agent_type = push_pull_agent_pkg::PullAgent; |
| cfg.m_endpoint_agent_cfg[NUM_ENDPOINTS-1].if_mode = dv_utils_pkg::Host; |
| end |
| endfunction |
| |
| function void connect_phase(uvm_phase phase); |
| super.connect_phase(phase); |
| if (cfg.en_scb) begin |
| for (int i = 0; i < NUM_ENDPOINTS; i++) begin |
| m_endpoint_agent[i].monitor.analysis_port.connect |
| (scoreboard.endpoint_fifo[i].analysis_export); |
| end |
| end |
| for (int i = 0; i < NUM_ENDPOINTS; i++) begin |
| if (cfg.m_endpoint_agent_cfg[i].is_active) begin |
| virtual_sequencer.endpoint_sequencer_h[i] = m_endpoint_agent[i].sequencer; |
| end |
| end |
| endfunction |
| |
| endclass |