Battery power issues Rock 3a (current vs vendor) kernel

Testing single-board computer Rock 3a (2GB) on Armbian (vendor).
I chose vendor (kernel 6.1) because I’m not satisfied with the fact that current (kernel 6.6+) doesn’t support npu (planning to work with HA+Frigate), and power management features (USB wake-up or flexible sleep system).
Built Bookworm vendor (kernel 6.1.75), what doesn’t work by default:

  1. USB wake-up doesn’t work (mouse/keyboard/even Bluetooth dongle) - fixed in dts below
  2. Wake-up timer doesn’t work (e.g., at specified time) - fixed in dts below
  3. Buggy Ethernet (sometimes connects at 100Mbps instead of 1000Mbps, sometimes reconnects) - fixed timings in dts below
    What critically works by default is SD-card speed on sdr104 protocol (in my case slightly above 60MB read speed), while on current kernel this protocol didn’t work and memory card speed was 25MB (like class 10)
    For me, current (kernel 6.6+) is raw and the above doesn’t work, and there’s no possibility to enable all this since there are no drivers and modules.

Tested WoL via LAN - buggy, I thought this function doesn’t work at all, spent lots of time, but discovered a bug - to enable this function on Ethernet you need to enable it first, then disable it, and enable again:

sudo ethtool -s end1 wol g
sudo ethtool -s end1 wol d
sudo ethtool -s end1 wol g

(g = enable Magic Packet, d = disable, u = enable Unicast Any Packet, can be combined gu or separately)

Also noticed that there is less consumption if the SBC goes to sleep (and wakes) up at least once, the following sleep at same booted system will be with less consumption if we sleep the first time.

fixes-vendor-rock-3a.dts
/dts-v1/;
/plugin/;

/ {
        fragment@0 {
                target = <&i2c5>;

                __overlay__ {
                        status = "okay";
                        pinctrl-0 = <&i2c5m0_xfer>;

                        hym8563: hym8563@51 {
                                compatible = "haoyu,hym8563";
                                reg = <0x51>;
                                interrupt-parent = <&gpio0>;
                                interrupts = <27 8>; //RK_PD3 IRQ_TYPE_LEVEL_LOW
                                #clock-cells = <0>;
                                clock-frequency = <32768>;
                                clock-output-names = "hym8563";
                                pinctrl-names = "default";
                                pinctrl-0 = <&hym8563_int>;
                                wakeup-source;
                        };
                };
        };

        fragment@1 {
                target = <&pinctrl>;

                __overlay__ {
                        hym8563 {
                                hym8563_int: hym8563-int {
                                        rockchip,pins = <0 27 0 &pcfg_pull_up>; //GPIO0 RK_PD3 RK_FUNC_GPIO &pcfg_pull_up
                                };
                        };
                };
        };

        fragment@2 {
                target-path = "/";

                __overlay__ {
                        rockchip_suspend: rockchip-suspend {
                                compatible = "rockchip,pm-rk3568";
                                status = "okay";
                                rockchip,sleep-debug-en = <1>;
                                rockchip,sleep-mode-config = <
                                (0
                                | (1 << 2)  // RKPM_SLP_CENTER_OFF
                                | (1 << 6)  // RKPM_SLP_HW_PLLS_OFF
                                | (1 << 7)  // RKPM_SLP_PMUALIVE_32K
                                | (1 << 10)  // RKPM_SLP_32K_PVTM
                                // | (1 << 5)  // RKPM_SLP_PMIC_LP (less power compsumtion but no USB and no WoL, only GPIO/RTC wakeup)
                                )
                                >;
                                rockchip,wakeup-config = <
                                (0
                                | (1 << 4)  // RKPM_GPIO_WKUP_EN
                                | (1 << 9)  // RKPM_USB_WKUP_EN
                                | (1 << 0)  //RKPM_CPU0_WKUP_EN
                                )
                                >;
                        };
                };
        };

        fragment@3 {
                target = <&gmac1>;

                __overlay__ {
                        /* delay time for phy reset cannot be too short, which may cause phy reset fail */
                        snps,reset-delays-us = <0 50000 100000>;

                        tx_delay = <0x30>;
                        rx_delay = <0x20>;
                };
        };
};

To apply this overlay, you need to copy it somewhere on the single-board computer and execute the command:

cd <path to fixes-vendor-rock-3a.dts>
sudo armbian-add-overlay fixes-vendor-rock-3a.dts

Reboot.
(if it doesn’t boot at all or something doesn’t work, you can always delete these changes from the /boot/overlay-user/ folder)

RTC Wake-up timer testing:

sudo sh -c "echo 0 > /sys/class/rtc/rtc0/wakealarm"
sudo sh -c "echo  `date '+%s' -d '+ 1 minutes'`  > /sys/class/rtc/rtc0/wakealarm"
sudo systemctl suspend

(here we set wake-up after 1 minute from current time, you can choose seconds/minutes/hours and others, maybe even days - haven’t tested)

