The Repair LibraryRead · Learn · Master

Power Rail Sequencing

Why a multi-rail device must power its supplies up and down in a specific order — the latch-up and damage risks of getting it wrong, the sequencing methods, and the power-good and supervisor circuits that enforce it.

IntermediateLow Risk27 min read

What You Will Learn

  • You will learn why modern devices have several supply rails and why the order they power up and down in matters.
  • You will learn what can go wrong when rails come up out of order — latch-up, excess current, mis-initialization, or damage.
  • You will learn the common sequencing methods and the roles of power-good signals and a voltage supervisor.
  • You will learn to diagnose a board that won't boot or is held in reset because of a rail or sequencing fault.

What You Will Be Able To Do

  • You will be able to explain why a device uses multiple rails and why sequence order matters.
  • You will be able to describe latch-up and the other consequences of an out-of-order power-up.
  • You will be able to explain cascaded-enable, sequencer-IC, and RC-delay sequencing and the power-good and supervisor roles.
  • You will be able to diagnose a won't-boot or held-in-reset fault caused by a missing, late, or out-of-sequence rail.

Required Tools

No physical tools required. This is a conceptual section.

Section Overview

The regulators of Sections 7.2 and 7.3 rarely work alone — a modern device usually has several supply rails, and this section is about the fact that the order they power up and down in matters. A processor might need a 3.3 V I/O rail, a 1.8 V rail, and a low-voltage core rail like 1.2 V, each from its own regulator. Many complex chips require those rails to arrive in a specific sequence, or the chip can latch up, draw excessive current, mis-initialize, or be damaged — so the rails are brought up in a controlled order, a practice called power sequencing. This section covers why multiple power rails exist, why their order matters, the methods used to sequence them (cascaded enables, sequencer ICs, RC delays), and the power-good signals and voltage supervisor that monitor the rails and hold the system in power-on reset until everything is valid. It's the coordination layer on top of the individual regulators, and a common hidden cause of won't-boot faults.

Why This Matters

A device with several rails only works if they come up correctly, and a surprising number of "dead board" and "won't boot" faults are really sequencing or single-rail failures. Understanding sequencing tells a technician what to check when a multi-rail board misbehaves: are all the rails present, at the right voltage, and coming up in the right order? Is the system stuck in reset because a supervisor never saw every rail go good? Is one failed regulator dragging the whole system down through the supervisor? This matters on essentially every processor-, FPGA-, or SoC-based board — which is most modern electronics. Recognizing that the power system, not just each supply, has to be correct turns a baffling no-boot into a systematic check of rails and their sequence, and it connects directly to the check-power-and-reset habits from the digital diagnosis of Section 6.5.

Required Prerequisites

No consumables required. A scrap multi-rail board (a dead single-board computer or FPGA board) makes ideal study material for identifying rails and supervisor/reset lines, but nothing is used up.

  • Optional: a multi-rail board to examine, a multimeter to check each rail's voltage, and — ideally — a multi-channel oscilloscope to watch several rails and the reset line come up together
  • Datasheets for a processor or FPGA to see a real power-sequencing requirement and power-good/reset pins
  • No special hardware is required; the sequencing concepts and diagnosis stand on reasoning

Real-World Applications

Power sequencing is designed into nearly every complex digital board. A processor or SoC datasheet specifies which rail must be up first (often the core, or the I/O, depending on the part) and how closely the rails must track; FPGAs are famously particular about their power-up order. Memory, image sensors, and mixed-signal chips frequently have sequencing rules too. On the bench, this shows up constantly: a board that won't boot because one of several rails is missing or late; a system held in reset because its supervisor never sees all rails good; a device that powers up erratically because rails come up in the wrong order. Being able to check each rail's presence, voltage, and timing — and to understand the power-good and reset supervision that ties them together — makes multi-rail no-boot faults, one of the more intimidating repair categories, systematic and solvable.

Common Challenges

  • Thinking of "power" as one thing. A modern board has several rails, each of which must be correct; "is there power?" becomes "is every rail present, at voltage, and in order?"
  • Missing a sequencing requirement. The need for a specific power-up order is invisible until it's violated; a chip can latch up or misbehave purely because two rails arrived in the wrong order, with nothing obviously "broken."
  • Overlooking the supervisor's role. A board can look dead when it is simply being held in reset by a supervisor that never saw all rails go good — the reset behavior from Section 6.5, driven here by the power system.

Safety Notes

Risk Level: Low. The rails and signals here are low-voltage and safe to probe. Two reminders about what's upstream.

Professional Tips Before Starting

  • Treat power as a set of rails, not one supply. On a multi-rail board, list the rails and check each one's presence, voltage, and timing — a single missing or late rail explains many whole-board failures.
  • Watch the reset and power-good lines. A system held in reset is often waiting on a rail that never went good; scoping the supervisor's reset output and the regulators' power-good pins tells you whether the power system thinks it's ready.
  • Bring up a suspect board carefully. If a board draws excessive current at power-up (a sign of latch-up or a shorted rail), don't leave it powered — a current-limited bench supply is invaluable for investigating without causing further damage.

