diff options
author | andy.hu <andy.hu@starfivetech.com> | 2023-06-16 05:26:41 +0300 |
---|---|---|
committer | andy.hu <andy.hu@starfivetech.com> | 2023-06-16 05:26:41 +0300 |
commit | 0f70e4e7261786b9e7ca999220a94f56c5244b4f (patch) | |
tree | 4774ed7e0828ea4b6bb354adc3d0317d2de846f3 /Documentation | |
parent | eeabd1da4457a5a28237282708b37e407a25b763 (diff) | |
parent | dfcb40d70e09bb85f07feaa878df4fe1b2032cfb (diff) | |
download | linux-0f70e4e7261786b9e7ca999220a94f56c5244b4f.tar.xz |
Merge branch 'CR_6008_Crypto_6.1_william' into 'jh7110-6.1.y-devel'
CR_6008: Add StarFive crypto module
See merge request sdk/linux!858
Diffstat (limited to 'Documentation')
-rwxr-xr-x | Documentation/devicetree/bindings/crypto/starfive,jh7110-crypto.yaml | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/crypto/starfive,jh7110-crypto.yaml b/Documentation/devicetree/bindings/crypto/starfive,jh7110-crypto.yaml new file mode 100755 index 000000000000..71a2876bd6e4 --- /dev/null +++ b/Documentation/devicetree/bindings/crypto/starfive,jh7110-crypto.yaml @@ -0,0 +1,70 @@ +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/crypto/starfive,jh7110-crypto.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: StarFive Cryptographic Module + +maintainers: + - Jia Jie Ho <jiajie.ho@starfivetech.com> + - William Qiu <william.qiu@starfivetech.com> + +properties: + compatible: + const: starfive,jh7110-crypto + + reg: + maxItems: 1 + + clocks: + items: + - description: Hardware reference clock + - description: AHB reference clock + + clock-names: + items: + - const: hclk + - const: ahb + + interrupts: + maxItems: 1 + + resets: + maxItems: 1 + + dmas: + items: + - description: TX DMA channel + - description: RX DMA channel + + dma-names: + items: + - const: tx + - const: rx + +required: + - compatible + - reg + - clocks + - clock-names + - resets + - dmas + - dma-names + +additionalProperties: false + +examples: + - | + crypto: crypto@16000000 { + compatible = "starfive,jh7110-crypto"; + reg = <0x16000000 0x4000>; + clocks = <&clk 15>, <&clk 16>; + clock-names = "hclk", "ahb"; + interrupts = <28>; + resets = <&reset 3>; + dmas = <&dma 1 2>, + <&dma 0 2>; + dma-names = "tx", "rx"; + }; +... |