Back to home page

OSCL-LXR

 
 

    


0001 OMAP SoC DES crypto Module
0002 
0003 Required properties:
0004 
0005 - compatible : Should contain "ti,omap4-des"
0006 - ti,hwmods: Name of the hwmod associated with the DES module
0007 - reg : Offset and length of the register set for the module
0008 - interrupts : the interrupt-specifier for the DES module
0009 - clocks : A phandle to the functional clock node of the DES module
0010            corresponding to each entry in clock-names
0011 - clock-names : Name of the functional clock, should be "fck"
0012 
0013 Optional properties:
0014 - dmas: DMA specifiers for tx and rx dma. See the DMA client binding,
0015         Documentation/devicetree/bindings/dma/dma.txt
0016         Each entry corresponds to an entry in dma-names
0017 - dma-names: DMA request names should include "tx" and "rx" if present
0018 
0019 Example:
0020         /* DRA7xx SoC */
0021         des: des@480a5000 {
0022                 compatible = "ti,omap4-des";
0023                 ti,hwmods = "des";
0024                 reg = <0x480a5000 0xa0>;
0025                 interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>;
0026                 dmas = <&sdma 117>, <&sdma 116>;
0027                 dma-names = "tx", "rx";
0028                 clocks = <&l3_iclk_div>;
0029                 clock-names = "fck";
0030         };