1 # SPDX-License-Identifier: GPL-2.0 1 # SPDX-License-Identifier: GPL-2.0 2 %YAML 1.2 2 %YAML 1.2 3 --- 3 --- 4 $id: http://devicetree.org/schemas/crypto/amlo 4 $id: http://devicetree.org/schemas/crypto/amlogic,gxl-crypto.yaml# 5 $schema: http://devicetree.org/meta-schemas/co 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 6 6 7 title: Amlogic GXL Cryptographic Offloader 7 title: Amlogic GXL Cryptographic Offloader 8 8 9 maintainers: 9 maintainers: 10 - Corentin Labbe <clabbe@baylibre.com> 10 - Corentin Labbe <clabbe@baylibre.com> 11 11 12 properties: 12 properties: 13 compatible: 13 compatible: 14 items: 14 items: 15 - const: amlogic,gxl-crypto 15 - const: amlogic,gxl-crypto 16 16 17 reg: 17 reg: 18 maxItems: 1 18 maxItems: 1 19 19 20 interrupts: 20 interrupts: 21 items: 21 items: 22 - description: Interrupt for flow 0 22 - description: Interrupt for flow 0 23 - description: Interrupt for flow 1 23 - description: Interrupt for flow 1 24 24 25 clocks: 25 clocks: 26 maxItems: 1 26 maxItems: 1 27 27 28 clock-names: 28 clock-names: 29 const: blkmv 29 const: blkmv 30 30 31 required: 31 required: 32 - compatible 32 - compatible 33 - reg 33 - reg 34 - interrupts 34 - interrupts 35 - clocks 35 - clocks 36 - clock-names 36 - clock-names 37 37 38 additionalProperties: false 38 additionalProperties: false 39 39 40 examples: 40 examples: 41 - | 41 - | 42 #include <dt-bindings/interrupt-controller 42 #include <dt-bindings/interrupt-controller/irq.h> 43 #include <dt-bindings/interrupt-controller 43 #include <dt-bindings/interrupt-controller/arm-gic.h> 44 #include <dt-bindings/clock/gxbb-clkc.h> 44 #include <dt-bindings/clock/gxbb-clkc.h> 45 45 46 crypto: crypto-engine@c883e000 { 46 crypto: crypto-engine@c883e000 { 47 compatible = "amlogic,gxl-crypto"; 47 compatible = "amlogic,gxl-crypto"; 48 reg = <0xc883e000 0x36>; 48 reg = <0xc883e000 0x36>; 49 interrupts = <GIC_SPI 188 IRQ_TYPE_EDG 49 interrupts = <GIC_SPI 188 IRQ_TYPE_EDGE_RISING>, <GIC_SPI 189 IRQ_TYPE_EDGE_RISING>; 50 clocks = <&clkc CLKID_BLKMV>; 50 clocks = <&clkc CLKID_BLKMV>; 51 clock-names = "blkmv"; 51 clock-names = "blkmv"; 52 }; 52 };
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.