summaryrefslogtreecommitdiff
path: root/firmware/target/arm/ipod/power-ipod.c
diff options
context:
space:
mode:
authorTorne Wuff <torne@wolfpuppy.org.uk>2010-01-09 19:04:51 +0000
committerTorne Wuff <torne@wolfpuppy.org.uk>2010-01-09 19:04:51 +0000
commitd4bfc1523268213437c1506ebd3857521b530144 (patch)
tree4e7c8d7897095e992df1cbaa4e44caf3312765b7 /firmware/target/arm/ipod/power-ipod.c
parentf736159e5c0fe543aac10c5cd44ea1e0ede264ef (diff)
downloadrockbox-d4bfc1523268213437c1506ebd3857521b530144.tar.gz
rockbox-d4bfc1523268213437c1506ebd3857521b530144.zip
FS#10107: work around the issue on some ipods where after shutdown they do not power on.
Some ipods do not power on correctly after being shut down and require a hard reset before they work again. This workaround shuts the device down via the OF which prevents the problem from occurring. There is a cosmetic effect: the low battery symbol appears briefly on power of. Change applies to PP502x ipods: 4G/photo/video/mini1g/mini2g/nano1g Patch by Boris Gjenero (dreamlayers), manual changes by me. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24207 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/ipod/power-ipod.c')
-rw-r--r--firmware/target/arm/ipod/power-ipod.c21
1 files changed, 20 insertions, 1 deletions
diff --git a/firmware/target/arm/ipod/power-ipod.c b/firmware/target/arm/ipod/power-ipod.c
index 0b516466fe..46701c8d3f 100644
--- a/firmware/target/arm/ipod/power-ipod.c
+++ b/firmware/target/arm/ipod/power-ipod.c
@@ -28,6 +28,10 @@
28#include "pcf50605.h" 28#include "pcf50605.h"
29#include "usb.h" 29#include "usb.h"
30#include "lcd.h" 30#include "lcd.h"
31#include "string.h"
32#if CONFIG_CPU == PP5022 || CONFIG_CPU == PP5020
33#include "rtc.h"
34#endif
31 35
32void power_init(void) 36void power_init(void)
33{ 37{
@@ -152,9 +156,24 @@ void power_off(void)
152#endif 156#endif
153 157
154#ifndef BOOTLOADER 158#ifndef BOOTLOADER
155#ifdef IPOD_1G2G 159#if CONFIG_CPU == PP5022 || CONFIG_CPU == PP5020
160 /* When shut down by OF, wakeup via alarm is enabled. This resets the
161 alarm time so an unintended wakeup does not occur. */
162 if (!(pcf50605_wakeup_flags & 0x10))
163 rtc_enable_alarm(false);
164#endif
165#if defined(IPOD_1G2G)
156 /* we cannot turn off the 1st gen/ 2nd gen yet. Need to figure out sleep mode. */ 166 /* we cannot turn off the 1st gen/ 2nd gen yet. Need to figure out sleep mode. */
157 system_reboot(); 167 system_reboot();
168#elif CONFIG_CPU == PP5022
169 /* The OF in flash assumes boot failed because the battery is low.
170 If there is no charger connected, this leads to a shutdown.
171 */
172 memcpy((void *)(0x4001ff00+8), "booting!", 8);
173 system_reboot();
174#elif CONFIG_CPU == PP5020
175 memcpy((void *)(0x40017f00+8), "booting!", 8);
176 system_reboot();
158#else 177#else
159 /* We don't turn off the ipod, we put it in a deep sleep */ 178 /* We don't turn off the ipod, we put it in a deep sleep */
160 pcf50605_standby_mode(); 179 pcf50605_standby_mode();