1
0
Fork 0
forked from len0rd/rockbox

patch # 1159539 from GvB: V1 charging cleanup

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6224 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jörg Hohensohn 2005-03-23 20:53:37 +00:00
parent 9306caae3d
commit 3644fa2824
3 changed files with 431 additions and 393 deletions

View file

@ -1247,9 +1247,10 @@ bool view_battery(void)
lcd_puts(0, 3, buf); lcd_puts(0, 3, buf);
#endif #endif
#ifdef HAVE_CHARGE_CTRL #ifdef HAVE_CHARGE_CTRL
snprintf(buf, 30, "Charging: %s", snprintf(buf, 30, "Chgr: %s %s",
charger_enabled ? "yes" : "no"); charger_inserted() ? "present" : "absent",
lcd_puts(0, 4, buf); charger_enabled ? "on" : "off");
lcd_puts(0, 3, buf);
snprintf(buf, 30, "short delta: %d", short_delta); snprintf(buf, 30, "short delta: %d", short_delta);
lcd_puts(0, 5, buf); lcd_puts(0, 5, buf);
snprintf(buf, 30, "long delta: %d", long_delta); snprintf(buf, 30, "long delta: %d", long_delta);
@ -1271,7 +1272,7 @@ bool view_battery(void)
} }
break; break;
case 3: /* remeining time estimation: */ case 3: /* remaining time estimation: */
lcd_clear_display(); lcd_clear_display();
#ifdef HAVE_CHARGE_CTRL #ifdef HAVE_CHARGE_CTRL
@ -1283,23 +1284,24 @@ bool view_battery(void)
snprintf(buf, 30, "Lvl@cyc st: %d%%", powermgmt_last_cycle_level); snprintf(buf, 30, "Lvl@cyc st: %d%%", powermgmt_last_cycle_level);
lcd_puts(0, 2, buf); lcd_puts(0, 2, buf);
snprintf(buf, 30, "P=%2d I=%2d", pid_p, pid_i);
lcd_puts(0, 3, buf);
snprintf(buf, 30, "Trickle sec: %d/60", trickle_sec);
lcd_puts(0, 4, buf);
#endif #endif
snprintf(buf, 30, "Last PwrHist: %d.%02d V", snprintf(buf, 30, "Last PwrHist: %d.%02d V",
power_history[0] / 100, power_history[0] / 100,
power_history[0] % 100); power_history[0] % 100);
lcd_puts(0, 3, buf);
snprintf(buf, 30, "battery level: %d%%", battery_level());
lcd_puts(0, 5, buf); lcd_puts(0, 5, buf);
snprintf(buf, 30, "Est. remain: %d m", battery_time()); snprintf(buf, 30, "battery level: %d%%", battery_level());
lcd_puts(0, 6, buf); lcd_puts(0, 6, buf);
#ifdef HAVE_CHARGE_CTRL snprintf(buf, 30, "Est. remain: %d m", battery_time());
snprintf(buf, 30, "Trickle sec: %d/60", trickle_sec);
lcd_puts(0, 7, buf); lcd_puts(0, 7, buf);
#endif
break; break;
} }

View file

