summaryrefslogtreecommitdiff
path: root/firmware/target/arm/imx233/creative-zenxfi3/powermgmt-target.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/imx233/creative-zenxfi3/powermgmt-target.h')
-rw-r--r--firmware/target/arm/imx233/creative-zenxfi3/powermgmt-target.h58
1 files changed, 58 insertions, 0 deletions
diff --git a/firmware/target/arm/imx233/creative-zenxfi3/powermgmt-target.h b/firmware/target/arm/imx233/creative-zenxfi3/powermgmt-target.h
new file mode 100644
index 0000000000..6c010a72d3
--- /dev/null
+++ b/firmware/target/arm/imx233/creative-zenxfi3/powermgmt-target.h
@@ -0,0 +1,58 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2012 by Amaury Pouly
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21#ifndef POWERMGMT_TARGET_H
22#define POWERMGMT_TARGET_H
23
24#include "config.h"
25#include "powermgmt-imx233.h"
26
27/* Creative ZEN X-Fi3 OF settings:
28 * - current ramp slope: 10 mA/s
29 * - conditioning threshold voltage: 3 V
30 * - conditioning max voltage: 3.1 V
31 * - conditioning current: 60 mA
32 * - conditioning timeout: 1 h
33 * - charging voltage: 4.2 V
34 * - charging current: 260 mA
35 * - charging threshold current: 20 mA
36 * - charging timeout: 4 h
37 * - top off period: 30 min
38 * - high die temperature: 91 °C
39 * - low die temperature: 56 °C
40 * - safe die temperature current: 30 mA
41 * - battery temperature channel: 0
42 * - high battery temperature: 2400
43 * - low battery temperature: 2300
44 * - safe battery temperature current: 0 mA
45 * - low DCDC battery voltage: 3.9 V
46 */
47
48#define IMX233_CHARGE_CURRENT 260
49#define IMX233_STOP_CURRENT 20
50#define IMX233_TOPOFF_TIMEOUT (30 * 60 * HZ)
51#define IMX233_CHARGING_TIMEOUT (4 * 3600 * HZ)
52#define IMX233_DIE_TEMP_HIGH 91
53#define IMX233_DIE_TEMP_LOW 56
54#define IMX233_BATT_TEMP_SENSOR 0
55#define IMX233_BATT_TEMP_HIGH 2400
56#define IMX233_BATT_TEMP_LOW 2300
57
58#endif /* POWERMGMT_TARGET_H */