summaryrefslogtreecommitdiff
path: root/firmware/target/arm/ipod/1g2g
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/ipod/1g2g')
-rw-r--r--firmware/target/arm/ipod/1g2g/powermgmt-1g2g.c66
1 files changed, 66 insertions, 0 deletions
diff --git a/firmware/target/arm/ipod/1g2g/powermgmt-1g2g.c b/firmware/target/arm/ipod/1g2g/powermgmt-1g2g.c
new file mode 100644
index 0000000000..fed67f56ef
--- /dev/null
+++ b/firmware/target/arm/ipod/1g2g/powermgmt-1g2g.c
@@ -0,0 +1,66 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2002 by Heikki Hannikainen, Uwe Freese
11 * Revisions copyright (C) 2005 by Gerald Van Baren
12 *
13 * All files in this archive are subject to the GNU General Public License.
14 * See the file COPYING in the source tree root for full license agreement.
15 *
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
18 *
19 ****************************************************************************/
20
21#include "config.h"
22#include "adc.h"
23#include "powermgmt.h"
24#include "hwcompat.h"
25
26/* FIXME: Properly calibrate values. Current values "inherited" from
27 * iriver H100 */
28
29const unsigned short battery_level_dangerous[BATTERY_TYPES_COUNT] =
30{
31 3380
32};
33
34const unsigned short battery_level_shutoff[BATTERY_TYPES_COUNT] =
35{
36 3020
37};
38
39/* voltages (millivolt) of 0%, 10%, ... 100% when charging disabled */
40const unsigned short percent_to_volt_discharge[BATTERY_TYPES_COUNT][11] =
41{
42 { 3370, 3650, 3700, 3740, 3780, 3820, 3870, 3930, 4000, 4080, 4160 }
43};
44
45#if CONFIG_CHARGING
46/* voltages (millivolt) of 0%, 10%, ... 100% when charging enabled */
47const unsigned short percent_to_volt_charge[11] =
48{
49 3540, 3860, 3930, 3980, 4000, 4020, 4040, 4080, 4130, 4180, 4230
50};
51#endif /* CONFIG_CHARGING */
52
53#define BATTERY_SCALE_FACTOR_1G 4200
54#define BATTERY_SCALE_FACTOR_2G 6630
55/* full-scale ADC readout (2^8) in millivolt */
56
57/* Returns battery voltage from ADC [millivolts] */
58unsigned int battery_adc_voltage(void)
59{
60 unsigned adcval = adc_read(ADC_UNREG_POWER);
61
62 if ((IPOD_HW_REVISION >> 16) == 1)
63 return (adcval * BATTERY_SCALE_FACTOR_1G) >> 8;
64 else
65 return (adcval * BATTERY_SCALE_FACTOR_2G) >> 8;
66}