Power Consumption:
Testing was performed on Imax B6 Evo / OWON HDS242S.

Note that this doesn’t include power consumption of m.2 SSD, SD-card, eMMC (they should be turned off in sleep mode), but USB devices weren’t used, tested bare single-board computer, each module will have its own consumption, and especially USB-connected devices, add your values to sleep mode consumption.

Wake-up by GPIO, RTC only:

In the most power-saving mode (Enabled RKPM_SLP_PMIC_LP, other options in dts untouched. Also we sleeping one time already.) I got:

Command to sleep or power-off Power supply Power Current
sudo systemctl suspend 12V 0.62W 0,052A
sudo shutdown -h now 12V 0.60W 0,050A

(note that in mode with enabled RKPM_SLP_PMIC_LP only GPIO or RTC wake-up will work, even if RKPM_USB_WKUP_EN and/or RKPM_CPU0_WKUP_EN are enabled)


Wake up by GPIO, RTC, USB, WoL:

As I wrote before, there is a buggy Ethernet (it is somehow not initialized correctly or something), before objective measurements should be done:
sudo ethtool -s end1 wol g && sudo ethtool -s end1 wol d

(Turn-on/Turn-off WoL, further it affects the final consumption, if you do not turn it off unnecessarily - it takes 35mA more in sleep mode.)
In mode with (Disabled RKPM_SLP_PMIC_LP, other options in dts untouched. Also we sleeping one time already.) I got:

Command to sleep or power-off Power supply Power Current
sudo ethtool -s end1 wol d && sudo systemctl suspend 12V 0.81W 0,068A
sudo ethtool -s end1 wol g && sudo systemctl suspend 12V 0.96W 0,080A
sudo shutdown -h now 12V 0.60W 0,050A

(note that in mode with disabled RKPM_SLP_PMIC_LP wake-up will work via GPIO, RTC, USB (if RKPM_USB_WKUP_EN option is enabled) and WoL (if RKPM_CPU0_WKUP_EN option is enabled). Different combinations of enabling or disabling RKPM_USB_WKUP_EN/RKPM_CPU0_WKUP_EN don’t affect power consumption in sleep mode)

When RTL8852BE arrives, I’ll test if it’s possible to wake up via PCIE - WiFi WoL…

Original Link

thanks for detailed post,
for each of my 3A I already added extra 2.5G A+E ethernet module, but did not tested it yet for all of those.
what cpu governor are You using? last time i checked armbian it has this particular thing broken, resulting in 400MHz fixed CPU clock speed, is this still an issue?
Also try to measure idle/load power consumption, some kernels don’t use several power optimizations, so they idle at much higher power consumption.

Yes the issue is this, why when I press the power button for more than 5 seconds - the Rock 3a turns off forced and consumes only 15mA, while if you do “sudo shutdown -h now” or “sudo systemctl poweroff” - the current consumption as in the table above about 50mA.Is there any way to turn off softwar so that it was 15mA?

I asked about wrong and fixed at minimum cpu clockfreq :slight_smile:

The RTL8852CE has arrived, now there’s an opportunity to test the WWoL function on the Vendor kernel.

Image

(I ordered two wifi network adapters from China, one RTL8852CE for my desktop, the other RTL8852BE for single board computer, but keep in mind, in my case RTL8852BE does not support WWoL, further testing goes only on RTL8852CE).

Claude-3-5-sonnet wrote

RTL8852BE and RTL8852CE are quite similar WiFi 6 adapters from Realtek. Main differences:

RTL8852BE:

  • PCIe interface
  • WiFi 6 (802.11ax)
  • Bluetooth 5.2
  • 2x2 MIMO

RTL8852CE:

  • PCIe interface
  • WiFi 6 (802.11ax)
  • Bluetooth 5.2
  • 2x2 MIMO
  • Officially supports WWoL

Regarding WWoL (Wake on Wireless LAN):

  1. RTL8852CE officially supports this function according to Realtek documentation.
  2. For RTL8852BE, the situation is less clear:
  • No explicit mention of WWoL support in official documentation
  • Analysis of public Linux driver source code (rtw89) shows no clear indication of WWoL support for RTL8852BE
  • There are contradictory community reports about this function’s operability

Based on available information, we can conclude that RTL8852BE either doesn’t officially support WWoL, or this support is limited. For accurate information, it’s recommended to contact the manufacturer directly.

The driver source code can be found here:
https://github.com/lwfinger/rtw89

However, it’s worth noting that even if this function is theoretically available at the hardware level, its practical implementation may depend on:

  1. BIOS/UEFI support
  2. Driver support
  3. Operating system settings

How I installed RTL8852BE/CE support on my system.

sudo apt install git -y
git clone git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git --depth 1
cd linux-firmware/
sudo cp -va rtw89/ /lib/firmware/
sudo cp -va rtl_bt/ /lib/firmware/
sudo update-initramfs -u
sudo reboot

