Path: blob/main/sys/contrib/device-tree/Bindings/crypto/omap-aes.txt
48378 views
OMAP SoC AES crypto Module12Required properties:34- compatible : Should contain entries for this and backward compatible5AES versions:6- "ti,omap2-aes" for OMAP2.7- "ti,omap3-aes" for OMAP3.8- "ti,omap4-aes" for OMAP4 and AM33XX.9Note that the OMAP2 and 3 versions are compatible (OMAP3 supports10more algorithms) but they are incompatible with OMAP4.11- ti,hwmods: Name of the hwmod associated with the AES module12- reg : Offset and length of the register set for the module13- interrupts : the interrupt-specifier for the AES module.1415Optional properties:16- dmas: DMA specifiers for tx and rx dma. See the DMA client binding,17Documentation/devicetree/bindings/dma/dma.txt18- dma-names: DMA request names should include "tx" and "rx" if present.1920Example:21/* AM335x */22aes: aes@53500000 {23compatible = "ti,omap4-aes";24ti,hwmods = "aes";25reg = <0x53500000 0xa0>;26interrupts = <102>;27dmas = <&edma 6>,28<&edma 5>;29dma-names = "tx", "rx";30};313233