ingenic,jz47xx-pwm.txt 519 B

12345678910111213141516171819202122232425
  1. Ingenic JZ47xx PWM Controller
  2. =============================
  3. Required properties:
  4. - compatible: One of:
  5. * "ingenic,jz4740-pwm"
  6. * "ingenic,jz4770-pwm"
  7. * "ingenic,jz4780-pwm"
  8. - #pwm-cells: Should be 3. See pwm.txt in this directory for a description
  9. of the cells format.
  10. - clocks : phandle to the external clock.
  11. - clock-names : Should be "ext".
  12. Example:
  13. pwm: pwm@10002000 {
  14. compatible = "ingenic,jz4740-pwm";
  15. reg = <0x10002000 0x1000>;
  16. #pwm-cells = <3>;
  17. clocks = <&ext>;
  18. clock-names = "ext";
  19. };