Based on kernel version 6.11
. Page generated on 2024-09-24 08:21 EST
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | # 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: enum: - starfive,jh7110-crypto - starfive,jh8100-crypto reg: maxItems: 1 clocks: items: - description: Hardware reference clock - description: AHB reference clock clock-names: items: - const: hclk - const: ahb interrupts: minItems: 1 items: - description: SHA2 module irq - description: SM3 module irq 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 allOf: - if: properties: compatible: const: starfive,jh7110-crypto then: properties: interrupts: maxItems: 1 - if: properties: compatible: const: starfive,jh8100-crypto then: properties: interrupts: minItems: 2 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"; }; ... |