2002-08-06 10:50:50 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
2002-12-14 15:48:08 +00:00
|
|
|
* Copyright (C) 2002 by Heikki Hannikainen, Uwe Freese
|
2005-03-03 07:25:43 +00:00
|
|
|
* Revisions copyright (C) 2005 by Gerald Van Baren
|
2002-08-06 10:50:50 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#include "config.h"
|
2005-02-02 22:05:53 +00:00
|
|
|
#include "cpu.h"
|
2002-08-06 10:50:50 +00:00
|
|
|
#include "kernel.h"
|
|
|
|
#include "thread.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "panic.h"
|
|
|
|
#include "adc.h"
|
|
|
|
#include "string.h"
|
2002-08-06 13:06:41 +00:00
|
|
|
#include "sprintf.h"
|
2002-08-12 12:19:25 +00:00
|
|
|
#include "ata.h"
|
2002-08-06 10:50:50 +00:00
|
|
|
#include "power.h"
|
2002-09-23 11:42:48 +00:00
|
|
|
#include "button.h"
|
|
|
|
#include "ata.h"
|
|
|
|
#include "mpeg.h"
|
2005-02-06 10:14:50 +00:00
|
|
|
#include "mp3_playback.h"
|
2002-09-25 19:25:10 +00:00
|
|
|
#include "usb.h"
|
2002-08-06 10:50:50 +00:00
|
|
|
#include "powermgmt.h"
|
2002-12-14 22:05:01 +00:00
|
|
|
#include "backlight.h"
|
2005-02-06 10:16:13 +00:00
|
|
|
#include "lcd.h"
|
2005-02-06 17:21:42 +00:00
|
|
|
#include "rtc.h"
|
2004-09-28 22:13:26 +00:00
|
|
|
#ifdef CONFIG_TUNER
|
2003-05-03 15:39:40 +00:00
|
|
|
#include "fmradio.h"
|
|
|
|
#endif
|
2005-03-18 11:38:47 +00:00
|
|
|
#ifdef IRIVER_H100
|
|
|
|
#include "uda1380.h"
|
|
|
|
#endif
|
2002-08-06 10:50:50 +00:00
|
|
|
|
2005-03-03 07:25:43 +00:00
|
|
|
/*
|
|
|
|
* Define DEBUG_FILE to create a csv (spreadsheet) with battery information
|
|
|
|
* in it (one sample per minute). This is only for very low level debug.
|
|
|
|
*/
|
|
|
|
#undef DEBUG_FILE
|
|
|
|
#if defined(DEBUG_FILE) && defined(HAVE_CHARGE_CTRL)
|
|
|
|
#include "file.h"
|
|
|
|
#define DEBUG_FILE_NAME "/powermgmt.csv"
|
|
|
|
#define DEBUG_MESSAGE_LEN 133
|
|
|
|
static char debug_message[DEBUG_MESSAGE_LEN];
|
|
|
|
#define DEBUG_STACK ((0x1000)/sizeof(long))
|
|
|
|
static int fd; /* write debug information to this file */
|
|
|
|
#else
|
|
|
|
#define DEBUG_STACK 0
|
|
|
|
#endif
|
|
|
|
|
2004-06-22 07:16:31 +00:00
|
|
|
long last_event_tick;
|
|
|
|
|
|
|
|
void reset_poweroff_timer(void)
|
|
|
|
{
|
|
|
|
last_event_tick = current_tick;
|
|
|
|
}
|
|
|
|
|
2005-03-03 07:25:43 +00:00
|
|
|
#ifdef SIMULATOR /***********************************************************/
|
2002-08-07 11:30:39 +00:00
|
|
|
|
|
|
|
int battery_level(void)
|
|
|
|
{
|
2003-06-04 13:16:34 +00:00
|
|
|
return 75;
|
2002-08-07 11:30:39 +00:00
|
|
|
}
|
|
|
|
|
2002-12-03 14:18:51 +00:00
|
|
|
int battery_time(void)
|
|
|
|
{
|
|
|
|
return 500;
|
|
|
|
}
|
|
|
|
|
2002-08-07 11:30:39 +00:00
|
|
|
bool battery_level_safe(void)
|
|
|
|
{
|
2003-06-04 13:16:34 +00:00
|
|
|
return battery_level() >= 10;
|
2002-08-07 11:30:39 +00:00
|
|
|
}
|
|
|
|
|
2002-09-23 12:21:51 +00:00
|
|
|
void set_poweroff_timeout(int timeout)
|
|
|
|
{
|
|
|
|
(void)timeout;
|
|
|
|
}
|
|
|
|
|
2002-12-17 09:26:51 +00:00
|
|
|
void set_battery_capacity(int capacity)
|
|
|
|
{
|
|
|
|
(void)capacity;
|
|
|
|
}
|
2003-10-17 14:49:00 +00:00
|
|
|
|
|
|
|
void set_car_adapter_mode(bool setting)
|
|
|
|
{
|
|
|
|
(void)setting;
|
|
|
|
}
|
|
|
|
|
2005-03-03 07:25:43 +00:00
|
|
|
#else /* not SIMULATOR ******************************************************/
|
2002-12-18 18:55:50 +00:00
|
|
|
|
2004-08-03 19:22:56 +00:00
|
|
|
static const int poweroff_idle_timeout_value[15] =
|
2002-09-23 11:42:48 +00:00
|
|
|
{
|
|
|
|
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 30, 45, 60
|
|
|
|
};
|
|
|
|
|
2005-03-03 07:25:43 +00:00
|
|
|
static const short percent_to_volt_discharge[BATTERY_TYPES_COUNT][11] =
|
2003-03-04 05:59:38 +00:00
|
|
|
/* voltages (centivolt) of 0%, 10%, ... 100% when charging disabled */
|
2002-12-03 14:18:51 +00:00
|
|
|
{
|
2004-10-08 17:45:52 +00:00
|
|
|
#if CONFIG_BATTERY == BATT_LIION2200
|
2003-08-21 08:49:57 +00:00
|
|
|
/* measured values */
|
2005-01-30 16:25:46 +00:00
|
|
|
{ 260, 285, 295, 303, 311, 320, 330, 345, 360, 380, 400 }
|
|
|
|
#elif CONFIG_BATTERY == BATT_3AAA
|
|
|
|
/* measured values */
|
|
|
|
{ 280, 325, 341, 353, 364, 374, 385, 395, 409, 427, 475 }, /* alkaline */
|
|
|
|
{ 310, 355, 363, 369, 372, 374, 376, 378, 380, 386, 405 } /* NiMH */
|
2003-01-27 11:27:44 +00:00
|
|
|
#else /* NiMH */
|
2003-03-04 05:59:38 +00:00
|
|
|
/* original values were taken directly after charging, but it should show
|
|
|
|
100% after turning off the device for some hours, too */
|
2005-01-30 16:25:46 +00:00
|
|
|
{ 450, 481, 491, 497, 503, 507, 512, 514, 517, 525, 540 }
|
|
|
|
/* orig. values: ...,528,560 */
|
2003-01-27 11:27:44 +00:00
|
|
|
#endif
|
2002-12-03 14:18:51 +00:00
|
|
|
};
|
|
|
|
|
2005-01-30 16:25:46 +00:00
|
|
|
static int battery_type = 0;
|
|
|
|
|
2005-03-03 07:25:43 +00:00
|
|
|
#if defined(HAVE_CHARGE_CTRL) || CONFIG_BATTERY == BATT_LIION2200
|
|
|
|
charge_state_type charge_state; /* charging mode */
|
|
|
|
int charge_timer; /* charge timer (minutes, dec to zero) */
|
2005-01-30 16:25:46 +00:00
|
|
|
#endif
|
|
|
|
|
2005-03-03 07:25:43 +00:00
|
|
|
#ifdef HAVE_CHARGING
|
|
|
|
/* Flag that the charger has been plugged in */
|
|
|
|
static bool charger_was_inserted = false; /* for power off logic */
|
|
|
|
static bool charger_power_is_on; /* for car adapter mode */
|
2004-02-05 13:44:04 +00:00
|
|
|
#endif
|
|
|
|
|
2005-03-03 07:25:43 +00:00
|
|
|
/* Power history: power_history[0] is the newest sample */
|
|
|
|
unsigned short power_history[POWER_HISTORY_LEN];
|
|
|
|
|
2002-12-03 14:33:20 +00:00
|
|
|
#ifdef HAVE_CHARGE_CTRL
|
2002-12-14 22:05:01 +00:00
|
|
|
|
2005-03-03 07:25:43 +00:00
|
|
|
int long_delta; /* long term delta battery voltage */
|
|
|
|
int short_delta; /* short term delta battery voltage */
|
|
|
|
|
2003-03-04 05:59:38 +00:00
|
|
|
char power_message[POWER_MESSAGE_LEN] = ""; /* message that's shown in
|
|
|
|
debug menu */
|
2005-03-03 07:25:43 +00:00
|
|
|
/* percentage at which charging
|
2003-03-04 05:59:38 +00:00
|
|
|
starts */
|
2005-03-03 07:25:43 +00:00
|
|
|
int powermgmt_last_cycle_startstop_min = 0; /* how many minutes ago was the
|
2003-03-04 05:59:38 +00:00
|
|
|
charging started or
|
|
|
|
stopped? */
|
|
|
|
int powermgmt_last_cycle_level = 0; /* which level had the
|
|
|
|
batteries at this time? */
|
2005-03-03 07:25:43 +00:00
|
|
|
int trickle_sec = 0; /* how many seconds should the
|
2003-03-04 05:59:38 +00:00
|
|
|
charger be enabled per
|
|
|
|
minute for trickle
|
|
|
|
charging? */
|
2004-08-03 19:22:56 +00:00
|
|
|
/* voltages (centivolt) of 0%, 10%, ... 100% when charging enabled */
|
2005-03-03 07:25:43 +00:00
|
|
|
static const short percent_to_volt_charge[11] =
|
2002-12-03 14:18:51 +00:00
|
|
|
{
|
2003-03-04 05:59:38 +00:00
|
|
|
/* values guessed, see
|
|
|
|
http://www.seattlerobotics.org/encoder/200210/LiIon2.pdf until someone
|
|
|
|
measures voltages over a charging cycle */
|
2003-02-12 22:21:07 +00:00
|
|
|
476, 544, 551, 556, 561, 564, 566, 576, 582, 584, 585 /* NiMH */
|
2002-12-03 14:18:51 +00:00
|
|
|
};
|
2002-12-14 22:05:01 +00:00
|
|
|
|
2005-03-03 07:25:43 +00:00
|
|
|
#endif /* HAVE_CHARGE_CTRL || CONFIG_BATTERY == BATT_LIION2200 */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Average battery voltage and charger voltage, filtered via a digital
|
|
|
|
* exponential filter.
|
|
|
|
*/
|
|
|
|
unsigned int battery_centivolts;/* filtered battery voltage, centvolts */
|
|
|
|
static unsigned int avgbat; /* average battery voltage */
|
|
|
|
#define BATT_AVE_SAMPLES 32 /* filter constant / @ 2Hz sample rate */
|
|
|
|
|
|
|
|
int battery_capacity = BATTERY_CAPACITY_MIN; /* only a default value */
|
2002-12-03 14:18:51 +00:00
|
|
|
|
2005-03-03 07:25:43 +00:00
|
|
|
/* battery level (0-100%) of this minute, updated once per minute */
|
|
|
|
static int battery_percent = -1;
|
|
|
|
|
|
|
|
static bool car_adapter_mode_enabled = false;
|
|
|
|
|
|
|
|
static char power_stack[DEFAULT_STACK_SIZE + DEBUG_STACK];
|
2004-08-03 19:22:56 +00:00
|
|
|
static const char power_thread_name[] = "power";
|
2002-08-06 10:50:50 +00:00
|
|
|
|
2005-03-03 07:25:43 +00:00
|
|
|
static int poweroff_timeout = 0;
|
2002-09-24 07:50:17 +00:00
|
|
|
static long last_charge_time = 0;
|
2002-12-14 22:20:56 +00:00
|
|
|
int powermgmt_est_runningtime_min = -1;
|
2002-09-23 11:42:48 +00:00
|
|
|
|
2002-12-03 22:41:50 +00:00
|
|
|
static bool sleeptimer_active = false;
|
|
|
|
static unsigned long sleeptimer_endtick;
|
|
|
|
|
2005-03-03 07:25:43 +00:00
|
|
|
#if BATTERY_TYPES_COUNT > 1
|
|
|
|
void set_battery_type(int type)
|
|
|
|
{
|
|
|
|
if (type != battery_type) {
|
|
|
|
battery_type = type;
|
|
|
|
battery_percent = -1; /* reset on type change */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void set_battery_capacity(int capacity)
|
|
|
|
{
|
|
|
|
battery_capacity = capacity;
|
|
|
|
if (battery_capacity > BATTERY_CAPACITY_MAX)
|
|
|
|
battery_capacity = BATTERY_CAPACITY_MAX;
|
|
|
|
if (battery_capacity < BATTERY_CAPACITY_MIN)
|
|
|
|
battery_capacity = BATTERY_CAPACITY_MIN;
|
|
|
|
}
|
2002-08-06 10:50:50 +00:00
|
|
|
|
2002-12-03 14:18:51 +00:00
|
|
|
int battery_time(void)
|
|
|
|
{
|
|
|
|
return powermgmt_est_runningtime_min;
|
|
|
|
}
|
|
|
|
|
2003-03-04 05:59:38 +00:00
|
|
|
/* look into the percent_to_volt_* table and get a realistic battery level
|
|
|
|
percentage */
|
2005-01-30 16:25:46 +00:00
|
|
|
int voltage_to_percent(int voltage, const short* table)
|
2002-12-03 14:18:51 +00:00
|
|
|
{
|
|
|
|
if (voltage <= table[0])
|
|
|
|
return 0;
|
|
|
|
else
|
2003-03-04 05:59:38 +00:00
|
|
|
if (voltage >= table[10])
|
|
|
|
return 100;
|
|
|
|
else {
|
|
|
|
/* search nearest value */
|
|
|
|
int i = 0;
|
|
|
|
while ((i < 10) && (table[i+1] < voltage))
|
|
|
|
i++;
|
|
|
|
/* interpolate linear between the smaller and greater value */
|
|
|
|
return i * 10 /* 10th */
|
|
|
|
+ (voltage - table[i]) *
|
|
|
|
10 / (table[i+1] - table[i]); /* 1th */
|
|
|
|
}
|
2002-12-03 14:18:51 +00:00
|
|
|
}
|
|
|
|
|
2002-12-18 18:55:50 +00:00
|
|
|
/* update battery level, called only once per minute */
|
|
|
|
void battery_level_update(void)
|
2002-08-07 11:30:39 +00:00
|
|
|
{
|
2005-03-03 07:25:43 +00:00
|
|
|
int level;
|
2002-08-07 11:30:39 +00:00
|
|
|
|
2005-03-03 07:25:43 +00:00
|
|
|
level = battery_centivolts;
|
2002-08-07 11:30:39 +00:00
|
|
|
if(level > BATTERY_LEVEL_FULL)
|
|
|
|
level = BATTERY_LEVEL_FULL;
|
|
|
|
|
|
|
|
if(level < BATTERY_LEVEL_EMPTY)
|
|
|
|
level = BATTERY_LEVEL_EMPTY;
|
|
|
|
|
2002-12-03 14:18:51 +00:00
|
|
|
#ifdef HAVE_CHARGE_CTRL
|
2005-03-03 07:25:43 +00:00
|
|
|
if (charge_state == DISCHARGING) {
|
2005-01-30 16:25:46 +00:00
|
|
|
level = voltage_to_percent(level,
|
2005-03-03 07:25:43 +00:00
|
|
|
percent_to_volt_discharge[battery_type]);
|
2003-03-04 05:59:38 +00:00
|
|
|
}
|
2005-03-03 07:25:43 +00:00
|
|
|
else if (charge_state == CHARGING) {
|
2003-03-04 05:59:38 +00:00
|
|
|
level = voltage_to_percent(level, percent_to_volt_charge);
|
|
|
|
}
|
2005-03-03 07:25:43 +00:00
|
|
|
else {/* in trickle charge, the battery is by definition 100% full */
|
|
|
|
battery_percent = level = 100;
|
2002-12-03 14:18:51 +00:00
|
|
|
}
|
|
|
|
#else
|
2005-03-03 07:25:43 +00:00
|
|
|
/* always use the discharge table */
|
2005-01-30 16:25:46 +00:00
|
|
|
level = voltage_to_percent(level,
|
2005-03-03 07:25:43 +00:00
|
|
|
percent_to_volt_discharge[battery_type]);
|
2002-12-03 14:18:51 +00:00
|
|
|
#endif
|
|
|
|
|
2004-10-15 18:52:54 +00:00
|
|
|
#ifndef HAVE_MMC /* this adjustment is only needed for HD based */
|
2005-03-03 07:25:43 +00:00
|
|
|
if (battery_percent == -1) { /* first run of this procedure */
|
|
|
|
/* The battery voltage is usually a little lower directly after
|
|
|
|
turning on, because the disk was used heavily. Raise it by 5. % */
|
|
|
|
battery_percent = (level > 95) ? 100 : level + 5;
|
2003-03-04 05:59:38 +00:00
|
|
|
}
|
2004-10-15 18:52:54 +00:00
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
2003-09-22 13:26:24 +00:00
|
|
|
/* the level is allowed to be -1 of the last value when usb not
|
|
|
|
connected and to be -3 of the last value when usb is connected */
|
2002-12-18 18:55:50 +00:00
|
|
|
if (usb_inserted()) {
|
2005-03-03 07:25:43 +00:00
|
|
|
if (level < battery_percent - 3)
|
|
|
|
level = battery_percent - 3;
|
2003-03-04 05:59:38 +00:00
|
|
|
}
|
|
|
|
else {
|
2005-03-03 07:25:43 +00:00
|
|
|
if (level < battery_percent - 1)
|
|
|
|
level = battery_percent - 1;
|
2002-12-18 18:55:50 +00:00
|
|
|
}
|
2005-03-03 07:25:43 +00:00
|
|
|
battery_percent = level;
|
2002-12-18 18:55:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns battery level in percent */
|
|
|
|
int battery_level(void)
|
|
|
|
{
|
2003-06-09 21:02:13 +00:00
|
|
|
#ifdef HAVE_CHARGE_CTRL
|
2005-03-03 07:25:43 +00:00
|
|
|
if ((charge_state == CHARGING) && (battery_percent == 100))
|
2003-06-09 21:02:13 +00:00
|
|
|
return 99;
|
|
|
|
#endif
|
2005-03-03 07:25:43 +00:00
|
|
|
return battery_percent;
|
2002-08-07 11:30:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Tells if the battery level is safe for disk writes */
|
|
|
|
bool battery_level_safe(void)
|
|
|
|
{
|
2005-03-03 07:25:43 +00:00
|
|
|
return battery_centivolts > BATTERY_LEVEL_DANGEROUS;
|
2002-08-07 11:30:39 +00:00
|
|
|
}
|
|
|
|
|
2002-09-23 11:42:48 +00:00
|
|
|
void set_poweroff_timeout(int timeout)
|
|
|
|
{
|
|
|
|
poweroff_timeout = timeout;
|
|
|
|
}
|
|
|
|
|
2002-12-03 22:41:50 +00:00
|
|
|
void set_sleep_timer(int seconds)
|
|
|
|
{
|
2003-03-04 05:59:38 +00:00
|
|
|
if(seconds) {
|
2002-12-03 22:41:50 +00:00
|
|
|
sleeptimer_active = true;
|
|
|
|
sleeptimer_endtick = current_tick + seconds * HZ;
|
|
|
|
}
|
2003-03-04 05:59:38 +00:00
|
|
|
else {
|
2002-12-03 22:41:50 +00:00
|
|
|
sleeptimer_active = false;
|
|
|
|
sleeptimer_endtick = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int get_sleep_timer(void)
|
|
|
|
{
|
|
|
|
if(sleeptimer_active)
|
|
|
|
return (sleeptimer_endtick - current_tick) / HZ;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-09-24 07:50:17 +00:00
|
|
|
/* We shut off in the following cases:
|
2002-09-26 22:34:35 +00:00
|
|
|
1) The unit is idle, not playing music
|
2002-09-24 07:50:17 +00:00
|
|
|
2) The unit is playing music, but is paused
|
|
|
|
|
2002-09-26 22:34:35 +00:00
|
|
|
We do not shut off in the following cases:
|
|
|
|
1) The USB is connected
|
|
|
|
2) The charger is connected
|
|
|
|
3) We are recording, or recording with pause
|
2002-09-24 07:50:17 +00:00
|
|
|
*/
|
2002-09-23 11:42:48 +00:00
|
|
|
static void handle_auto_poweroff(void)
|
|
|
|
{
|
|
|
|
long timeout = poweroff_idle_timeout_value[poweroff_timeout]*60*HZ;
|
2005-03-03 07:25:43 +00:00
|
|
|
int mpeg_stat = mpeg_status();
|
|
|
|
#ifdef HAVE_CHARGING
|
2002-09-26 22:34:35 +00:00
|
|
|
bool charger_is_inserted = charger_inserted();
|
2005-03-03 07:25:43 +00:00
|
|
|
#endif
|
2002-09-24 07:50:17 +00:00
|
|
|
|
2005-03-03 07:25:43 +00:00
|
|
|
#ifdef HAVE_CHARGING
|
2002-09-26 22:34:35 +00:00
|
|
|
/* The was_inserted thing prevents the unit to shut down immediately
|
|
|
|
when the charger is extracted */
|
|
|
|
if(charger_is_inserted || charger_was_inserted)
|
|
|
|
{
|
2002-09-24 07:50:17 +00:00
|
|
|
last_charge_time = current_tick;
|
2002-09-26 22:34:35 +00:00
|
|
|
}
|
|
|
|
charger_was_inserted = charger_is_inserted;
|
2005-03-03 07:25:43 +00:00
|
|
|
#endif
|
2002-09-23 11:42:48 +00:00
|
|
|
|
2002-09-24 07:50:17 +00:00
|
|
|
if(timeout &&
|
2004-09-28 22:13:26 +00:00
|
|
|
#ifdef CONFIG_TUNER
|
2004-10-19 08:20:38 +00:00
|
|
|
(radio_get_status() != FMRADIO_PLAYING) &&
|
2003-05-03 15:39:40 +00:00
|
|
|
#endif
|
2002-09-25 19:25:10 +00:00
|
|
|
!usb_inserted() &&
|
2005-03-03 07:25:43 +00:00
|
|
|
((mpeg_stat == 0) ||
|
2003-10-17 14:49:00 +00:00
|
|
|
((mpeg_stat == (MPEG_STATUS_PLAY | MPEG_STATUS_PAUSE)) &&
|
|
|
|
!sleeptimer_active)))
|
2002-09-23 11:42:48 +00:00
|
|
|
{
|
2004-06-22 07:16:31 +00:00
|
|
|
if(TIME_AFTER(current_tick, last_event_tick + timeout) &&
|
2003-11-25 12:00:25 +00:00
|
|
|
TIME_AFTER(current_tick, last_disk_activity + timeout) &&
|
|
|
|
TIME_AFTER(current_tick, last_charge_time + timeout))
|
2003-10-17 14:05:32 +00:00
|
|
|
{
|
2005-02-06 09:57:57 +00:00
|
|
|
shutdown_hw();
|
2003-10-17 14:05:32 +00:00
|
|
|
}
|
2002-09-23 11:42:48 +00:00
|
|
|
}
|
2002-12-03 22:41:50 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Handle sleeptimer */
|
2003-10-17 14:05:32 +00:00
|
|
|
if(sleeptimer_active && !usb_inserted())
|
2002-12-03 22:41:50 +00:00
|
|
|
{
|
|
|
|
if(TIME_AFTER(current_tick, sleeptimer_endtick))
|
|
|
|
{
|
2003-10-17 14:05:32 +00:00
|
|
|
mpeg_stop();
|
2005-03-03 07:25:43 +00:00
|
|
|
#ifdef HAVE_CHARGING
|
2002-12-04 12:53:10 +00:00
|
|
|
if(charger_is_inserted)
|
|
|
|
{
|
2003-03-07 14:13:58 +00:00
|
|
|
DEBUGF("Sleep timer timeout. Stopping...\n");
|
2003-10-17 14:05:32 +00:00
|
|
|
set_sleep_timer(0);
|
2004-07-15 05:24:34 +00:00
|
|
|
backlight_off(); /* Nighty, nighty... */
|
2002-12-04 12:53:10 +00:00
|
|
|
}
|
|
|
|
else
|
2005-03-03 07:25:43 +00:00
|
|
|
#endif
|
2002-12-04 12:53:10 +00:00
|
|
|
{
|
|
|
|
DEBUGF("Sleep timer timeout. Shutting off...\n");
|
2004-06-14 05:03:49 +00:00
|
|
|
/* Make sure that the disk isn't spinning when
|
|
|
|
we cut the power */
|
|
|
|
while(ata_disk_is_active())
|
|
|
|
sleep(HZ);
|
2005-02-06 09:57:57 +00:00
|
|
|
shutdown_hw();
|
2002-12-04 12:53:10 +00:00
|
|
|
}
|
2002-12-03 22:41:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-09-23 11:42:48 +00:00
|
|
|
}
|
|
|
|
|
2003-10-17 14:49:00 +00:00
|
|
|
void set_car_adapter_mode(bool setting)
|
|
|
|
{
|
|
|
|
car_adapter_mode_enabled = setting;
|
|
|
|
}
|
|
|
|
|
2004-10-15 18:18:15 +00:00
|
|
|
#ifdef HAVE_CHARGING
|
2003-10-17 14:49:00 +00:00
|
|
|
static void car_adapter_mode_processing(void)
|
|
|
|
{
|
|
|
|
static bool waiting_to_resume_play = false;
|
|
|
|
static long play_resume_time;
|
|
|
|
|
|
|
|
if (car_adapter_mode_enabled) {
|
|
|
|
|
|
|
|
if (waiting_to_resume_play) {
|
|
|
|
if (TIME_AFTER(current_tick, play_resume_time)) {
|
|
|
|
if (mpeg_status() & MPEG_STATUS_PAUSE) {
|
|
|
|
mpeg_resume();
|
|
|
|
}
|
|
|
|
waiting_to_resume_play = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (charger_power_is_on) {
|
|
|
|
|
|
|
|
/* if external power was turned off */
|
|
|
|
if (!charger_inserted()) {
|
|
|
|
|
|
|
|
charger_power_is_on = false;
|
|
|
|
|
|
|
|
/* if playing */
|
|
|
|
if ((mpeg_status() & MPEG_STATUS_PLAY) &&
|
|
|
|
!(mpeg_status() & MPEG_STATUS_PAUSE)) {
|
|
|
|
mpeg_pause();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* if external power was turned on */
|
|
|
|
if (charger_inserted()) {
|
|
|
|
|
|
|
|
charger_power_is_on = true;
|
|
|
|
|
|
|
|
/* if paused */
|
|
|
|
if (mpeg_status() & MPEG_STATUS_PAUSE) {
|
|
|
|
/* delay resume a bit while the engine is cranking */
|
|
|
|
play_resume_time = current_tick + HZ*5;
|
|
|
|
waiting_to_resume_play = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-10-15 18:18:15 +00:00
|
|
|
#endif
|
2003-10-17 14:49:00 +00:00
|
|
|
|
2005-03-03 07:25:43 +00:00
|
|
|
/*
|
|
|
|
* Estimate how much current we are drawing just to run.
|
|
|
|
*/
|
|
|
|
static int runcurrent(void)
|
|
|
|
{
|
|
|
|
int current;
|
|
|
|
|
|
|
|
current = CURRENT_NORMAL;
|
|
|
|
if(usb_inserted()) {
|
|
|
|
current = CURRENT_USB;
|
|
|
|
}
|
|
|
|
#ifdef HAVE_CHARGE_CTRL
|
|
|
|
if ((backlight_get_timeout() == 1) || /* LED always on */
|
|
|
|
(charger_inserted() && backlight_get_on_when_charging())) {
|
|
|
|
current += CURRENT_BACKLIGHT;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
if (backlight_get_timeout() == 1) { /* LED always on */
|
|
|
|
current += CURRENT_BACKLIGHT;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return(current);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-02-06 17:21:42 +00:00
|
|
|
/* Check to see whether or not we've received an alarm in the last second */
|
|
|
|
#ifdef HAVE_ALARM_MOD
|
|
|
|
static void power_thread_rtc_process(void)
|
|
|
|
{
|
2005-02-16 12:18:16 +00:00
|
|
|
if (rtc_check_alarm_flag()) {
|
2005-03-03 07:25:43 +00:00
|
|
|
rtc_enable_alarm(false);
|
2005-02-16 12:18:16 +00:00
|
|
|
}
|
2005-02-06 17:21:42 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2003-10-17 14:49:00 +00:00
|
|
|
/*
|
|
|
|
* This function is called to do the relativly long sleep waits from within the
|
|
|
|
* main power_thread loop while at the same time servicing any other periodic
|
|
|
|
* functions in the power thread which need to be called at a faster periodic
|
2005-03-03 07:25:43 +00:00
|
|
|
* rate than the slow periodic rate of the main power_thread loop.
|
|
|
|
*
|
|
|
|
* While we are waiting for the time to expire, we average the battery
|
|
|
|
* voltages.
|
2003-10-17 14:49:00 +00:00
|
|
|
*/
|
|
|
|
static void power_thread_sleep(int ticks)
|
|
|
|
{
|
2005-03-03 07:25:43 +00:00
|
|
|
int small_ticks;
|
2004-10-15 18:18:15 +00:00
|
|
|
#ifdef HAVE_CHARGING
|
2005-03-03 07:25:43 +00:00
|
|
|
bool charger_plugged;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_CHARGING
|
|
|
|
charger_plugged = charger_inserted();
|
|
|
|
#endif
|
2003-10-17 14:49:00 +00:00
|
|
|
while (ticks > 0) {
|
2005-03-03 07:25:43 +00:00
|
|
|
small_ticks = MIN(HZ/2, ticks);
|
2003-10-17 14:49:00 +00:00
|
|
|
sleep(small_ticks);
|
|
|
|
ticks -= small_ticks;
|
|
|
|
|
2005-03-03 07:25:43 +00:00
|
|
|
#ifdef HAVE_CHARGING
|
2003-10-17 14:49:00 +00:00
|
|
|
car_adapter_mode_processing();
|
2005-03-03 07:25:43 +00:00
|
|
|
#endif
|
2005-02-06 17:21:42 +00:00
|
|
|
#ifdef HAVE_ALARM_MOD
|
2005-03-03 07:25:43 +00:00
|
|
|
power_thread_rtc_process();
|
2005-02-06 17:21:42 +00:00
|
|
|
#endif
|
2005-03-03 07:25:43 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Do a digital exponential filter. We don't sample the battery if
|
|
|
|
* the disk is spinning unless we are in USB mode (the disk will most
|
|
|
|
* likely always be spinning in USB mode).
|
|
|
|
* If the charging voltage is greater than 0x3F0 charging isn't active
|
|
|
|
* and that voltage isn't valid.
|
|
|
|
*/
|
|
|
|
if (!ata_disk_is_active() || usb_inserted()) {
|
|
|
|
avgbat = avgbat - (avgbat / BATT_AVE_SAMPLES) +
|
|
|
|
adc_read(ADC_UNREG_POWER);
|
|
|
|
/*
|
|
|
|
* battery_centivolts is the centivolt-scaled filtered battery value.
|
|
|
|
*/
|
|
|
|
battery_centivolts = ((avgbat / BATT_AVE_SAMPLES) * BATTERY_SCALE_FACTOR) / 10000;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_CHARGING
|
|
|
|
/* If the charger was plugged in, exit now so we can start charging */
|
|
|
|
if(!charger_plugged && charger_inserted())
|
|
|
|
return;
|
2004-10-15 18:18:15 +00:00
|
|
|
#endif
|
2005-03-03 07:25:43 +00:00
|
|
|
}
|
2003-10-17 14:49:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-08-06 10:50:50 +00:00
|
|
|
/*
|
|
|
|
* This power thread maintains a history of battery voltage
|
2002-08-12 12:19:25 +00:00
|
|
|
* and implements a charging algorithm.
|
2002-12-14 12:10:29 +00:00
|
|
|
* For a complete description of the charging algorithm read
|
|
|
|
* docs/CHARGING_ALGORITHM.
|
2002-08-06 10:50:50 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
static void power_thread(void)
|
|
|
|
{
|
|
|
|
int i;
|
2005-03-03 07:25:43 +00:00
|
|
|
short *phps, *phpd; /* power history rotation pointers */
|
2004-10-08 17:45:52 +00:00
|
|
|
#if CONFIG_BATTERY == BATT_LIION2200
|
2004-02-05 13:44:04 +00:00
|
|
|
int charging_current;
|
|
|
|
#endif
|
2002-08-06 10:50:50 +00:00
|
|
|
#ifdef HAVE_CHARGE_CTRL
|
2003-03-04 05:59:38 +00:00
|
|
|
int charge_max_time_now = 0; /* max. charging duration, calculated at
|
|
|
|
beginning of charging */
|
2002-08-06 10:50:50 +00:00
|
|
|
#endif
|
2005-03-03 07:25:43 +00:00
|
|
|
|
|
|
|
/* initialize the voltages for the exponential filter */
|
2002-08-06 10:50:50 +00:00
|
|
|
|
2005-03-03 07:25:43 +00:00
|
|
|
avgbat = adc_read(ADC_UNREG_POWER) * BATT_AVE_SAMPLES;
|
|
|
|
battery_centivolts = ((avgbat / BATT_AVE_SAMPLES) * BATTERY_SCALE_FACTOR) / 10000;
|
|
|
|
|
|
|
|
#if defined(DEBUG_FILE) && defined(HAVE_CHARGE_CTRL)
|
|
|
|
fd = -1;
|
|
|
|
#endif
|
|
|
|
|
2002-08-06 10:50:50 +00:00
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
/* rotate the power history */
|
2005-03-03 07:25:43 +00:00
|
|
|
phpd = &power_history[POWER_HISTORY_LEN - 1];
|
|
|
|
phps = phpd - 1;
|
2002-08-06 10:50:50 +00:00
|
|
|
for (i = 0; i < POWER_HISTORY_LEN-1; i++)
|
2005-03-03 07:25:43 +00:00
|
|
|
*phpd-- = *phps--;
|
2002-08-06 10:50:50 +00:00
|
|
|
|
2005-03-03 07:25:43 +00:00
|
|
|
/* insert new value at the start, in centivolts 8-) */
|
|
|
|
power_history[0] = battery_centivolts;
|
|
|
|
|
|
|
|
/* update battery level every minute */
|
|
|
|
battery_level_update();
|
2002-12-18 18:55:50 +00:00
|
|
|
|
2002-12-03 14:18:51 +00:00
|
|
|
/* calculate estimated remaining running time */
|
2005-03-03 07:25:43 +00:00
|
|
|
/* discharging: remaining running time */
|
|
|
|
/* charging: remaining charging time */
|
2002-12-14 12:10:29 +00:00
|
|
|
|
2003-03-04 05:59:38 +00:00
|
|
|
powermgmt_est_runningtime_min = battery_level() *
|
2005-03-03 07:25:43 +00:00
|
|
|
battery_capacity / 100 * 60 / runcurrent();
|
2003-03-03 13:23:11 +00:00
|
|
|
#if MEM == 8 /* assuming 192 kbps, the running time is 22% longer with 8MB */
|
2003-03-04 05:59:38 +00:00
|
|
|
powermgmt_est_runningtime_min =
|
|
|
|
powermgmt_est_runningtime_min * 122 / 100;
|
2003-03-03 13:23:11 +00:00
|
|
|
#endif /* MEM == 8 */
|
2005-03-03 07:25:43 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_CHARGE_CTRL
|
|
|
|
/*
|
|
|
|
* If we are charging, the "runtime" is estimated time till the battery
|
|
|
|
* is recharged.
|
|
|
|
*/
|
|
|
|
// TBD: use real charging current estimate
|
|
|
|
if (charge_state == CHARGING) {
|
|
|
|
powermgmt_est_runningtime_min = (100 - battery_level()) *
|
|
|
|
battery_capacity / 100 * 60 / (CURRENT_MAX_CHG - runcurrent());
|
|
|
|
}
|
|
|
|
#endif /* HAVE_CHARGE_CTRL */
|
2003-03-03 13:23:11 +00:00
|
|
|
|
2004-10-08 17:45:52 +00:00
|
|
|
#if CONFIG_BATTERY == BATT_LIION2200
|
2004-02-05 13:44:04 +00:00
|
|
|
/* We use the information from the ADC_EXT_POWER ADC channel, which
|
|
|
|
tells us the charging current from the LTC1734. When DC is
|
|
|
|
connected (either via the external adapter, or via USB), we try
|
|
|
|
to determine if it is actively charging or only maintaining the
|
|
|
|
charge. My tests show that ADC readings is below about 0x80 means
|
|
|
|
that the LTC1734 is only maintaining the charge. */
|
|
|
|
if(charger_inserted()) {
|
|
|
|
charging_current = adc_read(ADC_EXT_POWER);
|
|
|
|
if(charging_current < 0x80) {
|
2005-03-03 07:25:43 +00:00
|
|
|
charge_state = TRICKLE;
|
2004-02-05 13:44:04 +00:00
|
|
|
} else {
|
2005-03-03 07:25:43 +00:00
|
|
|
charge_state = CHARGING;
|
2004-02-05 13:44:04 +00:00
|
|
|
}
|
|
|
|
} else {
|
2005-03-03 07:25:43 +00:00
|
|
|
charge_state = DISCHARGING;
|
2004-02-05 13:44:04 +00:00
|
|
|
}
|
2005-03-03 07:25:43 +00:00
|
|
|
#endif /* # if CONFIG_BATTERY == BATT_LIION2200 */
|
|
|
|
|
2002-08-06 10:50:50 +00:00
|
|
|
#ifdef HAVE_CHARGE_CTRL
|
2002-12-03 14:18:51 +00:00
|
|
|
|
2002-08-06 10:50:50 +00:00
|
|
|
if (charger_inserted()) {
|
2005-03-03 07:25:43 +00:00
|
|
|
/*
|
|
|
|
* Time to start charging again?
|
|
|
|
* 1) If we are currently discharging but trickle is enabled,
|
|
|
|
* the charger must have just been plugged in.
|
|
|
|
* 2) If our battery level falls below the restart level, charge!
|
|
|
|
*/
|
2005-03-03 08:32:55 +00:00
|
|
|
if ((charge_state == DISCHARGING) ||
|
|
|
|
(battery_level() < CHARGE_RESTART)) {
|
2005-03-03 07:25:43 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If the battery level is nearly charged, just trickle.
|
|
|
|
* If the battery is in between, top-off and then trickle.
|
|
|
|
*/
|
2005-03-03 08:32:55 +00:00
|
|
|
if(battery_percent > CHARGE_RESTART) {
|
2005-03-03 07:25:43 +00:00
|
|
|
powermgmt_last_cycle_level = battery_percent;
|
2002-12-03 14:18:51 +00:00
|
|
|
powermgmt_last_cycle_startstop_min = 0;
|
2005-03-03 07:25:43 +00:00
|
|
|
if(battery_percent >= 95) {
|
|
|
|
trickle_sec = START_TRICKLE_SEC;
|
|
|
|
charge_state = TRICKLE;
|
|
|
|
} else {
|
|
|
|
trickle_sec = START_TOPOFF_SEC;
|
|
|
|
charge_state = TOPOFF;
|
|
|
|
}
|
2002-08-06 10:50:50 +00:00
|
|
|
} else {
|
2005-03-03 07:25:43 +00:00
|
|
|
/*
|
|
|
|
* Start the charger full strength
|
|
|
|
*/
|
|
|
|
i = CHARGE_MAX_TIME_1500 * battery_capacity / 1500;
|
|
|
|
charge_max_time_now =
|
|
|
|
i * (100 + 35 - battery_percent) / 100;
|
|
|
|
if (charge_max_time_now > i) {
|
|
|
|
charge_max_time_now = i;
|
|
|
|
}
|
|
|
|
snprintf(power_message, POWER_MESSAGE_LEN,
|
|
|
|
"ChgAt %d%% max %dm", battery_level(),
|
|
|
|
charge_max_time_now);
|
|
|
|
|
|
|
|
/* enable the charger after the max time calc is done,
|
|
|
|
because battery_level depends on if the charger is
|
|
|
|
on */
|
|
|
|
DEBUGF("power: charger inserted and battery"
|
|
|
|
" not full, enabling\n");
|
|
|
|
powermgmt_last_cycle_level = battery_percent;
|
|
|
|
powermgmt_last_cycle_startstop_min = 0;
|
|
|
|
trickle_sec = 60;
|
|
|
|
charge_state = CHARGING;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (charge_state == CHARGING) {
|
|
|
|
/* charger inserted and enabled 100% of the time */
|
|
|
|
trickle_sec = 60; /* 100% on */
|
|
|
|
|
|
|
|
snprintf(power_message, POWER_MESSAGE_LEN,
|
|
|
|
"Chg %dm, max %dm", powermgmt_last_cycle_startstop_min,
|
|
|
|
charge_max_time_now);
|
|
|
|
/*
|
|
|
|
* Sum the deltas over the last X minutes so we can do our
|
|
|
|
* end-of-charge logic based on the battery level change.
|
|
|
|
*/
|
|
|
|
long_delta = short_delta = 999999;
|
|
|
|
if (powermgmt_last_cycle_startstop_min > CHARGE_MIN_TIME) {
|
|
|
|
short_delta = power_history[0] -
|
|
|
|
power_history[CHARGE_END_NEGD - 1];
|
|
|
|
}
|
|
|
|
if (powermgmt_last_cycle_startstop_min > CHARGE_END_ZEROD) {
|
|
|
|
/*
|
|
|
|
* Scan the history: if we have a big delta in the middle of
|
|
|
|
* our history, the long term delta isn't a valid end-of-charge
|
|
|
|
* indicator.
|
|
|
|
*/
|
|
|
|
long_delta = power_history[0] -
|
|
|
|
power_history[CHARGE_END_ZEROD - 1];
|
|
|
|
for(i = 0; i < CHARGE_END_ZEROD; i++) {
|
|
|
|
if(((power_history[i] - power_history[i+1]) > 5) ||
|
|
|
|
((power_history[i] - power_history[i+1]) < -5)) {
|
|
|
|
long_delta = 888888;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* End of charge criteria (any qualify):
|
|
|
|
* 1) Charged a long time
|
|
|
|
* 2) DeltaV went negative for a short time
|
|
|
|
* 3) DeltaV was close to zero for a long time
|
|
|
|
* Note: short_delta and long_delta are centivolts
|
|
|
|
*/
|
|
|
|
if ((powermgmt_last_cycle_startstop_min > charge_max_time_now) ||
|
|
|
|
(short_delta < -5) || (long_delta < 5))
|
|
|
|
{
|
|
|
|
if (powermgmt_last_cycle_startstop_min > charge_max_time_now) {
|
|
|
|
DEBUGF("power: powermgmt_last_cycle_startstop_min > charge_max_time_now, "
|
|
|
|
"enough!\n");
|
|
|
|
/* have charged too long and deltaV detection did not
|
|
|
|
work! */
|
|
|
|
snprintf(power_message, POWER_MESSAGE_LEN,
|
|
|
|
"Chg tmout %d min", charge_max_time_now);
|
|
|
|
} else {
|
|
|
|
if(short_delta < -5) {
|
2003-03-04 05:59:38 +00:00
|
|
|
DEBUGF("power: short-term negative"
|
|
|
|
" delta, enough!\n");
|
|
|
|
snprintf(power_message, POWER_MESSAGE_LEN,
|
2005-03-03 07:25:43 +00:00
|
|
|
"end negd %d %dmin", short_delta,
|
|
|
|
powermgmt_last_cycle_startstop_min);
|
2002-08-06 10:50:50 +00:00
|
|
|
} else {
|
2005-03-03 07:25:43 +00:00
|
|
|
DEBUGF("power: long-term small "
|
|
|
|
"positive delta, enough!\n");
|
|
|
|
snprintf(power_message, POWER_MESSAGE_LEN,
|
|
|
|
"end lowd %d %dmin", long_delta,
|
|
|
|
powermgmt_last_cycle_startstop_min);
|
2002-08-06 10:50:50 +00:00
|
|
|
}
|
|
|
|
}
|
2005-03-03 07:25:43 +00:00
|
|
|
/* Switch to trickle charging. We skip the top-off
|
|
|
|
since we've effectively done the top-off operation
|
|
|
|
already since we charged for the maximum full
|
|
|
|
charge time. For trickle charging, we use 0.05C */
|
|
|
|
powermgmt_last_cycle_level = battery_percent;
|
|
|
|
powermgmt_last_cycle_startstop_min = 0;
|
2005-03-03 08:32:55 +00:00
|
|
|
|
|
|
|
trickle_sec = START_TRICKLE_SEC;
|
|
|
|
charge_state = TRICKLE;
|
2002-08-06 10:50:50 +00:00
|
|
|
}
|
2003-03-04 05:59:38 +00:00
|
|
|
}
|
2005-03-03 07:25:43 +00:00
|
|
|
else if (charge_state > CHARGING) /* top off or trickle */
|
|
|
|
{
|
|
|
|
/* Time to switch from topoff to trickle? Note that we don't
|
|
|
|
* adjust trickle_sec: it will get adjusted down by the
|
|
|
|
* charge level adjustment in the loop and will drift down
|
|
|
|
* from the topoff level to the trickle level.
|
|
|
|
*/
|
|
|
|
if ((charge_state == TOPOFF) &&
|
|
|
|
(powermgmt_last_cycle_startstop_min > TOPOFF_MAX_TIME))
|
|
|
|
{
|
|
|
|
powermgmt_last_cycle_level = battery_percent;
|
2002-12-18 18:55:50 +00:00
|
|
|
powermgmt_last_cycle_startstop_min = 0;
|
2005-03-03 07:25:43 +00:00
|
|
|
charge_state = TRICKLE;
|
2002-12-15 18:08:06 +00:00
|
|
|
}
|
2002-12-14 15:48:08 +00:00
|
|
|
|
2005-03-03 07:25:43 +00:00
|
|
|
/* Adjust trickle charge time. I considered setting the level
|
|
|
|
* higher if the USB is plugged in, but it doesn't appear to
|
|
|
|
* be necessary and will generate more heat [gvb].
|
|
|
|
*/
|
|
|
|
if(((charge_state == TOPOFF) && (battery_centivolts > TOPOFF_VOLTAGE)) ||
|
|
|
|
((charge_state == TRICKLE) && (battery_centivolts > TRICKLE_VOLTAGE)))
|
|
|
|
{ /* charging too much */
|
|
|
|
if(trickle_sec > 0)
|
|
|
|
trickle_sec--;
|
|
|
|
}
|
|
|
|
else { /* charging too little */
|
|
|
|
if(trickle_sec < 60)
|
|
|
|
trickle_sec++;
|
|
|
|
}
|
2002-12-15 18:08:06 +00:00
|
|
|
|
2005-03-03 07:25:43 +00:00
|
|
|
} else if (charge_state == DISCHARGING) {
|
|
|
|
trickle_sec = 0;
|
2003-03-04 05:59:38 +00:00
|
|
|
/* the charger is enabled here only in one case: if it was
|
|
|
|
turned on at boot time (power_init) */
|
2002-12-15 18:08:06 +00:00
|
|
|
/* turn it off now */
|
|
|
|
if (charger_enabled)
|
|
|
|
charger_enable(false);
|
2003-01-19 20:42:09 +00:00
|
|
|
}
|
2002-08-06 10:50:50 +00:00
|
|
|
} else {
|
2005-03-03 07:25:43 +00:00
|
|
|
if (charge_state != DISCHARGING) {
|
2002-08-06 10:50:50 +00:00
|
|
|
/* charger not inserted but was enabled */
|
|
|
|
DEBUGF("power: charger disconnected, disabling\n");
|
2005-03-03 07:25:43 +00:00
|
|
|
|
|
|
|
charger_enable(false);
|
|
|
|
powermgmt_last_cycle_level = battery_percent;
|
2002-12-18 18:55:50 +00:00
|
|
|
powermgmt_last_cycle_startstop_min = 0;
|
2002-12-15 18:08:06 +00:00
|
|
|
trickle_sec = 0;
|
2005-03-03 07:25:43 +00:00
|
|
|
charge_state = DISCHARGING;
|
|
|
|
snprintf(power_message, POWER_MESSAGE_LEN, "Charger: discharge");
|
2002-08-06 10:50:50 +00:00
|
|
|
}
|
|
|
|
}
|
2002-12-03 14:18:51 +00:00
|
|
|
powermgmt_last_cycle_startstop_min++;
|
|
|
|
|
2002-08-06 10:50:50 +00:00
|
|
|
#endif /* HAVE_CHARGE_CTRL*/
|
2005-03-03 07:25:43 +00:00
|
|
|
|
|
|
|
/* sleep for a minute */
|
|
|
|
|
2002-12-14 12:10:29 +00:00
|
|
|
#ifdef HAVE_CHARGE_CTRL
|
2005-03-03 07:25:43 +00:00
|
|
|
if(trickle_sec > 0) {
|
|
|
|
charger_enable(true);
|
|
|
|
power_thread_sleep(HZ * trickle_sec);
|
|
|
|
}
|
|
|
|
if(trickle_sec < 60)
|
|
|
|
charger_enable(false);
|
|
|
|
power_thread_sleep(HZ * (60 - trickle_sec));
|
2002-12-14 12:10:29 +00:00
|
|
|
#else
|
2005-03-03 07:25:43 +00:00
|
|
|
power_thread_sleep(HZ * 60);
|
2002-12-14 12:10:29 +00:00
|
|
|
#endif
|
2002-09-23 11:42:48 +00:00
|
|
|
|
2005-03-03 07:25:43 +00:00
|
|
|
#if defined(DEBUG_FILE) && defined(HAVE_CHARGE_CTRL)
|
|
|
|
if((fd < 0) && !usb_inserted()) {
|
|
|
|
fd = open(DEBUG_FILE_NAME, O_WRONLY | O_APPEND | O_CREAT);
|
|
|
|
snprintf(debug_message, DEBUG_MESSAGE_LEN,
|
|
|
|
"cycle_min, bat_centivolts, bat_percent, chgr, chg_state, trickle_sec\n");
|
|
|
|
write(fd, debug_message, strlen(debug_message));
|
|
|
|
fsync(fd);
|
|
|
|
} else if((fd >= 0) && !usb_inserted()) {
|
|
|
|
snprintf(debug_message, DEBUG_MESSAGE_LEN, "%d, %d, %d, %d, %d, %d\n",
|
|
|
|
powermgmt_last_cycle_startstop_min, battery_centivolts,
|
|
|
|
battery_percent, charger_inserted(), charge_state, trickle_sec);
|
|
|
|
write(fd, debug_message, strlen(debug_message));
|
|
|
|
fsync(fd);
|
|
|
|
} else if((fd >= 0) && usb_inserted()) {
|
|
|
|
/* NOTE: It is probably already TOO LATE to close the file */
|
|
|
|
close(fd);
|
|
|
|
fd = -1;
|
|
|
|
}
|
|
|
|
#endif
|
2002-09-23 11:42:48 +00:00
|
|
|
handle_auto_poweroff();
|
2002-08-06 10:50:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-08-25 08:57:49 +00:00
|
|
|
void powermgmt_init(void)
|
2002-08-06 10:50:50 +00:00
|
|
|
{
|
2003-08-25 08:57:49 +00:00
|
|
|
power_init();
|
|
|
|
|
2002-08-06 10:50:50 +00:00
|
|
|
/* init history to 0 */
|
|
|
|
memset(power_history, 0x00, sizeof(power_history));
|
2003-11-19 14:14:41 +00:00
|
|
|
|
2005-03-03 07:25:43 +00:00
|
|
|
#ifdef HAVE_CHARGING
|
2004-07-14 11:25:14 +00:00
|
|
|
charger_power_is_on = charger_inserted();
|
2005-03-03 07:25:43 +00:00
|
|
|
#endif
|
2004-07-14 11:25:14 +00:00
|
|
|
|
2003-03-04 05:59:38 +00:00
|
|
|
create_thread(power_thread, power_stack, sizeof(power_stack),
|
|
|
|
power_thread_name);
|
2002-08-06 10:50:50 +00:00
|
|
|
}
|
|
|
|
|
2002-08-07 11:30:39 +00:00
|
|
|
#endif /* SIMULATOR */
|
|
|
|
|
2005-02-06 17:21:42 +00:00
|
|
|
/* Various hardware housekeeping tasks relating to shutting down the jukebox */
|
|
|
|
void shutdown_hw(void)
|
|
|
|
{
|
2005-02-06 10:14:50 +00:00
|
|
|
#ifndef SIMULATOR
|
2005-03-03 07:25:43 +00:00
|
|
|
#if defined(DEBUG_FILE) && defined(HAVE_CHARGE_CTRL)
|
|
|
|
if(fd > 0) {
|
|
|
|
close(fd);
|
|
|
|
fd = 0;
|
|
|
|
}
|
|
|
|
#endif
|
2005-02-06 09:57:57 +00:00
|
|
|
mpeg_stop();
|
|
|
|
ata_flush();
|
|
|
|
ata_spindown(1);
|
|
|
|
while(ata_disk_is_active())
|
2005-03-03 07:25:43 +00:00
|
|
|
sleep(HZ/10);
|
2005-02-06 09:57:57 +00:00
|
|
|
|
|
|
|
mp3_shutdown();
|
2005-03-18 11:38:47 +00:00
|
|
|
#ifdef IRIVER_H100
|
|
|
|
uda1380_close();
|
|
|
|
#endif
|
2005-02-06 09:57:57 +00:00
|
|
|
#if CONFIG_KEYPAD == ONDIO_PAD
|
|
|
|
backlight_off();
|
|
|
|
sleep(1);
|
|
|
|
lcd_set_contrast(0);
|
|
|
|
#endif
|
|
|
|
power_off();
|
2005-02-06 10:14:50 +00:00
|
|
|
#endif
|
2005-02-06 09:57:57 +00:00
|
|
|
}
|