From 57918495e90f04942eec204aa36500b4fe07d0fd Mon Sep 17 00:00:00 2001 From: Mike Thompson Date: Wed, 24 Jan 2024 10:10:15 +0100 Subject: [PATCH] Sync with master --- .../src/comps/uvma_obi_memory_cov_model.sv | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/uvm_agents/uvma_obi_memory/src/comps/uvma_obi_memory_cov_model.sv b/lib/uvm_agents/uvma_obi_memory/src/comps/uvma_obi_memory_cov_model.sv index 5a9c524fd1..c53baa07e8 100644 --- a/lib/uvm_agents/uvma_obi_memory/src/comps/uvma_obi_memory_cov_model.sv +++ b/lib/uvm_agents/uvma_obi_memory/src/comps/uvma_obi_memory_cov_model.sv @@ -49,23 +49,23 @@ covergroup cg_obi(string name, option.name = name; we: coverpoint (trn.access_type) { - ignore_bins IGN_WRITE = {UVMA_OBI_MEMORY_ACCESS_WRITE} with ((item>1) && (!write_enabled)); - ignore_bins IGN_READ = {UVMA_OBI_MEMORY_ACCESS_READ} with ((item>1) && (!read_enabled)); + ignore_bins IGN_WRITE = {UVMA_OBI_MEMORY_ACCESS_WRITE} with ((item >= 0) && (!write_enabled)); + ignore_bins IGN_READ = {UVMA_OBI_MEMORY_ACCESS_READ} with ((item >= 0) && (!read_enabled)); bins WRITE = {UVMA_OBI_MEMORY_ACCESS_WRITE}; bins READ = {UVMA_OBI_MEMORY_ACCESS_READ}; } memtype: coverpoint (trn.memtype) { - ignore_bins IGN_MEMTYPE = {[0:$]} with ((item>1) && (!is_1p2)); + ignore_bins IGN_MEMTYPE = {[0:$]} with ((item >= 0) && (!is_1p2)); } prot: coverpoint (trn.prot) { - ignore_bins IGN_MEMTYPE = {[0:$]} with ((item>1) && (!is_1p2)); + ignore_bins IGN_MEMTYPE = {[0:$]} with ((item >= 0) && (!is_1p2)); ignore_bins IGN_RSVD_PRIV = {3'b100, 3'b101}; } err: coverpoint (trn.err) { - ignore_bins IGN_ERR = {[0:$]} with ((item>1) && (!is_1p2)); + ignore_bins IGN_ERR = {[0:$]} with ((item >=0 ) && (!is_1p2)); } endgroup : cg_obi