aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/crypto
diff options
context:
space:
mode:
authorJames Hartley <james.hartley@imgtec.com>2015-03-12 19:17:27 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2015-03-16 06:46:25 -0400
commit5986ac4fcb451160acdc8bf3a0b81ac9a72b3251 (patch)
treec448fd5496a7fe4780be6afbf920ad074aaba940 /Documentation/devicetree/bindings/crypto
parentd358f1abbf71ad4b10e843b589033e5d37142436 (diff)
Documentation: crypto: Add DT binding info for the img hw hash accelerator
This adds the binding documentation for the Imagination Technologies hash accelerator that provides hardware acceleration for SHA1/SHA224/SHA256/MD5 hashes. This hardware will be present in the upcoming pistachio SoC. Signed-off-by: James Hartley <james.hartley@imgtec.com> Reviewed-by: Andrew Bresticker <abrestic@chromium.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/img-hash.txt27
1 files changed, 27 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/crypto/img-hash.txt b/Documentation/devicetree/bindings/crypto/img-hash.txt
new file mode 100644
index 000000000000..91a3d757d641
--- /dev/null
+++ b/Documentation/devicetree/bindings/crypto/img-hash.txt
@@ -0,0 +1,27 @@
1Imagination Technologies hardware hash accelerator
2
3The hash accelerator provides hardware hashing acceleration for
4SHA1, SHA224, SHA256 and MD5 hashes
5
6Required properties:
7
8- compatible : "img,hash-accelerator"
9- reg : Offset and length of the register set for the module, and the DMA port
10- interrupts : The designated IRQ line for the hashing module.
11- dmas : DMA specifier as per Documentation/devicetree/bindings/dma/dma.txt
12- dma-names : Should be "tx"
13- clocks : Clock specifiers
14- clock-names : "sys" Used to clock the hash block registers
15 "hash" Used to clock data through the accelerator
16
17Example:
18
19 hash: hash@18149600 {
20 compatible = "img,hash-accelerator";
21 reg = <0x18149600 0x100>, <0x18101100 0x4>;
22 interrupts = <GIC_SHARED 59 IRQ_TYPE_LEVEL_HIGH>;
23 dmas = <&dma 8 0xffffffff 0>;
24 dma-names = "tx";
25 clocks = <&cr_periph SYS_CLK_HASH>, <&clk_periph PERIPH_CLK_ROM>;
26 clock-names = "sys", "hash";
27 };