We are using imx6q & running on Android 7.1.2
GPIO 4 is configured as wake up gpio. See the below code
gpio-keys {
compatible = "gpio-keys";
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_gpio_keys>;wakeup {
label = "Wake-Up";
gpios = <&gpio1 4 GPIO_ACTIVE_LOW>;
linux,code = <KEY_WAKEUP>;
debounce-interval = <10>;
gpio-key,wakeup;
};
};
I do
echo mem > /sys/power/state
& system goes in sleep.
For wake up how shall i proceed ?
What should be the direction of this GPIO ? In or Out ?
This Gpio doesn't list under /sys/kernel/debug/gpio. What could be the reason ?
Hello,
Can you please try using the below command:
svc power stayon true
Hope this can help you.
Best Regards,
Diego.
I tried to use
svc power stayon false
&
svc power stayon true
commands to sleep and wakup the system restrictively. But sometimes it fails to wakup the system. So i was trying an alternative approach echo mem > /sys/power/state with this i'm able to sleep the system but wakeup is creating some problem. i.e how to configure GPIO 4 ?
How can i make this pin high to low or Low to high using software ?
Can i change this value when configured as input ?
Another approach:
Also i if i configure RTC after echo mem > /sys/power/state this command it doesn't wake up the system. But if i configure RTC before this command it wakes up. Any workaround here ?
Hello,
I found this information that could be useful to your case:
Hope it can help you.
Best Regards,
Diego.