lantiq,reset.txt 1.0 KB

123456789101112131415161718192021222324252627282930
  1. Lantiq XWAY SoC RCU reset controller binding
  2. ============================================
  3. This binding describes a reset-controller found on the RCU module on Lantiq
  4. XWAY SoCs.
  5. This node has to be a sub node of the Lantiq RCU block.
  6. -------------------------------------------------------------------------------
  7. Required properties:
  8. - compatible : Should be one of
  9. "lantiq,danube-reset"
  10. "lantiq,xrx200-reset"
  11. - reg : Defines the following sets of registers in the parent
  12. syscon device
  13. - Offset of the reset set register
  14. - Offset of the reset status register
  15. - #reset-cells : Specifies the number of cells needed to encode the
  16. reset line, should be 2.
  17. The first cell takes the reset set bit and the
  18. second cell takes the status bit.
  19. -------------------------------------------------------------------------------
  20. Example for the reset-controllers on the xRX200 SoCs:
  21. reset0: reset-controller@10 {
  22. compatible = "lantiq,xrx200-reset";
  23. reg <0x10 0x04>, <0x14 0x04>;
  24. #reset-cells = <2>;
  25. };