VLSI Design
Level 4 (Application: novel/unseen problems) Time: 60 minutes | Total: 60 marks
Answer all questions. Show all working. Assume standard CMOS conventions unless stated.
Question 1 — Scaling & Power (12 marks)
A processor is fabricated at a 28 nm node with the following characteristics: supply voltage , clock frequency , total switched capacitance per cycle , average activity factor , and static leakage current .
(a) Compute the dynamic power and static (leakage) power. State total power. (4)
(b) The design is ported to a 14 nm node. Under ideal Dennard scaling with a linear dimension scaling factor , state the scaling relationships and compute the new , , (frequency scales up by ), and the new dynamic power density relative to the old. Show that dynamic power per unit area stays constant. (5)
(c) In reality Dennard scaling broke down around 2005. Explain, using the leakage term, why voltage could not continue to scale as , and what this implies for the power computed in (b). (3)
Question 2 — Clock Tree & Timing (12 marks)
A synchronous block has a launch flip-flop and a capture flip-flop connected by combinational logic. Given:
- Clock-to-Q delay
- Combinational logic delay
- Setup time
- Hold time
- Clock period
- Clock skew
(a) Write the setup and hold timing inequalities including skew. (3)
(b) Determine the range of skew values for which the path meets both setup and hold. (5)
(c) A clock-tree synthesis (CTS) tool introduces +150 ps of positive skew (capture later). State whether setup and hold are still met, and explain the design intent of deliberately introducing this skew ("useful skew"). (4)
Question 3 — Power Grid / IR Drop (12 marks)
A power grid delivers current to a block through a metal rail modelled as a distributed resistance. The rail carries a total current , has end-to-end resistance , and current is drawn uniformly along its length from a single-end supply.
(a) For a single lumped load at the far end, compute the worst-case IR drop. If the nominal supply is , what voltage reaches the load? (3)
(b) For a uniformly distributed load along the rail (same total current ), show that the effective IR drop at the far end is and compute it. Explain physically why it is half the lumped value. (5)
(c) The cell library requires at least to meet timing. For the distributed case, is the constraint met? Propose two floorplanning/power-planning techniques to reduce IR drop. (4)
Question 4 — DFT: Scan Chains & Test (12 marks)
A chip contains 24,000 flip-flops. Scan test is applied at a scan shift frequency of 50 MHz.
(a) If all flip-flops are stitched into a single scan chain, compute the time to shift in one test vector (ignore capture cycle). (3)
(b) The design is re-partitioned into 8 balanced scan chains. Compute the new shift-in time and the speedup. State the main cost/trade-off of adding more chains. (4)
(c) A test set has 1,200 vectors. Using the 8-chain configuration, estimate total scan test application time (assume 1 capture cycle per vector at 50 MHz, and shift-in of vector overlaps with shift-out of vector ). (5)
Question 5 — Signal Integrity & Verification (12 marks)
(a) Two parallel routed nets (aggressor and victim) have a coupling capacitance and the victim has ground capacitance . The aggressor switches full-rail while the victim is held quiet. Estimate the peak crosstalk noise voltage on the victim using the capacitive divider model. State one layout technique to reduce it. (5)
(b) During sign-off a chip passes DRC but fails LVS. Explain what each check verifies and give a concrete example of a defect that DRC would miss but LVS would catch. (4)
(c) Parasitic extraction reports a net RC delay you must model. A net has and distributed. Estimate the Elmore delay using the lumped approximation and comment on why distributed-RC delay is lower. (3)
End of paper.
Answer keyMark scheme & solutions
Question 1
(a) Dynamic power: . (2) Static: . (1) Total . (1)
(b) Ideal Dennard: dimensions , , , , area . (1)
- New (1)
- New (per equivalent block); (1)
- New dynamic power . (1)
- Area scales by , so power density → constant. (1)
(c) Lowering requires lowering to preserve drive; but subthreshold leakage rises exponentially as falls. So could not keep scaling without leakage exploding. (2) Consequently the ideal result of (b) is not achievable; static power dominates and power density rises → "power wall." (1)
Question 2
(a) Setup: . (1.5) Hold: . (1.5)
(b) Setup → . So . (2) Hold → . So . (2) Valid range: . (1)
(c) lies in → both setup and hold met. (2) Useful skew: intentionally delaying the capture clock borrows time for a critical setup path (relaxes setup, at the cost of hold margin on downstream paths), improving max frequency without changing logic. (2)
Question 3
(a) Lumped far-end: . (2) Load voltage . (1)
(b) Distributed uniform load: consider current decreasing linearly from at source to 0 at the end. Drop where . With : . (3) . (1) Physically: current near the far end traverses less resistance (only the near portion carries the full current), so average path resistance is halved. (1)
(c) Distributed load voltage → constraint NOT met. (2) Techniques (any two): widen power straps / add more metal layers; use a denser power mesh; add more supply pins/bumps (double-sided feed); insert decoupling capacitors; place high-current blocks near supply. (2)
Question 4
(a) Single chain length = 24,000 bits. Shift time . (3)
(b) 8 balanced chains → longest chain bits. Time . (2) Speedup . (1) Trade-off: 8× more scan I/O pins (or more test channels/ATE resources), extra routing congestion. (1)
(c) Per-vector shift cycles; capture cycle. With overlap of shift-out/shift-in, effective cost per vector after pipeline fill cycles; plus one final shift-out (3000) for the last vector. Cycles . (3) Time . (2) (Accept ~72 ms; simple estimate also full marks.)
Question 5
(a) Capacitive divider: . (3) Layout fix (any): increase spacing between nets; insert grounded shield line; reduce parallel run length; route on orthogonal layers. (2)
(b) DRC checks the layout geometry obeys the foundry's manufacturability rules (spacing, width, enclosure, density) — purely physical. (1) LVS verifies the extracted netlist from layout matches the schematic/intended netlist (connectivity + device sizes/types). (1) Example DRC misses but LVS catches: a wire that is geometrically legal but connects the wrong two nets (a short between nets, or a missing/swapped connection) — spacing rules pass but topology is wrong. (2)
(c) Lumped delay . (2) Distributed-RC delay is lower (~) because resistance and capacitance are interspersed, so the full does not charge the full ; the lumped model overestimates. (1)
[
{"claim":"Q1a dynamic and total power", "code":"alpha=Rational(15,100); C=15e-9; V=1.0; f=2e9; Pdyn=alpha*C*V**2*f; Pstat=1.0*1.2; result = (abs(float(Pdyn)-4.5)<1e-6) and (abs(float(Pdyn)+Pstat-5.7)<1e-6)"},
{"claim":"Q1b scaled dynamic power is 1.125W (P/4)", "code":"k=2; Pdyn=4.5; Pnew=Pdyn/k**2; result = abs(Pnew-1.125)<1e-9"},
{"claim":"Q2b skew range [-130,570] ps", "code":"tcq=90; tl=520; tsu=60; th=40; T=800; smin=tcq+tl+tsu-T; smax=tcq+tl-th; result = (smin==-130) and (smax==570)"},
{"claim":"Q3b distributed IR drop = 0.2V", "code":"x=symbols('x'); I=0.8; R=0.5; L=1; expr=I*(1-x/L)*(R/L); drop=integrate(expr,(x,0,L)); result = abs(float(drop)-0.2)<1e-9"},
{"claim":"Q4 single vs 8-chain shift times and speedup", "code":"N=24000; f=50e6; t1=N/f; t8=(N/8)/f; result = (abs(t1-4.8e-4)<1e-12) and (abs(t8-6e-5)<1e-12) and (abs(t1/t8-8)<1e-9)"},
{"claim":"Q5a crosstalk noise = 0.25V", "code":"Cc=8; Cg=24; dV=1.0; Vn=dV*Cc/(Cc+Cg); result = abs(Vn-0.25)<1e-9"}
]