15def4c47SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 25def4c47SEmmanuel Vadot%YAML 1.2 35def4c47SEmmanuel Vadot--- 45def4c47SEmmanuel Vadot$id: http://devicetree.org/schemas/crypto/intel,keembay-ocs-aes.yaml# 55def4c47SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 65def4c47SEmmanuel Vadot 7*7ef62cebSEmmanuel Vadottitle: Intel Keem Bay OCS AES 85def4c47SEmmanuel Vadot 95def4c47SEmmanuel Vadotmaintainers: 105def4c47SEmmanuel Vadot - Daniele Alessandrelli <daniele.alessandrelli@intel.com> 115def4c47SEmmanuel Vadot 125def4c47SEmmanuel Vadotdescription: 135def4c47SEmmanuel Vadot The Intel Keem Bay Offload and Crypto Subsystem (OCS) AES engine provides 145def4c47SEmmanuel Vadot hardware-accelerated AES/SM4 encryption/decryption. 155def4c47SEmmanuel Vadot 165def4c47SEmmanuel Vadotproperties: 175def4c47SEmmanuel Vadot compatible: 185def4c47SEmmanuel Vadot const: intel,keembay-ocs-aes 195def4c47SEmmanuel Vadot 205def4c47SEmmanuel Vadot reg: 215def4c47SEmmanuel Vadot maxItems: 1 225def4c47SEmmanuel Vadot 235def4c47SEmmanuel Vadot interrupts: 245def4c47SEmmanuel Vadot maxItems: 1 255def4c47SEmmanuel Vadot 265def4c47SEmmanuel Vadot clocks: 275def4c47SEmmanuel Vadot maxItems: 1 285def4c47SEmmanuel Vadot 295def4c47SEmmanuel Vadotrequired: 305def4c47SEmmanuel Vadot - compatible 315def4c47SEmmanuel Vadot - reg 325def4c47SEmmanuel Vadot - interrupts 335def4c47SEmmanuel Vadot - clocks 345def4c47SEmmanuel Vadot 355def4c47SEmmanuel VadotadditionalProperties: false 365def4c47SEmmanuel Vadot 375def4c47SEmmanuel Vadotexamples: 385def4c47SEmmanuel Vadot - | 395def4c47SEmmanuel Vadot #include <dt-bindings/interrupt-controller/arm-gic.h> 405def4c47SEmmanuel Vadot crypto@30008000 { 415def4c47SEmmanuel Vadot compatible = "intel,keembay-ocs-aes"; 425def4c47SEmmanuel Vadot reg = <0x30008000 0x1000>; 435def4c47SEmmanuel Vadot interrupts = <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH>; 445def4c47SEmmanuel Vadot clocks = <&scmi_clk 95>; 455def4c47SEmmanuel Vadot }; 46