Low Power Verification · All levels
Legal and Illegal PST Transition Checks: Theory Deep Dive
Theory Deep Dive for Legal and Illegal PST Transition Checks.
Foundational theory
Legal and Illegal PST Transition Checks is core to Power State Verification. Treat each power behavior change as a correctness and signoff risk decision.
Core concepts explained
Transition correctness is not only about start and end states; it depends on guards, temporal ordering, and confirmation events on each arc. Verification therefore encodes every legal PST arc with required preconditions (for example quiescent interconnect, save-ack observed, debug override cleared) and postconditions (such as supply good, isolation release, restore complete) while asserting that all non-enumerated arcs remain unreachable. Illegal transition checks must include both direct jumps and multi-step shortcuts created by overlapping requests, because concurrent software writes or interrupt-driven exits can collapse intended two-hop paths into electrically unsafe single-hop behavior. Advanced checkers track arc provenance, so when a violation occurs they identify which guard was bypassed, which handshake timed out, and whether recovery logic masked the violation by forcing a fallback state after corruption was already possible.
Primary metric: Illegal transition escape rate, transition-checker latency to first error, and percentage of legal arcs exercised with pass/fail evidence.
Primary artifact: Transition-arc checker specification with guard predicates, timeout rules, and illegal-arc diagnostics taxonomy.
Owners: DV assertion owner, power controller RTL lead, firmware sequencing owner, formal verification owner, SoC integration owner
Power intent and RTL behavior must stay aligned through transitions
Proof quality beats broad waive strategies in low-power closure
Why this matters in low-power signoff
Power-state verification is a protocol verification problem: legal transitions, ordering contracts, and corner-case concurrency. Teams that enforce this reduce false alarms and real escapes.
Mental model
POWER STATE TABLE
State CORE GPU RET ISO VALID EXIT
-------- ----- ---- ---- ---- -----------------------------
ON ON ON OFF OFF normal operation
IDLE ON CLK-G OFF OFF activity drops below threshold
SLEEP OFF OFF ON ON wake_event && restore_done
GPU-NAP ON OFF OFF ON gpu_irq || host_request
DEEP-SLP OFF OFF ON ON aon_timer || external_wakeup
Transition checks:
ON -> SLEEP: save -> isolate -> gate clocks -> power off
SLEEP -> ON: power on -> wait stable -> restore -> de-isolateWorked intuition
Classify symptom first: illegal transition, corruption, isolation break, retention drift, or X-prop ambiguity.
Pinpoint first phase boundary where expected low-power behavior diverges.
Quantify movement in Illegal transition escape rate, transition-checker latency to first error, and percentage of legal arcs exercised with pass/fail evidence. before broad refactors.
Collect Transition-arc checker specification with guard predicates, timeout rules, and illegal-arc diagnostics taxonomy. with fixed run metadata and mode sequencing.
Apply one bounded fix and replay both targeted and broader scenarios.
Publish owner-signed closure note with rollback trigger.
Common misconceptions
Passing nominal ON/OFF smoke proves transition correctness.
UPF compile clean means all intent semantics are correct.
All X-prop failures indicate real product escapes.
Retention behavior can be trusted without multi-cycle restore stress.
Low-power verification deep dive
Power-state correctness is a protocol contract: legal transitions, robust sequencing, and safe concurrent event handling.
Concept diagram
PST CONTROL LOOP
state request -> legality check -> handshake sequencing -> mode entry -> monitored exitMetric graph
STATE RISK MIX
illegal transitions ██████
sequence race bugs █████
stable mode paths ████████Metrics and artifacts to collect
PST legality matrix
illegal transition histogram
entry/exit handshake coverage
mode sequencing anomaly log
Mini case study
A sporadic low-power failure closed only after proving a wake-versus-thermal race in PMU transition sequencing.
Debug branches
Validate legal state graph first.
Stress concurrent control events and asynchronous wakeups.
Bind fixes to explicit transition and owner contracts.
Senior review question
Ask: what exact low-power transition boundary failed first, and which artifact proves the closure claim reproducibly?
Key takeaways
Tie each LPV claim to a concrete transition boundary and one proving artifact.
Prefer minimal reversible fixes with explicit owner and rollback criteria.
Common pitfalls
Treating power-aware failures as random before boundary classification.
Waiving X-prop failures before proving impact and root cause.
Declaring closure without deterministic replay across key modes.
Theory reinforcement
Theory matters when it predicts concrete failure signatures and closure boundaries.
Translate LPV semantics into reproducible verification outcomes.