EmbeddedRelated.com

LDO Regulator

Category: Power | Also known as: LDO, low-dropout regulator, low dropout regulator

A low-dropout (LDO) regulator is a linear voltage regulator that maintains a stable output voltage while operating with a very small difference between its input and output voltages, typically as low as 100-300 mV depending on the device and load current. Unlike switching regulators, LDOs dissipate the excess input-to-output voltage difference as heat through a pass element (commonly a PMOS FET or PNP BJT).

In practice

LDOs appear in nearly every embedded system as a final-stage supply for MCUs, sensors, RF front-ends, and analog peripherals. A common use case is powering a 3.3 V MCU from a 3.7-4.2 V single-cell Li-ion battery, where the narrow input-output headroom makes an LDO more practical than a buck regulator. Many MCU evaluation boards and reference designs use LDOs such as the AMS1117-3.3, MCP1700, or TLV755P for exactly this role. The blog post "10 Circuit Components You Should Know" covers LDOs as a fundamental building block worth understanding early in embedded design.

Power dissipation is the central limitation of LDOs. The device burns (V_IN - V_OUT) x I_LOAD as heat, so efficiency drops as the input-to-output differential grows or load current increases. Powering a 3.3 V rail from a 12 V supply at 500 mA dissipates 4.35 W in the LDO package, which is unsustainable for most small SMD parts and requires careful thermal analysis. For high-differential or high-current situations, a switching pre-regulator followed by an LDO (a "hybrid" topology) is a common solution that gains efficiency while keeping low output noise.

Noise and PSRR (power supply rejection ratio) are key selection criteria for noise-sensitive loads such as ADCs, PLLs, and RF circuits. Linear regulators generally offer much better high-frequency noise rejection than switching regulators, but LDO PSRR degrades at higher frequencies, typically above 10-100 kHz depending on the device. Checking the PSRR vs. frequency plot in the datasheet is essential when the LDO must reject switching noise from an upstream converter.

Stability requires careful attention to the output capacitor. Many LDOs specify a minimum output capacitance and, for older bipolar-pass-element designs, a minimum equivalent series resistance (ESR) to maintain the phase margin of the internal feedback loop. Low-ESR ceramic capacitors can destabilize such designs. Modern CMOS LDOs are typically stable with ceramic capacitors, but always verify output capacitor type, value, and ESR range against the datasheet before substituting components.

Frequently asked

What does 'low dropout' actually mean, and how is dropout voltage specified?
Dropout voltage is the minimum difference between V_IN and V_OUT at which the regulator still maintains its specified output voltage under a given load current. Below this headroom, the output voltage collapses and tracks the input. Dropout voltage is typically specified at maximum rated load current and varies widely by device: older NPN-pass LDOs can have dropouts of 1-2 V, while modern PMOS designs achieve 100-300 mV or less at full load. Always check the dropout spec at your actual load current, since it often scales down at lighter loads.
How do I choose between an LDO and a switching regulator?
Use an LDO when the input-output differential is small (keeping efficiency acceptable), load current is low to moderate, output noise must be minimal, board space is tight, or design simplicity matters. Use a switching regulator when efficiency is critical, input voltage is significantly higher than the output, or you need to step up voltage. A hybrid approach, using a switcher to get close to the target voltage followed by an LDO for noise filtering, is common in mixed-signal and RF designs.
Why does my LDO oscillate or show instability with ceramic capacitors?
Some LDOs, particularly older designs with a bipolar (PNP or NPN) pass transistor, rely on a minimum amount of output capacitor ESR to add a zero in the loop response and maintain phase margin. Low-ESR ceramic capacitors remove this zero and can cause oscillation or poor transient response. The datasheet will specify an acceptable ESR range. Modern CMOS LDOs are generally designed to be stable with ceramic capacitors, but always verify the recommended capacitor type and value.
How do I calculate LDO power dissipation and decide if a heatsink or package upgrade is needed?
Power dissipated in the LDO is P = (V_IN - V_OUT) x I_LOAD, plus a small quiescent current term. Compare this to the package thermal resistance (theta_JA or theta_JC from the datasheet) and maximum junction temperature: T_J = T_ambient + (P x theta_JA). If T_J approaches the device's maximum (commonly 125 C), you need a larger package, a PCB copper pour for heat spreading, an external heatsink, or a different power topology. TO-252 and TO-263 packages can handle significantly more dissipation than small SOT packages with adequate copper on the PCB, but the actual limit depends on board layout, ambient temperature, and airflow; always verify against the datasheet thermal resistance and your specific conditions.
What is quiescent current, and why does it matter in battery-powered designs?
Quiescent current (I_Q) is the current the LDO itself consumes to operate its internal circuitry, independent of the load. In sleep or idle modes where the load draws only microamps, a high-I_Q LDO (hundreds of microamps) can dominate total system current and significantly shorten battery life. Ultra-low-quiescent LDOs such as the TPS7A02 or MCP1700 (1.6 uA typical) are specifically designed for battery-powered embedded systems where the MCU spends most of its time in deep sleep; always check the datasheet for the confirmed I_Q figure at your operating conditions.

Differentiators vs similar concepts

LDOs are often contrasted with standard linear regulators (such as the classic 7805 series) and switching regulators. A standard linear regulator like the 78xx is generally not low-dropout and typically needs around a couple of volts of headroom to regulate, though the exact requirement varies by specific part, load current, and temperature, making it unsuitable for low-headroom supplies. Switching regulators (buck, boost, buck-boost) convert voltage with much higher efficiency but introduce switching noise and require more external components (inductor, diodes, larger capacitors). LDOs trade efficiency for simplicity and low noise, making them complementary to, rather than a replacement for, switching regulators in many designs.