on chip voltage regulator
**On-Chip Voltage Regulators (IVR/LDO)** are the **power management circuits integrated directly onto the processor die that convert a single external supply voltage into multiple regulated internal voltages** — enabling fine-grained per-core or per-block voltage scaling with microsecond response times, which is impossible with external VRMs (voltage regulator modules) that have millisecond response and cannot track the rapid load transients of modern high-performance processors.
**Why On-Chip Regulation**
- External VRM: On motherboard, converts 12V → 1.0V → delivers to chip via package.
- Problem: Package inductance + board trace → voltage droop during load transient → chip must design for worst-case.
- On-chip IVR: Regulator on die → minimal inductance → fast response → less voltage margin needed.
- DVFS benefit: Per-core voltage domains → each core at optimal V/F → 10-20% power savings.
**Types of On-Chip Regulators**
| Type | Efficiency | Area | Bandwidth | Use Case |
|------|-----------|------|-----------|----------|
| LDO (Linear) | 70-90% | Small | Very high (>100 MHz) | Fine regulation, low noise |
| Buck (Inductive) | 85-95% | Large (needs inductor) | Medium (1-10 MHz) | High current, efficiency |
| Switched-Capacitor | 80-90% | Medium | Medium (10-100 MHz) | No inductor, moderate power |
| Hybrid SC+LDO | 80-92% | Medium | High | Best of both worlds |
**LDO (Low-Dropout Regulator)**
```svg
```
- Simplest architecture: Error amplifier controls PMOS pass device.
- Dropout voltage: VIN - VOUT → lower dropout = higher efficiency.
- At VIN=1.0V, VOUT=0.75V: Efficiency = 0.75/1.0 = 75%.
- Advantage: No switching noise, fast transient response, small area.
- Intel Haswell: First major processor with on-chip LDOs (FIVR architecture).
**Switched-Capacitor Regulator**
- Uses capacitors and switches to convert voltage ratios (2:1, 3:2, etc.).
- No inductor needed → fully integrable in CMOS.
- Flying capacitors: MOM or MOS capacitors using back-end metal layers.
- Area: Capacitor density ~5-20 nF/mm² → significant area for high current.
- Efficiency peaks at specific conversion ratios → combine with LDO for fine tuning.
**Inductive Buck Converter (FIVR)**
- Intel FIVR (Fully Integrated Voltage Regulator): Buck converter with package-embedded inductors.
- Inductors: Thin-film magnetic inductors embedded in package substrate.
- Switching frequency: 100-300 MHz → small inductor values → integrable.
- Delivers 100+ amps per core cluster.
- Advantage: Highest efficiency, supports large voltage conversion ratios.
**Design Challenges**
| Challenge | Impact | Mitigation |
|-----------|--------|------------|
| Area overhead | Regulator consumes die area | Use metal cap layers for caps |
| Efficiency loss | Heat generation on die | Multi-phase, adaptive techniques |
| Noise coupling | Switching injects noise into sensitive circuits | LDO for analog, shield layout |
| Current density | High current in small area → electromigration | Wide power rails, multiple regulators |
| Process variation | Vt variation → regulator accuracy varies | Digital calibration, adaptive biasing |
**Per-Core DVFS with IVR**
- Without IVR: All cores share one voltage → limited to worst-core frequency.
- With IVR: Core 0 at 1.0V/4GHz, Core 1 at 0.8V/3GHz → each core optimized.
- Power saving: P ∝ V² → reducing V by 20% saves ~36% power per core.
- Total chip savings: 10-20% vs. global voltage domain.
On-chip voltage regulators are **the enabling circuit technology for fine-grained power management in modern processors** — by placing voltage regulation directly on the die with microsecond-scale response times, IVRs enable per-core DVFS and aggressive voltage guardband reduction that are impossible with external power delivery, making on-chip regulation a key differentiator in the power efficiency competition between Intel, AMD, and ARM-based server processors.