Skip to content

Commit e757d5c

Browse files
montjoieherbertx
authored andcommitted
ARM: sun4i: dt: Add DT bindings documentation for SUN4I Security System
This patch adds documentation for Device-Tree bindings for the Security System cryptographic accelerator driver. Signed-off-by: LABBE Corentin <[email protected]> Signed-off-by: Herbert Xu <[email protected]>
1 parent 110d4e2 commit e757d5c

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
* Allwinner Security System found on A20 SoC
2+
3+
Required properties:
4+
- compatible : Should be "allwinner,sun4i-a10-crypto".
5+
- reg: Should contain the Security System register location and length.
6+
- interrupts: Should contain the IRQ line for the Security System.
7+
- clocks : List of clock specifiers, corresponding to ahb and ss.
8+
- clock-names : Name of the functional clock, should be
9+
* "ahb" : AHB gating clock
10+
* "mod" : SS controller clock
11+
12+
Example:
13+
crypto: crypto-engine@01c15000 {
14+
compatible = "allwinner,sun4i-a10-crypto";
15+
reg = <0x01c15000 0x1000>;
16+
interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
17+
clocks = <&ahb_gates 5>, <&ss_clk>;
18+
clock-names = "ahb", "mod";
19+
};

0 commit comments

Comments
 (0)