Bring idle poweroff to RaaA and the sim
[maemo-rb.git] / firmware / export / powermgmt.h
blob808c8586d821ef9b539e619238ec5423cfce9efc
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 by Heikki Hannikainen, Uwe Freese
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.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
21 #ifndef _POWERMGMT_H_
22 #define _POWERMGMT_H_
24 #include <stdbool.h>
25 #include "config.h"
27 #define POWER_HISTORY_LEN 2*60 /* 2 hours of samples, one per minute */
29 enum charge_state_type
31 /* sorted by increasing charging current (do not change!) */
32 #if CONFIG_CHARGING >= CHARGING_MONITOR
33 CHARGE_STATE_DISABLED = -2, /* Disable charger use (safety measure) */
34 CHARGE_STATE_ERROR = -1, /* Some error occurred that should not allow
35 turning on the charger again by software
36 without user intervention (ie. replug) */
37 #endif
38 DISCHARGING = 0,
39 #if CONFIG_CHARGING >= CHARGING_MONITOR
40 TRICKLE, /* For NiCd, battery maintenence phase */
41 /* For LiIon, low-current precharge phase */
42 TOPOFF, /* For NiCd, waiting for dead zone */
43 /* For LiIon, constant voltage phase */
44 CHARGING, /* For NiCd, main charge phase */
45 /* For LiIon, constant current phase */
46 #endif
49 /* tells what the charger is doing */
50 extern enum charge_state_type charge_state;
52 #ifdef CONFIG_CHARGING
54 * Flag that the charger has been plugged in/removed: this is set for exactly
55 * one time through the power loop when the charger has been plugged in.
57 enum charger_input_state_type
59 NO_CHARGER = 0, /* No charger is present */
60 CHARGER_UNPLUGGED, /* Transitional state during CHARGER=>NO_CHARGER */
61 CHARGER_PLUGGED, /* Transitional state during NO_CHARGER=>CHARGER */
62 CHARGER /* Charger is present */
65 /* tells the state of the charge input */
66 extern enum charger_input_state_type charger_input_state;
68 /* Power input status saved on the power thread each loop */
69 extern unsigned int power_thread_inputs;
71 #endif /* CONFIG_CHARGING */
73 #if CONFIG_CHARGING == CHARGING_TARGET
74 /* Include target-specific definitions */
75 #include "powermgmt-target.h"
76 #endif
78 /* Start up power management thread */
79 void powermgmt_init(void) INIT_ATTR;
81 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
83 /* Generic current values that are intentionally meaningless - config header
84 * should define proper numbers.*/
87 #ifndef CURRENT_BACKLIGHT
88 #define CURRENT_BACKLIGHT 5 /* additional current when backlight always on */
89 #endif
91 #if defined(HAVE_RECORDING) && !defined(CURRENT_RECORD)
92 #define CURRENT_RECORD 2 /* additional recording current */
93 #endif /* HAVE_RECORDING && !CURRENT_RECORD*/
95 #ifndef CURRENT_USB
96 #define CURRENT_USB 2 /* usual current in mA in USB mode */
97 #endif
99 #if defined(HAVE_REMOTE_LCD) && !defined(CURRENT_REMOTE)
100 #define CURRENT_REMOTE 2 /* additional current when remote connected */
101 #endif /* CURRENT_REMOTE && !HAVE_REMOTE_LCD */
103 #if CONFIG_CHARGING
104 #ifndef CURRENT_MAX_CHG
105 #define CURRENT_MAX_CHG 350 /* maximum charging current */
106 #endif
107 #endif /* CONFIG_CHARGING */
109 #ifdef CHARGING_DEBUG_FILE
110 #define POWERMGMT_DEBUG_STACK ((0x1000)/sizeof(long))
111 #else
112 #define POWERMGMT_DEBUG_STACK 0
113 #endif
115 #ifndef BATT_AVE_SAMPLES
116 /* slw filter constant unless otherwise specified */
117 #define BATT_AVE_SAMPLES 128
118 #endif
120 #ifndef POWER_THREAD_STEP_TICKS
121 /* 2HZ sample rate unless otherwise specified */
122 #define POWER_THREAD_STEP_TICKS (HZ/2)
123 #endif
125 extern unsigned short power_history[POWER_HISTORY_LEN];
126 extern const unsigned short battery_level_dangerous[BATTERY_TYPES_COUNT];
127 extern const unsigned short battery_level_shutoff[BATTERY_TYPES_COUNT];
128 extern const unsigned short percent_to_volt_discharge[BATTERY_TYPES_COUNT][11];
129 #if CONFIG_CHARGING
130 extern const unsigned short percent_to_volt_charge[11];
131 #endif
133 #endif /* PLATFORM_NATIVE */
135 /* Returns battery statust */
136 int battery_level(void); /* percent */
137 int battery_time(void); /* minutes */
138 unsigned int battery_adc_voltage(void); /* voltage from ADC in millivolts */
139 unsigned int battery_voltage(void); /* filtered batt. voltage in millivolts */
141 #ifdef HAVE_BATTERY_SWITCH
142 unsigned int input_millivolts(void); /* voltage that device is running from */
143 #endif /* HAVE_BATTERY_SWITCH */
145 #if defined(HAVE_BATTERY_SWITCH) || defined(HAVE_RESET_BATTERY_FILTER)
146 /* Set the filtered battery voltage (to adjust it before beginning a charge
147 * cycle for instance where old, loaded readings will likely be invalid).
148 * Also readjust when battery switch is opened or closed.
150 void reset_battery_filter(int millivolts);
151 #endif /* HAVE_BATTERY_SWITCH || HAVE_RESET_BATTERY_FILTER */
154 /* read unfiltered battery info */
155 void battery_read_info(int *voltage, int *level);
157 /* Tells if the battery level is safe for disk writes */
158 bool battery_level_safe(void);
160 void set_poweroff_timeout(int timeout);
161 void set_battery_capacity(int capacity); /* set local battery capacity value */
162 int get_battery_capacity(void); /* get local battery capacity value */
163 void set_battery_type(int type); /* set local battery type */
165 void set_sleep_timer(int seconds);
166 int get_sleep_timer(void);
167 void handle_auto_poweroff(void);
168 void set_car_adapter_mode(bool setting);
169 void reset_poweroff_timer(void);
170 void cancel_shutdown(void);
171 void shutdown_hw(void);
172 void sys_poweroff(void);
173 /* Returns true if the system should force shutdown for some reason -
174 * eg. low battery */
175 bool query_force_shutdown(void);
176 #ifdef HAVE_ACCESSORY_SUPPLY
177 void accessory_supply_set(bool);
178 #endif
179 #ifdef HAVE_LINEOUT_POWEROFF
180 void lineout_set(bool);
181 #endif
183 #endif /* _POWERMGMT_H_ */