summaryrefslogtreecommitdiff
path: root/firmware/target/arm/ipod
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2007-08-17 06:45:18 +0000
committerJens Arnold <amiconn@rockbox.org>2007-08-17 06:45:18 +0000
commit0fac492c3da8b46ad1cf5a668e5d851c63443a94 (patch)
tree95fb6637601a4b3c730f4aec1d2e7e7ab78e208b /firmware/target/arm/ipod
parent12706e4b1d4ce65df441dcf6e2b160657ea3fa38 (diff)
downloadrockbox-0fac492c3da8b46ad1cf5a668e5d851c63443a94.tar.gz
rockbox-0fac492c3da8b46ad1cf5a668e5d851c63443a94.zip
First step of powermanagement rework: * Move target specific stuff into target tree, starting with battery voltage tables and voltage reading. (This revealed some incorrect percent_to_voltage_charging mappings). * Voltage reading on 1st gen ipods is now correct. * Clean up obsolete config #defines.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14375 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/ipod')
-rw-r--r--firmware/target/arm/ipod/1g2g/powermgmt-1g2g.c66
-rw-r--r--firmware/target/arm/ipod/powermgmt-ipod-pcf.c90
2 files changed, 156 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}
diff --git a/firmware/target/arm/ipod/powermgmt-ipod-pcf.c b/firmware/target/arm/ipod/powermgmt-ipod-pcf.c
new file mode 100644
index 0000000000..d2f88a20f2
--- /dev/null
+++ b/firmware/target/arm/ipod/powermgmt-ipod-pcf.c
@@ -0,0 +1,90 @@
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
25const unsigned short battery_level_dangerous[BATTERY_TYPES_COUNT] =
26{
27#ifdef IPOD_NANO
28 3330
29#elif defined IPOD_VIDEO
30 3450
31#else
32 /* FIXME: calibrate value for other 3G+ ipods */
33 3380
34#endif
35};
36
37const unsigned short battery_level_shutoff[BATTERY_TYPES_COUNT] =
38{
39#ifdef IPOD_NANO
40 3230
41#elif defined IPOD_VIDEO
42 3450
43#else
44 /* FIXME: calibrate value for other 3G+ ipods */
45 3020
46#endif
47};
48
49/* voltages (millivolt) of 0%, 10%, ... 100% when charging disabled */
50const unsigned short percent_to_volt_discharge[BATTERY_TYPES_COUNT][11] =
51{
52#ifdef IPOD_NANO
53 /* measured values */
54 { 3230, 3620, 3700, 3730, 3750, 3780, 3830, 3890, 3950, 4030, 4160 },
55#elif defined IPOD_VIDEO
56 /* iPOD Video 30GB Li-Ion 400mAh, first approach based upon measurements */
57 { 3450, 3670, 3710, 3750, 3790, 3830, 3870, 3930, 4010, 4100, 4180 },
58#else
59 /* FIXME: calibrate value for other 3G+ ipods */
60 /* Table is "inherited" from iriver H100. */
61 { 3370, 3650, 3700, 3740, 3780, 3820, 3870, 3930, 4000, 4080, 4160 }
62#endif
63};
64
65#if CONFIG_CHARGING
66/* voltages (millivolt) of 0%, 10%, ... 100% when charging enabled */
67const unsigned short percent_to_volt_charge[11] =
68{
69#ifdef IPOD_NANO
70 /* measured values */
71 3230, 3620, 3700, 3730, 3750, 3780, 3830, 3890, 3950, 4030, 4160
72#elif defined IPOD_VIDEO
73 /* iPOD Video 30GB Li-Ion 400mAh, first approach based upon measurements */
74 3450, 3670, 3710, 3750, 3790, 3830, 3870, 3930, 4010, 4100, 4180
75#else
76 /* FIXME: calibrate value for other 3G+ ipods */
77 /* Table is "inherited" from iriver H100. */
78 3540, 3860, 3930, 3980, 4000, 4020, 4040, 4080, 4130, 4180, 4230
79#endif
80};
81#endif /* CONFIG_CHARGING */
82
83#define BATTERY_SCALE_FACTOR 6000
84/* full-scale ADC readout (2^10) in millivolt */
85
86/* Returns battery voltage from ADC [millivolts] */
87unsigned int battery_adc_voltage(void)
88{
89 return (adc_read(ADC_UNREG_POWER) * BATTERY_SCALE_FACTOR) >> 10;
90}