1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/crypto/axis,artpec6-crypto.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Axis ARTPEC6 crypto engine with PDMA interface 8 9maintainers: 10 - Lars Persson <lars.persson@axis.com> 11 12properties: 13 compatible: 14 enum: 15 - axis,artpec6-crypto 16 - axis,artpec7-crypto 17 18 reg: 19 maxItems: 1 20 21 interrupts: 22 maxItems: 1 23 24required: 25 - compatible 26 - reg 27 - interrupts 28 29additionalProperties: false 30 31examples: 32 - | 33 #include <dt-bindings/interrupt-controller/arm-gic.h> 34 35 crypto@f4264000 { 36 compatible = "axis,artpec6-crypto"; 37 reg = <0xf4264000 0x1000>; 38 interrupts = <GIC_SPI 19 IRQ_TYPE_LEVEL_HIGH>; 39 }; 40