Merge tag 'drm-for-v4.16-part2-fixes' of git://people.freedesktop.org/~airlied/linux
[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 "arm,cryptocell-712-ree".
5 - reg: Base physical address of the engine and length of memory mapped region.
6 - interrupts: Interrupt number for the device.
7
8 Optional properties:
9 - interrupt-parent: The phandle for the interrupt controller that services
10   interrupts for this device.
11 - clocks: Reference to the crypto engine clock.
12 - dma-coherent: Present if dma operations are coherent.
13
14 Examples:
15
16        arm_cc712: crypto@80000000 {
17                compatible = "arm,cryptocell-712-ree";
18                interrupt-parent = <&intc>;
19                interrupts = < 0 30 4 >;
20                reg = < 0x80000000 0x10000 >;
21
22        };