0001 OMAP SoC SHA crypto Module
0002
0003 Required properties:
0004
0005 - compatible : Should contain entries for this and backward compatible
0006 SHAM versions:
0007 - "ti,omap2-sham" for OMAP2 & OMAP3.
0008 - "ti,omap4-sham" for OMAP4 and AM33XX.
0009 - "ti,omap5-sham" for OMAP5, DRA7 and AM43XX.
0010 - ti,hwmods: Name of the hwmod associated with the SHAM module
0011 - reg : Offset and length of the register set for the module
0012 - interrupts : the interrupt-specifier for the SHAM module.
0013
0014 Optional properties:
0015 - dmas: DMA specifiers for the rx dma. See the DMA client binding,
0016 Documentation/devicetree/bindings/dma/dma.txt
0017 - dma-names: DMA request name. Should be "rx" if a dma is present.
0018
0019 Example:
0020 /* AM335x */
0021 sham: sham@53100000 {
0022 compatible = "ti,omap4-sham";
0023 ti,hwmods = "sham";
0024 reg = <0x53100000 0x200>;
0025 interrupts = <109>;
0026 dmas = <&edma 36>;
0027 dma-names = "rx";
0028 };