aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/rng
diff options
context:
space:
mode:
authorÁlvaro Fernández Rojas <noltari@gmail.com>2016-01-17 10:03:57 +0100
committerHerbert Xu <herbert@gondor.apana.org.au>2016-01-25 22:42:09 +0800
commit9dbcc215ad2cee4c07da359cc9e7ac315d031f1d (patch)
tree7cc96b42b96c61c535e127da4ad96deb7e81e96d /Documentation/devicetree/bindings/rng
parenthwrng: bcm63xx - allow building for BMIPS_GENERIC (diff)
downloadlinux-dev-9dbcc215ad2cee4c07da359cc9e7ac315d031f1d.tar.xz
linux-dev-9dbcc215ad2cee4c07da359cc9e7ac315d031f1d.zip
hwrng: brcm63xx - document device tree bindings
Documents device tree bindings for random number generator present on Broadcom BCM6368 SoC. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'Documentation/devicetree/bindings/rng')
-rw-r--r--Documentation/devicetree/bindings/rng/brcm,bcm6368.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/rng/brcm,bcm6368.txt b/Documentation/devicetree/bindings/rng/brcm,bcm6368.txt
new file mode 100644
index 000000000000..4b5ac600bfbd
--- /dev/null
+++ b/Documentation/devicetree/bindings/rng/brcm,bcm6368.txt
@@ -0,0 +1,17 @@
+BCM6368 Random number generator
+
+Required properties:
+
+- compatible : should be "brcm,bcm6368-rng"
+- reg : Specifies base physical address and size of the registers
+- clocks : phandle to clock-controller plus clock-specifier pair
+- clock-names : "ipsec" as a clock name
+
+Example:
+ random: rng@10004180 {
+ compatible = "brcm,bcm6368-rng";
+ reg = <0x10004180 0x14>;
+
+ clocks = <&periph_clk 18>;
+ clock-names = "ipsec";
+ };