forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'for-v4.19' of git://git.kernel.org/pub/scm/linux/kernel/gi…
…t/sre/linux-power-supply Pull power supply and reset updates from Sebastian Reichel: - Improve support for TI bq20z75 in sbs-battery - Add Qualcomm PM8xxx reboot driver - Add cros-ec USBPD charger driver - Move ds2760 battery driver from w1 to power-supply and add DT support - Misc fixes * tag 'for-v4.19' of git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply: (28 commits) power: supply: bq27xxx: Update comments power: supply: max77693_charger: fix unintentional fall-through power: supply: mark expected switch fall-throughs power: supply: lego_ev3_battery: fix Vce offset power: supply: lego_ev3_battery: Don't ignore iio_read_channel_processed() return value power: supply: ds2760_battery: add devicetree probing power: supply: ds2760_battery: merge ds2760 supply driver with its w1 slave companion w1: core: match sub-nodes of bus masters in devicetree dt-bindings: w1: document bindings for ds2760 battery monitor dt-bindings: w1: document generic onewire bindings power: supply: adp5061: Fix a couple off by ones dt-bindings: power: reset: qcom: Add resin binding adp5061: New driver for ADP5061 I2C battery charger power: generic-adc-battery: check for duplicate properties copied from iio channels power: generic-adc-battery: fix out-of-bounds write when copying channel properties power: supply: axp288_charger: Fix initial constant_charge_current value power: supply: ab8500: stop using getnstimeofday64() power: gemini-poweroff: Avoid more spurious poweroffs power: vexpress: fix corruption in notifier registration power: remove possible deadlock when unregistering power_supply ...
- Loading branch information
Showing
36 changed files
with
1,931 additions
and
408 deletions.
There are no files selected for viewing
45 changes: 45 additions & 0 deletions
45
Documentation/devicetree/bindings/power/reset/qcom,pon.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
Qualcomm PON Device | ||
|
||
The Power On device for Qualcomm PM8xxx is MFD supporting pwrkey | ||
and resin along with the Android reboot-mode. | ||
|
||
This DT node has pwrkey and resin as sub nodes. | ||
|
||
Required Properties: | ||
-compatible: "qcom,pm8916-pon" | ||
-reg: Specifies the physical address of the pon register | ||
|
||
Optional subnode: | ||
-pwrkey: Specifies the subnode pwrkey and should follow the | ||
qcom,pm8941-pwrkey.txt description. | ||
-resin: Specifies the subnode resin and should follow the | ||
qcom,pm8xxx-pwrkey.txt description. | ||
|
||
The rest of the properties should follow the generic reboot-mode description | ||
found in reboot-mode.txt | ||
|
||
Example: | ||
|
||
pon@800 { | ||
compatible = "qcom,pm8916-pon"; | ||
|
||
reg = <0x800>; | ||
mode-bootloader = <0x2>; | ||
mode-recovery = <0x1>; | ||
|
||
pwrkey { | ||
compatible = "qcom,pm8941-pwrkey"; | ||
interrupts = <0x0 0x8 0 IRQ_TYPE_EDGE_BOTH>; | ||
debounce = <15625>; | ||
bias-pull-up; | ||
linux,code = <KEY_POWER>; | ||
}; | ||
|
||
resin { | ||
compatible = "qcom,pm8941-resin"; | ||
interrupts = <0x0 0x8 1 IRQ_TYPE_EDGE_BOTH>; | ||
debounce = <15625>; | ||
bias-pull-up; | ||
linux,code = <KEY_VOLUMEDOWN>; | ||
}; | ||
}; |
26 changes: 26 additions & 0 deletions
26
Documentation/devicetree/bindings/power/supply/maxim,ds2760.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Devicetree bindings for Maxim DS2760 | ||
==================================== | ||
|
||
The ds2760 is a w1 slave device and must hence have its sub-node in DT | ||
under a w1 bus master node. | ||
|
||
The device exposes a power supply, so the details described in | ||
Documentation/devicetree/bindings/power/supply/power_supply.txt apply. | ||
|
||
Required properties: | ||
- compatible: must be "maxim,ds2760" | ||
|
||
Optional properties: | ||
- power-supplies: Refers to one or more power supplies connected to | ||
this battery. | ||
- maxim,pmod-enabled: This boolean property enables the DS2760 to enter | ||
sleep mode when the DQ line goes low for greater | ||
than 2 seconds and leave sleep Mode when the DQ | ||
line goes high. | ||
- maxim,cache-time-ms: Time im milliseconds to cache the data for. When | ||
this time expires, the values are read again from | ||
the hardware. Defaults to 1000. | ||
- rated-capacity-microamp-hours: | ||
The rated capacity of the battery, in mAh. | ||
If not specified, the value stored in the | ||
non-volatile chip memory is used. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Generic devicetree bindings for onewire (w1) busses | ||
=================================================== | ||
|
||
Onewire busses are described through nodes of their master bus controller. | ||
Slave devices are listed as sub-nodes of such master devices. For now, only | ||
one slave is allowed per bus master. | ||
|
||
|
||
Example: | ||
|
||
charger: charger { | ||
compatible = "gpio-charger"; | ||
charger-type = "mains"; | ||
gpios = <&gpio 1 GPIO_ACTIVE_LOW>; | ||
}; | ||
|
||
onewire { | ||
compatible = "w1-gpio"; | ||
gpios = <&gpio 100 0>, <&gpio 101 0>; | ||
|
||
battery { | ||
compatible = "maxim,ds2760"; | ||
power-supplies = <&charger>; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -842,6 +842,13 @@ S: Supported | |
F: drivers/mux/adgs1408.c | ||
F: Documentation/devicetree/bindings/mux/adgs1408.txt | ||
|
||
ANALOG DEVICES INC ADP5061 DRIVER | ||
M: Stefan Popa <[email protected]> | ||
L: [email protected] | ||
W: http://ez.analog.com/community/linux-device-drivers | ||
S: Supported | ||
F: drivers/power/supply/adp5061.c | ||
|
||
ANALOG DEVICES INC ADV7180 DRIVER | ||
M: Lars-Peter Clausen <[email protected]> | ||
L: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
// Copyright (c) 2017-18 Linaro Limited | ||
|
||
#include <linux/delay.h> | ||
#include <linux/errno.h> | ||
#include <linux/kernel.h> | ||
#include <linux/module.h> | ||
#include <linux/of.h> | ||
#include <linux/of_platform.h> | ||
#include <linux/platform_device.h> | ||
#include <linux/reboot.h> | ||
#include <linux/reboot-mode.h> | ||
#include <linux/regmap.h> | ||
|
||
#define PON_SOFT_RB_SPARE 0x8f | ||
|
||
struct pm8916_pon { | ||
struct device *dev; | ||
struct regmap *regmap; | ||
u32 baseaddr; | ||
struct reboot_mode_driver reboot_mode; | ||
}; | ||
|
||
static int pm8916_reboot_mode_write(struct reboot_mode_driver *reboot, | ||
unsigned int magic) | ||
{ | ||
struct pm8916_pon *pon = container_of | ||
(reboot, struct pm8916_pon, reboot_mode); | ||
int ret; | ||
|
||
ret = regmap_update_bits(pon->regmap, | ||
pon->baseaddr + PON_SOFT_RB_SPARE, | ||
0xfc, magic << 2); | ||
if (ret < 0) | ||
dev_err(pon->dev, "update reboot mode bits failed\n"); | ||
|
||
return ret; | ||
} | ||
|
||
static int pm8916_pon_probe(struct platform_device *pdev) | ||
{ | ||
struct pm8916_pon *pon; | ||
int error; | ||
|
||
pon = devm_kzalloc(&pdev->dev, sizeof(*pon), GFP_KERNEL); | ||
if (!pon) | ||
return -ENOMEM; | ||
|
||
pon->dev = &pdev->dev; | ||
|
||
pon->regmap = dev_get_regmap(pdev->dev.parent, NULL); | ||
if (!pon->regmap) { | ||
dev_err(&pdev->dev, "failed to locate regmap\n"); | ||
return -ENODEV; | ||
} | ||
|
||
error = of_property_read_u32(pdev->dev.of_node, "reg", | ||
&pon->baseaddr); | ||
if (error) | ||
return error; | ||
|
||
pon->reboot_mode.dev = &pdev->dev; | ||
pon->reboot_mode.write = pm8916_reboot_mode_write; | ||
error = devm_reboot_mode_register(&pdev->dev, &pon->reboot_mode); | ||
if (error) { | ||
dev_err(&pdev->dev, "can't register reboot mode\n"); | ||
return error; | ||
} | ||
|
||
platform_set_drvdata(pdev, pon); | ||
|
||
return devm_of_platform_populate(&pdev->dev); | ||
} | ||
|
||
static const struct of_device_id pm8916_pon_id_table[] = { | ||
{ .compatible = "qcom,pm8916-pon" }, | ||
{ } | ||
}; | ||
MODULE_DEVICE_TABLE(of, pm8916_pon_id_table); | ||
|
||
static struct platform_driver pm8916_pon_driver = { | ||
.probe = pm8916_pon_probe, | ||
.driver = { | ||
.name = "pm8916-pon", | ||
.of_match_table = of_match_ptr(pm8916_pon_id_table), | ||
}, | ||
}; | ||
module_platform_driver(pm8916_pon_driver); | ||
|
||
MODULE_DESCRIPTION("pm8916 Power On driver"); | ||
MODULE_LICENSE("GPL v2"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.