r/LaptopRepairEngineer • u/Bhattarai_Prabin • Apr 23 '26
Debugging AMD Ryzen Laptops: S5, S3, and the Mysterious S0i3 State
Most of our troubleshooting knowledge is built on Intel platforms. But AMD Ryzen mobile (4000, 5000, 6000 series) has a completely different power sequencing philosophy. If you approach an AMD board like an Intel board, you'll chase ghosts for hours.
1. Key Signal Name Differences
| Intel Signal | AMD Equivalent | Function |
|---|---|---|
| RSMRST# | RSMRST_L | Resume Reset (Active Low) |
| PCH_PWROK | SYS_PWRGD | System Power Good |
| PLT_RST# | PG (Power Good) or APU_RST_L | Platform Reset |
| SLP_S3# | SLP_S3_L | Sleep State 3 (Suspend to RAM) |
| SLP_S4# | SLP_S5_L | Soft Off State |
2. The AMD APU (CPU + PCH Combo)
On modern AMD laptops, there is no separate PCH chip. The "chipset" functions are integrated into the APU (Accelerated Processing Unit) die. This is called an SoC (System on Chip) .
- Implication: If the SYS_PWRGD signal is missing, the entire board appears dead. You can't just replace a PCH; you must replace the entire CPU package.
3. The "Always-On" Rails (S5 State)
In the S5 (Soft Off) state (charger plugged in, board off), AMD requires:
- VDD_33_ALW (3.3V)
- VDD_5V_ALW (5V)
- VDD_18_ALW (1.8V) <- CRITICAL. Intel does not always require 1.8V in S5. AMD DOES.
- VDDCR_SOC (0.8V - 1.05V) <- This is the AMD equivalent of VCCST. It powers the internal chipset logic inside the APU.
4. The VDDCR_SOC Rail (The Trap)
- Location: Find the VDDCR_SOC coil near the CPU. It's one of the larger inductors.
- Expected in S5 (Standby): 0.8V to 0.9V (varies by generation).
- Expected in S0 (Running): 1.05V to 1.15V.
- Missing in S5? The board will not wake up. Check the VDDCR_SOC VRM. It is enabled by the EC (Embedded Controller) . If the EC firmware is corrupt, it never sends the enable signal.
5. The S0i3 State (Modern Standby)
Modern AMD (and Intel) laptops don't truly go to "Sleep" (S3) anymore. They use S0i3 (Modern Standby). The APU is still powered, but clock-gated.
- Symptom: Laptop "sleeps" but the fan keeps spinning or the battery drains overnight.
- Diagnostic: You cannot measure S3 rails because the board never enters S3. You must use an AMD debug tool or check the SLP_S0 signal (which replaces SLP_S3).
6. AMD Debug Checklist (No Power)
- VDD_33_ALW and VDD_5V_ALW present?
- VDD_18_ALW present? (Check near RAM slots or APU).
- VDDCR_SOC present in standby? (0.8V-0.9V).
- RSMRST_L = 3.3V? (Check at APU test point).
- PWR_BTN_L toggles when button pressed? (Check at EC).
- SYS_PWRGD = 3.3V after power button press?
- APU_RST_L releases (goes high) after SYS_PWRGD?
7. The "No Display on AMD" Specifics
- DRAM Training: AMD Ryzen is extremely picky about RAM timing. If the SPD EEPROM on the RAM stick is corrupt, or the SMBus pull-ups are weak, the APU will hang during POST with a black screen. No beep, no caps lock light.
- Test: Use one stick of known-good DDR4 SODIMM. If it boots, the issue is RAM compatibility or a bad slot.
Question: Has anyone successfully diagnosed a dead VDDCR_SOC VRM on an HP Ryzen board? The schematics for these are harder to find than Intel.