lkml.org 
[lkml]   [2012]   [Sep]   [26]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH 11/57] power: Recharge condition not optimal for battery
On Tue, Sep 25, 2012 at 10:12:08AM -0600, mathieu.poirier@linaro.org wrote:
> From: Marcus Cooper <marcus.xm.cooper@stericsson.com>
>
> Today the battery recharge is determined with a voltage threshold. This
> voltage threshold is only valid when the battery is relaxed. In charging
> algorithm the voltage read is the loaded battery voltage and no
> compensation is done to get the relaxed voltage. When maintenance
> charging is not selected, this makes the recharging condition to almost
> immediately activate when there is a discharge present on the battery.
>
> Depending on which vendor the battery comes from this behavior can wear
> out the battery much faster than normal.
>
> The fuelgauge driver is responsible to monitor the actual battery
> capacity and is able to estimate the remaining capacity. It is better to
> use the remaining capacity as a limit to determine when battery should
> be recharged.
>
> Signed-off-by: Marcus Cooper <marcus.xm.cooper@stericsson.com>
> Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
> Reviewed-by: Hakan BERG <hakan.berg@stericsson.com>
> Reviewed-by: Jonas ABERG <jonas.aberg@stericsson.com>
> ---
[...]
> @@ -2092,6 +2212,9 @@ static int ab8500_fg_get_ext_psy_data(struct device *dev, void *data)
> break;
> di->flags.charging = false;
> di->flags.fully_charged = false;
> + if (di->bat->capacity_scaling)
> + ab8500_fg_update_cap_scalers
> + (di);

The fact that you need to wrap lines in this strange way is just an
evidence that this function needs some refactorings to lower indentation
level.

[...]
> + } else {
> + /* Maintenance A */
> + if (di->maint_state == MAINT_A &&
> + di->batt_data.volt <
> + di->bat->bat_type[di->bat->batt_id].
> + maint_a_vol_lvl) {
> + abx500_chargalg_state_to(di,
> + STATE_MAINTENANCE_A_INIT);
> + }
> + /* Maintenance B */
> + else if (di->maint_state == MAINT_B &&
> + di->batt_data.volt <
> + di->bat->bat_type[di->bat->batt_id].
> + maint_b_vol_lvl) {
> + abx500_chargalg_state_to(di,
> + STATE_MAINTENANCE_B_INIT);
> + }

I understand that the logic is complex, but things are really really
unreadable and incomprehensible.

Can we make it more nicer by putting some love into the code:

struct something_bat *bat = di->bat;
int maint_a_volt = bat->bat_type[bat->batt_id].maint_a_vol_lvl;
int maint_b_volt = bat->bat_type[bat->batt_id].maint_b_vol_lvl;
int cur_volt = di->batt_data.volt;
bool maint_a = di->maint_state == MAINT_A;
bool maint_b = di->maint_state == MAINT_B;
int state;

if (maint_a && cur_volt < maint_a_volt)
state = STATE_MAINTENANCE_A_INIT;
else if (maint_b && cur_volt < main_b_volt)
state = STATE_MAINTENANCE_B_INIT;
else
break;

abx500_chargalg_state_to(di, state);

(And this is across all the driver...)

At least this way I can actually understand what it does (and without
comments).

I'm OK with a patch on top of this series (since rebasing the whole thing
on top of the changed code would probably create tons of conflicts), but
something has to be done with this.

Thanks,
Anton.


\
 
 \ /
  Last update: 2012-09-27 06:01    [W:0.341 / U:0.852 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site