aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/crypto
diff options
context:
space:
mode:
authorVinod Koul <vkoul@kernel.org>2018-07-16 11:20:23 +0530
committerHerbert Xu <herbert@gondor.apana.org.au>2018-07-27 19:04:31 +0800
commitd978b031c5886f18341cb4b609b150d81ad0faf4 (patch)
tree6e38dcb52ac4894c63f7be0832687ce1124935f9 /Documentation/devicetree/bindings/crypto
parenthwrng: msm - remove msm hw_random driver (diff)
downloadlinux-dev-d978b031c5886f18341cb4b609b150d81ad0faf4.tar.xz
linux-dev-d978b031c5886f18341cb4b609b150d81ad0faf4.zip
dt-bindings: crypto: Move prng binding to crypto
Now that we are adding new driver for prng in crypto, move the binding as well. Signed-off-by: Vinod Koul <vkoul@kernel.org> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'Documentation/devicetree/bindings/crypto')
-rw-r--r--Documentation/devicetree/bindings/crypto/qcom,prng.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/crypto/qcom,prng.txt b/Documentation/devicetree/bindings/crypto/qcom,prng.txt
new file mode 100644
index 000000000000..8e5853c2879b
--- /dev/null
+++ b/Documentation/devicetree/bindings/crypto/qcom,prng.txt
@@ -0,0 +1,17 @@
+Qualcomm MSM pseudo random number generator.
+
+Required properties:
+
+- compatible : should be "qcom,prng"
+- reg : specifies base physical address and size of the registers map
+- clocks : phandle to clock-controller plus clock-specifier pair
+- clock-names : "core" clocks all registers, FIFO and circuits in PRNG IP block
+
+Example:
+
+ rng@f9bff000 {
+ compatible = "qcom,prng";
+ reg = <0xf9bff000 0x200>;
+ clocks = <&clock GCC_PRNG_AHB_CLK>;
+ clock-names = "core";
+ };