Lines Matching full:wakeup
106 2. How to enable USB as system wakeup source
108 Below is the example for how to enable USB as system wakeup source
111 2.1 Enable core's wakeup::
113 echo enabled > /sys/bus/platform/devices/ci_hdrc.0/power/wakeup
115 2.2 Enable glue layer's wakeup::
117 echo enabled > /sys/bus/platform/devices/2184000.usb/power/wakeup
119 2.3 Enable PHY's wakeup (optional)::
121 echo enabled > /sys/bus/platform/devices/20c9000.usbphy/power/wakeup
123 2.4 Enable roothub's wakeup::
125 echo enabled > /sys/bus/usb/devices/usb1/power/wakeup
127 2.5 Enable related device's wakeup::
129 echo enabled > /sys/bus/usb/devices/1-1/power/wakeup
131 If the system has only one usb port, and you want usb wakeup at this port, you
132 can use the below script to enable usb wakeup::
134 for i in $(find /sys -name wakeup | grep usb);do echo enabled > $i;done;