Alright so 27W with heavy peripheral draw then? But 12 W still means it'll be drawing 2.4 amps instead of 1.6 when a random process decides to 100% it. I guess we can always underclock it.
The real unanswered question is, does it finally have a damn sleep mode so it can save power when idle.
A smartphone has two entirely separate computers in it, the one that runs Android or iOS, and the baseband controller. The latter is built to be very power-efficient while waiting for a radio signal. It will wake up the dormant application OS computer when a push notification comes in.
The same likely can be built on top of an RPi, using, say, wake-on-LAN signaling, or some GPIO as an interrupt source. You'll have to suspend your OS while idle for a prolonged time though.
# Disable Power LED after boot
dtparam=pwr_led_activelow=off
# Disable SD card activity led
dtparam=act_led_trigger=none
dtparam=act_led_activelow=off
# Disable the ethernet LEDs - these are Pi4 specific values.
# Look in the docs for the values for other Pi boards.
dtparam=eth_led0=4
dtparam=eth_led1=4
> The real unanswered question is, does it finally have a damn sleep mode so it can save power when idle.
I dream of DIY'ing a laptop, and RPi looks like a great platform for prototyping that... until you realize there's just no sensible way to put it to sleep. Hibernate + aggressive boot time optimization?
You know it's funny, my current laptop has a weird firmware bug (certified Asus moment) where it refuses to go into sleep mode. If sleep is triggered by any OS it will straight up just shut down completely. I've lost some work the first few times I used it out of habit.
Eventually though it didn't turn out to be much of an issue, SSDs boot real fast these days anyway and I can just do a full power cycle.
I read that the "PC style" power button allows both soft and hard shutdown, so I suppose suspend and hibernate come into the picture as well. It's mostly a matter of OS support, the firmware seems to be there.
The real unanswered question is, does it finally have a damn sleep mode so it can save power when idle.