[Tutorial] Fix Power Crashes on LattePanda Sigma (Proxmox VE + USB-C PD)

userHead LattePanda 2026-03-16 11:28:55 15 Views0 Replies

Contributed by: Alan Kristensen
Applies to: LattePanda Sigma (i5-1340P) | Proxmox VE 9.1.1 | USB-C PD Power
โš ๏ธ Official Note: For installation & high-load tasks, LattePanda recommends using the included 19V 90W DC adapter for best stability.

 

๐Ÿ” Issue

System resets during Proxmox VE installation (e.g., unpacking pve-qemu-kvm_9.2.x.deb) only when powered via USB-C PD adapter. Blue power LED blinks twice before reboot.

 

๐ŸŽฏ Root Cause

USB-C PD adapters may have slower transient response than DC barrel jack. During CPU power spikes (PL2 turbo), voltage droop can trigger hardware protection. Outdated Intel microcode may worsen scheduling.
 

โœ… Solution 1: Limit CPU Power in BIOS (Quick Fix for Installation)

1. Enter BIOS (Del/F7 at boot)
2. Advanced โ†’ SpeedStep Configuration โ†’ Turbo Mode: Disabled
3. Advanced โ†’ TDP Configuration โ†’ Nominal Profile:

    * Power Limit 1: 45000 โ†’ 15000
    * Power Limit 2: 64000 โ†’ 20000
    * Tau/Time Window: 28
 

4. F10 Save & Exit


โ†’ System will run slower but stable. Restore defaults later if needed.
 

โœ… Solution 2: Install Intel Microcode (Recommended Long-Term)

# Enable non-free firmware repo
sudo sed -i 's/ main contrib$/ main contrib non-free-firmware/' /etc/apt/sources.list

# Update & install microcode
sudo apt update && sudo apt install intel-microcode

# Reboot
sudo reboot

 

โ†’ After reboot, verify with: dmesg | grep -i microcode
โ†’ You may then gradually restore BIOS power limits if stability allows.

 

๐Ÿ”„ Verification Test

# Test decompression stability
dpkg-deb -x pve-qemu-kvm_9.2.0-7_amd64.deb /tmp/test

 

If no reset occurs, the fix is working.

 

โ„น๏ธ Notes

1. These steps are community-validated. Use at your own discretion.  

2.  For production/high-load: prefer DC barrel jack power.  

3. Keep BIOS and microcode updated for best compatibility.  

 

 

๐Ÿ™ Thanks to Alan Kristensen for the detailed report and solution!