今天偶然在群里看到有人分享了Mentor Graphics
提供的一个 UART 的 UVM 验证环境代码,包含了 UVM 的基本使用以及进阶的 UVM 寄存器模型。这里也分享给大家。
文件说明
agents/apb_agent - APB agent used in the UVM testbench
agents/uart_agent - UART agent user in the UVM testbench
agents/modem_agent - UART Modem interface agent, used in the UVM testbench
docs
protocol_monitor - contains an example APB protocol monitor
rtl - Contains the UART RTL source code***
sim - Simulation directory for the example, contains the Makefile
uvm_tb/tb - Top level testbench
uvm_tb/tests
uvm_tb/virtual_sequences
uvm_tb/sequences
uvm_tb/register_model
uvm_tb/env - contains the functional coverage monitors described in the cookbook
DUT 是 16550A UART 模块,接口主要包含 apb、uart 以及一些状态信号,agents 下是不同接口的 agent,16550A UART 的详细 spec 建议大家自己搜索下载。
docs 是 uart 模块的简单说明,包含了一些寄存器的说明
protocol_monitor 是一个协议检查模块,通过断言对 apb 协议进行检查
环境集成以及 sequence 等编写在 uvm_tb 下。
运行仿真
想要运行可以通过 sim 目录下的 makefile 进行,makefile 调用的是 quesatsim 进行仿真,如果没有的话,需要自己编写 vcs 的 makefile 进行仿真。
如果想要在 window 下通过 makefile 运行仿真,需要以下几个步骤
- 安装 git_bash,git 的 bash 实际上也就是一个 mingw,是可以支持部分 linux 指令的,但是只有少部分,可以让我们的的终端更加像 linux 下的操作。这个时候还是不支持 makefile,需要我们自行安装,教程可以参考下面的链接
https://www.eemaker.com/git-bash-make.html
- 安装 questasim
完成以后就能直接通过 make all 运行啦。
默认的 makefile 只进行到仿真这一步,没有生成覆盖率报告,我在 makefile 中加了入了覆盖率相关的命令
先合并覆盖率数据库,然后生成覆盖率报告的 html 文件
rpt_cg:
vcover merge -out merge_coverage.ucdb *.ucdb
vcover report -details -html merge_coverage.ucdb
@echo "html has been created in ./sim/covhtmlreport"
详细的内容请查看 README
后台回复
uart
获得验证环境