aboutsummaryrefslogtreecommitdiff
path: root/Bindings/reset/snps,hsdk-reset.txt
diff options
context:
space:
mode:
authorEmmanuel Vadot <manu@FreeBSD.org>2017-11-13 20:15:33 +0000
committerEmmanuel Vadot <manu@FreeBSD.org>2017-11-13 20:15:33 +0000
commit550370858c61e6f7fe3832de73daa9cc25ba716a (patch)
treeb8d380020ec7026d5a54e3a2c67ef46ac8859511 /Bindings/reset/snps,hsdk-reset.txt
parentd5464ff11700ac44568e6816e00d1d1427cc46ae (diff)
downloadsrc-550370858c61e6f7fe3832de73daa9cc25ba716a.tar.gz
src-550370858c61e6f7fe3832de73daa9cc25ba716a.zip
Update our copies of the Device Tree Source to Linux 4.14vendor/device-tree/4.14
Notes
Notes: svn path=/vendor/device-tree/dist/; revision=325773 svn path=/vendor/device-tree/4.14/; revision=325774; tag=vendor/device-tree/4.14
Diffstat (limited to 'Bindings/reset/snps,hsdk-reset.txt')
-rw-r--r--Bindings/reset/snps,hsdk-reset.txt28
1 files changed, 28 insertions, 0 deletions
diff --git a/Bindings/reset/snps,hsdk-reset.txt b/Bindings/reset/snps,hsdk-reset.txt
new file mode 100644
index 000000000000..830069b1c37c
--- /dev/null
+++ b/Bindings/reset/snps,hsdk-reset.txt
@@ -0,0 +1,28 @@
+Binding for the Synopsys HSDK reset controller
+
+This binding uses the common reset binding[1].
+
+[1] Documentation/devicetree/bindings/reset/reset.txt
+
+Required properties:
+- compatible: should be "snps,hsdk-reset".
+- reg: should always contain 2 pairs address - length: first for reset
+ configuration register and second for corresponding SW reset and status bits
+ register.
+- #reset-cells: from common reset binding; Should always be set to 1.
+
+Example:
+ reset: reset@880 {
+ compatible = "snps,hsdk-reset";
+ #reset-cells = <1>;
+ reg = <0x8A0 0x4>, <0xFF0 0x4>;
+ };
+
+Specifying reset lines connected to IP modules:
+ ethernet@.... {
+ ....
+ resets = <&reset HSDK_V1_ETH_RESET>;
+ ....
+ };
+
+The index could be found in <dt-bindings/reset/snps,hsdk-reset.h>