06 May, 2012

1 commit

  • max17047 is improved version of max17042 chip. It has few HW bug
    fixes with minor changes in register set.

    max17050 is same as max17047 chip except its silicon packging. So from
    driver's point of view there is no difference btw max1047 and max1050.

    This patch adds the support to dynamically detect the chip type and
    adds steps to initialize the max17047 chip.

    Signed-off-by: Ramakrishna Pallala
    Signed-off-by: Anton Vorontsov

    Ramakrishna Pallala
     

27 Mar, 2012

1 commit

  • Add power on reset (POR) init procedure defined by the maxim
    appnote. Using this procedure ensures that the part is
    configured/initialized correctly at POR and improves early accuracy of
    the fuel gauge and informs the fuel gauge with the battery
    characterization parameters. The battery characterization parameters
    come from the maxim characterization procedure.

    Signed-off-by: Ramakrishna Pallala
    Signed-off-by: Dirk Brandewie
    Signed-off-by: Anton Vorontsov

    Ramakrishna Pallala
     

14 Mar, 2012

1 commit


08 Jul, 2011

1 commit

  • This patch supports additional properties (PRESENT, CYCLE_COUNT,
    VOLTAGE_MAX, VOLTAGE_MIN_DESIGN, CURRENT_NOW, CURRENT_AVG,
    CHARGE_FULL, and TEMP).
    Plus, initialization code for registers is added.

    Signed-off-by: Donggeun Kim
    Signed-off-by: MyungJoo Ham
    Signed-off-by: KyungMin Park
    Signed-off-by: Anton Vorontsov

    Donggeun Kim
     

14 Jan, 2011

1 commit

  • The MAX17042 is a fuel gauge with an I2C interface for lithium-ion
    betteries. Unlike its predecessor MAX17040, MAX17042 uses 16bit
    registers. Besides, MAX17042 has much more features than MAX17040; e.g.,
    a thermistor, current and current accumulation measurement, battery
    internal resistance estimate, average values of measurement, and others.

    This patch implements a driver for MAX17042.
    In this initial release, we have implemented the most basic features of
    a fuel gauge: measure the battery capacity and voltage.

    Signed-off-by: MyungJoo Ham
    Signed-off-by: Kyungmin Park
    Signed-off-by: Anton Vorontsov

    MyungJoo Ham