blob: d9cca4875bd64659079b114712974f82a1950b17 [file] [log] [blame]
Tom Rini53633a82024-02-29 12:33:36 -05001Axis crypto engine with PDMA interface.
2
3Required properties:
4- compatible : Should be one of the following strings:
5 "axis,artpec6-crypto" for the version in the Axis ARTPEC-6 SoC
6 "axis,artpec7-crypto" for the version in the Axis ARTPEC-7 SoC.
7- reg: Base address and size for the PDMA register area.
8- interrupts: Interrupt handle for the PDMA interrupt line.
9
10Example:
11
12crypto@f4264000 {
13 compatible = "axis,artpec6-crypto";
14 reg = <0xf4264000 0x1000>;
15 interrupts = <GIC_SPI 19 IRQ_TYPE_LEVEL_HIGH>;
16};