omap-aes.txt 972 B

12345678910111213141516171819202122232425262728293031
  1. OMAP SoC AES crypto Module
  2. Required properties:
  3. - compatible : Should contain entries for this and backward compatible
  4. AES versions:
  5. - "ti,omap2-aes" for OMAP2.
  6. - "ti,omap3-aes" for OMAP3.
  7. - "ti,omap4-aes" for OMAP4 and AM33XX.
  8. Note that the OMAP2 and 3 versions are compatible (OMAP3 supports
  9. more algorithms) but they are incompatible with OMAP4.
  10. - ti,hwmods: Name of the hwmod associated with the AES module
  11. - reg : Offset and length of the register set for the module
  12. - interrupts : the interrupt-specifier for the AES module.
  13. Optional properties:
  14. - dmas: DMA specifiers for tx and rx dma. See the DMA client binding,
  15. Documentation/devicetree/bindings/dma/dma.txt
  16. - dma-names: DMA request names should include "tx" and "rx" if present.
  17. Example:
  18. /* AM335x */
  19. aes: aes@53500000 {
  20. compatible = "ti,omap4-aes";
  21. ti,hwmods = "aes";
  22. reg = <0x53500000 0xa0>;
  23. interrupts = <102>;
  24. dmas = <&edma 6>,
  25. <&edma 5>;
  26. dma-names = "tx", "rx";
  27. };