dt-bindings: power: supply: cpcap-battery: Add binding
authorTony Lindgren <tony@atomide.com>
Thu, 1 Jun 2017 00:19:20 +0000 (17:19 -0700)
committerSebastian Reichel <sre@kernel.org>
Thu, 8 Jun 2017 11:05:49 +0000 (13:05 +0200)
Add binding for cpcap pmic battery.

Cc: devicetree@vger.kernel.org
Cc: Marcel Partap <mpartap@gmx.net>
Cc: Michael Scott <michael.scott@linaro.org>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
Documentation/devicetree/bindings/power/supply/cpcap-battery.txt [new file with mode: 0644]

diff --git a/Documentation/devicetree/bindings/power/supply/cpcap-battery.txt b/Documentation/devicetree/bindings/power/supply/cpcap-battery.txt
new file mode 100644 (file)
index 0000000..d21b1cd
--- /dev/null
@@ -0,0 +1,27 @@
+Motorola CPCAP PMIC battery driver binding
+
+Required properties:
+- compatible: Shall be "motorola,cpcap-battery"
+- interrupts: Interrupt specifier for each name in interrupt-names
+- interrupt-names: Should contain the following entries:
+                  "lowbph", "lowbpl", "chrgcurr1", "battdetb"
+- io-channels: IIO ADC channel specifier for each name in io-channel-names
+- io-channel-names: Should contain the following entries:
+                   "battdetb", "battp", "chg_isense", "batti"
+
+Example:
+
+cpcap_battery: battery {
+       compatible = "motorola,cpcap-battery";
+       interrupts-extended = <
+               &cpcap 5 0 &cpcap 3 0
+               &cpcap 20 0 &cpcap 54 0
+       >;
+       interrupt-names =
+               "lowbph", "lowbpl",
+               "chrgcurr1", "battdetb";
+       io-channels = <&cpcap_adc 0 &cpcap_adc 1
+                      &cpcap_adc 5 &cpcap_adc 6>;
+       io-channel-names = "battdetb", "battp",
+                          "chg_isense", "batti";
+};