sun4i-ss.txt 782 B

1234567891011121314151617181920212223
  1. * Allwinner Security System found on A20 SoC
  2. Required properties:
  3. - compatible : Should be "allwinner,sun4i-a10-crypto".
  4. - reg: Should contain the Security System register location and length.
  5. - interrupts: Should contain the IRQ line for the Security System.
  6. - clocks : List of clock specifiers, corresponding to ahb and ss.
  7. - clock-names : Name of the functional clock, should be
  8. * "ahb" : AHB gating clock
  9. * "mod" : SS controller clock
  10. Optional properties:
  11. - resets : phandle + reset specifier pair
  12. - reset-names : must contain "ahb"
  13. Example:
  14. crypto: crypto-engine@01c15000 {
  15. compatible = "allwinner,sun4i-a10-crypto";
  16. reg = <0x01c15000 0x1000>;
  17. interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
  18. clocks = <&ahb_gates 5>, <&ss_clk>;
  19. clock-names = "ahb", "mod";
  20. };