分享一个原理图迁移工艺的skill脚本(初版)

EETOP 2021-05-09 11:19

射频测试技术周(5月10-14日)报名倒计时!

射频专家在线分享:下一代射频芯片、滤波器、毫米波、相控阵方案等

来源:IC技能搬用工

如果你是一名模拟IC设计者,如果你曾经或者将要换工艺,那么你一定寻找过原理图迁移工艺的方法,下面介绍的就是可以实现这个功能的脚本。

脚本内容
首先感谢网友的无私奉献,该脚本来源于Cadence在线技术支持网站:support.cadence.com,需要注册用户才有权限进入,具体脚本(文件名:CCSdelInstCreate.il)如下。
1/*************************************************************************
2* DISCLAIMER: The following code is provided for Cadence customers       *
3* to use at their own risk. The code may require modification to         *
4* satisfy the requirements of any user. The code and any modifications   *
5* to the code may not be compatible with current or future versions of   *
6* Cadence products. THE CODE IS PROVIDED "AS IS" AND WITH NO WARRANTIES, *
7* INCLUDING WITHOUT LIMITATION ANY EXPRESS WARRANTIES OR IMPLIED         *
8* WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE.         *
9*************************************************************************/
10
11/* 
12USAGE:
13======
14
15This SKILL code runs on all the schematic views of a library and finds if
16instances of a particular device or cell has been used or not. If they are
17found then they need to be replaced with a new cell of a new library.
18List of cell and its mapping to new cell has to be provided via deviceMapList.
19For example:
20deviceMapList='(("nmos1v" ("newRefLib" "nmos2v")) ("pmos1v" ("newRefLib" "pmos2v")))
21
22In above example, nmos1v is supposed to be swapped with newRefLib nmos2v cell.
23pmos1v is supposed to be swapped with newRefLib pmos2v cell.
24
25The code copies old instance transform (placement info) and important properties
26which needs to be paased on to new cell. And then it copies the old property 
27values to new properties. The old and new property mapping is supposed to be
28provided via propMapList.
29For example:
30propMapList='(("L" "l") ("W" "w") ("M" "m")) 
31
32In the above list, value of property "L" is supposed to be copied to "l".
33value of property "W" is supposed to be copied to "w".
34value of property "M" is supposed to be copied to "m".
35
36Load the SKILL code in CIW:
37load "CCSdelInstCreate.il"
38
39Run in CIW:
40CCSdelInstCreate("MYLIB")
41
42*/
43
44procedure( CCSdelInstCreate(library @optional
45;; Modify device list as per your primitive devices
46( deviceMapList '(("nmos" ("OALIB" "nmos4"))  ("pmos" ("OALIB" "pmos4"))))
47;; Modify propMapList as per the properties you want to copy
48    (propMapList '(("l" "L") ("w" "W") ("m" "m")) )
49     "tll")   
50let((cv cellname name transform libId instId deviceList deviceTable propTable)
51
52libId=ddGetObj(library)
53unless(libId error("Specified library: %s does not exists, cannot proceed!\n" library))
54
55deviceTable=makeTable("deviceTable")
56foreach(dev deviceMapList 
57    deviceTable[car(dev)]=cadr(dev)
58    deviceList=cons(car(dev) deviceList)
59    )
60
61propTable=makeTable("propTable")
62foreach(cellId libId~>cells
63;; Check if the cell has schematic view
64    if(exists(x cellId~>views~>name (x=="schematic"))
65        then
66printf("Operating on Lib: %s Cell:%s View: schematic\n" library cellId~>name )
67        cv=dbOpenCellViewByType(library cellId~>name "schematic"  "schematic"  "a")
68;; Check if cellview has the instances of given device
69                foreach(inst cv~>instances
70                    if(member(inst~>cellName deviceList) then
71                    transform=inst~>transform
72                    name=inst~>name
73                    cellname=inst~>cellName
74
75;; Populate old property values to table
76/*
77                    foreach(propList propMapList
78                    propTable[car(propList)]=dbFindProp(inst car(propList))~>value
79                        ) ;foreach
80*/
81                    cdfId=cdfGetInstCDF(inst)
82                    foreach(propList propMapList
83                    propTable[car(propList)]=cdfFindParamByName(cdfId car(propList))~>value
84                        ) ;foreach
85
86;; Delete old instance
87                    dbDeleteObject(inst)
88
89;; Create new instance
90        instId=dbCreateInstByMasterName(cv car(deviceTable[cellname])
91            cadr(deviceTable[cellname])
92                "symbol" name 
93                car(transform)
94                cadr(transform) )
95
96;; Polpulate the inst parameter values from prop table
97        foreach(propList propMapList
98            dbSet(instId propTable[car(propList)] cadr(propList))
99            ) 
100                            ) ;if member
101                            ) ;foreach inst
102
103/* To check and save the cellview uncomment below line */
104         ; if(dbIsCellViewModified(cv) then schCheck(cv) dbSave(cv))
105        ) ;if
106    ) ;foreach
107t
108  );let
109);proc

左右滑动可以查看更多内容哦!

以上脚本实现的思路大概分成以下几步:
  • 第一步:用户通过传递参数确定不同工艺之间器件名称、参数之间的对应关系
  • 第二步:打开原始电路,并将原始电路中的参数值和坐标信息保存在变量中。
  • 第三步:删除原始电路中需要替换的cell,并从参考库中调进新的cell,将上一步保存的参数值填入相应位置,并按照原始电路中cell的坐标放置新的cell,保存电路。
  • 第四步:遍历目标Library中所有原理图,重复上面三个步骤,完成所有替换。

使用上面的脚本可以完成器件替换,但是很可能替换完成之后仿真中依然存在错误,原因是在替换过程中器件的参数虽然填入,但是未触发相应的CDF callbacks函数,所以还需要用下文提供的函数重新触发CDF callbacks.


推荐大家在完成替换流程之后重新触发该Library下所有的CDF callbacks,需要加载两个脚本。

第一个脚本实现触发CDF callbacks函数,脚本内容比较复杂,具体内容小目同学没有认真看过,这里先做一次“拿来主义”者,内容如下(文件名:CCSinvokeCdfCallbacks.il):

1/* CCSinvokeCdfCallbacks.il
2
3Date       Jul 11, 1995 
4Modified   Dec 23, 2013 
5
6Invoke all the CDF callbacks for instances
7
8The main entry point is (CCSinvokeCdfCallbacks cellView)
9which invokes all the CDF callbacks for every instance in
10a cellView. This has some keyword arguments which allow debug
11messages to be displayed, to invoke the formInitProc if needed,
12and to invoke using the instance CDF directly, rather than try
13to create something that looks more like the effective CDF that
14is found when the callbacks are normally invoked from the forms.
15
16You can use the variable CCScallbackPatternsToIgnore so
17that some callbacks can be omitted.
18
19Extended in version 1.16 to allow ?filterFunc to be passed.
20This is a function that gets the cdf, the param name (nil
21for the initProc) and callback string.
22The function should return t if the callback should be called, 
23and nil otherwise. For example:
24
25procedure(MYfilterFunc(cdf paramName callback)
26    destructuringBind(
27    (lib @optional cell) CCSgetLibCellFromCDF(cdf)
28    ; t if any other parameter than w for gpdk090/nmos1v
29    !(lib=="gpdk090" && cell=="nmos1v" && param=="w")
30    )
31)
32
33CCSinvokeCdfCallbacks(geGetEditCellView() ?filterFunc 'MYfilterFunc)
34
35***************************************************
36
37SCCS Info: @(#) CCSinvokeCdfCallbacks.il 12/23/13.12:50:52 1.16
38
39*/
40
41/*******************************************************************************
42*  DISCLAIMER: The following code is provided for Cadence customers to use at  *
43*   their own risk. The code may require modification to satisfy the           *
44*   requirements of any user. The code and any modifications to the code may   *
45*   not be compatible with current or future versions of Cadence products.     *
46*   THE CODE IS PROVIDED "AS IS" AND WITH NO WARRANTIES, INCLUDING WITHOUT     *
47*   LIMITATION ANY EXPRESS WARRANTIES OR IMPLIED WARRANTIES OF MERCHANTABILITY *
48*   OR FITNESS FOR A PARTICULAR USE.                                           *
49*******************************************************************************/
50/***************************************************************
51*                                                              *
52*    The variable CCScallbackPatternsToIgnore is set to be     *
53*      a list of patterns against which the callbacks are      *
54*      checked. If any of these patterns are matched then      *
55*                 the callback is not invoked.                 *
56*                                                              *
57***************************************************************/
58
59(unless (boundp 'CCScallbackPatternsToIgnore)
60  (setq CCScallbackPatternsToIgnore
61    '("^MYPDKNot_Allowed.*")))
62
63/***************************************************************
64*                                                              *
65*  (CCSshouldCallbackBeExecuted callback filterFunc cdf param) *
66*                                                              *
67*  This checks the callback against all the patterns defined   *
68*    in the list CCScallbackPatternsToIgnore to determine      *
69*       whether the callback should be executed or not.        *
70*    If filterFunc is passed, call with cdf, param name and    *
71*            callback - this should return t or nil            *
72*                                                              *
73***************************************************************/
74
75(procedure (CCSshouldCallbackBeExecuted callback filterFunc cdf param)
76  (and
77    (forall pattern CCScallbackPatternsToIgnore
78        (null (rexMatchp pattern callback)))
79    (if filterFunc
80      (funcall filterFunc cdf param callback)
81      t
82      )
83    )
84  )
85
86/***************************************************************
87*                                                              *
88*                 (CCSgetLibCellFromCDF cdf)                   *
89*                                                              *
90*   Utility function to retrieve a list of lib and cell name   *
91*  from the CDF, regardless of whether it is an inst, cell or  *
92* lib CDF. For lib CDF it only returns a list of the lib name  *
93*                                                              *
94***************************************************************/
95
96(procedure (CCSgetLibCellFromCDF cdf)
97  (let (id)
98    (setq id (getq cdf id))
99    (case (type id)
100      (dbobject
101    (list (getq id libName) (getq id cellName))
102    )
103      (ddCellType
104    (list (getq (getq id lib) name) (getq id name))
105    )
106      (ddLibType
107    (list (getq id name))
108    )
109      )
110    )
111  )
112
113/*********************************************************************
114*                                                                    *
115*       (CCScreateEffectiveCDFLookalike cdf [lookalikeParams]        *
116*                       [resetLookalikeParams])                      *
117*                                                                    *
118*     Create a structure which looks (sort of) like an effective     *
119*  CDF. The reason for creating this is to allow the "id" parameter  *
120*  to be correctly set to the cell, rather than the instance, which  *
121* is what happens if we use the cdfGetInstCDF() function to simulate *
122* cdfgData. The lookalikeParams optional parameter allows creation   *
123* of the parameters to be "lookalike" as well, so that callbacks can *
124* be called even if there is no actual instance. By default, the     *
125* parameters will be reset with using lookalikeParams, unless you    *
126*                   pass nil as the third argument.                  *
127*                                                                    *
128*********************************************************************/
129
130(procedure (CCScreateEffectiveCDFLookalike cdf @optional lookalikeParams
131                      (resetLookalikeParams t))
132  (let (new cdfFields newParam)
133       (unless (getd 'make_CCSeffCDF)
134           ;---------------------------------------------------------
135           ; Because some slots appear twice in cdf->? have
136           ; to make the list unique
137           ;---------------------------------------------------------
138           (setq cdfFields (makeTable 'cdfFields))
139           (foreach field (getq cdf ?)
140            (setarray cdfFields  field t)
141            )
142           (eval `(defstruct CCSeffCDF ,@(getq cdfFields ?))))
143       (setq new (make_CCSeffCDF))
144       (when (and lookalikeParams (null (getd 'make_CCSeffCDFparam)))
145     (setq cdfFields (makeTable 'cdfFields))
146     (foreach field (getq (car (getq cdf parameters)) ?)
147          (setarray cdfFields field t))
148     (eval `(defstruct CCSeffCDFparam ,@(getq cdfFields ?))))
149       ;-----------------------------------------------------------------
150       ; populate the effective cdf with the top level cdf attributes
151       ;-----------------------------------------------------------------
152       (foreach param (getq cdf ?)
153        (putprop new (get cdf param) param))
154       ;-----------------------------------------------------------------
155       ; Set the id and type attributes appropriately
156       ;-----------------------------------------------------------------
157       (when (equal (getq new type) "instData")
158     (putpropq new (dbGetq (dbGetq (getq cdf id) master) cell) id)
159     (putpropq new "cellData" type)
160     )
161       ;-----------------------------------------------------------------
162       ; If we want the parameters to be lookalike too, create those
163       ;-----------------------------------------------------------------
164       (when lookalikeParams
165     (putpropq new 
166           (foreach mapcar param (getq cdf parameters)
167                (setq newParam (make_CCSeffCDFparam))
168                (foreach slot (getq param ?)
169                     (putprop newParam (get param slot) slot))
170                (when resetLookalikeParams
171                  ; reset the value to defValue for safety
172                  (putpropq newParam (getq newParam defValue) value)
173                  )
174                newParam
175                )
176           parameters)
177     ) ; when
178       ;-----------------------------------------------------------------
179       ; Add the parameters as properties in the effective cdf
180       ;-----------------------------------------------------------------
181       (foreach param (getq new parameters)
182        (putprop new param (getq param name))
183        )
184       new
185       )
186  )
187
188/*******************************************************************
189*                                                                  *
190*       (CCSaddFormFieldsToEffectiveCDFLookalike cdf inst)         *
191*                                                                  *
192* Populate four extra fields - libraryName, cellName, viewName and *
193*  instanceName to emulate the forms on the forms - i.e. so that   *
194*  cdfgForm gets these slots. This is for callbacks which (badly)  *
195*   use cdfgForm to find out libraryName, cellName and viewName.   *
196*                                                                  *
197*******************************************************************/
198
199(procedure (CCSaddFormFieldsToEffectiveCDFLookalike cdf inst)
200  (let (fieldData value)
201    (unless (getd 'make_CCSeffCDFFormFields)
202      (defstruct CCSeffCDFFormFields value defValue lastValue 
203    editable enabled invisible)
204      )
205    (foreach (field attr) '(libraryName cellName viewName instanceName) 
206         '(libName cellName viewName name)
207         (setq value (dbGet inst attr))
208         (setq fieldData
209           (make_CCSeffCDFFormFields
210             ?value value
211             ?defValue value
212             ?lastValue value
213             ?editable t
214             ?enabled t
215             ?invisible nil
216             ))
217         (putprop cdf fieldData field)
218         )
219    cdf
220    )
221  )
222
223/********************************************************************
224*                                                                   *
225*       (CCSinvokeObjCdfCallbacks cdf @key (debug nil) order        *
226*        (callInitProc nil) (setCdfgForm t) (filterFunc nil))       *
227*                                                                   *
228*       Underlying function which does all the real work. This      *
229* is separated from the original function CCSinvokeInstCdfCallbacks *
230*     so that this can be called with a completely virtual CDF.     *
231*      See CCSinvokeInstCdfCallbacks for a description of the       *
232*   arguments - note that there is the ability to control whether   *
233*                      cdfgForm is set or not.                      *
234*  Return nil if any callback failed with a SKILL error, t otherwise*
235*                                                                   *
236********************************************************************/
237
238(procedure (CCSinvokeObjCdfCallbacks cdf @key (debug nil) order
239                     (callInitProc nil) (setCdfgForm t)
240                     filterFunc)
241  ;----------------------------------------------------------------------
242  ; Make cdfgData and cdfgForm dynamically scoped, to avoid
243  ; interfering with any global usage of these variables
244  ;----------------------------------------------------------------------
245  (let (callback parameters cdfgData cdfgForm (success t))
246       ;-----------------------------------------------------------------
247       ; Set the cdfgData to be the instance CDF
248       ;-----------------------------------------------------------------
249       (setq cdfgData cdf)
250       (setq cdfgForm nil)
251       (when setCdfgForm 
252     ;---------------------------------------------------------------
253     ; some callbacks use cdfgForm instead
254     ;---------------------------------------------------------------
255     (setq cdfgForm cdfgData)
256     )
257       ;-----------------------------------------------------------------
258       ; Call the formInitProc if there is one.
259       ;-----------------------------------------------------------------
260       (when callInitProc
261         (setq callback (getq cdfgData formInitProc))
262         (when (and callback 
263            (nequal callback "")
264            (CCSshouldCallbackBeExecuted callback filterFunc 
265                            cdfgData nil))
266           (when debug
267             (printf "  Invoking formInitProc: '%s'\n" callback))
268           ;-----------------------------------------------------
269           ; Evaluate the callback
270           ;-----------------------------------------------------
271           (unless
272            (errset (evalstring 
273                 (strcat callback "(cdfgData)")) t)
274            (setq success nil)
275            )
276           )
277         )
278       ;-----------------------------------------------------------------
279       ; Control order of parameter evaluation. If order specified,
280       ; just do those, otherwise do all in arbitrary order
281       ;-----------------------------------------------------------------
282       (if order
283       (setq parameters (foreach mapcar param order
284                     (get cdfgData param)))
285       (setq parameters (getq cdfgData parameters))
286       )
287       ;-----------------------------------------------------------------
288       ; loop through all parameters
289       ;-----------------------------------------------------------------
290       (foreach param parameters
291        (setq callback (getq param callback))
292        (when (and callback 
293               (nequal callback "")
294               (CCSshouldCallbackBeExecuted callback filterFunc
295                               cdfgData
296                               (getq param name)))
297              (when debug
298                (printf "  Invoking callback for '%s': '%s'\n"
299                    (getq param name) callback))
300              ;--------------------------------------------------
301              ; evaluate the callback
302              ;--------------------------------------------------
303              (unless (errset (evalstring callback) t)
304               (setq success nil)
305               )
306              ))
307  success))
308
309/*****************************************************************
310*                                                                *
311*      (CCSinvokeInstCdfCallbacks instance [?debug debug]        *
312*  [?order order] [?callInitProc callInitProc] [?useInstCDF nil] *
313*            [?addFormFields nil] [?filterFunc  nil]             *
314*                                                                *
315* Invoke all the parameter callbacks in the CDF for an instance. *
316*       This won't do anything if it doesn't have any CDF.       *
317* debug is a flag to turn on debug messages. order allows just   *
318* selected parameters to be called, in the specified order.      *
319* callInitProc allows the formInitProc to be called. useInstCDF  *
320* tells the formInitProc to be called with the instCDF rather    *
321* than the effective lookalike CDF. addFormFields tells it to    *
322* add the libraryName/cellName/viewName slots to emulate the     *
323* fields on the cdfgForm, which are used by some bad callback    *
324* code - note this is only done if useInstCDF is nil             *
325*                                                                *
326*****************************************************************/
327
328(procedure (CCSinvokeInstCdfCallbacks instance @key (debug nil) order
329                     (callInitProc nil) (useInstCDF nil)
330                     (addFormFields nil) (filterFunc nil))
331  ;----------------------------------------------------------------------
332  ; Make cdfgData and cdfgForm dynamically scoped, to avoid
333  ; interfering with any global usage of these variables
334  ;----------------------------------------------------------------------
335  (let (cdf)
336       (when debug
337         (printf " Invoking callbacks for instance '%s'\n"
338             (dbGetq instance name)))
339       ;-----------------------------------------------------------------
340       ; Set the cdf to be the instance CDF
341       ;-----------------------------------------------------------------
342       (setq cdf (cdfGetInstCDF instance))
343       (unless useInstCDF
344           (setq cdf (CCScreateEffectiveCDFLookalike cdf))
345           (when addFormFields
346         (CCSaddFormFieldsToEffectiveCDFLookalike cdf instance)
347         )
348           )
349       ;-----------------------------------------------------------------
350       ; Return value will be nil if any callbacks had errors
351       ;-----------------------------------------------------------------
352       (CCSinvokeObjCdfCallbacks
353     cdf 
354     ?debug debug ?order order ?callInitProc callInitProc
355     ?setCdfgForm (null useInstCDF) ?filterFunc filterFunc
356     )
357  ))
358
359/***************************************************************
360*                                                              *
361*              (CCSconvertCdfToPcellParams cdf)                *
362*                                                              *
363* Take modified parameters in the CDF, and return this as the  *
364*      list of parameter names, types, and values that is      *
365*       needed to create a pcell with dbCreateParamInst.       *
366*                                                              *
367***************************************************************/
368
369(procedure (CCSconvertCdfToPcellParams cdf)
370  (foreach mapcar param
371       (setof par (getq cdf parameters) 
372          (nequal (getq par value) (getq par defValue)))
373       (list
374         (getq param name)
375         ; need to map this to pcell parameter types...
376         (case (getq param paramType)
377           (("int" "boolean" "float" "string") (getq param paramType))
378           (t "string")
379           )
380         (getq param value)
381         )
382       )
383  )
384
385/***************************************************************
386*                                                              *
387*       (CCSinvokeCdfCallbacks cellView @key (debug nil)       *
388*   (callInitProc nil) (useInstCDF nil) (addFormFields nil))   *
389*                         (filterFunc nil)                     *
390*                                                              *
391*  Invoke the CDF callbacks for all instances in the cellView. *
392*  Returns nil if any callback had a SKILL error, otherwise t  *
393*                                                              *
394***************************************************************/
395
396(procedure (CCSinvokeCdfCallbacks cellView @key (debug nil) 
397                 (order nil)
398                 (callInitProc nil) (useInstCDF nil)
399                 (addFormFields nil) (filterFunc nil))
400  (let ((success t))
401       (when debug
402         (printf "Invoking callbacks for all instances in cell '%s'\n"
403             (dbGetq cellView cellName)))
404       (foreach instance (dbGetq cellView instances)
405        (unless
406         (CCSinvokeInstCdfCallbacks instance 
407                       ?debug debug
408                       ?order order
409                       ?callInitProc callInitProc
410                       ?useInstCDF useInstCDF
411                       ?addFormFields addFormFields
412                       ?filterFunc filterFunc
413                       )
414         (setq success nil)
415         )
416        ) ; foreach
417       success
418       )
419  ) ; procedure

左右滑动可以查看更多内容哦!

第二个脚本遍历指定Library下所有原理图,并依次触发该原理图中cell的CDF callbacks函数,内容如下(文件名:CCSCdfCallbackEntireLib.il)。

1/* 
2This SKILL code is not sufficient on its own. You need to also
3download CCSinvokeCdfCallbacks.il file before running this code.
4
5load "CCSinvokeCdfCallbacks.il"
6load "CCSCdfCallbackEntireLib.il"
7
8CCSCdfCallbackEntireLib("MYLIB")
9
10Where "MYLIB" is the design library. 
11
12*/
13
14
15
16/***************************************************************
17*                                                              *
18*        (CCSCdfCallbackEntireLib libName                *
19*                                                              *
20*  Invoke the CDF callbacks for all schematics of given library *
21*                                                              *
22***************************************************************/
23
24procedure(CCSCdfCallbackEntireLib(library)
25let((libName)
26unless(libName=ddGetObj(library) error("Library %s does not exists\n" library))
27foreach(cell libName~>cells
28    if(exists(x cell~>views~>name (x=="schematic"))
29         then
30    printf("Processing cell %s\n" cell~>name)
31;Open schematic
32    cv = dbOpenCellViewByType(library cell~>name "schematic" "schematic" "a")
33
34/* Run CDF Callback.
35
36Modify the below line if you want to run it with callInitProc and userInstCDF:
37CCSinvokeCdfCallbacks(cv ?callInitProc t ?useInstCDF t)
38
39Modify the below line if want to run callback of certain parameters only and in a particular order:
40CCSinvokeCdfCallbacks(cv ?order list("l" "w"))
41
42*/
43
44    CCSinvokeCdfCallbacks(cv)
45;Run schematic heck and Save
46    schCheck(cv)
47    dbSave(cv)
48        ) ;if
49    );foreach
50) ;let
51) ; procedure

左右滑动可以查看更多内容哦!

以上是原理图迁移工艺脚本需要使用的代码,至于代码中更具体的内容,欢迎感兴趣的同学在评论中积极讨论,当然对于大部分同学来说只需要了解如何使用脚本即可。

脚本使用介绍
下面介绍一下脚本的使用方法,在使用脚本前需要仔细阅读脚本最前面的注释内容,对每个脚本的使用方法都有详细介绍。

使用CCSdelInstCreate.il函数时,首先需要修改脚本第46行中deviceMapList和第48行中propMapList对应的内容,其中:
  • deviceMapList:指定器件的对应关系,格式为:("old_cell name" ("lib_name" "new_cell name")).

  • propMapList:指定器件参数的对应关系,比如,不同工艺中有可能对MOS的栅长、栅宽等参数叫法不一致,所以需要用户提供正确的对应关系,否则可能出现替换之后属性错误的情况。

注意:propMapList中的属性是指器件CDF中对应的Name一项,并非指器件Q出的属性名称,有几种方法可以查看propMapList中需要使用的属性名称。


最简单的方法是查看CDF中属性名称,在CIW界面:Tools->CDF->Edit,然后按照下图中标注选择Library Name、Cell Name等,即可在Component Parameter一项查看到器件参数名称。

还有一种方法可以查看对应参数在CDF中的名称,在Q出器件属性之后,每个参数后面有个是否显示器件属性名称和对应值的选择框,选择both一项可以同时查看器件属性名称和其对应值。
按照上述方法查看CDF中器件属性名称,并按照对应关系修改脚本中propMapList的值。

修改完脚本即可在CIW界面内load脚本,脚本load成功之后,使用函数
CCSdelInstCreate("library_name"),即可完成器件替换。

需要注意的是,由于每个工艺中器件种类较多,而不同种类器件属性不一样,所以为了避免出错,大家务必每次使用脚本只替换具有相同属性的器件。

对于一个原理图中包含不同属性的不同器件时,使用脚本替换数量较多的器件,或者选择重复多次上述替换步骤,分别替换不同类型器件的方法,进行整个设计的原理图替换。

实例:smic18mmrf工艺向tsmc18rf迁移的操作,CCSdelInstCreate.il脚本第46~48行内容修改如下:

46( deviceMapList '(("n33" ("tsmc18rf" "nmos3v"))  ("p33" ("tsmc18rf" "pmos3v"))))
47;; Modify propMapList as per the properties you want to copy
48    (propMapList '(("m" "m") ("l" "l") ("fw" "w") ("fingers" "fingers")) )

左右滑动可以查看更多内容哦!
在CIW窗口load脚本,并运行函数:
查看原理图,可以看到器件及相应属性已经按照预期替换成新工艺下的属性,但是部分器件的CDF callbacks没有触发,这时候电路抽出的网表极有可能是不正确的。

脚本使用第二步,替换完器件之后,使用以下脚本重新触发器件的CDF callbacks函数。


在CIW界面,依次load脚本CCSinvokeCdfCallbacks.il和CCSCdfCallbackEntireLib.il,然后按照格式:CCSCdfCallbackEntireLib("lib_name")调用函数。

重新触发CDF callbacks函数之后,使用脚本替换的器件与手工调用器件参数完全一致,仿真中生成的网表内容也一致,到此完成整个替换过程。

已知问题

脚本极有可能只完成用户80%的原理图迁移工作,为大家带来一部分效率提升,剩下的已知或者未知问题只能手动修改。


如果在脚本使用中发现:脚本运行报error,并且无法实现替换功能,请尽量保证每次脚本只替换一种器件类型,并且器件名称和参数对应正确。


在触发CDF callbacks函数时偶尔会出现CIW报错但是并不影响功能,无需在意,关于CDF callbacks函数的触发脚本还有多种其它用法,请参考脚本前的注释内容。

以上脚本有官方网站配套的使用教程和说明,同步更新在知识星球中


射频测试技术周(5月10-14日)

射频专家在线分享:下一代射频芯片、滤波器、毫米波、相控阵方案等

======================



支持EETOP,让我知道你在看哟 
EETOP EETOP半导体社区-国内知名的半导体行业媒体、半导体论坛、IC论坛、集成电路论坛、电子工程师博客、工程师BBS。
评论
  •        随着对车载高速总线的深入研究,以电信号为媒介的传输方式逐渐显露出劣势,当传输速率超过25Gbps时,基于电信号传输已经很难保证长距离传输下的信号质量与损耗。在这样的背景下,应用于工业领域的光通信技术因其高带宽、长距离、低电磁干扰的特点得到了密切的关注,IEEE在2023年发布了802.3cz[1]协议,旨在定义一套光纤以太网在车载领域的应用标准。MultiGBASE-AU总览       以下是Mult
    经纬恒润 2024-12-17 17:29 70浏览
  •   前言  作为一名电子专业的学生,半导体存储显然是绕不过去的一个坎,今天聊一聊关于Nand Flash的一些小知识。  这里十分感谢深圳雷龙发展有限公司为博主提供的两片CS创世SD NAND的存储芯片,同时也给大家推荐该品牌的相关产品。  一、定义  存储芯片根据断电后是否保留存储的信息可分为易失性存储芯片(RAM)和非易失性存储芯片(ROM)。  非易失性存储器芯片在断电后亦能持续保存代码及数据,分为闪型存储器 (Flash Memory)与只读存储器(Read-OnlyMemory),其中
    雷龙发展 2024-12-17 17:37 57浏览
  • 习学习笔记&记录学习学习笔记&记录学习学习笔记&记录学习学习笔记&记录学习笔记&记录学习习笔记&记学习学习笔记&记录学习学习笔记&记录学习习笔记&记录学习学习笔记&记录学习学习笔记记录学习学习笔记&记录学习学习笔记&记录学习学习笔记&记录学习学习笔记&记录学习学习笔记&记录学习习笔记&记录学习学习笔记&记录学习学习笔记&记录学习学习笔记&记录学习学习笔记&记录学习学习笔记&记录学习学习笔记&记录学习学习笔记&学习学习笔记&记录学习学习笔记&记录学习学习笔记&记录学习学习笔记&记录学习学习笔记&记
    youyeye 2024-12-18 14:02 62浏览
  • 以人形机器人和通用人工智能为代表的新技术、新产品、新业态蓬勃发展,正成为全球科技创新的制高点与未来产业的新赛道。01、Optimus-Gen 2来了,人形机器人管家还远吗?没有一点点防备,特斯拉人形机器人Optimus-Gen 2来了!12月13日,马斯克于社交媒体上公布了特斯拉第二代人形机器人的产品演示,并预计将于本月内发布。在视频中,Optimus-Gen 2相比上一代有了大幅改进,不仅拥有AI大模型的加持,并在没有其他性能影响的前提下(相比上一代)将体重减少10kg,更包含:由特斯拉设计的
    艾迈斯欧司朗 2024-12-18 12:50 49浏览
  • You are correct that the length of the via affects its inductance. Not only the length of the via, but also the shape and proximity of the return-current path determines the inductance.   For example, let's work with a four-layer board h
    tao180539_524066311 2024-12-18 15:56 51浏览
  • 随着现代汽车工业的不断发展,驾驶安全与舒适性成为消费者关注的焦点。在这个追求极致体验的时代,汽车ASF随动转向LED大灯技术应运而生,它不仅代表了车辆操控辅助系统的最新进展,更是对未来智能安全出行愿景的一次大胆探索。擎耀将深入探讨ASF随动转向技术的原理及落地方案,旨在为汽车LED照明升级行业提供一份详尽且实用的参考。首先,ASF随动转向技术不是什么高精尖的技术,一般的汽车大灯制造厂商都可能完成,通过软硬件的逻辑加上传感器,基本就可以实时监测车辆的行驶状态,包括但不限于车速、转向角度等关键参数。
    lauguo2013 2024-12-17 14:43 51浏览
  • 【富芮坤FR3068x-C】+开发环境疑问非常荣欣参加了这次《富芮坤FR3068x-C》评测活动,在搭建开发环境时,本人就遇到很大问题,主要有3个。第1个问题:本人按照《FR306x开发环境说明书》中的1章安装软件,keil5.36版本以上,并且打开sdk中uart工程,按照要求设置了Device配置如下: ARM Compiler选项链接文件配置但是编译结果如下:有23个warning,都是连接脚本中找不到,请问这样工程是否有问题?第2个问题:按照《FR306x开发环境说明书》中要求,需要电脑
    shenwen2007_656583087 2024-12-17 00:59 105浏览
  • 上汽大通G90是一款集豪华、科技与舒适于一身的中大型MPV,号称“国产埃尔法”。在国内市场,作为“卷王”的G90主要面向中大型MPV市场,满足家庭出行、商务接待和客运租赁等多元化场景需求,在国内市场上取得了不错的销售成绩。在海外市场,上汽大通G90也展现出了强大的竞争力,通过技术创新和品质提升,上汽大通的产品在国际市场上获得了广泛认可,出口量持续增长,如果你去过泰国,你就应该可以了解到,上汽的品牌出海战略,他们在泰国有建立工厂,上汽大通G90作为品牌的旗舰车型之一,自然也在海外市场上占据了重要地
    lauguo2013 2024-12-18 10:11 72浏览
  • 车载光纤通信随着ADAS(高阶驾驶辅助系统)、汽车智能网联、V2X和信息娱乐技术的不断发展,车载电子系统和应用数量迅速增加。不断增长的车内传输数据量对车载通信网络造成了巨大的数据带宽和安全性需求,传统的车载总线技术已经不能满足当今高速传输的要求。铜缆的广泛使用导致了严重的电磁干扰(EMI),同时也存在CAN、LIN、FlexRay等传统总线技术不太容易解决的问题。在此背景下,车载光纤通信技术逐渐受到关注和重视,除了大大提高数据传输率外,还具有抗电磁干扰、减少电缆空间和车辆质量等优点,在未来具有很
    广电计量 2024-12-18 13:31 62浏览
  • 1. 磁性材料的磁化曲线磁性材料是由铁磁性物质或亚铁磁性物质组成的,在外加磁场H 作用下,必有相应的磁化强度M 或磁感应强度B,它们随磁场强度H 的变化曲线称为磁化曲线(M~H或B~H曲线)。磁化曲线一般来说是非线性的,具有2个特点:磁饱和现象及磁滞现象。即当磁场强度H足够大时,磁化强度M达到一个确定的饱和值Ms,继续增大H,Ms保持不变;以及当材料的M值达到饱和后,外磁场H降低为零时,M并不恢复为零,而是沿MsMr曲线变化。材料的工作状态相当于M~H曲线
    锦正茂科技 2024-12-17 10:40 125浏览
  •  2024年下半年,接二连三的“Duang Duang”声,从自动驾驶行业中传来:文远知行、黑芝麻、地平线、小马智行等相继登陆二级市场,希迪智驾、Momenta、佑驾等若干家企业在排队冲刺IPO中。算法模型的历史性迭代与政策的不断加码,让自动驾驶的前景越来越清晰。由来只有新人笑,有谁听到旧人哭。在资本密集兑现的自动驾驶小元年里,很多人可能都已经遗忘,“全球自动驾驶第一股”的名号,曾经属于一家叫做图森未来的公司。曾经风光无两的“图森”,历经内讧与退市等不堪往事之后,而今的“未来”似乎被锚
    锦缎研究院 2024-12-18 11:13 64浏览
  • 随着国家对环保要求日趋严格。以铅酸电池为动力的电动自行车、电动摩托车,将逐渐受到环保管制。而能量密度更高的磷酸铁锂等锂电池成为优先的选择,锂电池以其高能量密度、快速充电、轻量化等特点,已经大量应用于电动车领域。光耦在锂电池系统PMU中的应用,能提供完善的安全保护和系统支撑。BMS和电池被封装成安装所需要的尺寸外形,高速的CAN以及RS-485等通信总线,被应用在与控制器、中控之间通信。晶台光耦,被广泛应用于通信隔离、双MCU系统应用地隔离、电机驱动隔离等。下图例举在电动摩托车上的应用中包含的部件
    晶台光耦 2024-12-17 13:47 57浏览
  • 2003年买的电子管功放机,俗称胆机,坏过几次,咨询厂家,购买零件,自己修理,干中学,学中干。有照片记录的是2011年3月,一天,发现整流管比之前红亮了很多,赶紧关机,想找原因,反反复复折腾了几个月,搞好了。就此,还在网上论坛咨询和讨论,欧博Rererence 5.0电子管发粉红色光,何故?-『胆艺轩音响技术论坛』-胆艺轩[Tubebbs]论坛 发表于2011-5-7同时与厂家联系得到支持,见文:29kg胆机修理之联想——环保简易,做到真难!-面包板社区 发表于2011-6-13又继续使用了多年
    自做自受 2024-12-17 22:18 126浏览
  • 户外照明的“璀璨王者”,艾迈斯欧司朗OSCONIQ® C3030降临啦全球领先的光学解决方案供应商艾迈斯欧司朗(瑞士证券交易所股票代码:AMS)近日宣布,推出新一代高性能LED——OSCONIQ® C 3030。这款尖端LED系列专为严苛的户外及体育场照明环境而设计,兼具出色的发光强度与卓越的散热效能。其支持高达3A的驱动电流及最大9W的功率输出,以紧凑扁平封装呈现卓越亮度和可靠性,确保高强度照明持久耐用且性能出众。应用领域01体育场及高杆照明OSCONIQ® C 3030以卓越的光通量密度、出
    艾迈斯欧司朗 2024-12-18 14:25 49浏览
我要评论
0
点击右上角,分享到朋友圈 我知道啦
请使用浏览器分享功能 我知道啦