-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Managing symbols with multiple schematic views #242
Comments
Hi, Thank you for your post. I will try to come up with something user friendly for this. |
In your usage case do you plan to set one specific schematic "view" for a symbol or are you planning to use different schematic "views" for a symbol that is instantiated multiple times in a design? I have worked a lot on memory chips, and these have multiple placements of identical blocks (arrays, row drivers, column decoders, sense amplifiers). A placement of sector.sym with no "schematic" attribute will use the default sector.sch, while instances with a "schematic=sector_empty.sch" (or schematic=libname/sector_empty.sch, depending on how the search path is configured) will use the simplified view. This makes sector.sym polymorphic as multiple implementations may coexist in the same design. I am asking about your use case to prioritize your specific needs. |
We always use the same view for all instances of a symbol throughout the hierarchy. Concretely let say that we have symbols A and B. Let's also assume that symbol A has two views:
In the case where for A we use schematic.sch then all B (inside and outside of A and any other symbol) use the same specified view. In the other case where for A we use simplified.sch there are only instance of B outside of A and all those use the same specified view. Similarly for a deeper hierarchy. From you description, it sounds like you are using a similar flow. Thank you very much for looking into this! |
Hi,
Thanks for your great xschem! More than an issue, I have a feature request,.. should you find it useful as well.
I watched your video on multiple schematic views. It is quite useful. However, when working on large designs with several dozens of sub-blocks, it becomes difficult to make sure that each symbol is configured to use the right schematic. It would be useful to have a "view manager" where you can see the list of all symbols, and edit the schematic that they are supposed to use all in one place. Some commercial tools use a "config" view associated with the top testbench schematic for that.
At work we make heavy use of this functionality, for example for top level verification where we check one-subsystem at a time for speed reasons. For this we make use of empty or simplified schematic viewws. This allows us to avoid having multiple top level schematics and avoid all the problems that they involve.
Best Regadrs
The text was updated successfully, but these errors were encountered: