summaryrefslogtreecommitdiff
path: root/firmware/target/arm/gigabeat/meg-fx/power-meg-fx.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/gigabeat/meg-fx/power-meg-fx.c')
-rw-r--r--firmware/target/arm/gigabeat/meg-fx/power-meg-fx.c75
1 files changed, 75 insertions, 0 deletions
diff --git a/firmware/target/arm/gigabeat/meg-fx/power-meg-fx.c b/firmware/target/arm/gigabeat/meg-fx/power-meg-fx.c
new file mode 100644
index 0000000000..688b44eaa6
--- /dev/null
+++ b/firmware/target/arm/gigabeat/meg-fx/power-meg-fx.c
@@ -0,0 +1,75 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2006 by Linus Nielsen Feltzing
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19#include "config.h"
20#include "cpu.h"
21#include <stdbool.h>
22#include "kernel.h"
23#include "system.h"
24#include "power.h"
25#include "pcf50606.h"
26
27#ifndef SIMULATOR
28
29void power_init(void)
30{
31 /* Charger detect */
32}
33
34bool charger_inserted(void)
35{
36 return !(GPFDAT & (1 << 4));
37}
38
39void ide_power_enable(bool on)
40{
41 (void)on;
42}
43
44bool ide_powered(void)
45{
46 return true;
47}
48
49void power_off(void)
50{
51}
52
53#else /* SIMULATOR */
54
55bool charger_inserted(void)
56{
57 return false;
58}
59
60void charger_enable(bool on)
61{
62 (void)on;
63}
64
65void power_off(void)
66{
67}
68
69void ide_power_enable(bool on)
70{
71 (void)on;
72}
73
74#endif /* SIMULATOR */
75