在线咨询
eetop公众号 创芯大讲堂 创芯人才网
切换到宽版

EETOP 创芯网论坛 (原名:电子顶级开发网)

手机号码,快捷登录

手机号码,快捷登录

找回密码

  登录   注册  

快捷导航
搜帖子
查看: 2159|回复: 3

[求助] 数字综合版图,cds thru导致lvs不通过

[复制链接]
发表于 2023-8-4 10:44:29 | 显示全部楼层 |阅读模式
300资产
最近通过写代码的方式生成版图,代码里有一对输入和输出端口逻辑上一直是1和0同步变化(属于巧合),因此软件综合的时候在二者之间加上了cds thru来防止短路然后接在了一起。但是这样综合的结果版图lvs过不了,显示找不到对应的pin。这样的问题有人知道如何解决吗,急求呀

 楼主| 发表于 2023-8-4 10:45:17 | 显示全部楼层
图片在此
222222.png
发表于 2023-8-4 10:51:20 | 显示全部楼层
本帖最后由 knowworlds 于 2023-8-4 11:10 编辑


转自cadence forum,原创回答:Andrew Beckett

Problem
The cds_thru device from the "basic" library is used when it is required to join up 2 different pins in a schematic (.e.g to join up a VSSA net to a VSS net). How can an LVS mismatch due to this extra device be resolved?

Solution
The LVS mismatch can be resolved as follows:

=== Assura ===
avCompareRules(
   schematic(
      filterDevice("cds_thru" short("src" "dst"))
   ) ;schematic
) ;avCompareRules

Using the above command, Assura will filter the cds_thru device from the schematic and short the 2 terminals. The net connecting to the 1st terminal specified in the command will be retained. For the above example, it will be the net connecting to the "src" terminal.

For a CDL netlist input, the command would be:

avCompareRules(
   schematic(
      filterDevice( "SH" short("src" "dst"))
   ) ;schematic
) ;avCompareRules

cds_thru is exported to a CDL netlist as a resistor with the model "SH" and resistance 0.1 ohms. Alternatively, the following CDL control command can be used in the CDL netlist:
*.RESI 2000

The above means that resistors with R values of 2000 and below will be automatically shorted.

=== PVS ===
lvs_filter_device R(SH) -short -source

=== Calibre ===
LVS FILTER R(SH) SHORT SOURCE

 楼主| 发表于 2023-8-4 14:09:18 | 显示全部楼层


knowworlds 发表于 2023-8-4 10:51
转自cadence forum,原创回答:Andrew Beckett

Problem


谢谢!我去看下
您需要登录后才可以回帖 登录 | 注册

本版积分规则

关闭

站长推荐 上一条 /2 下一条

小黑屋| 手机版| 关于我们| 联系我们| 隐私声明| EETOP 创芯网
( 京ICP备:10050787号 京公网安备:11010502037710 )

GMT+8, 2025-5-1 17:59 , Processed in 0.016795 second(s), 7 queries , Gzip On, MemCached On.

eetop公众号 创芯大讲堂 创芯人才网
快速回复 返回顶部 返回列表