summaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2016-07-14 17:18:22 +0200
committerArnd Bergmann <arnd@arndb.de>2016-07-14 17:18:22 +0200
commit8ebe624ab3e3e1a1bd63a8912bdaa4924a59a87a (patch)
tree1f3e48efceb94c2a87c7857d707b433fb461ebef /Documentation/devicetree
parentMerge tag 'samsung-dt64-4.8-2' of git://git.kernel.org/pub/scm/linux/kernel/g... (diff)
parentdt-bindings: reset: Add bindings for the Meson SoC Reset Controller (diff)
downloadlinux-8ebe624ab3e3e1a1bd63a8912bdaa4924a59a87a.tar.xz
linux-8ebe624ab3e3e1a1bd63a8912bdaa4924a59a87a.zip
Merge branch 'reset/for-4.8-2' into next/dt64
This is required to avoid a 'make dtbs' failure: arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi:47:56: fatal error: dt-bindings/reset/amlogic,meson-gxbb-reset.h: No such file or directory The dependency was not handled right earlier, I'm fixing up the branch here to minimize the bisection problem. * reset/for-4.8-2: dt-bindings: reset: Add bindings for the Meson SoC Reset Controller reset: Add support for the Amlogic Meson SoC Reset Controller reset: Return -ENOTSUPP when not configured reset: oxnas: Use devm register API and get rid of platform remove reset: fix Kconfig menu to include reset drivers in sub-menu reset: zynq: use devm_reset_controller_register() reset: socfpga: use devm_reset_controller_register() reset: sunxi: use devm_reset_controller_register() reset: pistachio: use devm_reset_controller_register() reset: ath79: use devm_reset_controller_register() reset: add devm_reset_controller_register API
Diffstat (limited to 'Documentation/devicetree')
-rw-r--r--Documentation/devicetree/bindings/reset/amlogic,meson-reset.txt18
1 files changed, 18 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/reset/amlogic,meson-reset.txt b/Documentation/devicetree/bindings/reset/amlogic,meson-reset.txt
new file mode 100644
index 000000000000..e746b631793a
--- /dev/null
+++ b/Documentation/devicetree/bindings/reset/amlogic,meson-reset.txt
@@ -0,0 +1,18 @@
+Amlogic Meson SoC Reset Controller
+=======================================
+
+Please also refer to reset.txt in this directory for common reset
+controller binding usage.
+
+Required properties:
+- compatible: Should be "amlogic,meson8b-reset" or "amlogic,meson-gxbb-reset"
+- reg: should contain the register address base
+- #reset-cells: 1, see below
+
+example:
+
+reset: reset-controller {
+ compatible = "amlogic,meson-gxbb-reset";
+ reg = <0x0 0x04404 0x0 0x20>;
+ #reset-cells = <1>;
+};