summaryrefslogtreecommitdiffstats
path: root/dts/Bindings
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2017-01-10 08:26:28 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2017-01-10 08:48:45 +0100
commit0049feeb2ee60078619f4d3899041abbb37f12fe (patch)
tree0cf864f81c57208cf3868e0db23aa6a0ceb0af92 /dts/Bindings
parenta40531fb3c11dc4ee8cca43c91b471da1fd3c1ab (diff)
downloadbarebox-0049feeb2ee60078619f4d3899041abbb37f12fe.tar.gz
barebox-0049feeb2ee60078619f4d3899041abbb37f12fe.tar.xz
dts: update to v4.10-rc3
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'dts/Bindings')
-rw-r--r--dts/Bindings/input/tps65218-pwrbutton.txt4
-rw-r--r--dts/Bindings/power/supply/tps65217_charger.txt7
2 files changed, 9 insertions, 2 deletions
diff --git a/dts/Bindings/input/tps65218-pwrbutton.txt b/dts/Bindings/input/tps65218-pwrbutton.txt
index 3e5b979334..8682ab6d4a 100644
--- a/dts/Bindings/input/tps65218-pwrbutton.txt
+++ b/dts/Bindings/input/tps65218-pwrbutton.txt
@@ -8,8 +8,9 @@ This driver provides a simple power button event via an Interrupt.
Required properties:
- compatible: should be "ti,tps65217-pwrbutton" or "ti,tps65218-pwrbutton"
-Required properties for TPS65218:
+Required properties:
- interrupts: should be one of the following
+ - <2>: For controllers compatible with tps65217
- <3 IRQ_TYPE_EDGE_BOTH>: For controllers compatible with tps65218
Examples:
@@ -17,6 +18,7 @@ Examples:
&tps {
tps65217-pwrbutton {
compatible = "ti,tps65217-pwrbutton";
+ interrupts = <2>;
};
};
diff --git a/dts/Bindings/power/supply/tps65217_charger.txt b/dts/Bindings/power/supply/tps65217_charger.txt
index 98d131acee..a11072c5a8 100644
--- a/dts/Bindings/power/supply/tps65217_charger.txt
+++ b/dts/Bindings/power/supply/tps65217_charger.txt
@@ -2,11 +2,16 @@ TPS65217 Charger
Required Properties:
-compatible: "ti,tps65217-charger"
+-interrupts: TPS65217 interrupt numbers for the AC and USB charger input change.
+ Should be <0> for the USB charger and <1> for the AC adapter.
+-interrupt-names: Should be "USB" and "AC"
This node is a subnode of the tps65217 PMIC.
Example:
tps65217-charger {
- compatible = "ti,tps65090-charger";
+ compatible = "ti,tps65217-charger";
+ interrupts = <0>, <1>;
+ interrupt-names = "USB", "AC";
};