Skip to content

Commit 7d39f32

Browse files
robherringherbertx
authored andcommitted
dt-bindings: crypto: Convert Marvell CESA to DT schema
Convert the Marvell CESA binding to DT schema format. The marvell-cesa.txt and mv_cesa.txt are duplicate bindings. The clock properties are quite varied for each platform hence the if/then schemas. The old binding was fairly accurate with reality. The original binding didn't mention there is 1 interrupt per CESA engine. Based on users, there's a maximum of 2 engines. Signed-off-by: Rob Herring (Arm) <[email protected]> Signed-off-by: Herbert Xu <[email protected]>
1 parent 7eff621 commit 7d39f32

File tree

3 files changed

+133
-76
lines changed

3 files changed

+133
-76
lines changed
Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2+
%YAML 1.2
3+
---
4+
$id: http://devicetree.org/schemas/crypto/marvell,orion-crypto.yaml#
5+
$schema: http://devicetree.org/meta-schemas/core.yaml#
6+
7+
title: Marvell Cryptographic Engines And Security Accelerator
8+
9+
maintainers:
10+
- Andrew Lunn <[email protected]>
11+
- Boris Brezillon <[email protected]>
12+
13+
description: |
14+
Marvell Cryptographic Engines And Security Accelerator
15+
16+
properties:
17+
compatible:
18+
enum:
19+
- marvell,armada-370-crypto
20+
- marvell,armada-xp-crypto
21+
- marvell,armada-375-crypto
22+
- marvell,armada-38x-crypto
23+
- marvell,dove-crypto
24+
- marvell,kirkwood-crypto
25+
- marvell,orion-crypto
26+
27+
reg:
28+
minItems: 1
29+
items:
30+
- description: Registers region
31+
- description: SRAM region
32+
deprecated: true
33+
34+
reg-names:
35+
minItems: 1
36+
items:
37+
- const: regs
38+
- const: sram
39+
deprecated: true
40+
41+
interrupts:
42+
description: One interrupt for each CESA engine
43+
minItems: 1
44+
maxItems: 2
45+
46+
clocks:
47+
description: One or two clocks for each CESA engine
48+
minItems: 1
49+
maxItems: 4
50+
51+
clock-names:
52+
minItems: 1
53+
items:
54+
- const: cesa0
55+
- const: cesa1
56+
- const: cesaz0
57+
- const: cesaz1
58+
59+
marvell,crypto-srams:
60+
description: Phandle(s) to crypto SRAM.
61+
$ref: /schemas/types.yaml#/definitions/phandle-array
62+
minItems: 1
63+
maxItems: 2
64+
items:
65+
maxItems: 1
66+
67+
marvell,crypto-sram-size:
68+
description: SRAM size reserved for crypto operations.
69+
$ref: /schemas/types.yaml#/definitions/uint32
70+
default: 0x800
71+
72+
required:
73+
- compatible
74+
- reg
75+
- reg-names
76+
- interrupts
77+
- marvell,crypto-srams
78+
79+
allOf:
80+
- if:
81+
not:
82+
properties:
83+
compatible:
84+
enum:
85+
- marvell,kirkwood-crypto
86+
- marvell,orion-crypto
87+
then:
88+
required:
89+
- clocks
90+
- if:
91+
properties:
92+
compatible:
93+
contains:
94+
enum:
95+
- marvell,armada-370-crypto
96+
- marvell,armada-375-crypto
97+
- marvell,armada-38x-crypto
98+
- marvell,armada-xp-crypto
99+
then:
100+
required:
101+
- clock-names
102+
- if:
103+
properties:
104+
compatible:
105+
contains:
106+
enum:
107+
- marvell,armada-375-crypto
108+
- marvell,armada-38x-crypto
109+
then:
110+
properties:
111+
clocks:
112+
minItems: 4
113+
clock-names:
114+
minItems: 4
115+
else:
116+
properties:
117+
clocks:
118+
maxItems: 2
119+
clock-names:
120+
maxItems: 2
121+
122+
additionalProperties: false
123+
124+
examples:
125+
- |
126+
crypto@30000 {
127+
compatible = "marvell,orion-crypto";
128+
reg = <0x30000 0x10000>;
129+
reg-names = "regs";
130+
interrupts = <22>;
131+
marvell,crypto-srams = <&crypto_sram>;
132+
marvell,crypto-sram-size = <0x600>;
133+
};

Documentation/devicetree/bindings/crypto/marvell-cesa.txt

Lines changed: 0 additions & 44 deletions
This file was deleted.

Documentation/devicetree/bindings/crypto/mv_cesa.txt

Lines changed: 0 additions & 32 deletions
This file was deleted.

0 commit comments

Comments
 (0)