Path: blob/master/Documentation/devicetree/bindings/crypto/nvidia,tegra234-se-aes.yaml
26308 views
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)1%YAML 1.22---3$id: http://devicetree.org/schemas/crypto/nvidia,tegra234-se-aes.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: NVIDIA Tegra Security Engine for AES algorithms78description:9The Tegra Security Engine accelerates the following AES encryption/decryption10algorithms - AES-ECB, AES-CBC, AES-OFB, AES-XTS, AES-CTR, AES-GCM, AES-CCM,11AES-CMAC1213maintainers:14- Akhil R <akhilrajeev@nvidia.com>1516properties:17compatible:18const: nvidia,tegra234-se-aes1920reg:21maxItems: 12223clocks:24maxItems: 12526iommus:27maxItems: 12829dma-coherent: true3031required:32- compatible33- reg34- clocks35- iommus3637additionalProperties: false3839examples:40- |41#include <dt-bindings/memory/tegra234-mc.h>42#include <dt-bindings/clock/tegra234-clock.h>4344crypto@15820000 {45compatible = "nvidia,tegra234-se-aes";46reg = <0x15820000 0x10000>;47clocks = <&bpmp TEGRA234_CLK_SE>;48iommus = <&smmu TEGRA234_SID_SES_SE1>;49dma-coherent;50};51...525354