diff options
| author | Ray Jui <[email protected]> | 2017-09-06 17:27:41 -0700 |
|---|---|---|
| committer | Lee Jones <[email protected]> | 2017-10-13 10:42:58 +0100 |
| commit | 58ab243ef5ad1aee7600eb4bd8d9ce5a63401c5e (patch) | |
| tree | b6991fbd816ebd3cb1c3715b75bed7824512fc69 | |
| parent | 4589515af30005a404bd34e4b7933f98e68849f4 (diff) | |
syscon: dt-bindings: Add binding doc for Broadcom iProc CDRU
Add binding document for Broadcom iProc's Chip Device Resource Unit
(CDRU). Multiple iProc based chips have this CDRU block that contains
miscellaneous registers for chip or device configurations. Start with
Stingray specific compatible string for the initial binding
Signed-off-by: Ray Jui <[email protected]>
Reviewed-by: Scott Branden <[email protected]>
Signed-off-by: Lee Jones <[email protected]>
| -rw-r--r-- | Documentation/devicetree/bindings/mfd/brcm,iproc-cdru.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/mfd/brcm,iproc-cdru.txt b/Documentation/devicetree/bindings/mfd/brcm,iproc-cdru.txt new file mode 100644 index 000000000000..82f82e069563 --- /dev/null +++ b/Documentation/devicetree/bindings/mfd/brcm,iproc-cdru.txt @@ -0,0 +1,16 @@ +Broadcom iProc Chip Device Resource Unit (CDRU) + +Various Broadcom iProc SoCs have a set of registers that provide various +chip specific device and resource configurations. This node allows access to +these CDRU registers via syscon. + +Required properties: +- compatible: should contain: + "brcm,sr-cdru", "syscon" for Stingray +- reg: base address and range of the CDRU registers + +Example: + cdru: syscon@6641d000 { + compatible = "brcm,sr-cdru", "syscon"; + reg = <0 0x6641d000 0 0x400>; + }; |