How Power Rail Sequencing Works

Why a Device Has Multiple Rails

A modern digital chip rarely runs on a single voltage. A processor or SoC typically needs a higher power rail for its input/output pins (say 3.3 V, to talk to other parts), a lower rail for internal logic or memory (perhaps 1.8 V), and a still-lower core rail (like 1.2 V or below) for its dense internal transistors, because smaller, faster logic runs at lower voltages, which also saves power and heat. Each of these rails is produced by its own regulator — often a switching regulator (Section 7.3) for the high-current core rail and linear or switching regulators for the others. So a single board can carry several rails at once, all derived from one input supply, each feeding different parts of the same chip or different chips. That multiplicity is what makes their coordination necessary.

Why the Order Matters: Latch-Up and Other Hazards

With several rails, the order they appear in at power-up (and disappear in at power-down) is not arbitrary. Many complex ICs specify a required sequence — for example, that the I/O rail must not come up long before the core rail, or that the rails must stay within a bounded voltage of each other. Violate it and several bad things can happen. The most serious is latch-up: an out-of-order or out-of-range condition can trigger a parasitic low-impedance path inside the chip that shorts a rail to ground, drawing large current and potentially destroying the part unless power is removed. Short of latch-up, a wrong sequence can cause excess current draw, leave the chip mis-initialized (so it behaves erratically or won't boot), or stress and damage internal structures over time. The specific required order is given in the chip's datasheet, and honoring it is why boards sequence their rails deliberately rather than just switching everything on at once.

Sequencing Methods

There are a few common ways to enforce the order. The simplest is cascaded (daisy-chained) enables: each regulator has an enable input and a power-good output, and the power-good of one regulator is wired to the enable of the next, so the second rail only starts once the first is up and valid, the third once the second is good, and so on — the rails come up in a guaranteed chain. For more rails or more complex timing, a dedicated sequencer IC manages several enables with programmed delays and order. And for undemanding cases, a simple RC delay on a regulator's enable pin staggers its turn-on by a fixed time. Power-down sequencing, when it matters, is handled similarly in reverse. The method varies with complexity, but the goal is always the same: bring the rails up (and down) in the order the chips require.

Power-Good, Supervisors, and Reset

Two related signals tie the power system to the rest of the board. A power-good (PG) signal is an output a regulator asserts when its output voltage is within range — a simple "this rail is up and valid" flag, used both to sequence the next rail and to tell the system a rail is ready. Overseeing the whole set is a voltage supervisor (also called a reset supervisor or power monitor): it watches the rails and holds the system in power-on reset — keeping the processor halted in its initial state (the reset behavior from Section 6.5) — until all the rails are present and valid, then releases reset so the system can boot. The supervisor also re-asserts reset if a rail later sags out of range, for example during a brownout (a supply dip), holding the system safely halted rather than letting it run on bad power. This is why a board can be perfectly "powered" yet completely inert: if one rail never goes good, the supervisor never releases reset, and the system waits forever.

Brownout and Staying Safe on Bad Power

The supervisor's brownout job is worth its own note. If the input sags — a weak supply, a drooping battery (Section 7.4), or a momentary dip — one or more rails can fall below their valid range. Running a processor on an under-voltage rail can corrupt its operation or state, so the supervisor detects the undervoltage and re-asserts reset, parking the system safely until the rails recover, then releasing reset for a clean restart. This is the power system protecting the digital system from bad power, and it's why a device with a marginal supply or a tired battery may repeatedly reset or fail to start: the supervisor is correctly refusing to let it run on rails that aren't good.

Common Mistakes

  • Checking only one rail. A multi-rail board needs every rail present, at voltage, and in order; confirm all of them, not just the main one.
  • Ignoring the sequence. Rails arriving in the wrong order can latch up or mis-initialize a chip even when each rail alone looks fine.
  • Forgetting the supervisor holds reset. A "dead" board is often just held in reset because one rail never went good — check the reset and power-good lines.
  • Leaving a latched-up board powered. Excess current from latch-up can destroy a part; remove power and investigate rather than pushing through.

Troubleshooting Guidance

Diagnose a multi-rail board by treating the power system as a whole. First, inventory the rails: identify each supply rail and, with a multimeter, confirm each is present and at its correct voltage — a single missing or wrong rail (a failed regulator, from Sections 7.2 and 7.3) often explains a whole-board failure. If all rails read correct statically, check timing and order with a multi-channel scope at power-up: the rails should come up in the sequence the datasheet requires, and a rail that is late, slow, or out of order can cause latch-up or a failed boot even though its final voltage is fine. Then look at the reset and power-good lines: if the system is held in reset, the voltage supervisor is likely not seeing all rails good — trace which regulator's power-good is missing to find the offending rail, because one dead rail keeps the supervisor from releasing reset and holds the entire system down (the "held in reset looks dead" case from Section 6.5, driven by the power system). Watch also for excess current or rapid heating at power-up, a sign of latch-up or a shorted rail — remove power promptly and use a current-limited supply to investigate safely. For a board that repeatedly resets or won't start on a marginal supply or tired battery, suspect the supervisor doing its brownout job, correctly refusing to run the system on under-voltage rails. In short: confirm every rail's presence, voltage, order, and the state of the power-good and reset lines — the fault is usually one rail or one sequencing link, and the supervisor's behavior points straight at it.

Verification & Testing Methods

Check your understanding before moving on:

  • [ ] Explain why a modern device has several supply rails and why their power-up order matters.
  • [ ] Describe latch-up and the other consequences of an out-of-order power-up.
  • [ ] Explain cascaded-enable, sequencer-IC, and RC-delay sequencing, and the roles of power-good and a voltage supervisor.
  • [ ] Explain how a supervisor holding reset can make a fully-powered board appear dead, and how you'd find the offending rail.

Then try the practice exercises below — reasoning about rails, sequencing, and diagnosis, no live mains work required.

Practice Exercises

  1. Why multiple rails? (5 minutes, reasoning). A processor board has 3.3 V, 1.8 V, and 1.2 V rails. Explain why one chip needs several voltages, and which rail is likely the low-voltage core rail and why it exists.
  2. What goes wrong out of order? (5 minutes, reasoning). Explain what can happen if a chip's rails come up in the wrong order, and describe latch-up and why leaving a latched-up board powered is dangerous to the part.
  3. Pick a sequencing method (10 minutes, reasoning). For each need, name a suitable sequencing method and how it works: (a) two rails where the second must simply wait for the first to be valid; (b) a fixed short delay on one regulator's turn-on; (c) six rails with a specific programmed order and timing.
  4. Diagnose a held-in-reset board (10 minutes, reasoning). A multi-rail board is completely inert, but you measure that most rails are present. Explain, step by step, how a supervisor holding reset could cause this, what you'd check on the power-good and reset lines, and how you'd find the rail that isn't good.

These core ideas — why multiple rails exist, why sequence order matters and latch-up, the sequencing methods, and power-good/supervisor/reset — are tested in the Chapter Quiz at the end of this chapter, where a score of 80% is required to continue.

Key Takeaways

  • Modern devices have several power rails because one chip often needs several voltages — for example a 3.3 V I/O rail, a 1.8 V rail, and a low-voltage core rail like 1.2 V — each from its own regulator.
  • Power sequencing is bringing the rails up (and down) in a controlled order; many complex ICs require a specific order or bounded rail-to-rail difference, or they can latch up (a damaging low-impedance state), draw excess current, mis-initialize, or be damaged. The datasheet specifies the order.
  • Sequencing methods include cascaded enables (one regulator's power-good enables the next), a dedicated sequencer IC, and simple RC delays on enable pins.
  • A power-good signal flags that a rail is in range; a voltage supervisor holds the system in power-on reset until all rails are valid, then releases reset — and re-asserts it on a brownout.
  • One dead or late rail can keep the supervisor from releasing reset, so a fully-"powered" board can appear completely dead while simply held in reset.
  • Diagnose by confirming every rail's presence, voltage, and order, and by checking the power-good and reset lines; watch for latch-up's excess current and remove power promptly if a part heats or over-draws.

Skills Learned

  • You can now explain why a device uses multiple rails and why sequence order matters.
  • You can now describe latch-up and the other consequences of an out-of-order power-up.
  • You can now explain cascaded-enable, sequencer-IC, and RC-delay sequencing and the power-good and supervisor roles.
  • You can now diagnose a won't-boot or held-in-reset fault caused by a missing, late, or out-of-sequence rail.
  • You can now connect the power system's reset supervision to the digital reset behavior from Chapter 6.

Glossary Additions

  • power rail — one of the several regulated supply voltages on a board (for example a 3.3 V, 1.8 V, or 1.2 V rail), each produced by its own regulator to feed the parts of a chip or system that need that voltage; a modern device commonly has several rails from one input supply.
  • power sequencing — bringing a system's multiple power rails up at power-on (and down at power-off) in a controlled order, as required by the chips, to avoid latch-up, excess current, mis-initialization, or damage that an arbitrary order could cause.
  • power-good — a signal (PG) that a regulator or monitor asserts when a rail's voltage is within its valid range; it is used both to enable the next rail in a sequence and to tell the system that the rail is ready.
  • voltage supervisor — a monitoring circuit (also called a reset supervisor or power monitor) that watches a system's rails and holds it in reset until all rails are valid, then releases reset; it re-asserts reset if a rail later falls out of range, such as during a brownout, keeping the system from running on bad power.
  • power-on reset — the condition of a system being held in its reset state at power-up until the power rails are valid, then released to boot; it is the power system applying the reset behavior from Chapter 6 so a device starts cleanly only once its power is good.

Suggested Next Sections

Must read next:

  • Power System Failure Modes — the closing section of the power chapter: how power systems actually fail — dead rails, excess ripple, bad regulators, sequencing and supervisor faults — and the systematic method for diagnosing them.

Recommended: