Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Unbound devices in LVS checking

Status
Not open for further replies.

bigmouse

Newbie level 2
Newbie level 2
Joined
Jan 4, 2005
Messages
2
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
38
assura lvs unbound pin

Hi all,

I have a problem while running LVS with Assura 3.1.4. The LVS does not run successfully because of these errors:

Error: Device 'mimcap(CAP)' on Schematic is unbound to any Layout device.
Error: Device 'mimcap(Generic)' on Layout is unbound to any Schematic device.
Error: UnBound devices found.
Info: All devices must be bound or filtered for comparision to be run.

I only have one mimcap on my layout. It's a very simple layout. What is the problem here?

Thanks a lot,

Frank:?:
 

vbhupendra

Full Member level 4
Full Member level 4
Joined
May 11, 2005
Messages
235
Helped
15
Reputation
30
Reaction score
9
Trophy points
1,298
Location
GOA, INDIA
Activity points
3,219
on schematic is unbound to any layout device

check your bind file. bind cap to cap you have binded generic.
 

bigmouse

Newbie level 2
Newbie level 2
Joined
Jan 4, 2005
Messages
2
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
38
unbound pin lvs

Currently all the content of my bind file (bind.vldb) are commented out. I have very little knowledge on this type of file. Would you please give me a hint about binding the component? Any document teach me how to do this?
 

pratyusha

Junior Member level 1
Junior Member level 1
Joined
Jan 12, 2006
Messages
16
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,283
Activity points
1,452
cadence unbound pin

IF u r using cadence - assura verification tool.

go for LVS window.

in that " Netlisting Option" icon will be there.

if u click it another window will pop up.

in that select " Use model property as device name if model in instParameters"

after that click o.k and LVS
 

wildgoat

Junior Member level 2
Junior Member level 2
Joined
Dec 11, 2003
Messages
21
Helped
0
Reputation
0
Reaction score
1
Trophy points
1,281
Location
China
Activity points
215
unpound pin cadence lvs

please refer to the assura command referrence

abortOnUnboundDevices abortOnUnboundDevices( [t | nil] )

Description
Allows you to control whether or not Assura LVS terminates a run when it encounters unbound devices and expandOnError(( reduce t)) or expandOnError(( match t)) is set. Unbound devices are devices that exist in either the layout or the schematic, but
not in both.
By default, when Assura LVS finds an unbound schematic or layout device, it issues a warning message and continues with the run. However, if you specify expandOnError((reduce t)) or expandOnError((match t)), Assura LVS exits with an error message, because under these conditions the potentially lengthy LVS run would not be able to match the layout and schematic.
When abortOnUnboundDevices is set to false (nil), Assura LVS reports unbound devices as in the following example and continues the run:
Error: Device ‘P(MOS)’ on Layout is unbound to any Schematic device.
When abortOnUnboundDevices is set to true (t), Assura LVS reports the unbound device
and an information message as in the following example and terminates the run:
Error: Device ‘P(MOS)’ on Layout is unbound to any Schematic device.
Info: All devices must be bound or filtered for comparison to be run.
 

fixrouter4400

Full Member level 4
Full Member level 4
Joined
Feb 6, 2007
Messages
193
Helped
29
Reputation
58
Reaction score
6
Trophy points
1,298
Activity points
2,371
extractdevice extractcap assura

wildgoat is right - first in your avCompareRules-setup bisable the "Abort On Unbound Devices" this will then let you continue running your LVS and gives you more idea on the real issue of your LVS problem.
 

sat

Member level 5
Member level 5
Joined
Sep 28, 2006
Messages
88
Helped
21
Reputation
42
Reaction score
18
Trophy points
1,288
Activity points
2,107
assura lvs pin

In this specific case, what might have happened - device name remained same - just the device type mismatch has happened.

On Sch side - it is mimcap(CAP), versus on layout side - it is mimcap(Generic)

