pwm-meson.txt 662 B

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