On Wed, Aug 07, 2013 at 02:56:48PM -0700, Mark A. Greer wrote:
> Add driver support for the Texas Instruments BQ24190
> battery charger.  Some of the information provided by
> the device is about the charger and other information
> is about the battery so create two power_supply objects
> (one for each) and provide the appropriate information
> for each one.
> 
> The device has many fields that go beyond what is
> reasonable to report or modify using the existing
> 'POWER_SUPPLY_PROP_*' properties so the driver exports
> the register fields via sysfs.  They are prefixed by
> 'f_' (for 'field') to make it easier to distinguish
> between a register field and a "normal" sysfs file
> exported by the power_supply infrastructure.
> 
> Signed-off-by: Mark A. Greer <mgr...@animalcreek.com>
> ---
...
> +static irqreturn_t bq24190_irq_handler_thread(int irq, void *data)
> +{
> +     struct bq24190_dev_info *bdi = data;
> +     bool alert_userspace = false;
> +     u8 ss_reg, f_reg;
> +     int ret;
> +     static bool first_time = true;
...
> +     /*
> +      * Sometimes bq24190 gives a steady trickle of interrupts even
> +      * though the watchdog timer is turned off and neither the STATUS
> +      * nor FAULT registers have changed.  Weed out these sprurious
> +      * interrupts so userspace isn't alerted for no reason.
> +      * In addition, the chip always generates an interrupt after
> +      * register reset so we should ignore that one (the very first
> +      * interrupt received).
> +      */
> +     if (alert_userspace && !first_time) {

Hm, global static... I would guess that per-device flag would be more
appropriate, just in case if there are multiple chargers?

> +             power_supply_changed(&bdi->charger);
> +             power_supply_changed(&bdi->battery);
> +             first_time = false;
> +     }
...
> +     do {
> +             ret = bq24190_read_mask(bdi, BQ24190_REG_POC,
> +                             BQ24190_REG_POC_RESET_MASK,
> +                             BQ24190_REG_POC_RESET_SHIFT,
> +                             &v);
> +             if ((ret <= 0) || !v)
> +                     break;
> +
> +             udelay(10);
> +     } while (--limit);
> +
> +     if (!ret && limit)
> +             ret = bq24190_set_mode_host(bdi);
> +out:
> +     pm_runtime_put_sync(bdi->dev);
> +     return ret;
> +}
> +
> +#define irq_to_gpio(irq)     ((irq) - gpio_to_irq(0))

Ugh... this does not seem right. On a particular platform it might work,
but not in general...

Thanks,

Anton

p.s. I am also not a big fan of unnecessary 'out:' goto labels... most of
them might be changed to just 'return ...;'
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to