Skip to content

Suspend to RAM

Suspend to RAM

This state offers significant power savings as everything in the system is put into a low-power state, except for memory, which is placed into the self-refresh mode to retain its contents.

To suspend to RAM execute the following command:

# pm-suspend

Wake up

There are many possible ways to wake up from suspend.
A few examples:
- Pushing the ON/OFF button (when present on the board)

  • Pushing a button on the board which has the boolean property "wakeup-source" set in its device tree node (under gpio_keys), e.g.:
    gpio-keys {
        compatible = "gpio-keys";
        pinctrl-names = "default";
        pinctrl-0 = <&pinctrl_gpio_keys>;
        ...
        back {
            label = "Back";
            linux,code = <KEY_BACK>;
            gpios = <&pca6408_1 7 GPIO_ACTIVE_LOW>;
            wakeup-source;
        };
        ...
    };
  • Pressing the capacitive touch which has the "wakeup-source" property set in its device tree node, e.g.:
    ft5x06_ts: ft5x06_ts@38 {
        compatible = "edt,edt-ft5206";
        reg = <0x38>;
        pinctrl-names = "default";
        pinctrl-0 = <&pinctrl_captouch>;
        reset-gpios = <&pca6408_1 0 GPIO_ACTIVE_LOW>;
        interrupt-parent = <&gpio1>;
        interrupts = <14 IRQ_TYPE_EDGE_FALLING>;
        touchscreen-size-x = <800>;
        touchscreen-size-y = <480>;
        touchscreen-inverted-x;
        touchscreen-inverted-y;
        wakeup-source;
        status = "okay";
    };