xref: /linux/Documentation/devicetree/bindings/crypto/amd,ccp-seattle-v1a.yaml (revision 14418ddcc2c2055743ac7ee53d5ac2cf8a8660a7)
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/amd,ccp-seattle-v1a.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: AMD Cryptographic Coprocessor (ccp)
8
9maintainers:
10  - Tom Lendacky <thomas.lendacky@amd.com>
11
12properties:
13  compatible:
14    const: amd,ccp-seattle-v1a
15
16  reg:
17    maxItems: 1
18
19  interrupts:
20    maxItems: 1
21
22  dma-coherent: true
23
24required:
25  - compatible
26  - reg
27  - interrupts
28
29additionalProperties: false
30
31examples:
32  - |
33    crypto@e0100000 {
34        compatible = "amd,ccp-seattle-v1a";
35        reg = <0xe0100000 0x10000>;
36        interrupts = <0 3 4>;
37        dma-coherent;
38    };
39