summaryrefslogtreecommitdiff
path: root/firmware/target/sh/archos/fm_v2/power-fm_v2.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/sh/archos/fm_v2/power-fm_v2.c')
-rw-r--r--firmware/target/sh/archos/fm_v2/power-fm_v2.c109
1 files changed, 109 insertions, 0 deletions
diff --git a/firmware/target/sh/archos/fm_v2/power-fm_v2.c b/firmware/target/sh/archos/fm_v2/power-fm_v2.c
new file mode 100644
index 0000000000..94a36339bb
--- /dev/null
+++ b/firmware/target/sh/archos/fm_v2/power-fm_v2.c
@@ -0,0 +1,109 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2002 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 "adc.h"
23#include "kernel.h"
24#include "system.h"
25#include "power.h"
26#include "usb.h"
27
28#if CONFIG_TUNER
29
30bool tuner_power(bool status)
31{
32 (void)status;
33 return true;
34}
35
36#endif /* #if CONFIG_TUNER */
37
38void power_init(void)
39{
40 PBCR2 &= ~0x0c00; /* GPIO for PB5 */
41 or_b(0x20, &PBIORL);
42 or_b(0x20, &PBDRL); /* hold power */
43}
44
45bool charger_inserted(void)
46{
47 /* FM or V2 can also charge from the USB port */
48 return (adc_read(ADC_CHARGE_REGULATOR) < 0x1FF);
49}
50
51/* Returns true if the unit is charging the batteries. */
52bool charging_state(void)
53{
54 /* We use the information from the ADC_EXT_POWER ADC channel, which
55 tells us the charging current from the LTC1734. When DC is
56 connected (either via the external adapter, or via USB), we try
57 to determine if it is actively charging or only maintaining the
58 charge. My tests show that ADC readings below about 0x80 means
59 that the LTC1734 is only maintaining the charge. */
60 return adc_read(ADC_EXT_POWER) >= 0x80;
61}
62
63void ide_power_enable(bool on)
64{
65 bool touched = false;
66
67 if(on)
68 {
69 or_b(0x20, &PADRL);
70 touched = true;
71 }
72#ifdef HAVE_ATA_POWER_OFF
73 if(!on)
74 {
75 and_b(~0x20, &PADRL);
76 touched = true;
77 }
78#endif /* HAVE_ATA_POWER_OFF */
79
80/* late port preparation, else problems with read/modify/write
81 of other bits on same port, while input and floating high */
82 if (touched)
83 {
84 or_b(0x20, &PAIORL); /* PA5 is an output */
85 PACR2 &= 0xFBFF; /* GPIO for PA5 */
86 }
87}
88
89
90bool ide_powered(void)
91{
92#ifdef HAVE_ATA_POWER_OFF
93 if ((PACR2 & 0x0400) || !(PAIORL & 0x20)) /* not configured for output */
94 return true; /* would be floating high, disk on */
95 else
96 return (PADRL & 0x20) != 0;
97#else /* !defined(NEEDS_ATA_POWER_ON) && !defined(HAVE_ATA_POWER_OFF) */
98 return true; /* pretend always powered if not controlable */
99#endif
100}
101
102void power_off(void)
103{
104 set_irq_level(HIGHEST_IRQ_LEVEL);
105 and_b(~0x20, &PBDRL);
106 or_b(0x20, &PBIORL);
107 while(1)
108 yield();
109}