]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Documentation: DT: Add Broadcom BCM63138 PMB binding
authorFlorian Fainelli <f.fainelli@gmail.com>
Fri, 17 Apr 2015 17:48:46 +0000 (10:48 -0700)
committerFlorian Fainelli <f.fainelli@gmail.com>
Wed, 13 May 2015 16:59:51 +0000 (09:59 -0700)
Add a Device Tree binding for the Broadcom BCM63138 Processor Monitor
Bus, which is an internal bus used to access different power and reset
signals within a BCM63138 System-on-a-Chip.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Documentation/devicetree/bindings/reset/brcm,bcm63138-pmb.txt [new file with mode: 0644]

diff --git a/Documentation/devicetree/bindings/reset/brcm,bcm63138-pmb.txt b/Documentation/devicetree/bindings/reset/brcm,bcm63138-pmb.txt
new file mode 100644 (file)
index 0000000..a98872d
--- /dev/null
@@ -0,0 +1,19 @@
+Broadcom BCM63138 Processor Monitor Bus binding
+===============================================
+
+Please also refer to reset.txt in this directory for common reset
+controller binding usage.
+
+Require properties:
+
+- compatible: must be "brcm,bcm63138-pmb"
+- reg: base register address and size for this bus controller
+- #reset-cells: must be 2 first cell is the address within the bus instance designated
+  by the phandle, and the second is the number of zones for this peripheral
+
+Example:
+       pmb0: reset-controller@4800c0 {
+               compatible = "brcm,bcm63138-pmb";
+               reg = <0x4800c0 0x10>;
+               #reset-cells = <2>;
+       };