What Is an Antenna Diode and Why Do We Need It?
What Is an Antenna Diode?
An antenna diode is a protection diode placed in a digital integrated circuit to guard transistor gates against damage during the chip fabrication process. It has nothing to do with radio antennas. The name comes from the “antenna effect,” a phenomenon that occurs during plasma etching.
The Antenna Effect
Modern ICs are built layer by layer. Metal interconnects and polysilicon wires are patterned using plasma etching, a process where ionized gas (plasma) selectively removes material. During this process, conductive structures like metal wires and polysilicon lines collect charge from the plasma.
If a long wire or large metal area is connected directly to a transistor gate before a discharging path exists, charge accumulates on that wire. Because a MOSFET gate is isolated by a thin oxide layer (just a few nanometers thick), there is nowhere for this charge to go — the voltage builds up until it breaks through the gate oxide, permanently damaging the transistor.
This charge accumulation on a floating conductor is the antenna effect. The “antenna” is the long wire or metal polygon acting like a receiving antenna, collecting charge.
Antenna Ratio
The severity of the antenna effect is measured by the antenna ratio:
Antenna Ratio = Area of metal connected to gate / Area of the gate oxide
Design rules specify a maximum allowable antenna ratio (commonly 400:1 to 1000:1 depending on the process). Violating this rule increases the risk of gate oxide damage.
How Does an Antenna Diode Help?
An antenna diode provides a discharge path for the accumulated charge before it can damage the gate oxide.
The diode is placed between the offending net and a supply rail (typically VDD or VSS):
- A reverse-biased diode to VSS bleeds excess positive charge to ground.
- A reverse-biased diode to VDD bleeds excess negative charge to the supply.
During normal circuit operation (after fabrication), the diode remains reverse biased and has no effect on circuit behavior — it is essentially invisible to the design. Its only job is to protect the gate during manufacturing.
Metal wire (antenna) ──────┬──── MOSFET Gate
│
[D] ← antenna diode
│
VSS
Where Are Antenna Diodes Inserted?
Antenna diodes are added in two ways:
- Manually by the designer — when a known long net violates the antenna rule.
- Automatically by EDA tools — place-and-route tools (like OpenLane/OpenROAD) run an antenna rule check (ARC) after routing and insert diodes automatically on violating nets.
In OpenLane, the antenna check is performed by the OpenROAD antenna_check command, and diode insertion is handled during detailed routing or as a post-route fix step.
Why Not Just Fix the Routing?
Sometimes the antenna violation can be resolved by metal jumpers — routing the wire up to a higher metal layer and back down. This breaks the continuous plasma exposure on a single layer, reducing charge buildup. However, this consumes routing resources and is not always feasible. Antenna diodes are a simpler, area-cheap solution.
Summary
| Aspect | Detail |
|---|---|
| Problem | Charge buildup on floating conductors during plasma etching damages gate oxide |
| Solution | Antenna diode provides a discharge path to VSS or VDD |
| Active during | Fabrication only (reverse biased in normal operation) |
| Inserted by | Designer manually, or EDA tool automatically |
| Cost | Small area overhead, no performance impact |
Antenna diodes are a small but essential element of robust IC design. Without them, long interconnects in deep-submicron processes would regularly destroy the very transistors they are meant to connect.