omap-des.txt 1011 B

123456789101112131415161718192021222324252627282930
  1. OMAP SoC DES crypto Module
  2. Required properties:
  3. - compatible : Should contain "ti,omap4-des"
  4. - ti,hwmods: Name of the hwmod associated with the DES module
  5. - reg : Offset and length of the register set for the module
  6. - interrupts : the interrupt-specifier for the DES module
  7. - clocks : A phandle to the functional clock node of the DES module
  8. corresponding to each entry in clock-names
  9. - clock-names : Name of the functional clock, should be "fck"
  10. Optional properties:
  11. - dmas: DMA specifiers for tx and rx dma. See the DMA client binding,
  12. Documentation/devicetree/bindings/dma/dma.txt
  13. Each entry corresponds to an entry in dma-names
  14. - dma-names: DMA request names should include "tx" and "rx" if present
  15. Example:
  16. /* DRA7xx SoC */
  17. des: des@480a5000 {
  18. compatible = "ti,omap4-des";
  19. ti,hwmods = "des";
  20. reg = <0x480a5000 0xa0>;
  21. interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>;
  22. dmas = <&sdma 117>, <&sdma 116>;
  23. dma-names = "tx", "rx";
  24. clocks = <&l3_iclk_div>;
  25. clock-names = "fck";
  26. };