summaryrefslogtreecommitdiff
path: root/firmware/target/arm
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm')
-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();