xref: /freebsd/sys/contrib/device-tree/Bindings/crypto/intel,keembay-ocs-aes.yaml (revision 5def4c47d4bd90b209b9b4a4ba9faec15846d8fd)
1*5def4c47SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*5def4c47SEmmanuel Vadot%YAML 1.2
3*5def4c47SEmmanuel Vadot---
4*5def4c47SEmmanuel Vadot$id: http://devicetree.org/schemas/crypto/intel,keembay-ocs-aes.yaml#
5*5def4c47SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*5def4c47SEmmanuel Vadot
7*5def4c47SEmmanuel Vadottitle: Intel Keem Bay OCS AES Device Tree Bindings
8*5def4c47SEmmanuel Vadot
9*5def4c47SEmmanuel Vadotmaintainers:
10*5def4c47SEmmanuel Vadot  - Daniele Alessandrelli <daniele.alessandrelli@intel.com>
11*5def4c47SEmmanuel Vadot
12*5def4c47SEmmanuel Vadotdescription:
13*5def4c47SEmmanuel Vadot  The Intel Keem Bay Offload and Crypto Subsystem (OCS) AES engine provides
14*5def4c47SEmmanuel Vadot  hardware-accelerated AES/SM4 encryption/decryption.
15*5def4c47SEmmanuel Vadot
16*5def4c47SEmmanuel Vadotproperties:
17*5def4c47SEmmanuel Vadot  compatible:
18*5def4c47SEmmanuel Vadot    const: intel,keembay-ocs-aes
19*5def4c47SEmmanuel Vadot
20*5def4c47SEmmanuel Vadot  reg:
21*5def4c47SEmmanuel Vadot    maxItems: 1
22*5def4c47SEmmanuel Vadot
23*5def4c47SEmmanuel Vadot  interrupts:
24*5def4c47SEmmanuel Vadot    maxItems: 1
25*5def4c47SEmmanuel Vadot
26*5def4c47SEmmanuel Vadot  clocks:
27*5def4c47SEmmanuel Vadot    maxItems: 1
28*5def4c47SEmmanuel Vadot
29*5def4c47SEmmanuel Vadotrequired:
30*5def4c47SEmmanuel Vadot  - compatible
31*5def4c47SEmmanuel Vadot  - reg
32*5def4c47SEmmanuel Vadot  - interrupts
33*5def4c47SEmmanuel Vadot  - clocks
34*5def4c47SEmmanuel Vadot
35*5def4c47SEmmanuel VadotadditionalProperties: false
36*5def4c47SEmmanuel Vadot
37*5def4c47SEmmanuel Vadotexamples:
38*5def4c47SEmmanuel Vadot  - |
39*5def4c47SEmmanuel Vadot    #include <dt-bindings/interrupt-controller/arm-gic.h>
40*5def4c47SEmmanuel Vadot    crypto@30008000 {
41*5def4c47SEmmanuel Vadot      compatible = "intel,keembay-ocs-aes";
42*5def4c47SEmmanuel Vadot      reg = <0x30008000 0x1000>;
43*5def4c47SEmmanuel Vadot      interrupts = <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH>;
44*5def4c47SEmmanuel Vadot      clocks = <&scmi_clk 95>;
45*5def4c47SEmmanuel Vadot    };
46