You've already forked linux-rockchip
mirror of
https://github.com/armbian/linux-rockchip.git
synced 2026-01-06 11:08:10 -08:00
power: supply: max17042_battery: Clear status bits in interrupt handler
commit0cf48167b8upstream. The gauge requires us to clear the status bits manually for some alerts to be properly dismissed. Previously the IRQ was configured to react only on falling edge, which wasn't technically correct (the ALRT line is active low), but it had a happy side-effect of preventing interrupt storms on uncleared alerts from happening. Fixes:7fbf6b731b("power: supply: max17042: Do not enforce (incorrect) interrupt trigger type") Cc: <stable@vger.kernel.org> Signed-off-by: Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
898622adb7
commit
890e4edcec
@@ -875,6 +875,10 @@ static irqreturn_t max17042_thread_handler(int id, void *dev)
|
||||
max17042_set_soc_threshold(chip, 1);
|
||||
}
|
||||
|
||||
/* we implicitly handle all alerts via power_supply_changed */
|
||||
regmap_clear_bits(chip->regmap, MAX17042_STATUS,
|
||||
0xFFFF & ~(STATUS_POR_BIT | STATUS_BST_BIT));
|
||||
|
||||
power_supply_changed(chip->battery);
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user