summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/target/coldfire/iaudio/x5/power-x5.c82
1 files changed, 82 insertions, 0 deletions
diff --git a/firmware/target/coldfire/iaudio/x5/power-x5.c b/firmware/target/coldfire/iaudio/x5/power-x5.c
new file mode 100644
index 0000000000..0df6d379a4
--- /dev/null
+++ b/firmware/target/coldfire/iaudio/x5/power-x5.c
@@ -0,0 +1,82 @@
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 and_l(~0x01000000, &GPIO1_ENABLE);
33 or_l(0x01000000, &GPIO1_FUNCTION);
34
35 pcf50606_init();
36}
37
38bool charger_inserted(void)
39{
40 return (GPIO1_READ & 0x01000000)?true:false;
41}
42
43void ide_power_enable(bool on)
44{
45 (void)on;
46}
47
48bool ide_powered(void)
49{
50 return false;
51}
52
53void power_off(void)
54{
55 set_irq_level(HIGHEST_IRQ_LEVEL);
56 and_l(~0x00000008, &GPIO_OUT);
57 while(1)
58 yield();
59}
60
61#else
62
63bool charger_inserted(void)
64{
65 return false;
66}
67
68void charger_enable(bool on)
69{
70 (void)on;
71}
72
73void power_off(void)
74{
75}
76
77void ide_power_enable(bool on)
78{
79 (void)on;
80}
81
82#endif /* SIMULATOR */