• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Custom IC SKILL
  3. List of symbol pin names and direction using SKILL

Stats

  • Locked Locked
  • Replies 4
  • Subscribers 144
  • Views 19261
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

List of symbol pin names and direction using SKILL

Tobben24
Tobben24 over 12 years ago

Hi,

I want to get a list of pins names and which direction the pins have from a symbol/schematic. I guess SKILL is the way to go? I new to SKILL, so if someone could push me in the right direction I would be grateful:)

  • Cancel
Parents
  • Andrew Beckett
    Andrew Beckett over 11 years ago

    In general it's best to connect to verilog by name (i.e. explicit connections) rather than by order. That way you don't need to worry about pin orders.

    If the netlister is taking care of netlisting both the module and the instance (e.g. if it's an instance of a schematic), then the order doesn't really matter, because it will be consistent anyway.

    If it is an instance of a textual view, and it is doing implicit connections (by order rather than by name), then the Verilog netlister would find:

    cv=dbOpenCellViewByType("mylib" "mymodule" "functional")
    cv~>portOrder

    and you might see:  ("XBIPBIP<131:1>" "ABIP<11:2>" "AB<11:2>" "DVSSBIPBIP" "DVDDBIPBIP")

    If you want to find out port directions (I think that's what you wanted rather than accessDir), then you'd use:

    cv~>terminals~>name
    ("XBIPBIP<131:1>" "ABIP<11:2>" "AB<11:2>" "DVSSBIPBIP" "DVDDBIPBIP")

    cv~>terminals~>direction
    ("output" "input" "input" "input" "input")

    The order of these two is the same. Note that it may not be the same as the order of the portOrder property though, AFAIK.

    Looking the physical attributes of the pins (i.e. position etc) won't help you much I don't think. I don't believe accessDir is used on symbols (it's more for layout use, to restrict the direction that you can approach a pin from).

    Regards,

    Andrew.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • Andrew Beckett
    Andrew Beckett over 11 years ago

    In general it's best to connect to verilog by name (i.e. explicit connections) rather than by order. That way you don't need to worry about pin orders.

    If the netlister is taking care of netlisting both the module and the instance (e.g. if it's an instance of a schematic), then the order doesn't really matter, because it will be consistent anyway.

    If it is an instance of a textual view, and it is doing implicit connections (by order rather than by name), then the Verilog netlister would find:

    cv=dbOpenCellViewByType("mylib" "mymodule" "functional")
    cv~>portOrder

    and you might see:  ("XBIPBIP<131:1>" "ABIP<11:2>" "AB<11:2>" "DVSSBIPBIP" "DVDDBIPBIP")

    If you want to find out port directions (I think that's what you wanted rather than accessDir), then you'd use:

    cv~>terminals~>name
    ("XBIPBIP<131:1>" "ABIP<11:2>" "AB<11:2>" "DVSSBIPBIP" "DVDDBIPBIP")

    cv~>terminals~>direction
    ("output" "input" "input" "input" "input")

    The order of these two is the same. Note that it may not be the same as the order of the portOrder property though, AFAIK.

    Looking the physical attributes of the pins (i.e. position etc) won't help you much I don't think. I don't believe accessDir is used on symbols (it's more for layout use, to restrict the direction that you can approach a pin from).

    Regards,

    Andrew.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Children
No Data

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information