@ -57,12 +57,13 @@
#ifndef SIMULATOR #ifndef SIMULATOR
#ifdef HAVE_CHARGE_CTRL #ifdef HAVE_CHARGE_CTRL
#define START_TOPOFF_CHG 85 /* Battery % to start at top-off */
#define START_TRICKLE_CHG 95 /* Battery % to start at trickle */
#define POWER_MESSAGE_LEN 32 /* power thread status message */ #define POWER_MESSAGE_LEN 32 /* power thread status message */
#define CHARGE_MAX_TIME_1500 450 /* minutes: maximum charging time for 1500 mAh batteries */ #define CHARGE_MAX_TIME_1500 450 /* minutes: maximum charging time for 1500 mAh batteries */
/* actual max time depends also on BATTERY_CAPACITY! */ /* actual max time depends also on BATTERY_CAPACITY! */
#define CHARGE_MIN_TIME 10 /* minutes: minimum charging time */ #define CHARGE_MIN_TIME 10 /* minutes: minimum charging time */
#define CHARGE_RESTART 85 /* %: when to restart charging in 'charge' mode */
/* attention: if set too high, normal charging is started in trickle mode */
#define TOPOFF_MAX_TIME 90 /* After charging, go to top off charge. How long should top off charge be? */ #define TOPOFF_MAX_TIME 90 /* After charging, go to top off charge. How long should top off charge be? */
#define TOPOFF_VOLTAGE 565 /* which voltage is best? (centivolts) */ #define TOPOFF_VOLTAGE 565 /* which voltage is best? (centivolts) */
#define TRICKLE_MAX_TIME 12*60 /* After top off charge, go to trickle charge. How long should trickle charge be? */ #define TRICKLE_MAX_TIME 12*60 /* After top off charge, go to trickle charge. How long should trickle charge be? */
@ -71,6 +72,9 @@
#define START_TOPOFF_SEC 25 /* initial trickle_sec for topoff */ #define START_TOPOFF_SEC 25 /* initial trickle_sec for topoff */
#define START_TRICKLE_SEC 15 /* initial trickle_sec for trickle */ #define START_TRICKLE_SEC 15 /* initial trickle_sec for trickle */
#define PID_PCONST 2 /* PID proportional constant */
#define PID_DEADZONE 2 /* PID proportional deadzone */
extern char power_message[POWER_MESSAGE_LEN]; extern char power_message[POWER_MESSAGE_LEN];
extern int long_delta; /* long term delta battery voltage */ extern int long_delta; /* long term delta battery voltage */
@ -79,6 +83,8 @@ extern int short_delta; /* short term delta battery voltage */
extern int powermgmt_last_cycle_startstop_min; /* how many minutes ago was the charging started or stopped? */ 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 powermgmt_last_cycle_level; /* which level had the batteries at this time? */
extern int pid_p; /* PID proportional term */
extern int pid_i; /* PID integral term */
extern int trickle_sec; /* trickle charge: How many seconds per minute are we charging actually? */ extern int trickle_sec; /* trickle charge: How many seconds per minute are we charging actually? */
#endif /* HAVE_CHARGE_CTRL */ #endif /* HAVE_CHARGE_CTRL */

View file

