Path: blob/main/sys/contrib/device-tree/Bindings/crypto/omap-sham.txt
48378 views
OMAP SoC SHA crypto Module12Required properties:34- compatible : Should contain entries for this and backward compatible5SHAM versions:6- "ti,omap2-sham" for OMAP2 & OMAP3.7- "ti,omap4-sham" for OMAP4 and AM33XX.8- "ti,omap5-sham" for OMAP5, DRA7 and AM43XX.9- ti,hwmods: Name of the hwmod associated with the SHAM module10- reg : Offset and length of the register set for the module11- interrupts : the interrupt-specifier for the SHAM module.1213Optional properties:14- dmas: DMA specifiers for the rx dma. See the DMA client binding,15Documentation/devicetree/bindings/dma/dma.txt16- dma-names: DMA request name. Should be "rx" if a dma is present.1718Example:19/* AM335x */20sham: sham@53100000 {21compatible = "ti,omap4-sham";22ti,hwmods = "sham";23reg = <0x53100000 0x200>;24interrupts = <109>;25dmas = <&edma 36>;26dma-names = "rx";27};282930