Specman UVM:当值写入另一个寄存器时,如何更新寄存器的值?

时间:2014-09-15 08:46:58

标签: specman uvm e

(在我的验证环境中,我们使用vr_ad包。)。我尝试实现下一个: 当数据写入其中一个寄存器(timer_load)时,应使用相同的数据更新另一个寄存器(timer_bgload)。

我在UVM用户指南中找到了下一个示例:

// Attaching the target register file to the broadcasted register
extend ex_c_bus_env {
    post_generate() is also {
        xcore_regs.vr_ad_rx_data.attach(xbus_regs);
    };
};
// Implement the broadcast:
// When writing to register VR_AD_RX_DATA in XCORE vr_ad_reg_file,
// propagate the value to the VR_AD_XBUS_DATA register in ACTIVE_XBUS.
extend ACTIVE_XBUS vr_ad_reg_file {
    indirect_access( direction : vr_ad_rw_t, ad_item : vr_ad_base) is {
        if ad_item is a VR_AD_RX_DATA vr_ad_reg (d) {
            vr_ad_xbus_data.write_reg_val(d.get_cur_value());
        };
    };
};

我的注册:

reg_def TIMER_LOAD_0 TIMER 20'h00010 {
    reg_fld timer_load : uint (bits : 32) : RW : 0xffff;
};


reg_def TIMER_BGLOAD_0 TIMER 20'h00014 {
    reg_fld timer_bgload : uint (bits : 32) : RW : 0xffff;
};


reg_def TIMER_BGLOAD_1 TIMER 20'h00028 { 
    reg_fld timer_bgload : uint (bits : 32) : RW : 0xffff;
    //another reg with the same instance name
};

我的代码,用于在将数据写入timer_bgload后更新tiemr_load寄存器:

extend TIMER vr_ad_reg_file {
    indirect_access( direction : vr_ad_rw_t, ad_item : vr_ad_base) is {
        if ad_item is a TIMER_LOAD_0 vr_ad_reg (d) {
            timer_bgload.write_reg_val(d.get_cur_value());
        };
    };
};

unit timer_env_u like any_env {
    post_generate() is also {
        timer_regs.timer_load_0.attach(timer_regs.timer_bgload_0.timer_bgload);
    };  
};

我收到编译错误

*** Error: No such variable 'timer_bgload'
                at line 17 in @timer_reg_db
            timer_bgload.write_reg_val(d.get_cur_value());

我真的很感激任何帮助。

2 个答案:

答案 0 :(得分:2)

您可以直接将timer_load注册添加到timer_bgload注册,并在那里实施indirect_access(...)

// attach the regs
extend TIMER vr_ad_reg_file {
  post_generate() is also {
    timer_load_0.attach(timer_bgload_0);
  }; 
};

// implement indirect_access()
extend TIMER_BGLOAD_0 vr_ad_reg {
  indirect_access(direction : vr_ad_rw_t, ad_item : vr_ad_base) is {
    if direction == WRITE and ad_item is a TIMER_LOAD_0 vr_ad_reg (d) {
      write_reg_val(d.get_cur_value());
    };
  };
};

我不知道为什么Cadence示例采用了将寄存器文件附加到间接寄存器的漫长路径。

另外,如果你有多个TIMER_LOAD / BGLOAD寄存器(看起来你可能有2个),那么最好的办法是首先定义类型:

// define register types without instantiation in reg_file
reg_def TIMER_LOAD {
  reg_fld timer_load : uint (bits : 32) : RW : 0xffff;
};

reg_def TIMER_BGLOAD {
  reg_fld timer_bgload : uint (bits : 32) : RW : 0xffff;
};

定义类型后,可以根据需要手动在寄存器文件中实例化它们。看一下手册,有一个例子可以告诉你如何做到这一点。

这意味着它足以在indirect_access(...)子类型中实现TIMER_BGLOAD方法(仅一次)而不是两次(对于TIMER_BGLOAD_0和{{1} })。

答案 1 :(得分:1)

我用post_access实现它,类似的东西:

extend TIMER_LOAD_0 TIMER vr_ad_reg {
    post_access(operation : vr_ad_rw_t) is {
        if operation == WRITE {
            var rgf := get_access_path()[0].as_a(TIMER vr_ad_reg_file);
            rgf.timer_bgload_0.timer_bgload = timer_load;
        };
    };
};

注意,它可能不适用于第一次击中。如果不是,我会逐渐建立它,从空的'开始。像这样的代码:

extend TIMER_LOAD_0 TIMER vr_ad_reg {
    post_access(operation : vr_ad_rw_t) is {
        print me, operation;
    };
};

print语句中设置断点,打开数据浏览器,查看我们在那里获得的字段的确切名称,尝试从Specman CLI访问它们 - 当它工作时 - 将其编码回来