Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
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
24 iommus:
25 maxItems: 4
26
27required:
28 - compatible
29 - reg
30 - interrupts
31
32additionalProperties: false
33
34examples:
35 - |
36 crypto@e0100000 {
37 compatible = "amd,ccp-seattle-v1a";
38 reg = <0xe0100000 0x10000>;
39 interrupts = <0 3 4>;
40 dma-coherent;
41 };