mediatek-crypto.txt 879 B

12345678910111213141516171819202122232425
  1. MediaTek cryptographic accelerators
  2. Required properties:
  3. - compatible: Should be "mediatek,eip97-crypto"
  4. - reg: Address and length of the register set for the device
  5. - interrupts: Should contain the five crypto engines interrupts in numeric
  6. order. These are global system and four descriptor rings.
  7. - clocks: the clock used by the core
  8. - clock-names: Must contain "cryp".
  9. - power-domains: Must contain a reference to the PM domain.
  10. Example:
  11. crypto: crypto@1b240000 {
  12. compatible = "mediatek,eip97-crypto";
  13. reg = <0 0x1b240000 0 0x20000>;
  14. interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_LOW>,
  15. <GIC_SPI 83 IRQ_TYPE_LEVEL_LOW>,
  16. <GIC_SPI 84 IRQ_TYPE_LEVEL_LOW>,
  17. <GIC_SPI 91 IRQ_TYPE_LEVEL_LOW>,
  18. <GIC_SPI 97 IRQ_TYPE_LEVEL_LOW>;
  19. clocks = <&ethsys CLK_ETHSYS_CRYPTO>;
  20. clock-names = "cryp";
  21. power-domains = <&scpsys MT2701_POWER_DOMAIN_ETH>;
  22. };