Path: blob/main/sys/contrib/device-tree/Bindings/crypto/omap-des.txt
48378 views
OMAP SoC DES crypto Module12Required properties:34- compatible : Should contain "ti,omap4-des"5- ti,hwmods: Name of the hwmod associated with the DES module6- reg : Offset and length of the register set for the module7- interrupts : the interrupt-specifier for the DES module8- clocks : A phandle to the functional clock node of the DES module9corresponding to each entry in clock-names10- clock-names : Name of the functional clock, should be "fck"1112Optional properties:13- dmas: DMA specifiers for tx and rx dma. See the DMA client binding,14Documentation/devicetree/bindings/dma/dma.txt15Each entry corresponds to an entry in dma-names16- dma-names: DMA request names should include "tx" and "rx" if present1718Example:19/* DRA7xx SoC */20des: des@480a5000 {21compatible = "ti,omap4-des";22ti,hwmods = "des";23reg = <0x480a5000 0xa0>;24interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>;25dmas = <&sdma 117>, <&sdma 116>;26dma-names = "tx", "rx";27clocks = <&l3_iclk_div>;28clock-names = "fck";29};303132