Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/crypto/xlnx,zynqmp-aes.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Xilinx ZynqMP AES-GCM Hardware Accelerator Device Tree Bindings
0008 
0009 maintainers:
0010   - Kalyani Akula <kalyani.akula@xilinx.com>
0011   - Michal Simek <michal.simek@xilinx.com>
0012 
0013 description: |
0014   The ZynqMP AES-GCM hardened cryptographic accelerator is used to
0015   encrypt or decrypt the data with provided key and initialization vector.
0016 
0017 properties:
0018   compatible:
0019     const: xlnx,zynqmp-aes
0020 
0021 required:
0022   - compatible
0023 
0024 additionalProperties: false
0025 
0026 examples:
0027   - |
0028     firmware {
0029       zynqmp_firmware: zynqmp-firmware {
0030         compatible = "xlnx,zynqmp-firmware";
0031         method = "smc";
0032         xlnx_aes: zynqmp-aes {
0033           compatible = "xlnx,zynqmp-aes";
0034         };
0035       };
0036     };
0037 ...