Path: blob/master/Documentation/devicetree/bindings/crypto/ti,omap2-aes.yaml
26308 views
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)1%YAML 1.22---3$id: http://devicetree.org/schemas/ti,omap2-aes.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: OMAP SoC AES crypto Module78maintainers:9- Aaro Koskinen <aaro.koskinen@iki.fi>10- Andreas Kemnade <andreas@kemnade.info>11- Kevin Hilman <khilman@baylibre.com>12- Roger Quadros <rogerq@kernel.org>13- Tony Lindgren <tony@atomide.com>1415properties:16compatible:17enum:18- ti,omap2-aes19- ti,omap3-aes20- ti,omap4-aes2122reg:23maxItems: 12425interrupts:26maxItems: 12728dmas:29maxItems: 23031dma-names:32items:33- const: tx34- const: rx3536ti,hwmods:37description: Name of the hwmod associated with the AES module38const: aes39deprecated: true4041required:42- compatible43- reg44- interrupts4546additionalProperties: false4748examples:49- |50aes@53500000 {51compatible = "ti,omap4-aes";52reg = <0x53500000 0xa0>;53interrupts = <102>;54dmas = <&edma 6>,55<&edma 5>;56dma-names = "tx", "rx";57};585960