marvell-cesa.txt 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. Marvell Cryptographic Engines And Security Accelerator
  2. Required properties:
  3. - compatible: should be one of the following string
  4. "marvell,orion-crypto"
  5. "marvell,kirkwood-crypto"
  6. "marvell,dove-crypto"
  7. "marvell,armada-370-crypto"
  8. "marvell,armada-xp-crypto"
  9. "marvell,armada-375-crypto"
  10. "marvell,armada-38x-crypto"
  11. - reg: base physical address of the engine and length of memory mapped
  12. region. Can also contain an entry for the SRAM attached to the CESA,
  13. but this representation is deprecated and marvell,crypto-srams should
  14. be used instead
  15. - reg-names: "regs". Can contain an "sram" entry, but this representation
  16. is deprecated and marvell,crypto-srams should be used instead
  17. - interrupts: interrupt number
  18. - clocks: reference to the crypto engines clocks. This property is not
  19. required for orion and kirkwood platforms
  20. - clock-names: "cesaX" and "cesazX", X should be replaced by the crypto engine
  21. id.
  22. This property is not required for the orion and kirkwoord
  23. platforms.
  24. "cesazX" clocks are not required on armada-370 platforms
  25. - marvell,crypto-srams: phandle to crypto SRAM definitions
  26. Optional properties:
  27. - marvell,crypto-sram-size: SRAM size reserved for crypto operations, if not
  28. specified the whole SRAM is used (2KB)
  29. Examples:
  30. crypto@90000 {
  31. compatible = "marvell,armada-xp-crypto";
  32. reg = <0x90000 0x10000>;
  33. reg-names = "regs";
  34. interrupts = <48>, <49>;
  35. clocks = <&gateclk 23>, <&gateclk 23>;
  36. clock-names = "cesa0", "cesa1";
  37. marvell,crypto-srams = <&crypto_sram0>, <&crypto_sram1>;
  38. marvell,crypto-sram-size = <0x600>;
  39. status = "okay";
  40. };