Either this 'mimcap' has been extracted from layout using extractDevice() command instead of using extractCap() - And at times that is legal and necessary for various reasons, it is done purposely to utilize strength/flexibility of generic device extraction.

There are several ways to address that mismatch issue:

1. adding a binding file usually mentioned as "bind.rul" please check, you might be already having one - shipped with the PDK you are using.
might be named as auLvs.bind or auCdl.bind (usage depends on schematic is in dfII or CDL/Spice )

Here "bind.rul" needs a line:
C mimcap(CAP) mimcap(Generic)

2. Convert generic device to standard device by :
2.a. using capDevice() command :
under layout netlisting syntax of avCompareRule
capDevice("mimcap(GENERIC)" )
2.b. Add namePrefix("C") or namePrefix("XC") of
course understanding full implication of its usage.
 

Alekcei

Newbie level 5
Newbie level 5
Joined
Nov 3, 2010
Messages
9
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,332
Hi all!
I have got the same problem with unbound pin after LVS cheking.
Error: Unbound pin sch||lay 3||0
Assura recognize vdd and gnd, but doesn't understand "in" and "out" pins.
Thank's in advance!
Alex.
 

sat

Member level 5
Member level 5
Joined
Sep 28, 2006
Messages
88
Helped
21
Reputation
42
Reaction score
18
Trophy points
1,288
Activity points
2,107
Question is - are you asking Assura to read those pins from layout? Is this gds or dfII layout? check geomConnect for label command..
You need to understand how Assura makes PINs and | or named-nets, from text-labels, virtuoso-pins etc. Check command reference for textToPin(), pinText(), pinLayer() commands.
Check the file <runname>.erc, which will show - what labels assura was able to read, which x,y coordinate, and whether it was able to successfully assign that label to some interconnect layer, and whether it has become a PIN or lableled Net.
 

dipanjan

Member level 2
Member level 2
Joined
Sep 9, 2010
Messages
50
Helped
4
Reputation
8
Reaction score
4
Trophy points
1,288
Activity points
1,709
Re: assura lvs pin

In this specific case, what might have happened - device name remained same - just the device type mismatch has happened.

On Sch side - it is mimcap(CAP), versus on layout side - it is mimcap(Generic)

Either this 'mimcap' has been extracted from layout using extractDevice() command instead of using extractCap() - And at times that is legal and necessary for various reasons, it is done purposely to utilize strength/flexibility of generic device extraction.

There are several ways to address that mismatch issue:

1. adding a binding file usually mentioned as "bind.rul" please check, you might be already having one - shipped with the PDK you are using.
might be named as auLvs.bind or auCdl.bind (usage depends on schematic is in dfII or CDL/Spice )

Here "bind.rul" needs a line:
C mimcap(CAP) mimcap(Generic)

2. Convert generic device to standard device by :
2.a. using capDevice() command :
under layout netlisting syntax of avCompareRule
capDevice("mimcap(GENERIC)" )
2.b. Add namePrefix("C") or namePrefix("XC") of
course understanding full implication of its usage.



hi i have this problem with both pmos and nmos in layout they are generic and in schematic mos...
i have used gpdk090
version 4
tell me where to find these bind files i am new and dont have much idea where to find them.
 

Alekcei

Newbie level 5
Newbie level 5
Joined
Nov 3, 2010
Messages
9
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,332
What LVS avParameters and avCompare ruls must be set for pin's ???
 

babakta

Newbie level 6
Newbie level 6
Joined
May 5, 2010
Messages
14
Helped
2
Reputation
4
Reaction score
2
Trophy points
1,283
Location
sweden
Activity points
1,355
I was facing the same problem with UMC65. lvs didn't pass with the same error of "unbound device...". The solution was to keep all the components separate from each other in layout. when there is an overlap the lvs cannot recognize which devices are used, thus it ignores one device.
 

Kicchan

Member level 3
Member level 3
Joined
Feb 3, 2010
Messages
56
Helped
2
Reputation
4
Reaction score
2
Trophy points
1,288
Activity points
1,759
I also have the same problem with UMC130nm.
The error message I'm getting is:

