diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2015-04-17 19:48:46 +0200 |
---|---|---|
committer | Florian Fainelli <f.fainelli@gmail.com> | 2015-05-13 18:59:51 +0200 |
commit | b3e913bed6ac8ea0cd01233252699fb43de754a5 (patch) | |
tree | d850358c49e14c672787943f3567cb55ec41299e /Documentation/devicetree/bindings/reset/brcm,bcm63138-pmb.txt | |
parent | Linux 4.1-rc1 (diff) | |
download | linux-b3e913bed6ac8ea0cd01233252699fb43de754a5.tar.xz linux-b3e913bed6ac8ea0cd01233252699fb43de754a5.zip |
Documentation: DT: Add Broadcom BCM63138 PMB binding
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>
Diffstat (limited to 'Documentation/devicetree/bindings/reset/brcm,bcm63138-pmb.txt')
-rw-r--r-- | Documentation/devicetree/bindings/reset/brcm,bcm63138-pmb.txt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/reset/brcm,bcm63138-pmb.txt b/Documentation/devicetree/bindings/reset/brcm,bcm63138-pmb.txt new file mode 100644 index 000000000000..a98872d27872 --- /dev/null +++ b/Documentation/devicetree/bindings/reset/brcm,bcm63138-pmb.txt @@ -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>; + }; |