| // Copyright lowRISC contributors. |
| // Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| // SPDX-License-Identifier: Apache-2.0 |
| |
| class usbdev_env extends cip_base_env #( |
| .CFG_T (usbdev_env_cfg), |
| .COV_T (usbdev_env_cov), |
| .VIRTUAL_SEQUENCER_T(usbdev_virtual_sequencer), |
| .SCOREBOARD_T (usbdev_scoreboard) |
| ); |
| `uvm_component_utils(usbdev_env) |
| |
| usb20_agent m_usb20_agent; |
| |
| `uvm_component_new |
| |
| function void build_phase(uvm_phase phase); |
| super.build_phase(phase); |
| // get vifs |
| if (!uvm_config_db#(virtual clk_rst_if)::get(this, "", "usb_clk_rst_vif", |
| cfg.usb_clk_rst_vif)) begin |
| `uvm_fatal(get_full_name(), "failed to get usb_clk_rst_if from uvm_config_db") |
| end |
| cfg.usb_clk_rst_vif.set_freq_mhz(cfg.usb_clk_freq_mhz); |
| |
| // create components |
| m_usb20_agent = usb20_agent::type_id::create("m_usb20_agent", this); |
| uvm_config_db#(usb20_agent_cfg)::set(this, "m_usb20_agent*", "cfg", cfg.m_usb20_agent_cfg); |
| cfg.m_usb20_agent_cfg.en_cov = cfg.en_cov; |
| endfunction |
| |
| function void connect_phase(uvm_phase phase); |
| super.connect_phase(phase); |
| if (cfg.en_scb) begin |
| m_usb20_agent.monitor.analysis_port.connect(scoreboard.usb20_fifo.analysis_export); |
| end |
| if (cfg.is_active && cfg.m_usb20_agent_cfg.is_active) begin |
| virtual_sequencer.usb20_sequencer_h = m_usb20_agent.sequencer; |
| end |
| endfunction |
| |
| endclass |