@ -57,17 +57,11 @@
static char debug_message[DEBUG_MESSAGE_LEN]; static char debug_message[DEBUG_MESSAGE_LEN];
#define DEBUG_STACK ((0x1000)/sizeof(long)) #define DEBUG_STACK ((0x1000)/sizeof(long))
static int fd; /* write debug information to this file */ static int fd; /* write debug information to this file */
static int wrcount;
#else #else
#define DEBUG_STACK 0 #define DEBUG_STACK 0
#endif #endif
long last_event_tick;
void reset_poweroff_timer(void)
{
last_event_tick = current_tick;
}
#ifdef SIMULATOR /***********************************************************/ #ifdef SIMULATOR /***********************************************************/
int battery_level(void) int battery_level(void)
@ -125,24 +119,38 @@ static const short percent_to_volt_discharge[BATTERY_TYPES_COUNT][11] =
#endif #endif
}; };
static int battery_type = 0; #ifdef HAVE_CHARGING
/* voltages (centivolt) of 0%, 10%, ... 100% when charging enabled */
static const short percent_to_volt_charge[11] =
{
/* values guessed, see
http://www.seattlerobotics.org/encoder/200210/LiIon2.pdf until someone
measures voltages over a charging cycle */
476, 544, 551, 556, 561, 564, 566, 576, 582, 584, 585 /* NiMH */
};
#endif /* HAVE_CHARGING */
#if defined(HAVE_CHARGE_CTRL) || CONFIG_BATTERY == BATT_LIION2200 #if defined(HAVE_CHARGE_CTRL) || CONFIG_BATTERY == BATT_LIION2200
charge_state_type charge_state; /* charging mode */ charge_state_type charge_state; /* charging mode */
int charge_timer; /* charge timer (minutes, dec to zero) */
#endif #endif
#ifdef HAVE_CHARGING #ifdef HAVE_CHARGING
/* Flag that the charger has been plugged in */ /*
static bool charger_was_inserted = false; /* for power off logic */ * Flag that the charger has been plugged in/removed: this is set for exactly
static bool charger_power_is_on; /* for car adapter mode */ * one time through the power loop when the charger has been plugged in.
*/
static enum {
NO_CHARGER,
CHARGER_UNPLUGGED, /* transient state */
CHARGER_PLUGGED, /* transient state */
CHARGER
} charger_input_state;
static bool waiting_to_resume_play = false;
static long play_resume_time;
#endif #endif
/* Power history: power_history[0] is the newest sample */
unsigned short power_history[POWER_HISTORY_LEN];
#ifdef HAVE_CHARGE_CTRL #ifdef HAVE_CHARGE_CTRL
int long_delta; /* long term delta battery voltage */ int long_delta; /* long term delta battery voltage */
int short_delta; /* short term delta battery voltage */ int short_delta; /* short term delta battery voltage */
@ -159,29 +167,25 @@ int trickle_sec = 0; /* how many seconds should the
charger be enabled per charger be enabled per
minute for trickle minute for trickle
charging? */ charging? */
/* voltages (centivolt) of 0%, 10%, ... 100% when charging enabled */ int pid_p = 0; /* PID proportional term */
static const short percent_to_volt_charge[11] = int pid_i = 0; /* PID integral term */
{ #endif /* HAVE_CHARGE_CTRL */
/* values guessed, see
http://www.seattlerobotics.org/encoder/200210/LiIon2.pdf until someone
measures voltages over a charging cycle */
476, 544, 551, 556, 561, 564, 566, 576, 582, 584, 585 /* NiMH */
};
#endif /* HAVE_CHARGE_CTRL || CONFIG_BATTERY == BATT_LIION2200 */
/* /*
* Average battery voltage and charger voltage, filtered via a digital * Average battery voltage and charger voltage, filtered via a digital
* exponential filter. * exponential filter.
*/ */
unsigned int battery_centivolts;/* filtered battery voltage, centvolts */ static unsigned int battery_centivolts;/* filtered battery voltage, centvolts */
static unsigned int avgbat; /* average battery voltage */ static unsigned int avgbat; /* average battery voltage (filtering) */
#define BATT_AVE_SAMPLES 32 /* filter constant / @ 2Hz sample rate */ #define BATT_AVE_SAMPLES 32 /* filter constant / @ 2Hz sample rate */
int battery_capacity = BATTERY_CAPACITY_MIN; /* only a default value */
/* battery level (0-100%) of this minute, updated once per minute */ /* battery level (0-100%) of this minute, updated once per minute */
static int battery_percent = -1; static int battery_percent = -1;
static int battery_capacity = BATTERY_CAPACITY_MIN; /* default value, mAH */
static int battery_type = 0;
/* Power history: power_history[0] is the newest sample */
unsigned short power_history[POWER_HISTORY_LEN];
static bool car_adapter_mode_enabled = false; static bool car_adapter_mode_enabled = false;
@ -189,18 +193,26 @@ static char power_stack[DEFAULT_STACK_SIZE + DEBUG_STACK];
static const char power_thread_name[] = "power"; static const char power_thread_name[] = "power";
static int poweroff_timeout = 0; static int poweroff_timeout = 0;
static long last_charge_time = 0; static int powermgmt_est_runningtime_min = -1;
int powermgmt_est_runningtime_min = -1;
static bool sleeptimer_active = false; static bool sleeptimer_active = false;
static unsigned long sleeptimer_endtick; static long sleeptimer_endtick;
static long last_event_tick;
static void battery_level_update(void); /* forward declaration */
void reset_poweroff_timer(void)
{
last_event_tick = current_tick;
}
#if BATTERY_TYPES_COUNT > 1 #if BATTERY_TYPES_COUNT > 1
void set_battery_type(int type) void set_battery_type(int type)
{ {
if (type != battery_type) { if (type != battery_type) {
battery_type = type; battery_type = type;
battery_percent = -1; /* reset on type change */ battery_level_update(); /* recalculate the battery level */
} }
} }
#endif #endif
@ -219,79 +231,6 @@ int battery_time(void)
return powermgmt_est_runningtime_min; return powermgmt_est_runningtime_min;
} }
/* look into the percent_to_volt_* table and get a realistic battery level
percentage */
int voltage_to_percent(int voltage, const short* table)
{
if (voltage <= table[0])
return 0;
else
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 */
}
}
/* update battery level, called only once per minute */
void battery_level_update(void)
{
int level;
level = battery_centivolts;
if(level > BATTERY_LEVEL_FULL)
level = BATTERY_LEVEL_FULL;
if(level < BATTERY_LEVEL_EMPTY)
level = BATTERY_LEVEL_EMPTY;
#ifdef HAVE_CHARGE_CTRL
if (charge_state == DISCHARGING) {
level = voltage_to_percent(level,
percent_to_volt_discharge[battery_type]);
}
else if (charge_state == CHARGING) {
level = voltage_to_percent(level, percent_to_volt_charge);
}
else {/* in trickle charge, the battery is by definition 100% full */
battery_percent = level = 100;
}
#else
/* always use the discharge table */
level = voltage_to_percent(level,
percent_to_volt_discharge[battery_type]);
#endif
#ifndef HAVE_MMC /* this adjustment is only needed for HD based */
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;
}
else
#endif
{
/* 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 */
if (usb_inserted()) {
if (level < battery_percent - 3)
level = battery_percent - 3;
}
else {
if (level < battery_percent - 1)
level = battery_percent - 1;
}
battery_percent = level;
}
}
/* Returns battery level in percent */ /* Returns battery level in percent */
int battery_level(void) int battery_level(void)
{ {
@ -333,31 +272,82 @@ int get_sleep_timer(void)
return 0; return 0;
} }
/* We shut off in the following cases: /* look into the percent_to_volt_* table and get a realistic battery level
1) The unit is idle, not playing music percentage */
2) The unit is playing music, but is paused static int voltage_to_percent(int voltage, const short* table)
{
if (voltage <= table[0])
return 0;
else
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) /* Tens digit, 10% per entry */
+ (((voltage - table[i]) * 10)
/ (table[i+1] - table[i])); /* Ones digit: interpolated */
}
}
We do not shut off in the following cases: /* update battery level, called once per minute */
1) The USB is connected static void battery_level_update(void)
2) The charger is connected {
3) We are recording, or recording with pause int level;
*/
#ifdef HAVE_CHARGE_CTRL
if (charge_state == DISCHARGING) {
level = voltage_to_percent(battery_centivolts,
percent_to_volt_discharge[battery_type]);
}
else if (charge_state == CHARGING) {
level = voltage_to_percent(battery_centivolts, percent_to_volt_charge);
}
else { /* in trickle charge, the battery is by definition 100% full */
level = 100;
}
#else
/* always use the discharge table */
level = voltage_to_percent(battery_centivolts,
percent_to_volt_discharge[battery_type]);
#endif
#ifndef HAVE_MMC /* this adjustment is only needed for HD based */
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. % */
level = (level > 95) ? 100 : level + 5;
}
#endif
battery_percent = level;
}
/*
* We shut off in the following cases:
* 1) The unit is idle, not playing music
* 2) The unit is playing music, but is paused
*
* 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
*/
static void handle_auto_poweroff(void) static void handle_auto_poweroff(void)
{ {
long timeout = poweroff_idle_timeout_value[poweroff_timeout]*60*HZ; long timeout = poweroff_idle_timeout_value[poweroff_timeout]*60*HZ;
int mpeg_stat = mpeg_status(); int mpeg_stat = mpeg_status();
#ifdef HAVE_CHARGING
bool charger_is_inserted = charger_inserted();
#endif
#ifdef HAVE_CHARGING #ifdef HAVE_CHARGING
/* The was_inserted thing prevents the unit to shut down immediately /*
when the charger is extracted */ * Inhibit shutdown as long as the charger is plugged in. If it is
if(charger_is_inserted || charger_was_inserted) * unplugged, wait for a timeout period and then shut down.
{ */
last_charge_time = current_tick; if(charger_input_state == CHARGER) {
last_event_tick = current_tick;
} }
charger_was_inserted = charger_is_inserted;
#endif #endif
if(timeout && if(timeout &&
@ -370,8 +360,7 @@ static void handle_auto_poweroff(void)
!sleeptimer_active))) !sleeptimer_active)))
{ {
if(TIME_AFTER(current_tick, last_event_tick + timeout) && if(TIME_AFTER(current_tick, last_event_tick + timeout) &&
TIME_AFTER(current_tick, last_disk_activity + timeout) && TIME_AFTER(current_tick, last_disk_activity + timeout))
TIME_AFTER(current_tick, last_charge_time + timeout))
{ {
shutdown_hw(); shutdown_hw();
} }
@ -385,7 +374,8 @@ static void handle_auto_poweroff(void)
{ {
mpeg_stop(); mpeg_stop();
#ifdef HAVE_CHARGING #ifdef HAVE_CHARGING
if(charger_is_inserted) if((charger_input_state == CHARGER) ||
(charger_input_state == CHARGER_PLUGGED))
{ {
DEBUGF("Sleep timer timeout. Stopping...\n"); DEBUGF("Sleep timer timeout. Stopping...\n");
set_sleep_timer(0); set_sleep_timer(0);
@ -414,9 +404,6 @@ void set_car_adapter_mode(bool setting)
#ifdef HAVE_CHARGING #ifdef HAVE_CHARGING
static void car_adapter_mode_processing(void) 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 (car_adapter_mode_enabled) {
if (waiting_to_resume_play) { if (waiting_to_resume_play) {
@ -426,29 +413,19 @@ static void car_adapter_mode_processing(void)
} }
waiting_to_resume_play = false; waiting_to_resume_play = false;
} }
} } else {
else { if (charger_input_state == CHARGER_UNPLUGGED) {
if (charger_power_is_on) { /*
* Just got unplugged, pause if playing
/* if external power was turned off */ */
if (!charger_inserted()) {
charger_power_is_on = false;
/* if playing */
if ((mpeg_status() & MPEG_STATUS_PLAY) && if ((mpeg_status() & MPEG_STATUS_PLAY) &&
!(mpeg_status() & MPEG_STATUS_PAUSE)) { !(mpeg_status() & MPEG_STATUS_PAUSE)) {
mpeg_pause(); mpeg_pause();
} }
} } else if(charger_input_state == CHARGER_PLUGGED) {
} /*
else { * Just got plugged in, delay & resume if we were playing
/* if external power was turned on */ */
if (charger_inserted()) {
charger_power_is_on = true;
/* if paused */
if (mpeg_status() & MPEG_STATUS_PAUSE) { if (mpeg_status() & MPEG_STATUS_PAUSE) {
/* delay resume a bit while the engine is cranking */ /* delay resume a bit while the engine is cranking */
play_resume_time = current_tick + HZ*5; play_resume_time = current_tick + HZ*5;
@ -457,7 +434,6 @@ static void car_adapter_mode_processing(void)
} }
} }
} }
}
} }
#endif #endif
@ -509,14 +485,43 @@ static void power_thread_rtc_process(void)
static void power_thread_sleep(int ticks) static void power_thread_sleep(int ticks)
{ {
int small_ticks; int small_ticks;
#ifdef HAVE_CHARGING
bool charger_plugged; while (ticks > 0) {
#endif
#ifdef HAVE_CHARGING #ifdef HAVE_CHARGING
charger_plugged = charger_inserted(); /*
* Detect charger plugged/unplugged transitions. On a plugged or
* unplugged event, we return immediately, run once through the main
* loop (including the subroutines), and end up back here where we
* transition to the appropriate steady state charger on/off state.
*/
if(charger_inserted()) {
switch(charger_input_state) {
case NO_CHARGER:
case CHARGER_UNPLUGGED:
charger_input_state = CHARGER_PLUGGED;
return;
case CHARGER_PLUGGED:
charger_input_state = CHARGER;
break;
case CHARGER:
break;
}
} else { /* charger not inserted */
switch(charger_input_state) {
case NO_CHARGER:
break;
case CHARGER_UNPLUGGED:
charger_input_state = NO_CHARGER;
break;
case CHARGER_PLUGGED:
case CHARGER:
charger_input_state = CHARGER_UNPLUGGED;
return;
}
}
#endif #endif
while (ticks > 0) {
small_ticks = MIN(HZ/2, ticks); small_ticks = MIN(HZ/2, ticks);
sleep(small_ticks); sleep(small_ticks);
ticks -= small_ticks; ticks -= small_ticks;
@ -532,8 +537,6 @@ static void power_thread_sleep(int ticks)
* Do a digital exponential filter. We don't sample the battery if * 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 * the disk is spinning unless we are in USB mode (the disk will most
* likely always be spinning in USB mode). * 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()) { if (!ata_disk_is_active() || usb_inserted()) {
avgbat = avgbat - (avgbat / BATT_AVE_SAMPLES) + avgbat = avgbat - (avgbat / BATT_AVE_SAMPLES) +
@ -541,13 +544,19 @@ static void power_thread_sleep(int ticks)
/* /*
* battery_centivolts is the centivolt-scaled filtered battery value. * battery_centivolts is the centivolt-scaled filtered battery value.
*/ */
battery_centivolts = ((avgbat / BATT_AVE_SAMPLES) * BATTERY_SCALE_FACTOR) / 10000; battery_centivolts = ((avgbat / BATT_AVE_SAMPLES) *
BATTERY_SCALE_FACTOR) / 10000;
}
#if defined(DEBUG_FILE) && defined(HAVE_CHARGE_CTRL)
/*
* If we have a lot of pending writes or if the disk is spining,
* fsync the debug log file.
*/
if((wrcount > 10) ||
((wrcount > 0) && ata_disk_is_active())) {
fsync(fd);
wrcount = 0;
} }
#ifdef HAVE_CHARGING
/* If the charger was plugged in, exit now so we can start charging */
if(!charger_plugged && charger_inserted())
return;
#endif #endif
} }
} }
@ -568,6 +577,7 @@ static void power_thread(void)
int charging_current; int charging_current;
#endif #endif
#ifdef HAVE_CHARGE_CTRL #ifdef HAVE_CHARGE_CTRL
unsigned int target_voltage; /* desired topoff/trickle voltage level */
int charge_max_time_now = 0; /* max. charging duration, calculated at int charge_max_time_now = 0; /* max. charging duration, calculated at
beginning of charging */ beginning of charging */
#endif #endif
@ -579,6 +589,7 @@ static void power_thread(void)
#if defined(DEBUG_FILE) && defined(HAVE_CHARGE_CTRL) #if defined(DEBUG_FILE) && defined(HAVE_CHARGE_CTRL)
fd = -1; fd = -1;
wrcount = 0;
#endif #endif
while (1) while (1)
@ -611,7 +622,6 @@ static void power_thread(void)
* If we are charging, the "runtime" is estimated time till the battery * If we are charging, the "runtime" is estimated time till the battery
* is recharged. * is recharged.
*/ */
// TBD: use real charging current estimate
if (charge_state == CHARGING) { if (charge_state == CHARGING) {
powermgmt_est_runningtime_min = (100 - battery_level()) * powermgmt_est_runningtime_min = (100 - battery_level()) *
battery_capacity / 100 * 60 / (CURRENT_MAX_CHG - runcurrent()); battery_capacity / 100 * 60 / (CURRENT_MAX_CHG - runcurrent());
@ -638,29 +648,22 @@ static void power_thread(void)
#endif /* # if CONFIG_BATTERY == BATT_LIION2200 */ #endif /* # if CONFIG_BATTERY == BATT_LIION2200 */
#ifdef HAVE_CHARGE_CTRL #ifdef HAVE_CHARGE_CTRL
if (charger_input_state == CHARGER_PLUGGED) {
if (charger_inserted()) { pid_p = 0;
pid_i = 0;
snprintf(power_message, POWER_MESSAGE_LEN, "Charger plugged in");
/* /*
* Time to start charging again? * The charger was just plugged in. If the battery level is
* 1) If we are currently discharging but trickle is enabled, * nearly charged, just trickle. If the battery is low, start
* the charger must have just been plugged in. * a full charge cycle. If the battery level is in between,
* 2) If our battery level falls below the restart level, charge! * top-off and then trickle.
*/ */
if ((charge_state == DISCHARGING) || if(battery_percent > START_TOPOFF_CHG) {
(battery_level() < CHARGE_RESTART)) {
/*
* If the battery level is nearly charged, just trickle.
* If the battery is in between, top-off and then trickle.
*/
if(battery_percent > CHARGE_RESTART) {
powermgmt_last_cycle_level = battery_percent; powermgmt_last_cycle_level = battery_percent;
powermgmt_last_cycle_startstop_min = 0; powermgmt_last_cycle_startstop_min = 0;
if(battery_percent >= 95) { if(battery_percent >= START_TRICKLE_CHG) {
trickle_sec = START_TRICKLE_SEC;
charge_state = TRICKLE; charge_state = TRICKLE;
} else { } else {
trickle_sec = START_TOPOFF_SEC;
charge_state = TOPOFF; charge_state = TOPOFF;
} }
} else { } else {
@ -681,25 +684,22 @@ static void power_thread(void)
because battery_level depends on if the charger is because battery_level depends on if the charger is
on */ on */
DEBUGF("power: charger inserted and battery" DEBUGF("power: charger inserted and battery"
" not full, enabling\n"); " not full, charging\n");
powermgmt_last_cycle_level = battery_percent; powermgmt_last_cycle_level = battery_percent;
powermgmt_last_cycle_startstop_min = 0; powermgmt_last_cycle_startstop_min = 0;
trickle_sec = 60; trickle_sec = 60;
long_delta = short_delta = 999999;
charge_state = CHARGING; charge_state = CHARGING;
} }
} }
if (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, snprintf(power_message, POWER_MESSAGE_LEN,
"Chg %dm, max %dm", powermgmt_last_cycle_startstop_min, "Chg %dm, max %dm", powermgmt_last_cycle_startstop_min,
charge_max_time_now); charge_max_time_now);
/* /*
* Sum the deltas over the last X minutes so we can do our * Check the delta voltage over the last X minutes so we can do
* end-of-charge logic based on the battery level change. * 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) { if (powermgmt_last_cycle_startstop_min > CHARGE_MIN_TIME) {
short_delta = power_history[0] - short_delta = power_history[0] -
power_history[CHARGE_END_NEGD - 1]; power_history[CHARGE_END_NEGD - 1];
@ -729,7 +729,7 @@ static void power_thread(void)
* Note: short_delta and long_delta are centivolts * Note: short_delta and long_delta are centivolts
*/ */
if ((powermgmt_last_cycle_startstop_min > charge_max_time_now) || if ((powermgmt_last_cycle_startstop_min > charge_max_time_now) ||
(short_delta < -5) || (long_delta < 5)) (short_delta <= -5) || (long_delta < 5))
{ {
if (powermgmt_last_cycle_startstop_min > charge_max_time_now) { if (powermgmt_last_cycle_startstop_min > charge_max_time_now) {
DEBUGF("power: powermgmt_last_cycle_startstop_min > charge_max_time_now, " DEBUGF("power: powermgmt_last_cycle_startstop_min > charge_max_time_now, "
@ -738,8 +738,17 @@ static void power_thread(void)
work! */ work! */
snprintf(power_message, POWER_MESSAGE_LEN, snprintf(power_message, POWER_MESSAGE_LEN,
"Chg tmout %d min", charge_max_time_now); "Chg tmout %d min", charge_max_time_now);
/*
* 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.
*/
powermgmt_last_cycle_level = battery_percent;
powermgmt_last_cycle_startstop_min = 0;
charge_state = TRICKLE;
} else { } else {
if(short_delta < -5) { if(short_delta <= -5) {
DEBUGF("power: short-term negative" DEBUGF("power: short-term negative"
" delta, enough!\n"); " delta, enough!\n");
snprintf(power_message, POWER_MESSAGE_LEN, snprintf(power_message, POWER_MESSAGE_LEN,
@ -752,24 +761,18 @@ static void power_thread(void)
"end lowd %d %dmin", long_delta, "end lowd %d %dmin", long_delta,
powermgmt_last_cycle_startstop_min); powermgmt_last_cycle_startstop_min);
} }
} /*
/* Switch to trickle charging. We skip the top-off * Switch to top-off charging.
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_level = battery_percent;
powermgmt_last_cycle_startstop_min = 0; powermgmt_last_cycle_startstop_min = 0;
charge_state = TOPOFF;
trickle_sec = START_TRICKLE_SEC; }
charge_state = TRICKLE;
} }
} }
else if (charge_state > CHARGING) /* top off or trickle */ else if (charge_state > CHARGING) /* top off or trickle */
{ {
/* Time to switch from topoff to trickle? Note that we don't /* Time to switch from topoff to trickle?
* 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) && if ((charge_state == TOPOFF) &&
(powermgmt_last_cycle_startstop_min > TOPOFF_MAX_TIME)) (powermgmt_last_cycle_startstop_min > TOPOFF_MAX_TIME))
@ -778,44 +781,66 @@ static void power_thread(void)
powermgmt_last_cycle_startstop_min = 0; powermgmt_last_cycle_startstop_min = 0;
charge_state = TRICKLE; charge_state = TRICKLE;
} }
/*
/* Adjust trickle charge time. I considered setting the level * Adjust trickle charge time (proportional and integral terms).
* higher if the USB is plugged in, but it doesn't appear to * Note: I considered setting the level higher if the USB is
* be necessary and will generate more heat [gvb]. * plugged in, but it doesn't appear to be necessary and will
* generate more heat [gvb].
*/ */
if(((charge_state == TOPOFF) && (battery_centivolts > TOPOFF_VOLTAGE)) || if(charge_state == TOPOFF)
((charge_state == TRICKLE) && (battery_centivolts > TRICKLE_VOLTAGE))) target_voltage = TOPOFF_VOLTAGE;
{ /* charging too much */ else
if(trickle_sec > 0) target_voltage = TRICKLE_VOLTAGE;
trickle_sec--;
pid_p = target_voltage - battery_centivolts;
if((pid_p > PID_DEADZONE) || (pid_p < -PID_DEADZONE))
pid_p = pid_p * PID_PCONST;
else
pid_p = 0;
if(battery_centivolts < target_voltage) {
if(pid_i < 60) {
pid_i++; /* limit so it doesn't "wind up" */
} }
else { /* charging too little */ } else {
if(trickle_sec < 60) if(pid_i > 0) {
trickle_sec++; pid_i--; /* limit so it doesn't "wind up" */
}
}
trickle_sec = pid_p + pid_i;
if(trickle_sec > 60) {
trickle_sec = 60;
}
if(trickle_sec < 0) {
trickle_sec = 0;
} }
} else if (charge_state == DISCHARGING) { } else if (charge_state == DISCHARGING) {
trickle_sec = 0; trickle_sec = 0;
/* the charger is enabled here only in one case: if it was /*
turned on at boot time (power_init) */ * The charger is enabled here only in one case: if it was
/* turn it off now */ * turned on at boot time (power_init). Turn it off now.
*/
if (charger_enabled) if (charger_enabled)
charger_enable(false); charger_enable(false);
} }
} else {
if (charge_state != DISCHARGING) { if (charger_input_state == CHARGER_UNPLUGGED) {
/* charger not inserted but was enabled */ /*
* The charger was just unplugged.
*/
DEBUGF("power: charger disconnected, disabling\n"); DEBUGF("power: charger disconnected, disabling\n");
charger_enable(false); charger_enable(false);
powermgmt_last_cycle_level = battery_percent; powermgmt_last_cycle_level = battery_percent;
powermgmt_last_cycle_startstop_min = 0; powermgmt_last_cycle_startstop_min = 0;
trickle_sec = 0; trickle_sec = 0;
pid_p = 0;
pid_i = 0;
charge_state = DISCHARGING; charge_state = DISCHARGING;
snprintf(power_message, POWER_MESSAGE_LEN, "Charger: discharge"); snprintf(power_message, POWER_MESSAGE_LEN, "Charger: discharge");
} }
}
powermgmt_last_cycle_startstop_min++;
#endif /* HAVE_CHARGE_CTRL*/ #endif /* HAVE_CHARGE_CTRL*/
@ -834,25 +859,36 @@ static void power_thread(void)
#endif #endif
#if defined(DEBUG_FILE) && defined(HAVE_CHARGE_CTRL) #if defined(DEBUG_FILE) && defined(HAVE_CHARGE_CTRL)
if((fd < 0) && !usb_inserted()) { if(usb_inserted()) {
fd = open(DEBUG_FILE_NAME, O_WRONLY | O_APPEND | O_CREAT); if(fd >= 0) {
snprintf(debug_message, DEBUG_MESSAGE_LEN, /* It is probably too late to close the file but we can try... */
"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); close(fd);
fd = -1; fd = -1;
} }
} else {
if(fd < 0) {
fd = open(DEBUG_FILE_NAME, O_WRONLY | O_APPEND | O_CREAT);
if(fd >= 0) {
snprintf(debug_message, DEBUG_MESSAGE_LEN,
"cycle_min, bat_centivolts, bat_percent, chgr_state, charge_state, pid_p, pid_i, trickle_sec\n");
write(fd, debug_message, strlen(debug_message));
wrcount = 99; /* force a flush */
}
}
if(fd >= 0) {
snprintf(debug_message, DEBUG_MESSAGE_LEN, "%d, %d, %d, %d, %d, %d, %d, %d\n",
powermgmt_last_cycle_startstop_min, battery_centivolts,
battery_percent, charger_input_state, charge_state, pid_p, pid_i, trickle_sec);
write(fd, debug_message, strlen(debug_message));
wrcount++;
}
}
#endif #endif
handle_auto_poweroff(); handle_auto_poweroff();
#ifdef HAVE_CHARGE_CTRL
powermgmt_last_cycle_startstop_min++;
#endif
} }
} }
@ -863,10 +899,6 @@ void powermgmt_init(void)
/* init history to 0 */ /* init history to 0 */
memset(power_history, 0x00, sizeof(power_history)); memset(power_history, 0x00, sizeof(power_history));
#ifdef HAVE_CHARGING
charger_power_is_on = charger_inserted();
#endif
create_thread(power_thread, power_stack, sizeof(power_stack), create_thread(power_thread, power_stack, sizeof(power_stack),
power_thread_name); power_thread_name);
} }
@ -876,11 +908,10 @@ void powermgmt_init(void)
/* Various hardware housekeeping tasks relating to shutting down the jukebox */ /* Various hardware housekeeping tasks relating to shutting down the jukebox */
void shutdown_hw(void) void shutdown_hw(void)
{ {
#ifndef SIMULATOR
#if defined(DEBUG_FILE) && defined(HAVE_CHARGE_CTRL) #if defined(DEBUG_FILE) && defined(HAVE_CHARGE_CTRL)
if(fd > 0) { if(fd >= 0) {
close(fd); close(fd);
fd = 0; fd = -1;
} }
#endif #endif
mpeg_stop(); mpeg_stop();
@ -899,5 +930,4 @@ void shutdown_hw(void)
lcd_set_contrast(0); lcd_set_contrast(0);
#endif #endif
power_off(); power_off();
#endif
} }