Home Knowledge Base Power-Aware Simulation and UPF Verification

Power-Aware Simulation and UPF Verification is the specialized verification methodology that simulates the behavior of a chip design with its power management architecture (power gating, voltage scaling, retention) actively modeled — verifying that isolation cells correctly clamp outputs when a domain is powered off, retention registers properly save and restore state across power cycles, and level shifters correctly translate signals between voltage domains, catching power-related bugs that standard functional simulation completely misses.

Why Power-Aware Simulation

UPF (Unified Power Format)

# Define power domains
create_power_domain PD_CORE -elements {u_cpu_core}
create_power_domain PD_GPU  -elements {u_gpu} -shutoff_condition {!gpu_pwr_en}
create_power_domain PD_ALWAYS_ON -elements {u_pmu u_wakeup}

# Define power states
add_power_state PD_GPU -state ON  {-supply_expr {power == FULL_ON}}
add_power_state PD_GPU -state OFF {-supply_expr {power == OFF}}

# Isolation
set_isolation iso_gpu -domain PD_GPU \
    -isolation_power_net VDD_AON \
    -clamp_value 0 \
    -applies_to outputs

# Retention
set_retention ret_gpu -domain PD_GPU \
    -save_signal {gpu_save posedge} \
    -restore_signal {gpu_restore posedge}

What Power-Aware Simulation Checks

CheckWhatConsequence If Missed
Isolation clampingOutputs from OFF domain clamped to 0/1Floating signals → random behavior
Retention save/restoreState saved before OFF, restored after ONData loss across power cycle
Level shifter functionSignal correctly translated between voltagesLogic errors at domain boundaries
Power sequencingDomains powered on/off in correct orderShort circuits, latch-up
Supply corruptionSignals driven by OFF supply become XCorruption propagation

X-Propagation in Power Simulation

 Domain A (ON)      Domain B (OFF)
 ┌─────────┐        ┌─────────┐
 │ Logic   │─signal─│ X X X X │  ← All signals in B are X
 │ working │←─────┤ X X X X │
 └─────────┘  ↑    └─────────┘
          [ISO cell]
          clamps B output to 0
          → A sees 0, not X → correct behavior

Power-Aware Simulation Flow

1. Read RTL + UPF (power intent). 2. Simulator creates supply network model (power switches, isolation cells, retention cells). 3. Run testbench with power state transitions:

4. Check for:

Common Power Bugs Found

BugSymptomRoot Cause
Missing isolation cellX propagation on outputUPF incomplete
Wrong clamp valueDownstream logic gets wrong valueClamp should be 1 not 0
Missing retentionState lost after power cycleRegister not flagged for retention
Incorrect sequenceShort circuit during transitionPower-on before isolation enabled
Level shifter missingSignal at wrong voltage levelCross-domain signal not identified

Verification Completeness

Power-aware simulation is the verification methodology that prevents the most expensive class of silicon bugs in modern SoCs — with power management involving dozens of power domains, hundreds of isolation cells, and complex power sequencing protocols, the failure to properly verify power intent through UPF-driven simulation is the leading cause of first-silicon failures in complex SoC designs, making power-aware verification a non-negotiable requirement for tapeout signoff.

low power simulationpower aware simulationupf simulationpower domain verificationisolation verification

Explore 500+ Semiconductor & AI Topics

From EUV lithography to CUDA optimization — search the full knowledge base or chat with our AI assistant.