Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/Documentation/devicetree/bindings/crypto/ti,am62l-dthev2.yaml
29539 views
1
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2
%YAML 1.2
3
---
4
$id: http://devicetree.org/schemas/crypto/ti,am62l-dthev2.yaml#
5
$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7
title: K3 SoC DTHE V2 crypto module
8
9
maintainers:
10
- T Pratham <t-pratham@ti.com>
11
12
properties:
13
compatible:
14
enum:
15
- ti,am62l-dthev2
16
17
reg:
18
maxItems: 1
19
20
dmas:
21
items:
22
- description: AES Engine RX DMA Channel
23
- description: AES Engine TX DMA Channel
24
- description: SHA Engine TX DMA Channel
25
26
dma-names:
27
items:
28
- const: rx
29
- const: tx1
30
- const: tx2
31
32
required:
33
- compatible
34
- reg
35
- dmas
36
- dma-names
37
38
additionalProperties: false
39
40
examples:
41
- |
42
crypto@40800000 {
43
compatible = "ti,am62l-dthev2";
44
reg = <0x40800000 0x10000>;
45
46
dmas = <&main_bcdma 0 0 0x4700 0>,
47
<&main_bcdma 0 0 0xc701 0>,
48
<&main_bcdma 0 0 0xc700 0>;
49
dma-names = "rx", "tx1", "tx2";
50
};
51
52