Merge tag 'upstream-4.19-rc1' of git://git.infradead.org/linux-ubifs
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / crypto / arm-cryptocell.txt
1 Arm TrustZone CryptoCell cryptographic engine
2
3 Required properties:
4 - compatible: Should be one of: "arm,cryptocell-712-ree",
5   "arm,cryptocell-710-ree" or "arm,cryptocell-630p-ree".
6 - reg: Base physical address of the engine and length of memory mapped region.
7 - interrupts: Interrupt number for the device.
8
9 Optional properties:
10 - clocks: Reference to the crypto engine clock.
11 - dma-coherent: Present if dma operations are coherent.
12
13 Examples:
14
15        arm_cc712: crypto@80000000 {
16                compatible = "arm,cryptocell-712-ree";
17                interrupt-parent = <&intc>;
18                interrupts = < 0 30 4 >;
19                reg = < 0x80000000 0x10000 >;
20
21        };