op_power: minor fixes
[openpandora.oe.git] / recipes / pandora-system / pandora-scripts / op_power.sh
1 #!/bin/bash
2
3 . /usr/pandora/scripts/op_paths.sh
4
5 # XXX: better use lockfile (or something), but it's not in current firmware
6 test -e /tmp/op_power.lock && exit 2
7 touch /tmp/op_power.lock
8
9 debug(){
10         return 1 # 0 when debugging, 1 when not
11 }
12
13 test -e $(grep /etc/passwd -e $(ps u -C xfce4-session | tail -n1 | awk '{print $1}')| cut -f 6 -d ":")/.lidconfig && lidconfig=$(cat $(grep /etc/passwd -e $(ps u -C xfce4-session | tail -n1 | awk '{print $1}')| cut -f 6 -d ":")/.lidconfig) # read lid conf. file if it exists
14
15 #powerbuttonconfig=$(cat $(grep /etc/passwd -e $(ps u -C xfce4-session | tail -n1 | awk '{print $1}')| cut -f 6 -d ":")/.powerbuttonconfig)
16
17 if [ -e /tmp/powerstate ]; then 
18         powerstate="$(cat /tmp/powerstate)"
19 else
20         powerstate="on"
21 fi
22
23 debug && echo "powerstate=$powerstate"
24
25 suspend_net() {
26         hcistate=$(hciconfig hci0 | grep DOWN)
27         if [ $hcistate ]; then
28                 echo "down" > /tmp/hcistate
29         else
30                 echo "up" > /tmp/hcistate
31                 hciconfig hci0 down
32         fi
33         wlstate=$(lsmod | grep -m1 wl1251)
34         if [ -z "$wlstate" ]; then
35                 echo "down" > /tmp/wlstate
36         else
37                 echo "up" > /tmp/wlstate
38                 ifconfig wlan0 down
39                 rmmod board_omap3pandora_wifi 2> /dev/null
40                 rmmod wl1251_sdio wl1251
41         fi
42 }
43
44 resume_net() {
45         hcistate=$(cat /tmp/hcistate)
46         if [ "$hcistate" = "up" ]; then
47                 hciconfig hci0 up pscan
48         fi
49         wlstate=$(cat /tmp/wlstate)
50         if [ "$wlstate" = "up" ]; then
51                 /etc/init.d/wl1251-init start
52         fi
53         rm -f /tmp/hcistate /tmp/wlstate
54 }
55
56 display_on() {
57         echo 0 > /sys/class/graphics/fb0/blank
58
59         # only bother restoring brightness if it's 0
60         # (old kernel or user messed it up somehow)
61         brightness=$(cat $SYSFS_BACKLIGHT_BRIGHTNESS)
62         if [ $brightness -gt 0 ]; then
63                 return 0
64         fi
65
66         maxbright=$(cat $SYSFS_BACKLIGHT/max_brightness)
67         oldbright=0
68         if [ -f /tmp/oldbright ]; then
69                 oldbright=$(cat /tmp/oldbright)
70         fi
71         if [ $oldbright -eq 0 ]; then
72                 oldbright=$(cat /etc/pandora/conf/brightness.state)
73         fi
74         if [ $oldbright -ge 3 ] && [ $oldbright -le $maxbright ]; then 
75                 /usr/pandora/scripts/op_bright.sh $oldbright 
76         else
77                 /usr/pandora/scripts/op_bright.sh $maxbright
78         fi
79 }
80
81 display_off() {
82         brightness=$(cat $SYSFS_BACKLIGHT_BRIGHTNESS)
83         if [ $brightness -gt 0 ]; then
84                 echo $brightness > /tmp/oldbright
85         fi
86         kernel_major=`uname -r | cut -c 1`
87         if [ "$kernel_major" = "2" ]; then
88                 echo 0 > $SYSFS_BACKLIGHT_BRIGHTNESS
89         fi
90
91         echo 1 > /sys/class/graphics/fb0/blank
92 }
93
94 lowPowerOn(){ #switch from normal to lowpower mode
95         display_off
96
97         pidlist=$(pstree -lpA | grep pnd_run.sh | sed -ne 's/.*(\([0-9]\+\))/\1/p')
98         for PID in $pidlist
99         do
100                 kill -STOP $PID
101         done
102
103         suspend_net
104
105         cat /proc/pandora/cpu_mhz_max > /tmp/oldspeed
106         /usr/pandora/scripts/op_cpuspeed.sh 125
107 }
108
109 lowPowerOff(){ # switch from lowpower to normal mode
110         oldspeed=$(cat /tmp/oldspeed)
111         /usr/pandora/scripts/op_cpuspeed.sh $oldspeed
112
113         display_on
114         resume_net
115
116         pidlist=$(pstree -lpA | grep pnd_run.sh | sed -ne 's/.*(\([0-9]\+\))/\1/p')
117         for PID in $pidlist
118         do
119                 kill -CONT $PID
120         done
121         echo 255 > /sys/class/leds/pandora\:\:power/brightness #power LED bright
122 }
123
124 show_message() {
125         # TODO: check if desktop is visible; maybe use layer3?
126         xfceuser=$(ps u -C xfce4-session | tail -n1 | awk '{print $1}')
127         cmd="DISPLAY=:0.0 zenity --info --text \"$1\" --timeout 10"
128         su -c "$cmd" $xfceuser
129 }
130
131 suspend_real() {
132         delay=0
133
134         if ! [ -e /sys/power/state ]; then
135                 # no kernel suspend support
136                 return 1
137         fi
138
139         current_now="$(cat /sys/class/power_supply/bq27500-0/current_now)"
140  
141         if [ $current_now -gt 0 ]; then 
142                 return 1 
143                 #don't suspend while unit is charging
144         fi
145
146         # can't suspend while SGX is in use due to bugs
147         # (prevents low power states and potential lockup)
148         if lsof -t /dev/pvrsrvkm > /dev/null; then
149                 return 1
150         fi
151
152         if ! grep -q 'mmc_core.removable=0' /proc/cmdline; then
153                 # must unmount cards because they will be "ejected" on suspend
154                 # (some filesystems may even deadlock if we don't do this due to bugs)
155                 mounts="$(grep "/dev/mmcblk" /proc/mounts | awk '{print $1}' | xargs echo)"
156                 for mnt in $mounts; do
157                         if ! umount $mnt; then
158                                 show_message "Could not unmount $mnt, using partial suspend only"
159                                 return 1
160                         fi
161                 done
162                 swaps="$(grep "/dev/mmcblk" /proc/swaps | awk '{print $1}' | xargs echo)"
163                 for swp in $swaps; do
164                         if ! swapoff $swp; then
165                                 show_message "Could not unmount $swp, using partial suspend only"
166                                 return 1
167                         fi
168                 done
169         else
170                 if [ ! -e /etc/pandora/suspend-warned ]; then
171                         show_message "Pandora will now suspend.\n\n\
172 Please do not remove SD cards while pandora is suspended, doing so will corrupt them."
173                         touch /etc/pandora/suspend-warned
174                 fi
175         fi
176
177         # FIXME: fix the kernel and get rid of this
178         suspend_net
179
180         # get rid of modules that prevent suspend due to bugs
181         modules="$(lsmod | awk '{print $1}' | xargs echo)"
182         blacklist="g_zero g_audio g_ether g_serial g_midi gadgetfs g_file_storage
183                 g_mass_storage g_printer g_cdc g_multi g_hid g_dbgp g_nokia g_webcam g_ncm g_acm_ms
184                 ehci_hcd bridgedriver"
185         restore_list=""
186         for mod in $modules; do
187                 if echo $blacklist | grep -q "\<$mod\>"; then
188                         restore_list="$restore_list $mod"
189                         rmmod $mod
190                         delay=1 # enough?
191                 fi
192         done
193
194         sleep $delay
195         sync
196         echo mem > /sys/power/state
197
198         # if we are here, either we already resumed or the suspend failed
199         if [ -n "$restore_list" ]; then
200                 modprobe $restore_list
201         fi
202
203         display_on
204         resume_net
205         echo 255 > /sys/class/leds/pandora\:\:power/brightness
206
207         # wait here a bit to prevent this script from running again (keep op_power.lock)
208         # in case user did resume using the power switch.
209         sleep 2
210
211         return 0
212 }
213
214 suspend_() {
215         # dim power LED
216         echo 16 > /sys/class/leds/pandora\:\:power/brightness
217
218         if suspend_real; then
219                 # resumed already
220                 powerstate="on"
221         else
222                 lowPowerOn
223         fi
224 }
225
226 resume() {
227         if [ "$powerstate" = "on" ]; then
228                 # nothing to do
229                 echo "resume called unexpectedly" >&2
230         else
231                 lowPowerOff
232         fi
233 }
234
235 shutdown(){ # warns the user and shuts the pandora down
236         xfceuser=$(ps u -C xfce4-session | tail -n1 | awk '{print $1}')
237         time=5
238         countdown () {
239                 for i in $(seq $time); do
240                         precentage=$(echo $i $time | awk '{ printf("%f\n", $1/$2*100) }')
241                         echo $precentage
242                         echo "# Shutdown in $(($time-$i))"
243                         sleep 1
244                 done
245         }
246         countdown | su -c 'DISPLAY=:0.0 zenity --progress --auto-close --text "Shutdown in X" --title "Shutdown"' $xfceuser
247         if [ $? -eq 0 ]; then
248         /sbin/shutdown -h now
249         else
250         su -c 'DISPLAY=:0.0 zenity --error --text "Shutdown aborted!"' $xfceuser
251         fi
252 }
253
254 if [[ "$2" == "" ]]; then
255         if [[ "$1" -le 2 ]]; then # power button was pressed 1-2sec, "suspend"
256                 if [[ "$powerstate" == "buttonlowpower" ]]; then
257                         (debug && echo "resume") || resume
258                         powerstate="on"
259                 elif [[ "$powerstate" == "on" ]]; then
260                         powerstate="buttonlowpower"
261                         (debug && echo "suspend") || suspend_
262                 elif [[ "$powerstate" == "liddisplayoff" ]]; then
263                         powerstate="buttonlowpower"
264                         (debug && echo "suspend") || suspend_
265                 fi
266         elif [[ "$1" -ge 3 ]]; then # power button was pressed 3 sec or longer, shutdown
267                 if [[ "$powerstate" == "on" ]]; then
268                         (debug && echo "shutdown") || shutdown
269                 fi
270         fi
271 elif [[ "$2" == "lid" ]]; then
272         if [[ "$1" == 0 ]]; then # lid was opened
273                 if [[ "$powerstate" == lid* ]]; then
274                         case "$lidconfig" in
275                                 "lowpower")
276                                         (debug && echo "resume") || resume
277                                         powerstate="on"
278                                 ;;
279                                 *)
280                                         (debug && echo "display_on") || display_on
281                                         powerstate="on"
282                                 ;;
283                         esac
284                 fi
285         elif [[ "$1" == 1 ]]; then # lid was closed
286                 if [[ "$powerstate" == "on" ]]; then
287                         case "$lidconfig" in
288                                 "shutdown")
289                                         (debug && echo "shutdown") || shutdown
290                                 ;;
291                                 "lowpower")
292                                         powerstate="lidlowpower"
293                                         (debug && echo "suspend") || suspend_
294                                 ;;
295                                 *)
296                                         (debug && echo "display_off") || display_off
297                                         powerstate="liddisplayoff"
298                                 ;;
299                         esac
300                 fi
301         fi
302  fi
303 debug && echo "powerstate=$powerstate"
304 echo "$powerstate" > /tmp/powerstate
305
306 rm -f /tmp/op_power.lock