UVM环境介绍
HEAD commitID: 1f968ef
// Copyright 2020 OpenHW Group
// Copyright 2020 Datum Technology Corporation
// Copyright 2020 Silicon Labs, Inc.
//
// Licensed under the Solderpad Hardware Licence, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://solderpad.org/licenses/
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
`ifndef __UVMA_DEBUG_COV_MODEL_SV__
`define __UVMA_DEBUG_COV_MODEL_SV__
/**
* Component encapsulating Debug functional coverage model.
*/
class uvma_debug_cov_model_c extends uvm_component;
// Objects
uvma_debug_cfg_c cfg;
uvma_debug_cntxt_c cntxt;
uvma_debug_mon_trn_c mon_trn;
uvma_debug_seq_item_c seq_item;
// TLM
uvm_tlm_analysis_fifo#(uvma_debug_mon_trn_c ) mon_trn_fifo;
uvm_tlm_analysis_fifo#(uvma_debug_seq_item_c) seq_item_fifo;
`uvm_component_utils_begin(uvma_debug_cov_model_c)
`uvm_field_object(cfg , UVM_DEFAULT)
`uvm_field_object(cntxt, UVM_DEFAULT)
`uvm_component_utils_end
/**
* Default constructor.
*/
extern function new(string name="uvma_debug_cov_model", uvm_component parent=null);
/**
* 1. Ensures cfg & cntxt handles are not null.
* 2. Builds fifos.
*/
extern virtual function void build_phase(uvm_phase phase);
/**
* Forks all sampling loops
*/
extern virtual task run_phase(uvm_phase phase);
/**
* TODO Describe sample_cfg
*/
extern virtual function void sample_cfg();
/**
* TODO Describe sample_cntxt
*/
extern virtual function void sample_cntxt();
/**
* TODO Describe sample_mon_trn
*/
extern virtual function void sample_mon_trn();
/**
* TODO Describe sample_seq_item
*/
extern virtual function void sample_seq_item();
endclass : uvma_debug_cov_model_c
`pragma protect begin
function uvma_debug_cov_model_c::new(string name="uvma_debug_cov_model", uvm_component parent=null);
super.new(name, parent);
endfunction : new
function void uvma_debug_cov_model_c::build_phase(uvm_phase phase);
super.build_phase(phase);
void'(uvm_config_db#(uvma_debug_cfg_c)::get(this, "", "cfg", cfg));
if (cfg == null) begin
`uvm_fatal("CFG", "Configuration handle is null")
end
void'(uvm_config_db#(uvma_debug_cntxt_c)::get(this, "", "cntxt", cntxt));
if (cntxt == null) begin
`uvm_fatal("CNTXT", "Context handle is null")
end
mon_trn_fifo = new("mon_trn_fifo" , this);
seq_item_fifo = new("seq_item_fifo", this);
endfunction : build_phase
task uvma_debug_cov_model_c::run_phase(uvm_phase phase);
super.run_phase(phase);
if (cfg.enabled && cfg.cov_model_enabled) begin
fork
// Configuration
forever begin
cntxt.sample_cfg_e.wait_trigger();
sample_cfg();
end
// Context
forever begin
cntxt.sample_cntxt_e.wait_trigger();
sample_cntxt();
end
// Monitor transactions
forever begin
mon_trn_fifo.get(mon_trn);
sample_mon_trn();
end
// Sequence items
forever begin
seq_item_fifo.get(seq_item);
sample_seq_item();
end
join_none
end
endtask : run_phase
function void uvma_debug_cov_model_c::sample_cfg();
// TODO Implement uvma_debug_cov_model_c::sample_cfg();
endfunction : sample_cfg
function void uvma_debug_cov_model_c::sample_cntxt();
// TODO Implement uvma_debug_cov_model_c::sample_cntxt();
endfunction : sample_cntxt
function void uvma_debug_cov_model_c::sample_mon_trn();
// TODO Implement uvma_debug_cov_model_c::sample_mon_trn();
endfunction : sample_mon_trn
function void uvma_debug_cov_model_c::sample_seq_item();
// TODO Implement uvma_debug_cov_model_c::sample_seq_item();
endfunction : sample_seq_item
`pragma protect end
`endif // __UVMA_DEBUG_COV_MODEL_SV__
lib/uvm_agents/uvma_debug/cov/uvma_debug_cov_model.sv
1. 简要介绍
该文件是Debug验证环境的功能覆盖率模型实现,主要功能包括:
- 收集Debug接口的配置和事务数据
- 通过TLM接口接收监控数据
- 实现覆盖率采样机制
2. 接口介绍
2.1 类定义
class uvma_debug_cov_model_c extends uvm_component;
- 代码介绍:定义覆盖率模型类,继承自UVM基础组件类
- 功能:作为标准UVM组件实现覆盖率收集