VLSI Gate-Level Design Guide
VLSI Gate-Level Design Guide
UNIT III
GATE LEVEL DESIGN :
Logic Gates and Other
complex gates, Switch
logic, Alternate gate
circuits, Time Delays,
Driving large Capacitive
Loads, Wiring
Capacitances, Fan-in
and fan-out, Choice of
layers.
UNIT III
GATE LEVEL DESIGN : Logic Gates and Other complex gates, Switch logic, Alternate gate
circuits, Time Delays, Driving large Capacitive Loads, Wiring Capacitances, Fan-in and fan-
out, Choice of layers.
Introduction:
The module (integrated circuit) is implemented in terms of logic gates and interconnections between
these gates. Designer should know the gate-level diagram of the design. In general, gate-level
modeling is used for implementing lowest level modules in a design like, full-adder, multiplexers, etc.
Boolean algebra is used to represent logical (combinational logic) functions of digital circuits. A
combinational logic expression is a mathematical formula which is to be interpreted using the laws of
Boolean algebra. Now the goal of logic design or optimization is to find a network of logic gates that
together compute the combinational logic function we want.
For example, given the expression a+b , we can compute its truth value for any given values of a and b
, and also we can evaluate relationships such as a+b = c. but logic design is difficult for many reasons:
• We may not have a logic gate for every possible function, or even for every function of n
inputs.
• Not all gate networks that compute a given function are alike-networks may differ greatly
in their area and speed.
• Thus combinational logic expressions are the specification,
• A logic gate is an idealized or physical device implementing a Boolean function, that is, it
performs a logical operation on one or more logic inputs and produces a single logic
output.
• Logic gates are primarily implemented using diodes or transistors acting as electronic
switches, but can also be constructed using electromagnetic relays (relay logic), fluidic
logic, pneumatic logic, optics, molecules, or even mechanical elements.
• With amplification, logic gates can be cascaded in the same way that Boolean functions
can be composed, allowing the construction of a physical model of all of Boolean logic.
• Simplest form of electronic logic is diode logic. This allows AND and OR gates to be
built, but not inverters, and so is an incomplete form of logic. Further, without some kind
of amplification it is not possible to have such basic logic operations cascaded as required
for more complex logic functions.
• To build a functionally complete logic system, relays, valves (vacuum tubes), or
transistors can be used.
• The simplest family of logic gates using bipolar transistors is called resistor-transistor
logic (RTL). Unlike diode logic gates, RTL gates can be cascaded indefinitely to produce
more complex logic functions. These gates were used in early integrated circuits.
For higher speed, the resistors used in RTL were replaced by diodes, leading to diode-
transistor logic (DTL).
• Transistor-transistor logic (TTL) then supplanted DTL with the observation that one
transistor could do the job of two diodes even more quickly, using only half the space.
• In virtually every type of contemporary chip implementation of digital systems, the
bipolar transistors have been replaced by complementary field-effect transistors
(MOSFETs) to reduce size and power consumption still further, thereby resulting in
complementary metal–oxide–semiconductor (CMOS) logic. that can be described with
Boolean logic.
General logic circuit Any Boolean logic function (F) has two possible values, either logic 0
or logic 1. For some of the input combinations, F = 1 and for all other input combinations, F =
0. So in general, any Boolean logic function can be realized using a structure as shown in
figure.
• The switch S1 is closed and switch S2 is open for input combinations that produces F = 1.
• The switch S1 is open and switch S2 is closed for input combinations that produces F = 1.
• The switch S1 is open and switch S2 is open for input combinations that produces F = 0.
Thus the output (F) is either connected to VDD or the ground, where the logic 0 is
represented by the ground and the logic 1 is represented by VDD. So the requirement of
digital logic design is to implement the pull-up switch(S1) and the pull-down switch(S2).
The transistor network is related to the Boolean function with a straight forward design
procedure:
• Design the pull down network (PDN) by realizing,AND(product) terms using series-
connected nMOSFETs. OR (sum) terms using parallel-connected nMOSFETS.
• Design the pull-up network by realizing, AND(product) terms using parallel-
connected nMOSFETs. OR (sum) terms using series-connected nMOSFETS.
• Add an inverter to the output to complement the function. Some functions are
inherently negated, such as NAND,NOR gates do not need an inverter at the output
terminal.
CMOS inverter:
A CMOS inverter is the simplest logic circuit that uses one nMOS and one pMOS transistor.
The nMOS is used in PDN and the pMOS is used in the PUN as shown in figure.
Working operation:
1) When the input Vin is logic HIGH, then the nMOS transistor is ON and the pMOS transistor
is OFF. Thus the output Y is pulled down to ground (logic 0) since it is connected to ground
but not to source VDD.
2) When the input Vin is logic LOW, then nMOS transistor is OFF and the pMOS transistor is
ON, Thus the output Y is pulled up to VDD(logic 1) since it is connected to source via pMOS
but not to ground.
= = A.B
Finally join the PUN and PDN as shown in figure which realizes two –input NAND gate. Note
that we have realized y, rather tat Y because the inversion is automatically provided by the
nature of the CMOS circuit operation,
Working operation :
1) Whenever at least one of the inputs is LOW, the corresponding pMOS transistor will
conduct while the corresponding nMOS transistor will turn OFF. Subsequently, the output
voltage will be HIGH.
2) Conversely, if both inputs are simultaneously HIGH, then both pMOS transistors will
turn OFF, and the output voltage will be pulled LOW by the two conducting nMOS
transistors.
Y= A+B = A+B
Step 2 Design the PDN
In this case, there is only one OR term, so there will be two nMOSFETs connected in parallel,
as shown in figure.
Step 3 Design the PUN
In PUN there will be two pMOSFETs in series , as shown in figure
Finally join the PUN and PDN as shown in figure which realizes two –input NAND gate. Note
that we have realized y, rather tat Y because the inversion is automatically provided by the
nature of the cMOS circuit operation,
Working operation :
1) Whenever at least one of the inputs is LOW, the corresponding pMOS transistor will
conduct while the corresponding nMOS transistor will turn OFF. Subsequently, the
output voltage will be HIGH.
2) Conversely, if both inputs are simultaneously HIGH, then both pMOS transistors will
turn OFF, and the output voltage will be pulled LOW by the two conducting nMOS
transistors.
An AOI logic equation is equivalent to a complemented SOP from, while an AOI equation is
equivalent to a complemented POS structure. In CMOS, output always produces NOT
operation acting on input variable.
1) AOI Logic Function (OR) Design of XOR gate using CMOS logic.
AND-OR-INVERT logic function (AOI) implements operation in the order AND, OR,
NOT. For example, let us consider the function Y = AB+CD i.e., Y = NOT ((A AND B) OR
(C AND D)) The AOI logic gate implementation for Y
Step 3: Y = A.B+C.D , In this function A.B and C.D are added, for addition , we have to draw
parallel connection. So, A.B series connected in parallel with C.D as shown in figure.
Step 5: Take output at the point in between nMOS and pMOS networks.
1) OAI Logic Function (OR) Design of XNOR gate using CMOS logic.
OR-AND-INVERT logic function (AOI) implements operation in the order OR,AND,NOT.
For example, let us consider the function Y = (A+B).(C+D) i.e., Y = NOT((A OR B)AND (C OR
D)) The OAI logic gate implementation for Y
Switch Logic:
1) Switch logic is mainly based on pass transistor or transmission gate.
2) It is fast for small arrays and takes no static current from the supply, VDD. Hence
power dissipation of such arrays is small since current only flows on switching.
3) Switch (pass transistor) logic is analogous to logic arrays based on relay contacts,
where in path through each switch is isolated from the logic levels activating the
switch.
Pass Transistor:
1) This logic uses transistors as switches to carry logic signals from node to node instead of
connecting output nodes directly to VDD or ground(GND)
2) If a single transistor is a switch between two nodes, then voltage degradation is equal to
vt (threshold voltage) for high or low level depends up on nMOS or pMOS logic.
3) When using nMOS switch logic no pass transistor gate input may be driven through one
or more pass transistors as shown in figure.
4) Since the signal out of pass transistor T1 does not reach a full logic 1 by threshold voltage
effects signal is degraded by below a true logic 1, this degraded voltage would not permit
the output of T2 to reach an acceptable logic 1 level.
Advantages
They have topological simplicity.
1) Requires minimum geometry.
2) Do not dissipate standby power, since they do not have a path from supply to ground.
Disadvantages
1) Degradation in the voltage levels due to undesirable threshold voltage effects.
2) Never drive a pass transistor with the output of another pass transistor.
Transmission GATE :
1) It is an electronic element, good non-mechanical relay built with CMOS technology.
2) It is made by parallel combination of an nMOS and pMOS transistors with the input at
gate of one transistor being complementary to the input at the gate of the other as shown
in figure.
3) Thus current can flow through this element in either direction.
4) Depending on whether or not there is a voltage on the gate, the connection between
the input and output is either low resistance or high-resistance, respectively Ron = 100Ω and
Roff > 5 MΩ.
Operation
• When the gate input to the nMOS transistor is ‘0’ and the complementary ‘1’ is gate
input to the pMOS , thus both are turned off.
• When gate input to the nMOS is ‘1’ and its complementary ‘0’ is the gate input to the
pMOS , both are turned on and passes any signal ‘1’ and ‘0’ equally without any
degradation.
• The use of transmission gates eliminates the undesirable threshold voltage effects
which give rise to loss of logic levels in pass-transistors as shown in figure.
Advantages
1) Transmission gates eliminates the signal degradation in the output logic levels.
2) Transmission gate consists of two transistors in parallel and except near the positive
and negative rails.
Disadvantages
1) Transmission gate requires more area than nMOS pass circuitry.
2) Transmission gate requires complemented control signals.
If the control input S is low, the TG0 conducts and the output F is equal to A. On the other
hand, if the control input S is high the TG1 conducts and the output F is equal to B.
Here, only the nMOS logic (Qn) is driven by the input voltage, while the gate of p-
transistor(Qp) is connected to ground or substrate and Qp acts as an active load for Qn.
Except for the load device, the pseudo-nMOS gate circuit is identical to the pull-down
network(PDN) of the complementary CMOS gate.
The realization of logic circuits using pseudo-nMOS logic is as shown in figure.
Advantages
1) Uses less number of transistors as compared to CMOS logic.
2) Geometrical area and delay gets reduced as it requires less transistors.
3) Low power dissipation.
potharajuvidyasagar.wordpress.com BY VIDYA SAGAR.P
VBIT COURSE MATERIAL VLSI DESIGN-2019
Disadvantages
1) The main drawback of using a pseudo nMOS gate instead of a CMOS gate is that the
always on PMOS load conducts a steady current when the output voltage is lower than
VDD.
2) Layout problems are critical.
The gate (clock ø) defines two phases, evaluation and precharge phase during each clock
cycle.
Working:
• When clock ø = 0 the circuit is in precharge phase with the pMOS device Mp ON and the
evaluation nMOS Mn OFF. This establishes a conducting path between VDD and the
output allowing Cout to charge to a voltage Vout = VDD. Mp is often called the precharge
FET.
• When clock ø = 1 the circuit is in evaluation phase with the pMOS device Mp OFF and the
evaluation nMOS Mn ON. If the logic block acts like a closed switch the Cout can
discharge through logic array and Mn, this gives a final result of Vout = VDD, logically this
is an output of F = 1. Charge leakage eventually drops the output to Vout = 0 which could
be an incorrect logic value.
The logic formation is formed by three series connected FETs (3-input NAND gate) is shown
in figure.
The dynamic CMOS logic circuit has a serious problem when they are cascaded. In the
precharged phase (ø = 0), output of all the stages are pre-charged to logic high. In the
evaluation phase (ø = 1), the output of all stages are evaluated simultaneously. Suppose in
the first stage, the inputs are such that the output is logic low after the evaluation. In the
second stage, the output of the first stage is one input and there are other inputs. If the
other inputs of the second stage are such that output of it discharges to logic low, then the
evaluated output of the first stage can never make the output of the second stage logic
high. This is because, by the time the first stage is being evaluated, output of the second.
Stage is discharged, since evaluation happens simultaneously. Remember that the output
cannot be charged to logic high in the evaluation phase (ø = 1, pMOSFET in PUN is OFF), it
can only be retained in the logic high depending on the inputs.
Advantages:
1) Low power dissipation.
2) Large noise margin.
3) Small area due to less number of transistors.\
Domino CMOS logic is slightly modified version of the dynamic CMOS logic circuit. In this
case, a static inverter is connected at the output of each dynamic CMOS logic block. The
addition of the inverter solves the problem of cascading of dynamic CMOS logic circuits.
The circuit diagram of domino CMOS logic structures as shown in figure as follows
A domino CMOS AND-OR gate that realizes the function y = AB + CD is depicted in figure.
The left hand part of the circuit containing Mn, Mp, T1, T2, T3 and T4 forms and AND-OR-
INVERTER (AOI) gate. It derives the static CMOS inverter formed by N2 and P2 in the right-
hand part of the circuit. The domino gate is activated by the single phase clock ø applied to
the NMOS (Mn) and the PMOS (Mp) transistors. The load on the AOI part of the circuits is
the parasitic load capacitance.
Working
• When ø = 0, is ON and Mn is OFF, so that no current flows in the AND-OR paths of
the AOI. The capacitor CL is charged to VDD through Mp since the latter is ON. The
input to the inverter is high, and drives the output voltage V0 to logic-0.
• When ø = 1, Mp is turned OFF and Mn is turned ON. If either (or both) A and B or C
and D is at logic-1, CL discharges through either T2, T1 and Mn or T3, T4 and Mp. So ,
the inverter input is driven to logic-0 and hence the output voltage V0 to logic-1. The
Boolean expression for the output voltage is Y = AB + CD.
Note: Logic input can change only when ø = 0. No changes of the inputs are permitted
when ø = 1 since a discharge path may occur.
Advantages
1) Smaller areas compared to conventional CMOS logic.
2) Parasitic capacitances are smaller so that higher operating speeds are possible.
3) Operation is free of glitches since each gate can make one transition.
Disadvantages :
1) Non inverting structures are possible because of the presence of inverting buffer.
2) Charge distribution may be a problem.
potharajuvidyasagar.wordpress.com BY VIDYA SAGAR.P
VBIT COURSE MATERIAL VLSI DESIGN-2019
The clocked CMOS logic is also referred as C2MOS logic. Figure shows the general
arrangement of a clocked CMOS (C2MOS) logic. A pull-up p-block and a complementary n-
block pull-down structure represent p and n-transistors respectively and are used as
implement clocked CMOS logic shown in figure. However, the logic in this case is connected
to the output only during the ON period of the clock. Figure shows a clocked inverter circuit
which is also belongs to clocked CMOS logic family. The slower rise times and fall times can
be expected due to owing of extra transistors in series with the output.
Working
• When ø = 1 the circuit acts an inverter, because transistors Q3 and Q4 are ‘ON’. It is said
to be in the “evaluation mode”. Therefore the output Z changes its previous value.
• When ø = 0 the circuit is in hold mode, because transistors Q3 and Q4 becomes ‘OFF’. It
is said to be in the “precharge mode”. Therefore the output Z remains its previous value.
n-p CMOS LOGIC :
Figure shows the variation of basic dynamic logic arrangement of CMOS logic called as n-p
CMOS logic. In this, logic the actual logic blocks are alternatively ‘n’ and ‘p’ in a cascaded
structure. The clock ø and ø- are used alternatively to fed the precharge and evaluate
transistors. However, the functions of top and bottom transistors are also alternate between
precharge and evaluate transistors.
Working:
• During the pre-charge phase ø = 0 , the output of the n-tree gate, OUT 1 OUT3 , are
charged to VDD, while the output of the p-tree gate OUT2 is pre discharged to 0V. Since
the n-tree gate connects pMOS pull-up devices, the PUN of the p-tree is turned off at
that time.
• During the evaluation phase ø = 1, the outputs (OUT1,OUT3) of the n-tree gate can only
make a 1-->0 transition, conditionally turning on some transistors in the p-tree. This
ensures that no accidental discharge of OUT 2 can occur.
• Similarly n-tree blocks can follow p-tree gates without any problems, because the inputs
to the n-gate are pre charged to 0.
Disadvantages
Here, the p-tree blocks are slower than the n-tree modules, due to the lower current drive of
the pMOS transistors in the logic network.
Sheet Resistance RS :
The sheet resistance is a measure of resistance of thin films that have a uniform thickness.
It is commonly used to characterize materials made by semiconductor doping, metal
deposition, resistive paste printing and glass coating.
Ex: doped semiconductor regions (silicon or polysilicon) and resistors.
Sheet resistance is applicable to two-dimensional systems where the thin film is considered
to be a two- dimensional entity.
Consider a uniform slab of conducting material of resistivity ρ of width W, thickness t and
length between faces A&B is L. as shown in figure.
Here the length to width ratio denotes the impedance (Z) and is equal to 1:1. Consider
another transistor has a channel length L = 8λ and width W = 2λ.
Thus, channel resistance
L = 8λ; W = 2λ
Z = L/W = 4
potharajuvidyasagar.wordpress.com BY VIDYA SAGAR.P
VBIT COURSE MATERIAL VLSI DESIGN-2019
Where, A is area of the plates, D is the thickness of Sio2, Є0is the permittivity of the free
space and Єins is the relative permittivity of insulator (Sio2).
Consider the area defined as shown in figure of length 20λ and width 3λ
= 15.
1) Consider the area in metal 1
Capacitance to substrate = relative area X relative C value (from table)
= 15 X 0.075 □cg
=1.125 □cg
2) consider the same area in polysilicon capacitance to substrate = 15 X 0.1□cg
= 1.5 □cg
potharajuvidyasagar.wordpress.com BY VIDYA SAGAR.P
VBIT COURSE MATERIAL VLSI DESIGN-2019
While calculating the area value in the above figure neglect the contact region where
the metal is connected to polysilicon and shielded from the substrate.
= 75
Metal capacitance = relative area X relative C value (from table)
= 75 X 0.075 □cg
= 5.625 □cg
(ii) Consider the polysilicon area (excluding the gate region) capacitance to substrate = 15 0.1□cg
= 1.5 □cg
(iii) Consider the same area in n- type diffusion capacitance to substrate = 15 X 0.25□cg
= 3.75
We know that the transit time (τsd) from source to drain
Here the Vds varies as Cg charges from 0 volts to 63% of Vdd in period τ. Thus the average
value of Vds = 3V.
For 5µm technology
Similarly the transition point of an inverter or gate is 0.5 VDD which is approximately equal to
0.63 VDD (time constant). From this we can conclude that we can use the transit time and
time constant interchangeably and ‘stray’ capacitances are allowed for doubling the
theoretical values calculated.
Thus, τ is used as the fundamental time unit and all timings in a system can be assessed in
relation to τ ,Hence for 5µm MOS technology τ = 0.3 nsec.
for 2µm MOS technology τ = 0.2 nsec.
for 1.2µm MOS technology τ = 0.1 nsec.
INVERTER DELAYS:
Consider the basic nMOS inverter has the channel length 8λ and width 2λ for pull-up transistor and
channel length of 2λ and width 2λ for pull down transistor.
Hence the sheet resistance for pull-up transistor is Rp.u = 4RS = 40kΩ and
Since (τ = RC) depends upon the values of R & C, the delay associates with the inverter depend up on
whether it is being turned on (or) off. Now, consider a pair of cascaded inverters as shown in figure,
then the delay over the pair will be constant irrespective of the sense of the logic level transition of
the input to the first.
Then, Td = (1 + 4) 0.3
=5τ
Thus, the inverter pair delay for inverters having 4:1 ration is 5τ.
Hence, a single 4:1 inverter exhibits undesirable asymmetric delays, since the delay in turning ON
is τ and delay in turning OFF is 4τ.
Figure shows the theoretical delay associated with a pair of both n and p transistors lambda based
inverters. Here the gate capacitance is double comparable to nMOS inverter since the input to a
CMOS inverter is connected to both transistor gate. NOTE: Here the asymmetry (uneven) of
resistance values can be eliminated by increasing the width of the p-device channel by a factor of two
or three at the same time the gate capacitance of p-transistor also increased by the same factor.
In CMOS inverter by the charging and discharging of a capacitive load CL , we can estimate the Rise
time and fall time from the following simple analysis.
In this analysis we assume that the p-device stays in saturation for the entire charging period of the
load capacitor CL.
This current charges CL and since its magnitude is approximately constant, we have
Substitute the value of Idsp in above equation and then the rise time is
So that the rise time is slower by a factor of 2.5 when using minimum size devices for both n & p.
• In order to achieve symmetrical operation using minimum channel length we need to make Wp = 2.5 Wn.
• For minimum size lambda based geometries this would result in the inverter having an input
large capacitive loads. Generally off chip capacitances may be several orders higher than on chip □cg
values.
CL ≥ 104 □cg
Where CL denotes off chip load. The capacitances which of this order must be driven through low
resistances, otherwise excessively long delays will occur. Large capacitance is presented at the input,
which in turn slows down the rate of change of voltage at input.
Cascaded Inverters as drivers: Inverters to drive large capacitive loads must be present
low pull-up and pull down resistance.
For MOS circuits low resistance values imply low L: W ratio (since ). Since length L cannot be
reduced below the minimum feature size, the channels must be made very wide to reduce resistance
value. Consider N cascaded inverters as on increasing the width factor of ‘f’ than the previous stage as
shown in figure.
As the width factor increases, the capacitive load presented at the inverter input increases and the
area occupied increases also. It is observed that as the width increases, the number N of stages are
decreased to drive a particular value of CL. Thus with large f (width), N decreases but delay per stage
increases for 4:1 nMOS inverters.
Delay per stage = fτ for ∆Vin
=4fτ for ∆-Vin
Where ∆Vin indicates logic 0 to 1 transition and
∆-Vin indicates logic 1 to 0 transition of Vin
Determine the value of f which will minimize the overall delay for a given value of
y. Apply logarithms on both sides in the above equation
ln(y) = ln(f N)
ln (y) = N ln (f)
Æ N= ln(y)/ln(f)
For N even
Total delay = N/2 5fτ
= 2.5 Nfτ (nMOS)
(Or) total delay = N/2 7fτ
= 3.5Nfτ (CMOS)
From above relations, we can write
Delay α Nfτ
= ln(y)/ln (f). fτ
It can be shown that total delay is minimized if f assumes the value of e for both CMOS
and nMOS inverters.
Assume f = e --> N = ln(y)/ln (e)
N = ln(y)
Super buffers :
Generally the pull-up and the pull down transistors are not equally capable to drive
capacitive loads. This asymmetry is avoided in super buffers. Basically, a super buffer is a
symmetric inverting or non-inverting driver that can supply (or) remove large currents and is
nearly symmetrical in its ability to drive capacitive load. It can switch large capacitive loads
than an inverter. An inverting type nMOS super buffer as shown in figure.
• Consider a positive going (0 to 1) transition at input Vin turns ON the inverter formed by T1 and T2.
With a small delay, the gate of T3 is pulled down to 0 volts. Thus, device T3 is cut off. Since
gate of T4 is connected to Vin, it is turned ON and the output is pulled down very fast.
• For the opposite transition of Vin (1 to 0), Vin drops to 0 volts. The gate of transistor T3 is
allowed to rise to VDD quickly.
• Simultaneously the low Vin turns off T4 very fast. This makes T3 to conduct with its gate
voltage approximately equal to VDD.
• This gate voltage is twice the average voltage that would appear if the gate was connected
to the source as in the conventional nMOS inverter.
Now as Idsα Vgs , doubling the effective Vgs increases the current and there by reduces the
delay in charging at the load capacitor of the output. The result is more symmetrical
transition.
Figure shows the non-inverting nMOS super buffer where the structures fabricated in 5µm
technology are capable of driving capacitance of 2pF with a rise time of 5nsec.
BiCMOS drivers:
1. In BiCMOS technology we use bipolar transistor drivers as the output stage of inverter and
logic gate circuits.
2. In bipolar transistors, there is an exponential dependence of the collector (output) current
on the base to emitter (input) voltage Vbe.
3. Hence, the bipolar transistors can be operated with much smaller input voltage swings
than MOS transistors and still switch large current.
4. Another consideration in bipolar devices is that the temperature effect on input voltage
Vbe.
5. In bipolar transistor, Vbe is logarithmically dependent on collector current IC and also
other parameters such as base width, doping level, electron mobility.
6. Now, the temperature differences across an IC are not very high. Thus the Vbe values of the
bipolar devices spread over the chip remain same and do not differ by more than a few milli
volts.
The switching performance of a bipolar transistor driving a capacitive load can be analyzed
to begin with the help of equivalent circuit as shown in figure.
The time ∆t required to change the output voltage Vout by an amount equal to the input
voltage is ∆t = CL/gm
potharajuvidyasagar.wordpress.com BY VIDYA SAGAR.P
VBIT COURSE MATERIAL VLSI DESIGN-2019
The devices thus have high β, high gm, high hfe and low RC. The presence of such efficient and
advantageous devices on chip offers a great deal of scope and freedom to the VLSI designer.
Propagation delays :
Propagation delay is the delay in the propagation of the signal created by the change of
logical status at the input to create same change at the output.
(i)Cascaded pass transistors
Figure shows a chain of four pass transistors driving a capacitive load CL. All the gates are
supplied by VDD so that a signal can propagate to the output. The lamped RC equivalent
circuit is shown in figure, where each transistor is modeled by a series resistance and
capacitance representing the gate-to-channel capacitance and stray capacitances. Them
minimum value of R is the turned ON resistance of each enhancement mode pass transistor.
The current through the capacitance at the node with voltage V2 is C (dV2 / dt ) ≈ C.∆V2/ ∆t
The current entering at this node is I1 = (V1 – V2)/R and the current leaving from this node
is I2 = (V2 – V3)/R. By applying KCL at this node
IC = I1 – I2
C. ∆V2/ ∆t = I1 – I2 = ((V1 – V2) - (V2 – V3)) / R
As the number of sections in the network increases, the circuit parameters become
distributed.
Assume that R and C as the resistance per unit length and the capacitance per unit length
respectively. C∆* .∆V2/ ∆t = ∆ (∆V2)/R.∆X
Where x is the distance along the network from the input.
RC dv/dt = d/dx. (dv/dx) = d2V/dx2
The propagation time τp from a signal to propagate a distance x is τp α X2
By simplifying the analysis if all sheet resistance, gate-to-channel capacitance RS and □cg are
lumped together
R total = nr Rs
C total = nc□cg
Where r gives relative resistance per section interms of RS and c gives relative capacitance per
section interms of □cg . Then the overall delay for n sections is given by
τp = n2rc(τ)
It can be shown that the signal delay in a section containing N identical pass transistors
driving a matched load (CL = Cg) is τp = 0.7 * N(N+1)/2 *RCL
For large value of N, the quantity (N + 1) can be replaced by N. Since the delay increases with
N, the number of pass transistors is restricted to 4. A cascade of more pass transistors will
produce a very slow circuit and the signal needs to be restored by an inverter after every
three (or) four pass transsitor.
For long polysilicon runs, the use of buffers is recommended. In general, the use of buffers
to drive long polysilicon runs has two desirable effects. First, the signal propagation is
speeded up and second there is a reduction in sensitivity to noise. In the diagram the slow
rise-time of the signal at the input of the inverter means that the input voltage spends a
relatively long time in the vicinity of Vinv so that small disturbances due to noise will switch
the inverter state between ‘0’ and’1’ as shown at the output point.
Thus, it is essential that long polysilicon wires be driven by suitable buffers to guard against
the effects of noise and to speed up the rise-time of propagated signal edges.
Wiring capacitances:
The significant sources of capacitance which contribute to the overall wiring capacitance are
as follows
(i)Fringing fields
Capacitance due to fringing field effects can be a major component of the overall capacitance
of interconnect wires. For fine line metallization, the value of fringing field capacitance (C ff)
can be of the
Same order as that of the area capacitance. Thus, Cff should be taken into account if accurate
prediction of performance is needed.
(ii)Interlayer capacitances
From the definition of capacitance itself, it can be said that there exists a capacitance
between the layers due to parallel plate effects. This capacitance will depend upon the layout
i.e., where the layers cross or whether one layer underlies another etc., by the knowledge of
these capacitances, the accuracy of circuit modeling and delay calculations will be improved.
It can be readily calculated for regular structures.
• In CMOS logic gates, due to these additional transistors, not only the chip area but also the
total effective capacitance per gate also increased and hence propagation delay increases.
• Some of the increase in propagation delay time can be compensated by the size-scaling
method.
• By increasing the size of the device, its current driving capability can be preserved.
• Due to increase in both of inputs and devices size, the capacitance increases, Hence
propagation delay will still increase with fan-in.
• An increase in the number of outputs of a logic gate directly adds to its load capacitances.
Hence, the propagation delay increases with fan-out.
Choice of layers:
The following are the constraints which must be considered for the proper choice of layers.
1. Since the polysilicon layer has relatively high specific resistance (RS), it should not be used
for routing VDD and VSS (GND) except for small distances.
2. VDD and GND (VSS) must be distributed only on metal layers, due to the consideration of
Rs value.
3. The capacitive effects will also impose certain restrictions in the choice of layers as follows
(i) Where fast signal lines are required, and in relation to signals on wiring which has
relatively higher values of RS.
(ii) The diffusion areas have higher values of capacitance to substrate and are harder to drive.
4. Over small equipotential regions, the signal on a wire can be treated as being identical at
all points.
5. Within each region the propagation delay of the signal will comparably smaller than the
gate delays and signal delays caused in a system connected by wires.
Thus the wires in a MOS system can be modeled as simple capacitors. This concept leads to
the establishment of electrical rules (guidelines) for communication paths (wires) as given in
tabular form.