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

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

手机号码,快捷登录

手机号码,快捷登录

找回密码

  登录   注册  

快捷导航
搜帖子
查看: 2495|回复: 7

[求助] 请教astro scripts的问题

[复制链接]
发表于 2013-8-7 23:11:26 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?注册

x
最近刚开始接触P&R, 学习astro的使用。
遇到几个基本问题,想向各位请教一下:
1. TDF file中的内容如下:
   pin "x" 16 0.6 0.6 "top" 0 1350.00
  想请问这里的16表示的是什么?
2. 我在scripts里看到有如下指令:
    load “.../chrt035_ant.cmd”
    在run astro,执行script时,提示load command error.
   (  chrt035_ant.cmd内容如下:
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;       File:                chrt035_ant.cmd
;;       Author:        Yu Chen
;;       @(#) Astro command file for antenna rule setting for Chartered 0.35U LOGIC
;;       @(#) Revision        1.0.1.0
;;       @(#) Date        17-Nov-04
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Copyright (c) 2004 Synopsys, Inc.  All Rights Reserved
;; This information is provided pursuant to a license agreement that grants
;; limited rights of access/use and requires that the information be treated as
;; confidential.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; Foundry Document Reference : YI-108-DR001 Rev 1J
;; Foundry Document Title     : Chartered 0.13um LOGIC/MIXED SIGNAL/RF Technology Design Rules
;;
;; Revision        Date           Who        What
;; ------------        ---------  ---        ----------------------------------------------------------------
;; Rev. 1.0.1.0        17-Nov-04  YC        Initial version based on Chartered 0.35um Logic DRM
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;  Usage : type (load "chrt035_ant.cmd") in the Astro/Apollo window to store the
;;          advanced Antenna rule definitions.
;;
;; dbDefineAntennaRule libId mode diodeMode defaultMetalRatio defaultCutRatio
;;      mode
;;        1 : top area based, ignore all lower-layer segments
;;        2 : top area based, include lower-layer segments to the input pins
;;        3 : top area based, include all lower-layer segments
;;        4 : sidewall area based, ignore all lower-layer segments
;;        5 : sidewall area based, include lower-layer segments to the input
;;            pins
;;        6 : sidewall area based, include all lower-layer segments
;;      diodeMode (outputPin)
;;        0 : output pin cannot protect antenna
;;        1 : any diode can provide unlimited protection
;;        2 : diode protection is limited. If more than 1 diode are connected,
;;        the largest value of max-antenna-ratio of all diodes will be used.
;;        3 : diode protection is limited. If more than 1 diode are connected,
;;        the sum of max-antenna-ratio of all diodes will be used.
;;        4 : diode protection is limited. If more than 1 diode are connected,
;;        the sum of all diode-protection value of all diodes will be used
;;        to compute max-antenna-ratio.
;;
;; dbAddAntennaLayerRule libId mode "layer" layerMaxRatio '(v0 v1 v2 v3)
;;      layerMaxRatio
;;          max. antenna ratio with no diode protection
;;      (dp > v0) ? ((dp + v1 ) * v2 + v3) : layerMaxRatio
;;          max. antenna ratio with (diode protection == dp)
;;
;; Notes
;; -----
;; 1-     You would set either Advanced Rules in HPO form, or set
;;        (axSetIntParam "droute" "doAntennaConx" 4)
;;        during the Astro session to use those advanced antenna rules definition.
;;        There is no need then to use droute parameters maxAntennaRatio and maxCutAntennaRatio.
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

define _libId (dbGetCurrentLibId)
dbClearLibAntennaRules _libId
dbDefineAntennaRule _libId 1 1 150 0


请问应该怎样修改script,才可以正确执行load “.../chrt035_ant.cmd”的操作?

非常感谢指点,谢谢!
发表于 2013-8-8 11:03:24 | 显示全部楼层
回复 1# xmlsmile


   [ANS1]  "16" means the layer number which is defined in Astro techfile.   [ANS2] you should open the library first and then use scheme command mode "load  ./your_antenna_file"
hope it is useful.
 楼主| 发表于 2013-8-8 22:35:21 | 显示全部楼层
回复 2# wilson168


    谢谢你的回复。

    对于load指令的问题,我今天试着将script里的command : load "../chrt035_ant.cmd"修改成load_scheme "../chrt035_ant.cmd"
    在执行command时没有报错,

    不知道这样的作法是否真的OK?

     谢谢!
 楼主| 发表于 2013-8-8 22:45:42 | 显示全部楼层
回复 2# wilson168


    另外,我想请教下
    "16" means the layer number which is defined in Astro techfile

    TDF file是需要自己编写的么?又是根据什么来确定TDF file里pin的各个参数设定呢?
发表于 2013-8-9 09:58:55 | 显示全部楼层
回复 4# xmlsmile

[Ans1] Yes. If you are in Tcl mode , using "load_scheme"  as instead.[Ans2] The TDF file is based on real design condition to define the pins' location.
 楼主| 发表于 2013-8-9 10:57:23 | 显示全部楼层
回复 5# wilson168


    我知道TDF file的编写是需要根据design的具体要求。
那现在我尝试的只是做一个core的floorplan,没有对pin的location 方面的要求.
所以我想问的是:
在目前这种design本身没有具体要求的情况下,TDF file中pin的layernumber & 其他参数的设定是否有具体的限制?
还是说只要我可以任意的设定这些pin的信息?

不知道您是否能明白我想问的问题?
非常感谢!
发表于 2013-8-9 11:40:18 | 显示全部楼层
回复 6# xmlsmile
It is not necessary to make TDF file if the pins' location is not important.
Astro will automatically create that.
And then you can get a file by using "PostPlace -> Dump Placement-> by type  io"  as a template for further settings....
As it. That's my answer for your issue.
 楼主| 发表于 2013-8-9 22:11:29 | 显示全部楼层
回复 7# wilson168


    我知道了,非常感谢!!!!!!
您需要登录后才可以回帖 登录 | 注册

本版积分规则

关闭

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


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

GMT+8, 2024-11-22 20:09 , Processed in 0.026295 second(s), 7 queries , Gzip On, Redis On.

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