cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

fsl-imx-sahara.yaml (701B)


      1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
      2%YAML 1.2
      3---
      4$id: http://devicetree.org/schemas/crypto/fsl-imx-sahara.yaml#
      5$schema: http://devicetree.org/meta-schemas/core.yaml#
      6
      7title: Freescale SAHARA Cryptographic Accelerator included in some i.MX chips
      8
      9maintainers:
     10  - Steffen Trumtrar <s.trumtrar@pengutronix.de>
     11
     12properties:
     13  compatible:
     14    enum:
     15      - fsl,imx27-sahara
     16      - fsl,imx53-sahara
     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    crypto@10025000 {
     34        compatible = "fsl,imx27-sahara";
     35        reg = < 0x10025000 0x800>;
     36        interrupts = <75>;
     37    };