blob: 9c437ab4a58c2a80af1cb968b026c6f6486c7914 [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 cip_base_virtual_sequencer #(type CFG_T = cip_base_env_cfg,
type COV_T = cip_base_env_cov)
extends dv_base_virtual_sequencer #(CFG_T, COV_T);
`uvm_component_param_utils(cip_base_virtual_sequencer #(CFG_T, COV_T))
// similar to (ral, ral_models) and (m_tl_agent_cfg, m_tl_agent_cfgs)
// if the block supports only one RAL, just use tl_sequencer_h
// if there are multiple RALs, `tl_sequencer_h` is the default one for RAL with type `RAL_T`
tl_sequencer tl_sequencer_h;
tl_sequencer tl_sequencer_hs[string];
alert_esc_sequencer alert_esc_sequencer_h[string];
push_pull_sequencer#(.DeviceDataWidth(EDN_DATA_WIDTH)) edn_pull_sequencer_h;
`uvm_component_new
endclass