pwm-meson.txt 829 B

1234567891011121314151617181920212223242526
  1. Amlogic Meson PWM Controller
  2. ============================
  3. Required properties:
  4. - compatible: Shall contain "amlogic,meson8b-pwm"
  5. or "amlogic,meson-gxbb-pwm"
  6. or "amlogic,meson-gxbb-ao-pwm"
  7. or "amlogic,meson-axg-ee-pwm"
  8. or "amlogic,meson-axg-ao-pwm"
  9. - #pwm-cells: Should be 3. See pwm.txt in this directory for a description of
  10. the cells format.
  11. Optional properties:
  12. - clocks: Could contain one or two parents clocks phandle for each of the two
  13. PWM channels.
  14. - clock-names: Could contain at least the "clkin0" and/or "clkin1" names.
  15. Example:
  16. pwm_ab: pwm@8550 {
  17. compatible = "amlogic,meson-gxbb-pwm";
  18. reg = <0x0 0x08550 0x0 0x10>;
  19. #pwm-cells = <3>;
  20. clocks = <&xtal>, <&xtal>;
  21. clock-names = "clkin0", "clkin1";
  22. }