|
发表于 2020-12-25 16:26:58
|
显示全部楼层
本帖最后由 greatao 于 2020-12-25 16:28 编辑
In some cases, you might need to define a signal twice, once with -view existing_dft and once with -view spec. This can occur when you have manually routed a signal to some design logic, but you also require the insert_dft command to make its own connections. For example, you might connect the scan enable signal to some top-level DFT logic contained in the RTL, but you also need the scan enable signal connected to the scan flip-flops:
set_dft_signal -view existing_dft -type ScanEnable -port MY_SCAN_EN
set_dft_signal -view spec -type ScanEnable -port MY_SCAN_EN
以上摘自solvnet
举个例子,更好理解,假设scan_enable除了作为DFT的scan_enabl,还需要控制ICG的TE端口,这时候需要设置set_dft_signal两次!
|
|