-
Notifications
You must be signed in to change notification settings - Fork 0
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-v3.14' of git://git.infradead.org/battery-2.6
Pull battery updates from Dmitry Eremin-Solenikov: "I'm picking up power supply maintainership from Anton Vorontov. Could you please pull battery-2.6 git tree changes prepared for the v3.14 release. Highlights: - Power supply notifier - Several drivers gained DT support - Added Maxim 14577 driver - Change of maintainer" * tag 'for-v3.14' of git://git.infradead.org/battery-2.6: MAINTAINERS: Pick up power supply maintainership max17042_battery: Add IRQF_ONESHOT flag to use default irq handler gpio-charger: Support wakeup events power_supply: Add charger support for Maxim 14577 dt: Binding documentation for isp1704 charger isp1704_charger: Add DT support charger-manager: of_cm_parse_desc() should be static bq2415x_charger: Add DT support power_supply: Add power_supply_get_by_phandle bq2415x_charger: Use power_supply notifier for automode power: reset: Add as3722 power-off driver mfd: AS3722: Add dt node properties for system power controller charger-manager: Support deivce tree in charger manager driver charger-manager: Modify the way of checking battery's temperature power_supply: Add power_supply notifier
- Loading branch information
Showing
20 changed files
with
1,043 additions
and
132 deletions.
There are no files selected for viewing
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,17 @@ | ||
Binding for NXP ISP1704 USB Charger Detection | ||
|
||
Required properties: | ||
- compatible: Should contain one of the following: | ||
* "nxp,isp1704" | ||
- nxp,enable-gpio: Should contain a phandle + gpio-specifier | ||
to the GPIO pin connected to the chip's enable pin. | ||
- usb-phy: Should contain a phandle to the USB PHY | ||
the ISP1704 is connected to. | ||
|
||
Example: | ||
|
||
isp1704 { | ||
compatible = "nxp,isp1704"; | ||
nxp,enable-gpio = <&gpio3 3 GPIO_ACTIVE_LOW>; | ||
usb-phy = <&usb2_phy>; | ||
}; |
81 changes: 81 additions & 0 deletions
81
Documentation/devicetree/bindings/power_supply/charger-manager.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,81 @@ | ||
charger-manager bindings | ||
~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
Required properties : | ||
- compatible : "charger-manager" | ||
- <>-supply : for regulator consumer | ||
- cm-num-chargers : number of chargers | ||
- cm-chargers : name of chargers | ||
- cm-fuel-gauge : name of battery fuel gauge | ||
- subnode <regulator> : | ||
- cm-regulator-name : name of charger regulator | ||
- subnode <cable> : | ||
- cm-cable-name : name of charger cable | ||
- cm-cable-extcon : name of extcon dev | ||
(optional) - cm-cable-min : minimum current of cable | ||
(optional) - cm-cable-max : maximum current of cable | ||
|
||
Optional properties : | ||
- cm-name : charger manager's name (default : "battery") | ||
- cm-poll-mode : polling mode (enum polling_modes) | ||
- cm-poll-interval : polling interval | ||
- cm-battery-stat : battery status (enum data_source) | ||
- cm-fullbatt-* : data for full battery checking | ||
- cm-thermal-zone : name of external thermometer's thermal zone | ||
- cm-battery-* : threshold battery temperature for charging | ||
-cold : critical cold temperature of battery for charging | ||
-cold-in-minus : flag that cold temerature is in minus degree | ||
-hot : critical hot temperature of battery for charging | ||
-temp-diff : temperature difference to allow recharging | ||
- cm-dis/charging-max = limits of charging duration | ||
|
||
Example : | ||
charger-manager@0 { | ||
compatible = "charger-manager"; | ||
chg-reg-supply = <&charger_regulator>; | ||
|
||
cm-name = "battery"; | ||
/* Always polling ON : 30s */ | ||
cm-poll-mode = <1>; | ||
cm-poll-interval = <30000>; | ||
|
||
cm-fullbatt-vchkdrop-ms = <30000>; | ||
cm-fullbatt-vchkdrop-volt = <150000>; | ||
cm-fullbatt-soc = <100>; | ||
|
||
cm-battery-stat = <3>; | ||
|
||
cm-num-chargers = <3>; | ||
cm-chargers = "charger0", "charger1", "charger2"; | ||
|
||
cm-fuel-gauge = "fuelgauge0"; | ||
|
||
cm-thermal-zone = "thermal_zone.1" | ||
/* in deci centigrade */ | ||
cm-battery-cold = <50>; | ||
cm-battery-cold-in-minus; | ||
cm-battery-hot = <800>; | ||
cm-battery-temp-diff = <100>; | ||
|
||
/* Allow charging for 5hr */ | ||
cm-charging-max = <18000000>; | ||
/* Allow discharging for 2hr */ | ||
cm-discharging-max = <7200000>; | ||
|
||
regulator@0 { | ||
cm-regulator-name = "chg-reg"; | ||
cable@0 { | ||
cm-cable-name = "USB"; | ||
cm-cable-extcon = "extcon-dev.0"; | ||
cm-cable-min = <475000>; | ||
cm-cable-max = <500000>; | ||
}; | ||
cable@1 { | ||
cm-cable-name = "TA"; | ||
cm-cable-extcon = "extcon-dev.0"; | ||
cm-cable-min = <650000>; | ||
cm-cable-max = <675000>; | ||
}; | ||
}; | ||
|
||
}; |
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.