Path: blob/master/Documentation/devicetree/bindings/crypto/allwinner,sun8i-ss.yaml
26308 views
# SPDX-License-Identifier: GPL-2.01%YAML 1.22---3$id: http://devicetree.org/schemas/crypto/allwinner,sun8i-ss.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: Allwinner Security System v2 driver78maintainers:9- Corentin Labbe <corentin.labbe@gmail.com>1011properties:12compatible:13enum:14- allwinner,sun8i-a83t-crypto15- allwinner,sun9i-a80-crypto1617reg:18maxItems: 11920interrupts:21maxItems: 12223clocks:24items:25- description: Bus clock26- description: Module clock2728clock-names:29items:30- const: bus31- const: mod3233resets:34maxItems: 13536required:37- compatible38- reg39- interrupts40- clocks41- clock-names42- resets4344additionalProperties: false4546examples:47- |48#include <dt-bindings/interrupt-controller/arm-gic.h>49#include <dt-bindings/clock/sun8i-a83t-ccu.h>50#include <dt-bindings/reset/sun8i-a83t-ccu.h>5152crypto: crypto@1c15000 {53compatible = "allwinner,sun8i-a83t-crypto";54reg = <0x01c15000 0x1000>;55interrupts = <GIC_SPI 94 IRQ_TYPE_LEVEL_HIGH>;56resets = <&ccu RST_BUS_SS>;57clocks = <&ccu CLK_BUS_SS>, <&ccu CLK_SS>;58clock-names = "bus", "mod";59};606162