pwm-sun4i.txt 671 B

1234567891011121314151617181920212223
  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. - reg: physical base address and length of the controller's registers
  10. - #pwm-cells: should be 3. See pwm.txt in this directory for a description of
  11. the cells format.
  12. - clocks: From common clock binding, handle to the parent clock.
  13. Example:
  14. pwm: pwm@01c20e00 {
  15. compatible = "allwinner,sun7i-a20-pwm";
  16. reg = <0x01c20e00 0xc>;
  17. clocks = <&osc24M>;
  18. #pwm-cells = <3>;
  19. status = "disabled";
  20. };