数字IC笔记-UPF:创建

文章目录

  • 1.supply network
    • 1.network
    • 2.supply net
  • 2.supply set
    • 1.set
    • 2.supply sets in power domains

1.supply network

1.network

supply network是使用详细的供应连接起来的:
supply nets、supply ports、power switches
supply nets 创建使用 -domain选项,使它创建在当前功率域。
数字IC笔记-UPF:创建_第1张图片

create_supply_port //创建port
create_supply_net  //创建net
connect_supply_net //连接net到port
set_domain_supply_net //为该功率域所有逻辑导出连接性
create_power_switch //创建功率域开关

2.supply net

数字IC笔记-UPF:创建_第2张图片
创建功率域
create_power_domain TOP
create_power_domain pd1 -elements u_dhm_core
在top层创建三个port
create_supply_port VDD
create_supply_port VDDL
create_supply_port VSS
数字IC笔记-UPF:创建_第3张图片
在top层创建net
create_supply_net VDD -domain TOP
create_supply_net VDDL -domain TOP
create_supply_net VSS -domain TOP
数字IC笔记-UPF:创建_第4张图片
在子层创建net,使用reuse不要在子层创建port可以直接连线,否则需要创建port
create_supply_net VDDL -domain pd1 -reuse
create_supply_net VSS -domain pd1 -reuse
create_supply_net VDDLS1 -domain pd1
数字IC笔记-UPF:创建_第5张图片
连接net到port
connect_supply_net VDD -ports {VDD}
connect_supply_net VDDL -port {VDDL}
connect_supply_net VSS -port {VSS}
数字IC笔记-UPF:创建_第6张图片
确定电压从哪里来
set_domain_supply_net TOP -primary_power_net VDD -primary_power_net VSS
set_domain_supply_net pd1 -primary_power_net VDDLS1 -primary_power_net VSS

2.supply set

1.set

set是多个net的集合,属于抽象的概念
数字IC笔记-UPF:创建_第7张图片
数字IC笔记-UPF:创建_第8张图片
设置set语法:
create_supply_set set_name [-function {func_name [net_name]}] [-update]
示例:
create_supply_set PDT_primary_set
create_supply_set PDT_primary_set
-function {power VDD07}
-function {ground VSS} -update

2.supply sets in power domains

在power domain中存在不同的设计元素,它们都可以用set进行连接。
首先抽出供电集合

元素 供电
logic element in p2 VDD_sw_p2 ,VSS
ISO elements VDD, VSS
retention flops VDD_LOW ,VSS

数字IC笔记-UPF:创建_第9张图片
使用supply set

元素 set
logic element in p2 ss_P2
ISO elements ss_ISO
retention flops ss_RET

数字IC笔记-UPF:创建_第10张图片
总结:
学习视频来源:https://www.bilibili.com/video/BV18i4y187XV

你可能感兴趣的:(数字IC后端笔记,芯片)