Another patch from FS#10633 by Michael Sparmann (with a couple of minor cosmetic...
[kugel-rb.git] / firmware / target / arm / s5l8700 / ipodnano2g / power-nano2g.c
blobfbd5157fb0dc131a6dfacf6a2daa88847677715f
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright © 2009 Bertrik Sikken
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
21 #include <stdbool.h>
22 #include "config.h"
23 #include "inttypes.h"
24 #include "s5l8700.h"
25 #include "power.h"
26 #include "ftl-target.h"
27 #include <string.h>
28 #include "panic.h"
31 /* Power handling for S5L8700 based Meizu players
33 The M3 and M6 players appear to use the same pins for power, USB detection
34 and charging status.
37 void power_off(void)
39 if (ftl_sync() != 0) panicf("Failed to unmount flash!");
41 /* TODO: Really power-off */
42 panicf("Poweroff not implemented yet.");
43 while(1);
46 void power_init(void)
48 /* TODO */
51 #if CONFIG_CHARGING
52 unsigned int power_input_status(void)
54 /* TODO */
55 return POWER_INPUT_NONE;
58 bool charging_state(void)
60 /* TODO */
61 return false;
63 #endif /* CONFIG_CHARGING */