7. cschem implementation - device mapping

7.1. The transistor problem; heavy vs. light symbols

7.1.1 PCB example

{imp7:0} The transistor problem is that a transistor symbol containing pin numbers will not always match the PCB footprint's pin numbering. This is especially annoying when the same symbol is to be used with signal (sot23) and power (to220) transistors.

{imp7:1} Classic solution 'A' is simply having different, heavy symbols for each footprint. This approach has the obvious problem that replacing the footprint means replacing the symbol as well and that symbol needs to be copied for each footprint variant.

{imp7:2} A less obvious problem is that the symbol->pcb-footprint mapping is only one aspect, for one workflow (f1). If there's another flow (f2) that may also have different mappings for the same symbol, it results in multiple combinations of f1+f2 mappings. This easily leads to an explosion of heavy symbols even for the very same device.

{imp7:3} Classic solution 'B' is to craft the footprint to match the symbol. This means there's no sot23 footprint, but a sot23-2n7002 footprint. In other words, the same sot23 footprint is copied over and over with only pin numbering changes, forming "heavy footprints". Just like with heavy symbols, this easily gets out of hand as well: what if different board densities or soldering methods are to be supported? Instead of having 3 or 4 different sot23 footprints for the different requirements, this method requires (3 or 4 processes) * (number of different devices) clones of the sot23 footprints.

{imp7:4} While both of the above solutions would work with cschem, it is recommended to use the devmap mechanism instead. For the 2n7002-in-sot23 example, the devmap would mean:

7.1.2 SPICE example

{imp7:5} The same example for SPICE simulation works the same way, except the devmap file would set spice/model=M and a different portmap array:

G->spice/pinnum=2
S->spice/pinnum=3
D->spice/pinnum=1

7.3. Combining the two

{imp7:6} A schematic can be the source of multiple workflows, e.g. both simulation and PCB layout. An easy way to specify the device mapping for multiple flows is to include them all in the same devmap file. The resulting file would set all pcb/ and spice/ attributes and the portmap array would look like this:

G->pcb/pinnum=1
G->spice/pinnum=2
S->pcb/pinnum=2
S->spice/pinnum=3
D->pcb/pinnum=3
D->spice/pinnum=1

{imp7:7} However, this again creates bad coupling: for PCB, the devmap file name includes the footprint, because that makes the actual binding between the generic symbol and generic footprint. This mean there would be a different devmap file for the same MOSFET part coming in a to92 package. Yet, the spice model attribute and port mapping would be copied into both.

{imp7:8} A better way is to have a pcb-only devmap file called "2n7002_sot23" and a SPICE specific devmap file called "2n7002_spice". The devmap attribute of the generic MOSFET symbol placed for the device can be an array, listing both devmap files. This keeps them decoupled, a footprint change does not affect the simulation mapping.

7.2. Slotting

{imp7:9} Slotting works by the slot attribute. Each entry of the portmap attribute may contain a slot reference on the left side. When present, it limits the use of the entry to symbols with matching slot name. This allows assignment of the same terminal names multiple times, to different physical pin numbers, depending on the slot attribute.

{imp7:10} For example the PCB devmap for common dual opamp in a 8 pin package, using slots 'A' and 'B':

A/out -> pcb/pinnum=1
A/in_minus -> pcb/pinnum=2
A/in_plus -> pcb/pinnum=3
B/out -> pcb/pinnum=7
B/in_minus -> pcb/pinnum=6
B/in_plus -> pcb/pinnum=5
v_plus -> pcb/pinnum=8
v_minus -> pcb/pinnum=4

{imp7:11} When both slots are present, using this portmap will produce the following port names in the resulting abstract model component: A/out, A/in_minus, A/in_plus, B/out, B/in_minus, B/in_plus, v_plus, v_minus. If slot A is missing from the schematics, only B/out, B/in_minus, B/in_plus, v_plus, v_minus are added in the abstract model.

{imp7:12} Note how v_plus and v_minus are specified to match universally, regardless of the slot. This allows a symbol where both instances have v_plus and v_minus terminals, but also allows a separate "opamp power" symbol with an arbitrary slot name (e.g. slot=power) that contains only the power terminals. They are not prefixed with A/ or B/ because they had the noslot attribute (in the terminal).

{imp7:13} The resulting devmap file could be called "lm358_dip8", "lm358_so8" (and can set attribute device=lm358 on the resulting component). But this pinout is a de-facto standard for dual ompamps in 8 pin packages, so it could also be called "opamp2_dip8", "opamp2_so8" or even just "opamp2_any8" - but in this case the device=lm358 can not be part of the devmap file.

{imp7:14} Note that this leads to the same heavy vs. light symbol consideration, applied to devmap files now. Cschem supports both approaches, it is up to the user to decide whether heavy or light devmap files should be used in the user's own library of devmap files.

7.3. How does this differ from gschem for the user?

7.3.1. Device map

{imp7:15} Option A: do the same as in gschem: manually set "pin numbers" and all attributes specific to footprints and simulation. This obviously reproduces the transistor problem, easily resulting in mismatched footprints. It also reproduces the heavy vs. light symbol problem.

{imp7:16} Option B: instead of filling in the footprint attribute, fill in the devmap attribute. Instead of saying it is a "footprint=sot23" (and maybe adding a device=2n7002 or value=2n7002), say it is a "devmap=2n7002_sot23". Instead of filling in the physical pinout in a heavy symbol, write it into a devmap file.

7.3.2. Slotting

{imp7:17} Instead of the slotdef attribute, use the devmap attribute that is pointing to a slotted devmap file. Using the slot attribute is the same, except the value of the slot attribute doesn't have to be an integer but can be text, e.g. "power", "gpio", "i2c".

{imp7:18} Instead of the somewhat cryptic slotdef attribute, the devmap file contains a more readable table of pin assignment.

7.4. How it is displayed on the UI?

{imp7:19} After devmap or portmap runs, the resulting attributes are available in the abstract model. Cschem can trace the connection between the concrete model's schematics symbol/terminal and the abstract model's component/port.

{imp7:20} Using this connection, a plugin in turn can take the resulting pcb/pinnum or spice/pinnum attribute from the abstract model and display it at any terminal on the schematics that contributed to it. Whether pcb/pinnum or spice/pinnum is displayed that way, depends on the plugin (or plugin parameters), which is configured in the view.

{imp7:21} In short: a view can be set up to display PCB pin numbers and another view can be set up to display SPICE pin numbers and the user can switch between views any time.