2002-08-06 10:50:50 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Heikki Hannikainen
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef _POWERMGMT_H_
|
|
|
|
#define _POWERMGMT_H_
|
|
|
|
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
|
2002-08-07 11:30:39 +00:00
|
|
|
#define BATTERY_LEVEL_SHUTDOWN 450 /* 4.5V */
|
|
|
|
#define BATTERY_LEVEL_EMPTY 465 /* 4.65V */
|
|
|
|
#define BATTERY_LEVEL_DANGEROUS 475 /* 4.75V */
|
2002-12-03 14:18:51 +00:00
|
|
|
#define BATTERY_LEVEL_FULL 585 /* 5.85V */
|
2002-08-07 11:30:39 +00:00
|
|
|
|
|
|
|
#define BATTERY_RANGE (BATTERY_LEVEL_FULL - BATTERY_LEVEL_EMPTY)
|
|
|
|
|
2002-08-06 10:50:50 +00:00
|
|
|
#define POWER_HISTORY_LEN 2*60 /* 2 hours of samples, one per minute */
|
2002-08-12 12:19:25 +00:00
|
|
|
#define POWER_AVG_N 4 /* how many samples to take for each measurement */
|
|
|
|
#define POWER_AVG_SLEEP 10 /* how long do we sleep between each measurement */
|
2002-08-06 10:50:50 +00:00
|
|
|
|
|
|
|
#define CHARGE_END_NEGD 6 /* stop when N minutes have passed with
|
2002-08-12 12:19:25 +00:00
|
|
|
* avg delta being < -0.05 V */
|
2002-08-21 20:09:13 +00:00
|
|
|
#define CHARGE_END_ZEROD 50 /* stop when N minutes have passed with
|
2002-08-06 10:50:50 +00:00
|
|
|
* avg delta being < 0.005 V */
|
|
|
|
|
|
|
|
#ifdef HAVE_CHARGE_CTRL
|
|
|
|
#define POWER_MESSAGE_LEN 32 /* power thread status message */
|
2002-12-03 14:18:51 +00:00
|
|
|
#define CHARGE_MAX_TIME 8*60 /* minutes: maximum charging time */
|
2002-08-06 10:50:50 +00:00
|
|
|
#define CHARGE_MIN_TIME 10 /* minutes: minimum charging time */
|
2002-08-21 20:09:13 +00:00
|
|
|
#define CHARGE_RESTART_HI 95 /* %: when to restart charging in 'charge' mode */
|
2002-08-06 10:50:50 +00:00
|
|
|
#define CHARGE_RESTART_LO 10 /* %: when to restart charging in 'discharge' mode */
|
2002-12-03 14:18:51 +00:00
|
|
|
#define CHARGE_PAUSE_LEN 60 /* how many minutes to pause between charging cycles */
|
2002-08-06 10:50:50 +00:00
|
|
|
|
|
|
|
extern char power_message[POWER_MESSAGE_LEN];
|
|
|
|
extern char charge_restart_level;
|
2002-12-03 14:18:51 +00:00
|
|
|
|
|
|
|
extern int powermgmt_last_cycle_startstop_min; /* how many minutes ago was the charging started or stopped? */
|
|
|
|
extern int powermgmt_last_cycle_level; /* which level had the batteries at this time? */
|
|
|
|
|
|
|
|
extern int battery_lazyness[20]; /* how does the battery react when plugging in/out the charger */
|
|
|
|
|
2002-08-06 10:50:50 +00:00
|
|
|
#endif /* HAVE_CHARGE_CTRL */
|
|
|
|
|
2002-12-03 14:18:51 +00:00
|
|
|
#define BATTERY_CAPACITY 1800 /* battery capacity in mAh for runtime estimation */
|
|
|
|
#define CURRENT_NORMAL 145 /* usual current in mA when using the AJB including some disk/backlight/... activity */
|
|
|
|
#define CURRENT_BACKLIGHT 30 /* additional current when backlight is always on */
|
|
|
|
#define CURRENT_CHARGING 300 /* charging current */
|
|
|
|
|
2002-08-06 10:50:50 +00:00
|
|
|
extern unsigned short power_history[POWER_HISTORY_LEN];
|
|
|
|
|
2002-08-07 11:30:39 +00:00
|
|
|
/* Start up power management thread */
|
2002-08-06 10:50:50 +00:00
|
|
|
void power_init(void);
|
|
|
|
|
2002-08-07 11:30:39 +00:00
|
|
|
#endif /* SIMULATOR */
|
|
|
|
|
|
|
|
/* Returns battery level in percent */
|
|
|
|
int battery_level(void);
|
2002-12-03 14:18:51 +00:00
|
|
|
int battery_time(void); /* minutes */
|
2002-08-07 11:30:39 +00:00
|
|
|
|
|
|
|
/* Tells if the battery level is safe for disk writes */
|
|
|
|
bool battery_level_safe(void);
|
2002-08-06 10:50:50 +00:00
|
|
|
|
2002-09-23 11:42:48 +00:00
|
|
|
void set_poweroff_timeout(int timeout);
|
|
|
|
|
2002-08-06 10:50:50 +00:00
|
|
|
#endif
|