pwm-sun4i.txt 766 B

123456789101112131415161718192021222324
  1. Allwinner sun4i and sun7i SoC PWM controller
  2. Required properties:
  3. - compatible: should be one of:
  4. - "allwinner,sun4i-a10-pwm"
  5. - "allwinner,sun5i-a10s-pwm"
  6. - "allwinner,sun5i-a13-pwm"
  7. - "allwinner,sun7i-a20-pwm"
  8. - "allwinner,sun8i-h3-pwm"
  9. - "allwinner,sun50i-a64-pwm", "allwinner,sun5i-a13-pwm"
  10. - "allwinner,sun50i-h5-pwm", "allwinner,sun5i-a13-pwm"
  11. - reg: physical base address and length of the controller's registers
  12. - #pwm-cells: should be 3. See pwm.txt in this directory for a description of
  13. the cells format.
  14. - clocks: From common clock binding, handle to the parent clock.
  15. Example:
  16. pwm: pwm@1c20e00 {
  17. compatible = "allwinner,sun7i-a20-pwm";
  18. reg = <0x01c20e00 0xc>;
  19. clocks = <&osc24M>;
  20. #pwm-cells = <3>;
  21. };