Lines Matching refs:wakeup
77 2. How to enable USB as system wakeup source
79 Below is the example for how to enable USB as system wakeup source
82 2.1 Enable core's wakeup
83 echo enabled > /sys/bus/platform/devices/ci_hdrc.0/power/wakeup
84 2.2 Enable glue layer's wakeup
85 echo enabled > /sys/bus/platform/devices/2184000.usb/power/wakeup
86 2.3 Enable PHY's wakeup (optional)
87 echo enabled > /sys/bus/platform/devices/20c9000.usbphy/power/wakeup
88 2.4 Enable roothub's wakeup
89 echo enabled > /sys/bus/usb/devices/usb1/power/wakeup
90 2.5 Enable related device's wakeup
91 echo enabled > /sys/bus/usb/devices/1-1/power/wakeup
93 If the system has only one usb port, and you want usb wakeup at this port, you
94 can use below script to enable usb wakeup.
95 for i in $(find /sys -name wakeup | grep usb);do echo enabled > $i;done;