omap-sham.txt 850 B

12345678910111213141516171819202122232425262728
  1. OMAP SoC SHA crypto Module
  2. Required properties:
  3. - compatible : Should contain entries for this and backward compatible
  4. SHAM versions:
  5. - "ti,omap2-sham" for OMAP2 & OMAP3.
  6. - "ti,omap4-sham" for OMAP4 and AM33XX.
  7. - "ti,omap5-sham" for OMAP5, DRA7 and AM43XX.
  8. - ti,hwmods: Name of the hwmod associated with the SHAM module
  9. - reg : Offset and length of the register set for the module
  10. - interrupts : the interrupt-specifier for the SHAM module.
  11. Optional properties:
  12. - dmas: DMA specifiers for the rx dma. See the DMA client binding,
  13. Documentation/devicetree/bindings/dma/dma.txt
  14. - dma-names: DMA request name. Should be "rx" if a dma is present.
  15. Example:
  16. /* AM335x */
  17. sham: sham@53100000 {
  18. compatible = "ti,omap4-sham";
  19. ti,hwmods = "sham";
  20. reg = <0x53100000 0x200>;
  21. interrupts = <109>;
  22. dmas = <&edma 36>;
  23. dma-names = "rx";
  24. };