summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorAmaury Pouly <pamaury@rockbox.org>2011-12-24 19:23:11 +0000
committerAmaury Pouly <pamaury@rockbox.org>2011-12-24 19:23:11 +0000
commit1a0bc64e027d56101ce0791b2bcff4565e562bb6 (patch)
treebaa1e9c51751db70e5cc4769914a47590ba044ad /firmware
parentf7f1f7023f94a0c1f00033235f0f9d9ab51a1b3f (diff)
downloadrockbox-1a0bc64e027d56101ce0791b2bcff4565e562bb6.tar.gz
rockbox-1a0bc64e027d56101ce0791b2bcff4565e562bb6.zip
imx233: forgot a file
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31425 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/target/arm/imx233/powermgmt-imx233.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/firmware/target/arm/imx233/powermgmt-imx233.h b/firmware/target/arm/imx233/powermgmt-imx233.h
new file mode 100644
index 0000000000..8876a2d62e
--- /dev/null
+++ b/firmware/target/arm/imx233/powermgmt-imx233.h
@@ -0,0 +1,41 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2011 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_IMX233_H
22#define POWERMGMT_IMX233_H
23
24#include "config.h"
25#include "powermgmt.h"
26
27void powermgmt_init_target(void);
28void charging_algorithm_step(void);
29void charging_algorithm_close(void);
30
31struct imx233_powermgmt_info_t
32{
33 enum charge_state_type state;
34 int charging_timeout; /* time in tick before timeout, -1 if n/a */
35 int topoff_timeout; /* ditto */
36 int incr_4p2_ilimit_timeout; /* ditto */
37};
38
39struct imx233_powermgmt_info_t imx233_powermgmt_get_info(void);
40
41#endif /* POWERMGMT_IMX233_H */