*ERROR* Device 'P_12_HSL130E(MOS)' on Schematic is unbound to any Layout device.
*ERROR* Device 'N_12_HSL130E(MOS)' on Schematic is unbound to any Layout device.
*ERROR* UnBound devices found.
Info: All devices must be bound or filtered for comparison to be run.

I've tried disabling the "Abort On Unbound Devices" rule check but still returns the same error (neither expandOnError(( reduce t)) or expandOnError(( match t)) is set). I don't understand this inconsistence between schematic and layout because I generated all devices by Gen from source command.
Please, help!

---------- Post added at 13:24 ---------- Previous post was at 13:18 ----------

I forgot to say that in the layout no psub-me1 via is available for connecting the bulk of the nmos to ground. So I used the pactive-me1 via and connected it to gnd. I don't know if this procedure is correct and if it can be the source of the error I'm getting...
 

babakta

Newbie level 6
Newbie level 6
Joined
May 5, 2010
Messages
14
Helped
2
Reputation
4
Reaction score
2
Trophy points
1,283
Location
sweden
Activity points
1,355
Hi Kicchan,
Have you checked connectivity, against source? Also check/define mapping between layout and schematic components.
 

Kicchan

Member level 3
Member level 3
Joined
Feb 3, 2010
Messages
56
Helped
2
Reputation
4
Reaction score
2
Trophy points
1,288
Activity points
1,759
Hi babakta,

thank you for your reply.
My connectivity should be ok (it's a simple inverter just to check if my layout works with Assura). Where can I find this check/define mapping command? Everything looks fine, I really don't inderstand where the error comes from...:sad:
 

babakta

Newbie level 6
Newbie level 6
Joined
May 5, 2010
Messages
14
Helped
2
Reputation
4
Reaction score
2
Trophy points
1,283
Location
sweden
Activity points
1,355
By mapping I mean Define Device Correspondence, under Connectivity menu in layout window. There you can see which devices are mapped between sch & layout. Also remember, in some cases even if the DRC is passed, but overlapping devices can cause confusion for LVS. Good luck
 

Kicchan

Member level 3
Member level 3
Joined
Feb 3, 2010
Messages
56
Helped
2
Reputation
4
Reaction score
2
Trophy points
1,288
Activity points
1,759
Thanks a lot, babakta.
Actually it says there are inconistencies between schematic and layout:

*ERROR* 'W' on source figure 'NM0' is 'iPar(\"effW2\")'
...on layout figure '|NM0' is '200n'
*ERROR* 'simM' on source figure 'NM0' is 'iPar(\"m\")*iPar(\"fingers\")'
...on layout figure '|NM0' is '1'
*ERROR* 'W' on source figure 'PM0' is 'iPar(\"effW2\")'
...on layout figure '|PM0' is '200n'
*ERROR* 'simM' on source figure 'PM0' is 'iPar(\"m\")*iPar(\"fingers\")'
...on layout figure '|PM0' is '2'

Notwithstanding, in my schematic the numbers are correct and correspond to the sizes I have in the layout. Why do my schematic numbers look like as if they are parameters??? :shock:
 

Kicchan

Member level 3
Member level 3
Joined
Feb 3, 2010
Messages
56
Helped
2
Reputation
4
Reaction score
2
Trophy points
1,288
Activity points
1,759
For clarity, I attach the schematic together with its layout and the discrepancies I've got.
Thank you again...


untitled2.JPG
 

babakta

Newbie level 6
Newbie level 6
Joined
May 5, 2010
Messages
14
Helped
2
Reputation
4
Reaction score
2
Trophy points
1,283
Location
sweden
Activity points
1,355
OK, in your current schematic just put numbers instead of parameters. make the life easier for Cadence :) ,OR create another version of your schematic(just copy the cell view to a new design) and in this new version, just give the actual numbers for devices in schematic.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Top