0001 OMAP SoC AES crypto Module
0002
0003 Required properties:
0004
0005 - compatible : Should contain entries for this and backward compatible
0006 AES versions:
0007 - "ti,omap2-aes" for OMAP2.
0008 - "ti,omap3-aes" for OMAP3.
0009 - "ti,omap4-aes" for OMAP4 and AM33XX.
0010 Note that the OMAP2 and 3 versions are compatible (OMAP3 supports
0011 more algorithms) but they are incompatible with OMAP4.
0012 - ti,hwmods: Name of the hwmod associated with the AES module
0013 - reg : Offset and length of the register set for the module
0014 - interrupts : the interrupt-specifier for the AES module.
0015
0016 Optional properties:
0017 - dmas: DMA specifiers for tx and rx dma. See the DMA client binding,
0018 Documentation/devicetree/bindings/dma/dma.txt
0019 - dma-names: DMA request names should include "tx" and "rx" if present.
0020
0021 Example:
0022 /* AM335x */
0023 aes: aes@53500000 {
0024 compatible = "ti,omap4-aes";
0025 ti,hwmods = "aes";
0026 reg = <0x53500000 0xa0>;
0027 interrupts = <102>;
0028 dmas = <&edma 6>,
0029 <&edma 5>;
0030 dma-names = "tx", "rx";
0031 };