Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tools:netgen [2020/04/29 18:00] – rajit | tools:netgen [2023/04/15 11:35] (current) – [Output handling] rajit | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== | + | ====== |
- | The tool '' | + | The tool '' |
The overall way the tool works is as follows. First, it reads in the '' | The overall way the tool works is as follows. First, it reads in the '' | ||
Line 18: | Line 18: | ||
If the instance '' | If the instance '' | ||
+ | |||
+ | ===== Basic Netlist Specification ===== | ||
+ | |||
+ | Production rules are syntactically translated into a netlist. The gate order is taken from left to right, where the power supply is the leftmost node and the output is the rightmost node. This means that the rule | ||
+ | < | ||
+ | a & b -> c- | ||
+ | </ | ||
+ | gets translated into a netlist that starts from '' | ||
+ | < | ||
+ | M0_ GND a #3 GND nch W=0.3U L=0.12U | ||
+ | M1_ #3 b c GND nch W=0.3U L=0.12U | ||
+ | </ | ||
+ | (The details may vary depending on your configuration file.) A close examination shows the gate ordering '' | ||
+ | |||
+ | |||
+ | **Widths, Lengths, Flavors.** The width and length of any transistor can be specified using size specifiers. For the same rule above, we could specify a different width for '' | ||
+ | < | ||
+ | a<20> & b -> c- | ||
+ | </ | ||
+ | This says the width of the transistor for '' | ||
+ | |||
+ | Length specifiers can also be used to change the default length of a transistor. The same example with a longer transistor (length 5) is given by: | ||
+ | < | ||
+ | a< | ||
+ | </ | ||
+ | |||
+ | Finally, different transistor flavors can also be specified. The recognized flavors are specified in the ACT configuration file. Commonly used names are: | ||
+ | * '' | ||
+ | * '' | ||
+ | * '' | ||
+ | |||
+ | The following shows how these can be used: | ||
+ | < | ||
+ | | ||
+ | | ||
+ | </ | ||
+ | In this example, the transistor gated by '' | ||
+ | |||
+ | |||
+ | **Pass Transistors.** Pass transistors are specified using '' | ||
+ | * '' | ||
+ | * '' | ||
+ | * '' | ||
+ | Each of these can contain a size directive as shown in the examples below: | ||
+ | < | ||
+ | prs { | ||
+ | | ||
+ | | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | |||
+ | **Internal Precharges.** Precharges are only on internal nodes, and new internal nodes are only created with an ''&'' | ||
+ | a & | ||
+ | </ | ||
+ | for a precharge to '' | ||
+ | a & | ||
+ | </ | ||
+ | for a precharge to '' | ||
+ | a &{+en} b -> c- | ||
+ | </ | ||
+ | specifies a precharge to '' | ||
+ | a & | ||
+ | </ | ||
+ | (assuming '' | ||
+ | |||
+ | |||
+ | ===== Shared Gate Networks ===== | ||
+ | |||
+ | The syntax supports building arbitrary shared-gate networks. This can be done via //labels//, indicated with the '' | ||
+ | builds a shared gate network:< | ||
+ | a & b -> @x- | ||
+ | ~@x & w -> r0- | ||
+ | ~@x & r -> r1- | ||
+ | </ | ||
+ | The idea is that " | ||
+ | |||
+ | The second construct is< | ||
+ | tree { | ||
+ | a & b & w -> r0- | ||
+ | a & b & r -> r1- | ||
+ | } | ||
+ | </ | ||
+ | This specifies maximal sharing, i.e. build the shared-gate network by maximal prefix-sharing within the group. Finally, we can limit the size of the prefix by specifying a sharing-limit as follows< | ||
+ | tree< | ||
+ | a & b & w -> r0- | ||
+ | a & b & r -> r1- | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ===== Output handling | ||
+ | |||
+ | ACT supports name mangling to sanitize the output so that it can be accepted by third-party tools. Since the largest variability in supported names is in different versions of SPICE, the '' | ||
+ | ===== Attributes ===== | ||
+ | |||
+ | Attributes can be attached to a production rule or pass transistor/ | ||
+ | using standard '' | ||
+ | * '' | ||
+ | * '' | ||
+ | * '' | ||
+ | * '' | ||
+ | |||
+ | |||
+ | The following shows how you can specify two C-elements, one with no staticizer, and another with combinational feedback. | ||
+ | < | ||
+ | prs { | ||
+ | [keeper=0] a & b #> c- | ||
+ | |||
+ | [comb=1] p & q #> r- | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | Attributes | ||
+ | |||
+ | ^ Attribute ^ Meaning ^ | ||
+ | | keeper | The production rules for a signal are analyzed to determine if the pull-up and pull-down networks are perfect complements of each other. If they aren' | ||
+ | | comb | If set to 1, uses combinational feedback rather than a weak inverter for the staticizer; if 0, uses a weak inverter instead of combinational feedback | | ||
+ | | iskeeper | used to let prs2net know that the specified production rule is in fact the manually | ||
+ | | isckeeper | used to let prs2net know that the specified production rule is a combinational feedback style keeper circuit. These will be labeled with '' | ||
+ | | loadcap | sets the load capacitance on the output to be a the specified value in pF. This is used to override the default setting specified in the configuration file | | ||
+ | | oresis | sets output resistance for node. This resistance is added in series to the output of the gate, and overrides the default from the prs2net configuration file | | ||
+ | | output | used for pass transistors to force either the source, drain, or both to be labelled as an output. This is useful for the PININFO directive emitted by prs2net. If the value v has bit zero set, then the source is marked as an output node. If v has bit one set, then the drain is marked as an output. By default, a node is considered an input if it does not have a production rule driving it. | | ||
+ | | N_reff | sets the n-stack effective resistance, overriding the default computed by prs2net. This is used to compute strengths of staticizers. The resistance for one transistor is computed as L/W where L and W are the length and width of the transistor respectively. | | ||
+ | | P_reff | same as N_reff, except sets strength of p-stack | | ||