This is an old revision of the document!
Layout Generation
Cell generation
ACT provides support to create new cells, as this may be necessary for certain asynchronous circuit families. This requires a complete layout configuration file that contains design rules.
Preliminary layout files for cells required for place and route are generated in the .rect
file format. As the name suggests, this file contains a list of rectangles. An example is shown below:
bbox 0 0 24 72 rect in[0] polysilicon 15 2 16 5 rect in[0] polysilicon 13 6 15 8 rect out ndiffusion 19 24 20 27 rect # polysilicon 13 65 15 67 rect in[0] polysilicon 13 28 15 35 outrect out m1 19 24 21 27 outrect out m1 18 28 21 30 inrect in[0] m2 11 1 16 2 inrect in[0] m2 15 2 16 5 ...
The file begins with the bounding box (bbox
) directive. The four numbers are integer coordinates (in units of the layout scale factor), and the four-tuple corresponds to the lower left x-coordinate, lower left y-coordinate, upper right x-coordinate, and upper right y-coordinate. The rest of the file contains rectangle definitions. An inrect
is a rectangle corresponding to an input pin, and an outrect
corresponds to an output pin, while a rect
is just paint to be drawn. Note that inrect
and outrect
are optional; they could also be simply specified as rect
directives, but are useful as hints in terms of specifying which pins correspond to inputs v/s outputs.
A rectangle specifier (rect
, inrect
, or outrect
) has an optional signal name (#
means that there is no label directly attached to the rectangle), followed by the drawing layer name (from layout.conf
), and followed by the coordinates for the rectangle. Even if a rectangle does not have a label, it may be electrically connected to another rectangle that has a label. If two rectangles are connected to each other electrically and have different labels, this is reported as an error.
A rectangle can be followed by an optional string that is left
, center
, or right
. This is simply a hint that says this diffusion region has a transistor to the left only, to the right only, or on both sides. (A cell is drawn with vertical polysilicon.)
The purpose of this format is to be layout editor neutral; it is very easy to translate this file into commands to draw the cell in a layout editor. An example where a Tcl script for the magic VLSI layout editor can be generated from a .rect
file is distributed with the layout repository (part of the actflow distribution), and is called mag.pl
.
The coordinate system used by rectangles in this file are designed to work directly with magic
's box
command. In the magic
layout editor, a box specified by
:box 0 0 10 20
is of size 10 by 20 units. If we view a box as a collection of 1 by 1 pixels, then this box occupies pixels starting from (0,0) to (9,19). All rect
s must be non-overlapping on their respective layers. Note that transistors, diffusion, and poly are all viewed as the same layer.