← Back to news

USB Power Delivery: Plugging into the Benefits

aptiv.com|43 points|90 comments|by mooreds|Jun 11, 2026

USB Power Delivery: Plugging into the Benefits

In the closing years of the 20th century, connecting peripherals—such as storage drives, headphones, and keyboards—to a computer was a fragmented experience involving a chaotic array of disparate cables and connectors.

To resolve this, the industry sought a consolidated solution. In 1996, the Universal Serial Bus (USB) standard was introduced, quickly becoming the global benchmark for electronic connectivity. While the physical convenience of a small, interoperable plug was the most obvious win, the true impact lay in its role as a standardized power delivery system. As smartphones and other rechargeable gadgets proliferated with larger batteries, the need for efficient power became critical.

The Evolution of Power

Every new generation of USB has pushed the boundaries of charging speed. We are currently seeing a transition toward USB Power Delivery (PD) and USB Extended Power Range (EPR), which promise more robust wired connections.

Power Capability Comparison

USB StandardPower OutputPrimary Characteristic
USB 1.1 (USB-A)0.5WBasic "trickle" charge
USB 2.02.5WSlight improvement; still slower than dedicated adapters
USB PD (2021)Up to 100WNegotiated power via USB-C
USB EPRUp to 240WSupports high-power peripherals (laptops, monitors)

The leap in USB PD was achieved by manipulating the fundamental power equation: P=V×IP = V \times I By increasing the voltage (VV) from 5V5\text{V} to 20V20\text{V} while maintaining a steady current (II), the system achieved a massive jump to 100W100\text{W}.

Advanced Power Delivery: PD and EPR

USB EPR expands upon the PD foundation to support high-drain hardware. It offers fixed voltage levels for 140W140\text{W}, 180W180\text{W}, and 240W240\text{W} outputs. Furthermore, an adjustable voltage mode allows devices to request specific intermediate levels ranging from 9V9\text{V} up to 48V48\text{V}.

Key Principle: The charging process is a sophisticated electronic negotiation. The device being charged requests a specific amount of power based on factors like ambient temperature, and the charger provides only up to that requested amount.

Example Scenario: Fast Charging

Consider a device rated for 40W40\text{W} wired charging. When paired with a certified USB-C PD charger:

  • Old Tech: Charging to 50% could take several hours.
  • New Tech: Charging to 50% takes approximately 20 minutes.

USB-C Connector Diagram

Intelligent Power Sharing

Companies like Aptiv are leveraging USB-C to implement "power sharing." This approach optimizes charging while reducing heat, battery current, cost, and physical footprint. Instead of requiring a separate AC adapter for every single device, a single charger intelligently distributes power across multiple ports.

By utilizing smart load shedding, manufacturers can avoid the cost of installing multiple 240W240\text{W} ports. They can reuse existing electronics in the Bill of Materials (BOM) while still providing a high-end user experience for passengers and drivers.

Technical Complexity and Governance

The transition from USB-A to USB-C is not just about shape, but internal architecture:

  • USB Type-A: 4 pins (Power, Ground, and 2 Data pins).
  • USB-C: 24 pinouts, offering vastly superior flexibility and feature sets.

The Regulatory Landscape

The development of these standards is managed by two primary entities:

  1. USB Promoter Group: The "rule-makers" who develop specifications and addenda.
  2. USB Implementers Forum (USB-IF): The "enforcers" who manage compliance, testing, and logo certification.

The path to certification is rigorous. For instance, the Battery Charging 1.2 Test Procedures were established in September 2025. For any device to be certified, it must pass a comprehensive checklist:

  • Voltage stability tests
  • Thermal regulation checks
  • Data integrity verification
  • Safety and security standard alignment
def negotiate_power(device_request, charger_max):
    # Simple representation of USB PD negotiation
    delivered_power = min(device_request, charger_max)
    return f"Delivering {delivered_power}W"

# Example: Device wants 40W, Charger can do 100W
print(negotiate_power(40, 100)) # Output: Delivering 40W

Future Outlook

While the standards were set in 2021, full-scale certification is an ongoing process. We expect a surge of certified products by 2029. These advancements will ripple across various sectors:

  • Automotive: Already seeing certified deployments.
  • Aerospace: Integration into airline cockpits.
  • Medical: Powering high-drain medical instrumentation.
  • Industrial: Supporting NFC/RFID sensors and defense hardware.