Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 72057
b: refs/heads/master
c: d385376
h: refs/heads/master
i:
  72055: 7339c62
v: v3
  • Loading branch information
Anton Vorontsov committed Oct 4, 2007
1 parent 9891fab commit 034a10a
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: cd1ebcc0ef620e8e7c5e399bf9e123135e4f24a4
refs/heads/master: d385376f0d75fdbeed8041ed6baf5cb4a1578ffb
57 changes: 47 additions & 10 deletions trunk/drivers/power/apm_power.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,28 +26,65 @@ static struct power_supply *main_battery;
static void find_main_battery(void)
{
struct device *dev;
struct power_supply *bat, *batm;
struct power_supply *bat = NULL;
struct power_supply *max_charge_bat = NULL;
struct power_supply *max_energy_bat = NULL;
union power_supply_propval full;
int max_charge = 0;
int max_energy = 0;

main_battery = NULL;
batm = NULL;

list_for_each_entry(dev, &power_supply_class->devices, node) {
bat = dev_get_drvdata(dev);
/* If none of battery devices cantains 'use_for_apm' flag,
choice one with maximum design charge */
if (!PSY_PROP(bat, CHARGE_FULL_DESIGN, &full)) {

if (bat->use_for_apm) {
/* nice, we explicitly asked to report this battery. */
main_battery = bat;
return;
}

if (!PSY_PROP(bat, CHARGE_FULL_DESIGN, &full) ||
!PSY_PROP(bat, CHARGE_FULL, &full)) {
if (full.intval > max_charge) {
batm = bat;
max_charge_bat = bat;
max_charge = full.intval;
}
} else if (!PSY_PROP(bat, ENERGY_FULL_DESIGN, &full) ||
!PSY_PROP(bat, ENERGY_FULL, &full)) {
if (full.intval > max_energy) {
max_energy_bat = bat;
max_energy = full.intval;
}
}
}

if (bat->use_for_apm)
main_battery = bat;
if ((max_energy_bat && max_charge_bat) &&
(max_energy_bat != max_charge_bat)) {
/* try guess battery with more capacity */
if (!PSY_PROP(max_charge_bat, VOLTAGE_MAX_DESIGN, &full)) {
if (max_energy > max_charge * full.intval)
main_battery = max_energy_bat;
else
main_battery = max_charge_bat;
} else if (!PSY_PROP(max_energy_bat, VOLTAGE_MAX_DESIGN,
&full)) {
if (max_charge > max_energy / full.intval)
main_battery = max_charge_bat;
else
main_battery = max_energy_bat;
} else {
/* give up, choice any */
main_battery = max_energy_bat;
}
} else if (max_charge_bat) {
main_battery = max_charge_bat;
} else if (max_energy_bat) {
main_battery = max_energy_bat;
} else {
/* give up, try the last if any */
main_battery = bat;
}
if (!main_battery)
main_battery = batm;
}

static int calculate_time(int status)
Expand Down

0 comments on commit 034a10a

Please sign in to comment.