blob: e1829bf818ffece10cad21f285e3dfda6e605ec9 [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 uart_env extends cip_base_env #(.CFG_T (uart_env_cfg),
.COV_T (uart_env_cov),
.VIRTUAL_SEQUENCER_T (uart_virtual_sequencer),
.SCOREBOARD_T (uart_scoreboard));
`uvm_component_utils(uart_env)
uart_agent m_uart_agent;
`uvm_component_new
function void build_phase(uvm_phase phase);
super.build_phase(phase);
m_uart_agent = uart_agent::type_id::create("m_uart_agent", this);
uvm_config_db#(uart_agent_cfg)::set(this, "m_uart_agent*", "cfg", cfg.m_uart_agent_cfg);
cfg.m_uart_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_uart_agent.monitor.tx_analysis_port.connect(scoreboard.uart_tx_fifo.analysis_export);
m_uart_agent.monitor.rx_analysis_port.connect(scoreboard.uart_rx_fifo.analysis_export);
end
if (cfg.m_uart_agent_cfg.is_active) begin
virtual_sequencer.uart_sequencer_h = m_uart_agent.sequencer;
end
endfunction
endclass