As it turned out, for proper wake-up of the single-board computer via PCI-E, it’s necessary to correctly utilize the PCIE20_WAKEn_M1 pin.

Image

By default, this pin is incorrectly used, and therefore the WWoL function doesn’t work as intended.

I encountered a similar problem with incomplete implementation of the wifi-host-wake pin earlier and described it in this article: https://forum.armbian.com/topic/33452-instruction-on-how-to-use-wireless-wol-wake-on-lan-using-rtl8189fs-rtl8189ftv-module/
Here are some minor fixes for the correct operation of the WWoL function for the PCI-E adapter for Rock 3A:

rockchip-rk3568-rock-3a-rtl8852ce-wwol-fixes.dts
/dts-v1/;
/plugin/;

/ {
        fragment@0 {
                target-path = "/";

                __overlay__ {
                        rockchip_suspend: rockchip-suspend {
                                compatible = "rockchip,pm-rk3568";
                                status = "okay";
                                rockchip,sleep-debug-en = <1>;
                                rockchip,sleep-mode-config = <
                                (0
                                | (1 << 2)  // RKPM_SLP_CENTER_OFF
                                | (1 << 6)  // RKPM_SLP_HW_PLLS_OFF
                                | (1 << 7)  // RKPM_SLP_PMUALIVE_32K
                                | (1 << 10)  // RKPM_SLP_32K_PVTM
                                // | (1 << 5)  // RKPM_SLP_PMIC_LP (less power compsumtion but no USB and no WoL, only GPIO/RTC wakeup)
                                )
                                >;
                                rockchip,wakeup-config = <
                                (0
                                | (1 << 4)  // RKPM_GPIO_WKUP_EN
                                | (1 << 9)  // RKPM_USB_WKUP_EN
                                | (1 << 0)  // RKPM_CPU0_WKUP_EN
                                )
                                >;
                        };

                        gpio-keys {
                                compatible = "gpio-keys";
                                autorepeat;
                                pinctrl-names = "default";
                                pinctrl-0 = <&wifi_wake>;

                                wl_host_wake {
                                        linux,code = <143>; /* KEY_WAKEUP, see include/uapi/linux/input-event-codes.h */
                                        label = "wifi-host-wakeup";
                                        interrupt-parent = <&gpio2>;
                                        interrupts = <25 2>; // RK_PD1 IRQ_TYPE_EDGE_FALLING
                                        // gpios = <&gpio2 25 1>; // GPIO2 RK_PD1 GPIO_ACTIVE_LOW
                                        wakeup-source;
                                };
                        };

                };
        };

        fragment@1 {
                target = <&pinctrl>;

                __overlay__ {
                        pcie20_wake {
                                wifi_wake: wifi-wake {
                                        rockchip,pins = <2 25 0 &pcfg_pull_up>; //GPIO2 2 RK_PD1 4 &pcfg_pull_none>
                                };
                        };
                };
        };
};

To apply this overlay, you need to copy it somewhere on the single-board computer and execute the command:

cd <path to fixes-vendor-rock-3a.dts>
sudo armbian-add-overlay fixes-vendor-rock-3a.dts

Reboot.
(if it doesn’t boot at all or something doesn’t work, you can always delete these changes from the /boot/overlay-user/ folder)

I’d also like to note that since there’s an issue with the non-functioning PCIE20_WAKEn_M1 pin, the same WoL wake-up problem will be observed, for example, on a regular PCI-E-LAN adapter, as well as on the PCIE30 NVMe socket (if you install something other than an SSD there, which also requires wakeup with the PCIE30X2_LANE0_WAKEn_3V3_L pin).

How to use WWoL:

1.First, we need to find out the MAC address of our PCI-E WiFi adapter, for example, using the command:

sudo iw dev

Summary
deoptim@rock-3a:~$ sudo iw dev
phy#0
        Interface wlp1s0
                ifindex 3
                wdev 0x1
                addr 38:b8:xx:xx:xx:xx
                ssid Apple Network xxxxxx
                type managed
                channel 11 (2462 MHz), width: 20 MHz (no HT), center1: 2462 MHz
                txpower 20.00 dBm
                multicast TXQ:
                        qsz-byt qsz-pkt flows   drops   marks   overlmt hashcol tx-bytes        tx-packets
                        0       0       0       0       0       0       0       0               0
deoptim@rock-3a:~$ sudo iw dev | grep addr
                addr 38:b8:xx:xx:xx:xx
deoptim@rock-3a:~$

2.After that, you can try to activate the WWoL function with the command:
sudo iw phy0 wowlan enable magic-packet
(In addition to magic-packet, RTL8852CE also supports other wake-up options such as disconnect and pattern match, which can be combined together)

3.And then try to put the system to sleep:
sudo systemctl suspend

Try waking up the single board computer with some WoL utility (Windows/Linux/Android) over a local network (within your home network).